[
  {
    "path": ".azure-pipelines.yml",
    "content": "trigger: none\npr:\n  branches:\n    include:\n      - main\n\nparameters:\n  - name: static\n    displayName: Generate Static Fonts\n    type: boolean\n    default: true\n\nvariables:\n  - name: runCodesignValidationInjectionBG\n    value: false\n\njobs:\n  - job: build\n    displayName: Build Font\n    pool:\n      vmImage: macOS-latest\n    steps:\n      - task: UsePythonVersion@0\n        displayName: 'Use Python 3.8'\n        inputs:\n          versionSpec: '3.8'\n\n      - bash: |\n         brew install ttfautohint\n         pip install -r requirements.txt ufolint\n        displayName: 'Install build dependencies'\n\n      - bash: |\n         ufolint sources/*.ufo\n        displayName: 'Lint sources'\n\n      - ${{ if eq(parameters.static, true) }}:\n        - bash: |\n           python ./build.py -S -W\n          displayName: 'Build variable + static fonts'\n\n      - ${{ if eq(parameters.static, false) }}:\n        - bash: |\n           python ./build.py -W\n          displayName: 'Build variable fonts only'\n\n      - bash: |\n         mkdir -p out\n         cd build\n         zip -r ../out/CascadiaCode.zip ttf otf woff2\n        displayName: 'Archive all fonts'\n\n      - task: PublishPipelineArtifact@1\n        displayName: 'Publish archive'\n        inputs:\n          targetPath: out\n          artifact: 'archive'\n\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/Bug_Report.yml",
    "content": "name: \"Bug report 🐛\"\ndescription: Report rendering issues or unexpected behavior\nbody:\n- type: markdown\n  attributes:\n    value: |\n      Please make sure to [search for existing issues](https://github.com/microsoft/cascadia-code/issues) before filing a new one!\n\n- type: input\n  id: version\n  attributes:\n    label: Cascadia family version\n    placeholder: \"2102.04, 2105.25\"\n  validations:\n    required: true\n\n- type: dropdown\n  id: variant\n  attributes:\n    label: Cascadia family variant(s)\n    multiple: true\n    options:\n      - Cascadia Code (the version with ligatures)\n      - Cascadia Mono (the version without ligatures)\n  validations:\n    required: true\n\n- type: dropdown\n  id: format\n  attributes:\n    label: Font file format(s)\n    multiple: true\n    options:\n      - Windows Terminal included version (TTF (variable))\n      - .ttf (variable)\n      - .ttf (static)\n      - .otf (static)\n      - .woff2 (variable)\n      - .woff2 (static)\n      - I don't know\n  validations:\n    required: true\n\n- type: input\n  id: platform\n  attributes:\n    label: Platform\n    placeholder: \"Windows; Linux (freetype 2.10.4); macOS 12.301\"\n  validations:\n    required: true\n\n- type: textarea\n  id: software\n  attributes:\n    label: Other Software\n    description: If you're reporting a bug about Cascadia's interaction with other software, what software? What versions?\n    placeholder: |\n      Visual Studio Code\n      Visual Studio 2019 Update 5\n      Windows Terminal 1.9\n  validations:\n    required: false\n\n- type: textarea\n  id: what-happened\n  attributes:\n    label: What happened?\n    placeholder: Tell us what's happening. Include some screenshots! Does it happen only at a certain font size or a certain pixel density?\n  validations:\n    required: true\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/Documentation_Issue.md",
    "content": "---\nname: Documentation Issue 📚\nabout: Report issues in our documentation\ntitle: \"Documentation Issue\"\nlabels: Issue-Docs\nassignees: ''\n\n---\n\n<!-- Briefly describe which document needs to be corrected and why. -->\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/Feature_Request.md",
    "content": "---\nname: Feature Request/Idea 🚀\nabout: Suggest a new feature or improvement (this does not mean you have to implement it)\ntitle: \"Feature Request\"\nlabels: Issue-Feature\nassignees: ''\n\n---\n\n<!-- \n🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨\n\nI ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:\n1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.\n2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further explanation or engagement.\n3. If I write an issue that has many duplicates, the core team may close my issue without further explanation or engagement (and without necessarily spending time to find the exact duplicate ID number).\n4. If I leave the title incomplete when filing the issue, the core team may close my issue without further explanation or engagement.\n5. If I file something completely blank in the body, the core team may close my issue without further explanation or engagement.\n\nAll good? Then proceed!\n-->\n\n# Description of the new feature/enhancement (with images if possible)\n\n<!-- \nA clear and concise description of what the problem is that the new feature would solve.\nDescribe why and how a user would use this new functionality (if applicable).\n-->\n\n# Proposed technical implementation details (optional)\n\n<!-- \nA clear and concise description of what you want to happen.\n-->\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "<!-- Enter a brief description/summary of your PR here. What character(s) are you changing/creating and how was it tested (even manually, if necessary)? Did you hint the entire font or only the modified character(s)? -->\n## Summary of the Pull Request\n\n<!-- Other than the issue solved, is this relevant to any other issues/existing PRs? --> \n## References\n\n<!-- Please review the items on the PR checklist before submitting-->\n## PR Checklist\n* [ ] Closes #xxx\n* [ ] CLA signed. If not, go over [here](https://cla.opensource.microsoft.com/microsoft/Terminal) and sign the CLA\n* [ ] Requires FONTLOG.txt to be updated\n* [ ] Requires [/images/cascadia-code.png](/microsoft/cascadia-code/blob/main/images/cascadia-code.png) and/or [/images/cascadia-code-characters.png](/microsoft/cascadia-code/blob/main/images/cascadia-code-characters.png) to be updated\n* [ ] I've discussed this with core contributors already. If not checked, I'm ready to accept this work might be rejected in favor of a different grand plan. Issue number where discussion took place: #xxx\n\n<!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here -->\n## Detailed Description of the Pull Request / Additional comments\n\n<!-- Provide images of the character(s) that are being modified/created at different screen sizes. Clearly identifying specific code points is heavily recommended. -->\n## Before (if applicable) and After Images of the Character(s)\n\n<!-- Describe how you validated the behavior. List steps that were taken. -->\n## Validation Steps Performed\n"
  },
  {
    "path": ".gitignore",
    "content": "## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n##\n## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore\n\n# User-specific files\n*.suo\n*.user\n*.userosscache\n*.sln.docstates\n.DS_Store\n\n# User-specific files (MonoDevelop/Xamarin Studio)\n*.userprefs\n\n# Build results\n[Dd]ebug/\n[Dd]ebugPublic/\n[Rr]elease/\n[Rr]eleases/\nx64/\nx86/\nbld/\n[Bb]in/\n[Oo]bj/\n[Ll]og/\n\n# Visual Studio 2015/2017 cache/options directory\n.vs/\n# Uncomment if you have tasks that create the project's static files in wwwroot\n#wwwroot/\n\n# Visual Studio 2017 auto generated files\nGenerated\\ Files/\n\n# MSTest test Results\n[Tt]est[Rr]esult*/\n[Bb]uild[Ll]og.*\n\n# NUNIT\n*.VisualState.xml\nTestResult.xml\n\n# Build Results of an ATL Project\n[Dd]ebugPS/\n[Rr]eleasePS/\ndlldata.c\n\n# Benchmark Results\nBenchmarkDotNet.Artifacts/\n\n# .NET Core\nproject.lock.json\nproject.fragment.lock.json\nartifacts/\n**/Properties/launchSettings.json\n\n# StyleCop\nStyleCopReport.xml\n\n# Files built by Visual Studio\n*_i.c\n*_p.c\n*_i.h\n*.ilk\n*.meta\n*.obj\n*.iobj\n*.pch\n*.pdb\n*.ipdb\n*.pgc\n*.pgd\n*.rsp\n*.sbr\n*.tlb\n*.tli\n*.tlh\n*.tmp\n*.tmp_proj\n*.log\n*.vspscc\n*.vssscc\n.builds\n*.pidb\n*.svclog\n*.scc\n\n# Chutzpah Test files\n_Chutzpah*\n\n# Visual C++ cache files\nipch/\n*.aps\n*.ncb\n*.opendb\n*.opensdf\n*.sdf\n*.cachefile\n*.VC.db\n*.VC.VC.opendb\n\n# Visual Studio profiler\n*.psess\n*.vsp\n*.vspx\n*.sap\n\n# Visual Studio Trace Files\n*.e2e\n\n# TFS 2012 Local Workspace\n$tf/\n\n# Guidance Automation Toolkit\n*.gpState\n\n# ReSharper is a .NET coding add-in\n_ReSharper*/\n*.[Rr]e[Ss]harper\n*.DotSettings.user\n\n# JustCode is a .NET coding add-in\n.JustCode\n\n# TeamCity is a build add-in\n_TeamCity*\n\n# DotCover is a Code Coverage Tool\n*.dotCover\n\n# AxoCover is a Code Coverage Tool\n.axoCover/*\n!.axoCover/settings.json\n\n# Visual Studio code coverage results\n*.coverage\n*.coveragexml\n\n# NCrunch\n_NCrunch_*\n.*crunch*.local.xml\nnCrunchTemp_*\n\n# MightyMoose\n*.mm.*\nAutoTest.Net/\n\n# Web workbench (sass)\n.sass-cache/\n\n# Installshield output folder\n[Ee]xpress/\n\n# DocProject is a documentation generator add-in\nDocProject/buildhelp/\nDocProject/Help/*.HxT\nDocProject/Help/*.HxC\nDocProject/Help/*.hhc\nDocProject/Help/*.hhk\nDocProject/Help/*.hhp\nDocProject/Help/Html2\nDocProject/Help/html\n\n# Click-Once directory\npublish/\n\n# Publish Web Output\n*.[Pp]ublish.xml\n*.azurePubxml\n# Note: Comment the next line if you want to checkin your web deploy settings,\n# but database connection strings (with potential passwords) will be unencrypted\n*.pubxml\n*.publishproj\n\n# Microsoft Azure Web App publish settings. Comment the next line if you want to\n# checkin your Azure Web App publish settings, but sensitive information contained\n# in these scripts will be unencrypted\nPublishScripts/\n\n# NuGet Packages\n*.nupkg\n# The packages folder can be ignored because of Package Restore\n**/[Pp]ackages/*\n# except build/, which is used as an MSBuild target.\n!**/[Pp]ackages/build/\n# Uncomment if necessary however generally it will be regenerated when needed\n#!**/[Pp]ackages/repositories.config\n# NuGet v3's project.json files produces more ignorable files\n*.nuget.props\n*.nuget.targets\n\n# Microsoft Azure Build Output\ncsx/\n*.build.csdef\n\n# Microsoft Azure Emulator\necf/\nrcf/\n\n# Windows Store app package directories and files\nAppPackages/\nBundleArtifacts/\nPackage.StoreAssociation.xml\n_pkginfo.txt\n*.appx\n\n# Visual Studio cache files\n# files ending in .cache can be ignored\n*.[Cc]ache\n# but keep track of directories ending in .cache\n!*.[Cc]ache/\n\n# Others\nClientBin/\n~$*\n*~\n*.dbmdl\n*.dbproj.schemaview\n*.jfm\n*.pfx\n*.publishsettings\norleans.codegen.cs\n\n# Including strong name files can present a security risk \n# (https://github.com/github/gitignore/pull/2483#issue-259490424)\n#*.snk\n\n# Since there are multiple workflows, uncomment next line to ignore bower_components\n# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)\n#bower_components/\n\n# RIA/Silverlight projects\nGenerated_Code/\n\n# Backup & report files from converting an old project file\n# to a newer Visual Studio version. Backup files are not needed,\n# because we have git ;-)\n_UpgradeReport_Files/\nBackup*/\nUpgradeLog*.XML\nUpgradeLog*.htm\nServiceFabricBackup/\n*.rptproj.bak\n\n# SQL Server files\n*.mdf\n*.ldf\n*.ndf\n\n# Business Intelligence projects\n*.rdl.data\n*.bim.layout\n*.bim_*.settings\n*.rptproj.rsuser\n\n# Microsoft Fakes\nFakesAssemblies/\n\n# GhostDoc plugin setting file\n*.GhostDoc.xml\n\n# Node.js Tools for Visual Studio\n.ntvs_analysis.dat\nnode_modules/\n\n# Visual Studio 6 build log\n*.plg\n\n# Visual Studio 6 workspace options file\n*.opt\n\n# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)\n*.vbw\n\n# Visual Studio LightSwitch build output\n**/*.HTMLClient/GeneratedArtifacts\n**/*.DesktopClient/GeneratedArtifacts\n**/*.DesktopClient/ModelManifest.xml\n**/*.Server/GeneratedArtifacts\n**/*.Server/ModelManifest.xml\n_Pvt_Extensions\n\n# Paket dependency manager\n.paket/paket.exe\npaket-files/\n\n# FAKE - F# Make\n.fake/\n\n# JetBrains Rider\n.idea/\n*.sln.iml\n\n# CodeRush\n.cr/\n\n# Python Tools for Visual Studio (PTVS)\n__pycache__/\n*.pyc\n\n# Cake - Uncomment if you are using it\n# tools/**\n# !tools/packages.config\n\n# Tabs Studio\n*.tss\n\n# Telerik's JustMock configuration file\n*.jmconfig\n\n# BizTalk build output\n*.btp.cs\n*.btm.cs\n*.odx.cs\n*.xsd.cs\n\n# OpenCover UI analysis results\nOpenCover/\n\n# Azure Stream Analytics local run output \nASALocalRun/\n\n# MSBuild Binary and Structured Log\n*.binlog\n\n# NVidia Nsight GPU debugger configuration file\n*.nvuser\n\n# MFractors (Xamarin productivity tool) working folder \n.mfractor/\n\n# other files\nbuild/\ntestground/\nnewVTT.xml\nconverter.py\nsalishan/\nfixTSI1.py\nvenv/\n.vscode/settings.json\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Code of Conduct\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct][conduct-code].\r\nFor more information see the [Code of Conduct FAQ][conduct-FAQ] or contact [opencode@microsoft.com][conduct-email] with any additional questions or comments.\r\n\r\n[conduct-code]: https://opensource.microsoft.com/codeofconduct/\r\n[conduct-FAQ]: https://opensource.microsoft.com/codeofconduct/faq/\r\n[conduct-email]: mailto:opencode@microsoft.com"
  },
  {
    "path": "FONTLOG.txt",
    "content": "FONTLOG for Cascadia Code\r\n===================================\r\n\r\nThis file provides detailed information on the Cascadia Code font. This information should be distributed along with the Cascadia Code font and any derivative works.\r\n\r\nBasic Font Information\r\n-----------------------------------\r\n\r\nCascadia Code is a monospaced font shipped by Microsoft. It includes programming ligatures and is intended for use in terminal applications as well as text editors.\r\n\r\nContribution Information\r\n-----------------------------------\r\n\r\nDocumentation and contribution guidelines can be found at: https://github.com/microsoft/cascadia-code\r\n\r\nChangeLog\r\n-----------------------------------\r\n\r\n09-25-2019 (Aaron Bell) Bug Fixes and Improvements\r\n\r\n09-18-2019 (Aaron Bell) Cascadia Code Version 1909.16\r\n- Initial release\r\n\r\n10-04-2019 (Aaron Bell) Cascadia Code Version 1910.04\r\n- Addition of Latin-1 characters\r\n- Addition of box drawing glyphs\r\n11-20-2019 (Aaron Bell) Cascadia Code Version 1911.20\r\n- Cyrillic, Greek, Vietnamese, and many other symbols added\r\n- Font converted to UFO with a build workflow\r\n- font rehinted\r\n- many other fixes!\r\n\r\n04-29-2020 (Aaron Bell) April bug fixes\r\n- Many small bug fixes from the last few months\r\n\r\n05-05-2020 Font vertical metrics locked\r\n\r\n05-15-2020 (Aaron Bell, Dustin Howett) [Version 2005.15]\r\nFixed WinDescent value to improve line spacing\r\n\r\n06-29-2020 (Aaron Bell) Variable font conversion\r\nConverted Cascadia Code to a Variable font with a weight axis\r\n\r\n\r\n06-29-2020 (Aaron Bell) [Version 2007.01]\r\nReworked Cascadia Code to be a variable font with 6 named variations ranging\r\nfrom ExtraLight to Bold.\r\nSplit the long equals ligature (==) for earier reading\r\nRemoved the hexadeciaml 'x' alternate\r\nCorrected malformed IJacute dioacritics\r\nIntroduced a compatibility layout for PowerLine glyphs that will\r\nbe used in GDI\r\n\r\n08-25-2020 (Aaron Bell) [Version 2008.25]\r\nStarted generating static TTFs and hinting them with ttfautohint\r\nAligned the powerline glyphs to the font metrics exactly\r\nRealigned the box drawing glyphs to match the letters\r\nAdded anchors to all alphabetic characters (and brevecomb-cy)\r\nadded fi/fl ligatures (decomposed!)\r\nFixed the weight of horncomb in bold\r\n\r\n9-14-2020\r\n1) Added support for Salishan language groups\r\n2) Remastered mark positioning for glyphs with 2 diacritics (needed for Salishan)\r\n3) Rebuild Build Script to simplify code\r\n4) Fixed minor other hinting issues\r\n5) Fixed RVRN substitutions for heavy weight\r\n\r\n9-21-2020\r\n1) Correcting mark positioning for salishan\r\n\r\n5-25-2021\r\nCASCADIA CODE ITALIC\r\n\r\n6-17-2021\r\nCASCADIA CODE ARABIC & HEBREW\r\nITALIC V2\r\n\r\n01-19-2024 (Philippe Majerus) Checkerboard, more quadrants, and sextants.\r\n- Added some new checkerboard characters U+2427 - U+2429, U+1FB95, U+1FB96 (Symbols for Legacy Computing).\r\n- Added new centered Quadrants U+1FBE4 - U+1FBE7 (Symbols for Legacy Computing).\r\n- Added Triangular Quadrant characters U+1FB68 - U+1FB6F, U+1FB9A, U+1FB9B (Symbols for Legacy Computing).\r\n- Added Circular Quadrant characters U+1FBE8 - U+1FBEF (Symbols for Legacy Computing).\r\n- Added Sextant characters U+1FB00 - U+1FB3B (Symbols for Legacy Computing).\r\n\r\n04-08-2024 (Aaron Bell) Nerd Fonts\r\n- Implemented Nerd Fonts, current as of 2024-04-08, as an optional build feature for the entire Cascadia\r\n  family.\r\n\r\n04-10-2024 (Philippe Majerus) Diagonals, octants, sedecimants & eights, separated quadrants & sextants, segmented digits, and large type pieces.\r\n- Added diagonals U+1FB3C - U+1FB67 (Symbols for Legacy Computing).\r\n- Added octants U+1CD00 - U+1CDE5 (Symbols for Legacy Computing).\r\n- Added sedecimants U+1CE90 - U+1CEAF (Symbols for Legacy Computing).\r\n- Added eights U+1FB70 - U+1FB80, U+1FB82 - U+1FB8B (Symbols for Legacy Computing).\r\n- Added misc. blocks U+1FB97, U+1FBCE, U+1FBCF (Symbols for Legacy Computing).\r\n- Added separated quadrants U+1CC21 - U+1CC2F (Symbols for Legacy Computing).\r\n- Added separated sextants U+1CE51 - U+1CE8F (Symbols for Legacy Computing).\r\n- Added segmented digits U+1CCF0 - U+1CCF9 (Symbols for Legacy Computing).\r\n- Added large type pieces U+1CE1A - U+1CE50 (Symbols for Legacy Computing).\r\n\r\n04-23-2024 (Dustin L. Howett)\r\n- Minted version 2404.23\r\n\r\n07-24-2024 (Aaron Bell, Dustin L. Howett)\r\n- Fixed hinting issue for Arabic glyphs\r\n- Minted version 2407.24\r\n\r\nAcknowledgements\r\n-----------------------------------\r\n\r\nIf you make modifications, be sure to add your name (N), email (E), web-address (if you have one) (W), and description (D). This list is in alphabetical order.\r\n\r\nN: Aaron Bell\r\nE: aaron@sajatypeworks.com\r\nW: http://sajatypeworks.com\r\nD: Original font designer\r\n\r\nN: Philippe Majerus\r\nW: http://www.phm.lu\r\nD: Legacy computing, mosaic blocks, large type pieces\r\n"
  },
  {
    "path": "LICENSE",
    "content": "Copyright (c) 2019 - Present, Microsoft Corporation,\r\nwith Reserved Font Name Cascadia Code.\r\n\r\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\r\nThis license is copied below, and is also available with a FAQ at:\r\nhttp://scripts.sil.org/OFL\r\n\r\n\r\n-----------------------------------------------------------\r\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\r\n-----------------------------------------------------------\r\n\r\nPREAMBLE\r\nThe goals of the Open Font License (OFL) are to stimulate worldwide\r\ndevelopment of collaborative font projects, to support the font creation\r\nefforts of academic and linguistic communities, and to provide a free and\r\nopen framework in which fonts may be shared and improved in partnership\r\nwith others.\r\n\r\nThe OFL allows the licensed fonts to be used, studied, modified and\r\nredistributed freely as long as they are not sold by themselves. The\r\nfonts, including any derivative works, can be bundled, embedded, \r\nredistributed and/or sold with any software provided that any reserved\r\nnames are not used by derivative works. The fonts and derivatives,\r\nhowever, cannot be released under any other type of license. The\r\nrequirement for fonts to remain under this license does not apply\r\nto any document created using the fonts or their derivatives.\r\n\r\nDEFINITIONS\r\n\"Font Software\" refers to the set of files released by the Copyright\r\nHolder(s) under this license and clearly marked as such. This may\r\ninclude source files, build scripts and documentation.\r\n\r\n\"Reserved Font Name\" refers to any names specified as such after the\r\ncopyright statement(s).\r\n\r\n\"Original Version\" refers to the collection of Font Software components as\r\ndistributed by the Copyright Holder(s).\r\n\r\n\"Modified Version\" refers to any derivative made by adding to, deleting,\r\nor substituting -- in part or in whole -- any of the components of the\r\nOriginal Version, by changing formats or by porting the Font Software to a\r\nnew environment.\r\n\r\n\"Author\" refers to any designer, engineer, programmer, technical\r\nwriter or other person who contributed to the Font Software.\r\n\r\nPERMISSION & CONDITIONS\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of the Font Software, to use, study, copy, merge, embed, modify,\r\nredistribute, and sell modified and unmodified copies of the Font\r\nSoftware, subject to the following conditions:\r\n\r\n1) Neither the Font Software nor any of its individual components,\r\nin Original or Modified Versions, may be sold by itself.\r\n\r\n2) Original or Modified Versions of the Font Software may be bundled,\r\nredistributed and/or sold with any software, provided that each copy\r\ncontains the above copyright notice and this license. These can be\r\nincluded either as stand-alone text files, human-readable headers or\r\nin the appropriate machine-readable metadata fields within text or\r\nbinary files as long as those fields can be easily viewed by the user.\r\n\r\n3) No Modified Version of the Font Software may use the Reserved Font\r\nName(s) unless explicit written permission is granted by the corresponding\r\nCopyright Holder. This restriction only applies to the primary font name as\r\npresented to the users.\r\n\r\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\r\nSoftware shall not be used to promote, endorse or advertise any\r\nModified Version, except to acknowledge the contribution(s) of the\r\nCopyright Holder(s) and the Author(s) or with their explicit written\r\npermission.\r\n\r\n5) The Font Software, modified or unmodified, in part or in whole,\r\nmust be distributed entirely under this license, and must not be\r\ndistributed under any other license. The requirement for fonts to\r\nremain under this license does not apply to any document created\r\nusing the Font Software.\r\n\r\nTERMINATION\r\nThis license becomes null and void if any of the above conditions are\r\nnot met.\r\n\r\nDISCLAIMER\r\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\r\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\r\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\r\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\r\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\r\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\r\nOTHER DEALINGS IN THE FONT SOFTWARE.\r\n"
  },
  {
    "path": "OFL-FAQ.txt",
    "content": "OFL FAQ - Frequently Asked Questions about the SIL Open Font License (OFL)\r\nVersion 1.1-update5 - April 2017\r\nThe OFL FAQ is copyright (c) 2005-2017 SIL International.\r\n(See http://scripts.sil.org/OFL for updates)\r\n\r\n\r\nCONTENTS OF THIS FAQ\r\n1  USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL\r\n2  USING OFL FONTS FOR WEB PAGES AND ONLINE WEB FONT SERVICES\r\n3  MODIFYING OFL-LICENSED FONTS\r\n4  LICENSING YOUR ORIGINAL FONTS UNDER THE OFL\r\n5  CHOOSING RESERVED FONT NAMES\r\n6  ABOUT THE FONTLOG\r\n7  MAKING CONTRIBUTIONS TO OFL PROJECTS\r\n8  ABOUT THE LICENSE ITSELF\r\n9  ABOUT SIL INTERNATIONAL\r\nAPPENDIX A - FONTLOG EXAMPLE\r\n\r\n1  USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL\r\n\r\n1.1  Can I use the fonts for a book or other print publication, to create logos or other graphics or even to manufacture objects based on their outlines?\r\nYes. You are very welcome to do so. Authors of fonts released under the OFL allow you to use their font software as such for any kind of design work. No additional license or permission is required, unlike with some other licenses. Some examples of these uses are: logos, posters, business cards, stationery, video titling, signage, t-shirts, personalised fabric, 3D-printed/laser-cut shapes, sculptures, rubber stamps, cookie cutters and lead type.\r\n\r\n1.1.1  Does that restrict the license or distribution of that artwork?\r\nNo. You remain the author and copyright holder of that newly derived graphic or object. You are simply using an open font in the design process. It is only when you redistribute, bundle or modify the font itself that other conditions of the license have to be respected (see below for more details).\r\n\r\n1.1.2  Is any kind of acknowledgement required?\r\nNo. Font authors may appreciate being mentioned in your artwork's acknowledgements alongside the name of the font, possibly with a link to their website, but that is not required.\r\n\r\n1.2  Can the fonts be included with Free/Libre and Open Source Software collections such as GNU/Linux and BSD distributions and repositories?\r\nYes! Fonts licensed under the OFL can be freely included alongside other software under FLOSS (Free/Libre and Open Source Software) licenses. Since fonts are typically aggregated with, not merged into, existing software, there is little need to be concerned about incompatibility with existing software licenses. You may also repackage the fonts and the accompanying components in a .rpm or .deb package (or other similar package formats or installers) and include them in distribution CD/DVDs and online repositories. (Also see section 5.9 about rebuilding from source.)\r\n\r\n1.3  I want to distribute the fonts with my program. Does this mean my program also has to be Free/Libre and Open Source Software?\r\nNo. Only the portions based on the Font Software are required to be released under the OFL. The intent of the license is to allow aggregation or bundling with software under restricted licensing as well.\r\n\r\n1.4  Can I sell a software package that includes these fonts?\r\nYes, you can do this with both the Original Version and a Modified Version of the fonts. Examples of bundling made possible by the OFL would include: word processors, design and publishing applications, training and educational software, games and entertainment software, mobile device applications, etc.\r\n\r\n1.5  Can I include the fonts on a CD of freeware or commercial fonts?\r\nYes, as long some other font or software is also on the disk, so the OFL font is not sold by itself.\r\n\r\n1.6  Why won't the OFL let me sell the fonts alone?\r\nThe intent is to keep people from making money by simply redistributing the fonts. The only people who ought to profit directly from the fonts should be the original authors, and those authors have kindly given up potential direct income to distribute their fonts under the OFL. Please honour and respect their contribution!\r\n\r\n1.7  What about sharing OFL fonts with friends on a CD, DVD or USB stick?\r\nYou are very welcome to share open fonts with friends, family and colleagues through removable media. Just remember to include the full font package, including any copyright notices and licensing information as available in OFL.txt. In the case where you sell the font, it has to come bundled with software.\r\n\r\n1.8  Can I host the fonts on a web site for others to use?\r\nYes, as long as you make the full font package available. In most cases it may be best to point users to the main site that distributes the Original Version so they always get the most recent stable and complete version. See also discussion of web fonts in Section 2.\r\n\r\n1.9  Can I host the fonts on a server for use over our internal network?\r\nYes. If the fonts are transferred from the server to the client computer by means that allow them to be used even if the computer is no longer attached to the network, the full package (copyright notices, licensing information, etc.) should be included.\r\n\r\n1.10  Does the full OFL license text always need to accompany the font?\r\nThe only situation in which an OFL font can be distributed without the text of the OFL (either in a separate file or in font metadata), is when a font is embedded in a document or bundled within a program. In the case of metadata included within a font, it is legally sufficient to include only a link to the text of the OFL on http://scripts.sil.org/OFL, but we strongly recommend against this. Most modern font formats include metadata fields that will accept the full OFL text, and full inclusion increases the likelihood that users will understand and properly apply the license.\r\n\r\n1.11  What do you mean by 'embedding'? How does that differ from other means of distribution?\r\nBy 'embedding' we mean inclusion of the font in a document or file in a way that makes extraction (and redistribution) difficult or clearly discouraged. In many cases the names of embedded fonts might also not be obvious to those reading the document, the font data format might be altered, and only a subset of the font - only the glyphs required for the text - might be included. Any other means of delivering a font to another person is considered 'distribution', and needs to be accompanied by any copyright notices and licensing information available in OFL.txt.\r\n\r\n1.12  So can I embed OFL fonts in my document?\r\nYes, either in full or a subset. The restrictions regarding font modification and redistribution do not apply, as the font is not intended for use outside the document.\r\n\r\n1.13  Does embedding alter the license of the document itself?\r\nNo. Referencing or embedding an OFL font in any document does not change the license of the document itself. The requirement for fonts to remain under the OFL does not apply to any document created using the fonts and their derivatives. Similarly, creating any kind of graphic using a font under OFL does not make the resulting artwork subject to the OFL.\r\n\r\n1.14  If OFL fonts are extracted from a document in which they are embedded (such as a PDF file), what can be done with them? Is this a risk to author(s)?\r\nThe few utilities that can extract fonts embedded in a PDF will typically output limited amounts of outlines - not a complete font. To create a working font from this method is much more difficult and time consuming than finding the source of the original OFL font. So there is little chance that an OFL font would be extracted and redistributed inappropriately through this method. Even so, copyright laws address any misrepresentation of authorship. All Font Software released under the OFL and marked as such by the author(s) is intended to remain under this license regardless of the distribution method, and cannot be redistributed under any other license. We strongly discourage any font extraction - we recommend directly using the font sources instead - but if you extract font outlines from a document, please be considerate: respect the work of the author(s) and the licensing model.\r\n\r\n1.15  What about distributing fonts with a document? Within a compressed folder structure? Is it distribution, bundling or embedding?\r\nCertain document formats may allow the inclusion of an unmodified font within their file structure which may consist of a compressed folder containing the various resources forming the document (such as pictures and thumbnails). Including fonts within such a structure is understood as being different from embedding but rather similar to bundling (or mere aggregation) which the license explicitly allows. In this case the font is conveyed unchanged whereas embedding a font usually transforms it from the original format. The OFL does not allow anyone to extract the font from such a structure to then redistribute it under another license. The explicit permission to redistribute and embed does not cancel the requirement for the Font Software to remain under the license chosen by its author(s). Even if the font travels inside the document as one of its assets, it should not lose its authorship information and licensing.\r\n\r\n1.16  What about ebooks shipping with open fonts?\r\nThe requirements differ depending on whether the fonts are linked, embedded or distributed (bundled or aggregated). Some ebook formats use web technologies to do font linking via @font-face, others are designed for font embedding, some use fonts distributed with the document or reading software, and a few rely solely on the fonts already present on the target system. The license requirements depend on the type of inclusion as discussed in 1.15.\r\n\r\n1.17  Can Font Software released under the OFL be subject to URL-based access restrictions methods or DRM (Digital Rights Management) mechanisms?\r\nYes, but these issues are out-of-scope for the OFL. The license itself neither encourages their use nor prohibits them since such mechanisms are not implemented in the components of the Font Software but through external software. Such restrictions are put in place for many different purposes corresponding to various usage scenarios. One common example is to limit potentially dangerous cross-site scripting attacks. However, in the spirit of libre/open fonts and unrestricted writing systems, we strongly encourage open sharing and reuse of OFL fonts, and the establishment of an environment where such restrictions are unnecessary. Note that whether you wish to use such mechanisms or you prefer not to, you must still abide by the rules set forth by the OFL when using fonts released by their authors under this license. Derivative fonts must be licensed under the OFL, even if they are part of a service for which you charge fees and/or for which access to source code is restricted. You may not sell the fonts on their own - they must be part of a larger software package, bundle or subscription plan. For example, even if the OFL font is distributed in a software package or via an online service using a DRM mechanism, the user would still have the right to extract that font, use, study, modify and redistribute it under the OFL.\r\n\r\n1.18  I've come across a font released under the OFL. How can I easily get more information about the Original Version? How can I know where it stands compared to the Original Version or other Modified Versions?\r\nConsult the copyright statement(s) in the license for ways to contact the original authors. Consult the FONTLOG (see section 6 for more details and examples) for information on how the font differs from the Original Version, and get in touch with the various contributors via the information in the acknowledgement section. Please consider using the Original Versions of the fonts whenever possible.\r\n\r\n1.19  What do you mean in condition 4 of the OFL's permissions and conditions? Can you provide examples of abusive promotion / endorsement / advertisement vs. normal acknowledgement?\r\nThe intent is that the goodwill and reputation of the author(s) should not be used in a way that makes it sound like the original author(s) endorse or approve of a specific Modified Version or software bundle. For example, it would not be right to advertise a word processor by naming the author(s) in a listing of software features, or to promote a Modified Version on a web site by saying \"designed by ...\". However, it would be appropriate to acknowledge the author(s) if your software package has a list of people who deserve thanks. We realize that this can seem to be a grey area, but the standard used to judge an acknowledgement is that if the acknowledgement benefits the author(s) it is allowed, but if it primarily benefits other parties, or could reflect poorly on the author(s), then it is not.\r\n\r\n1.20 I'm writing a small app for mobile platforms, do I need to include the whole package? \r\nIf you bundle a font under the OFL with your mobile app you must comply with the terms of the license. At a minimum you must include the copyright statement, the license notice and the license text. A mention of this information in your About box or Changelog, with a link to where the font package is from, is good practice, and the extra space needed to carry these items is very small. You do not, however, need to include the full contents of the font package - only the fonts you use and the copyright and license that apply to them. For example, if you only use the regular weight in your app, you do not need to include the italic and bold versions.\r\n\r\n1.21 What about including OFL fonts by default in my firmware or dedicated operating system? \r\nMany such systems are restricted and turned into appliances so that users cannot study or modify them. Using open fonts to increase quality and language coverage is a great idea, but you need to be aware that if there is a way for users to extract fonts you cannot legally prevent them from doing that. The fonts themselves, including any changes you make to them, must be distributed under the OFL even if your firmware has a more restrictive license. If you do transform the fonts and change their formats when you include them in your firmware you must respect any names reserved by the font authors via the RFN mechanism and pick your own font name. Alternatively if you directly add a font under the OFL to the font folder of your firmware without modifying or optimizing it you are simply bundling the font like with any other software collection, and do not need to make any further changes.\r\n\r\n1.22  Can I make and publish CMS themes or templates that use OFL fonts?  Can I include the fonts themselves in the themes or templates? Can I sell the whole package?\r\nYes, you are very welcome to integrate open fonts into themes and templates for your preferred CMS and make them more widely available. Remember that you can only sell the fonts and your CMS add-on as part of a software bundle. (See 1.4 for details and examples about selling bundles).\r\n\r\n1.23  Can OFL fonts be included in services that deliver fonts to the desktop from remote repositories? Even if they contain both OFL and non-OFL fonts?\r\nYes. Some foundries have set up services to deliver fonts to subscribers directly to desktops from their online repositories; similarly, plugins are available to preview and use fonts directly in your design tool or publishing suite. These services may mix open and restricted fonts in the same channel, however they should make a clear distinction between them to users. These services should also not hinder users (such as through DRM or obfuscation mechanisms) from extracting and using the OFL fonts in other environments, or continuing to use OFL fonts after subscription terms have ended, as those uses are specifically allowed by the OFL.\r\n\r\n1.24  Can services that provide or distribute OFL fonts restrict my use of them?\r\nNo. The terms of use of such services cannot replace or restrict the terms of the OFL, as that would be the same as distributing the fonts under a different license, which is not allowed. You are still entitled to use, modify and redistribute them as the original authors have intended outside of the sole control of that particular distribution channel. Note, however, that the fonts provided by these services may differ from the Original Versions.\r\n\r\n\r\n2  USING OFL FONTS FOR WEBPAGES AND ONLINE WEB FONT SERVICES\r\n\r\nNOTE: This section often refers to a separate paper on 'Web Fonts & RFNs'. This is available at http://scripts.sil.org/OFL_web_fonts_and_RFNs\r\n\r\n2.1  Can I make webpages using these fonts?\r\nYes! Go ahead! Using CSS (Cascading Style Sheets) is recommended. Your three best options are: \r\n- referring directly in your stylesheet to open fonts which may be available on the user's system\r\n- providing links to download the full package of the font - either from your own website or from elsewhere - so users can install it themselves\r\n- using @font-face to distribute the font directly to browsers. This is recommended and explicitly allowed by the licensing model because it is distribution. The font file itself is distributed with other components of the webpage. It is not embedded in the webpage but referenced through a web address which will cause the browser to retrieve and use the corresponding font to render the webpage (see 1.11 and 1.15 for details related to embedding fonts into documents). As you take advantage of the @font-face cross-platform standard, be aware that web fonts are often tuned for a web environment and not intended for installation and use outside a browser. The reasons in favour of using web fonts are to allow design of dynamic text elements instead of static graphics, to make it easier for content to be localized and translated, indexed and searched, and all this with cross-platform open standards without depending on restricted extensions or plugins. You should check the CSS cascade (the order in which fonts are being called or delivered to your users) when testing.\r\n\r\n2.2  Can I make and use WOFF (Web Open Font Format) versions of OFL fonts?\r\nYes, but you need to be careful. A change in font format normally is considered modification, and Reserved Font Names (RFNs) cannot be used. Because of the design of the WOFF format, however, it is possible to create a WOFF version that is not considered modification, and so would not require a name change. You are allowed to create, use and distribute a WOFF version of an OFL font without changing the font name, but only if:\r\n\r\n- the original font data remains unchanged except for WOFF compression, and\r\n- WOFF-specific metadata is either omitted altogether or present and includes, unaltered, the contents of all equivalent metadata in the original font.\r\n\r\nIf the original font data or metadata is changed, or the WOFF-specific metadata is incomplete, the font must be considered a Modified Version, the OFL restrictions would apply and the name of the font must be changed: any RFNs cannot be used and copyright notices and licensing information must be included and cannot be deleted or modified. You must come up with a unique name - we recommend one corresponding to your domain or your particular web application. Be aware that only the original author(s) can use RFNs. This is to prevent collisions between a derivative tuned to your audience and the original upstream version and so to reduce confusion.\r\n\r\nPlease note that most WOFF conversion tools and online services do not meet the two requirements listed above, and so their output must be considered a Modified Version. So be very careful and check to be sure that the tool or service you're using is compressing unchanged data and completely and accurately reflecting the original font metadata.\r\n\r\n2.3  What about other web font formats such as EOT/EOTLite/CWT/etc.?\r\nIn most cases these formats alter the original font data more than WOFF, and do not completely support appropriate metadata, so their use must be considered modification and RFNs may not be used. However, there may be certain formats or usage scenarios that may allow the use of RFNs. See http://scripts.sil.org/OFL_web_fonts_and_RFNs \r\n\r\n2.4  Can I make OFL fonts available through web font online services?\r\nYes, you are welcome to include OFL fonts in online web font services as long as you properly meet all the conditions of the license. The origin and open status of the font should be clear among the other fonts you are hosting. Authorship, copyright notices and license information must be sufficiently visible to your users or subscribers so they know where the font comes from and the rights granted by the author(s). Make sure the font file contains the needed copyright notice(s) and licensing information in its metadata. Please double-check the accuracy of every field to prevent contradictory information. Other font formats, including EOT/EOTLite/CWT and superior alternatives like WOFF, already provide fields for this information. Remember that if you modify the font within your library or convert it to another format for any reason the OFL restrictions apply and you need to change the names accordingly. Please respect the author's wishes as expressed in the OFL and do not misrepresent original designers and their work. Don't lump quality open fonts together with dubious freeware or public domain fonts. Consider how you can best work with the original designers and foundries, support their efforts and generate goodwill that will benefit your service. (See 1.17 for details related to URL-based access restrictions methods or DRM mechanisms).\r\n\r\n2.5  Some web font formats and services provide ways of \"optimizing\" the font for a particular website or web application; is that allowed? \r\nYes, it is permitted, but remember that these optimized versions are Modified Versions and so must follow OFL requirements like appropriate renaming. Also you need to bear in mind the other important parameters beyond compression, speed and responsiveness: you need to consider the audience of your particular website or web application, as choosing some optimization parameters may turn out to be less than ideal for them. Subsetting by removing certain glyphs or features may seriously limit functionality of the font in various languages that your users expect. It may also introduce degradation of quality in the rendering or specific bugs on the various target platforms compared to the original font from upstream. In other words, remember that one person's optimized font may be another person's missing feature. Various advanced typographic features (OpenType, Graphite or AAT) are also available through CSS and may provide the desired effects without the need to modify the font.\r\n\r\n2.6  Is subsetting a web font considered modification?\r\nYes. Removing any parts of the font when delivering a web font to a browser, including unused glyphs and smart font code, is considered modification. This is permitted by the OFL but would not normally allow the use of RFNs. Some newer subsetting technologies may be able to subset in a way that allows users to effectively have access to the complete font, including smart font behaviour. See 2.8 and http://scripts.sil.org/OFL_web_fonts_and_RFNs\r\n\r\n2.7  Are there any situations in which a modified web font could use RFNs?\r\nYes. If a web font is optimized only in ways that preserve Functional Equivalence (see 2.8), then it may use RFNs, as it reasonably represents the Original Version and respects the intentions of the author(s) and the main purposes of the RFN mechanism (avoids collisions, protects authors, minimizes support, encourages derivatives). However this is technically very difficult and often impractical, so a much better scenario is for the web font service or provider to sign a separate agreement with the author(s) that allows the use of RFNs for Modified Versions.\r\n\r\n2.8  How do you know if an optimization to a web font preserves Functional Equivalence?\r\nFunctional Equivalence is described in full in the 'Web fonts and RFNs' paper at http://scripts.sil.org/OFL_web_fonts_and_RFNs, in general, an optimized font is deemed to be Functionally Equivalent (FE) to the Original Version if it:\r\n\r\n- Supports the same full character inventory. If a character can be properly displayed using the Original Version, then that same character, encoded correctly on a web page, will display properly. \r\n- Provides the same smart font behavior. Any dynamic shaping behavior that works with the Original Version should work when optimized, unless the browser or environment does not support it. There does not need to be guaranteed support in the client, but there should be no forced degradation of smart font or shaping behavior, such as the removal or obfuscation of OpenType, Graphite or AAT tables.\r\n- Presents text with no obvious degradation in visual quality. The lettershapes should be equally (or more) readable, within limits of the rendering platform.\r\n- Preserves original author, project and license metadata. At a minimum, this should include: Copyright and authorship; The license as stated in the Original Version, whether that is the full text of the OFL or a link to the web version; Any RFN declarations; Information already present in the font or documentation that points back to the Original Version, such as a link to the project or the author's website.\r\n\r\nIf an optimized font meets these requirements, and so is considered to be FE, then it's very likely that the original author would feel that the optimized font is a good and reasonable equivalent. If it falls short of any of these requirements, the optimized font does not reasonably represent the Original Version, and so should be considered to be a Modified Version. Like other Modified Versions, it would not be allowed to use any RFNs and you simply need to pick your own font name.\r\n\r\n2.9  Isn't use of web fonts another form of embedding?\r\nNo. Unlike embedded fonts in a PDF, web fonts are not an integrated part of the document itself. They are not specific to a single document and are often applied to thousands of documents around the world. The font data is not stored alongside the document data and often originates from a different location. The ease by which the web fonts used by a document may be identified and downloaded for desktop use demonstrates that they are philosophically and technically separate from the web pages that specify them. See http://scripts.sil.org/OFL_web_fonts_and_RFNs\r\n\r\n2.10  So would it be better to not use RFNs at all if you want your font to be distributed by a web fonts service?\r\nNo. Although the OFL does not require authors to use RFNs, the RFN mechanism is an important part of the OFL model and completely compatible with web font services. If that web font service modifies the fonts, then the best solution is to sign a separate agreement for the use of any RFNs. It is perfectly valid for an author to not declare any RFNs, but before they do so they need to fully understand the benefits they are giving up, and the overall negative effect of allowing many different versions bearing the same name to be widely distributed. As a result, we don't generally recommend it.\r\n\r\n2.11  What should an agreement for the use of RFNs say? Are there any examples?\r\nThere is no prescribed format for this agreement, as legal systems vary, and no recommended examples. Authors may wish to add specific clauses to further restrict use, require author review of Modified Versions, establish user support mechanisms or provide terms for ending the agreement. Such agreements are usually not public, and apply only to the main parties. However, it would be very beneficial for web font services to clearly state when they have established such agreements, so that the public understands clearly that their service is operating appropriately.\r\n\r\nSee the separate paper on 'Web Fonts & RFNs' for in-depth discussion of issues related to the use of RFNs for web fonts. This is available at http://scripts.sil.org/OFL_web_fonts_and_RFNs\r\n\r\n\r\n3  MODIFYING OFL-LICENSED FONTS\r\n\r\n3.1  Can I change the fonts? Are there any limitations to what things I can and cannot change?\r\nYou are allowed to change anything, as long as such changes do not violate the terms of the license. In other words, you are not allowed to remove the copyright statement(s) from the font, but you could put additional information into it that covers your contribution. See the placeholders in the OFL header template for recommendations on where to add your own statements. (Remember that, when authors have reserved names via the RFN mechanism, you need to change the internal names of the font to your own font name when making your modified version even if it is just a small change.)\r\n\r\n3.2  I have a font that needs a few extra glyphs - can I take them from an OFL licensed font and copy them into mine?\r\nYes, but if you distribute that font to others it must be under the OFL, and include the information mentioned in condition 2 of the license.\r\n\r\n3.3  Can I charge people for my additional work? In other words, if I add a bunch of special glyphs or OpenType/Graphite/AAT code, can I sell the enhanced font?\r\nNot by itself. Derivative fonts must be released under the OFL and cannot be sold by themselves. It is permitted, however, to include them in a larger software package (such as text editors, office suites or operating systems), even if the larger package is sold. In that case, you are strongly encouraged, but not required, to also make that derived font easily and freely available outside of the larger package.\r\n\r\n3.4  Can I pay someone to enhance the fonts for my use and distribution?\r\nYes. This is a good way to fund the further development of the fonts. Keep in mind, however, that if the font is distributed to others it must be under the OFL. You won't be able to recover your investment by exclusively selling the font, but you will be making a valuable contribution to the community. Please remember how you have benefited from the contributions of others.\r\n\r\n3.5  I need to make substantial revisions to the font to make it work with my program. It will be a lot of work, and a big investment, and I want to be sure that it can only be distributed with my program. Can I restrict its use?\r\nNo. If you redistribute a Modified Version of the font it must be under the OFL. You may not restrict it in any way beyond what the OFL permits and requires. This is intended to ensure that all released improvements to the fonts become available to everyone. But you will likely get an edge over competitors by being the first to distribute a bundle with the enhancements. Again, please remember how you have benefited from the contributions of others.\r\n\r\n3.6  Do I have to make any derivative fonts (including extended source files, build scripts, documentation, etc.) publicly available?\r\nNo, but please consider sharing your improvements with others. You may find that you receive in return more than what you gave.\r\n\r\n3.7  If a trademark is claimed in the OFL font, does that trademark need to remain in modified fonts?\r\nYes. Any trademark notices must remain in any derivative fonts to respect trademark laws, but you may add any additional trademarks you claim, officially registered or not. For example if an OFL font called \"Foo\" contains a notice that \"Foo is a trademark of Acme\", then if you rename the font to \"Bar\" when creating a Modified Version, the new trademark notice could say \"Foo is a trademark of Acme Inc. - Bar is a trademark of Roadrunner Technologies Ltd.\". Trademarks work alongside the OFL and are not subject to the terms of the licensing agreement. The OFL does not grant any rights under trademark law. Bear in mind that trademark law varies from country to country and that there are no international trademark conventions as there are for copyright. You may need to significantly invest in registering and defending a trademark for it to remain valid in the countries you are interested in. This may be costly for an individual independent designer.\r\n\r\n3.8 If I commit changes to a font (or publish a branch in a DVCS) as part of a public open source software project, do I have to change the internal font names? \r\nOnly if there are declared RFNs. Making a public commit or publishing a public branch is effectively redistributing your modifications, so any change to the font will require that you do not use the RFNs. Even if there are no RFNs, it may be useful to change the name or add a suffix indicating that a particular version of the font is still in development and not released yet. This will clearly indicate to users and fellow designers that this particular font is not ready for release yet. See section 5 for more details.\r\n\r\n\r\n4  LICENSING YOUR ORIGINAL FONTS UNDER THE OFL\r\n\r\n4.1  Can I use the SIL OFL for my own fonts?\r\nYes! We heartily encourage everyone to use the OFL to distribute their own original fonts. It is a carefully constructed license that allows great freedom along with enough artistic integrity protection for the work of the authors as well as clear rules for other contributors and those who redistribute the fonts. The licensing model is used successfully by various organisations, both for-profit and not-for-profit, to release fonts of varying levels of scope and complexity.\r\n\r\n4.2  What do I have to do to apply the OFL to my font?\r\nIf you want to release your fonts under the OFL, we recommend you do the following:\r\n\r\n4.2.1  Put your copyright and Reserved Font Names information at the beginning of the main OFL.txt file in place of the dedicated placeholders (marked with the <> characters). Include this file in your release package.\r\n\r\n4.2.2  Put your copyright and the OFL text with your chosen Reserved Font Name(s) into your font files (the copyright and license fields). A link to the OFL text on the OFL web site is an acceptable (but not recommended) alternative. Also add this information to any other components (build scripts, glyph databases, documentation, test files, etc). Accurate metadata in your font files is beneficial to you as an increasing number of applications are exposing this information to the user. For example, clickable links can bring users back to your website and let them know about other work you have done or services you provide. Depending on the format of your fonts and sources, you can use template human-readable headers or machine-readable metadata. You should also double-check that there is no conflicting metadata in the font itself contradicting the license, such as the fstype bits in the os2 table or fields in the name table.\r\n\r\n4.2.3  Write an initial FONTLOG.txt for your font and include it in the release package (see Section 6 and Appendix A for details including a template).\r\n\r\n4.2.4  Include the relevant practical documentation on the license by adding the current OFL-FAQ.txt file in your package.\r\n\r\n4.2.5  If you wish you can use the OFL graphics (http://scripts.sil.org/OFL_logo) on your website. \r\n\r\n4.3  Will you make my font OFL for me?\r\nWe won't do the work for you. We can, however, try to answer your questions, unfortunately we do not have the resources to review and check your font packages for correct use of the OFL. We recommend you turn to designers, foundries or consulting companies with experience in doing open font design to provide this service to you. \r\n\r\n4.4  Will you distribute my OFL font for me?\r\nNo, although if the font is of sufficient quality and general interest we may include a link to it on our partial list of OFL fonts on the OFL web site. You may wish to consider other open font catalogs or hosting services, such as the Unifont Font Guide (http://unifont.org/fontguide), The League of Movable Type (http://theleagueofmovabletype.com) or the Open Font Library (http://openfontlibrary.org/), which despite the name has no direct relationship to the OFL or SIL. We do not endorse any particular catalog or hosting service - it is your responsibility to determine if the service is right for you and if it treats authors with fairness. \r\n\r\n4.5  Why should I use the OFL for my fonts?\r\n- to meet needs for fonts that can be modified to support lesser-known languages\r\n- to provide a legal and clear way for people to respect your work but still use it (and reduce piracy)\r\n- to involve others in your font project\r\n- to enable your fonts to be expanded with new weights and improved writing system/language support\r\n- to allow more technical font developers to add features to your design (such as OpenType, Graphite or AAT support)\r\n- to renew the life of an old font lying on your hard drive with no business model\r\n- to allow your font to be included in Libre Software operating systems like Ubuntu\r\n- to give your font world status and wide, unrestricted distribution\r\n- to educate students about quality typeface and font design\r\n- to expand your test base and get more useful feedback \r\n- to extend your reach to new markets when users see your metadata and go to your website\r\n- to get your font more easily into one of the web font online services\r\n- to attract attention for your commercial fonts\r\n- to make money through web font services\r\n- to make money by bundling fonts with applications\r\n- to make money adjusting and extending existing open fonts\r\n- to get a better chance that foundations/NGOs/charities/companies who commission fonts will pick you \r\n- to be part of a sharing design and development community \r\n- to give back and contribute to a growing body of font sources\r\n\r\n\r\n5  CHOOSING RESERVED FONT NAMES\r\n\r\n5.1  What are Reserved Font Names?\r\nThese are font names, or portions of font names, that the author has chosen to reserve for use only with the Original Version of the font, or for Modified Version(s) created by the original author.\r\n\r\n5.2  Why can't I use the Reserved Font Names in my derivative font names? I'd like people to know where the design came from.\r\nThe best way to acknowledge the source of the design is to thank the original authors and any other contributors in the files that are distributed with your revised font (although no acknowledgement is required). The FONTLOG is a natural place to do this. Reserved Font Names ensure that the only fonts that have the original names are the unmodified Original Versions. This allows designers to maintain artistic integrity while allowing collaboration to happen. It eliminates potential confusion and name conflicts. When choosing a name, be creative and avoid names that reuse almost all the same letters in the same order or sound like the original. It will help everyone if Original Versions and Modified Versions can easily be distinguished from one another and from other derivatives. Any substitution and matching mechanism is outside the scope of the license.\r\n\r\n5.3  What do you mean by \"primary name as presented to the user\"? Are you referring to the font menu name?\r\nYes, this applies to the font menu name and other mechanisms that specify a font in a document. It would be fine, however, to keep a text reference to the original fonts in the description field, in your modified source file or in documentation provided alongside your derivative as long as no one could be confused that your modified source is the original. But you cannot use the Reserved Font Names in any way to identify the font to the user (unless the Copyright Holder(s) allow(s) it through a separate agreement). Users who install derivatives (Modified Versions) on their systems should not see any of the original Reserved Font Names in their font menus, for example. Again, this is to ensure that users are not confused and do not mistake one font for another and so expect features only another derivative or the Original Version can actually offer. \r\n\r\n5.4  Am I not allowed to use any part of the Reserved Font Names?\r\nYou may not use individual words from the Reserved Font Names, but you would be allowed to use parts of words, as long as you do not use any word from the Reserved Font Names entirely. We do not recommend using parts of words because of potential confusion, but it is allowed. For example, if \"Foobar\" was a Reserved Font Name, you would be allowed to use \"Foo\" or \"bar\", although we would not recommend it. Such an unfortunate choice would confuse the users of your fonts as well as make it harder for other designers to contribute.\r\n\r\n5.5  So what should I, as an author, identify as Reserved Font Names?\r\nOriginal authors are encouraged to name their fonts using clear, distinct names, and only declare the unique parts of the name as Reserved Font Names. For example, the author of a font called \"Foobar Sans\" would declare \"Foobar\" as a Reserved Font Name, but not \"Sans\", as that is a common typographical term, and may be a useful word to use in a derivative font name. Reserved Font Names should also be single words for simplicity and legibility. A font called \"Flowing River\" should have Reserved Font Names \"Flowing\" and \"River\", not \"Flowing River\". You also need to be very careful about reserving font names which are already linked to trademarks (whether registered or not) which you do not own.\r\n\r\n5.6  Do I, as an author, have to identify any Reserved Font Names?\r\nNo. RFNs are optional and not required, but we encourage you to use them. This is primarily to avoid confusion between your work and Modified Versions. As an author you can release a font under the OFL and not declare any Reserved Font Names. There may be situations where you find that using no RFNs and letting your font be changed and modified - including any kind of modification - without having to change the original name is desirable. However you need to be fully aware of the consequences. There will be no direct way for end-users and other designers to distinguish your Original Version from many Modified Versions that may be created. You have to trust whoever is making the changes and the optimizations to not introduce problematic changes. The RFNs you choose for your own creation have value to you as an author because they allow you to maintain artistic integrity and keep some control over the distribution channel to your end-users. For discussion of RFNs and web fonts see section 2.\r\n\r\n5.7  Are any names (such as the main font name) reserved by default?\r\nNo. That is a change to the license as of version 1.1. If you want any names to be Reserved Font Names, they must be specified after the copyright statement(s).\r\n\r\n5.8  Is there any situation in which I can use Reserved Font Names for a Modified Version?\r\nThe Copyright Holder(s) can give certain trusted parties the right to use any of the Reserved Font Names through separate written agreements. For example, even if \"Foobar\" is a RFN, you could write up an agreement to give company \"XYZ\" the right to distribute a modified version with a name that includes \"Foobar\". This allows for freedom without confusion. The existence of such an agreement should be made as clear as possible to downstream users and designers in the distribution package and the relevant documentation. They need to know if they are a party to the agreement or not and what they are practically allowed to do or not even if all the details of the agreement are not public.\r\n\r\n5.9  Do font rebuilds require a name change? Do I have to change the name of the font when my packaging workflow includes a full rebuild from source?\r\nYes, all rebuilds which change the font data and the smart code are Modified Versions and the requirements of the OFL apply: you need to respect what the Author(s) have chosen in terms of Reserved Font Names. However if a package (or installer) is simply a wrapper or a compressed structure around the final font - leaving them intact on the inside - then no name change is required. Please get in touch with the author(s) and copyright holder(s) to inquire about the presence of font sources beyond the final font file(s) and the recommended build path. That build path may very well be non-trivial and hard to reproduce accurately by the maintainer. If a full font build path is made available by the upstream author(s) please be aware that any regressions and changes you may introduce when doing a rebuild for packaging purposes is your own responsibility as a package maintainer since you are effectively creating a separate branch. You should make it very clear to your users that your rebuilt version is not the canonical one from upstream.\r\n\r\n5.10  Can I add other Reserved Font Names when making a derivative font?\r\nYes. List your additional Reserved Font Names after your additional copyright statement, as indicated with example placeholders at the top of the OFL.txt file. Be sure you do not remove any existing RFNs but only add your own. RFN statements should be placed next to the copyright statement of the relevant author as indicated in the OFL.txt template to make them visible to designers wishing to make their separate version.\r\n\r\n\r\n6  ABOUT THE FONTLOG\r\n\r\n6.1  What is this FONTLOG thing exactly?\r\nIt has three purposes: 1) to provide basic information on the font to users and other designers and developers, 2) to document changes that have been made to the font or accompanying files, either by the original authors or others, and 3) to provide a place to acknowledge authors and other contributors. Please use it!\r\n\r\n6.2  Is the FONTLOG required?\r\nIt is not a requirement of the license, but we strongly recommend you have one.\r\n\r\n6.3  Am I required to update the FONTLOG when making Modified Versions?\r\nNo, but users, designers and other developers might get very frustrated with you if you don't. People need to know how derivative fonts differ from the original, and how to take advantage of the changes, or build on them. There are utilities that can help create and maintain a FONTLOG, such as the FONTLOG support in FontForge.\r\n\r\n6.4  What should the FONTLOG look like?\r\nIt is typically a separate text file (FONTLOG.txt), but can take other formats. It commonly includes these four sections:\r\n\r\n- brief header describing the FONTLOG itself and name of the font family\r\n- Basic Font Information - description of the font family, purpose and breadth\r\n- ChangeLog - chronological listing of changes\r\n- Acknowledgements - list of authors and contributors with contact information\r\n\r\nIt could also include other sections, such as: where to find documentation, how to make contributions, information on contributing organizations, source code details, and a short design guide. See Appendix A for an example FONTLOG.\r\n\r\n\r\n7  MAKING CONTRIBUTIONS TO OFL PROJECTS\r\n\r\n7.1  Can I contribute work to OFL projects?\r\nIn many cases, yes. It is common for OFL fonts to be developed by a team of people who welcome contributions from the wider community. Contact the original authors for specific information on how to participate in their projects.\r\n\r\n7.2  Why should I contribute my changes back to the original authors?\r\nIt would benefit many people if you contributed back in response to what you've received. Your contributions and improvements to the fonts and other components could be a tremendous help and would encourage others to contribute as well and 'give back'. You will then benefit from other people's contributions as well. Sometimes maintaining your own separate version takes more effort than merging back with the original. Be aware that any contributions, however, must be either your own original creation or work that you own, and you may be asked to affirm that clearly when you contribute.\r\n\r\n7.3  I've made some very nice improvements to the font. Will you consider adopting them and putting them into future Original Versions?\r\nMost authors would be very happy to receive such contributions. Keep in mind that it is unlikely that they would want to incorporate major changes that would require additional work on their end. Any contributions would likely need to be made for all the fonts in a family and match the overall design and style. Authors are encouraged to include a guide to the design with the fonts. It would also help to have contributions submitted as patches or clearly marked changes - the use of smart source revision control systems like subversion, mercurial, git or bzr is a good idea. Please follow the recommendations given by the author(s) in terms of preferred source formats and configuration parameters for sending contributions. If this is not indicated in a FONTLOG or other documentation of the font, consider asking them directly. Examples of useful contributions are bug fixes, additional glyphs, stylistic alternates (and the smart font code to access them) or improved hinting. Keep in mind that some kinds of changes (esp. hinting) may be technically difficult to integrate.\r\n\r\n7.4  How can I financially support the development of OFL fonts?\r\nIt is likely that most authors of OFL fonts would accept financial contributions - contact them for instructions on how to do this. Such contributions would support future development. You can also pay for others to enhance the fonts and contribute the results back to the original authors for inclusion in the Original Version.\r\n\r\n\r\n8  ABOUT THE LICENSE ITSELF\r\n\r\n8.1  I see that this is version 1.1 of the license. Will there be later changes?\r\nVersion 1.1 is the first minor revision of the OFL. We are confident that version 1.1 will meet most needs, but are open to future improvements. Any revisions would be for future font releases, and previously existing licenses would remain in effect. No retroactive changes are possible, although the Copyright Holder(s) can re-release the font under a revised OFL. All versions will be available on our web site: http://scripts.sil.org/OFL.\r\n\r\n8.2  Does this license restrict the rights of the Copyright Holder(s)?\r\nNo. The Copyright Holder(s) still retain(s) all the rights to their creation; they are only releasing a portion of it for use in a specific way. For example, the Copyright Holder(s) may choose to release a 'basic' version of their font under the OFL, but sell a restricted 'enhanced' version under a different license. They may also choose to release the same font under both the OFL and some other license. Only the Copyright Holder(s) can do this, and doing so does not change the terms of the OFL as it applies to that font.\r\n\r\n8.3  Is the OFL a contract or a license?\r\nThe OFL is a worldwide license based on international copyright agreements and conventions. It is not a contract and so does not require you to sign it to have legal validity. By using, modifying and redistributing components under the OFL you indicate that you accept the license.\r\n\r\n8.4  I really like the terms of the OFL, but want to change it a little. Am I allowed to take ideas and actual wording from the OFL and put them into my own custom license for distributing my fonts?\r\nWe strongly recommend against creating your very own unique open licensing model. Using a modified or derivative license will likely cut you off - along with the font(s) under that license - from the community of designers using the OFL, potentially expose you and your users to legal liabilities, and possibly put your work and rights at risk. The OFL went though a community and legal review process that took years of effort, and that review is only applicable to an unmodified OFL. The text of the OFL has been written by SIL (with review and consultation from the community) and is copyright (c) 2005-2017 SIL International. You may re-use the ideas and wording (in part, not in whole) in another non-proprietary license provided that you call your license by another unambiguous name, that you do not use the preamble, that you do not mention SIL and that you clearly present your license as different from the OFL so as not to cause confusion by being too similar to the original. If you feel the OFL does not meet your needs for an open license, please contact us.\r\n\r\n8.5  Can I quote from the OFL FAQ?\r\nYes, SIL gives permission to quote from the OFL FAQ (OFL-FAQ.txt), in whole or in part, provided that the quoted text is:\r\n\r\n- unmodified,\r\n- used to help explain the intent of the OFL, rather than cause misunderstanding, and\r\n- accompanied with the following attribution: \"From the OFL FAQ (OFL-FAQ.txt), copyright (c) 2005-2017 SIL International. Used by permission. http://scripts.sil.org/OFL-FAQ_web\".\r\n\r\n8.6  Can I translate the license and the FAQ into other languages?\r\nSIL certainly recognises the need for people who are not familiar with English to be able to understand the OFL and its use. Making the license very clear and readable has been a key goal for the OFL, but we know that people understand their own language best.\r\n\r\nIf you are an experienced translator, you are very welcome to translate the OFL and OFL-FAQ so that designers and users in your language community can understand the license better. But only the original English version of the license has legal value and has been approved by the community. Translations do not count as legal substitutes and should only serve as a way to explain the original license. SIL - as the author and steward of the license for the community at large - does not approve any translation of the OFL as legally valid because even small translation ambiguities could be abused and create problems.\r\n\r\nSIL gives permission to publish unofficial translations into other languages provided that they comply with the following guidelines:\r\n\r\n- Put the following disclaimer in both English and the target language stating clearly that the translation is unofficial:\r\n\r\n\"This is an unofficial translation of the SIL Open Font License into <language_name>. It was not published by SIL International, and does not legally state the distribution terms for fonts that use the OFL. A release under the OFL is only valid when using the original English text. However, we recognize that this unofficial translation will help users and designers not familiar with English to better understand and use the OFL. We encourage designers who consider releasing their creation under the OFL to read the OFL-FAQ in their own language if it is available. Please go to http://scripts.sil.org/OFL for the official version of the license and the accompanying OFL-FAQ.\"\r\n\r\n- Keep your unofficial translation current and update it at our request if needed, for example if there is any ambiguity which could lead to confusion.  \r\n\r\nIf you start such a unofficial translation effort of the OFL and OFL-FAQ please let us know.\r\n\r\n8.7 Does the OFL have an explicit expiration term?\r\nNo, the implicit intent of the OFL is that the permissions granted are perpetual and irrevocable. \r\n\r\n\r\n9  ABOUT SIL INTERNATIONAL\r\n\r\n9.1  Who is SIL International and what do they do?\r\nSIL serves language communities worldwide, building their capacity for sustainable language development, by means of research, translation, training and materials development. SIL makes its services available to all without regard to religious belief, political ideology, gender, race, or ethnic background. SIL's members and volunteers share a Christian commitment.\r\n\r\n9.2  What does this have to do with font licensing?\r\nThe ability to read, write, type and publish in one's own language is one of the most critical needs for millions of people around the world. This requires fonts that are widely available and support lesser-known languages. SIL develops - and encourages others to develop - a complete stack of writing systems implementation components available under open licenses. This open stack includes input methods, smart fonts, smart rendering libraries and smart applications. There has been a need for a common open license that is specifically applicable to fonts and related software (a crucial component of this stack), so SIL developed the SIL Open Font License with the help of the Free/Libre and Open Source Software community.\r\n\r\n9.3  How can I contact SIL?\r\nOur main web site is: http://www.sil.org/\r\nOur site about complex scripts is: http://scripts.sil.org/\r\nInformation about this license (and contact information) is at: http://scripts.sil.org/OFL\r\n\r\n\r\nAPPENDIX A - FONTLOG EXAMPLE\r\n\r\nHere is an example of the recommended format for a FONTLOG, although other formats are allowed.\r\n\r\n-----\r\nFONTLOG for the GlobalFontFamily fonts\r\n\r\nThis file provides detailed information on the GlobalFontFamily Font Software. This information should be distributed along with the GlobalFontFamily fonts and any derivative works.\r\n\r\nBasic Font Information\r\n\r\nGlobalFontFamily is a Unicode typeface family that supports all languages that use the Latin script and its variants, and could be expanded to support other scripts.\r\n\r\nNewWorldFontFamily is based on the GlobalFontFamily and also supports Greek, Hebrew, Cyrillic and Armenian.\r\n\r\nMore specifically, this release supports the following Unicode ranges...\r\nThis release contains...\r\nDocumentation can be found at...\r\nTo contribute to the project...\r\n\r\nChangeLog\r\n\r\n10 December 2010 (Fred Foobar) GlobalFontFamily-devel version 1.4\r\n- fix new build and testing system (bug #123456)\r\n\r\n1 August 2008 (Tom Parker) GlobalFontFamily version 1.2.1\r\n- Tweaked the smart font code (Branch merged with trunk version)\r\n- Provided improved build and debugging environment for smart behaviours\r\n\r\n7 February 2007 (Pat Johnson) NewWorldFontFamily Version 1.3\r\n- Added Greek and Cyrillic glyphs\r\n\r\n7 March 2006 (Fred Foobar) NewWorldFontFamily Version 1.2\r\n- Tweaked contextual behaviours\r\n\r\n1 Feb 2005 (Jane Doe) NewWorldFontFamily Version 1.1\r\n- Improved build script performance and verbosity\r\n- Extended the smart code documentation\r\n- Corrected minor typos in the documentation\r\n- Fixed position of combining inverted breve below (U+032F)\r\n- Added OpenType/Graphite smart code for Armenian\r\n- Added Armenian glyphs (U+0531 -> U+0587) \r\n- Released as \"NewWorldFontFamily\"\r\n\r\n1 Jan 2005 (Joe Smith) GlobalFontFamily Version 1.0\r\n- Initial release\r\n\r\nAcknowledgements\r\n\r\nIf you make modifications be sure to add your name (N), email (E), web-address (if you have one) (W) and description (D). This list is in alphabetical order.\r\n\r\nN: Jane Doe\r\nE: jane@university.edu\r\nW: http://art.university.edu/projects/fonts\r\nD: Contributor - Armenian glyphs and code\r\n\r\nN: Fred Foobar\r\nE: fred@foobar.org\r\nW: http://foobar.org\r\nD: Contributor - misc Graphite fixes\r\n\r\nN: Pat Johnson\r\nE: pat@fontstudio.org\r\nW: http://pat.fontstudio.org\r\nD: Designer - Greek & Cyrillic glyphs based on Roman design\r\n\r\nN: Tom Parker\r\nE: tom@company.com\r\nW: http://www.company.com/tom/projects/fonts\r\nD: Engineer - original smart font code\r\n\r\nN: Joe Smith\r\nE: joe@fontstudio.org\r\nW: http://joe.fontstudio.org\r\nD: Designer - original Roman glyphs\r\n\r\nFontstudio.org is an not-for-profit design group whose purpose is...\r\nFoobar.org is a distributed community of developers...\r\nCompany.com is a small business who likes to support community designers...\r\nUniversity.edu is a renowned educational institution with a strong design department...\r\n-----\r\n\r\n"
  },
  {
    "path": "README.md",
    "content": "![Cascadia Code](images/cascadia-code.png)\r\n\r\n# About Cascadia Code\r\nCascadia is a fun new coding font that comes bundled with [Windows Terminal](https://github.com/microsoft/terminal), and is now the default font in Visual Studio as well. \r\n\r\n# Font Variants\r\n-  `Cascadia Code`: standard version of Cascadia\r\n-  `Cascadia Mono`: a version of Cascadia that doesn't have ligatures\r\n-  `Cascadia (Code|Mono) PL`: a version of Cascadia that has embedded Powerline symbols\r\n-  `Cascadia (Code|Mono) NF`: a version of Cascadia that has Nerd Font symbols\r\n\r\nFor the italic, there is a standard `italic` and a `cursive` variant accessible via `ss01` (see [below](https://github.com/microsoft/cascadia-code/blob/main/README.md#to-enable-the-cursive-form-of-the-italic-heres-the-code-you-should-use)). \r\n\r\n# Font features\r\n![Coding Ligatures](images/ligatures.png)\r\n\r\n![Arrow Support](images/arrow_support.png)\r\n\r\n![Stylistic Sets](images/stylistic_set.png)\r\n\r\nEnabling stylistic sets will [vary between applications](https://github.com/tonsky/FiraCode/wiki/How-to-enable-stylistic-sets). For example, in VS Code, you can enable stylistic sets (and other OpenType features) via `settings.json`:\r\n\r\n```\r\n\"editor.fontLigatures\": \"'ss01', 'ss02', 'ss03', 'ss19', 'ss20'\"\r\n```\r\n\r\n#### To enable the Cursive form of the italic, here's the code you should use:\r\n```\r\n\"editor.fontLigatures\": \"'calt', 'ss01'\",\r\n```\r\nIf you're using an environment that does not support the `ss01` OT feature, one option to consider is [opentype-feature-freezer](https://github.com/twardoch/fonttools-opentype-feature-freezer/).\r\n\r\n# Character Sets\r\n![Cascadia Code](images/cascadia-code-characters.png)\r\n![Cascadia Code Italic](images/cascadia-code-italic-characters.png)\r\n![Symbols for Legacy Computing and other block elements](images/cascadia-legacycomputing-characters.png)\r\n\r\n# Installation\r\n\r\n**You can download the latest version of Cascadia Code from the releases page here:** [https://github.com/microsoft/cascadia-code/releases](https://github.com/microsoft/cascadia-code/releases)\r\n\r\n##### Font formats:\r\n\r\n- `ttf variable`: we recommend this version for **all users,** and particularly those on Windows or any other OS that employs TrueType hinting. It offers the greatest diversity of weight options (anything from 200-700).\r\n- `ttf static`: in the rare situation where the above variable font version is not supported, or a singular weight is preferred to the entire range, static formats are supplied. However, please note they do not have the same degree of hinting quality as the variable font versions.\r\n- `otf static`: for users who prefer OTF format fonts, otf static instances are provided. At this time we do not have a variable font OTF version. \r\n- `WOFF2`: These versions are provided for the purposes of web use, and are available both as variable fonts, and static instances. \r\n\r\nOnce unzipped, right-click the font file and click `Install for all users`. This will install the font onto your machine. \r\n\r\n👉 **Note:** If you have previously installed a version of Cascadia Code, please uninstall the previous version *prior* to installing a new version. Not doing so can result in improper rendering. \r\n\r\nFor more details and app-specific instructions, [please check the wiki](https://github.com/microsoft/cascadia-code/wiki/Installing-Cascadia-Code). \r\n\r\n# Get involved\r\nInstructions on how to modify and submit an update to the Cascadia Code source is [available in the wiki](https://github.com/microsoft/cascadia-code/wiki/Modifying-Cascadia-Code).\r\n\r\n\r\n# Communicating with the Team\r\n\r\nThe easiest way to communicate with the team is via GitHub Issues. Please file new issues, feature requests and suggestions, but **DO search for similar open/closed pre-existing issues before you do**.\r\n\r\nPlease help us keep this repository clean, inclusive, and fun! We will not tolerate any abusive, rude, disrespectful or inappropriate behavior. Read our [Code of Conduct](https://opensource.microsoft.com/codeofconduct/) for more details.\r\n\r\nIf you would like to ask a question that you feel doesn't warrant an issue (yet), please reach out to us via Twitter:\r\n\r\nAaron Bell, Font Designer: [@aaronbell](https://twitter.com/aaronbell)\r\n\r\nChristopher Nguyen, Product Manager: [@nguyen_dows](https://twitter.com/nguyen_dows)\r\n\r\nDustin Howett, Software Engineer: [@DHowett](https://twitter.com/DHowett)\r\n\r\n_Special thanks_ to:\r\n- Fira Code – OpenType code for the coding ligatures – [github](https://github.com/tonsky/FiraCode)\r\n- Nerd Fonts – Centralizing app iconography – [github](https://github.com/ryanoasis/nerd-fonts)\r\n- Viktoriya Grabowska – Designer of Cyrillic Italic and Consultant – [@vika_grabowska](https://twitter.com/vika_grabowska)\r\n- Mohamad Dakak - Arabic designer - [@mohamaddakak](https://twitter.com/mohamaddakak)\r\n- Liron Lavi Turkenich - Hebrew designer - [@LironLaviTur](https://twitter.com/LironLaviTur)\r\n- Gerry Leonidas – Greek Consultant – [@gerryleonidas](https://twitter.com/gerryleonidas)\r\n- Donny Trương – Vietnamese Consultant – [Vietnamese Typography](https://vietnamesetypography.com)\r\n\r\n# Code of Conduct\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)\r\nor contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\r\n"
  },
  {
    "path": "SECURITY.md",
    "content": "<!-- BEGIN MICROSOFT SECURITY.MD V0.0.5 BLOCK -->\n\n## Security\n\nMicrosoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).\n\nIf you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)), please report it to us as described below.\n\n## Reporting Security Issues\n\n**Please do not report security vulnerabilities through public GitHub issues.**\n\nInstead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://msrc.microsoft.com/create-report).\n\nIf you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com).  If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://www.microsoft.com/en-us/msrc/pgp-key-msrc).\n\nYou should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc). \n\nPlease include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:\n\n  * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)\n  * Full paths of source file(s) related to the manifestation of the issue\n  * The location of the affected source code (tag/branch/commit or direct URL)\n  * Any special configuration required to reproduce the issue\n  * Step-by-step instructions to reproduce the issue\n  * Proof-of-concept or exploit code (if possible)\n  * Impact of the issue, including how an attacker might exploit the issue\n\nThis information will help us triage your report more quickly.\n\nIf you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://microsoft.com/msrc/bounty) page for more details about our active programs.\n\n## Preferred Languages\n\nWe prefer all communications to be in English.\n\n## Policy\n\nMicrosoft follows the principle of [Coordinated Vulnerability Disclosure](https://www.microsoft.com/en-us/msrc/cvd).\n\n<!-- END MICROSOFT SECURITY.MD BLOCK -->"
  },
  {
    "path": "build.py",
    "content": "import argparse\nimport multiprocessing\nimport multiprocessing.pool\nimport os\nimport subprocess\nfrom pathlib import Path\nfrom typing import cast\nimport xml.etree.cElementTree as ET\nimport tempfile\nimport glob\n\nimport cffsubr.__main__\nimport fontmake.instantiator\nimport fontTools.designspaceLib\nimport fontTools.ttLib\nimport fontTools.ttLib.tables._g_l_y_f as _g_l_y_f\nimport psautohint.__main__\nfrom gftools.stat import gen_stat_tables_from_config\nimport yaml\nimport ufo2ft\nimport ufoLib2\nimport vttLib\nimport vttLib.transfer\nfrom vttmisc import tsi1, tsic\n\nVERSION_YEAR_MONTH = 2407\nVERSION_DAY = 24\nOUTPUT_DIR = Path(\"build\")\nOUTPUT_OTF_DIR = OUTPUT_DIR / \"otf\"\nOUTPUT_TTF_DIR = OUTPUT_DIR / \"ttf\"\nOUTPUT_WOFF2_DIR = OUTPUT_DIR / \"woff2\"\nOUTPUT_STATIC_OTF_DIR = OUTPUT_OTF_DIR / \"static\"\nOUTPUT_STATIC_TTF_DIR = OUTPUT_TTF_DIR / \"static\"\nOUTPUT_STATIC_WOFF2_DIR = OUTPUT_WOFF2_DIR / \"static\"\nINPUT_DIR = Path(\"sources\")\nVTT_DATA_FILE = INPUT_DIR / \"vtt_data\" / \"CascadiaCode_VTT.ttf\"\nITALIC_VTT_DATA_FILE = INPUT_DIR / \"vtt_data\" / \"CascadiaCodeItalic_VTT.ttf\"\nFEATURES_DIR = INPUT_DIR / \"features\"\nNERDFONTS_DIR = INPUT_DIR / \"nerdfonts\"\n\n# Font modifications\n# ****************************************************************\n\n\ndef step_set_font_name(name: str, source: ufoLib2.Font) -> None:\n    source.info.familyName = source.info.familyName.replace(\"Cascadia Code\", name)\n    # We have to change the style map family name because that's what\n    # Windows uses to map Bold/Regular/Medium/etc. fonts\n    if source.info.styleMapFamilyName:\n        source.info.styleMapFamilyName = source.info.styleMapFamilyName.replace(\"Cascadia Code\", name)\n\n\ndef step_merge_glyphs_from_ufo(path: Path, instance: ufoLib2.Font) -> None:\n    unicodes = []\n    for glyph in instance:\n        unicodes.append(glyph.unicode)\n    ufo = ufoLib2.Font.open(path)\n    for glyph in ufo:\n        if glyph.unicode:\n            if glyph.unicode not in unicodes:\n                newName = str(hex(glyph.unicode)).upper().replace(\"0X\",\"uni\")\n                instance.layers.defaultLayer.insertGlyph(ufo[glyph.name],newName, overwrite=False, copy=False)\n        else:\n            instance.addGlyph(ufo[glyph.name])\n\n\ndef step_set_feature_file(path: Path, name: str, instance: ufoLib2.Font) -> None:\n    featureSet = \"\"\n    if \"Italic\" in name: #until I can come up with a more elegent solution, this'll do. \n        featureList = [\n            \"header_italic\", # adds definitions, language systems\n            \"aalt_italic\",\n            \"ccmp\",\n            \"locl_italic\", \n            \"calt_italic\", \n            \"figures_italic\", # contains subs/sinf/sups/numr/dnom\n            \"frac\", \n            \"ordn\", \n            \"case\", \n            \"salt\",\n            \"ss01\",\n            \"ss02\",\n            \"ss03\", \n            \"ss19\", \n            \"ss20\", \n            \"rclt\", \n            \"zero\"\n            ]\n    else:\n        featureList = [\n            \"header\", # adds definitions, language systems\n            \"aalt\",\n            \"ccmp\",\n            \"locl\", \n            \"calt\",\n            \"figures\", # contains subs/sinf/sups/numr/dnom\n            \"frac\", \n            \"ordn\", \n            \"case\", \n            \"ss02\", \n            \"ss19\", \n            \"ss20\", \n            \"rclt\", \n            \"zero\",\n            \"init\",\n            \"medi\",\n            \"fina\",\n            \"rlig\",\n            ]\n\n    for item in featureList:\n        if \"PL\" in name and item == \"rclt\":\n            featureSet += Path(path / str(\"rclt_PL.fea\")).read_text()\n        elif \"NF\" in name and item == \"rclt\":\n            featureSet += Path(path / str(\"rclt_PL.fea\")).read_text()\n        elif \"Mono\" in name and \"calt\" in item:\n            featureSet += Path(path / str(item+\"_mono.fea\")).read_text() #both Italic and Regular can use same mono\n        else:\n            featureSet += Path(path / str(item+\".fea\")).read_text()\n    instance.features.text = featureSet   \n\n\ndef set_font_metaData(font: ufoLib2.Font) -> None:\n    font.info.versionMajor = VERSION_YEAR_MONTH\n    font.info.versionMinor = VERSION_DAY\n\n    font.info.openTypeOS2TypoAscender = 1900\n    font.info.openTypeOS2TypoDescender = -480\n    font.info.openTypeOS2TypoLineGap = 0\n\n    font.info.openTypeHheaAscender = font.info.openTypeOS2TypoAscender\n    font.info.openTypeHheaDescender = font.info.openTypeOS2TypoDescender\n    font.info.openTypeHheaLineGap = font.info.openTypeOS2TypoLineGap\n\n    font.info.openTypeOS2WinAscent = 2226\n    font.info.openTypeOS2WinDescent = abs(font.info.openTypeOS2TypoDescender)\n\n    font.info.openTypeGaspRangeRecords = [\n        {\"rangeMaxPPEM\": 9, \"rangeGaspBehavior\": [1, 3]},\n        {\"rangeMaxPPEM\": 50, \"rangeGaspBehavior\": [0, 1, 2, 3]},\n        {\"rangeMaxPPEM\": 65535, \"rangeGaspBehavior\": [1, 3]},\n    ]\n\n\ndef set_overlap_flag(varfont: fontTools.ttLib.TTFont) -> fontTools.ttLib.TTFont:\n    glyf = cast(_g_l_y_f.table__g_l_y_f, varfont[\"glyf\"])\n    for glyph_name in glyf.keys():\n        glyph = glyf[glyph_name]\n        if glyph.isComposite():\n            # Set OVERLAP_COMPOUND bit for compound glyphs\n            glyph.components[0].flags |= 0x400\n        elif glyph.numberOfContours > 0:\n            # Set OVERLAP_SIMPLE bit for simple glyphs\n            glyph.flags[0] |= 0x40\n\ndef prepare_fonts(\n    designspace: fontTools.designspaceLib.DesignSpaceDocument, name: str\n) -> None:\n    designspace.loadSourceFonts(ufoLib2.Font.open)\n    for source in designspace.sources:\n\n        step_set_feature_file(FEATURES_DIR, name, source.font)\n\n        if \"PL\" in name or \"NF\" in name or \"Mono\" in name:\n            step_set_font_name(name, source.font)\n\n        if \"PL\" in name or \"NF\" in name:\n            print(f\"[{name} {source.styleName}] Merging PL glyphs\")\n            step_merge_glyphs_from_ufo(\n                NERDFONTS_DIR / \"NerdfontsPL-Regular.ufo\", source.font\n            )\n\n        if \"NF\" in name:\n            print(f\"[{name} {source.styleName}] Merging NF glyphs\")\n            for ufo in Path(NERDFONTS_DIR/\"full\"/\"processed\").glob(\"*.ufo\"):\n                step_merge_glyphs_from_ufo(\n                    ufo, source.font\n                )\n\n        set_font_metaData(source.font)\n    for instance in designspace.instances:\n        instance.name = instance.name.replace(\"Cascadia Code\", name)\n        instance.familyName = instance.familyName.replace(\"Cascadia Code\", name)\n        if instance.styleMapFamilyName:\n            instance.styleMapFamilyName = instance.styleMapFamilyName.replace(\"Cascadia Code\", name)\n\n\ndef to_woff2(source_path: Path, target_path: Path) -> None:\n    print(f\"[WOFF2] Compressing {source_path} to {target_path}\")\n    font = fontTools.ttLib.TTFont(source_path)\n    font.flavor = \"woff2\"\n    target_path.parent.mkdir(exist_ok=True, parents=True)\n    font.save(target_path)\n\n# Build fonts\n# ****************************************************************\n\n\ndef build_font_variable(\n    designspace: fontTools.designspaceLib.DesignSpaceDocument,\n    name: str,\n    vtt_compile: bool = True,\n) -> None:\n    prepare_fonts(designspace, name)\n    compile_variable_and_save(designspace, vtt_compile)\n\n\ndef build_font_static(\n    designspace: fontTools.designspaceLib.DesignSpaceDocument,\n    instance_descriptor: fontTools.designspaceLib.InstanceDescriptor,\n    name: str,\n) -> None:\n    prepare_fonts(designspace, name)\n\n    generator = fontmake.instantiator.Instantiator.from_designspace(designspace)\n    instance = generator.generate_instance(instance_descriptor)\n    instance.info.familyName = instance.info.familyName.replace(\" Italic\",\"\")\n    if instance.info.styleMapFamilyName:\n        instance.info.styleMapFamilyName = instance.info.styleMapFamilyName.replace(\" Italic\",\"\")\n    compile_static_and_save(instance, name.replace(\" Italic\",\"\"))\n\n\n# Export fonts\n# ****************************************************************\n\n\ndef compile_variable_and_save(\n    designspace: fontTools.designspaceLib.DesignSpaceDocument,\n    vtt_compile: bool = True,\n) -> None:\n    \n    if \"Italic\" in designspace.default.font.info.familyName: #Some weird stuff happens with Italics\n        designspace.default.font.info.familyName = designspace.default.font.info.familyName.replace(\" Italic\", \"\")\n    \n    familyName = designspace.default.font.info.familyName\n    styleName = designspace.default.font.info.styleName\n    file_stem = familyName.replace(\" \", \"\")\n    if \"Italic\" in styleName and \"Italic\" not in file_stem:\n        file_stem = file_stem+\"Italic\"\n    file_path: Path = (OUTPUT_TTF_DIR / file_stem).with_suffix(\".ttf\")\n\n    print(f\"[{familyName} {styleName}] Compiling\")\n    varFont = ufo2ft.compileVariableTTF(designspace, inplace=True)\n\n    print(f\"[{familyName} {styleName}] Merging VTT\")\n\n    if \"Italic\" in styleName:\n        font_vtt = fontTools.ttLib.TTFont(ITALIC_VTT_DATA_FILE)\n    else:\n        font_vtt = fontTools.ttLib.TTFont(VTT_DATA_FILE)\n    \n\n    for table in [\"TSI0\", \"TSI1\", \"TSI2\", \"TSI3\", \"TSI5\", \"TSIC\", \"maxp\"]:\n        varFont[table] = fontTools.ttLib.newTable(table)\n        varFont[table] = font_vtt[table]\n\n    # this will correct the OFFSET[R] commands in TSI1\n    if font_vtt.getGlyphOrder() != varFont.getGlyphOrder():\n        tsi1.fixOFFSET(varFont, font_vtt)\n        pass\n\n    if vtt_compile:\n        print(f\"[{familyName} {styleName}] Compiling VTT\")\n        vttLib.compile_instructions(varFont, ship=True)\n    else:\n        file_path = (OUTPUT_TTF_DIR / str(file_stem+\"_VTT\")).with_suffix(\".ttf\")\n\n    # last minute manual corrections to set things correctly\n    # set two flags to enable proper rendering (one for overlaps in Mac, the other for windows hinting)\n    # Helping mac office generage the postscript name correctly for variable fonts when an italic is present\n    set_overlap_flag(varFont)\n    varFont[\"head\"].flags = 0x000b\n\n    if \"Regular\" in styleName:\n        varFont[\"name\"].setName(familyName.replace(\" \",\"\")+\"Roman\", 25, 3, 1, 1033)\n\n    print(f\"[{familyName} {styleName}] Saving\")\n    file_path.parent.mkdir(exist_ok=True, parents=True)\n    varFont.save(file_path)\n\n    print(f\"[{familyName}] Done: {file_path}\")\n\n\ndef compile_static_and_save(instance: ufoLib2.Font, name:str) -> None:\n    family_name = name\n    style_name = instance.info.styleName\n    print(f\"[{family_name}] Building static instance: {style_name}\")\n\n    # Use pathops backend for overlap removal because it is, at the time of this\n    # writing, massively faster than booleanOperations and thanks to autohinting,\n    # there is no need to keep outlines compatible to previous releases.\n    static_ttf = ufo2ft.compileTTF(\n        instance, removeOverlaps=True, overlapsBackend=\"pathops\"\n    )\n    static_otf = ufo2ft.compileOTF(\n        instance,\n        removeOverlaps=True,\n        overlapsBackend=\"pathops\",\n        # Can do inplace now because TTF is already done.\n        inplace=True,\n        # Don't optimize here, will be optimized after autohinting.\n        optimizeCFF=ufo2ft.CFFOptimization.NONE,\n    )\n\n    file_name = f\"{family_name}-{style_name}\".replace(\" \", \"\")\n    file_path_static = (OUTPUT_STATIC_TTF_DIR / file_name).with_suffix(\".ttf\")\n    file_path_static_otf = (OUTPUT_STATIC_OTF_DIR / file_name).with_suffix(\".otf\")\n\n    file_path_static.parent.mkdir(exist_ok=True, parents=True)\n    static_ttf.save(file_path_static)\n    file_path_static_otf.parent.mkdir(exist_ok=True, parents=True)\n    static_otf.save(file_path_static_otf)\n    print(f\"[{family_name}] Done: {file_path_static}, {file_path_static_otf}\")\n\n\n# Font hinting\n# ****************************************************************\n\n\ndef autohint(otf_path: Path) -> None:\n    path = os.fspath(otf_path)\n\n    print(f\"Autohinting {path}\")\n    psautohint.__main__.main([path])\n\n    print(f\"Compressing {path}\")\n    cffsubr.__main__.main([\"-i\", path])\n\n\ndef ttfautohint(path: str) -> None:\n    print(f\"Autohinting {path}\")\n    subprocess.check_call(\n        [\n            \"ttfautohint\",\n            \"--stem-width\",\n            \"nsn\",\n            \"--increase-x-height\",\n            \"0\",\n            \"--reference\",\n            os.fspath(OUTPUT_STATIC_TTF_DIR / \"CascadiaCode-Regular.ttf\"),\n            path,\n            path[:-4] + \"-hinted.ttf\",\n        ]\n    )\n    os.remove(path)\n    os.rename(path[:-4] + \"-hinted.ttf\", path)\n\n\n# Main build script\n# ****************************************************************\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(description=\"build some fonts\")\n    parser.add_argument(\"-P\", \"--no-powerline\", action=\"store_false\", dest=\"powerline\")\n    parser.add_argument(\"-NF\", \"--no-nerdfonts\", action=\"store_false\", dest=\"nerdfonts\")\n    parser.add_argument(\"-M\", \"--no-mono\", action=\"store_false\", dest=\"mono\")\n    parser.add_argument(\"-S\", \"--static-fonts\", action=\"store_true\")\n    parser.add_argument(\"-I\", \"--no-italic\", action=\"store_false\", dest=\"italic\")\n    parser.add_argument(\n        \"-V\",\n        \"--no-vtt-compile\",\n        action=\"store_false\",\n        dest=\"vtt_compile\",\n        help=\"Do not compile VTT code but leave in the VTT sources.\",\n    )\n    parser.add_argument(\"-W\", \"--web-fonts\", action=\"store_true\")\n    args = parser.parse_args()\n\n    # Load Designspace and filter out instances that are marked as non-exportable.\n    designspace = fontTools.designspaceLib.DesignSpaceDocument.fromfile(\n        INPUT_DIR / \"CascadiaCode_variable.designspace\"\n    )\n\n    designspace.instances = [\n        s\n        for s in designspace.instances\n        if s.lib.get(\"com.schriftgestaltung.export\", True)\n    ]\n\n    designspaceItalic = fontTools.designspaceLib.DesignSpaceDocument.fromfile(\n        INPUT_DIR / \"CascadiaCode_variable_italic.designspace\"\n    )\n\n    designspaceItalic.instances = [\n        s\n        for s in designspaceItalic.instances\n        if s.lib.get(\"com.schriftgestaltung.export\", True)\n    ]\n\n\n    #Stage 1: Make all the things.\n    pool = multiprocessing.pool.Pool(processes=multiprocessing.cpu_count())\n    processes = []\n    processes.append(\n        pool.apply_async(\n            build_font_variable,\n            (\n                designspace,\n                \"Cascadia Code\",\n                args.vtt_compile,\n            ),\n        )\n    )\n    if args.italic:\n        processes.append(\n            pool.apply_async(\n                build_font_variable,\n                (\n                    designspaceItalic,\n                    \"Cascadia Code Italic\",\n                    args.vtt_compile,\n                ),\n            )\n        )\n    if args.mono:\n        processes.append(\n            pool.apply_async(\n                build_font_variable,\n                (\n                    designspace,\n                    \"Cascadia Mono\",\n                    args.vtt_compile,\n                ),\n            )\n        )\n        if args.italic:\n            processes.append(\n                pool.apply_async(\n                    build_font_variable,\n                    (\n                        designspaceItalic,\n                        \"Cascadia Mono Italic\",\n                        args.vtt_compile,\n                    ),\n                )\n            )\n    if args.powerline:\n        processes.append(\n            pool.apply_async(\n                build_font_variable,\n                (\n                    designspace,\n                    \"Cascadia Code PL\",\n                    args.vtt_compile,\n                ),\n            )\n        )\n        if args.italic:\n            processes.append(\n                pool.apply_async(\n                    build_font_variable,\n                    (\n                        designspaceItalic,\n                        \"Cascadia Code PL Italic\",\n                        args.vtt_compile,\n                    ),\n                )\n            )\n        if args.mono:\n            processes.append(\n                pool.apply_async(\n                    build_font_variable,\n                    (\n                        designspace,\n                        \"Cascadia Mono PL\",\n                        args.vtt_compile,\n                    ),\n                )\n            )\n            if args.italic:\n                processes.append(\n                    pool.apply_async(\n                        build_font_variable,\n                        (\n                            designspaceItalic,\n                            \"Cascadia Mono PL Italic\",\n                            args.vtt_compile,\n                        ),\n                    )\n                )\n    if args.nerdfonts:\n        processes.append(\n            pool.apply_async(\n                build_font_variable,\n                (\n                    designspace,\n                    \"Cascadia Code NF\",\n                    args.vtt_compile,\n                ),\n            )\n        )\n        if args.italic:\n            processes.append(\n                pool.apply_async(\n                    build_font_variable,\n                    (\n                        designspaceItalic,\n                        \"Cascadia Code NF Italic\",\n                        args.vtt_compile,\n                    ),\n                )\n            )\n        if args.mono:\n            processes.append(\n                pool.apply_async(\n                    build_font_variable,\n                    (\n                        designspace,\n                        \"Cascadia Mono NF\",\n                        args.vtt_compile,\n                    ),\n                )\n            )\n            if args.italic:\n                processes.append(\n                    pool.apply_async(\n                        build_font_variable,\n                        (\n                            designspaceItalic,\n                            \"Cascadia Mono NF Italic\",\n                            args.vtt_compile,\n                        ),\n                    )\n                )\n\n    if args.static_fonts:\n        # Build the Regulars\n        for instance_descriptor in designspace.instances:\n            processes.append(\n                pool.apply_async(\n                    build_font_static,\n                    (\n                        designspace,\n                        instance_descriptor,\n                        \"Cascadia Code\",\n                    ),\n                )\n            )\n            if args.mono:\n                processes.append(\n                    pool.apply_async(\n                        build_font_static,\n                        (\n                            designspace,\n                            instance_descriptor,\n                            \"Cascadia Mono\",\n                        ),\n                    )\n                )\n            if args.powerline:\n                processes.append(\n                    pool.apply_async(\n                        build_font_static,\n                        (\n                            designspace,\n                            instance_descriptor,\n                            \"Cascadia Code PL\",\n                        ),\n                    )\n                )\n                if args.mono:\n                    processes.append(\n                        pool.apply_async(\n                            build_font_static,\n                            (\n                                designspace,\n                                instance_descriptor,\n                                \"Cascadia Mono PL\",\n                            ),\n                        )\n                    )\n            if args.nerdfonts:\n                processes.append(\n                    pool.apply_async(\n                        build_font_static,\n                        (\n                            designspace,\n                            instance_descriptor,\n                            \"Cascadia Code NF\",\n                        ),\n                    )\n                )\n                if args.mono:\n                    processes.append(\n                        pool.apply_async(\n                            build_font_static,\n                            (\n                                designspace,\n                                instance_descriptor,\n                                \"Cascadia Mono NF\",\n                            ),\n                        )\n                    )\n        if args.italic:\n            # Build the Regulars\n            for instance_descriptor in designspaceItalic.instances:\n                processes.append(\n                    pool.apply_async(\n                        build_font_static,\n                        (\n                            designspaceItalic,\n                            instance_descriptor,\n                            \"Cascadia Code Italic\",\n                        ),\n                    )\n                )\n                if args.mono:\n                    processes.append(\n                        pool.apply_async(\n                            build_font_static,\n                            (\n                                designspaceItalic,\n                                instance_descriptor,\n                                \"Cascadia Mono Italic\",\n                            ),\n                        )\n                    )\n                if args.powerline:\n                    processes.append(\n                        pool.apply_async(\n                            build_font_static,\n                            (\n                                designspaceItalic,\n                                instance_descriptor,\n                                \"Cascadia Code PL Italic\",\n                            ),\n                        )\n                    )\n                    if args.mono:\n                        processes.append(\n                            pool.apply_async(\n                                build_font_static,\n                                (\n                                    designspaceItalic,\n                                    instance_descriptor,\n                                    \"Cascadia Mono PL Italic\",\n                                ),\n                            )\n                        )\n                if args.nerdfonts:\n                    processes.append(\n                        pool.apply_async(\n                            build_font_static,\n                            (\n                                designspaceItalic,\n                                instance_descriptor,\n                                \"Cascadia Code NF Italic\",\n                            ),\n                        )\n                    )\n                    if args.mono:\n                        processes.append(\n                            pool.apply_async(\n                                build_font_static,\n                                (\n                                    designspaceItalic,\n                                    instance_descriptor,\n                                    \"Cascadia Mono NF Italic\",\n                                ),\n                            )\n                        )\n\n    pool.close()\n    pool.join()\n    for process in processes:\n        process.get()\n    del processes, pool\n\n    # Step 1.5: Adding STAT tables in one go\n    print (\"[Cascadia Variable fonts] Fixing STAT tables\")\n    fontSTAT = [fontTools.ttLib.TTFont(f) for f in list(OUTPUT_TTF_DIR.glob(\"*.ttf\"))]\n    with open(INPUT_DIR/\"stat.yaml\") as f:\n        config = yaml.load(f, Loader=yaml.SafeLoader)\n    gen_stat_tables_from_config(config, fontSTAT)\n\n    for font in fontSTAT:\n        font.save(font.reader.file.name)\n\n    # Stage 2: Autohint and maybe compress all the static things.\n    if args.static_fonts is True:\n        otfs = list(OUTPUT_STATIC_OTF_DIR.glob(\"*.otf\"))\n        if otfs:\n            pool = multiprocessing.Pool(processes=multiprocessing.cpu_count())\n            processes = [pool.apply_async(autohint, (otf,)) for otf in otfs]\n            pool.close()\n            pool.join()\n            for process in processes:\n                process.get()\n            del processes, pool\n\n        try:\n            for ttf_path in OUTPUT_STATIC_TTF_DIR.glob(\"*.ttf\"):\n                if not ttf_path.stem.endswith(\"-hinted\"):\n                    ttfautohint(os.fspath(ttf_path))\n        except Exception as e:\n            print(f\"ttfautohint failed. Please reinstall and try again. {str(e)}\")\n\n    # Stage 3: Have some web fonts.\n    if args.web_fonts:\n        pool = multiprocessing.Pool(processes=multiprocessing.cpu_count())\n        processes = [\n            pool.apply_async(\n                to_woff2,\n                (\n                    path,\n                    # This removes build/ttf from the found files and prepends\n                    # build/woff2 instead, keeping the sub-structure.\n                    OUTPUT_WOFF2_DIR\n                    / path.relative_to(OUTPUT_TTF_DIR).with_suffix(\".woff2\"),\n                ),\n            )\n            for path in OUTPUT_TTF_DIR.glob(\"**/*.ttf\")\n        ]\n        pool.close()\n        pool.join()\n        for process in processes:\n            process.get()\n\n    print(\"All done.\")\n"
  },
  {
    "path": "doc/CONTRIBUTING.md",
    "content": "# Cascadia Code Contributor's Guide\r\n\r\nBelow is our guidance for how to report issues, propose new features, and submit contributions via Pull Requests (PRs).\r\n\r\n## Before you start, file an issue\r\n\r\nPlease follow this simple rule to help us eliminate any unnecessary wasted effort & frustration, and ensure an efficient and effective use of everyone's time - yours, ours, and other community members':\r\n\r\n> 👉 If you have a question, think you've discovered an issue, would like to propose a new feature, etc., then find/file an issue **BEFORE** starting work to fix/implement it.\r\n\r\n### Search existing issues first\r\n\r\nBefore filing a new issue, search existing open and closed issues first: It is likely someone else has found the problem you're seeing, and someone may be working on or have already contributed a fix!\r\n\r\nIf no existing item describes your issue/feature, great - please file a new issue:\r\n\r\n### File a new issue\r\n\r\n* Don't know whether you're reporting an issue or requesting a feature? File an issue\r\n* Have a question that you don't see answered in docs, videos, etc.? File an issue\r\n* Want to know if we're planning on building a particular feature? File an issue\r\n* Got a great idea for a new feature? File an issue/request/idea\r\n* Don't understand how to do something? File an issue\r\n* Found an existing issue that describes yours? Great - upvote and add additional commentary / info / repro-steps / etc.\r\n\r\nWhen you hit \"New Issue\", select the type of issue closest to what you want to report/ask/request:\r\n![New issue types](/images/new-issue-template.png)\r\n\r\n### Complete the template\r\n\r\n**Complete the information requested in the issue template, providing as much information as possible**. The more information you provide, the more likely your issue/ask will be understood and implemented. Helpful information includes:\r\n\r\n* What version of Cascadia Code you have?\r\n* What application you are using to view the font?\r\n* What is your screen resolution?\r\n* Don't assume we're experts in setting up YOUR environment. Teach us to help you!\r\n* **We LOVE detailed repro steps!** What steps do we need to take to reproduce the issue? Assume we love to read repro steps. As much detail as you can stand is probably _barely_ enough detail for us!\r\n* Please try to provide the exact Unicode codepoint for the glyphs you're talking about. (e.g. U+1F4AF, U+4382)\r\n* **If you intend to implement the fix/feature yourself then say so!** If you do not indicate otherwise we will assume that the issue is our to solve, or may label the issue as `Help-Wanted`.\r\n\r\n### DO NOT post \"+1\" comments\r\n\r\n> ⚠ DO NOT post \"+1\", \"me too\", or similar comments - they just add noise to an issue.\r\n\r\nIf you don't have any additional info/context to add but would like to indicate that you're affected by the issue, upvote the original issue by clicking its [+😊] button and hitting 👍 (+1) icon. This way we can actually measure how impactful an issue is.\r\n\r\n---\r\n\r\n## Contributing fixes / features\r\n\r\nFor those able & willing to help fix issues and/or implement features ...\r\n\r\n### To Spec or not to Spec\r\n\r\nSome issues/features may be quick and simple to describe and understand. For such scenarios, once a team member has agreed with your approach, skip ahead to the section headed \"Fork, Branch, and Create your PR\", below.\r\n\r\nSmall issues that do not require a spec will be labelled Issue-Bug or Issue-Task.\r\n\r\nHowever, some issues/features will require careful thought & formal design before implementation. For these scenarios, we'll request that a spec is written and the associated issue will be labeled Issue-Feature.\r\n\r\nSpecs help collaborators discuss different approaches to solve a problem, describe how the feature will behave, how the feature will impact the user, what happens if something goes wrong, etc. Driving towards agreement in a spec, before any code is written, often results in less wasted effort in the long run.\r\n\r\nSpecs will be managed in a very similar manner as code contributions so please follow the \"Fork, Branch and Create your PR\" below.\r\n\r\n### Writing / Contributing-to a Spec\r\n\r\nTo write/contribute to a spec: fork, branch and commit via PRs, as you would with any code changes.\r\n\r\nSpecs are written in markdown, stored under the `\\doc\\spec` folder and named `[issue id] - [spec description].md`.\r\n\r\nTeam members will be happy to help review specs and guide them to completion.\r\n\r\n### Help Wanted\r\n\r\nOnce the team have approved an issue/spec, development can proceed. If no developers are immediately available, the spec can be parked ready for a developer to get started. Parked specs' issues will be labeled \"Help Wanted\". To find a list of development opportunities waiting for developer involvement, visit the Issues and filter on [the Help-Wanted label](https://github.com/microsoft/terminal/labels/Help-Wanted).\r\n\r\n---\r\n\r\n## Development\r\n\r\n### Fork, Clone, Branch and Create your PR\r\n\r\nOnce you've discussed your proposed feature/fix/etc. with a team member, and you've agreed an approach or a spec has been written and approved, it's time to start development:\r\n\r\n1. Fork the repo if you haven't already\r\n1. Clone your fork locally\r\n1. Create & push a feature branch\r\n1. Create a [Draft Pull Request (PR)](https://github.blog/2019-02-14-introducing-draft-pull-requests/)\r\n1. Work on your changes\r\n\r\n### Code Review\r\n\r\nWhen you'd like the team to take a look, (even if the work is not yet fully-complete), mark the PR as 'Ready For Review' so that the team can review your work and provide comments, suggestions, and request changes. It may take several cycles, but the end result will be solid, testable, conformant code that is safe for us to merge.\r\n\r\n### Merge\r\n\r\nOnce your code has been reviewed and approved by the requisite number of team members, it will be merged into the main branch. Once merged, your PR will be automatically closed.\r\n\r\n---\r\n\r\n## Thank you\r\n\r\nThank you in advance for your contribution! Now, [what's next on the list](https://github.com/microsoft/cascadia-code/labels/Help-Wanted)? 😜\r\n"
  },
  {
    "path": "pipelines/release.yml",
    "content": "parameters:\n- name: minimal\n  type: boolean\n  displayName: Build Minimal Font (testing only)\n  default: false\n\nresources:\n  repositories:\n  - repository: 1ESPipelineTemplates\n    type: git\n    name: 1ESPipelineTemplates/1ESPipelineTemplates\n    ref: refs/tags/release\n\nextends:\n  template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates\n  parameters:\n    pool:\n      name: Azure Pipelines\n      image: macOS-13\n      os: macOS\n    sdl:\n      sourceAnalysisPool:\n        name: SHINE-INT-L\n        os: windows\n    stages:\n    - stage: build\n      displayName: Build\n      jobs:\n      - job: build\n        displayName: Build and Sign Cascadia\n        templateContext:\n          outputs:\n          - output: pipelineArtifact\n            targetPath: $(Build.SourcesDirectory)/out\n            artifactName: archive\n        steps:\n        - task: UsePythonVersion@0\n          displayName: 'Use Python 3.11'\n          inputs:\n            versionSpec: 3.11\n\n        - task: UseDotNet@2\n          displayName: 'Use .NET sdk 6.x'\n          inputs:\n            version: 6.x\n\n        - bash: |-\n           brew install ttfautohint\n           pip install pip-tools\n           pip-compile -U requirements.in\n           pip install -r requirements.txt ufolint\n          displayName: 'Install build dependencies'\n\n        - bash: 'ufolint sources/*.ufo'\n          displayName: 'Lint sources'\n\n        - ${{ if eq(true, parameters.minimal) }}:\n          - bash: 'python ./build.py -P -NF -M -I'\n            displayName: 'Build font (minimal)'\n\n        - ${{ else }}:\n          - bash: 'python ./build.py -S -W'\n            displayName: 'Build font(s)'\n\n        - template: ./pipelines/templates/steps-esrp-signing.yml@self\n          parameters:\n            displayName: Submit Signing Request\n            signingIdentity:\n              serviceName: $(SigningServiceName)\n              appId: $(SigningAppId)\n              tenantId: $(SigningTenantId)\n              akvName: $(SigningAKVName)\n              authCertName: $(SigningAuthCertName)\n              signCertName: $(SigningSignCertName)\n            inputs:\n              FolderPath: build\n              Pattern: '*.ttf,*.otf'\n              signConfigType: inlineSignParams\n              inlineOperation: |\n               [\n                   {\n                       \"KeyCode\": \"CP-230012\",\n                       \"OperationCode\": \"SigntoolSign\",\n                       \"Parameters\": {\n                           \"OpusName\": \"Microsoft\",\n                           \"OpusInfo\": \"http://www.microsoft.com\",\n                           \"FileDigest\": \"/fd \\\"SHA256\\\"\",\n                           \"PageHash\": \"/NPH\",\n                           \"TimeStamp\": \"/tr \\\"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\\\" /td sha256\"\n                       },\n                       \"ToolName\": \"sign\",\n                       \"ToolVersion\": \"1.0\"\n                   },\n                   {\n                       \"KeyCode\": \"CP-230012\",\n                       \"OperationCode\": \"SigntoolVerify\",\n                       \"Parameters\": {},\n                       \"ToolName\": \"sign\",\n                       \"ToolVersion\": \"1.0\"\n                   }\n               ]\n\n        - bash: |-\n           mkdir -p out\n           cd build\n           zip -r ../out/CascadiaCode.zip ttf otf woff2\n          displayName: 'Build Final Archive'\n"
  },
  {
    "path": "pipelines/templates/steps-esrp-signing.yml",
    "content": "parameters:\n  - name: displayName\n    type: string\n    default: ESRP Code Signing\n  - name: inputs\n    type: object\n    default: {}\n  - name: signingIdentity\n    type: object\n    default: {}\n\nsteps:\n  - task: EsrpCodeSigning@5\n    displayName: ${{ parameters.displayName }}\n    inputs:\n      ConnectedServiceName: ${{ parameters.signingIdentity.serviceName }}\n      AppRegistrationClientId: ${{ parameters.signingIdentity.appId }}\n      AppRegistrationTenantId: ${{ parameters.signingIdentity.tenantId }}\n      AuthAKVName: ${{ parameters.signingIdentity.akvName }}\n      AuthCertName: ${{ parameters.signingIdentity.authCertName }}\n      AuthSignCertName: ${{ parameters.signingIdentity.signCertName }}\n      ${{ insert }}: ${{ parameters.inputs }}\n"
  },
  {
    "path": "requirements.in",
    "content": "# Add or remove dependencies here and then use pip-tool's \n#   pip-compile -U requirements.in\n# to update requirements.txt (the lock file, so to speak).\n\nfontmake\npsautohint\ngftools\nvttLib\nskia-pathops\nfontTools[ufo,lxml,woff]\nvttmisc\n"
  },
  {
    "path": "requirements.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.11\n# by the following command:\n#\n#    pip-compile\n#\nabsl-py==2.1.0\n    # via\n    #   gftools\n    #   nanoemoji\n    #   picosvg\nafdko==4.0.1\n    # via gftools\nappdirs==1.4.4\n    # via fs\nattrs==23.2.0\n    # via\n    #   cattrs\n    #   statmake\n    #   ufolib2\naxisregistry==0.4.9\n    # via gftools\nbabelfont==3.0.4\n    # via gftools\nbeautifulsoup4==4.12.3\n    # via gftools\nbooleanoperations==0.9.0\n    # via\n    #   afdko\n    #   fontparts\n    #   ufo2ft\nbrotli==1.1.0\n    # via\n    #   fonttools\n    #   gftools\nbump2version==1.0.1\n    # via bumpfontversion\nbumpfontversion==0.4.1\n    # via gftools\ncattrs==23.2.3\n    # via\n    #   statmake\n    #   ufolib2\ncertifi==2024.2.2\n    # via requests\ncffi==1.16.0\n    # via\n    #   cryptography\n    #   pygit2\n    #   pynacl\ncffsubr==0.3.0\n    # via ufo2ft\ncharset-normalizer==3.3.2\n    # via requests\nclick==8.1.7\n    # via hyperglot\ncolorlog==6.8.2\n    # via hyperglot\ncompreffor==0.5.5\n    # via ufo2ft\ncryptography==42.0.5\n    # via pyjwt\ndefcon[lxml,pens]==0.10.3\n    # via\n    #   afdko\n    #   fontparts\n    #   glyphsets\n    #   mutatormath\n    #   ufoprocessor\ndeprecated==1.2.14\n    # via pygithub\nfont-v==2.1.0\n    # via gftools\nfontfeatures==1.8.0\n    # via\n    #   babelfont\n    #   gftools\nfontmake[json]==3.9.0\n    # via\n    #   -r requirements.in\n    #   gftools\nfontmath==0.9.3\n    # via\n    #   afdko\n    #   fontmake\n    #   fontparts\n    #   mutatormath\n    #   ufo2ft\n    #   ufoprocessor\nfontparts==0.12.1\n    # via ufoprocessor\nfontpens==0.2.4\n    # via defcon\nfonttools[lxml,ufo,unicode,woff]==4.51.0\n    # via\n    #   -r requirements.in\n    #   afdko\n    #   axisregistry\n    #   babelfont\n    #   booleanoperations\n    #   bumpfontversion\n    #   cffsubr\n    #   compreffor\n    #   defcon\n    #   font-v\n    #   fontfeatures\n    #   fontmake\n    #   fontmath\n    #   fontparts\n    #   fontpens\n    #   gftools\n    #   glyphsets\n    #   glyphslib\n    #   hyperglot\n    #   mutatormath\n    #   nanoemoji\n    #   psautohint\n    #   statmake\n    #   ufo2ft\n    #   ufolib2\n    #   ufoprocessor\n    #   vttlib\n    #   vttmisc\nfs==2.4.16\n    # via\n    #   fontfeatures\n    #   fonttools\ngflanguages==0.5.17\n    # via\n    #   gftools\n    #   glyphsets\ngfsubsets==2024.2.5\n    # via gftools\ngftools==0.9.54\n    # via -r requirements.in\ngitdb==4.0.11\n    # via gitpython\ngitpython==3.1.43\n    # via font-v\nglyphsets==0.6.19\n    # via gftools\nglyphslib==6.7.0\n    # via\n    #   babelfont\n    #   bumpfontversion\n    #   fontmake\n    #   gftools\n    #   glyphsets\nhyperglot==0.6.2\n    # via gftools\nidna==3.7\n    # via requests\nimportlib-resources==6.4.0\n    # via gfsubsets\njinja2==3.1.3\n    # via gftools\nlxml==5.2.1\n    # via\n    #   afdko\n    #   fontfeatures\n    #   fonttools\n    #   nanoemoji\n    #   picosvg\nmarkdown-it-py==3.0.0\n    # via rich\nmarkupsafe==2.1.5\n    # via jinja2\nmdurl==0.1.2\n    # via markdown-it-py\nmutatormath==3.0.1\n    # via ufoprocessor\nnanoemoji==0.15.1\n    # via gftools\nnetworkx==3.3\n    # via gftools\nninja==1.11.1.1\n    # via\n    #   gftools\n    #   nanoemoji\nopenstep-plist==0.3.1\n    # via\n    #   babelfont\n    #   bumpfontversion\n    #   glyphslib\nopentype-sanitizer==9.1.0\n    # via gftools\norjson==3.10.1\n    # via\n    #   babelfont\n    #   ufolib2\npackaging==24.0\n    # via gftools\npicosvg==0.22.1\n    # via nanoemoji\npillow==10.3.0\n    # via\n    #   gftools\n    #   nanoemoji\npngquant-cli==2.17.0.post5\n    # via nanoemoji\nprotobuf==3.20.3\n    # via\n    #   axisregistry\n    #   gflanguages\n    #   gftools\npsautohint==2.4.0\n    # via -r requirements.in\npyclipper==1.3.0.post5\n    # via booleanoperations\npycparser==2.22\n    # via cffi\npygit2==1.14.1\n    # via gftools\npygithub==2.3.0\n    # via gftools\npygments==2.17.2\n    # via rich\npyjwt[crypto]==2.8.0\n    # via pygithub\npynacl==1.5.0\n    # via pygithub\npyparsing==3.1.2\n    # via vttlib\npython-dateutil==2.9.0.post0\n    # via strictyaml\npyyaml==6.0.1\n    # via\n    #   gftools\n    #   glyphsets\n    #   hyperglot\nregex==2024.4.16\n    # via nanoemoji\nrequests==2.31.0\n    # via\n    #   gftools\n    #   glyphsets\n    #   pygithub\nresvg-cli==0.22.0.post3\n    # via nanoemoji\nrich==13.7.1\n    # via gftools\nsix==1.16.0\n    # via\n    #   fs\n    #   python-dateutil\nskia-pathops==0.8.0.post1\n    # via\n    #   -r requirements.in\n    #   gftools\n    #   picosvg\nsmmap==5.0.1\n    # via gitdb\nsoupsieve==2.5\n    # via beautifulsoup4\nstatmake==0.6.0\n    # via gftools\nstrictyaml==1.7.3\n    # via gftools\ntabulate==0.9.0\n    # via gftools\ntoml==0.10.2\n    # via nanoemoji\ntqdm==4.66.2\n    # via afdko\nttfautohint-py==0.5.1\n    # via gftools\ntyping-extensions==4.11.0\n    # via pygithub\nufo2ft[cffsubr,compreffor]==3.2.1\n    # via\n    #   fontmake\n    #   nanoemoji\nufolib2[json]==0.16.0\n    # via\n    #   babelfont\n    #   bumpfontversion\n    #   fontmake\n    #   glyphslib\n    #   nanoemoji\n    #   vttlib\nufonormalizer==0.6.1\n    # via afdko\nufoprocessor==1.9.0\n    # via afdko\nuharfbuzz==0.39.1\n    # via\n    #   hyperglot\n    #   vharfbuzz\nunicodedata2==15.1.0\n    # via\n    #   fonttools\n    #   glyphsets\n    #   hyperglot\nunidecode==1.3.8\n    # via gftools\nurllib3==2.2.1\n    # via\n    #   pygithub\n    #   requests\nvharfbuzz==0.3.0\n    # via gftools\nvttlib==0.12.0\n    # via\n    #   -r requirements.in\n    #   gftools\nvttmisc==0.0.5\n    # via -r requirements.in\nwrapt==1.16.0\n    # via deprecated\nzopfli==0.2.3\n    # via\n    #   fonttools\n    #   nanoemoji\n\n# The following packages are considered to be unsafe in a requirements file:\n# setuptools\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/features.fea",
    "content": "# automatic\n@Uppercase = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK 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 Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol ];\n\n# automatic\n@Lowercase = [ Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij ij_acute imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply 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 ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol ];\n\n@OpeningBracket = [ bracketleft braceleft parenleft ];\n\n@Digit = [ zero one two three four five six seven eight nine segmentedDigit0 segmentedDigit1 segmentedDigit2 segmentedDigit3 segmentedDigit4 segmentedDigit5 segmentedDigit6 segmentedDigit7 segmentedDigit8 segmentedDigit9 ];\n\n@HexDigit = [ @Digit a b c d e f A B C D E F ];\n\n@ClosingBracket = [ bracketright braceright parenright ];\n\n@Tall = [ @Uppercase @Digit @OpeningBracket @ClosingBracket bar ];\n\n@NotSpace = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply fi fl w_w_w.liga ordfeminine ordmasculine nmod wmod ymod 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 Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR 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 ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol thetamod zmod zero one two three four five six seven eight nine zero.zero zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior 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 zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior fraction onehalf onequarter threequarters oneeighth threeeighths fiveeighths seveneighths period comma colon semicolon ellipsis exclam exclamdown question questiondown periodcentered bullet asterisk exclamdouble numbersign onedotenleader overline slash backslash colon.center parenleft parenright braceleft braceright bracketleft bracketright heavyleftpointinganglebracketornament heavyleftpointinganglequotationmarkornament heavyrightpointinganglebracketornament heavyrightpointinganglequotationmarkornament mediumleftpointinganglebracketornament mediumrightpointinganglebracketornament hyphen softhyphen endash emdash horizontalbar hyphentwo nonbreakinghyphen underscore underscoredbl quotesinglbase quotedblbase quotedblleft quotedblright quoteleft quoteright quotereversed guillemetleft guillemetright guilsinglleft guilsinglright quotedbl quotesingle hyphen_hyphen.liga hyphen_hyphen_hyphen.liga hyphen_asciitilde.liga parenleft_asterisk.liga braceleft_bar.liga braceright_numbersign.liga bracketleft_bar.liga bracketright_numbersign.liga period_hyphen.liga period_period.liga period_period_period.liga period_period_equal.liga period_period_less.liga period_question.liga period_equal.liga colon_colon.liga colon_colon_colon.liga colon_colon_equal.liga colon_equal.liga colon_slash_slash.liga semicolon_semicolon.liga exclam_period.liga exclam_colon.liga exclam_exclam.liga exclam_exclam_period.liga exclam_equal.liga exclam_equal_equal.liga question_period.liga question_colon.liga question_question.liga question_question_equal.liga question_equal.liga asterisk_parenright.liga asterisk_asterisk.liga asterisk_asterisk_asterisk.liga asterisk_greater.liga asterisk_slash.liga numbersign_parenleft.liga numbersign_braceleft.liga numbersign_bracketleft.liga numbersign_colon.liga numbersign_exclam.liga numbersign_question.liga numbersign_equal.liga numbersign_underscore.liga numbersign_underscore_parenleft.liga slash_asterisk.liga slash_greater.liga slash_slash.liga slash_slash_slash.liga slash_backslash.liga backslash_slash.liga backslash_backslash.liga underscore_underscore.liga hyphen_middle.seq hyphen_start.seq hyphen_end.seq colon_equal_middle.seq exclam_equal_middle.seq numbersign_end.seq numbersign_middle.seq numbersign_start.seq slash_equal_end.seq slash_equal_middle.seq slash_equal_start.seq slash_slash_equal_end.seq slash_slash_equal_middle.seq slash_slash_equal_start.seq underscore_end.seq underscore_middle.seq underscore_start.seq anoteleia questiongreek .notdef baht cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen bulletoperator divisionslash equivalence horizontallineextension integralbt integraltp logicalnotReversed notidentical plus minus multiply divide equal notequal greater less greaterequal lessequal plusminus approxequal asciitilde logicalnot asciicircum infinity intersection integral Ohm increment product summation radical micro partialdiff orthogonal percent perthousand strictlyequivalentto vectorOrCrossProduct greater.center less.center upArrow rightArrow downArrow leftArrow leftRightArrow upDownArrow upDownbaseArrow downTipLeftArrow upDashArrow dashdownArrow lowerOneEighthBlock lowerOneQuarterBlock lowerThreeEighthsBlock lowerHalfBlock lowerFiveEighthsBlock lowerThreeQuartersBlock lowerSevenEighthsBlock fullBlock upperHalfBlock upperOneEighthBlock leftOneEighthBlock leftOneQuarterBlock leftThreeEighthsBlock leftBlock leftFiveEighthsBlock leftThreeQuartersBlock leftSevenEighthsBlock rightBlock rightOneEighthBlock lowerLeftBlock lowerRightBlock upperLeftBlock upperLeftAndLowerLeftAndLowerRightBlock upperLeftAndLowerRightBlock upperLeftAndUpperRightAndLowerLeftBlock upperLeftAndUpperRightAndLowerRightBlock upperRightBlock upperRightAndLowerLeftBlock upperRightAndLowerLeftAndLowerRightBlock shadelight shademedium shadedark blackCircle whiteCircle largeCircle leftHalfBlackWhiteCircle rightHalfBlackWhiteCircle lowerHalfBlackWhiteCircle upperHalfBlackWhiteCircle leftHalfBlackCircle rightHalfBlackCircle upperRightBlackCircle upperLeftWhiteCircle upperLeftQuadrantWhiteCircle lowerLeftQuadrantWhiteCircle lowerRightQuadrantWhiteCircle upperRightQuadrantWhiteCircle verticalFillCircle dottedCircle fisheye bullseye whiteBullet inverseBullet inverseWhiteCircle upperHalfInverseWhiteCircle lowerHalfInverseWhiteCircle upperHalfArc lowerHalfArc upperLeftArc upperRightArc lowerRightArc lowerLeftArc blackDiamond whiteDiamond leftHalfBlackDiamond rightHalfBlackDiamond topHalfBlackDiamond bottomHalfBlackDiamond blackInWhiteDiamond lozenge blackParallelogram whiteParallelogram blackVerticalRect filledRect whiteRect whiteVerticalRect blackSquare whiteSquare whiteRoundedCornersSquare whiteInBlackSquare dottedSquare horizontalFillSquare verticalFillSquare crosshatchFillSquare upperlefttolowerrightFillSquare upperrighttolowerleftFillSquare diagonalcrosshatchFillSquare blackSmallSquare whiteSmallSquare leftHalfBlackSquare rightHalfBlackSquare upperLeftDiagonalHalfBlackSquare lowerRightDiagonalHalfBlackSquare verticalBisectingLineWhiteSquare whiteUpperLeftQuadrantSquare whiteLowerLeftQuadrantSquare whiteLowerRightQuadrantSquare whiteUpperRightQuadrantSquare mediumWhiteSquare mediumBlackSquare mediumWhiteSmallSquare mediumBlackSmallSquare upBlackTriangle rightBlackTriangle downBlackTriangle leftBlackTriangle upWhiteTriangle rightWhiteTriangle downWhiteTriangle leftWhiteTriangle upWhiteTriangleWithDot upLeftHalfBlackTriangle upRightHalfBlackTriangle rightBlackPointer leftBlackPointer rightWhitePointer leftWhitePointer upBlackSmallTriangle rightBlackSmallTriangle downBlackSmallTriangle leftBlackSmallTriangle upWhiteSmallTriangle rightWhiteSmallTriangle downWhiteSmallTriangle leftWhiteSmallTriangle upperRightBlackTriangle lowerRightBlackTriangle lowerLeftBlackTriangle upperLeftBlackTriangle upperRightTriangle lowerRightTriangle lowerLeftTriangle upperLeftTriangle boxDoubleDownAndHorizontal boxDoubleDownAndLeft boxDoubleDownAndRight boxDoubleHorizontal boxDoubleUpAndHorizontal boxDoubleUpAndLeft boxDoubleUpAndRight boxDoubleVertical boxDoubleVerticalAndHorizontal boxDoubleVerticalAndLeft boxDoubleVerticalAndRight boxDownDoubleAndHorizontalSingle boxDownDoubleAndLeftSingle boxDownDoubleAndRightSingle boxDownHeavyAndHorizontalLight boxDownHeavyAndLeftLight boxDownHeavyAndLeftUpLight boxDownHeavyAndRightLight boxDownHeavyAndRightUpLight boxDownHeavyAndUpHorizontalLight boxDownLightAndHorizontalHeavy boxDownLightAndLeftHeavy boxDownLightAndLeftUpHeavy boxDownLightAndRightHeavy boxDownLightAndRightUpHeavy boxDownLightAndUpHorizontalHeavy boxDownSingleAndHorizontalDouble boxDownSingleAndLeftDouble boxDownSingleAndRightDouble boxHeavyDoubleDashHorizontal boxHeavyDoubleDashVertical boxHeavyDown boxHeavyDownAndHorizontal boxHeavyDownAndLeft boxHeavyDownAndRight boxHeavyHorizontal boxHeavyLeft boxHeavyLeftAndLightRight boxHeavyQuadrupleDashHorizontal boxHeavyQuadrupleDashVertical boxHeavyRight boxHeavyTripleDashHorizontal boxHeavyTripleDashVertical boxHeavyUp boxHeavyUpAndHorizontal boxHeavyUpAndLeft boxHeavyUpAndLightDown boxHeavyUpAndRight boxHeavyVertical boxHeavyVerticalAndHorizontal boxHeavyVerticalAndLeft boxHeavyVerticalAndRight boxLeftDownHeavyAndRightUpLight boxLeftHeavyAndRightDownLight boxLeftHeavyAndRightUpLight boxLeftHeavyAndRightVerticalLight boxLeftLightAndRightDownHeavy boxLeftLightAndRightUpHeavy boxLeftLightAndRightVerticalHeavy boxLeftUpHeavyAndRightDownLight boxLightArcDownAndLeft boxLightArcDownAndRight boxLightArcUpAndLeft boxLightArcUpAndRight boxLightDiagonalCross boxLightDiagonalUpperLeftToLowerRight boxLightDiagonalUpperRightToLowerLeft boxLightDoubleDashHorizontal boxLightDoubleDashVertical boxLightDown boxLightDownAndHorizontal boxLightDownAndLeft boxLightDownAndRight boxLightHorizontal boxLightLeft boxLightLeftAndHeavyRight boxLightQuadrupleDashHorizontal boxLightQuadrupleDashVertical boxLightRight boxLightTripleDashHorizontal boxLightTripleDashVertical boxLightUp boxLightUpAndHeavyDown boxLightUpAndHorizontal boxLightUpAndLeft boxLightUpAndRight boxLightVertical boxLightVerticalAndHorizontal boxLightVerticalAndLeft boxLightVerticalAndRight boxRightDownHeavyAndLeftUpLight boxRightHeavyAndLeftDownLight boxRightHeavyAndLeftUpLight boxRightHeavyAndLeftVerticalLight boxRightLightAndLeftDownHeavy boxRightLightAndLeftUpHeavy boxRightLightAndLeftVerticalHeavy boxRightUpHeavyAndLeftDownLight boxUpDoubleAndHorizontalSingle boxUpDoubleAndLeftSingle boxUpDoubleAndRightSingle boxUpHeavyAndDownHorizontalLight boxUpHeavyAndHorizontalLight boxUpHeavyAndLeftDownLight boxUpHeavyAndLeftLight boxUpHeavyAndRightDownLight boxUpHeavyAndRightLight boxUpLightAndDownHorizontalHeavy boxUpLightAndHorizontalHeavy boxUpLightAndLeftDownHeavy boxUpLightAndLeftHeavy boxUpLightAndRightDownHeavy boxUpLightAndRightHeavy boxUpSingleAndHorizontalDouble boxUpSingleAndLeftDouble boxUpSingleAndRightDouble boxVerticalDoubleAndHorizontalSingle boxVerticalDoubleAndLeftSingle boxVerticalDoubleAndRightSingle boxVerticalHeavyAndHorizontalLight boxVerticalHeavyAndLeftLight boxVerticalHeavyAndRightLight boxVerticalLightAndHorizontalHeavy boxVerticalLightAndLeftHeavy boxVerticalLightAndRightHeavy boxVerticalSingleAndHorizontalDouble boxVerticalSingleAndLeftDouble boxVerticalSingleAndRightDouble lowerOneEighthBlock.stypo lowerOneQuarterBlock.stypo lowerThreeEighthsBlock.stypo lowerHalfBlock.stypo lowerFiveEighthsBlock.stypo lowerThreeQuartersBlock.stypo lowerSevenEighthsBlock.stypo fullBlock.stypo upperHalfBlock.stypo upperOneEighthBlock.stypo leftOneEighthBlock.stypo leftOneQuarterBlock.stypo leftThreeEighthsBlock.stypo leftBlock.stypo leftFiveEighthsBlock.stypo leftThreeQuartersBlock.stypo leftSevenEighthsBlock.stypo rightBlock.stypo rightOneEighthBlock.stypo lowerLeftBlock.stypo lowerRightBlock.stypo upperLeftBlock.stypo upperLeftAndLowerLeftAndLowerRightBlock.stypo upperLeftAndLowerRightBlock.stypo upperLeftAndUpperRightAndLowerLeftBlock.stypo upperLeftAndUpperRightAndLowerRightBlock.stypo upperRightBlock.stypo upperRightAndLowerLeftBlock.stypo upperRightAndLowerLeftAndLowerRightBlock.stypo shadelight.stypo shademedium.stypo shadedark.stypo reversedRotatedFloralHeartBullet whiteSmilingFace blackSmilingFace sunWithRays venus mars spadeBlackSuit clubBlackSuit heartBlackSuit diamondBlackSuit checkmark rotatedFloralHeartBullet acknowledgeControl backspaceControl at ampersand paragraph section copyright registered published trademark careof degree minute second bar brokenbar dagger literSign daggerdbl estimated numero bellControl blackHexagon blackHorizontalEllipse blackLargeCircle blackLargeSquare blackMediumDiamond blackMediumDownTriangleCentred blackMediumLeftTriangleCentred blackMediumLozenge blackMediumRightTriangleCentred blackMediumUpTriangleCentred blackPentagon blackSmallDiamond blackSmallLozenge blackVerticalEllipse blackVerysmallSquare blank blankSymbol bottomHalfBlackCircle cancelControl carriageReturnControl dataLinkEscapeControl deleteControl deleteFormTwoControl deviceControlFourControl deviceControlOneControl deviceControlThreeControl deviceControlTwoControl endOfMediumControl endOfTextControl endOfTransmissionBlockControl endOfTransmissionControl enquiryControl escapeControl fileSeparatorControl formFeedControl groupSeparatorControl horizontalBlackHexagon horizontalTabulationControl house returnsymbol lineFeedControl lowerHalfWhiteSquare lowerLeftHalfWhiteSquare negativeAcknowledgeControl newlineControl nullControl prescription recordSeparatorControl shiftInControl shiftOutControl spaceControl startOfHeadingControl startOfTextControl substituteControl substituteFormTwoControl synchronousIdleControl topHalfBlackCircle topHalfWhiteSquare topRightHalfWhiteSquare unitSeparatorControl verticalTabulationControl whiteHexagon whiteHorizontalEllipse whiteLargeSquare whiteMediumDiamond whiteMediumLozenge whitePentagon whiteSmallLozenge whiteVerticalEllipse whiteVerysmallSquare acknowledgeControl.ss20 backspaceControl.ss20 bellControl.ss20 cancelControl.ss20 carriageReturnControl.ss20 dataLinkEscapeControl.ss20 endOfMediumControl.ss20 endOfTextControl.ss20 endOfTransmissionBlockControl.ss20 endOfTransmissionControl.ss20 enquiryControl.ss20 escapeControl.ss20 formFeedControl.ss20 horizontalTabulationControl.ss20 lineFeedControl.ss20 negativeAcknowledgeControl.ss20 shiftInControl.ss20 shiftOutControl.ss20 startOfHeadingControl.ss20 startOfTextControl.ss20 substituteControl.ss20 synchronousIdleControl.ss20 verticalTabulationControl.ss20 ampersand_ampersand.liga bar_braceright.liga bar_bracketright.liga bar_bar.liga bar_bar_bar.liga bar_bar_bar_greater.liga bar_bar_greater.liga bar_greater.liga dollar_greater.liga plus_plus.liga plus_plus_plus.liga plus_greater.liga equal_equal.liga equal_equal_equal.liga greater_equal.liga greater_greater.liga greater_greater_greater.liga less_exclam_hyphen_hyphen.liga less_asterisk.liga less_asterisk_greater.liga less_bar.liga less_bar_bar.liga less_bar_bar_bar.liga less_bar_greater.liga less_dollar.liga less_dollar_greater.liga less_plus.liga less_plus_greater.liga less_equal.liga less_greater.liga less_less.liga less_less_less.liga less_asciitilde.liga less_asciitilde_greater.liga less_asciitilde_asciitilde.liga less_slash.liga less_slash_greater.liga asciitilde_hyphen.liga asciitilde_at.liga asciitilde_equal.liga asciitilde_greater.liga asciitilde_asciitilde.liga asciitilde_asciitilde_greater.liga asciicircum_equal.liga percent_percent.liga bar_underscore_middle.seq bar_bar_equal_middle.seq bar_equal_middle.seq bar_bar_equal_end.seq bar_bar_equal_start.seq bar_bar_hyphen_middle.seq bar_hyphen_middle.seq bar_bar_hyphen_end.seq bar_bar_hyphen_start.seq bar_equal_end.seq bar_equal_start.seq bar_hyphen_end.seq bar_hyphen_start.seq equal_middle.seq equal_end.seq equal_start.seq greater_greater_equal_middle.seq greater_equal_middle.seq greater_greater_equal_end.seq greater_greater_equal_start.seq greater_equal_start.seq greater_equal_end.seq greater_greater_hyphen_middle.seq greater_hyphen_middle.seq greater_greater_hyphen_end.seq greater_greater_hyphen_start.seq greater_hyphen_start.seq greater_hyphen_end.seq less_less_equal_middle.seq less_equal_middle.seq less_less_equal_end.seq less_less_equal_start.seq less_equal_end.seq less_equal_start.seq less_less_hyphen_middle.seq less_hyphen_middle.seq less_less_hyphen_end.seq less_less_hyphen_start.seq less_hyphen_end.seq less_hyphen_start.seq note-musical notedbl-musical blank-braille dots1-braille dots12-braille dots123-braille dots1234-braille dots12345-braille dots123456-braille dots1234567-braille dots12345678-braille dots1234568-braille dots123457-braille dots1234578-braille dots123458-braille dots12346-braille dots123467-braille dots1234678-braille dots123468-braille dots12347-braille dots123478-braille dots12348-braille dots1235-braille dots12356-braille dots123567-braille dots1235678-braille dots123568-braille dots12357-braille dots123578-braille dots12358-braille dots1236-braille dots12367-braille dots123678-braille dots12368-braille dots1237-braille dots12378-braille dots1238-braille dots124-braille dots1245-braille dots12456-braille dots124567-braille dots1245678-braille dots124568-braille dots12457-braille dots124578-braille dots12458-braille dots1246-braille dots12467-braille dots124678-braille dots12468-braille dots1247-braille dots12478-braille dots1248-braille dots125-braille dots1256-braille dots12567-braille dots125678-braille dots12568-braille dots1257-braille dots12578-braille dots1258-braille dots126-braille dots1267-braille dots12678-braille dots1268-braille dots127-braille dots1278-braille dots128-braille dots13-braille dots134-braille dots1345-braille dots13456-braille dots134567-braille dots1345678-braille dots134568-braille dots13457-braille dots134578-braille dots13458-braille dots1346-braille dots13467-braille dots134678-braille dots13468-braille dots1347-braille dots13478-braille dots1348-braille dots135-braille dots1356-braille dots13567-braille dots135678-braille dots13568-braille dots1357-braille dots13578-braille dots1358-braille dots136-braille dots1367-braille dots13678-braille dots1368-braille dots137-braille dots1378-braille dots138-braille dots14-braille dots145-braille dots1456-braille dots14567-braille dots145678-braille dots14568-braille dots1457-braille dots14578-braille dots1458-braille dots146-braille dots1467-braille dots14678-braille dots1468-braille dots147-braille dots1478-braille dots148-braille dots15-braille dots156-braille dots1567-braille dots15678-braille dots1568-braille dots157-braille dots1578-braille dots158-braille dots16-braille dots167-braille dots1678-braille dots168-braille dots17-braille dots178-braille dots18-braille dots2-braille dots23-braille dots234-braille dots2345-braille dots23456-braille dots234567-braille dots2345678-braille dots234568-braille dots23457-braille dots234578-braille dots23458-braille dots2346-braille dots23467-braille dots234678-braille dots23468-braille dots2347-braille dots23478-braille dots2348-braille dots235-braille dots2356-braille dots23567-braille dots235678-braille dots23568-braille dots2357-braille dots23578-braille dots2358-braille dots236-braille dots2367-braille dots23678-braille dots2368-braille dots237-braille dots2378-braille dots238-braille dots24-braille dots245-braille dots2456-braille dots24567-braille dots245678-braille dots24568-braille dots2457-braille dots24578-braille dots2458-braille dots246-braille dots2467-braille dots24678-braille dots2468-braille dots247-braille dots2478-braille dots248-braille dots25-braille dots256-braille dots2567-braille dots25678-braille dots2568-braille dots257-braille dots2578-braille dots258-braille dots26-braille dots267-braille dots2678-braille dots268-braille dots27-braille dots278-braille dots28-braille dots3-braille dots34-braille dots345-braille dots3456-braille dots34567-braille dots345678-braille dots34568-braille dots3457-braille dots34578-braille dots3458-braille dots346-braille dots3467-braille dots34678-braille dots3468-braille dots347-braille dots3478-braille dots348-braille dots35-braille dots356-braille dots3567-braille dots35678-braille dots3568-braille dots357-braille dots3578-braille dots358-braille dots36-braille dots367-braille dots3678-braille dots368-braille dots37-braille dots378-braille dots38-braille dots4-braille dots45-braille dots456-braille dots4567-braille dots45678-braille dots4568-braille dots457-braille dots4578-braille dots458-braille dots46-braille dots467-braille dots4678-braille dots468-braille dots47-braille dots478-braille dots48-braille dots5-braille dots56-braille dots567-braille dots5678-braille dots568-braille dots57-braille dots578-braille dots58-braille dots6-braille dots67-braille dots678-braille dots68-braille dots7-braille dots78-braille dots8-braille numeral-greek lowernumeral-greek apostrophemod colontriangularmod commaturnedmod firsttonechinese glottalstopmod dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb commaturnedabovecomb commaabovecomb commaaboverightcomb horncomb dotbelowcomb ringbelowcomb commaaccentcomb cedillacomb ogonekcomb macronbelowcomb lowlinecomb gravetonecomb acutetonecomb dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron cedilla ogonek dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case acutecomb.loclPLK acutecomb.case.loclPLK perispomenicomb tonos tonos.case dieresistonos brevecomb-cy brevecomb-cy.case checkerBoardDeleteApple2 checkerBoardDeleteTrs80 checkerBoardDeleteAmstradCpc checkerBoardDeleteAmstradCpc.stypo checkerBoardFill checkerBoardFill.stypo checkerBoardFillInverse checkerBoardFillInverse.stypo blockQuadrant-UC blockQuadrant-UC.stypo blockQuadrant-LC blockQuadrant-LC.stypo blockQuadrant-ML blockQuadrant-ML.stypo blockQuadrant-MR blockQuadrant-MR.stypo blockTriangle-1 blockTriangle-1.stypo blockTriangle-2 blockTriangle-2.stypo blockTriangle-3 blockTriangle-3.stypo blockTriangle-4 blockTriangle-4.stypo blockTriangle-14 blockTriangle-14.stypo blockTriangle-23 blockTriangle-23.stypo blockTriangle-123 blockTriangle-123.stypo blockTriangle-124 blockTriangle-124.stypo blockTriangle-134 blockTriangle-134.stypo blockTriangle-234 blockTriangle-234.stypo blockCircle-1 blockCircle-1.stypo blockCircle-2 blockCircle-2.stypo blockCircle-3 blockCircle-3.stypo blockCircle-4 blockCircle-4.stypo blockCircle-UC blockCircle-UC.stypo blockCircle-LC by blockCircle-LC.stypo blockCircle-ML blockCircle-ML.stypo blockCircle-MR blockCircle-MR.stypo blockSextant-1 blockSextant-1.stypo blockSextant-2 blockSextant-2.stypo blockSextant-12 blockSextant-12.stypo blockSextant-3 blockSextant-3.stypo blockSextant-13 blockSextant-13.stypo blockSextant-23 blockSextant-23.stypo blockSextant-123 blockSextant-123.stypo blockSextant-4 blockSextant-4.stypo blockSextant-14 blockSextant-14.stypo blockSextant-24 blockSextant-24.stypo blockSextant-124 blockSextant-124.stypo blockSextant-34 blockSextant-34.stypo blockSextant-134 blockSextant-134.stypo blockSextant-234 blockSextant-234.stypo blockSextant-1234 blockSextant-1234.stypo blockSextant-5 blockSextant-5.stypo blockSextant-15 blockSextant-15.stypo blockSextant-25 blockSextant-25.stypo blockSextant-125 blockSextant-125.stypo blockSextant-35 blockSextant-35.stypo blockSextant-235 blockSextant-235.stypo blockSextant-1235 blockSextant-1235.stypo blockSextant-45 blockSextant-45.stypo blockSextant-145 blockSextant-145.stypo blockSextant-245 blockSextant-245.stypo blockSextant-1245 blockSextant-1245.stypo blockSextant-345 blockSextant-345.stypo blockSextant-1345 blockSextant-1345.stypo blockSextant-2345 blockSextant-2345.stypo blockSextant-12345 blockSextant-12345.stypo blockSextant-6 blockSextant-6.stypo blockSextant-16 blockSextant-16.stypo blockSextant-26 blockSextant-26.stypo blockSextant-126 blockSextant-126.stypo blockSextant-36 blockSextant-36.stypo blockSextant-136 blockSextant-136.stypo blockSextant-236 blockSextant-236.stypo blockSextant-1236 blockSextant-1236.stypo blockSextant-46 blockSextant-46.stypo blockSextant-146 blockSextant-146.stypo blockSextant-1246 blockSextant-1246.stypo blockSextant-346 blockSextant-346.stypo blockSextant-1346 blockSextant-1346.stypo blockSextant-2346 blockSextant-2346.stypo blockSextant-12346 blockSextant-12346.stypo blockSextant-56 blockSextant-56.stypo blockSextant-156 blockSextant-156.stypo blockSextant-256 blockSextant-256.stypo blockSextant-1256 blockSextant-1256.stypo blockSextant-356 blockSextant-356.stypo blockSextant-1356 blockSextant-1356.stypo blockSextant-2356 blockSextant-2356.stypo blockSextant-12356 blockSextant-12356.stypo blockSextant-456 blockSextant-456.stypo blockSextant-1456 blockSextant-1456.stypo blockSextant-2456 blockSextant-2456.stypo blockSextant-12456 blockSextant-12456.stypo blockSextant-3456 blockSextant-3456.stypo blockSextant-13456 blockSextant-13456.stypo blockSextant-23456 blockSextant-23456.stypo blockDiagonal-1FB3C blockDiagonal-1FB3C.stypo blockDiagonal-1FB3D blockDiagonal-1FB3D.stypo blockDiagonal-1FB3E blockDiagonal-1FB3E.stypo blockDiagonal-1FB3F blockDiagonal-1FB3F.stypo blockDiagonal-1FB40 blockDiagonal-1FB40.stypo blockDiagonal-1FB41 blockDiagonal-1FB41.stypo blockDiagonal-1FB42 blockDiagonal-1FB42.stypo blockDiagonal-1FB43 blockDiagonal-1FB43.stypo blockDiagonal-1FB44 blockDiagonal-1FB44.stypo blockDiagonal-1FB45 blockDiagonal-1FB45.stypo blockDiagonal-1FB46 blockDiagonal-1FB46.stypo blockDiagonal-1FB47 blockDiagonal-1FB47.stypo blockDiagonal-1FB48 blockDiagonal-1FB48.stypo blockDiagonal-1FB49 blockDiagonal-1FB49.stypo blockDiagonal-1FB4A blockDiagonal-1FB4A.stypo blockDiagonal-1FB4B blockDiagonal-1FB4B.stypo blockDiagonal-1FB4C blockDiagonal-1FB4C.stypo blockDiagonal-1FB4D blockDiagonal-1FB4D.stypo blockDiagonal-1FB4E blockDiagonal-1FB4E.stypo blockDiagonal-1FB4F blockDiagonal-1FB4F.stypo blockDiagonal-1FB50 blockDiagonal-1FB50.stypo blockDiagonal-1FB51 blockDiagonal-1FB51.stypo blockDiagonal-1FB52 blockDiagonal-1FB52.stypo blockDiagonal-1FB53 blockDiagonal-1FB53.stypo blockDiagonal-1FB54 blockDiagonal-1FB54.stypo blockDiagonal-1FB55 blockDiagonal-1FB55.stypo blockDiagonal-1FB56 blockDiagonal-1FB56.stypo blockDiagonal-1FB57 blockDiagonal-1FB57.stypo blockDiagonal-1FB58 blockDiagonal-1FB58.stypo blockDiagonal-1FB59 blockDiagonal-1FB59.stypo blockDiagonal-1FB5A blockDiagonal-1FB5A.stypo blockDiagonal-1FB5B blockDiagonal-1FB5B.stypo blockDiagonal-1FB5C blockDiagonal-1FB5C.stypo blockDiagonal-1FB5D blockDiagonal-1FB5D.stypo blockDiagonal-1FB5E blockDiagonal-1FB5E.stypo blockDiagonal-1FB5F blockDiagonal-1FB5F.stypo blockDiagonal-1FB60 blockDiagonal-1FB60.stypo blockDiagonal-1FB61 blockDiagonal-1FB61.stypo blockDiagonal-1FB62 blockDiagonal-1FB62.stypo blockDiagonal-1FB63 blockDiagonal-1FB63.stypo blockDiagonal-1FB64 blockDiagonal-1FB64.stypo blockDiagonal-1FB65 blockDiagonal-1FB65.stypo blockDiagonal-1FB66 blockDiagonal-1FB66.stypo blockDiagonal-1FB67 blockDiagonal-1FB67.stypo blockOctant-1 blockOctant-1.stypo blockOctant-2 blockOctant-2.stypo blockOctant-12 blockOctant-12.stypo blockOctant-3 blockOctant-3.stypo blockOctant-23 blockOctant-23.stypo blockOctant-123 blockOctant-123.stypo blockOctant-4 blockOctant-4.stypo blockOctant-14 blockOctant-14.stypo blockOctant-124 blockOctant-124.stypo blockOctant-34 blockOctant-34.stypo blockOctant-134 blockOctant-134.stypo blockOctant-234 blockOctant-234.stypo blockOctant-5 blockOctant-5.stypo blockOctant-15 blockOctant-15.stypo blockOctant-25 blockOctant-25.stypo blockOctant-125 blockOctant-125.stypo blockOctant-135 blockOctant-135.stypo blockOctant-235 blockOctant-235.stypo blockOctant-1235 blockOctant-1235.stypo blockOctant-45 blockOctant-45.stypo blockOctant-145 blockOctant-145.stypo blockOctant-245 blockOctant-245.stypo blockOctant-1245 blockOctant-1245.stypo blockOctant-345 blockOctant-345.stypo blockOctant-1345 blockOctant-1345.stypo blockOctant-2345 blockOctant-2345.stypo blockOctant-12345 blockOctant-12345.stypo blockOctant-6 blockOctant-6.stypo blockOctant-16 blockOctant-16.stypo blockOctant-26 blockOctant-26.stypo blockOctant-126 blockOctant-126.stypo blockOctant-36 blockOctant-36.stypo blockOctant-136 blockOctant-136.stypo blockOctant-236 blockOctant-236.stypo blockOctant-1236 blockOctant-1236.stypo blockOctant-146 blockOctant-146.stypo blockOctant-246 blockOctant-246.stypo blockOctant-1246 blockOctant-1246.stypo blockOctant-346 blockOctant-346.stypo blockOctant-1346 blockOctant-1346.stypo blockOctant-2346 blockOctant-2346.stypo blockOctant-12346 blockOctant-12346.stypo blockOctant-56 blockOctant-56.stypo blockOctant-156 blockOctant-156.stypo blockOctant-256 blockOctant-256.stypo blockOctant-1256 blockOctant-1256.stypo blockOctant-356 blockOctant-356.stypo blockOctant-1356 blockOctant-1356.stypo blockOctant-2356 blockOctant-2356.stypo blockOctant-12356 blockOctant-12356.stypo blockOctant-456 blockOctant-456.stypo blockOctant-1456 blockOctant-1456.stypo blockOctant-2456 blockOctant-2456.stypo blockOctant-12456 blockOctant-12456.stypo blockOctant-3456 blockOctant-3456.stypo blockOctant-13456 blockOctant-13456.stypo blockOctant-23456 blockOctant-23456.stypo blockOctant-123456 blockOctant-123456.stypo blockOctant-7 blockOctant-7.stypo blockOctant-17 blockOctant-17.stypo blockOctant-27 blockOctant-27.stypo blockOctant-127 blockOctant-127.stypo blockOctant-37 blockOctant-37.stypo blockOctant-137 blockOctant-137.stypo blockOctant-237 blockOctant-237.stypo blockOctant-1237 blockOctant-1237.stypo blockOctant-47 blockOctant-47.stypo blockOctant-147 blockOctant-147.stypo blockOctant-247 blockOctant-247.stypo blockOctant-1247 blockOctant-1247.stypo blockOctant-347 blockOctant-347.stypo blockOctant-1347 blockOctant-1347.stypo blockOctant-2347 blockOctant-2347.stypo blockOctant-12347 blockOctant-12347.stypo blockOctant-157 blockOctant-157.stypo blockOctant-257 blockOctant-257.stypo blockOctant-1257 blockOctant-1257.stypo blockOctant-357 blockOctant-357.stypo blockOctant-2357 blockOctant-2357.stypo blockOctant-12357 blockOctant-12357.stypo blockOctant-457 blockOctant-457.stypo blockOctant-1457 blockOctant-1457.stypo blockOctant-12457 blockOctant-12457.stypo blockOctant-3457 blockOctant-3457.stypo blockOctant-13457 blockOctant-13457.stypo blockOctant-23457 blockOctant-23457.stypo blockOctant-67 blockOctant-67.stypo blockOctant-167 blockOctant-167.stypo blockOctant-267 blockOctant-267.stypo blockOctant-1267 blockOctant-1267.stypo blockOctant-367 blockOctant-367.stypo blockOctant-1367 blockOctant-1367.stypo blockOctant-2367 blockOctant-2367.stypo blockOctant-12367 blockOctant-12367.stypo blockOctant-467 blockOctant-467.stypo blockOctant-1467 blockOctant-1467.stypo blockOctant-2467 blockOctant-2467.stypo blockOctant-12467 blockOctant-12467.stypo blockOctant-3467 blockOctant-3467.stypo blockOctant-13467 blockOctant-13467.stypo blockOctant-23467 blockOctant-23467.stypo blockOctant-123467 blockOctant-123467.stypo blockOctant-567 blockOctant-567.stypo blockOctant-1567 blockOctant-1567.stypo blockOctant-2567 blockOctant-2567.stypo blockOctant-12567 blockOctant-12567.stypo blockOctant-3567 blockOctant-3567.stypo blockOctant-13567 blockOctant-13567.stypo blockOctant-23567 blockOctant-23567.stypo blockOctant-123567 blockOctant-123567.stypo blockOctant-4567 blockOctant-4567.stypo blockOctant-14567 blockOctant-14567.stypo blockOctant-24567 blockOctant-24567.stypo blockOctant-124567 blockOctant-124567.stypo blockOctant-34567 blockOctant-34567.stypo blockOctant-134567 blockOctant-134567.stypo blockOctant-234567 blockOctant-234567.stypo blockOctant-1234567 blockOctant-1234567.stypo blockOctant-8 blockOctant-8.stypo blockOctant-18 blockOctant-18.stypo blockOctant-28 blockOctant-28.stypo blockOctant-128 blockOctant-128.stypo blockOctant-38 blockOctant-38.stypo blockOctant-138 blockOctant-138.stypo blockOctant-238 blockOctant-238.stypo blockOctant-1238 blockOctant-1238.stypo blockOctant-48 blockOctant-48.stypo blockOctant-148 blockOctant-148.stypo blockOctant-248 blockOctant-248.stypo blockOctant-1248 blockOctant-1248.stypo blockOctant-348 blockOctant-348.stypo blockOctant-1348 blockOctant-1348.stypo blockOctant-2348 blockOctant-2348.stypo blockOctant-12348 blockOctant-12348.stypo blockOctant-58 blockOctant-58.stypo blockOctant-158 blockOctant-158.stypo blockOctant-258 blockOctant-258.stypo blockOctant-1258 blockOctant-1258.stypo blockOctant-358 blockOctant-358.stypo blockOctant-1358 blockOctant-1358.stypo blockOctant-2358 blockOctant-2358.stypo blockOctant-12358 blockOctant-12358.stypo blockOctant-458 blockOctant-458.stypo blockOctant-1458 blockOctant-1458.stypo blockOctant-2458 blockOctant-2458.stypo blockOctant-12458 blockOctant-12458.stypo blockOctant-3458 blockOctant-3458.stypo blockOctant-13458 blockOctant-13458.stypo blockOctant-23458 blockOctant-23458.stypo blockOctant-123458 blockOctant-123458.stypo blockOctant-168 blockOctant-168.stypo blockOctant-268 blockOctant-268.stypo blockOctant-1268 blockOctant-1268.stypo blockOctant-368 blockOctant-368.stypo blockOctant-2368 blockOctant-2368.stypo blockOctant-12368 blockOctant-12368.stypo blockOctant-468 blockOctant-468.stypo blockOctant-1468 blockOctant-1468.stypo blockOctant-12468 blockOctant-12468.stypo blockOctant-3468 blockOctant-3468.stypo blockOctant-13468 blockOctant-13468.stypo blockOctant-23468 blockOctant-23468.stypo blockOctant-568 blockOctant-568.stypo blockOctant-1568 blockOctant-1568.stypo blockOctant-2568 blockOctant-2568.stypo blockOctant-12568 blockOctant-12568.stypo blockOctant-3568 blockOctant-3568.stypo blockOctant-13568 blockOctant-13568.stypo blockOctant-23568 blockOctant-23568.stypo blockOctant-123568 blockOctant-123568.stypo blockOctant-4568 blockOctant-4568.stypo blockOctant-14568 blockOctant-14568.stypo blockOctant-24568 blockOctant-24568.stypo blockOctant-124568 blockOctant-124568.stypo blockOctant-34568 blockOctant-34568.stypo blockOctant-134568 blockOctant-134568.stypo blockOctant-234568 blockOctant-234568.stypo blockOctant-1234568 blockOctant-1234568.stypo blockOctant-178 blockOctant-178.stypo blockOctant-278 blockOctant-278.stypo blockOctant-1278 blockOctant-1278.stypo blockOctant-378 blockOctant-378.stypo blockOctant-1378 blockOctant-1378.stypo blockOctant-2378 blockOctant-2378.stypo blockOctant-12378 blockOctant-12378.stypo blockOctant-478 blockOctant-478.stypo blockOctant-1478 blockOctant-1478.stypo blockOctant-2478 blockOctant-2478.stypo blockOctant-12478 blockOctant-12478.stypo blockOctant-3478 blockOctant-3478.stypo blockOctant-13478 blockOctant-13478.stypo blockOctant-23478 blockOctant-23478.stypo blockOctant-123478 blockOctant-123478.stypo blockOctant-578 blockOctant-578.stypo blockOctant-1578 blockOctant-1578.stypo blockOctant-2578 blockOctant-2578.stypo blockOctant-12578 blockOctant-12578.stypo blockOctant-3578 blockOctant-3578.stypo blockOctant-13578 blockOctant-13578.stypo blockOctant-23578 blockOctant-23578.stypo blockOctant-123578 blockOctant-123578.stypo blockOctant-4578 blockOctant-4578.stypo blockOctant-14578 blockOctant-14578.stypo blockOctant-24578 blockOctant-24578.stypo blockOctant-124578 blockOctant-124578.stypo blockOctant-34578 blockOctant-34578.stypo blockOctant-134578 blockOctant-134578.stypo blockOctant-234578 blockOctant-234578.stypo blockOctant-1234578 blockOctant-1234578.stypo blockOctant-678 blockOctant-678.stypo blockOctant-1678 blockOctant-1678.stypo blockOctant-2678 blockOctant-2678.stypo blockOctant-12678 blockOctant-12678.stypo blockOctant-3678 blockOctant-3678.stypo blockOctant-13678 blockOctant-13678.stypo blockOctant-23678 blockOctant-23678.stypo blockOctant-123678 blockOctant-123678.stypo blockOctant-4678 blockOctant-4678.stypo blockOctant-14678 blockOctant-14678.stypo blockOctant-24678 blockOctant-24678.stypo blockOctant-124678 blockOctant-124678.stypo blockOctant-34678 blockOctant-34678.stypo blockOctant-134678 blockOctant-134678.stypo blockOctant-234678 blockOctant-234678.stypo blockOctant-1234678 blockOctant-1234678.stypo blockOctant-15678 blockOctant-15678.stypo blockOctant-25678 blockOctant-25678.stypo blockOctant-125678 blockOctant-125678.stypo blockOctant-35678 blockOctant-35678.stypo blockOctant-235678 blockOctant-235678.stypo blockOctant-1235678 blockOctant-1235678.stypo blockOctant-45678 blockOctant-45678.stypo blockOctant-145678 blockOctant-145678.stypo blockOctant-1245678 blockOctant-1245678.stypo blockOctant-1345678 blockOctant-1345678.stypo blockOctant-2345678 blockOctant-2345678.stypo blockSedecimant-1 blockSedecimant-1.stypo blockSedecimant-2 blockSedecimant-2.stypo blockSedecimant-3 blockSedecimant-3.stypo blockSedecimant-4 blockSedecimant-4.stypo blockSedecimant-5 blockSedecimant-5.stypo blockSedecimant-6 blockSedecimant-6.stypo blockSedecimant-7 blockSedecimant-7.stypo blockSedecimant-8 blockSedecimant-8.stypo blockSedecimant-9 blockSedecimant-9.stypo blockSedecimant-A blockSedecimant-A.stypo blockSedecimant-B blockSedecimant-B.stypo blockSedecimant-C blockSedecimant-C.stypo blockSedecimant-D blockSedecimant-D.stypo blockSedecimant-E blockSedecimant-E.stypo blockSedecimant-F blockSedecimant-F.stypo blockSedecimant-G blockSedecimant-G.stypo blockSedecimant-EFG blockSedecimant-EFG.stypo blockSedecimant-DEF blockSedecimant-DEF.stypo blockSedecimant-9D blockSedecimant-9D.stypo blockSedecimant-59D blockSedecimant-59D.stypo blockSedecimant-159 blockSedecimant-159.stypo blockSedecimant-15 blockSedecimant-15.stypo blockSedecimant-123 blockSedecimant-123.stypo blockSedecimant-234 blockSedecimant-234.stypo blockSedecimant-48 blockSedecimant-48.stypo blockSedecimant-48C blockSedecimant-48C.stypo blockSedecimant-8CG blockSedecimant-8CG.stypo blockSedecimant-CG blockSedecimant-CG.stypo verticalOneEighthBlock-2 verticalOneEighthBlock-2.stypo verticalOneEighthBlock-3 verticalOneEighthBlock-3.stypo verticalOneEighthBlock-4 verticalOneEighthBlock-4.stypo verticalOneEighthBlock-5 verticalOneEighthBlock-5.stypo verticalOneEighthBlock-6 verticalOneEighthBlock-6.stypo verticalOneEighthBlock-7 verticalOneEighthBlock-7.stypo horizontalOneEightBlock-2 horizontalOneEightBlock-2.stypo horizontalOneEightBlock-3 horizontalOneEightBlock-3.stypo horizontalOneEightBlock-4 horizontalOneEightBlock-4.stypo horizontalOneEightBlock-5 horizontalOneEightBlock-5.stypo horizontalOneEightBlock-6 horizontalOneEightBlock-6.stypo horizontalOneEightBlock-7 horizontalOneEightBlock-7.stypo leftAndLowerOneEightBlock leftAndLowerOneEightBlock.stypo leftAndUpperOneEightBlock leftAndUpperOneEightBlock.stypo rightAndUpperOneEightBlock rightAndUpperOneEightBlock.stypo rightAndLowerOneEightBlock rightAndLowerOneEightBlock.stypo upperAndLowerOneEightBlock upperAndLowerOneEightBlock.stypo upperThreeEighthsBlock upperThreeEighthsBlock.stypo upperFiveEighthsBlock upperFiveEighthsBlock.stypo upperSevenEighthsBlock upperSevenEighthsBlock.stypo rightOneQuarterBlock rightOneQuarterBlock.stypo rightThreeEighthsBlock rightThreeEighthsBlock.stypo rightFiveEighthsBlock rightFiveEighthsBlock.stypo rightThreeQuartersBlock rightThreeQuartersBlock.stypo rightSevenEighthsBlock rightSevenEighthsBlock.stypo leftTwoThirdsBlock leftTwoThirdsBlock.stypo leftOneThirdBlock leftOneThirdBlock.stypo heavyHorizontalFill heavyHorizontalFill.stypo blockSeparatedQuadrant-1 blockSeparatedQuadrant-1.stypo blockSeparatedQuadrant-2 blockSeparatedQuadrant-2.stypo blockSeparatedQuadrant-12 blockSeparatedQuadrant-12.stypo blockSeparatedQuadrant-3 blockSeparatedQuadrant-3.stypo blockSeparatedQuadrant-13 blockSeparatedQuadrant-13.stypo blockSeparatedQuadrant-23 blockSeparatedQuadrant-23.stypo blockSeparatedQuadrant-123 blockSeparatedQuadrant-123.stypo blockSeparatedQuadrant-4 blockSeparatedQuadrant-4.stypo blockSeparatedQuadrant-14 blockSeparatedQuadrant-14.stypo blockSeparatedQuadrant-24 blockSeparatedQuadrant-24.stypo blockSeparatedQuadrant-124 blockSeparatedQuadrant-124.stypo blockSeparatedQuadrant-34 blockSeparatedQuadrant-34.stypo blockSeparatedQuadrant-134 blockSeparatedQuadrant-134.stypo blockSeparatedQuadrant-234 blockSeparatedQuadrant-234.stypo blockSeparatedQuadrant-1234 blockSeparatedQuadrant-1234.stypo blockSeparatedSextant-1 blockSeparatedSextant-1.stypo blockSeparatedSextant-2 blockSeparatedSextant-2.stypo blockSeparatedSextant-12 blockSeparatedSextant-12.stypo blockSeparatedSextant-3 blockSeparatedSextant-3.stypo blockSeparatedSextant-13 blockSeparatedSextant-13.stypo blockSeparatedSextant-23 blockSeparatedSextant-23.stypo blockSeparatedSextant-123 blockSeparatedSextant-123.stypo blockSeparatedSextant-4 blockSeparatedSextant-4.stypo blockSeparatedSextant-14 blockSeparatedSextant-14.stypo blockSeparatedSextant-24 blockSeparatedSextant-24.stypo blockSeparatedSextant-124 blockSeparatedSextant-124.stypo blockSeparatedSextant-34 blockSeparatedSextant-34.stypo blockSeparatedSextant-134 blockSeparatedSextant-134.stypo blockSeparatedSextant-234 blockSeparatedSextant-234.stypo blockSeparatedSextant-1234 blockSeparatedSextant-1234.stypo blockSeparatedSextant-5 blockSeparatedSextant-5.stypo blockSeparatedSextant-15 blockSeparatedSextant-15.stypo blockSeparatedSextant-25 blockSeparatedSextant-25.stypo blockSeparatedSextant-125 blockSeparatedSextant-125.stypo blockSeparatedSextant-35 blockSeparatedSextant-35.stypo blockSeparatedSextant-135 blockSeparatedSextant-135.stypo blockSeparatedSextant-235 blockSeparatedSextant-235.stypo blockSeparatedSextant-1235 blockSeparatedSextant-1235.stypo blockSeparatedSextant-45 blockSeparatedSextant-45.stypo blockSeparatedSextant-145 blockSeparatedSextant-145.stypo blockSeparatedSextant-245 blockSeparatedSextant-245.stypo blockSeparatedSextant-1245 blockSeparatedSextant-1245.stypo blockSeparatedSextant-345 blockSeparatedSextant-345.stypo blockSeparatedSextant-1345 blockSeparatedSextant-1345.stypo blockSeparatedSextant-2345 blockSeparatedSextant-2345.stypo blockSeparatedSextant-12345 blockSeparatedSextant-12345.stypo blockSeparatedSextant-6 blockSeparatedSextant-6.stypo blockSeparatedSextant-16 blockSeparatedSextant-16.stypo blockSeparatedSextant-26 blockSeparatedSextant-26.stypo blockSeparatedSextant-126 blockSeparatedSextant-126.stypo blockSeparatedSextant-36 blockSeparatedSextant-36.stypo blockSeparatedSextant-136 blockSeparatedSextant-136.stypo blockSeparatedSextant-236 blockSeparatedSextant-236.stypo blockSeparatedSextant-1236 blockSeparatedSextant-1236.stypo blockSeparatedSextant-46 blockSeparatedSextant-46.stypo blockSeparatedSextant-146 blockSeparatedSextant-146.stypo blockSeparatedSextant-246 blockSeparatedSextant-246.stypo blockSeparatedSextant-1246 blockSeparatedSextant-1246.stypo blockSeparatedSextant-346 blockSeparatedSextant-346.stypo blockSeparatedSextant-1346 blockSeparatedSextant-1346.stypo blockSeparatedSextant-2346 blockSeparatedSextant-2346.stypo blockSeparatedSextant-12346 blockSeparatedSextant-12346.stypo blockSeparatedSextant-56 blockSeparatedSextant-56.stypo blockSeparatedSextant-156 blockSeparatedSextant-156.stypo blockSeparatedSextant-256 blockSeparatedSextant-256.stypo blockSeparatedSextant-1256 blockSeparatedSextant-1256.stypo blockSeparatedSextant-356 blockSeparatedSextant-356.stypo blockSeparatedSextant-1356 blockSeparatedSextant-1356.stypo blockSeparatedSextant-2356 blockSeparatedSextant-2356.stypo blockSeparatedSextant-12356 blockSeparatedSextant-12356.stypo blockSeparatedSextant-456 blockSeparatedSextant-456.stypo blockSeparatedSextant-1456 blockSeparatedSextant-1456.stypo blockSeparatedSextant-2456 blockSeparatedSextant-2456.stypo blockSeparatedSextant-12456 blockSeparatedSextant-12456.stypo blockSeparatedSextant-3456 blockSeparatedSextant-3456.stypo blockSeparatedSextant-13456 blockSeparatedSextant-13456.stypo blockSeparatedSextant-23456 blockSeparatedSextant-23456.stypo blockSeparatedSextant-123456 blockSeparatedSextant-123456.stypo largeType-1CE1A largeType-1CE1A.stypo largeType-1CE1B largeType-1CE1B.stypo largeType-1CE1C largeType-1CE1C.stypo largeType-1CE1D largeType-1CE1D.stypo largeType-1CE1E largeType-1CE1E.stypo largeType-1CE1F largeType-1CE1F.stypo largeType-1CE20 largeType-1CE20.stypo largeType-1CE21 largeType-1CE21.stypo largeType-1CE22 largeType-1CE22.stypo largeType-1CE23 largeType-1CE23.stypo largeType-1CE24 largeType-1CE24.stypo largeType-1CE25 largeType-1CE25.stypo largeType-1CE26 largeType-1CE26.stypo largeType-1CE27 largeType-1CE27.stypo largeType-1CE28 largeType-1CE28.stypo largeType-1CE29 largeType-1CE29.stypo largeType-1CE2A largeType-1CE2A.stypo largeType-1CE2B largeType-1CE2B.stypo largeType-1CE2C largeType-1CE2C.stypo largeType-1CE2D largeType-1CE2D.stypo largeType-1CE2E largeType-1CE2E.stypo largeType-1CE2F largeType-1CE2F.stypo largeType-1CE30 largeType-1CE30.stypo largeType-1CE31 largeType-1CE31.stypo largeType-1CE32 largeType-1CE32.stypo largeType-1CE33 largeType-1CE33.stypo largeType-1CE34 largeType-1CE34.stypo largeType-1CE35 largeType-1CE35.stypo largeType-1CE36 largeType-1CE36.stypo largeType-1CE37 largeType-1CE37.stypo largeType-1CE38 largeType-1CE38.stypo largeType-1CE39 largeType-1CE39.stypo largeType-1CE3A largeType-1CE3A.stypo largeType-1CE3B largeType-1CE3B.stypo largeType-1CE3C largeType-1CE3C.stypo largeType-1CE3D largeType-1CE3D.stypo largeType-1CE3E largeType-1CE3E.stypo largeType-1CE3F largeType-1CE3F.stypo largeType-1CE40 largeType-1CE40.stypo largeType-1CE41 largeType-1CE41.stypo largeType-1CE42 largeType-1CE42.stypo largeType-1CE43 largeType-1CE43.stypo largeType-1CE44 largeType-1CE44.stypo largeType-1CE45 largeType-1CE45.stypo largeType-1CE46 largeType-1CE46.stypo largeType-1CE47 largeType-1CE47.stypo largeType-1CE48 largeType-1CE48.stypo largeType-1CE49 largeType-1CE49.stypo largeType-1CE4A largeType-1CE4A.stypo largeType-1CE4B largeType-1CE4B.stypo largeType-1CE4C largeType-1CE4C.stypo largeType-1CE4D largeType-1CE4D.stypo largeType-1CE4E largeType-1CE4E.stypo largeType-1CE4F largeType-1CE4F.stypo largeType-1CE50 largeType-1CE50.stypo LIG  ];\n\n@NRW = [ behDotless-ar\nbehDotless-ar.fina\nbeh-ar\nbeh-ar.fina\npeh-ar\npeh-ar.fina\nbeeh-ar\nbeeh-ar.fina\nbeheh-ar\nbeheh-ar.fina\nteh-ar\nteh-ar.fina\ntehRing-ar\ntehRing-ar.fina\ntehThreedotsdown-ar\ntehThreedotsdown-ar.fina\ntheh-ar\ntheh-ar.fina\ntteh-ar\ntteh-ar.fina\ntteheh-ar\ntteheh-ar.fina\nteheh-ar\nteheh-ar.fina\nbehThreedotshorizontalbelow-ar\nbehThreedotshorizontalbelow-ar.fina\nbehThreedotsupabove-ar\nbehThreedotsupabove-ar.fina\nbehThreedotsupbelow-ar\nbehThreedotsupbelow-ar.fina\ntehThreedotsupbelow-ar\ntehThreedotsupbelow-ar.fina\nbehTwodotsbelowDotabove-ar\nbehTwodotsbelowDotabove-ar.fina\nbehVinvertedbelow-ar\nbehVinvertedbelow-ar.fina\nbehVabove-ar\nbehVabove-ar.fina\nbehVbelow-ar\nbehVbelow-ar.fina\nbehhamzaabove-ar\nbehhamzaabove-ar.fina\nseen-ar\nseen-ar.fina\nseenDotbelowDotabove-ar\nseenDotbelowDotabove-ar.fina\nseenThreedotsbelow-ar\nseenThreedotsbelow-ar.fina\nsheen-ar\nsheen-ar.fina\nsheenDotbelow-ar\nsheenDotbelow-ar.fina\nseenThreedotsbelowthreedots-ar\nseenThreedotsbelowthreedots-ar.fina\nsad-ar\nsad-ar.fina\nsadTwodotsbelow-ar\nsadTwodotsbelow-ar.fina\nsadThreedots-ar\nsadThreedots-ar.fina\nsadThreedotsbelow-ar\nsadThreedotsbelow-ar.fina\ndad-ar\ndad-ar.fina\ndadDotbelow-ar\ndadDotbelow-ar.fina\nfeh-ar\nfeh-ar.fina\nveh-ar\nveh-ar.fina\nfehDotless-ar\nfehDotless-ar.fina\nfehDotMovedbelow-ar\nfehDotbelow-ar\nfehDotbelow-ar.fina\nfehThreedotsbelow-ar\nfehThreedotsbelow-ar.fina\nfehDotbelowThreedotsabove-ar\nfehDotbelowThreedotsabove-ar.fina\npeheh-ar\npeheh-ar.fina\nseenFourdotsabove-ar\nseenFourdotsabove-ar.fina\nfehTwodotsbelow-ar\nfehTwodotsbelow-ar.fina\nfehThreedotsupbelow-ar\nfehThreedotsupbelow-ar.fina\nseenTwodotshorizontalabove-ar\nseenTwodotshorizontalabove-ar.fina\nseenTahTwodotshorizontalabove-ar\nseenTahTwodotshorizontalabove-ar.fina\nseenFourabove-ar\nseenFourabove-ar.fina\nseenVinvertedabove-ar\nseenVinvertedabove-ar.fina\nseenThreedotsbelowthreedots-ar\nseenThreedotsbelowthreedots-ar.fina\nbehMeemabove-ar\nbehMeemabove-ar.fina\npehMeemabove-ar\npehMeemabove-ar.fina\ntehTehabove-ar\ntehTehabove-ar.fina ];\n\n@EXD = [ behDotless-ar.alt\nbehDotless-ar.fina.alt\nbeh-ar.alt\nbeh-ar.fina.alt\npeh-ar.alt\npeh-ar.fina.alt\nbeeh-ar.alt\nbeeh-ar.fina.alt\nbeheh-ar.alt\nbeheh-ar.fina.alt\nteh-ar.alt\nteh-ar.fina.alt\ntehRing-ar.alt\ntehRing-ar.fina.alt\ntehThreedotsdown-ar.alt\ntehThreedotsdown-ar.fina.alt\ntheh-ar.alt\ntheh-ar.fina.alt\ntteh-ar.alt\ntteh-ar.fina.alt\ntteheh-ar.alt\ntteheh-ar.fina.alt\nteheh-ar.alt\nteheh-ar.fina.alt\nbehThreedotshorizontalbelow-ar.alt\nbehThreedotshorizontalbelow-ar.fina.alt\nbehThreedotsupabove-ar.alt\nbehThreedotsupabove-ar.fina.alt\nbehThreedotsupbelow-ar.alt\nbehThreedotsupbelow-ar.fina.alt\ntehThreedotsupbelow-ar.alt\ntehThreedotsupbelow-ar.fina.alt\nbehTwodotsbelowDotabove-ar.alt\nbehTwodotsbelowDotabove-ar.fina.alt\nbehVinvertedbelow-ar.alt\nbehVinvertedbelow-ar.fina.alt\nbehVabove-ar.alt\nbehVabove-ar.fina.alt\nbehVbelow-ar.alt\nbehVbelow-ar.fina.alt\nbehhamzaabove-ar.alt\nbehhamzaabove-ar.fina.alt\nseen-ar.alt\nseen-ar.fina.alt\nseenDotbelowDotabove-ar.alt\nseenDotbelowDotabove-ar.fina.alt\nseenThreedotsbelow-ar.alt\nseenThreedotsbelow-ar.fina.alt\nsheen-ar.alt\nsheen-ar.fina.alt\nsheenDotbelow-ar.alt\nsheenDotbelow-ar.fina.alt\nseenThreedotsbelowthreedots-ar.alt\nseenThreedotsbelowthreedots-ar.fina.alt\nsad-ar.alt\nsad-ar.fina.alt\nsadTwodotsbelow-ar.alt\nsadTwodotsbelow-ar.fina.alt\nsadThreedots-ar.alt\nsadThreedots-ar.fina.alt\nsadThreedotsbelow-ar.alt\nsadThreedotsbelow-ar.fina.alt\ndad-ar.alt\ndad-ar.fina.alt\ndadDotbelow-ar.alt\ndadDotbelow-ar.fina.alt\nfeh-ar.alt\nfeh-ar.fina.alt\nveh-ar.alt\nveh-ar.fina.alt\nfehDotless-ar.alt\nfehDotless-ar.fina.alt\nfehDotMovedbelow-ar.alt\nfehDotbelow-ar.alt\nfehDotbelow-ar.fina.alt\nfehThreedotsbelow-ar.alt\nfehThreedotsbelow-ar.fina.alt\nfehDotbelowThreedotsabove-ar.alt\nfehDotbelowThreedotsabove-ar.fina.alt\npeheh-ar.alt\npeheh-ar.fina.alt\nseenFourdotsabove-ar.alt\nseenFourdotsabove-ar.fina.alt\nfehTwodotsbelow-ar.alt\nfehTwodotsbelow-ar.fina.alt\nfehThreedotsupbelow-ar.alt\nfehThreedotsupbelow-ar.fina.alt\nseenTwodotsverticalabove-ar.alt\nseenTwodotsverticalabove-ar.fina.alt\nseenTahTwodotshorizontalabove-ar.alt\nseenTahTwodotshorizontalabove-ar.fina.alt\nseenFourabove-ar.alt\nseenFourabove-ar.fina.alt\nseenVinvertedabove-ar.alt\nseenVinvertedabove-ar.fina.alt\nseenThreedotsbelowthreedots-ar.alt\nseenThreedotsbelowthreedots-ar.fina.alt\nbehMeemabove-ar.alt\nbehMeemabove-ar.fina.alt\npehMeemabove-ar.alt\npehMeemabove-ar.fina.alt\ntehTehabove-ar.alt\ntehTehabove-ar.fina.alt ];\n\n@beh1 = [ beh-ar.init\npeh-ar.init\nbeeh-ar.init\nbeheh-ar.init\nteh-ar.init\ntehRing-ar.init\ntehThreedotsdown-ar.init\ntheh-ar.init\ntteh-ar.init\ntteheh-ar.init\nteheh-ar.init\nbehThreedotshorizontalbelow-ar.init\nbehThreedotsupabove-ar.init\nbehThreedotsupbelow-ar.init\nbehTwodotsbelowDotabove-ar.init\nbehVinvertedbelow-ar.init\nbehVabove-ar.init\nbehVbelow-ar.init\nnoon-ar.init\nnoonghunna-ar.init\nnoonAfrican-ar.init\nhehgoal-ar.init\nyeh-ar.init\nyehHamzaabove-ar.init\nyehVabove-ar.init\nyehTwodotsbelowHamzaabove-ar.init\nyehTwodotsbelowDotabove-ar.init\nyehVinverted-farsi.init\nyehTwodotsabove-farsi.init\nyehThreedotsabove-farsi.init\nyehTwoabove-farsi.init\nyehThreeabove-farsi.init\nyehFourbelow-farsi.init\nyehKashmiri-ar.init\nyehThreedotsbelow-ar.init\nyehbarreeTwoabove-ar.init\nyehbarreeThreeabove-ar.init\nhighhamzaYeh-ar.init\nnoonTwodotsbelow-ar.init\nnoonTahabove-ar.init\nnoonVabove-ar.init\nbehMeemabove-ar.init\npehMeemabove-ar.init\ntehTehabove-ar.init\nyehTwodotsbelowNoonabove-ar.init\nnoonThreedotsabove-ar.init\nnoonDotbelow-ar.init\nrnoon-ar.init\nnoonRing-ar.init\nhehgoalHamzaabove-ar.init\nyeh-farsi.init\ne-ar.init ];\n\n@beh2 = [ beh-ar.init.alt\npeh-ar.init.alt\nbeeh-ar.init.alt\nbeheh-ar.init.alt\nteh-ar.init.alt\ntehRing-ar.init.alt\ntehThreedotsdown-ar.init.alt\ntheh-ar.init.alt\ntteh-ar.init.alt\ntteheh-ar.init.alt\nteheh-ar.init.alt\nbehThreedotshorizontalbelow-ar.init.alt\nbehThreedotsupabove-ar.init.alt\nbehThreedotsupbelow-ar.init.alt\nbehTwodotsbelowDotabove-ar.init.alt\nbehVinvertedbelow-ar.init.alt\nbehVabove-ar.init.alt\nbehVbelow-ar.init.alt\nnoon-ar.init.alt\nnoonghunna-ar.init.alt\nnoonAfrican-ar.init.alt\nhehgoal-ar.init.alt\nyeh-ar.init.alt\nyehHamzaabove-ar.init.alt\nyehVabove-ar.init.alt\nyehTwodotsbelowHamzaabove-ar.init.alt\nyehTwodotsbelowDotabove-ar.init.alt\nyehVinverted-farsi.init.alt\nyehTwodotsabove-farsi.init.alt\nyehThreedotsabove-farsi.init.alt\nyehTwoabove-farsi.init.alt\nyehThreeabove-farsi.init.alt\nyehFourbelow-farsi.init.alt\nyehKashmiri-ar.init.alt\nyehThreedotsbelow-ar.init.alt\nyehbarreeTwoabove-ar.init.alt\nyehbarreeThreeabove-ar.init.alt\nhighhamzaYeh-ar.init.alt\nnoonTwodotsbelow-ar.init.alt\nnoonTahabove-ar.init.alt\nnoonVabove-ar.init.alt\nbehMeemabove-ar.init.alt\npehMeemabove-ar.init.alt\ntehTehabove-ar.init.alt\nyehTwodotsbelowNoonabove-ar.init.alt\nnoonThreedotsabove-ar.init.alt\nnoonDotbelow-ar.init.alt\nrnoon-ar.init.alt\nnoonRing-ar.init.alt\nhehgoalHamzaabove-ar.init.alt\nyeh-farsi.init.alt\ne-ar.init.alt ];\n\n@alef1 = [ alef-ar.fina\nalef-ar.fina.short\nalefHamzaabove-ar.fina\nalefHamzabelow-ar.fina\nalefMadda-ar.fina\nalefWasla-ar.fina\nalefTwoabove-ar.fina\nalefThreeabove-ar.fina\nalefWavyhamzabelow-ar.fina\nalefWavyhamzaabove-ar.fina ];\n\n@alef2 = [ alef-ar.fina.alt\nalef-ar.fina.short.alt\nalefHamzaabove-ar.fina.alt\nalefHamzabelow-ar.fina.alt\nalefMadda-ar.fina.alt\nalefWasla-ar.fina.alt\nalefTwoabove-ar.fina.alt\nalefThreeabove-ar.fina.alt\nalefWavyhamzabelow-ar.fina.alt\nalefWavyhamzaabove-ar.fina.alt ];\n\n@arlig1 = [ alef-ar.fina\nalef-ar.fina.short\nalefHamzaabove-ar.fina\nalefHamzabelow-ar.fina\nalefMadda-ar.fina\nalefWasla-ar.fina\nalefTwoabove-ar.fina\nalefThreeabove-ar.fina\nalefWavyhamzaabove-ar.fina\nalefWavyhamzabelow-ar.fina\nhighhamzaAlef-ar.fina\nalefFathatan-ar.fina\nlam-ar.init\nlamVabove-ar.init\nlamDotabove-ar.init\nlamThreedotsabove-ar.init\nlamThreedotsbelow-ar.init\nlamDoublebar-ar.init\nlamBar-ar.init ];\n\n@arlig2 = [ _alef-ar.fina.rlig\n_alef-ar.fina.short.rlig\n_alefHamzaabove-ar.fina.rlig\n_alefHamzabelow-ar.fina.rlig\n_alefMadda-ar.fina.rlig\n_alefWasla-ar.fina.rlig\n_alefTwoabove-ar.fina.rlig\n_alefThreeabove-ar.fina.rlig\n_highhamzaAlef-ar.fina.rlig\n_alefWavyhamzaabove-ar.fina.rlig\n_alefWavyhamzabelow-ar.fina.rlig\n_alefFathatan-ar.fina.rlig\nlam-ar.init.rlig\nlamVabove-ar.init.rlig\nlamDotabove-ar.init.rlig\nlamThreedotsabove-ar.init.rlig\nlamThreedotsbelow-ar.init.rlig\nlamDoublebar-ar.init.rlig\nlamBar-ar.init.rlig ];\n\n@arlig3 = [ alef-ar.fina\nalef-ar.fina.short\nalefHamzaabove-ar.fina\nalefHamzabelow-ar.fina\nalefMadda-ar.fina\nalefWasla-ar.fina\nalefTwoabove-ar.fina\nalefThreeabove-ar.fina\nalefWavyhamzaabove-ar.fina\nalefWavyhamzabelow-ar.fina\nhighhamzaAlef-ar.fina\nalefFathatan-ar.fina\nlam-ar.medi\nlamVabove-ar.medi\nlamDotabove-ar.medi\nlamThreedotsabove-ar.medi\nlamThreedotsbelow-ar.medi\nlamDoublebar-ar.medi\nlamBar-ar.medi ];\n\n@arlig4 = [ alef-ar.fina.rlig\nalef-ar.fina.short.rlig\nalefHamzaabove-ar.fina.rlig\nalefHamzabelow-ar.fina.rlig\nalefMadda-ar.fina.rlig\nalefWasla-ar.fina.rlig\nalefTwoabove-ar.fina.rlig\nalefThreeabove-ar.fina.rlig\nalefWavyhamzaabove-ar.fina.rlig\nalefWavyhamzabelow-ar.fina.rlig\nhighhamzaAlef-ar.fina.rlig\nalefFathatan-ar.fina.rlig\nlam-ar.medi.rlig\nlamVabove-ar.medi.rlig\nlamDotabove-ar.medi.rlig\nlamThreedotsabove-ar.medi.rlig\nlamThreedotsbelow-ar.medi.rlig\nlamDoublebar-ar.medi.rlig\nlamBar-ar.medi.rlig ];\n\n# Prefix: Languagesystems\n# automatic\nlanguagesystem DFLT dflt;\n\nlanguagesystem arab dflt;\n\nlanguagesystem latn dflt;\nlanguagesystem latn ROM;\nlanguagesystem latn MOL;\nlanguagesystem latn PLK;\nlanguagesystem latn NLD;\n\nlanguagesystem cyrl dflt;\nlanguagesystem cyrl BGR;\nlanguagesystem cyrl SRB;\n\nlanguagesystem hebr dflt;\n\n\nfeature aalt {\n# automatic\nfeature calt;\nfeature locl;\nfeature subs;\nfeature sinf;\nfeature sups;\nfeature numr;\nfeature dnom;\nfeature frac;\nfeature ordn;\nfeature case;\nfeature ss02;\nfeature zero;\nfeature ss19;\nfeature rclt;\nfeature zero;\nfeature ss20;\n\n} aalt;\n\nfeature calt {\n### Less - It is convenient to have this lookup set at the start. \nlookup less_asciitilde {\n  ignore sub less less' asciitilde;\n  ignore sub less' asciitilde asciitilde asciitilde;\n  sub less_asciitilde.liga   asciitilde'  by LIG;\n  sub less'                  asciitilde   by less_asciitilde.liga;\n} less_asciitilde;\n\nlookup less_asciitilde_asciitilde {\n  sub less_asciitilde_asciitilde.liga  LIG  asciitilde'  by LIG;\n  sub less_asciitilde.liga'            LIG  asciitilde   by less_asciitilde_asciitilde.liga;\n} less_asciitilde_asciitilde;\n\nlookup less_asterisk {\n  ignore sub less less' asterisk;\n  ignore sub less' asterisk asterisk;\n  sub less_asterisk.liga   asterisk'  by LIG;\n  sub less'                asterisk   by less_asterisk.liga;\n} less_asterisk;\n\nlookup less_dollar {\n  ignore sub less less' dollar;\n  ignore sub less' dollar dollar;\n  sub less_dollar.liga dollar' by LIG;\n  sub less'            dollar  by less_dollar.liga;\n} less_dollar;\n\nlookup less_equal {\n  ignore sub less less' equal;\n  ignore sub less' equal equal;\n  ignore sub parenleft question less' equal;\n  ignore sub equal less' equal;\n  ignore sub less' equal [less greater bar colon exclam slash];\n  sub less_equal.liga   equal'  by LIG;\n  sub less'             equal   by less_equal.liga;\n} less_equal;\n\nlookup less_greater {\n  ignore sub less less' greater;\n  ignore sub less' greater greater;\n  sub less_greater.liga   greater'  by LIG;\n  sub less'               greater   by less_greater.liga;\n} less_greater;\n\nlookup less_plus {\n  ignore sub less less' plus;\n  ignore sub less' plus plus;\n  sub less_plus.liga  plus'  by LIG;\n  sub less'           plus   by less_plus.liga;\n} less_plus;\n\nlookup less_slash {\n  ignore sub less less' slash;\n  ignore sub less' slash slash;\n  sub less_slash.liga slash'  by LIG;\n  sub less'           slash   by less_slash.liga;\n} less_slash;\n\nlookup less_bar {\n  ignore sub less less' bar;\n  ignore sub less' bar bar bar bar;\n  ignore sub less' bar bar greater;\n  sub less_bar.liga bar'  by LIG;\n  sub less'         bar   by less_bar.liga;\n} less_bar;\n\nlookup less_bar_bar {\n  sub less_bar_bar.liga LIG   bar'  by LIG;\n  sub less_bar.liga'    LIG   bar   by less_bar_bar.liga;\n} less_bar_bar;\n\nlookup less_bar_bar_bar {\n  sub less_bar_bar_bar.liga LIG   LIG   bar'  by LIG;\n  sub less_bar_bar.liga'    LIG   LIG   bar   by less_bar_bar_bar.liga;\n} less_bar_bar_bar;\n\n# generally it is useful to have the duplicating sequences in a row. This avoids potential badness. \n\nlookup less_less {\n  ignore sub less less' less;\n  ignore sub less' less less less;\n  ignore sub less' less [asterisk plus dollar];\n  ignore sub [hyphen equal] less' less;\n  ignore sub less' less hyphen;\n  ignore sub less' less equal [equal less greater bar colon exclam slash];\n  ignore sub less' less less [asterisk plus dollar];\n  sub less_less.liga  less'  by LIG;\n  sub less'           less   by less_less.liga;\n} less_less;\n\nlookup less_less_less {\n  sub less_less_less.liga   LIG  less'  by LIG;\n  sub less_less.liga'  LIG  less   by less_less_less.liga;\n} less_less_less;\n\nlookup less_asciitilde_greater {\n  ignore sub less_asciitilde.liga' LIG greater greater;\n  sub less_asciitilde_greater.liga  LIG  greater'  by LIG;\n  sub less_asciitilde.liga'         LIG  greater   by less_asciitilde_greater.liga;\n} less_asciitilde_greater;\n\nlookup less_asterisk_greater {\n  sub less_asterisk_greater.liga  LIG  greater'  by LIG;\n  sub less_asterisk.liga'       LIG  greater  by less_asterisk_greater.liga;\n} less_asterisk_greater;\n\nlookup less_dollar_greater {\n  sub less_dollar_greater.liga   LIG    greater'  by LIG;\n  sub less_dollar.liga'          LIG    greater   by less_dollar_greater.liga;\n} less_dollar_greater;\n\nlookup less_plus_greater {\n  sub less_plus_greater.liga  LIG  greater'  by LIG;\n  sub less_plus.liga'         LIG  greater   by less_plus_greater.liga;\n} less_plus_greater;\n\nlookup less_slash_greater {\n  ignore sub less_slash.liga' LIG greater greater;\n  sub less_slash_greater.liga LIG   greater'  by LIG;\n  sub less_slash.liga'        LIG   greater   by less_slash_greater.liga;\n} less_slash_greater;\n\nlookup less_bar_greater {\n  ignore sub less_bar.liga' LIG greater greater;\n  sub less_bar_greater.liga LIG   greater'  by LIG;\n  sub less_bar.liga'        LIG   greater   by less_bar_greater.liga;\n} less_bar_greater;\n\nlookup less_exclam_hyphen_hyphen {\n  ignore sub less less' exclam hyphen hyphen;\n  ignore sub less' exclam hyphen hyphen hyphen;\n  ignore sub parenleft question less' exclam hyphen hyphen;\n  sub less_exclam_hyphen_hyphen.liga  LIG     LIG       hyphen' by LIG;\n  sub less_exclam_hyphen_hyphen.liga  LIG     hyphen'   hyphen  by LIG;\n  sub less_exclam_hyphen_hyphen.liga  exclam' hyphen    hyphen  by LIG;\n  sub less'                           exclam  hyphen    hyphen  by less_exclam_hyphen_hyphen.liga;\n} less_exclam_hyphen_hyphen;\n\n\n### Ampersand\nlookup ampersand_ampersand {\n  ignore sub ampersand ampersand' ampersand;\n  ignore sub ampersand' ampersand ampersand;\n  sub ampersand_ampersand.liga  ampersand'  by LIG;\n  sub ampersand'                ampersand   by ampersand_ampersand.liga;\n} ampersand_ampersand;\n\n\n### Asciicircum\nlookup asciicircum_equal {\n  ignore sub asciicircum asciicircum' equal;\n  ignore sub asciicircum' equal equal;\n  sub asciicircum_equal.liga    equal'    by LIG;\n  sub asciicircum'              equal     by asciicircum_equal.liga;\n} asciicircum_equal;\n\n\n### Asciitilde\nlookup asciitilde_asciitilde {\n  ignore sub asciitilde asciitilde' asciitilde;\n  ignore sub asciitilde' asciitilde asciitilde;\n  sub asciitilde_asciitilde.liga  asciitilde'   by LIG;\n  sub asciitilde'                 asciitilde    by asciitilde_asciitilde.liga;\n} asciitilde_asciitilde;\n\nlookup asciitilde_at {\n  ignore sub asciitilde asciitilde' at;\n  ignore sub asciitilde' at at;\n  sub asciitilde_at.liga  at'   by LIG;\n  sub asciitilde'         at    by asciitilde_at.liga;\n} asciitilde_at;\n\nlookup asciitilde_greater {\n  ignore sub asciitilde asciitilde' greater;\n  ignore sub asciitilde' greater greater;\n  sub asciitilde_greater.liga greater'  by LIG;\n  sub asciitilde'             greater   by asciitilde_greater.liga;\n} asciitilde_greater;\n\nlookup asciitilde_hyphen {\n  ignore sub asciitilde asciitilde' hyphen;\n  ignore sub asciitilde' hyphen hyphen;\n  sub asciitilde_hyphen.liga  hyphen'   by LIG;\n  sub asciitilde'             hyphen    by asciitilde_hyphen.liga;\n} asciitilde_hyphen;\n\nlookup asciitilde_asciitilde_greater {\n  ignore sub asciitilde_asciitilde.liga' LIG greater greater;\n  sub asciitilde_asciitilde_greater.liga  LIG  greater'  by LIG;\n  sub asciitilde_asciitilde.liga'         LIG  greater   by asciitilde_asciitilde_greater.liga;\n} asciitilde_asciitilde_greater;\n\nlookup asciitilde_equal {\n  ignore sub asciitilde asciitilde' equal;\n  ignore sub asciitilde' equal equal;\n  sub asciitilde_equal.liga  equal'   by LIG;\n  sub asciitilde'             equal    by asciitilde_equal.liga;\n} asciitilde_equal;\n\n\n### Asterisk\nlookup asterisk_asterisk {\n  ignore sub asterisk asterisk' asterisk;\n  ignore sub asterisk' asterisk asterisk asterisk;\n  ignore sub slash asterisk' asterisk;\n  ignore sub asterisk' asterisk slash;\n  sub asterisk_asterisk.liga    asterisk'   by LIG;\n  sub asterisk'                 asterisk    by asterisk_asterisk.liga;\n} asterisk_asterisk;\n\nlookup asterisk_asterisk_asterisk {\n  ignore sub asterisk_asterisk.liga' LIG asterisk slash;\n  sub asterisk_asterisk_asterisk.liga LIG  asterisk'  by LIG;\n  sub asterisk_asterisk.liga'         LIG  asterisk   by asterisk_asterisk_asterisk.liga;\n} asterisk_asterisk_asterisk;\n\nlookup asterisk_greater {\n  ignore sub asterisk asterisk' greater;\n  ignore sub asterisk' greater greater;\n  sub asterisk_greater.liga   greater'  by LIG;\n  sub asterisk'               greater   by asterisk_greater.liga;\n} asterisk_greater;\n\nlookup asterisk_slash {\n  ignore sub asterisk asterisk' slash;\n  ignore sub asterisk' slash slash;\n  ignore sub slash asterisk' slash;\n  ignore sub asterisk' slash asterisk;\n  sub asterisk_slash.liga    slash'   by LIG;\n  sub asterisk'              slash    by asterisk_slash.liga;\n} asterisk_slash;\n\nlookup asterisk_parenright {\n  ignore sub asterisk asterisk' parenright;\n  ignore sub asterisk' parenright parenright;\n  sub asterisk_parenright.liga  parenright' by LIG;\n  sub asterisk'                 parenright  by asterisk_parenright.liga;\n} asterisk_parenright;\n\n### Backslash\nlookup backslash_slash {\n  ignore sub @NotSpace backslash' slash;\n  ignore sub backslash' slash @NotSpace;\n  sub backslash_slash.liga  slash'  by LIG;\n  sub backslash'  slash  by backslash_slash.liga;\n} backslash_slash;\n\nlookup backslash_backslash {\n  ignore sub backslash backslash' backslash;\n  ignore sub backslash' backslash backslash;\n  sub backslash_backslash.liga  backslash'  by LIG;\n  sub backslash'  backslash  by backslash_backslash.liga;\n} backslash_backslash;\n\n\n### Bar\nlookup bar_bar {\n  ignore sub bar bar' bar;\n  ignore sub bar' bar bar bar;\n  ignore sub [hyphen equal] bar' bar;\n  ignore sub bar' bar [hyphen equal];\n  ignore sub bar' bar bar [hyphen equal];\n  ignore sub bar' bar equal [equal less greater bar colon exclam slash];\n  ignore sub bar bar' bar greater;\n  ignore sub [less greater] bar' bar [less greater];\n  ignore sub less bar' bar;\n  ignore sub less bar bar';\n  sub bar_bar.liga  bar' by LIG;\n  sub bar'          bar  by bar_bar.liga;\n} bar_bar;\n\nlookup bar_bar_bar {\n  sub bar_bar_bar.liga  LIG bar'  by LIG;\n  sub bar_bar.liga'     LIG bar   by bar_bar_bar.liga;\n} bar_bar_bar;\n\nlookup bar_greater {\n  ignore sub bar bar' greater;\n  ignore sub bar' greater greater;\n  ignore sub less bar bar' greater;\n  sub bar_greater.liga  greater' by LIG;\n  sub bar'              greater  by bar_greater.liga;\n} bar_greater;\n\nlookup bar_braceright {\n  ignore sub bar bar' braceright;\n  ignore sub bar' braceright braceright;\n  ignore sub braceleft bar' braceright;\n  sub bar_braceright.liga braceright' by LIG;\n  sub bar'                braceright  by bar_braceright.liga;\n} bar_braceright;\n\nlookup bar_bracketright {\n  ignore sub bar bar' bracketright;\n  ignore sub bar' bracketright bracketright;\n  ignore sub bracketleft bar' bracketright;\n  sub bar_bracketright.liga bracketright' by LIG;\n  sub bar'                  bracketright  by bar_bracketright.liga;\n} bar_bracketright;\n\nlookup bar_bar_greater {\n  ignore sub bar_bar.liga' LIG greater greater;\n  sub bar_bar_greater.liga  LIG   greater' by LIG;\n  sub bar_bar.liga'         LIG   greater  by bar_bar_greater.liga;\n} bar_bar_greater;\n\nlookup bar_bar_bar_greater {\n  ignore sub bar_bar_bar.liga' LIG LIG greater greater;\n  sub bar_bar_bar_greater.liga LIG LIG greater'  by LIG;\n  sub bar_bar_bar.liga' LIG LIG greater  by bar_bar_bar_greater.liga;\n\n} bar_bar_bar_greater;\n\n\n### Brace left\nlookup braceleft_bar {\n  ignore sub braceleft braceleft' bar;\n  ignore sub braceleft' bar bar;\n  ignore sub braceleft' bar braceright;\n  sub braceleft_bar.liga  bar'  by LIG;\n  sub braceleft'          bar   by braceleft_bar.liga;\n} braceleft_bar;\n\n### Brace right\nlookup braceright_numbersign {\n  ignore sub braceright braceright' numbersign;\n  ignore sub braceright' numbersign numbersign;\n  sub braceright_numbersign.liga  numbersign'  by LIG;\n  sub braceright'                 numbersign   by braceright_numbersign.liga;\n} braceright_numbersign;\n\n### Bracket left\nlookup bracketleft_bar {\n  ignore sub bracketleft bracketleft' bar;\n  ignore sub bracketleft' bar bar;\n  ignore sub bracketleft' bar bracketright;\n  sub bracketleft_bar.liga  bar' by LIG;\n  sub bracketleft'          bar  by bracketleft_bar.liga;\n} bracketleft_bar;\n\n\n### Bracket right\nlookup bracketright_numbersign {\n  ignore sub bracketright bracketright' numbersign;\n  ignore sub bracketright' numbersign numbersign;\n  sub bracketright_numbersign.liga  numbersign'  by LIG;\n  sub bracketright'                 numbersign   by bracketright_numbersign.liga;\n} bracketright_numbersign;\n\n\n### Colon\nlookup colon_colon {\n  ignore sub colon colon' colon;\n  ignore sub colon' colon colon colon;\n  ignore sub parenleft question colon' colon;\n  ignore sub colon' colon [less greater];\n  ignore sub [less greater] colon' colon;\n  sub colon_colon.liga  colon'  by LIG;\n  sub colon'            colon   by colon_colon.liga;\n} colon_colon;\n\nlookup colon_colon_colon {\n  sub colon_colon_colon.liga   LIG   colon' by LIG;\n  sub colon_colon.liga'        LIG   colon  by colon_colon_colon.liga;\n} colon_colon_colon;\n\nlookup colon_equal {\n  ignore sub colon colon' equal;\n  ignore sub colon' equal equal;\n  ignore sub parenleft question colon' equal;\n  ignore sub equal colon' equal;\n  sub colon_equal.liga  equal'  by LIG;\n  sub colon'            equal   by colon_equal.liga;\n} colon_equal;\n\nlookup colon_colon_equal {\n  ignore sub colon_colon.liga' LIG equal equal;\n  sub colon_colon_equal.liga  LIG   equal'  by LIG;\n  sub colon_colon.liga'       LIG   equal   by colon_colon_equal.liga;\n} colon_colon_equal;\n\nlookup colon_slash_slash {\n  ignore sub colon colon' slash slash;\n  ignore sub colon' slash slash slash;\n  sub colon_slash_slash.liga  LIG     slash' by LIG;\n  sub colon_slash_slash.liga  slash'  slash  by LIG;\n  sub colon'                  slash   slash  by colon_slash_slash.liga;\n} colon_slash_slash;\n\n\n## Dollar\nlookup dollar_greater {\n  ignore sub dollar dollar' greater;\n  ignore sub dollar' greater greater;\n  sub dollar_greater.liga greater'  by LIG;\n  sub dollar' greater  by dollar_greater.liga;\n} dollar_greater;\n\n\n### Exclam (for equal see below)\nlookup exclam_equal {\n  ignore sub exclam exclam' equal;\n  ignore sub exclam' equal equal equal;\n  ignore sub parenleft question exclam' equal;\n  ignore sub parenleft question less exclam' equal;\n  ignore sub equal exclam' equal;\n  sub exclam_equal.liga equal'  by LIG;\n  sub exclam'           equal   by exclam_equal.liga;\n} exclam_equal;\n\nlookup exclam_equal_equal {\n  sub exclam_equal_equal.liga LIG   equal'  by LIG;\n  sub exclam_equal.liga' LIG   equal  by exclam_equal_equal.liga;\n} exclam_equal_equal;\n\nlookup exclam_exclam {\n  ignore sub exclam exclam' exclam;\n  ignore sub exclam' exclam exclam;\n  ignore sub parenleft question exclam' exclam;\n  ignore sub parenleft question less exclam' exclam;\n  sub exclam_exclam.liga  exclam' by LIG;\n  sub exclam'             exclam  by exclam_exclam.liga;\n} exclam_exclam;\n\nlookup exclam_exclam_period {\n  ignore sub exclam_exclam.liga' LIG period period;\n  sub exclam_exclam_period.liga LIG  period' by LIG;\n  sub exclam_exclam.liga'       LIG  period  by exclam_exclam_period.liga;\n} exclam_exclam_period;\n\nlookup exclam_period {\n  ignore sub exclam exclam' period;\n  ignore sub exclam' period period;\n  sub exclam_period.liga  period'  by LIG;\n  sub exclam'             period   by exclam_period.liga;\n} exclam_period;\n\nlookup exclam_colon {\n  ignore sub exclam exclam' colon;\n  ignore sub exclam' colon colon;\n  sub exclam_colon.liga  \tcolon'  by LIG;\n  sub exclam'               colon   by exclam_colon.liga;\n} exclam_colon;\n\n## Equal - Made sense to shift this below the exclam to avoid issues\nlookup equal_equal {\n  ignore sub equal equal' equal;\n  ignore sub equal' equal equal equal;\n  ignore sub parenleft question equal' equal;\n  ignore sub parenleft question less equal' equal;\n  ignore sub less question equal' equal;\n  ignore sub bracketleft equal' equal;\n  ignore sub equal' equal bracketright;\n  ignore sub equal [colon exclam] equal' equal;\n  ignore sub [less greater bar slash] equal' equal;\n  ignore sub equal' equal [less greater bar slash] ;\n  ignore sub equal' equal [colon exclam] equal;\n  sub equal_equal.liga  equal'  by LIG;\n  sub equal'  equal  by equal_equal.liga;\n} equal_equal;\n\nlookup equal_equal_equal {\n  sub equal_equal_equal.liga  LIG     equal' by LIG;\n  sub equal_equal.liga'       LIG   equal  by equal_equal_equal.liga;\n} equal_equal_equal;\n\n### Hyphen\nlookup hyphen_asciitilde {\n  ignore sub hyphen hyphen' asciitilde;\n  ignore sub hyphen' asciitilde asciitilde;\n  sub hyphen_asciitilde.liga    asciitilde'  by LIG;\n  sub hyphen'                   asciitilde   by hyphen_asciitilde.liga;\n} hyphen_asciitilde;\n\nlookup hyphen_hyphen {\n  ignore sub hyphen hyphen' hyphen;\n  ignore sub hyphen' hyphen hyphen hyphen;\n  ignore sub [less greater bar] hyphen' hyphen;\n  ignore sub hyphen' hyphen [less greater bar];\n  sub hyphen_hyphen.liga   hyphen'  by LIG;\n  sub hyphen'               hyphen   by hyphen_hyphen.liga;\n} hyphen_hyphen;\n\nlookup hyphen_hyphen_hyphen {\n  ignore sub hyphen_hyphen.liga' LIG hyphen [less greater bar];\n  sub hyphen_hyphen_hyphen.liga   LIG    hyphen'   by LIG;\n  sub hyphen_hyphen.liga'         LIG    hyphen    by hyphen_hyphen_hyphen.liga;\n} hyphen_hyphen_hyphen;\n\n\n### Greater\nlookup greater_greater {\n  ignore sub greater greater' greater;\n  ignore sub greater' greater greater greater;\n  ignore sub [asterisk plus dollar] greater' greater;\n  ignore sub [hyphen equal] greater' greater;\n  ignore sub greater' greater hyphen;\n  ignore sub greater' greater equal [equal less greater bar colon exclam slash];\n  sub greater_greater.liga  greater'  by LIG;\n  sub greater'              greater   by greater_greater.liga;\n} greater_greater;\n\nlookup greater_greater_greater {\n  sub greater_greater_greater.liga  LIG   greater'  by LIG;\n  sub greater_greater.liga'         LIG   greater   by greater_greater_greater.liga;\n} greater_greater_greater;\n\nlookup greater_equal {\n  ignore sub greater greater' equal;\n  ignore sub greater' equal equal;\n  ignore sub equal greater' equal;\n  ignore sub greater' equal [less greater bar colon exclam slash];\n  sub greater_equal.liga  equal'  by LIG;\n  sub greater'            equal   by greater_equal.liga;\n} greater_equal;\n\n### Less moved to top of CALT\n\n### Numbersign\nlookup numbersign_braceleft {\n  ignore sub numbersign numbersign' braceleft;\n  ignore sub numbersign' braceleft braceleft;\n  sub numbersign_braceleft.liga braceleft'  by LIG;\n  sub numbersign'               braceleft   by numbersign_braceleft.liga;\n} numbersign_braceleft;\n\nlookup numbersign_bracketleft {\n  ignore sub numbersign numbersign' bracketleft;\n  ignore sub numbersign' bracketleft bracketleft;\n  sub numbersign_bracketleft.liga bracketleft'  by LIG;\n  sub numbersign'                 bracketleft   by numbersign_bracketleft.liga;\n} numbersign_bracketleft;\n\nlookup numbersign_colon {\n  ignore sub numbersign numbersign' colon;\n  ignore sub numbersign' colon colon;\n  sub numbersign_colon.liga colon'  by LIG;\n  sub numbersign'           colon   by numbersign_colon.liga;\n} numbersign_colon;\n\nlookup numbersign_equal {\n  ignore sub numbersign numbersign' equal;\n  ignore sub numbersign' equal equal;\n  sub numbersign_equal.liga equal'  by LIG;\n  sub numbersign'           equal   by numbersign_equal.liga;\n} numbersign_equal;\n\nlookup numbersign_exclam {\n  ignore sub numbersign numbersign' exclam;\n  ignore sub numbersign' exclam exclam;\n  sub numbersign_exclam.liga  exclam'  by LIG;\n  sub numbersign'             exclam   by numbersign_exclam.liga;\n} numbersign_exclam;\n\nlookup numbersign_parenleft {\n  ignore sub numbersign numbersign' parenleft;\n  ignore sub numbersign' parenleft parenleft;\n  sub numbersign_parenleft.liga parenleft'  by LIG;\n  sub numbersign'               parenleft   by numbersign_parenleft.liga;\n} numbersign_parenleft;\n\nlookup numbersign_question {\n  ignore sub numbersign numbersign' question;\n  ignore sub numbersign' question question;\n  sub numbersign_question.liga  question'  by LIG;\n  sub numbersign'               question   by numbersign_question.liga;\n} numbersign_question;\n\nlookup numbersign_underscore {\n  ignore sub numbersign numbersign' underscore;\n  ignore sub numbersign' underscore underscore;\n  sub numbersign_underscore.liga  underscore'  by LIG;\n  sub numbersign'                 underscore   by numbersign_underscore.liga;\n} numbersign_underscore;\n\nlookup numbersign_underscore_parenleft {\n  ignore sub numbersign_underscore.liga' LIG parenleft parenleft;\n  sub numbersign_underscore_parenleft.liga  LIG  parenleft'  by LIG;\n  sub numbersign_underscore.liga'           LIG  parenleft   by numbersign_underscore_parenleft.liga;\n} numbersign_underscore_parenleft;\n\n\n### Paren left\nlookup parenleft_asterisk {\n  ignore sub parenleft  parenleft'  asterisk;\n  ignore sub parenleft' asterisk    asterisk;\n  sub parenleft_asterisk.liga asterisk'  by LIG;\n  sub parenleft'              asterisk   by parenleft_asterisk.liga;\n} parenleft_asterisk;\n\n\n### Percent\nlookup percent_percent {\n  ignore sub percent percent' percent;\n  ignore sub percent' percent percent;\n  sub percent_percent.liga  percent'  by LIG;\n  sub percent'              percent   by percent_percent.liga;\n} percent_percent;\n\n\n### Period\nlookup period_equal {\n  ignore sub period period' equal;\n  ignore sub period' equal equal;\n  sub period_equal.liga equal'  by LIG;\n  sub period'           equal   by period_equal.liga;\n} period_equal;\n\nlookup period_period {\n  ignore sub period period' period;\n  ignore sub period' period period period;\n  sub period_period.liga period'  by LIG;\n  sub period'            period   by period_period.liga;\n} period_period;\n\nlookup period_period_period {\n  sub period_period_period.liga LIG  period'  by LIG;\n  sub period_period.liga'       LIG  period   by period_period_period.liga;\n} period_period_period;\n\nlookup period_question {\n  ignore sub period period' question;\n  ignore sub period' question question;\n  sub period_question.liga  question'  by LIG;\n  sub period'               question   by period_question.liga;\n} period_question;\n\nlookup period_hyphen {\n  ignore sub period period' hyphen;\n  ignore sub period' hyphen hyphen;\n  sub period_hyphen.liga  hyphen'  by LIG;\n  sub period'               hyphen   by period_hyphen.liga;\n} period_hyphen;\n\nlookup period_period_equal {\n  ignore sub period_period.liga' LIG equal equal;\n  sub period_period_equal.liga  LIG  equal'  by LIG;\n  sub period_period.liga'       LIG  equal   by period_period_equal.liga;\n} period_period_equal;\n\nlookup period_period_less {\n  ignore sub period_period.liga' LIG less less;\n  sub period_period_less.liga  LIG  less'  by LIG;\n  sub period_period.liga'      LIG  less   by period_period_less.liga;\n} period_period_less;\n\n\n### Plus\nlookup plus_greater {\n  ignore sub plus plus' greater;\n  ignore sub plus' greater greater;\n  sub plus_greater.liga   greater'  by LIG;\n  sub plus'               greater   by plus_greater.liga;\n} plus_greater;\n\nlookup plus_plus {\n  ignore sub plus plus' plus;\n  ignore sub plus' plus plus plus;\n  sub plus_plus.liga  plus'  by LIG;\n  sub plus'           plus   by plus_plus.liga;\n} plus_plus;\n\nlookup plus_plus_plus {\n  ignore sub plus_plus.liga' LIG plus plus;\n  sub plus_plus_plus.liga LIG  plus'  by LIG;\n  sub plus_plus.liga' LIG  plus  by plus_plus_plus.liga;\n} plus_plus_plus;\n\n### Question\nlookup question_equal {\n  ignore sub question question' equal;\n  ignore sub question' equal equal;\n  ignore sub parenleft question' equal;\n  ignore sub less question' equal;\n  sub question_equal.liga equal'  by LIG;\n  sub question'           equal   by question_equal.liga;\n} question_equal;\n\nlookup question_period {\n  ignore sub question question' period;\n  ignore sub question' period period;\n  sub question_period.liga  period'  by LIG;\n  sub question'             period   by question_period.liga;\n} question_period;\n\nlookup question_question {\n  ignore sub question question' question;\n  ignore sub question' question question;\n  sub question_question.liga  question'  by LIG;\n  sub question'               question   by question_question.liga;\n} question_question;\n\nlookup question_question_equal {\n  sub question_question_equal.liga  LIG equal'  by LIG;\n  sub question_question.liga'       LIG equal   by question_question_equal.liga;\n} question_question_equal;\n\nlookup question_colon {\n  ignore sub question question' colon;\n  ignore sub question' colon colon;\n  sub question_colon.liga  colon'  by LIG;\n  sub question'               colon   by question_colon.liga;\n} question_colon;\n\n### Semicolon\nlookup semicolon_semicolon {\n  ignore sub semicolon semicolon' semicolon;\n  ignore sub semicolon' semicolon semicolon;\n  sub semicolon_semicolon.liga  semicolon'  by LIG;\n  sub semicolon'                semicolon   by semicolon_semicolon.liga;\n} semicolon_semicolon;\n\n\n### Slash\nlookup slash_asterisk {\n  ignore sub slash slash' asterisk;\n  ignore sub slash' asterisk asterisk;\n  ignore sub slash' asterisk slash;\n  ignore sub asterisk slash' asterisk;\n  sub slash_asterisk.liga asterisk'  by LIG;\n  sub slash'              asterisk   by slash_asterisk.liga;\n} slash_asterisk;\n\nlookup slash_greater {\n  ignore sub slash slash' greater;\n  ignore sub slash' greater greater;\n  sub slash_greater.liga  greater'  by LIG;\n  sub slash'              greater   by slash_greater.liga;\n} slash_greater;\n\nlookup slash_slash {\n  ignore sub slash slash' slash;\n  ignore sub slash' slash slash slash;\n  ignore sub equal slash' slash;\n  ignore sub slash' slash equal;\n  sub slash_slash.liga  slash'  by LIG;\n  sub slash'            slash   by slash_slash.liga;\n} slash_slash;\n\nlookup slash_slash_slash {\n  sub slash_slash_slash.liga  LIG   slash'  by LIG;\n  sub slash_slash.liga'       LIG   slash   by slash_slash_slash.liga;\n} slash_slash_slash;\n\nlookup slash_backslash {\n  ignore sub @NotSpace slash' backslash;\n  ignore sub slash' backslash @NotSpace;\n  sub slash_backslash.liga  backslash'  by LIG;\n  sub slash'                backslash   by slash_backslash.liga;\n} slash_backslash;\n\n\n### WWW\nlookup w_w_w {\n  ignore sub w w' w w;\n  ignore sub w' w w w;\n  sub w_w_w.liga  LIG  w' by LIG;\n  sub w_w_w.liga  w'   w  by LIG;\n  sub w'          w    w  by w_w_w.liga;\n} w_w_w;\n\n\n\n### Vertical-align colon/greater/less\n\n# :> :< >: <:\n# :>: :<:\n# <:> >:< <:< >:>\n# <::> <::< >::< >::>\n# <:::> <:::< >:::< >:::>\n# <::::> <::::< >::::< >::::>\n\nlookup center {\n    #574 :>= :<=\n    ignore sub colon' [less greater] [equal hyphen];\n    ignore sub colon colon' [less greater]; # ignores the :::< case\n\n    # middles & ends\n    sub [less.center greater.center colon.center] colon' by colon.center;\n    sub colon.center [less greater]' by [less.center greater.center];\n\n    # starts\n    sub [less greater]' colon by [less.center greater.center];\n    sub colon' [less greater] by colon.center;\n} center;\n\nlookup equal_arrows {\n  # Disable |||\n  ignore sub bar bar' bar equal;\n  ignore sub bar bar' equal;\n  ignore sub [equal_start.seq equal_middle.seq] bar' bar bar;\n\n  # equal middle & end\n  sub [less_equal_start.seq less_equal_middle.seq greater_equal_start.seq greater_equal_middle.seq bar_equal_start.seq bar_equal_middle.seq slash_equal_start.seq slash_equal_middle.seq colon_equal_middle.seq exclam_equal_middle.seq equal_start.seq equal_middle.seq] equal' [equal less greater bar slash colon exclam] by equal_middle.seq;\n\n  sub [less_less_equal_start.seq less_less_equal_middle.seq greater_greater_equal_start.seq greater_greater_equal_middle.seq  bar_bar_equal_start.seq bar_bar_equal_middle.seq slash_slash_equal_start.seq slash_slash_equal_middle.seq] LIG equal' [equal less greater bar slash colon exclam] by equal_middle.seq;\n\n  sub [less_equal_start.seq less_equal_middle.seq greater_equal_start.seq greater_equal_middle.seq bar_equal_start.seq bar_equal_middle.seq slash_equal_start.seq slash_equal_middle.seq colon_equal_middle.seq exclam_equal_middle.seq equal_start.seq equal_middle.seq] equal' by equal_end.seq;\n\n  sub [less_less_equal_start.seq less_less_equal_middle.seq greater_greater_equal_start.seq greater_greater_equal_middle.seq bar_bar_equal_start.seq bar_bar_equal_middle.seq slash_slash_equal_start.seq slash_slash_equal_middle.seq] LIG equal' by equal_end.seq;\n\n\n  # double middles\n  sub [equal_start.seq equal_middle.seq] less_less_equal_middle.seq       less'    equal by LIG;\n  sub [equal_start.seq equal_middle.seq] less'                            less     equal by less_less_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] greater_greater_equal_middle.seq greater' equal by LIG;\n  sub [equal_start.seq equal_middle.seq] greater'                         greater  equal by greater_greater_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] bar_bar_equal_middle.seq         bar'     equal by LIG;\n  sub [equal_start.seq equal_middle.seq] bar'                             bar      equal by bar_bar_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] slash_slash_equal_middle.seq     slash'   equal by LIG;\n  sub [equal_start.seq equal_middle.seq] slash'                           slash    equal by slash_slash_equal_middle.seq;\n\n  # single middles\n  sub [equal_start.seq equal_middle.seq] less'    equal by less_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] greater' equal by greater_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] bar'     equal by bar_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] slash'   equal by slash_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] colon'   equal by colon_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] exclam'  equal by exclam_equal_middle.seq;\n\n  # double ends\n  sub [equal_start.seq equal_middle.seq] less_less_equal_end.seq        less'    by LIG;\n  sub [equal_start.seq equal_middle.seq] less'                          less     by less_less_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] greater_greater_equal_end.seq  greater' by LIG;\n  sub [equal_start.seq equal_middle.seq] greater'                       greater  by greater_greater_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] bar_bar_equal_end.seq          bar'     by LIG;\n  sub [equal_start.seq equal_middle.seq] bar'                           bar      by bar_bar_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] slash_slash_equal_end.seq      slash'   by LIG;\n  sub [equal_start.seq equal_middle.seq] slash'                         slash    by slash_slash_equal_end.seq;\n\n  # single ends\n  sub [equal_start.seq equal_middle.seq] less'    by less_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] greater' by greater_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] bar'     by bar_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] slash'   by slash_equal_end.seq;\n\n  # double beginnings\n  sub less_less_equal_start.seq       less'    equal by LIG;\n  sub less'                           less     equal by less_less_equal_start.seq;\n  sub greater_greater_equal_start.seq greater' equal by LIG;\n  sub greater'                        greater  equal by greater_greater_equal_start.seq;\n  sub bar_bar_equal_start.seq         bar'     equal by LIG;\n  sub bar'                            bar      equal by bar_bar_equal_start.seq;\n  sub slash_slash_equal_start.seq     slash'   equal by LIG;\n  sub slash'                          slash    equal by slash_slash_equal_start.seq;\n\n  # Disable >=< #548\n  sub greater' equal less [equal less] by greater_equal_start.seq;\n  ignore sub greater' equal less;\n  \n  # Disable =< #479 #468 #424 #406 #355 #305\n  sub equal' less [equal less] by equal_start.seq;\n\n  # Disable =/ #1056\n  sub equal'   slash [equal slash] by equal_start.seq; \n\n  # single beginnings\n  sub less'    equal [equal less greater bar slash colon exclam] by less_equal_start.seq; # disable >= <= as they're used in math\n  sub greater' equal [equal less greater bar slash colon exclam] by greater_equal_start.seq;\n  sub bar'     equal [equal less greater bar slash colon exclam] by bar_equal_start.seq; # disable |= \n  sub slash'   equal by slash_equal_start.seq;\n  sub equal'  [equal greater bar colon exclam] by equal_start.seq;\n\n} equal_arrows;\n\n### Arbitrary-length arrows #346\n\nlookup hyphen_arrows {\n  # Disable |||\n  ignore sub bar bar' bar hyphen;\n  ignore sub bar bar' hyphen;\n  ignore sub [hyphen_start.seq hyphen_middle.seq] bar' bar bar;\n\n  # hyphen middle & end\n  sub [less_hyphen_start.seq less_hyphen_middle.seq greater_hyphen_start.seq greater_hyphen_middle.seq bar_hyphen_start.seq bar_hyphen_middle.seq hyphen_start.seq hyphen_middle.seq] hyphen' [hyphen less greater bar] by hyphen_middle.seq;\n\n  sub [less_less_hyphen_start.seq less_less_hyphen_middle.seq greater_greater_hyphen_start.seq greater_greater_hyphen_middle.seq bar_bar_hyphen_start.seq bar_bar_hyphen_middle.seq] LIG hyphen' [hyphen less greater bar] by hyphen_middle.seq;\n\n  sub [less_hyphen_start.seq less_hyphen_middle.seq greater_hyphen_start.seq greater_hyphen_middle.seq bar_hyphen_start.seq bar_hyphen_middle.seq hyphen_start.seq hyphen_middle.seq] hyphen' by hyphen_end.seq;\n\n  sub [less_less_hyphen_start.seq less_less_hyphen_middle.seq greater_greater_hyphen_start.seq greater_greater_hyphen_middle.seq bar_bar_hyphen_start.seq bar_bar_hyphen_middle.seq] LIG hyphen' by hyphen_end.seq;\n\n  # double middles\n  sub [hyphen_start.seq hyphen_middle.seq] less_less_hyphen_middle.seq        less'    hyphen by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] less'                              less     hyphen by less_less_hyphen_middle.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] greater_greater_hyphen_middle.seq  greater' hyphen by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] greater'                           greater  hyphen by greater_greater_hyphen_middle.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] bar_bar_hyphen_middle.seq          bar'     hyphen by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] bar'                               bar      hyphen by bar_bar_hyphen_middle.seq;\n\n  # single middles\n  sub [hyphen_start.seq hyphen_middle.seq] less'    hyphen by less_hyphen_middle.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] greater' hyphen by greater_hyphen_middle.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] bar'     hyphen by bar_hyphen_middle.seq;\n\n  # double ends\n  sub [hyphen_start.seq hyphen_middle.seq] less_less_hyphen_end.seq       less'    by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] less'                          less     by less_less_hyphen_end.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] greater_greater_hyphen_end.seq greater' by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] greater'                       greater  by greater_greater_hyphen_end.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] bar_bar_hyphen_end.seq         bar'     by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] bar'                           bar      by bar_bar_hyphen_end.seq;\n\n  # single ends\n  sub [hyphen_start.seq hyphen_middle.seq] less'    by less_hyphen_end.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] greater' by greater_hyphen_end.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] bar'     by bar_hyphen_end.seq;\n\n  # double beginnings\n  sub less_less_hyphen_start.seq        less'    hyphen by LIG;\n  sub less'                             less     hyphen by less_less_hyphen_start.seq;\n  sub greater_greater_hyphen_start.seq  greater' hyphen by LIG;\n  sub greater'                          greater  hyphen by greater_greater_hyphen_start.seq;\n  sub bar_bar_hyphen_start.seq          bar'     hyphen by LIG;\n  sub bar'                              bar      hyphen by bar_bar_hyphen_start.seq;\n\n  # single beginnings\n  sub less'    hyphen by less_hyphen_start.seq;\n  sub greater' hyphen by greater_hyphen_start.seq;\n  sub bar'     hyphen by bar_hyphen_start.seq;\n  sub hyphen' [hyphen less greater bar] by hyphen_start.seq;\n} hyphen_arrows;\n\nlookup numbersigns {\n  # middle parts\n  sub [numbersign_start.seq numbersign_middle.seq] numbersign' numbersign by numbersign_middle.seq;\n\n  # ends\n  sub [numbersign_start.seq numbersign_middle.seq] numbersign' by numbersign_end.seq;\n  \n  # beginnings\n  sub numbersign' numbersign by numbersign_start.seq; \n} numbersigns;\n\nlookup underscores {\n  # middle parts\n  sub [underscore_start.seq underscore_middle.seq] bar' underscore by bar_underscore_middle.seq;\n\n  sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' bar underscore by underscore_middle.seq;\n  sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' underscore by underscore_middle.seq;\n\n  # ends\n  sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' by underscore_end.seq;\n  \n  # beginnings\n  sub underscore' bar underscore by underscore_start.seq; \n  sub underscore' underscore by underscore_start.seq; \n} underscores;\n\n#Other non-ligature bits\n\nsub dcaron' [lacute lcaron lcommaaccent ldot lslash b h k l hbar hcircumflex kcommaaccent @Uppercase] by dcaron.alt;\n\n\n  # Arabic test\nlookup arabiclong1 {\n  script arab;  \n  lookupflag IgnoreMarks RightToLeft;\n  sub @NRW' by @EXD;\n} arabiclong1;\n\nlookup arabiclong2 {\n  script arab;  \n  lookupflag IgnoreMarks RightToLeft;\n  sub @NRW' by @EXD;\n  sub behDotless-ar.alt' by behDotless-ar.alt LIG;\n  sub behDotless-ar.fina.alt' by behDotless-ar.fina.alt LIG;\n  sub beh-ar.alt' by beh-ar.alt LIG;\n  sub beh-ar.fina.alt' by beh-ar.fina.alt LIG;\n  sub peh-ar.alt' by peh-ar.alt LIG;\n  sub peh-ar.fina.alt' by peh-ar.fina.alt LIG;\n  sub beeh-ar.alt' by beeh-ar.alt LIG;\n  sub beeh-ar.fina.alt' by beeh-ar.fina.alt LIG;\n  sub beheh-ar.alt' by beheh-ar.alt LIG;\n  sub beheh-ar.fina.alt' by beheh-ar.fina.alt LIG;\n  sub teh-ar.alt' by teh-ar.alt LIG;\n  sub teh-ar.fina.alt' by teh-ar.fina.alt LIG;\n  sub tehRing-ar.alt' by tehRing-ar.alt LIG;\n  sub tehRing-ar.fina.alt' by tehRing-ar.fina.alt LIG;\n  sub tehThreedotsdown-ar.alt' by tehThreedotsdown-ar.alt LIG;\n  sub tehThreedotsdown-ar.fina.alt' by tehThreedotsdown-ar.fina.alt LIG;\n  sub theh-ar.alt' by theh-ar.alt LIG;\n  sub theh-ar.fina.alt' by theh-ar.fina.alt LIG;\n  sub tteh-ar.alt' by tteh-ar.alt LIG;\n  sub tteh-ar.fina.alt' by tteh-ar.fina.alt LIG;\n  sub tteheh-ar.alt' by tteheh-ar.alt LIG;\n  sub tteheh-ar.fina.alt' by tteheh-ar.fina.alt LIG;\n  sub teheh-ar.alt' by teheh-ar.alt LIG;\n  sub teheh-ar.fina.alt' by teheh-ar.fina.alt LIG;\n  sub behThreedotshorizontalbelow-ar.alt' by behThreedotshorizontalbelow-ar.alt LIG;\n  sub behThreedotshorizontalbelow-ar.fina.alt' by behThreedotshorizontalbelow-ar.fina.alt LIG;\n  sub behThreedotsupabove-ar.alt' by behThreedotsupabove-ar.alt LIG;\n  sub behThreedotsupabove-ar.fina.alt' by behThreedotsupabove-ar.fina.alt LIG;\n  sub behThreedotsupbelow-ar.alt' by behThreedotsupbelow-ar.alt LIG;\n  sub behThreedotsupbelow-ar.fina.alt' by behThreedotsupbelow-ar.fina.alt LIG;\n  sub tehThreedotsupbelow-ar.alt' by tehThreedotsupbelow-ar.alt LIG;\n  sub tehThreedotsupbelow-ar.fina.alt' by tehThreedotsupbelow-ar.fina.alt LIG;\n  sub behTwodotsbelowDotabove-ar.alt' by behTwodotsbelowDotabove-ar.alt LIG;\n  sub behTwodotsbelowDotabove-ar.fina.alt' by behTwodotsbelowDotabove-ar.fina.alt LIG;\n  sub behVinvertedbelow-ar.alt' by behVinvertedbelow-ar.alt LIG;\n  sub behVinvertedbelow-ar.fina.alt' by behVinvertedbelow-ar.fina.alt LIG;\n  sub behVabove-ar.alt' by behVabove-ar.alt LIG;\n  sub behVabove-ar.fina.alt' by behVabove-ar.fina.alt LIG;\n  sub behVbelow-ar.alt' by behVbelow-ar.alt LIG;\n  sub behVbelow-ar.fina.alt' by behVbelow-ar.fina.alt LIG;\n  sub behhamzaabove-ar.alt' by behhamzaabove-ar.alt LIG;\n  sub behhamzaabove-ar.fina.alt' by behhamzaabove-ar.fina.alt LIG;\n  sub seen-ar.alt' by seen-ar.alt LIG;\n  sub seen-ar.fina.alt' by seen-ar.fina.alt LIG;\n  sub seenDotbelowDotabove-ar.alt' by seenDotbelowDotabove-ar.alt LIG;\n  sub seenDotbelowDotabove-ar.fina.alt' by seenDotbelowDotabove-ar.fina.alt LIG;\n  sub seenThreedotsbelow-ar.alt' by seenThreedotsbelow-ar.alt LIG;\n  sub seenThreedotsbelow-ar.fina.alt' by seenThreedotsbelow-ar.fina.alt LIG;\n  sub sheen-ar.alt' by sheen-ar.alt LIG;\n  sub sheen-ar.fina.alt' by sheen-ar.fina.alt LIG;\n  sub sheenDotbelow-ar.alt' by sheenDotbelow-ar.alt LIG;\n  sub sheenDotbelow-ar.fina.alt' by sheenDotbelow-ar.fina.alt LIG;\n  sub seenThreedotsbelowthreedots-ar.alt' by seenThreedotsbelowthreedots-ar.alt LIG;\n  sub seenThreedotsbelowthreedots-ar.fina.alt' by seenThreedotsbelowthreedots-ar.fina.alt LIG;\n  sub sad-ar.alt' by sad-ar.alt LIG;\n  sub sad-ar.fina.alt' by sad-ar.fina.alt LIG;\n  sub sadTwodotsbelow-ar.alt' by sadTwodotsbelow-ar.alt LIG;\n  sub sadTwodotsbelow-ar.fina.alt' by sadTwodotsbelow-ar.fina.alt LIG;\n  sub sadThreedots-ar.alt' by sadThreedots-ar.alt LIG;\n  sub sadThreedots-ar.fina.alt' by sadThreedots-ar.fina.alt LIG;\n  sub sadThreedotsbelow-ar.alt' by sadThreedotsbelow-ar.alt LIG;\n  sub sadThreedotsbelow-ar.fina.alt' by sadThreedotsbelow-ar.fina.alt LIG;\n  sub dad-ar.alt' by dad-ar.alt LIG;\n  sub dad-ar.fina.alt' by dad-ar.fina.alt LIG;\n  sub dadDotbelow-ar.alt' by dadDotbelow-ar.alt LIG;\n  sub dadDotbelow-ar.fina.alt' by dadDotbelow-ar.fina.alt LIG;\n  sub feh-ar.alt' by feh-ar.alt LIG;\n  sub feh-ar.fina.alt' by feh-ar.fina.alt LIG;\n  sub veh-ar.alt' by veh-ar.alt LIG;\n  sub veh-ar.fina.alt' by veh-ar.fina.alt LIG;\n  sub fehDotless-ar.alt' by fehDotless-ar.alt LIG;\n  sub fehDotless-ar.fina.alt' by fehDotless-ar.fina.alt LIG;\n  sub fehDotMovedbelow-ar.alt' by fehDotMovedbelow-ar.alt LIG;\n  sub fehDotbelow-ar.alt' by fehDotbelow-ar.alt LIG;\n  sub fehDotbelow-ar.fina.alt' by fehDotbelow-ar.fina.alt LIG;\n  sub fehThreedotsbelow-ar.alt' by fehThreedotsbelow-ar.alt LIG;\n  sub fehThreedotsbelow-ar.fina.alt' by fehThreedotsbelow-ar.fina.alt LIG;\n  sub fehDotbelowThreedotsabove-ar.alt' by fehDotbelowThreedotsabove-ar.alt LIG;\n  sub fehDotbelowThreedotsabove-ar.fina.alt' by fehDotbelowThreedotsabove-ar.fina.alt LIG;\n  sub peheh-ar.alt' by peheh-ar.alt LIG;\n  sub peheh-ar.fina.alt' by peheh-ar.fina.alt LIG;\n  sub seenFourdotsabove-ar.alt' by seenFourdotsabove-ar.alt LIG;\n  sub seenFourdotsabove-ar.fina.alt' by seenFourdotsabove-ar.fina.alt LIG;\n  sub fehTwodotsbelow-ar.alt' by fehTwodotsbelow-ar.alt LIG;\n  sub fehTwodotsbelow-ar.fina.alt' by fehTwodotsbelow-ar.fina.alt LIG;\n  sub fehThreedotsupbelow-ar.alt' by fehThreedotsupbelow-ar.alt LIG;\n  sub fehThreedotsupbelow-ar.fina.alt' by fehThreedotsupbelow-ar.fina.alt LIG;\n  sub seenTwodotsverticalabove-ar.alt' by seenTwodotsverticalabove-ar.alt LIG;\n  sub seenTwodotsverticalabove-ar.fina.alt' by seenTwodotsverticalabove-ar.fina.alt LIG;\n  sub seenTahTwodotshorizontalabove-ar.alt' by seenTahTwodotshorizontalabove-ar.alt LIG;\n  sub seenTahTwodotshorizontalabove-ar.fina.alt' by seenTahTwodotshorizontalabove-ar.fina.alt LIG;\n  sub seenFourabove-ar.alt' by seenFourabove-ar.alt LIG;\n  sub seenFourabove-ar.fina.alt' by seenFourabove-ar.fina.alt LIG;\n  sub seenVinvertedabove-ar.alt' by seenVinvertedabove-ar.alt LIG;\n  sub seenVinvertedabove-ar.fina.alt' by seenVinvertedabove-ar.fina.alt LIG;\n  sub seenThreedotsbelowthreedots-ar.alt' by seenThreedotsbelowthreedots-ar.alt LIG;\n  sub seenThreedotsbelowthreedots-ar.fina.alt' by seenThreedotsbelowthreedots-ar.fina.alt LIG;\n  sub behMeemabove-ar.alt' by behMeemabove-ar.alt LIG;\n  sub behMeemabove-ar.fina.alt' by behMeemabove-ar.fina.alt LIG;\n  sub pehMeemabove-ar.alt' by pehMeemabove-ar.alt LIG;\n  sub pehMeemabove-ar.fina.alt' by pehMeemabove-ar.fina.alt LIG;\n  sub tehTehabove-ar.alt' by tehTehabove-ar.alt LIG;\n  sub tehTehabove-ar.fina.alt' by tehTehabove-ar.fina.alt LIG;\n} arabiclong2;\n\nlookup condensedar {\n  script arab;  \n  lookupflag IgnoreMarks RightToLeft;\n\n  lookupflag IgnoreMarks RightToLeft;\n  sub @beh1' @alef1 by @beh2;\n  sub @beh2 @alef1' by @alef2;\n} condensedar;\n} calt;\n\nfeature ccmp {\nlookup ccmp_Other_1 {\n\t@CombiningTopAccents = [acutecomb acutetonecomb brevecomb caroncomb circumflexcomb commaabovecomb commaaboverightcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb gravetonecomb hookabovecomb hungarumlautcomb macroncomb perispomenicomb ringcomb tildecomb];\n\t@CombiningNonTopAccents = [cedillacomb dotbelowcomb lowlinecomb macronbelowcomb ogonekcomb ringbelowcomb horncomb];\n\tsub [i j i-cy je-cy]' @CombiningTopAccents by [idotless jdotless idotless jdotless];\t\n\tsub iogonek' @CombiningTopAccents by idotless ogonekcomb; \n\tsub idotbelow' @CombiningTopAccents by idotless dotbelowcomb; \n\tsub [i j i-cy je-cy]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless idotless jdotless];\n\tsub iogonek' @CombiningNonTopAccents @CombiningTopAccents by idotless ogonekcomb;\n\tsub idotbelow' @CombiningNonTopAccents @CombiningTopAccents by idotless dotbelowcomb;\n\t@Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb horncomb tonos brevecomb-cy];\n\t@MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case tonos.case brevecomb-cy.case];\n\tsub @Markscomb @Markscomb' by @MarkscombCase;\n\tsub @Uppercase @Markscomb' by @MarkscombCase;\n} ccmp_Other_1;\n\nlookup ccmp_Other_2 {\n\tsub @Markscomb' @MarkscombCase by @MarkscombCase;\n\tsub @MarkscombCase @Markscomb' by @MarkscombCase;\n} ccmp_Other_2;\n\nlookup ccmp_latn_1 {\n\tsub fi by f i;\n\tsub fl by f l;\n} ccmp_latn_1;\n\nscript latn;\nlookup ccmp_latn_1;\n} ccmp;\n\nfeature locl {\nlookup locl_latn_0 {\n\tscript latn;\n\tlanguage ROM;\n\tlanguage MOL;\n\tsub Scedilla by Scommaaccent;\n\tsub scedilla by scommaaccent;\n\tsub Tcedilla by Tcommaaccent;\n\tsub tcedilla by tcommaaccent;\n} locl_latn_0;\n\nlookup locl_latn_1 {\n\tscript latn;\n\tlanguage PLK;\n\tsub Cacute by Cacute.loclPLK;\n\tsub Nacute by Nacute.loclPLK;\n\tsub Oacute by Oacute.loclPLK;\n\tsub Sacute by Sacute.loclPLK;\n\tsub Zacute by Zacute.loclPLK;\n\tsub cacute by cacute.loclPLK;\n\tsub nacute by nacute.loclPLK;\n\tsub oacute by oacute.loclPLK;\n\tsub sacute by sacute.loclPLK;\n\tsub zacute by zacute.loclPLK;\n\tsub acutecomb by acutecomb.loclPLK;\n} locl_latn_1;\n\nlookup locl_latn_2 {\n\tscript latn;\n\tlanguage NLD;\n\tsub iacute j' by jacute;\n\tsub Iacute J' by Jacute;\n} locl_latn_2;\n\nlookup locl_cyrl_0 {\n\tscript cyrl;\n\tlanguage BGR;\n\tsub De-cy by De-cy.loclBGR;\n\tsub El-cy by El-cy.loclBGR;\n\tsub Ef-cy by Ef-cy.loclBGR;\n\tsub ve-cy by ve-cy.loclBGR;\n\tsub ge-cy by ge-cy.loclBGR;\n\tsub de-cy by de-cy.loclBGR;\n\tsub zhe-cy by zhe-cy.loclBGR;\n\tsub ze-cy by ze-cy.loclBGR;\n\tsub ii-cy by ii-cy.loclBGR;\n\tsub iishort-cy by iishort-cy.loclBGR;\n\tsub iigrave-cy by iigrave-cy.loclBGR;\n\tsub ka-cy by ka-cy.loclBGR;\n\tsub el-cy by el-cy.loclBGR;\n\tsub pe-cy by pe-cy.loclBGR;\n\tsub te-cy by te-cy.loclBGR;\n\tsub tse-cy by tse-cy.loclBGR;\n\tsub sha-cy by sha-cy.loclBGR;\n\tsub shcha-cy by shcha-cy.loclBGR;\n\tsub softsign-cy by softsign-cy.loclBGR;\n\tsub hardsign-cy by hardsign-cy.loclBGR;\n\tsub iu-cy by iu-cy.loclBGR;\n} locl_cyrl_0;\n\nlookup locl_cyrl_1 {\n\tscript cyrl;\n\tlanguage SRB;\n\tsub be-cy by be-cy.loclSRB;\n} locl_cyrl_1;\n\n} locl;\n\nfeature subs {\n# automatic\nsub zero by zeroinferior;\nsub one by oneinferior;\nsub two by twoinferior;\nsub three by threeinferior;\nsub four by fourinferior;\nsub five by fiveinferior;\nsub six by sixinferior;\nsub seven by seveninferior;\nsub eight by eightinferior;\nsub nine by nineinferior;\n\n} subs;\n\nfeature sinf {\n# automatic\nsub zero by zeroinferior;\nsub one by oneinferior;\nsub two by twoinferior;\nsub three by threeinferior;\nsub four by fourinferior;\nsub five by fiveinferior;\nsub six by sixinferior;\nsub seven by seveninferior;\nsub eight by eightinferior;\nsub nine by nineinferior;\n\n} sinf;\n\nfeature sups {\n# automatic\nsub zero by zerosuperior;\nsub one by onesuperior;\nsub two by twosuperior;\nsub three by threesuperior;\nsub four by foursuperior;\nsub five by fivesuperior;\nsub six by sixsuperior;\nsub seven by sevensuperior;\nsub eight by eightsuperior;\nsub nine by ninesuperior;\n\n} sups;\n\nfeature numr {\n# automatic\nsub zero by zero.numr;\nsub one by one.numr;\nsub two by two.numr;\nsub three by three.numr;\nsub four by four.numr;\nsub five by five.numr;\nsub six by six.numr;\nsub seven by seven.numr;\nsub eight by eight.numr;\nsub nine by nine.numr;\n\n} numr;\n\nfeature dnom {\n# automatic\nsub zero by zero.dnom;\nsub one by one.dnom;\nsub two by two.dnom;\nsub three by three.dnom;\nsub four by four.dnom;\nsub five by five.dnom;\nsub six by six.dnom;\nsub seven by seven.dnom;\nsub eight by eight.dnom;\nsub nine by nine.dnom;\n\n} dnom;\n\nfeature frac {\n# automatic\nlookup FRAC {\n\tsub slash by fraction;\n} FRAC;\nlookup UP {\n\tsub [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];\n} UP;\nlookup DOWN {\n\tsub 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];\n\tsub [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];\n} DOWN;\n\n} frac;\n\nfeature ordn {\n# automatic\nsub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;\nsub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;\nsub N o period by numero;\n\n} ordn;\n\nfeature case {\n# automatic\nsub dieresiscomb by dieresiscomb.case;\nsub dotaccentcomb by dotaccentcomb.case;\nsub gravecomb by gravecomb.case;\nsub acutecomb by acutecomb.case;\nsub hungarumlautcomb by hungarumlautcomb.case;\nsub circumflexcomb by circumflexcomb.case;\nsub caroncomb by caroncomb.case;\nsub brevecomb by brevecomb.case;\nsub ringcomb by ringcomb.case;\nsub tildecomb by tildecomb.case;\nsub macroncomb by macroncomb.case;\nsub hookabovecomb by hookabovecomb.case;\nsub horncomb by horncomb.case;\nsub tonos by tonos.case;\nsub brevecomb-cy by brevecomb-cy.case;\n\n} case;\n\nfeature liga {\n# disabled\n#\n} liga;\n\nfeature ss02 {\nsub asciitilde_equal.liga by exclam_equal.liga;\n\n} ss02;\n\nfeature zero {\n# automatic\nsub zero by zero.zero;\n\n} zero;\n\nfeature ss19 {\n# notes:\n# Name: Slashed zero\nsub zero by zero.zero;\n} ss19;\n\nfeature rclt {\n# this subs the GDI-centric versions of these symbols with DWrite-centric ones\nsub lowerOneEighthBlock by lowerOneEighthBlock.stypo;\nsub lowerOneQuarterBlock by lowerOneQuarterBlock.stypo;\nsub lowerThreeEighthsBlock by lowerThreeEighthsBlock.stypo;\nsub lowerHalfBlock by lowerHalfBlock.stypo;\nsub lowerFiveEighthsBlock by lowerFiveEighthsBlock.stypo;\nsub lowerThreeQuartersBlock by lowerThreeQuartersBlock.stypo;\nsub lowerSevenEighthsBlock by lowerSevenEighthsBlock.stypo;\nsub fullBlock by fullBlock.stypo;\nsub upperHalfBlock by upperHalfBlock.stypo;\nsub upperOneEighthBlock by upperOneEighthBlock.stypo;\nsub leftOneEighthBlock by leftOneEighthBlock.stypo;\nsub leftOneQuarterBlock by leftOneQuarterBlock.stypo;\nsub leftThreeEighthsBlock by leftThreeEighthsBlock.stypo;\nsub leftBlock by leftBlock.stypo;\nsub leftFiveEighthsBlock by leftFiveEighthsBlock.stypo;\nsub leftThreeQuartersBlock by leftThreeQuartersBlock.stypo;\nsub leftSevenEighthsBlock by leftSevenEighthsBlock.stypo;\nsub rightBlock by rightBlock.stypo;\nsub rightOneEighthBlock by rightOneEighthBlock.stypo;\nsub lowerLeftBlock by lowerLeftBlock.stypo;\nsub lowerRightBlock by lowerRightBlock.stypo;\nsub upperLeftBlock by upperLeftBlock.stypo;\nsub upperLeftAndLowerLeftAndLowerRightBlock by upperLeftAndLowerLeftAndLowerRightBlock.stypo;\nsub upperLeftAndLowerRightBlock by upperLeftAndLowerRightBlock.stypo;\nsub upperLeftAndUpperRightAndLowerLeftBlock by upperLeftAndUpperRightAndLowerLeftBlock.stypo;\nsub upperLeftAndUpperRightAndLowerRightBlock by upperLeftAndUpperRightAndLowerRightBlock.stypo;\nsub upperRightBlock by upperRightBlock.stypo;\nsub upperRightAndLowerLeftBlock by upperRightAndLowerLeftBlock.stypo;\nsub upperRightAndLowerLeftAndLowerRightBlock by upperRightAndLowerLeftAndLowerRightBlock.stypo;\nsub shadelight by shadelight.stypo;\nsub shademedium by shademedium.stypo;\nsub shadedark by shadedark.stypo;\nsub checkerBoardDeleteAmstradCpc by checkerBoardDeleteAmstradCpc.stypo;\nsub checkerBoardFill by checkerBoardFill.stypo;\nsub checkerBoardFillInverse by checkerBoardFillInverse.stypo;\nsub blockQuadrant-UC by blockQuadrant-UC.stypo;\nsub blockQuadrant-LC by blockQuadrant-LC.stypo;\nsub blockQuadrant-ML by blockQuadrant-ML.stypo;\nsub blockQuadrant-MR by blockQuadrant-MR.stypo;\nsub blockTriangle-1 by blockTriangle-1.stypo;\nsub blockTriangle-2 by blockTriangle-2.stypo;\nsub blockTriangle-3 by blockTriangle-3.stypo;\nsub blockTriangle-4 by blockTriangle-4.stypo;\nsub blockTriangle-14 by blockTriangle-14.stypo;\nsub blockTriangle-23 by blockTriangle-23.stypo;\nsub blockTriangle-123 by blockTriangle-123.stypo;\nsub blockTriangle-124 by blockTriangle-124.stypo;\nsub blockTriangle-134 by blockTriangle-134.stypo;\nsub blockTriangle-234 by blockTriangle-234.stypo;\nsub blockCircle-1 by blockCircle-1.stypo;\nsub blockCircle-2 by blockCircle-2.stypo;\nsub blockCircle-3 by blockCircle-3.stypo;\nsub blockCircle-4 by blockCircle-4.stypo;\nsub blockCircle-UC by blockCircle-UC.stypo;\nsub blockCircle-LC by blockCircle-LC.stypo;\nsub blockCircle-ML by blockCircle-ML.stypo;\nsub blockCircle-MR by blockCircle-MR.stypo;\nsub blockSextant-1 by blockSextant-1.stypo;\nsub blockSextant-2 by blockSextant-2.stypo;\nsub blockSextant-12 by blockSextant-12.stypo;\nsub blockSextant-3 by blockSextant-3.stypo;\nsub blockSextant-13 by blockSextant-13.stypo;\nsub blockSextant-23 by blockSextant-23.stypo;\nsub blockSextant-123 by blockSextant-123.stypo;\nsub blockSextant-4 by blockSextant-4.stypo;\nsub blockSextant-14 by blockSextant-14.stypo;\nsub blockSextant-24 by blockSextant-24.stypo;\nsub blockSextant-124 by blockSextant-124.stypo;\nsub blockSextant-34 by blockSextant-34.stypo;\nsub blockSextant-134 by blockSextant-134.stypo;\nsub blockSextant-234 by blockSextant-234.stypo;\nsub blockSextant-1234 by blockSextant-1234.stypo;\nsub blockSextant-5 by blockSextant-5.stypo;\nsub blockSextant-15 by blockSextant-15.stypo;\nsub blockSextant-25 by blockSextant-25.stypo;\nsub blockSextant-125 by blockSextant-125.stypo;\nsub blockSextant-35 by blockSextant-35.stypo;\nsub blockSextant-235 by blockSextant-235.stypo;\nsub blockSextant-1235 by blockSextant-1235.stypo;\nsub blockSextant-45 by blockSextant-45.stypo;\nsub blockSextant-145 by blockSextant-145.stypo;\nsub blockSextant-245 by blockSextant-245.stypo;\nsub blockSextant-1245 by blockSextant-1245.stypo;\nsub blockSextant-345 by blockSextant-345.stypo;\nsub blockSextant-1345 by blockSextant-1345.stypo;\nsub blockSextant-2345 by blockSextant-2345.stypo;\nsub blockSextant-12345 by blockSextant-12345.stypo;\nsub blockSextant-6 by blockSextant-6.stypo;\nsub blockSextant-16 by blockSextant-16.stypo;\nsub blockSextant-26 by blockSextant-26.stypo;\nsub blockSextant-126 by blockSextant-126.stypo;\nsub blockSextant-36 by blockSextant-36.stypo;\nsub blockSextant-136 by blockSextant-136.stypo;\nsub blockSextant-236 by blockSextant-236.stypo;\nsub blockSextant-1236 by blockSextant-1236.stypo;\nsub blockSextant-46 by blockSextant-46.stypo;\nsub blockSextant-146 by blockSextant-146.stypo;\nsub blockSextant-1246 by blockSextant-1246.stypo;\nsub blockSextant-346 by blockSextant-346.stypo;\nsub blockSextant-1346 by blockSextant-1346.stypo;\nsub blockSextant-2346 by blockSextant-2346.stypo;\nsub blockSextant-12346 by blockSextant-12346.stypo;\nsub blockSextant-56 by blockSextant-56.stypo;\nsub blockSextant-156 by blockSextant-156.stypo;\nsub blockSextant-256 by blockSextant-256.stypo;\nsub blockSextant-1256 by blockSextant-1256.stypo;\nsub blockSextant-356 by blockSextant-356.stypo;\nsub blockSextant-1356 by blockSextant-1356.stypo;\nsub blockSextant-2356 by blockSextant-2356.stypo;\nsub blockSextant-12356 by blockSextant-12356.stypo;\nsub blockSextant-456 by blockSextant-456.stypo;\nsub blockSextant-1456 by blockSextant-1456.stypo;\nsub blockSextant-2456 by blockSextant-2456.stypo;\nsub blockSextant-12456 by blockSextant-12456.stypo;\nsub blockSextant-3456 by blockSextant-3456.stypo;\nsub blockSextant-13456 by blockSextant-13456.stypo;\nsub blockSextant-23456 by blockSextant-23456.stypo;\nsub blockDiagonal-1FB3C by blockDiagonal-1FB3C.stypo;\nsub blockDiagonal-1FB3D by blockDiagonal-1FB3D.stypo;\nsub blockDiagonal-1FB3E by blockDiagonal-1FB3E.stypo;\nsub blockDiagonal-1FB3F by blockDiagonal-1FB3F.stypo;\nsub blockDiagonal-1FB40 by blockDiagonal-1FB40.stypo;\nsub blockDiagonal-1FB41 by blockDiagonal-1FB41.stypo;\nsub blockDiagonal-1FB42 by blockDiagonal-1FB42.stypo;\nsub blockDiagonal-1FB43 by blockDiagonal-1FB43.stypo;\nsub blockDiagonal-1FB44 by blockDiagonal-1FB44.stypo;\nsub blockDiagonal-1FB45 by blockDiagonal-1FB45.stypo;\nsub blockDiagonal-1FB46 by blockDiagonal-1FB46.stypo;\nsub blockDiagonal-1FB47 by blockDiagonal-1FB47.stypo;\nsub blockDiagonal-1FB48 by blockDiagonal-1FB48.stypo;\nsub blockDiagonal-1FB49 by blockDiagonal-1FB49.stypo;\nsub blockDiagonal-1FB4A by blockDiagonal-1FB4A.stypo;\nsub blockDiagonal-1FB4B by blockDiagonal-1FB4B.stypo;\nsub blockDiagonal-1FB4C by blockDiagonal-1FB4C.stypo;\nsub blockDiagonal-1FB4D by blockDiagonal-1FB4D.stypo;\nsub blockDiagonal-1FB4E by blockDiagonal-1FB4E.stypo;\nsub blockDiagonal-1FB4F by blockDiagonal-1FB4F.stypo;\nsub blockDiagonal-1FB50 by blockDiagonal-1FB50.stypo;\nsub blockDiagonal-1FB51 by blockDiagonal-1FB51.stypo;\nsub blockDiagonal-1FB52 by blockDiagonal-1FB52.stypo;\nsub blockDiagonal-1FB53 by blockDiagonal-1FB53.stypo;\nsub blockDiagonal-1FB54 by blockDiagonal-1FB54.stypo;\nsub blockDiagonal-1FB55 by blockDiagonal-1FB55.stypo;\nsub blockDiagonal-1FB56 by blockDiagonal-1FB56.stypo;\nsub blockDiagonal-1FB57 by blockDiagonal-1FB57.stypo;\nsub blockDiagonal-1FB58 by blockDiagonal-1FB58.stypo;\nsub blockDiagonal-1FB59 by blockDiagonal-1FB59.stypo;\nsub blockDiagonal-1FB5A by blockDiagonal-1FB5A.stypo;\nsub blockDiagonal-1FB5B by blockDiagonal-1FB5B.stypo;\nsub blockDiagonal-1FB5C by blockDiagonal-1FB5C.stypo;\nsub blockDiagonal-1FB5D by blockDiagonal-1FB5D.stypo;\nsub blockDiagonal-1FB5E by blockDiagonal-1FB5E.stypo;\nsub blockDiagonal-1FB5F by blockDiagonal-1FB5F.stypo;\nsub blockDiagonal-1FB60 by blockDiagonal-1FB60.stypo;\nsub blockDiagonal-1FB61 by blockDiagonal-1FB61.stypo;\nsub blockDiagonal-1FB62 by blockDiagonal-1FB62.stypo;\nsub blockDiagonal-1FB63 by blockDiagonal-1FB63.stypo;\nsub blockDiagonal-1FB64 by blockDiagonal-1FB64.stypo;\nsub blockDiagonal-1FB65 by blockDiagonal-1FB65.stypo;\nsub blockDiagonal-1FB66 by blockDiagonal-1FB66.stypo;\nsub blockDiagonal-1FB67 by blockDiagonal-1FB67.stypo;\nsub blockOctant-1 by blockOctant-1.stypo;\nsub blockOctant-2 by blockOctant-2.stypo;\nsub blockOctant-12 by blockOctant-12.stypo;\nsub blockOctant-3 by blockOctant-3.stypo;\nsub blockOctant-23 by blockOctant-23.stypo;\nsub blockOctant-123 by blockOctant-123.stypo;\nsub blockOctant-4 by blockOctant-4.stypo;\nsub blockOctant-14 by blockOctant-14.stypo;\nsub blockOctant-124 by blockOctant-124.stypo;\nsub blockOctant-34 by blockOctant-34.stypo;\nsub blockOctant-134 by blockOctant-134.stypo;\nsub blockOctant-234 by blockOctant-234.stypo;\nsub blockOctant-5 by blockOctant-5.stypo;\nsub blockOctant-15 by blockOctant-15.stypo;\nsub blockOctant-25 by blockOctant-25.stypo;\nsub blockOctant-125 by blockOctant-125.stypo;\nsub blockOctant-135 by blockOctant-135.stypo;\nsub blockOctant-235 by blockOctant-235.stypo;\nsub blockOctant-1235 by blockOctant-1235.stypo;\nsub blockOctant-45 by blockOctant-45.stypo;\nsub blockOctant-145 by blockOctant-145.stypo;\nsub blockOctant-245 by blockOctant-245.stypo;\nsub blockOctant-1245 by blockOctant-1245.stypo;\nsub blockOctant-345 by blockOctant-345.stypo;\nsub blockOctant-1345 by blockOctant-1345.stypo;\nsub blockOctant-2345 by blockOctant-2345.stypo;\nsub blockOctant-12345 by blockOctant-12345.stypo;\nsub blockOctant-6 by blockOctant-6.stypo;\nsub blockOctant-16 by blockOctant-16.stypo;\nsub blockOctant-26 by blockOctant-26.stypo;\nsub blockOctant-126 by blockOctant-126.stypo;\nsub blockOctant-36 by blockOctant-36.stypo;\nsub blockOctant-136 by blockOctant-136.stypo;\nsub blockOctant-236 by blockOctant-236.stypo;\nsub blockOctant-1236 by blockOctant-1236.stypo;\nsub blockOctant-146 by blockOctant-146.stypo;\nsub blockOctant-246 by blockOctant-246.stypo;\nsub blockOctant-1246 by blockOctant-1246.stypo;\nsub blockOctant-346 by blockOctant-346.stypo;\nsub blockOctant-1346 by blockOctant-1346.stypo;\nsub blockOctant-2346 by blockOctant-2346.stypo;\nsub blockOctant-12346 by blockOctant-12346.stypo;\nsub blockOctant-56 by blockOctant-56.stypo;\nsub blockOctant-156 by blockOctant-156.stypo;\nsub blockOctant-256 by blockOctant-256.stypo;\nsub blockOctant-1256 by blockOctant-1256.stypo;\nsub blockOctant-356 by blockOctant-356.stypo;\nsub blockOctant-1356 by blockOctant-1356.stypo;\nsub blockOctant-2356 by blockOctant-2356.stypo;\nsub blockOctant-12356 by blockOctant-12356.stypo;\nsub blockOctant-456 by blockOctant-456.stypo;\nsub blockOctant-1456 by blockOctant-1456.stypo;\nsub blockOctant-2456 by blockOctant-2456.stypo;\nsub blockOctant-12456 by blockOctant-12456.stypo;\nsub blockOctant-3456 by blockOctant-3456.stypo;\nsub blockOctant-13456 by blockOctant-13456.stypo;\nsub blockOctant-23456 by blockOctant-23456.stypo;\nsub blockOctant-123456 by blockOctant-123456.stypo;\nsub blockOctant-7 by blockOctant-7.stypo;\nsub blockOctant-17 by blockOctant-17.stypo;\nsub blockOctant-27 by blockOctant-27.stypo;\nsub blockOctant-127 by blockOctant-127.stypo;\nsub blockOctant-37 by blockOctant-37.stypo;\nsub blockOctant-137 by blockOctant-137.stypo;\nsub blockOctant-237 by blockOctant-237.stypo;\nsub blockOctant-1237 by blockOctant-1237.stypo;\nsub blockOctant-47 by blockOctant-47.stypo;\nsub blockOctant-147 by blockOctant-147.stypo;\nsub blockOctant-247 by blockOctant-247.stypo;\nsub blockOctant-1247 by blockOctant-1247.stypo;\nsub blockOctant-347 by blockOctant-347.stypo;\nsub blockOctant-1347 by blockOctant-1347.stypo;\nsub blockOctant-2347 by blockOctant-2347.stypo;\nsub blockOctant-12347 by blockOctant-12347.stypo;\nsub blockOctant-157 by blockOctant-157.stypo;\nsub blockOctant-257 by blockOctant-257.stypo;\nsub blockOctant-1257 by blockOctant-1257.stypo;\nsub blockOctant-357 by blockOctant-357.stypo;\nsub blockOctant-2357 by blockOctant-2357.stypo;\nsub blockOctant-12357 by blockOctant-12357.stypo;\nsub blockOctant-457 by blockOctant-457.stypo;\nsub blockOctant-1457 by blockOctant-1457.stypo;\nsub blockOctant-12457 by blockOctant-12457.stypo;\nsub blockOctant-3457 by blockOctant-3457.stypo;\nsub blockOctant-13457 by blockOctant-13457.stypo;\nsub blockOctant-23457 by blockOctant-23457.stypo;\nsub blockOctant-67 by blockOctant-67.stypo;\nsub blockOctant-167 by blockOctant-167.stypo;\nsub blockOctant-267 by blockOctant-267.stypo;\nsub blockOctant-1267 by blockOctant-1267.stypo;\nsub blockOctant-367 by blockOctant-367.stypo;\nsub blockOctant-1367 by blockOctant-1367.stypo;\nsub blockOctant-2367 by blockOctant-2367.stypo;\nsub blockOctant-12367 by blockOctant-12367.stypo;\nsub blockOctant-467 by blockOctant-467.stypo;\nsub blockOctant-1467 by blockOctant-1467.stypo;\nsub blockOctant-2467 by blockOctant-2467.stypo;\nsub blockOctant-12467 by blockOctant-12467.stypo;\nsub blockOctant-3467 by blockOctant-3467.stypo;\nsub blockOctant-13467 by blockOctant-13467.stypo;\nsub blockOctant-23467 by blockOctant-23467.stypo;\nsub blockOctant-123467 by blockOctant-123467.stypo;\nsub blockOctant-567 by blockOctant-567.stypo;\nsub blockOctant-1567 by blockOctant-1567.stypo;\nsub blockOctant-2567 by blockOctant-2567.stypo;\nsub blockOctant-12567 by blockOctant-12567.stypo;\nsub blockOctant-3567 by blockOctant-3567.stypo;\nsub blockOctant-13567 by blockOctant-13567.stypo;\nsub blockOctant-23567 by blockOctant-23567.stypo;\nsub blockOctant-123567 by blockOctant-123567.stypo;\nsub blockOctant-4567 by blockOctant-4567.stypo;\nsub blockOctant-14567 by blockOctant-14567.stypo;\nsub blockOctant-24567 by blockOctant-24567.stypo;\nsub blockOctant-124567 by blockOctant-124567.stypo;\nsub blockOctant-34567 by blockOctant-34567.stypo;\nsub blockOctant-134567 by blockOctant-134567.stypo;\nsub blockOctant-234567 by blockOctant-234567.stypo;\nsub blockOctant-1234567 by blockOctant-1234567.stypo;\nsub blockOctant-8 by blockOctant-8.stypo;\nsub blockOctant-18 by blockOctant-18.stypo;\nsub blockOctant-28 by blockOctant-28.stypo;\nsub blockOctant-128 by blockOctant-128.stypo;\nsub blockOctant-38 by blockOctant-38.stypo;\nsub blockOctant-138 by blockOctant-138.stypo;\nsub blockOctant-238 by blockOctant-238.stypo;\nsub blockOctant-1238 by blockOctant-1238.stypo;\nsub blockOctant-48 by blockOctant-48.stypo;\nsub blockOctant-148 by blockOctant-148.stypo;\nsub blockOctant-248 by blockOctant-248.stypo;\nsub blockOctant-1248 by blockOctant-1248.stypo;\nsub blockOctant-348 by blockOctant-348.stypo;\nsub blockOctant-1348 by blockOctant-1348.stypo;\nsub blockOctant-2348 by blockOctant-2348.stypo;\nsub blockOctant-12348 by blockOctant-12348.stypo;\nsub blockOctant-58 by blockOctant-58.stypo;\nsub blockOctant-158 by blockOctant-158.stypo;\nsub blockOctant-258 by blockOctant-258.stypo;\nsub blockOctant-1258 by blockOctant-1258.stypo;\nsub blockOctant-358 by blockOctant-358.stypo;\nsub blockOctant-1358 by blockOctant-1358.stypo;\nsub blockOctant-2358 by blockOctant-2358.stypo;\nsub blockOctant-12358 by blockOctant-12358.stypo;\nsub blockOctant-458 by blockOctant-458.stypo;\nsub blockOctant-1458 by blockOctant-1458.stypo;\nsub blockOctant-2458 by blockOctant-2458.stypo;\nsub blockOctant-12458 by blockOctant-12458.stypo;\nsub blockOctant-3458 by blockOctant-3458.stypo;\nsub blockOctant-13458 by blockOctant-13458.stypo;\nsub blockOctant-23458 by blockOctant-23458.stypo;\nsub blockOctant-123458 by blockOctant-123458.stypo;\nsub blockOctant-168 by blockOctant-168.stypo;\nsub blockOctant-268 by blockOctant-268.stypo;\nsub blockOctant-1268 by blockOctant-1268.stypo;\nsub blockOctant-368 by blockOctant-368.stypo;\nsub blockOctant-2368 by blockOctant-2368.stypo;\nsub blockOctant-12368 by blockOctant-12368.stypo;\nsub blockOctant-468 by blockOctant-468.stypo;\nsub blockOctant-1468 by blockOctant-1468.stypo;\nsub blockOctant-12468 by blockOctant-12468.stypo;\nsub blockOctant-3468 by blockOctant-3468.stypo;\nsub blockOctant-13468 by blockOctant-13468.stypo;\nsub blockOctant-23468 by blockOctant-23468.stypo;\nsub blockOctant-568 by blockOctant-568.stypo;\nsub blockOctant-1568 by blockOctant-1568.stypo;\nsub blockOctant-2568 by blockOctant-2568.stypo;\nsub blockOctant-12568 by blockOctant-12568.stypo;\nsub blockOctant-3568 by blockOctant-3568.stypo;\nsub blockOctant-13568 by blockOctant-13568.stypo;\nsub blockOctant-23568 by blockOctant-23568.stypo;\nsub blockOctant-123568 by blockOctant-123568.stypo;\nsub blockOctant-4568 by blockOctant-4568.stypo;\nsub blockOctant-14568 by blockOctant-14568.stypo;\nsub blockOctant-24568 by blockOctant-24568.stypo;\nsub blockOctant-124568 by blockOctant-124568.stypo;\nsub blockOctant-34568 by blockOctant-34568.stypo;\nsub blockOctant-134568 by blockOctant-134568.stypo;\nsub blockOctant-234568 by blockOctant-234568.stypo;\nsub blockOctant-1234568 by blockOctant-1234568.stypo;\nsub blockOctant-178 by blockOctant-178.stypo;\nsub blockOctant-278 by blockOctant-278.stypo;\nsub blockOctant-1278 by blockOctant-1278.stypo;\nsub blockOctant-378 by blockOctant-378.stypo;\nsub blockOctant-1378 by blockOctant-1378.stypo;\nsub blockOctant-2378 by blockOctant-2378.stypo;\nsub blockOctant-12378 by blockOctant-12378.stypo;\nsub blockOctant-478 by blockOctant-478.stypo;\nsub blockOctant-1478 by blockOctant-1478.stypo;\nsub blockOctant-2478 by blockOctant-2478.stypo;\nsub blockOctant-12478 by blockOctant-12478.stypo;\nsub blockOctant-3478 by blockOctant-3478.stypo;\nsub blockOctant-13478 by blockOctant-13478.stypo;\nsub blockOctant-23478 by blockOctant-23478.stypo;\nsub blockOctant-123478 by blockOctant-123478.stypo;\nsub blockOctant-578 by blockOctant-578.stypo;\nsub blockOctant-1578 by blockOctant-1578.stypo;\nsub blockOctant-2578 by blockOctant-2578.stypo;\nsub blockOctant-12578 by blockOctant-12578.stypo;\nsub blockOctant-3578 by blockOctant-3578.stypo;\nsub blockOctant-13578 by blockOctant-13578.stypo;\nsub blockOctant-23578 by blockOctant-23578.stypo;\nsub blockOctant-123578 by blockOctant-123578.stypo;\nsub blockOctant-4578 by blockOctant-4578.stypo;\nsub blockOctant-14578 by blockOctant-14578.stypo;\nsub blockOctant-24578 by blockOctant-24578.stypo;\nsub blockOctant-124578 by blockOctant-124578.stypo;\nsub blockOctant-34578 by blockOctant-34578.stypo;\nsub blockOctant-134578 by blockOctant-134578.stypo;\nsub blockOctant-234578 by blockOctant-234578.stypo;\nsub blockOctant-1234578 by blockOctant-1234578.stypo;\nsub blockOctant-678 by blockOctant-678.stypo;\nsub blockOctant-1678 by blockOctant-1678.stypo;\nsub blockOctant-2678 by blockOctant-2678.stypo;\nsub blockOctant-12678 by blockOctant-12678.stypo;\nsub blockOctant-3678 by blockOctant-3678.stypo;\nsub blockOctant-13678 by blockOctant-13678.stypo;\nsub blockOctant-23678 by blockOctant-23678.stypo;\nsub blockOctant-123678 by blockOctant-123678.stypo;\nsub blockOctant-4678 by blockOctant-4678.stypo;\nsub blockOctant-14678 by blockOctant-14678.stypo;\nsub blockOctant-24678 by blockOctant-24678.stypo;\nsub blockOctant-124678 by blockOctant-124678.stypo;\nsub blockOctant-34678 by blockOctant-34678.stypo;\nsub blockOctant-134678 by blockOctant-134678.stypo;\nsub blockOctant-234678 by blockOctant-234678.stypo;\nsub blockOctant-1234678 by blockOctant-1234678.stypo;\nsub blockOctant-15678 by blockOctant-15678.stypo;\nsub blockOctant-25678 by blockOctant-25678.stypo;\nsub blockOctant-125678 by blockOctant-125678.stypo;\nsub blockOctant-35678 by blockOctant-35678.stypo;\nsub blockOctant-235678 by blockOctant-235678.stypo;\nsub blockOctant-1235678 by blockOctant-1235678.stypo;\nsub blockOctant-45678 by blockOctant-45678.stypo;\nsub blockOctant-145678 by blockOctant-145678.stypo;\nsub blockOctant-1245678 by blockOctant-1245678.stypo;\nsub blockOctant-1345678 by blockOctant-1345678.stypo;\nsub blockOctant-2345678 by blockOctant-2345678.stypo;\nsub blockSedecimant-1 by blockSedecimant-1.stypo;\nsub blockSedecimant-2 by blockSedecimant-2.stypo;\nsub blockSedecimant-3 by blockSedecimant-3.stypo;\nsub blockSedecimant-4 by blockSedecimant-4.stypo;\nsub blockSedecimant-5 by blockSedecimant-5.stypo;\nsub blockSedecimant-6 by blockSedecimant-6.stypo;\nsub blockSedecimant-7 by blockSedecimant-7.stypo;\nsub blockSedecimant-8 by blockSedecimant-8.stypo;\nsub blockSedecimant-9 by blockSedecimant-9.stypo;\nsub blockSedecimant-A by blockSedecimant-A.stypo;\nsub blockSedecimant-B by blockSedecimant-B.stypo;\nsub blockSedecimant-C by blockSedecimant-C.stypo;\nsub blockSedecimant-D by blockSedecimant-D.stypo;\nsub blockSedecimant-E by blockSedecimant-E.stypo;\nsub blockSedecimant-F by blockSedecimant-F.stypo;\nsub blockSedecimant-G by blockSedecimant-G.stypo;\nsub blockSedecimant-EFG by blockSedecimant-EFG.stypo;\nsub blockSedecimant-DEF by blockSedecimant-DEF.stypo;\nsub blockSedecimant-9D by blockSedecimant-9D.stypo;\nsub blockSedecimant-59D by blockSedecimant-59D.stypo;\nsub blockSedecimant-159 by blockSedecimant-159.stypo;\nsub blockSedecimant-15 by blockSedecimant-15.stypo;\nsub blockSedecimant-123 by blockSedecimant-123.stypo;\nsub blockSedecimant-234 by blockSedecimant-234.stypo;\nsub blockSedecimant-48 by blockSedecimant-48.stypo;\nsub blockSedecimant-48C by blockSedecimant-48C.stypo;\nsub blockSedecimant-8CG by blockSedecimant-8CG.stypo;\nsub blockSedecimant-CG by blockSedecimant-CG.stypo;\nsub verticalOneEighthBlock-2 by verticalOneEighthBlock-2.stypo;\nsub verticalOneEighthBlock-3 by verticalOneEighthBlock-3.stypo;\nsub verticalOneEighthBlock-4 by verticalOneEighthBlock-4.stypo;\nsub verticalOneEighthBlock-5 by verticalOneEighthBlock-5.stypo;\nsub verticalOneEighthBlock-6 by verticalOneEighthBlock-6.stypo;\nsub verticalOneEighthBlock-7 by verticalOneEighthBlock-7.stypo;\nsub horizontalOneEightBlock-2 by horizontalOneEightBlock-2.stypo;\nsub horizontalOneEightBlock-3 by horizontalOneEightBlock-3.stypo;\nsub horizontalOneEightBlock-4 by horizontalOneEightBlock-4.stypo;\nsub horizontalOneEightBlock-5 by horizontalOneEightBlock-5.stypo;\nsub horizontalOneEightBlock-6 by horizontalOneEightBlock-6.stypo;\nsub horizontalOneEightBlock-7 by horizontalOneEightBlock-7.stypo;\nsub leftAndLowerOneEightBlock by leftAndLowerOneEightBlock.stypo;\nsub leftAndUpperOneEightBlock by leftAndUpperOneEightBlock.stypo;\nsub rightAndUpperOneEightBlock by rightAndUpperOneEightBlock.stypo;\nsub rightAndLowerOneEightBlock by rightAndLowerOneEightBlock.stypo;\nsub upperAndLowerOneEightBlock by upperAndLowerOneEightBlock.stypo;\nsub upperThreeEighthsBlock by upperThreeEighthsBlock.stypo;\nsub upperFiveEighthsBlock by upperFiveEighthsBlock.stypo;\nsub upperSevenEighthsBlock by upperSevenEighthsBlock.stypo;\nsub rightOneQuarterBlock by rightOneQuarterBlock.stypo;\nsub rightThreeEighthsBlock by rightThreeEighthsBlock.stypo;\nsub rightFiveEighthsBlock by rightFiveEighthsBlock.stypo;\nsub rightThreeQuartersBlock by rightThreeQuartersBlock.stypo;\nsub rightSevenEighthsBlock by rightSevenEighthsBlock.stypo;\nsub leftTwoThirdsBlock by leftTwoThirdsBlock.stypo;\nsub leftOneThirdBlock by leftOneThirdBlock.stypo;\nsub heavyHorizontalFill by heavyHorizontalFill.stypo;\nsub blockSeparatedQuadrant-1 by blockSeparatedQuadrant-1.stypo;\nsub blockSeparatedQuadrant-2 by blockSeparatedQuadrant-2.stypo;\nsub blockSeparatedQuadrant-12 by blockSeparatedQuadrant-12.stypo;\nsub blockSeparatedQuadrant-3 by blockSeparatedQuadrant-3.stypo;\nsub blockSeparatedQuadrant-13 by blockSeparatedQuadrant-13.stypo;\nsub blockSeparatedQuadrant-23 by blockSeparatedQuadrant-23.stypo;\nsub blockSeparatedQuadrant-123 by blockSeparatedQuadrant-123.stypo;\nsub blockSeparatedQuadrant-4 by blockSeparatedQuadrant-4.stypo;\nsub blockSeparatedQuadrant-14 by blockSeparatedQuadrant-14.stypo;\nsub blockSeparatedQuadrant-24 by blockSeparatedQuadrant-24.stypo;\nsub blockSeparatedQuadrant-124 by blockSeparatedQuadrant-124.stypo;\nsub blockSeparatedQuadrant-34 by blockSeparatedQuadrant-34.stypo;\nsub blockSeparatedQuadrant-134 by blockSeparatedQuadrant-134.stypo;\nsub blockSeparatedQuadrant-234 by blockSeparatedQuadrant-234.stypo;\nsub blockSeparatedQuadrant-1234 by blockSeparatedQuadrant-1234.stypo;\nsub blockSeparatedSextant-1 by blockSeparatedSextant-1.stypo;\nsub blockSeparatedSextant-2 by blockSeparatedSextant-2.stypo;\nsub blockSeparatedSextant-12 by blockSeparatedSextant-12.stypo;\nsub blockSeparatedSextant-3 by blockSeparatedSextant-3.stypo;\nsub blockSeparatedSextant-13 by blockSeparatedSextant-13.stypo;\nsub blockSeparatedSextant-23 by blockSeparatedSextant-23.stypo;\nsub blockSeparatedSextant-123 by blockSeparatedSextant-123.stypo;\nsub blockSeparatedSextant-4 by blockSeparatedSextant-4.stypo;\nsub blockSeparatedSextant-14 by blockSeparatedSextant-14.stypo;\nsub blockSeparatedSextant-24 by blockSeparatedSextant-24.stypo;\nsub blockSeparatedSextant-124 by blockSeparatedSextant-124.stypo;\nsub blockSeparatedSextant-34 by blockSeparatedSextant-34.stypo;\nsub blockSeparatedSextant-134 by blockSeparatedSextant-134.stypo;\nsub blockSeparatedSextant-234 by blockSeparatedSextant-234.stypo;\nsub blockSeparatedSextant-1234 by blockSeparatedSextant-1234.stypo;\nsub blockSeparatedSextant-5 by blockSeparatedSextant-5.stypo;\nsub blockSeparatedSextant-15 by blockSeparatedSextant-15.stypo;\nsub blockSeparatedSextant-25 by blockSeparatedSextant-25.stypo;\nsub blockSeparatedSextant-125 by blockSeparatedSextant-125.stypo;\nsub blockSeparatedSextant-35 by blockSeparatedSextant-35.stypo;\nsub blockSeparatedSextant-135 by blockSeparatedSextant-135.stypo;\nsub blockSeparatedSextant-235 by blockSeparatedSextant-235.stypo;\nsub blockSeparatedSextant-1235 by blockSeparatedSextant-1235.stypo;\nsub blockSeparatedSextant-45 by blockSeparatedSextant-45.stypo;\nsub blockSeparatedSextant-145 by blockSeparatedSextant-145.stypo;\nsub blockSeparatedSextant-245 by blockSeparatedSextant-245.stypo;\nsub blockSeparatedSextant-1245 by blockSeparatedSextant-1245.stypo;\nsub blockSeparatedSextant-345 by blockSeparatedSextant-345.stypo;\nsub blockSeparatedSextant-1345 by blockSeparatedSextant-1345.stypo;\nsub blockSeparatedSextant-2345 by blockSeparatedSextant-2345.stypo;\nsub blockSeparatedSextant-12345 by blockSeparatedSextant-12345.stypo;\nsub blockSeparatedSextant-6 by blockSeparatedSextant-6.stypo;\nsub blockSeparatedSextant-16 by blockSeparatedSextant-16.stypo;\nsub blockSeparatedSextant-26 by blockSeparatedSextant-26.stypo;\nsub blockSeparatedSextant-126 by blockSeparatedSextant-126.stypo;\nsub blockSeparatedSextant-36 by blockSeparatedSextant-36.stypo;\nsub blockSeparatedSextant-136 by blockSeparatedSextant-136.stypo;\nsub blockSeparatedSextant-236 by blockSeparatedSextant-236.stypo;\nsub blockSeparatedSextant-1236 by blockSeparatedSextant-1236.stypo;\nsub blockSeparatedSextant-46 by blockSeparatedSextant-46.stypo;\nsub blockSeparatedSextant-146 by blockSeparatedSextant-146.stypo;\nsub blockSeparatedSextant-246 by blockSeparatedSextant-246.stypo;\nsub blockSeparatedSextant-1246 by blockSeparatedSextant-1246.stypo;\nsub blockSeparatedSextant-346 by blockSeparatedSextant-346.stypo;\nsub blockSeparatedSextant-1346 by blockSeparatedSextant-1346.stypo;\nsub blockSeparatedSextant-2346 by blockSeparatedSextant-2346.stypo;\nsub blockSeparatedSextant-12346 by blockSeparatedSextant-12346.stypo;\nsub blockSeparatedSextant-56 by blockSeparatedSextant-56.stypo;\nsub blockSeparatedSextant-156 by blockSeparatedSextant-156.stypo;\nsub blockSeparatedSextant-256 by blockSeparatedSextant-256.stypo;\nsub blockSeparatedSextant-1256 by blockSeparatedSextant-1256.stypo;\nsub blockSeparatedSextant-356 by blockSeparatedSextant-356.stypo;\nsub blockSeparatedSextant-1356 by blockSeparatedSextant-1356.stypo;\nsub blockSeparatedSextant-2356 by blockSeparatedSextant-2356.stypo;\nsub blockSeparatedSextant-12356 by blockSeparatedSextant-12356.stypo;\nsub blockSeparatedSextant-456 by blockSeparatedSextant-456.stypo;\nsub blockSeparatedSextant-1456 by blockSeparatedSextant-1456.stypo;\nsub blockSeparatedSextant-2456 by blockSeparatedSextant-2456.stypo;\nsub blockSeparatedSextant-12456 by blockSeparatedSextant-12456.stypo;\nsub blockSeparatedSextant-3456 by blockSeparatedSextant-3456.stypo;\nsub blockSeparatedSextant-13456 by blockSeparatedSextant-13456.stypo;\nsub blockSeparatedSextant-23456 by blockSeparatedSextant-23456.stypo;\nsub blockSeparatedSextant-123456 by blockSeparatedSextant-123456.stypo;\nsub largeType-1CE1A by largeType-1CE1A.stypo;\nsub largeType-1CE1B by largeType-1CE1B.stypo;\nsub largeType-1CE1C by largeType-1CE1C.stypo;\nsub largeType-1CE1D by largeType-1CE1D.stypo;\nsub largeType-1CE1E by largeType-1CE1E.stypo;\nsub largeType-1CE1F by largeType-1CE1F.stypo;\nsub largeType-1CE20 by largeType-1CE20.stypo;\nsub largeType-1CE21 by largeType-1CE21.stypo;\nsub largeType-1CE22 by largeType-1CE22.stypo;\nsub largeType-1CE23 by largeType-1CE23.stypo;\nsub largeType-1CE24 by largeType-1CE24.stypo;\nsub largeType-1CE25 by largeType-1CE25.stypo;\nsub largeType-1CE26 by largeType-1CE26.stypo;\nsub largeType-1CE27 by largeType-1CE27.stypo;\nsub largeType-1CE28 by largeType-1CE28.stypo;\nsub largeType-1CE29 by largeType-1CE29.stypo;\nsub largeType-1CE2A by largeType-1CE2A.stypo;\nsub largeType-1CE2B by largeType-1CE2B.stypo;\nsub largeType-1CE2C by largeType-1CE2C.stypo;\nsub largeType-1CE2D by largeType-1CE2D.stypo;\nsub largeType-1CE2E by largeType-1CE2E.stypo;\nsub largeType-1CE2F by largeType-1CE2F.stypo;\nsub largeType-1CE30 by largeType-1CE30.stypo;\nsub largeType-1CE31 by largeType-1CE31.stypo;\nsub largeType-1CE32 by largeType-1CE32.stypo;\nsub largeType-1CE33 by largeType-1CE33.stypo;\nsub largeType-1CE34 by largeType-1CE34.stypo;\nsub largeType-1CE35 by largeType-1CE35.stypo;\nsub largeType-1CE36 by largeType-1CE36.stypo;\nsub largeType-1CE37 by largeType-1CE37.stypo;\nsub largeType-1CE38 by largeType-1CE38.stypo;\nsub largeType-1CE39 by largeType-1CE39.stypo;\nsub largeType-1CE3A by largeType-1CE3A.stypo;\nsub largeType-1CE3B by largeType-1CE3B.stypo;\nsub largeType-1CE3C by largeType-1CE3C.stypo;\nsub largeType-1CE3D by largeType-1CE3D.stypo;\nsub largeType-1CE3E by largeType-1CE3E.stypo;\nsub largeType-1CE3F by largeType-1CE3F.stypo;\nsub largeType-1CE40 by largeType-1CE40.stypo;\nsub largeType-1CE41 by largeType-1CE41.stypo;\nsub largeType-1CE42 by largeType-1CE42.stypo;\nsub largeType-1CE43 by largeType-1CE43.stypo;\nsub largeType-1CE44 by largeType-1CE44.stypo;\nsub largeType-1CE45 by largeType-1CE45.stypo;\nsub largeType-1CE46 by largeType-1CE46.stypo;\nsub largeType-1CE47 by largeType-1CE47.stypo;\nsub largeType-1CE48 by largeType-1CE48.stypo;\nsub largeType-1CE49 by largeType-1CE49.stypo;\nsub largeType-1CE4A by largeType-1CE4A.stypo;\nsub largeType-1CE4B by largeType-1CE4B.stypo;\nsub largeType-1CE4C by largeType-1CE4C.stypo;\nsub largeType-1CE4D by largeType-1CE4D.stypo;\nsub largeType-1CE4E by largeType-1CE4E.stypo;\nsub largeType-1CE4F by largeType-1CE4F.stypo;\nsub largeType-1CE50 by largeType-1CE50.stypo;\n} rclt;\n\nfeature zero {\n# automatic\nsub zero by zero.zero;\n\n} zero;\n\nfeature ss20 {\n# notes:\n# Name: \nsub acknowledgeControl by acknowledgeControl.ss20;\nsub backspaceControl by backspaceControl.ss20;\nsub bellControl by bellControl.ss20;\nsub cancelControl by cancelControl.ss20;\nsub carriageReturnControl by carriageReturnControl.ss20;\nsub dataLinkEscapeControl by dataLinkEscapeControl.ss20;\nsub deleteControl by deleteFormTwoControl;\nsub deviceControlFourControl by upperLeftQuadrantWhiteCircle;\nsub deviceControlOneControl by upperRightQuadrantWhiteCircle;\nsub deviceControlThreeControl by lowerLeftQuadrantWhiteCircle;\nsub deviceControlTwoControl by lowerRightQuadrantWhiteCircle;\nsub endOfMediumControl by endOfMediumControl.ss20;\nsub endOfTextControl by endOfTextControl.ss20;\nsub endOfTransmissionBlockControl by endOfTransmissionBlockControl.ss20;\nsub endOfTransmissionControl by endOfTransmissionControl.ss20;\nsub enquiryControl by enquiryControl.ss20;\nsub escapeControl by escapeControl.ss20;\nsub fileSeparatorControl by whiteUpperLeftQuadrantSquare;\nsub formFeedControl by formFeedControl.ss20;\nsub groupSeparatorControl by whiteLowerLeftQuadrantSquare;\nsub horizontalTabulationControl by horizontalTabulationControl.ss20;\nsub lineFeedControl by lineFeedControl.ss20;\nsub negativeAcknowledgeControl by negativeAcknowledgeControl.ss20;\nsub nullControl by whiteSquare;\nsub recordSeparatorControl by whiteLowerRightQuadrantSquare;\nsub shiftInControl by shiftInControl.ss20;\nsub shiftOutControl by shiftOutControl.ss20;\nsub spaceControl by upWhiteTriangle;\nsub startOfHeadingControl by startOfHeadingControl.ss20;\nsub startOfTextControl by startOfTextControl.ss20;\nsub substituteControl by substituteControl.ss20;\nsub synchronousIdleControl by synchronousIdleControl.ss20;\nsub unitSeparatorControl by whiteUpperRightQuadrantSquare;\nsub verticalTabulationControl by verticalTabulationControl.ss20;\nsub newlineControl by returnsymbol;\n} ss20;\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/fontinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>ascender</key>\n    <integer>1568</integer>\n    <key>capHeight</key>\n    <integer>1420</integer>\n    <key>copyright</key>\n    <string>© 2021 Microsoft Corporation. All Rights Reserved.</string>\n    <key>descender</key>\n    <integer>-480</integer>\n    <key>familyName</key>\n    <string>Cascadia Code</string>\n    <key>guidelines</key>\n    <array>\n      <dict>\n        <key>angle</key>\n        <integer>180</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1107</integer>\n        <key>y</key>\n        <integer>333</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>886</integer>\n        <key>y</key>\n        <integer>-1040</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1052</integer>\n        <key>y</key>\n        <integer>-543</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1492</integer>\n        <key>y</key>\n        <integer>-819</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>440</integer>\n        <key>y</key>\n        <integer>-460</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>270</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>280</integer>\n        <key>y</key>\n        <integer>416</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2194</integer>\n        <key>y</key>\n        <integer>332</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2154</integer>\n        <key>y</key>\n        <integer>342</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>270</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>240</integer>\n        <key>y</key>\n        <integer>390</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>392</integer>\n        <key>y</key>\n        <integer>408</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2004</integer>\n        <key>y</key>\n        <integer>52</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3360</integer>\n        <key>y</key>\n        <integer>466</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3320</integer>\n        <key>y</key>\n        <integer>306</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3208</integer>\n        <key>y</key>\n        <integer>146</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>-327</integer>\n        <key>y</key>\n        <integer>2226</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1117</integer>\n        <key>y</key>\n        <integer>1085</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1047</integer>\n        <key>y</key>\n        <integer>843</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>180</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1117</integer>\n        <key>y</key>\n        <integer>575</integer>\n      </dict>\n    </array>\n    <key>italicAngle</key>\n    <integer>0</integer>\n    <key>openTypeHeadCreated</key>\n    <string>2019/04/07 17:18:29</string>\n    <key>openTypeNameDesigner</key>\n    <string>Aaron Bell</string>\n    <key>openTypeNameDesignerURL</key>\n    <string>http://sajatypeworks.com</string>\n    <key>openTypeNameLicense</key>\n    <string>Microsoft supplied font. You may use this font to create, display, and print content as permitted by the license terms or terms of use, of the Microsoft product, service, or content in which this font was included. You may only (i) embed this font in content as permitted by the embedding restrictions included in this font; and (ii) temporarily download this font to a printer or other output device to help print content. Any other use is prohibited.\n \nThe following license, based on the SIL Open Font license (https://scripts.sil.org/OFL), applies to this font. Additional license terms may be found on the GitHub repository for this font (https://github.com/microsoft/cascadia-code/blob/main/LICENSE).\n \nPermission 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:\n \n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n \n2) 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.\n \n3) 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.\n \n4) 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.\n \n5) 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.\n \nTHE 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.</string>\n    <key>openTypeNameLicenseURL</key>\n    <string>https://scripts.sil.org/OFL</string>\n    <key>openTypeNameManufacturer</key>\n    <string>Saja Typeworks</string>\n    <key>openTypeNameManufacturerURL</key>\n    <string>http://sajatypeworks.com</string>\n    <key>openTypeOS2Panose</key>\n    <array>\n      <integer>2</integer>\n      <integer>11</integer>\n      <integer>6</integer>\n      <integer>9</integer>\n      <integer>2</integer>\n      <integer>0</integer>\n      <integer>0</integer>\n      <integer>2</integer>\n      <integer>0</integer>\n      <integer>4</integer>\n    </array>\n    <key>openTypeOS2Selection</key>\n    <array>\n      <integer>7</integer>\n    </array>\n    <key>openTypeOS2Type</key>\n    <array/>\n    <key>openTypeOS2VendorID</key>\n    <string>SAJA</string>\n    <key>postscriptBlueValues</key>\n    <array>\n      <integer>-20</integer>\n      <integer>0</integer>\n      <integer>1060</integer>\n      <integer>1080</integer>\n      <integer>1420</integer>\n      <integer>1440</integer>\n      <integer>1500</integer>\n      <integer>1520</integer>\n    </array>\n    <key>postscriptIsFixedPitch</key>\n    <true/>\n    <key>postscriptOtherBlues</key>\n    <array>\n      <integer>-480</integer>\n      <integer>-460</integer>\n    </array>\n    <key>postscriptStemSnapH</key>\n    <array>\n      <integer>200</integer>\n      <integer>210</integer>\n      <integer>212</integer>\n      <integer>220</integer>\n    </array>\n    <key>postscriptStemSnapV</key>\n    <array>\n      <integer>190</integer>\n      <integer>180</integer>\n    </array>\n    <key>postscriptUnderlinePosition</key>\n    <integer>-100</integer>\n    <key>postscriptUnderlineThickness</key>\n    <integer>100</integer>\n    <key>styleName</key>\n    <string>Bold</string>\n    <key>trademark</key>\n    <string>Cascadia Code is a trademark of the Microsoft group of companies.</string>\n    <key>unitsPerEm</key>\n    <integer>2048</integer>\n    <key>versionMajor</key>\n    <integer>4</integer>\n    <key>versionMinor</key>\n    <integer>300</integer>\n    <key>xHeight</key>\n    <integer>1060</integer>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0410\"/>\n  <outline>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0041\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"28\" y=\"0\" type=\"line\"/>\n      <point x=\"313\" y=\"0\" type=\"line\"/>\n      <point x=\"591\" y=\"1073\" type=\"line\"/>\n      <point x=\"609\" y=\"1073\" type=\"line\"/>\n      <point x=\"887\" y=\"0\" type=\"line\"/>\n      <point x=\"1172\" y=\"0\" type=\"line\"/>\n      <point x=\"762\" y=\"1420\" type=\"line\"/>\n      <point x=\"438\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"235\" y=\"269\" type=\"line\"/>\n      <point x=\"955\" y=\"269\" type=\"line\"/>\n      <point x=\"955\" y=\"513\" type=\"line\"/>\n      <point x=\"235\" y=\"513\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"29\" y=\"0\" type=\"line\"/>\n      <point x=\"189\" y=\"0\" type=\"line\"/>\n      <point x=\"414\" y=\"490\" type=\"line\"/>\n      <point x=\"427\" y=\"490\" type=\"line\"/>\n      <point x=\"652\" y=\"0\" type=\"line\"/>\n      <point x=\"811\" y=\"0\" type=\"line\"/>\n      <point x=\"498\" y=\"639\" type=\"line\"/>\n      <point x=\"342\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"107\" type=\"line\"/>\n      <point x=\"669\" y=\"107\" type=\"line\"/>\n      <point x=\"669\" y=\"238\" type=\"line\"/>\n      <point x=\"165\" y=\"238\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"AE\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C6\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1054\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"28\" y=\"0\" type=\"line\"/>\n      <point x=\"293\" y=\"0\" type=\"line\"/>\n      <point x=\"533\" y=\"1186\" type=\"line\"/>\n      <point x=\"725\" y=\"1186\" type=\"line\"/>\n      <point x=\"725\" y=\"1420\" type=\"line\"/>\n      <point x=\"359\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"232\" y=\"164\" type=\"line\"/>\n      <point x=\"710\" y=\"164\" type=\"line\"/>\n      <point x=\"710\" y=\"403\" type=\"line\"/>\n      <point x=\"232\" y=\"403\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"575\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"242\" type=\"line\"/>\n      <point x=\"575\" y=\"242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"575\" y=\"0\" type=\"line\"/>\n      <point x=\"813\" y=\"0\" type=\"line\"/>\n      <point x=\"813\" y=\"1420\" type=\"line\"/>\n      <point x=\"575\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"575\" y=\"590\" type=\"line\"/>\n      <point x=\"1057\" y=\"590\" type=\"line\"/>\n      <point x=\"1057\" y=\"832\" type=\"line\"/>\n      <point x=\"575\" y=\"832\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"575\" y=\"1178\" type=\"line\"/>\n      <point x=\"1117\" y=\"1178\" type=\"line\"/>\n      <point x=\"1117\" y=\"1420\" type=\"line\"/>\n      <point x=\"575\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_E_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"AEacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FC\"/>\n  <outline>\n    <component base=\"AE\"/>\n    <component base=\"acutecomb.case\" xOffset=\"119\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C1\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0102\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_breveacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abreveacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAE\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_brevedotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevedotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB6\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_brevegrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevegrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_brevehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"hookabovecomb.case\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_brevetilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevetilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01CD\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"463\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAC\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA6\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"304\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA8\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"384\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAA\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Adieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Adotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Agrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ahookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_lpha-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alpha-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2C6D\"/>\n  <guideline x=\"102\" y=\"1311\" angle=\"0\"/>\n  <anchor x=\"595\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"595\" y=\"1413\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"-27\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"652\" y=\"-27\"/>\n      <point x=\"734\" y=\"57\"/>\n      <point x=\"745\" y=\"219\" type=\"curve\"/>\n      <point x=\"830\" y=\"219\" type=\"line\"/>\n      <point x=\"758\" y=\"526\" type=\"line\"/>\n      <point x=\"758\" y=\"310\"/>\n      <point x=\"716\" y=\"224\"/>\n      <point x=\"563\" y=\"224\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"412\" y=\"224\"/>\n      <point x=\"333\" y=\"385\"/>\n      <point x=\"333\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"1019\"/>\n      <point x=\"412\" y=\"1189\"/>\n      <point x=\"563\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1189\"/>\n      <point x=\"758\" y=\"1085\"/>\n      <point x=\"758\" y=\"887\" type=\"curve\"/>\n      <point x=\"820\" y=\"1193\" type=\"line\"/>\n      <point x=\"742\" y=\"1193\" type=\"line\"/>\n      <point x=\"727\" y=\"1355\"/>\n      <point x=\"647\" y=\"1440\"/>\n      <point x=\"508\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"211\" y=\"1440\"/>\n      <point x=\"56\" y=\"1184\"/>\n      <point x=\"56\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"56\" y=\"220\"/>\n      <point x=\"211\" y=\"-27\"/>\n    </contour>\n    <contour>\n      <point x=\"776\" y=\"-13\" type=\"line\"/>\n      <point x=\"1168\" y=\"0\" type=\"line\"/>\n      <point x=\"1168\" y=\"238\" type=\"line\"/>\n      <point x=\"1022\" y=\"267\" type=\"line\"/>\n      <point x=\"1022\" y=\"731\" type=\"line\"/>\n      <point x=\"758\" y=\"731\" type=\"line\"/>\n      <point x=\"758\" y=\"341\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"758\" y=\"430\" type=\"line\"/>\n      <point x=\"1022\" y=\"430\" type=\"line\"/>\n      <point x=\"1022\" y=\"1420\" type=\"line\"/>\n      <point x=\"758\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_lpha.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alpha\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0391\"/>\n  <outline>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_lphatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alphatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0386\"/>\n  <anchor x=\"700\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"700\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"228\" y=\"0\" type=\"line\"/>\n      <point x=\"513\" y=\"0\" type=\"line\"/>\n      <point x=\"691\" y=\"1073\" type=\"line\"/>\n      <point x=\"709\" y=\"1073\" type=\"line\"/>\n      <point x=\"887\" y=\"0\" type=\"line\"/>\n      <point x=\"1172\" y=\"0\" type=\"line\"/>\n      <point x=\"862\" y=\"1420\" type=\"line\"/>\n      <point x=\"538\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"385\" y=\"269\" type=\"line\"/>\n      <point x=\"1005\" y=\"269\" type=\"line\"/>\n      <point x=\"1005\" y=\"513\" type=\"line\"/>\n      <point x=\"385\" y=\"513\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-1\" y=\"1040\" type=\"line\"/>\n      <point x=\"241\" y=\"1040\" type=\"line\"/>\n      <point x=\"318\" y=\"1420\" type=\"line\"/>\n      <point x=\"47\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Amacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0100\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0104\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1018\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1052\" y=\"-424\"/>\n      <point x=\"1094\" y=\"-422\"/>\n      <point x=\"1133\" y=\"-418\" type=\"curve\"/>\n      <point x=\"1151\" y=\"-201\" type=\"line\"/>\n      <point x=\"1121\" y=\"-204\"/>\n      <point x=\"1092\" y=\"-206\"/>\n      <point x=\"1069\" y=\"-206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"-206\"/>\n      <point x=\"978\" y=\"-176\"/>\n      <point x=\"978\" y=\"-125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"-45\"/>\n      <point x=\"1042\" y=\"0\"/>\n      <point x=\"1152\" y=\"0\" type=\"curve\"/>\n      <point x=\"1132\" y=\"32\" type=\"line\"/>\n      <point x=\"925\" y=\"35\" type=\"line\"/>\n      <point x=\"895\" y=\"0\" type=\"line\"/>\n      <point x=\"821\" y=\"-35\"/>\n      <point x=\"778\" y=\"-108\"/>\n      <point x=\"778\" y=\"-204\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"-344\"/>\n      <point x=\"865\" y=\"-424\"/>\n    </contour>\n    <component base=\"A\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>A</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C5\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"ringcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_ringacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aringacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FA\"/>\n  <outline>\n    <component base=\"acutecomb.case\" yOffset=\"240\"/>\n    <component base=\"Aring\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>Aring</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Asmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1D00\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"8\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1079\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"35\" y=\"0\" type=\"line\"/>\n      <point x=\"295\" y=\"0\" type=\"line\"/>\n      <point x=\"591\" y=\"831\" type=\"line\"/>\n      <point x=\"609\" y=\"831\" type=\"line\"/>\n      <point x=\"905\" y=\"0\" type=\"line\"/>\n      <point x=\"1165\" y=\"0\" type=\"line\"/>\n      <point x=\"755\" y=\"1079\" type=\"line\"/>\n      <point x=\"445\" y=\"1079\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"235\" y=\"197\" type=\"line\"/>\n      <point x=\"955\" y=\"197\" type=\"line\"/>\n      <point x=\"955\" y=\"407\" type=\"line\"/>\n      <point x=\"235\" y=\"407\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Astroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023A\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"548\" y=\"-330\" type=\"line\"/>\n      <point x=\"662\" y=\"318\" type=\"line\"/>\n      <point x=\"632\" y=\"433\" type=\"line\"/>\n      <point x=\"729\" y=\"985\" type=\"line\"/>\n      <point x=\"802\" y=\"1114\" type=\"line\"/>\n      <point x=\"904\" y=\"1692\" type=\"line\"/>\n      <point x=\"701\" y=\"1716\" type=\"line\"/>\n      <point x=\"628\" y=\"1299\" type=\"line\"/>\n      <point x=\"649\" y=\"1192\" type=\"line\"/>\n      <point x=\"514\" y=\"427\" type=\"line\"/>\n      <point x=\"457\" y=\"329\" type=\"line\"/>\n      <point x=\"345\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/A_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Atilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C3\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"B\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0042\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"393\" y=\"0\" type=\"line\"/>\n      <point x=\"704\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"989\" y=\"0\"/>\n      <point x=\"1151\" y=\"142\"/>\n      <point x=\"1151\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1151\" y=\"609\"/>\n      <point x=\"1011\" y=\"734\"/>\n      <point x=\"765\" y=\"734\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"734\" type=\"line\"/>\n      <point x=\"397\" y=\"628\" type=\"line\"/>\n      <point x=\"632\" y=\"628\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"628\"/>\n      <point x=\"874\" y=\"558\"/>\n      <point x=\"874\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"314\"/>\n      <point x=\"790\" y=\"243\"/>\n      <point x=\"646\" y=\"243\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"1420\" type=\"line\"/>\n      <point x=\"143\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"325\" y=\"698\" type=\"line\"/>\n      <point x=\"719\" y=\"698\" type=\"line\"/>\n      <point x=\"719\" y=\"796\" type=\"line\"/>\n      <point x=\"325\" y=\"796\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"393\" y=\"766\" type=\"line\"/>\n      <point x=\"687\" y=\"766\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"919\" y=\"766\"/>\n      <point x=\"1051\" y=\"875\"/>\n      <point x=\"1051\" y=\"1068\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"1293\"/>\n      <point x=\"881\" y=\"1420\"/>\n      <point x=\"582\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"1420\" type=\"line\"/>\n      <point x=\"397\" y=\"1177\" type=\"line\"/>\n      <point x=\"572\" y=\"1177\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"1177\"/>\n      <point x=\"774\" y=\"1128\"/>\n      <point x=\"774\" y=\"1032\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"926\"/>\n      <point x=\"710\" y=\"872\"/>\n      <point x=\"586\" y=\"872\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"872\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/B_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"B.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"251\" y=\"0\" type=\"line\"/>\n      <point x=\"535\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"0\"/>\n      <point x=\"796\" y=\"58\"/>\n      <point x=\"796\" y=\"157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"253\"/>\n      <point x=\"697\" y=\"308\"/>\n      <point x=\"522\" y=\"308\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"308\" type=\"line\"/>\n      <point x=\"253\" y=\"257\" type=\"line\"/>\n      <point x=\"530\" y=\"257\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"598\" y=\"257\"/>\n      <point x=\"637\" y=\"236\"/>\n      <point x=\"637\" y=\"199\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"158\"/>\n      <point x=\"602\" y=\"135\"/>\n      <point x=\"541\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"199\" y=\"285\" type=\"line\"/>\n      <point x=\"517\" y=\"285\" type=\"line\"/>\n      <point x=\"517\" y=\"353\" type=\"line\"/>\n      <point x=\"199\" y=\"353\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"251\" y=\"334\" type=\"line\"/>\n      <point x=\"504\" y=\"334\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"652\" y=\"334\"/>\n      <point x=\"737\" y=\"386\"/>\n      <point x=\"737\" y=\"477\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"581\"/>\n      <point x=\"653\" y=\"639\"/>\n      <point x=\"507\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"639\" type=\"line\"/>\n      <point x=\"253\" y=\"504\" type=\"line\"/>\n      <point x=\"499\" y=\"504\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"504\"/>\n      <point x=\"567\" y=\"485\"/>\n      <point x=\"567\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"408\"/>\n      <point x=\"546\" y=\"388\"/>\n      <point x=\"510\" y=\"388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"388\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/B_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Be-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0411\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"393\" y=\"0\" type=\"line\"/>\n      <point x=\"690\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"0\"/>\n      <point x=\"1137\" y=\"163\"/>\n      <point x=\"1137\" y=\"447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1137\" y=\"730\"/>\n      <point x=\"974\" y=\"893\"/>\n      <point x=\"690\" y=\"893\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"893\" type=\"line\"/>\n      <point x=\"377\" y=\"649\" type=\"line\"/>\n      <point x=\"624\" y=\"649\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"649\"/>\n      <point x=\"860\" y=\"576\"/>\n      <point x=\"860\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"318\"/>\n      <point x=\"774\" y=\"243\"/>\n      <point x=\"624\" y=\"243\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"1420\" type=\"line\"/>\n      <point x=\"143\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"185\" y=\"1177\" type=\"line\"/>\n      <point x=\"1033\" y=\"1177\" type=\"line\"/>\n      <point x=\"1033\" y=\"1420\" type=\"line\"/>\n      <point x=\"185\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/B_eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Beta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0392\"/>\n  <outline>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"C\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0043\"/>\n  <anchor x=\"665\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"695\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"748\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"-20\"/>\n      <point x=\"996\" y=\"2\"/>\n      <point x=\"1114\" y=\"48\" type=\"curve\"/>\n      <point x=\"1068\" y=\"292\" type=\"line\"/>\n      <point x=\"974\" y=\"252\"/>\n      <point x=\"880\" y=\"232\"/>\n      <point x=\"782\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"232\"/>\n      <point x=\"347\" y=\"395\"/>\n      <point x=\"347\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"347\" y=\"1019\"/>\n      <point x=\"496\" y=\"1188\"/>\n      <point x=\"726\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"1188\"/>\n      <point x=\"931\" y=\"1145\"/>\n      <point x=\"991\" y=\"1071\" type=\"curve\"/>\n      <point x=\"1139\" y=\"1265\" type=\"line\"/>\n      <point x=\"1064\" y=\"1377\"/>\n      <point x=\"912\" y=\"1440\"/>\n      <point x=\"724\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"1440\"/>\n      <point x=\"69\" y=\"1174\"/>\n      <point x=\"69\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"69\" y=\"224\"/>\n      <point x=\"297\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"C.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"531\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"-9\"/>\n      <point x=\"706\" y=\"1\"/>\n      <point x=\"789\" y=\"22\" type=\"curve\"/>\n      <point x=\"755\" y=\"150\" type=\"line\"/>\n      <point x=\"690\" y=\"134\"/>\n      <point x=\"621\" y=\"126\"/>\n      <point x=\"556\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"126\"/>\n      <point x=\"227\" y=\"192\"/>\n      <point x=\"227\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"445\"/>\n      <point x=\"342\" y=\"513\"/>\n      <point x=\"516\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"513\"/>\n      <point x=\"679\" y=\"496\"/>\n      <point x=\"727\" y=\"467\" type=\"curve\"/>\n      <point x=\"806\" y=\"588\" type=\"line\"/>\n      <point x=\"749\" y=\"626\"/>\n      <point x=\"650\" y=\"648\"/>\n      <point x=\"514\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"648\"/>\n      <point x=\"65\" y=\"528\"/>\n      <point x=\"65\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"65\" y=\"101\"/>\n      <point x=\"222\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"CR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"000D\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0106\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"acutecomb.case\" xOffset=\"174\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"95\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010C\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"caroncomb.case\" xOffset=\"95\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C7\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"cedillacomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0108\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"95\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010A\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"95\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_he-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Che-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0427\"/>\n  <anchor x=\"550\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"550\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"530\" y=\"509\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"509\" type=\"line\"/>\n      <point x=\"828\" y=\"771\" type=\"line\"/>\n      <point x=\"530\" y=\"771\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"395\" y=\"771\"/>\n      <point x=\"337\" y=\"847\"/>\n      <point x=\"337\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"337\" y=\"1420\" type=\"line\"/>\n      <point x=\"73\" y=\"1420\" type=\"line\"/>\n      <point x=\"73\" y=\"1025\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"73\" y=\"663\"/>\n      <point x=\"209\" y=\"509\"/>\n    </contour>\n    <contour>\n      <point x=\"763\" y=\"0\" type=\"line\"/>\n      <point x=\"1027\" y=\"0\" type=\"line\"/>\n      <point x=\"1027\" y=\"1420\" type=\"line\"/>\n      <point x=\"763\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_hedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Chedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B6\"/>\n  <anchor x=\"570\" y=\"-290\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"915\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"243\" type=\"line\"/>\n      <point x=\"915\" y=\"243\" type=\"line\"/>\n    </contour>\n    <component base=\"Che-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>Che-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_hi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Chi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A7\"/>\n  <outline>\n    <component base=\"X\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/C_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023B\"/>\n  <anchor x=\"665\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"695\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"595\" y=\"-330\" type=\"line\"/>\n      <point x=\"951\" y=\"1692\" type=\"line\"/>\n      <point x=\"748\" y=\"1716\" type=\"line\"/>\n      <point x=\"392\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"D\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0044\"/>\n  <anchor x=\"530\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"530\" y=\"710\" name=\"center\"/>\n  <anchor x=\"530\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"484\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"0\"/>\n      <point x=\"1151\" y=\"229\"/>\n      <point x=\"1151\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1151\" y=\"1179\"/>\n      <point x=\"929\" y=\"1420\"/>\n      <point x=\"484\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"1420\" type=\"line\"/>\n      <point x=\"377\" y=\"1168\" type=\"line\"/>\n      <point x=\"484\" y=\"1168\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"1168\"/>\n      <point x=\"874\" y=\"1004\"/>\n      <point x=\"874\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"403\"/>\n      <point x=\"744\" y=\"252\"/>\n      <point x=\"484\" y=\"252\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"D.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"251\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"0\"/>\n      <point x=\"810\" y=\"103\"/>\n      <point x=\"810\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"531\"/>\n      <point x=\"690\" y=\"639\"/>\n      <point x=\"452\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"639\" type=\"line\"/>\n      <point x=\"253\" y=\"504\" type=\"line\"/>\n      <point x=\"452\" y=\"504\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"504\"/>\n      <point x=\"651\" y=\"440\"/>\n      <point x=\"651\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"194\"/>\n      <point x=\"584\" y=\"135\"/>\n      <point x=\"452\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_african.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0189\"/>\n  <outline>\n    <component base=\"Eth\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010E\"/>\n  <outline>\n    <component base=\"D\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_croat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dcroat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0110\"/>\n  <outline>\n    <component base=\"Eth\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"De-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0414\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"208\" type=\"line\"/>\n      <point x=\"437\" y=\"328\"/>\n      <point x=\"476\" y=\"662\"/>\n      <point x=\"476\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"1420\" type=\"line\"/>\n      <point x=\"215\" y=\"1420\" type=\"line\"/>\n      <point x=\"215\" y=\"869\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"215\" y=\"662\"/>\n      <point x=\"173\" y=\"339\"/>\n      <point x=\"94\" y=\"233\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"13\" y=\"-290\" type=\"line\"/>\n      <point x=\"277\" y=\"-290\" type=\"line\"/>\n      <point x=\"277\" y=\"183\" type=\"line\"/>\n      <point x=\"13\" y=\"183\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"923\" y=\"-290\" type=\"line\"/>\n      <point x=\"1187\" y=\"-290\" type=\"line\"/>\n      <point x=\"1187\" y=\"183\" type=\"line\"/>\n      <point x=\"923\" y=\"183\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"796\" y=\"0\" type=\"line\"/>\n      <point x=\"1059\" y=\"0\" type=\"line\"/>\n      <point x=\"1059\" y=\"1420\" type=\"line\"/>\n      <point x=\"796\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"341\" y=\"1177\" type=\"line\"/>\n      <point x=\"961\" y=\"1177\" type=\"line\"/>\n      <point x=\"961\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1187\" y=\"243\" type=\"line\"/>\n      <point x=\"13\" y=\"243\" type=\"line\"/>\n      <point x=\"13\" y=\"0\" type=\"line\"/>\n      <point x=\"1187\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_e-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"De-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"38\" y=\"0\" type=\"line\"/>\n      <point x=\"323\" y=\"0\" type=\"line\"/>\n      <point x=\"591\" y=\"1073\" type=\"line\"/>\n      <point x=\"609\" y=\"1073\" type=\"line\"/>\n      <point x=\"876\" y=\"0\" type=\"line\"/>\n      <point x=\"1161\" y=\"0\" type=\"line\"/>\n      <point x=\"761\" y=\"1420\" type=\"line\"/>\n      <point x=\"438\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"13\" y=\"-290\" type=\"line\"/>\n      <point x=\"277\" y=\"-290\" type=\"line\"/>\n      <point x=\"277\" y=\"183\" type=\"line\"/>\n      <point x=\"13\" y=\"183\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"13\" y=\"0\" type=\"line\"/>\n      <point x=\"1187\" y=\"0\" type=\"line\"/>\n      <point x=\"1187\" y=\"243\" type=\"line\"/>\n      <point x=\"13\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"923\" y=\"-290\" type=\"line\"/>\n      <point x=\"1187\" y=\"-290\" type=\"line\"/>\n      <point x=\"1187\" y=\"183\" type=\"line\"/>\n      <point x=\"923\" y=\"183\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_elta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Delta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0394\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"28\" y=\"0\" type=\"line\"/>\n      <point x=\"313\" y=\"0\" type=\"line\"/>\n      <point x=\"591\" y=\"1073\" type=\"line\"/>\n      <point x=\"609\" y=\"1073\" type=\"line\"/>\n      <point x=\"887\" y=\"0\" type=\"line\"/>\n      <point x=\"1172\" y=\"0\" type=\"line\"/>\n      <point x=\"762\" y=\"1420\" type=\"line\"/>\n      <point x=\"438\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"175\" y=\"0\" type=\"line\"/>\n      <point x=\"1015\" y=\"0\" type=\"line\"/>\n      <point x=\"1015\" y=\"243\" type=\"line\"/>\n      <point x=\"175\" y=\"243\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0402\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"388\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"587\" y=\"0\" type=\"line\"/>\n      <point x=\"929\" y=\"0\"/>\n      <point x=\"1099\" y=\"152\"/>\n      <point x=\"1099\" y=\"460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"762\"/>\n      <point x=\"943\" y=\"911\"/>\n      <point x=\"630\" y=\"911\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"911\" type=\"line\"/>\n      <point x=\"393\" y=\"667\" type=\"line\"/>\n      <point x=\"630\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"667\"/>\n      <point x=\"824\" y=\"598\"/>\n      <point x=\"824\" y=\"460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"322\"/>\n      <point x=\"746\" y=\"253\"/>\n      <point x=\"587\" y=\"253\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"215\" y=\"0\" type=\"line\"/>\n      <point x=\"478\" y=\"0\" type=\"line\"/>\n      <point x=\"478\" y=\"1410\" type=\"line\"/>\n      <point x=\"215\" y=\"1410\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-10\" y=\"1158\" type=\"line\"/>\n      <point x=\"857\" y=\"1158\" type=\"line\"/>\n      <point x=\"857\" y=\"1420\" type=\"line\"/>\n      <point x=\"-10\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_ze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0405\"/>\n  <outline>\n    <component base=\"S\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/D_zhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dzhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040F\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"813\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"1420\" type=\"line\"/>\n      <point x=\"813\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-290\" type=\"line\"/>\n      <point x=\"732\" y=\"-290\" type=\"line\"/>\n      <point x=\"732\" y=\"130\" type=\"line\"/>\n      <point x=\"468\" y=\"130\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"243\" type=\"line\"/>\n      <point x=\"123\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0404\"/>\n  <anchor x=\"675\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"705\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"758\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"-20\"/>\n      <point x=\"1006\" y=\"2\"/>\n      <point x=\"1124\" y=\"48\" type=\"curve\"/>\n      <point x=\"1078\" y=\"292\" type=\"line\"/>\n      <point x=\"984\" y=\"252\"/>\n      <point x=\"890\" y=\"232\"/>\n      <point x=\"792\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"232\"/>\n      <point x=\"347\" y=\"395\"/>\n      <point x=\"347\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"347\" y=\"1020\"/>\n      <point x=\"500\" y=\"1189\"/>\n      <point x=\"736\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"1189\"/>\n      <point x=\"941\" y=\"1146\"/>\n      <point x=\"1001\" y=\"1072\" type=\"curve\"/>\n      <point x=\"1149\" y=\"1265\" type=\"line\"/>\n      <point x=\"1074\" y=\"1377\"/>\n      <point x=\"922\" y=\"1440\"/>\n      <point x=\"734\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"317\" y=\"1440\"/>\n      <point x=\"79\" y=\"1174\"/>\n      <point x=\"79\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"79\" y=\"224\"/>\n      <point x=\"307\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"182\" y=\"605\" type=\"line\"/>\n      <point x=\"862\" y=\"605\" type=\"line\"/>\n      <point x=\"862\" y=\"849\" type=\"line\"/>\n      <point x=\"182\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0045\"/>\n  <anchor x=\"630\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"630\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"1420\" type=\"line\"/>\n      <point x=\"143\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"243\" type=\"line\"/>\n      <point x=\"143\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"589\" type=\"line\"/>\n      <point x=\"937\" y=\"589\" type=\"line\"/>\n      <point x=\"937\" y=\"833\" type=\"line\"/>\n      <point x=\"143\" y=\"833\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"1177\" type=\"line\"/>\n      <point x=\"1117\" y=\"1177\" type=\"line\"/>\n      <point x=\"1117\" y=\"1420\" type=\"line\"/>\n      <point x=\"143\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"772\" y=\"0\" type=\"line\"/>\n      <point x=\"772\" y=\"135\" type=\"line\"/>\n      <point x=\"109\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"254\" type=\"line\"/>\n      <point x=\"646\" y=\"254\" type=\"line\"/>\n      <point x=\"646\" y=\"385\" type=\"line\"/>\n      <point x=\"109\" y=\"385\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"504\" type=\"line\"/>\n      <point x=\"772\" y=\"504\" type=\"line\"/>\n      <point x=\"772\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C9\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"acutecomb.case\" xOffset=\"109\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ebreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0114\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"brevecomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011A\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"caroncomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CA\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBE\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"30\"/>\n    <component base=\"acutecomb.case\" xOffset=\"493\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC6\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"30\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC0\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"30\"/>\n    <component base=\"gravecomb.case\" xOffset=\"334\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC2\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"30\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"414\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC4\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"30\"/>\n    <component base=\"tildecomb.case\" xOffset=\"40\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CB\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0116\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB8\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_f-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ef-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0424\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"98\"/>\n      <point x=\"1142\" y=\"298\"/>\n      <point x=\"1142\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"1129\"/>\n      <point x=\"960\" y=\"1342\"/>\n      <point x=\"600\" y=\"1342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1342\"/>\n      <point x=\"58\" y=\"1129\"/>\n      <point x=\"58\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"58\" y=\"298\"/>\n      <point x=\"240\" y=\"98\"/>\n    </contour>\n    <contour>\n      <point x=\"474\" y=\"-20\" type=\"line\"/>\n      <point x=\"724\" y=\"-20\" type=\"line\"/>\n      <point x=\"724\" y=\"208\" type=\"line\"/>\n      <point x=\"691\" y=\"271\" type=\"line\"/>\n      <point x=\"691\" y=\"1189\" type=\"line\"/>\n      <point x=\"724\" y=\"1248\" type=\"line\"/>\n      <point x=\"724\" y=\"1460\" type=\"line\"/>\n      <point x=\"474\" y=\"1460\" type=\"line\"/>\n      <point x=\"474\" y=\"1248\" type=\"line\"/>\n      <point x=\"507\" y=\"1189\" type=\"line\"/>\n      <point x=\"507\" y=\"271\" type=\"line\"/>\n      <point x=\"474\" y=\"208\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"347\"/>\n      <point x=\"333\" y=\"464\"/>\n      <point x=\"333\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"964\"/>\n      <point x=\"422\" y=\"1094\"/>\n      <point x=\"600\" y=\"1094\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"1094\"/>\n      <point x=\"867\" y=\"964\"/>\n      <point x=\"867\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"464\"/>\n      <point x=\"778\" y=\"347\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_f-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ef-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"50\"/>\n      <point x=\"1151\" y=\"284\"/>\n      <point x=\"1151\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1151\" y=\"1128\"/>\n      <point x=\"969\" y=\"1370\"/>\n      <point x=\"600\" y=\"1370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"231\" y=\"1370\"/>\n      <point x=\"49\" y=\"1128\"/>\n      <point x=\"49\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"49\" y=\"284\"/>\n      <point x=\"231\" y=\"50\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-80\" type=\"line\"/>\n      <point x=\"730\" y=\"-80\" type=\"line\"/>\n      <point x=\"730\" y=\"104\" type=\"line\"/>\n      <point x=\"701\" y=\"174\" type=\"line\"/>\n      <point x=\"701\" y=\"1269\" type=\"line\"/>\n      <point x=\"730\" y=\"1334\" type=\"line\"/>\n      <point x=\"730\" y=\"1500\" type=\"line\"/>\n      <point x=\"468\" y=\"1500\" type=\"line\"/>\n      <point x=\"468\" y=\"1334\" type=\"line\"/>\n      <point x=\"497\" y=\"1269\" type=\"line\"/>\n      <point x=\"497\" y=\"174\" type=\"line\"/>\n      <point x=\"468\" y=\"104\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"282\"/>\n      <point x=\"326\" y=\"441\"/>\n      <point x=\"326\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"973\"/>\n      <point x=\"416\" y=\"1139\"/>\n      <point x=\"600\" y=\"1139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"785\" y=\"1139\"/>\n      <point x=\"874\" y=\"973\"/>\n      <point x=\"874\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"441\"/>\n      <point x=\"785\" y=\"282\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Egrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C8\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBA\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_l-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"El-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041B\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"20\" y=\"1\" type=\"line\"/>\n      <point x=\"446\" y=\"1\"/>\n      <point x=\"482\" y=\"206\"/>\n      <point x=\"482\" y=\"538\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"1420\" type=\"line\"/>\n      <point x=\"221\" y=\"1420\" type=\"line\"/>\n      <point x=\"221\" y=\"531\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"221\" y=\"354\"/>\n      <point x=\"228\" y=\"244\"/>\n      <point x=\"20\" y=\"244\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"813\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"1420\" type=\"line\"/>\n      <point x=\"813\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"325\" y=\"1177\" type=\"line\"/>\n      <point x=\"1040\" y=\"1177\" type=\"line\"/>\n      <point x=\"1040\" y=\"1420\" type=\"line\"/>\n      <point x=\"325\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_l-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"El-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"28\" y=\"0\" type=\"line\"/>\n      <point x=\"315\" y=\"0\" type=\"line\"/>\n      <point x=\"591\" y=\"1073\" type=\"line\"/>\n      <point x=\"609\" y=\"1073\" type=\"line\"/>\n      <point x=\"885\" y=\"0\" type=\"line\"/>\n      <point x=\"1172\" y=\"0\" type=\"line\"/>\n      <point x=\"762\" y=\"1420\" type=\"line\"/>\n      <point x=\"438\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_m-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Em-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041C\"/>\n  <outline>\n    <component base=\"M\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Emacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0112\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"macroncomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_n-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"En-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041D\"/>\n  <outline>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_ndescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Endescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04A2\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"915\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"243\" type=\"line\"/>\n      <point x=\"915\" y=\"243\" type=\"line\"/>\n    </contour>\n    <component base=\"En-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>En-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_ng.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eng\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014A\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"493\" y=\"-480\" type=\"line\"/>\n      <point x=\"699\" y=\"-477\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"955\" y=\"-473\"/>\n      <point x=\"1069\" y=\"-355\"/>\n      <point x=\"1069\" y=\"-96\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"184\" type=\"line\"/>\n      <point x=\"815\" y=\"184\" type=\"line\"/>\n      <point x=\"815\" y=\"-88\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"-187\"/>\n      <point x=\"771\" y=\"-231\"/>\n      <point x=\"671\" y=\"-237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"-240\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0118\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"966\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"-424\"/>\n      <point x=\"1036\" y=\"-421\"/>\n      <point x=\"1073\" y=\"-415\" type=\"curve\"/>\n      <point x=\"1091\" y=\"-195\" type=\"line\"/>\n      <point x=\"1061\" y=\"-202\"/>\n      <point x=\"1032\" y=\"-206\"/>\n      <point x=\"1009\" y=\"-206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"-206\"/>\n      <point x=\"918\" y=\"-177\"/>\n      <point x=\"918\" y=\"-126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"-46\"/>\n      <point x=\"985\" y=\"0\"/>\n      <point x=\"1100\" y=\"0\" type=\"curve\"/>\n      <point x=\"1080\" y=\"32\" type=\"line\"/>\n      <point x=\"840\" y=\"30\" type=\"line\"/>\n      <point x=\"840\" y=\"-28\" type=\"line\"/>\n      <point x=\"762\" y=\"-52\"/>\n      <point x=\"718\" y=\"-118\"/>\n      <point x=\"718\" y=\"-212\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"-347\"/>\n      <point x=\"808\" y=\"-424\"/>\n    </contour>\n    <component base=\"E\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_open.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0190\"/>\n  <anchor x=\"680\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"680\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"690\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"321\" y=\"1440\"/>\n      <point x=\"167\" y=\"1300\"/>\n      <point x=\"167\" y=\"1093\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"923\"/>\n      <point x=\"271\" y=\"799\"/>\n      <point x=\"529\" y=\"763\" type=\"curve\"/>\n      <point x=\"512\" y=\"819\" type=\"line\"/>\n      <point x=\"512\" y=\"702\" type=\"line\"/>\n      <point x=\"529\" y=\"756\" type=\"line\"/>\n      <point x=\"311\" y=\"752\"/>\n      <point x=\"111\" y=\"628\"/>\n      <point x=\"111\" y=\"394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"111\" y=\"143\"/>\n      <point x=\"328\" y=\"-20\"/>\n      <point x=\"674\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"-20\"/>\n      <point x=\"984\" y=\"-4\"/>\n      <point x=\"1117\" y=\"48\" type=\"curve\"/>\n      <point x=\"1071\" y=\"290\" type=\"line\"/>\n      <point x=\"919\" y=\"244\"/>\n      <point x=\"839\" y=\"232\"/>\n      <point x=\"669\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"494\" y=\"232\"/>\n      <point x=\"388\" y=\"301\"/>\n      <point x=\"388\" y=\"415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"547\"/>\n      <point x=\"500\" y=\"620\"/>\n      <point x=\"666\" y=\"620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"816\" y=\"620\" type=\"line\"/>\n      <point x=\"838\" y=\"872\" type=\"line\"/>\n      <point x=\"553\" y=\"880\"/>\n      <point x=\"440\" y=\"937\"/>\n      <point x=\"440\" y=\"1058\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1132\"/>\n      <point x=\"512\" y=\"1189\"/>\n      <point x=\"691\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"816\" y=\"1189\"/>\n      <point x=\"918\" y=\"1151\"/>\n      <point x=\"977\" y=\"1080\" type=\"curve\"/>\n      <point x=\"1142\" y=\"1269\" type=\"line\"/>\n      <point x=\"1053\" y=\"1370\"/>\n      <point x=\"907\" y=\"1440\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_psilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Epsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0395\"/>\n  <outline>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_psilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Epsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0388\"/>\n  <anchor x=\"700\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"700\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"343\" y=\"0\" type=\"line\"/>\n      <point x=\"607\" y=\"0\" type=\"line\"/>\n      <point x=\"607\" y=\"1420\" type=\"line\"/>\n      <point x=\"343\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"343\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"243\" type=\"line\"/>\n      <point x=\"343\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"343\" y=\"589\" type=\"line\"/>\n      <point x=\"937\" y=\"589\" type=\"line\"/>\n      <point x=\"937\" y=\"833\" type=\"line\"/>\n      <point x=\"343\" y=\"833\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-18\" y=\"1040\" type=\"line\"/>\n      <point x=\"224\" y=\"1040\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n      <point x=\"31\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"343\" y=\"1177\" type=\"line\"/>\n      <point x=\"1117\" y=\"1177\" type=\"line\"/>\n      <point x=\"1117\" y=\"1420\" type=\"line\"/>\n      <point x=\"343\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_r-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Er-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0420\"/>\n  <outline>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_reversed-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ereversed-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042D\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"530\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"476\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"-20\"/>\n      <point x=\"1121\" y=\"256\"/>\n      <point x=\"1121\" y=\"713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"1183\"/>\n      <point x=\"893\" y=\"1440\"/>\n      <point x=\"455\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"1440\"/>\n      <point x=\"204\" y=\"1421\"/>\n      <point x=\"86\" y=\"1382\" type=\"curve\"/>\n      <point x=\"149\" y=\"1139\" type=\"line\"/>\n      <point x=\"245\" y=\"1172\"/>\n      <point x=\"341\" y=\"1189\"/>\n      <point x=\"446\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"1189\"/>\n      <point x=\"853\" y=\"1013\"/>\n      <point x=\"853\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"409\"/>\n      <point x=\"698\" y=\"231\"/>\n      <point x=\"437\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"231\"/>\n      <point x=\"272\" y=\"253\"/>\n      <point x=\"178\" y=\"325\" type=\"curve\"/>\n      <point x=\"17\" y=\"134\" type=\"line\"/>\n      <point x=\"136\" y=\"31\"/>\n      <point x=\"296\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"333\" y=\"605\" type=\"line\"/>\n      <point x=\"1018\" y=\"605\" type=\"line\"/>\n      <point x=\"1018\" y=\"849\" type=\"line\"/>\n      <point x=\"333\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_reversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ereversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"018E\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"120\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"570\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"1057\" y=\"0\" type=\"line\"/>\n      <point x=\"1057\" y=\"1420\" type=\"line\"/>\n      <point x=\"793\" y=\"1420\" type=\"line\"/>\n      <point x=\"793\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1057\" y=\"0\" type=\"line\"/>\n      <point x=\"1057\" y=\"243\" type=\"line\"/>\n      <point x=\"83\" y=\"243\" type=\"line\"/>\n      <point x=\"83\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1057\" y=\"589\" type=\"line\"/>\n      <point x=\"1057\" y=\"833\" type=\"line\"/>\n      <point x=\"263\" y=\"833\" type=\"line\"/>\n      <point x=\"263\" y=\"589\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1057\" y=\"1177\" type=\"line\"/>\n      <point x=\"1057\" y=\"1420\" type=\"line\"/>\n      <point x=\"83\" y=\"1420\" type=\"line\"/>\n      <point x=\"83\" y=\"1177\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_s-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Es-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0421\"/>\n  <outline>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_sh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Esh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A9\"/>\n  <outline>\n    <component base=\"Sigma\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_ta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0397\"/>\n  <outline>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_tatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Etatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0389\"/>\n  <anchor x=\"688\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"688\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"813\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"1420\" type=\"line\"/>\n      <point x=\"813\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"323\" y=\"0\" type=\"line\"/>\n      <point x=\"587\" y=\"0\" type=\"line\"/>\n      <point x=\"587\" y=\"1420\" type=\"line\"/>\n      <point x=\"323\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-18\" y=\"1040\" type=\"line\"/>\n      <point x=\"224\" y=\"1040\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n      <point x=\"31\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"365\" y=\"585\" type=\"line\"/>\n      <point x=\"1040\" y=\"585\" type=\"line\"/>\n      <point x=\"1040\" y=\"829\" type=\"line\"/>\n      <point x=\"365\" y=\"829\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_th.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D0\"/>\n  <outline>\n    <contour>\n      <point x=\"12\" y=\"585\" type=\"line\"/>\n      <point x=\"651\" y=\"585\" type=\"line\"/>\n      <point x=\"651\" y=\"829\" type=\"line\"/>\n      <point x=\"12\" y=\"829\" type=\"line\"/>\n    </contour>\n    <component base=\"D\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Etilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBC\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"tildecomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/E_zh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ezh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B7\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"556\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"-20\"/>\n      <point x=\"1099\" y=\"149\"/>\n      <point x=\"1099\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"692\"/>\n      <point x=\"901\" y=\"859\"/>\n      <point x=\"554\" y=\"864\" type=\"curve\"/>\n      <point x=\"662\" y=\"821\" type=\"line\"/>\n      <point x=\"1033\" y=\"1162\" type=\"line\"/>\n      <point x=\"1033\" y=\"1420\" type=\"line\"/>\n      <point x=\"146\" y=\"1420\" type=\"line\"/>\n      <point x=\"146\" y=\"1177\" type=\"line\"/>\n      <point x=\"840\" y=\"1177\" type=\"line\"/>\n      <point x=\"758\" y=\"1238\" type=\"line\"/>\n      <point x=\"319\" y=\"834\" type=\"line\"/>\n      <point x=\"339\" y=\"626\" type=\"line\"/>\n      <point x=\"474\" y=\"626\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"626\"/>\n      <point x=\"822\" y=\"552\"/>\n      <point x=\"822\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"303\"/>\n      <point x=\"725\" y=\"232\"/>\n      <point x=\"561\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"429\" y=\"232\"/>\n      <point x=\"353\" y=\"268\"/>\n      <point x=\"243\" y=\"359\" type=\"curve\"/>\n      <point x=\"57\" y=\"151\" type=\"line\"/>\n      <point x=\"186\" y=\"37\"/>\n      <point x=\"349\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/F_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"F\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0046\"/>\n  <anchor x=\"660\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"660\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"163\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"1420\" type=\"line\"/>\n      <point x=\"163\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"163\" y=\"529\" type=\"line\"/>\n      <point x=\"940\" y=\"529\" type=\"line\"/>\n      <point x=\"940\" y=\"774\" type=\"line\"/>\n      <point x=\"163\" y=\"774\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"163\" y=\"1177\" type=\"line\"/>\n      <point x=\"1137\" y=\"1177\" type=\"line\"/>\n      <point x=\"1137\" y=\"1420\" type=\"line\"/>\n      <point x=\"163\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/F_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"F.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"223\" type=\"line\"/>\n      <point x=\"643\" y=\"223\" type=\"line\"/>\n      <point x=\"643\" y=\"359\" type=\"line\"/>\n      <point x=\"109\" y=\"359\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"504\" type=\"line\"/>\n      <point x=\"772\" y=\"504\" type=\"line\"/>\n      <point x=\"772\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/F_hook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Fhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0191\"/>\n  <anchor x=\"660\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"-32\" y=\"-480\" type=\"line\"/>\n      <point x=\"57\" y=\"-477\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"-473\"/>\n      <point x=\"427\" y=\"-355\"/>\n      <point x=\"427\" y=\"-96\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"427\" y=\"184\" type=\"line\"/>\n      <point x=\"163\" y=\"184\" type=\"line\"/>\n      <point x=\"163\" y=\"-88\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"163\" y=\"-187\"/>\n      <point x=\"123\" y=\"-235\"/>\n      <point x=\"29\" y=\"-237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-34\" y=\"-240\" type=\"line\"/>\n    </contour>\n    <component base=\"F\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"G\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0047\"/>\n  <anchor x=\"695\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"675\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"702\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"-20\"/>\n      <point x=\"1048\" y=\"22\"/>\n      <point x=\"1107\" y=\"40\" type=\"curve\"/>\n      <point x=\"1012\" y=\"282\" type=\"line\"/>\n      <point x=\"950\" y=\"264\"/>\n      <point x=\"852\" y=\"232\"/>\n      <point x=\"726\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"232\"/>\n      <point x=\"327\" y=\"395\"/>\n      <point x=\"327\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"327\" y=\"1019\"/>\n      <point x=\"466\" y=\"1189\"/>\n      <point x=\"706\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"1189\"/>\n      <point x=\"909\" y=\"1142\"/>\n      <point x=\"971\" y=\"1063\" type=\"curve\"/>\n      <point x=\"1137\" y=\"1254\" type=\"line\"/>\n      <point x=\"1053\" y=\"1372\"/>\n      <point x=\"901\" y=\"1440\"/>\n      <point x=\"694\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"1440\"/>\n      <point x=\"49\" y=\"1174\"/>\n      <point x=\"49\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"49\" y=\"224\"/>\n      <point x=\"267\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"845\" y=\"40\" type=\"line\"/>\n      <point x=\"1107\" y=\"40\" type=\"line\"/>\n      <point x=\"1107\" y=\"735\" type=\"line\"/>\n      <point x=\"845\" y=\"735\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"610\" y=\"492\" type=\"line\"/>\n      <point x=\"1101\" y=\"492\" type=\"line\"/>\n      <point x=\"1101\" y=\"735\" type=\"line\"/>\n      <point x=\"610\" y=\"735\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"G.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"513\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"640\" y=\"-9\"/>\n      <point x=\"748\" y=\"10\"/>\n      <point x=\"787\" y=\"18\" type=\"curve\"/>\n      <point x=\"730\" y=\"144\" type=\"line\"/>\n      <point x=\"684\" y=\"135\"/>\n      <point x=\"617\" y=\"121\"/>\n      <point x=\"530\" y=\"120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"328\" y=\"118\"/>\n      <point x=\"227\" y=\"179\"/>\n      <point x=\"227\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"445\"/>\n      <point x=\"334\" y=\"513\"/>\n      <point x=\"516\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"513\"/>\n      <point x=\"686\" y=\"499\"/>\n      <point x=\"737\" y=\"477\" type=\"curve\"/>\n      <point x=\"808\" y=\"588\" type=\"line\"/>\n      <point x=\"761\" y=\"624\"/>\n      <point x=\"655\" y=\"648\"/>\n      <point x=\"507\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"648\"/>\n      <point x=\"65\" y=\"528\"/>\n      <point x=\"65\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"65\" y=\"92\"/>\n      <point x=\"213\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"643\" y=\"18\" type=\"line\"/>\n      <point x=\"787\" y=\"18\" type=\"line\"/>\n      <point x=\"787\" y=\"348\" type=\"line\"/>\n      <point x=\"643\" y=\"348\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"448\" y=\"213\" type=\"line\"/>\n      <point x=\"783\" y=\"213\" type=\"line\"/>\n      <point x=\"783\" y=\"348\" type=\"line\"/>\n      <point x=\"448\" y=\"348\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_amma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gamma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0393\"/>\n  <outline>\n    <component base=\"Ge-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_ammaafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gammaafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0194\"/>\n  <anchor x=\"600\" y=\"-400\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-462\" type=\"line\"/>\n      <point x=\"825\" y=\"-462\"/>\n      <point x=\"956\" y=\"-366\"/>\n      <point x=\"956\" y=\"-196\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"956\" y=\"-98\"/>\n      <point x=\"915\" y=\"-26\"/>\n      <point x=\"771\" y=\"111\" type=\"curve\"/>\n      <point x=\"556\" y=\"76\" type=\"line\"/>\n      <point x=\"663\" y=\"-47\"/>\n      <point x=\"696\" y=\"-100\"/>\n      <point x=\"696\" y=\"-152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"-209\"/>\n      <point x=\"662\" y=\"-242\"/>\n      <point x=\"600\" y=\"-242\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-462\" type=\"curve\"/>\n      <point x=\"600\" y=\"-242\" type=\"line\"/>\n      <point x=\"538\" y=\"-242\"/>\n      <point x=\"504\" y=\"-209\"/>\n      <point x=\"504\" y=\"-152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"504\" y=\"-100\"/>\n      <point x=\"537\" y=\"-47\"/>\n      <point x=\"644\" y=\"76\" type=\"curve\"/>\n      <point x=\"429\" y=\"111\" type=\"line\"/>\n      <point x=\"285\" y=\"-26\"/>\n      <point x=\"244\" y=\"-98\"/>\n      <point x=\"244\" y=\"-196\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"-366\"/>\n      <point x=\"375\" y=\"-462\"/>\n    </contour>\n    <contour>\n      <point x=\"395\" y=\"0\" type=\"line\"/>\n      <point x=\"605\" y=\"68\" type=\"line\"/>\n      <point x=\"805\" y=\"0\" type=\"line\"/>\n      <point x=\"1172\" y=\"1420\" type=\"line\"/>\n      <point x=\"899\" y=\"1420\" type=\"line\"/>\n      <point x=\"609\" y=\"237\" type=\"line\"/>\n      <point x=\"591\" y=\"237\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n      <point x=\"28\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gbreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011E\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"brevecomb.case\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E6\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"caroncomb.case\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011C\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0122\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"95\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0120\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ge-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0413\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"620\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"163\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"1420\" type=\"line\"/>\n      <point x=\"163\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"163\" y=\"1177\" type=\"line\"/>\n      <point x=\"1090\" y=\"1177\" type=\"line\"/>\n      <point x=\"1090\" y=\"1420\" type=\"line\"/>\n      <point x=\"163\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_ermandbls.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Germandbls\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E9E\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"1111\"/>\n      <point x=\"467\" y=\"1189\"/>\n      <point x=\"656\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"749\" y=\"1188\"/>\n      <point x=\"840\" y=\"1148\"/>\n      <point x=\"933\" y=\"1068\" type=\"curve\"/>\n      <point x=\"1121\" y=\"1270\" type=\"line\"/>\n      <point x=\"986\" y=\"1384\"/>\n      <point x=\"833\" y=\"1440\"/>\n      <point x=\"656\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"282\" y=\"1440\"/>\n      <point x=\"123\" y=\"1288\"/>\n      <point x=\"123\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"661\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"987\" y=\"-20\"/>\n      <point x=\"1174\" y=\"150\"/>\n      <point x=\"1174\" y=\"446\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1174\" y=\"678\"/>\n      <point x=\"1032\" y=\"834\"/>\n      <point x=\"783\" y=\"876\" type=\"curve\"/>\n      <point x=\"878\" y=\"805\" type=\"line\"/>\n      <point x=\"1122\" y=\"1270\" type=\"line\"/>\n      <point x=\"821\" y=\"1208\" type=\"line\"/>\n      <point x=\"546\" y=\"687\" type=\"line\"/>\n      <point x=\"721\" y=\"637\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"605\"/>\n      <point x=\"896\" y=\"528\"/>\n      <point x=\"896\" y=\"432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"305\"/>\n      <point x=\"816\" y=\"233\"/>\n      <point x=\"677\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"233\"/>\n      <point x=\"545\" y=\"240\"/>\n      <point x=\"485\" y=\"251\" type=\"curve\"/>\n      <point x=\"459\" y=\"3\" type=\"line\"/>\n      <point x=\"509\" y=\"-11\"/>\n      <point x=\"583\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_hestroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ghestroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0492\"/>\n  <outline>\n    <contour>\n      <point x=\"-4\" y=\"549\" type=\"line\"/>\n      <point x=\"725\" y=\"549\" type=\"line\"/>\n      <point x=\"725\" y=\"811\" type=\"line\"/>\n      <point x=\"-4\" y=\"811\" type=\"line\"/>\n    </contour>\n    <component base=\"Ge-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>Ge-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_heupturn-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gheupturn-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0490\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"163\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"1420\" type=\"line\"/>\n      <point x=\"163\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"163\" y=\"1177\" type=\"line\"/>\n      <point x=\"1110\" y=\"1177\" type=\"line\"/>\n      <point x=\"1110\" y=\"1420\" type=\"line\"/>\n      <point x=\"163\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"847\" y=\"1270\" type=\"line\"/>\n      <point x=\"1110\" y=\"1270\" type=\"line\"/>\n      <point x=\"1110\" y=\"1730\" type=\"line\"/>\n      <point x=\"847\" y=\"1730\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0403\"/>\n  <outline>\n    <component base=\"Ge-cy\"/>\n    <component base=\"acutecomb.case\" xOffset=\"99\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gsmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0262\"/>\n  <anchor x=\"675\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"655\" y=\"1079\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"682\" y=\"-15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"-15\"/>\n      <point x=\"1062\" y=\"17\"/>\n      <point x=\"1127\" y=\"30\" type=\"curve\"/>\n      <point x=\"1032\" y=\"280\" type=\"line\"/>\n      <point x=\"961\" y=\"266\"/>\n      <point x=\"846\" y=\"242\"/>\n      <point x=\"706\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"242\"/>\n      <point x=\"346\" y=\"338\"/>\n      <point x=\"346\" y=\"549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"732\"/>\n      <point x=\"485\" y=\"837\"/>\n      <point x=\"726\" y=\"837\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"837\"/>\n      <point x=\"944\" y=\"817\"/>\n      <point x=\"1011\" y=\"783\" type=\"curve\"/>\n      <point x=\"1127\" y=\"1004\" type=\"line\"/>\n      <point x=\"1039\" y=\"1061\"/>\n      <point x=\"889\" y=\"1094\"/>\n      <point x=\"714\" y=\"1094\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"1094\"/>\n      <point x=\"69\" y=\"892\"/>\n      <point x=\"69\" y=\"541\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"69\" y=\"164\"/>\n      <point x=\"274\" y=\"-15\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"30\" type=\"line\"/>\n      <point x=\"1127\" y=\"30\" type=\"line\"/>\n      <point x=\"1127\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"660\" y=\"388\" type=\"line\"/>\n      <point x=\"1121\" y=\"388\" type=\"line\"/>\n      <point x=\"1121\" y=\"609\" type=\"line\"/>\n      <point x=\"660\" y=\"609\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/G_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E4\"/>\n  <anchor x=\"715\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"695\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"701\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"-20\"/>\n      <point x=\"1030\" y=\"22\"/>\n      <point x=\"1086\" y=\"40\" type=\"curve\"/>\n      <point x=\"991\" y=\"282\" type=\"line\"/>\n      <point x=\"933\" y=\"264\"/>\n      <point x=\"842\" y=\"232\"/>\n      <point x=\"725\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"232\"/>\n      <point x=\"326\" y=\"395\"/>\n      <point x=\"326\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"1019\"/>\n      <point x=\"465\" y=\"1189\"/>\n      <point x=\"705\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"1189\"/>\n      <point x=\"908\" y=\"1142\"/>\n      <point x=\"970\" y=\"1063\" type=\"curve\"/>\n      <point x=\"1136\" y=\"1254\" type=\"line\"/>\n      <point x=\"1062\" y=\"1372\"/>\n      <point x=\"900\" y=\"1440\"/>\n      <point x=\"693\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1440\"/>\n      <point x=\"48\" y=\"1174\"/>\n      <point x=\"48\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"48\" y=\"224\"/>\n      <point x=\"266\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"824\" y=\"40\" type=\"line\"/>\n      <point x=\"1086\" y=\"40\" type=\"line\"/>\n      <point x=\"1086\" y=\"775\" type=\"line\"/>\n      <point x=\"824\" y=\"775\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"639\" y=\"387\" type=\"line\"/>\n      <point x=\"1219\" y=\"387\" type=\"line\"/>\n      <point x=\"1219\" y=\"630\" type=\"line\"/>\n      <point x=\"639\" y=\"630\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/H_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"H\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0048\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"813\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"1420\" type=\"line\"/>\n      <point x=\"813\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"585\" type=\"line\"/>\n      <point x=\"1040\" y=\"585\" type=\"line\"/>\n      <point x=\"1040\" y=\"829\" type=\"line\"/>\n      <point x=\"165\" y=\"829\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/H_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"H.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"593\" y=\"0\" type=\"line\"/>\n      <point x=\"744\" y=\"0\" type=\"line\"/>\n      <point x=\"744\" y=\"639\" type=\"line\"/>\n      <point x=\"593\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"95\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"251\" type=\"line\"/>\n      <point x=\"718\" y=\"251\" type=\"line\"/>\n      <point x=\"718\" y=\"386\" type=\"line\"/>\n      <point x=\"124\" y=\"386\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/H_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0425\"/>\n  <outline>\n    <component base=\"X\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/H_adescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B2\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"915\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"243\" type=\"line\"/>\n      <point x=\"915\" y=\"243\" type=\"line\"/>\n    </contour>\n    <component base=\"Ha-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>Ha-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/H_ardsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hardsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042A\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"473\" y=\"0\" type=\"line\"/>\n      <point x=\"694\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"0\"/>\n      <point x=\"1141\" y=\"187\"/>\n      <point x=\"1141\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"756\"/>\n      <point x=\"963\" y=\"943\"/>\n      <point x=\"694\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"943\" type=\"line\"/>\n      <point x=\"453\" y=\"699\" type=\"line\"/>\n      <point x=\"636\" y=\"699\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"699\"/>\n      <point x=\"864\" y=\"615\"/>\n      <point x=\"864\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"328\"/>\n      <point x=\"780\" y=\"243\"/>\n      <point x=\"636\" y=\"243\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"223\" y=\"0\" type=\"line\"/>\n      <point x=\"487\" y=\"0\" type=\"line\"/>\n      <point x=\"487\" y=\"1420\" type=\"line\"/>\n      <point x=\"223\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-10\" y=\"1177\" type=\"line\"/>\n      <point x=\"314\" y=\"1177\" type=\"line\"/>\n      <point x=\"314\" y=\"1420\" type=\"line\"/>\n      <point x=\"-10\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/H_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0126\"/>\n  <outline>\n    <contour>\n      <point x=\"42\" y=\"1002\" type=\"line\"/>\n      <point x=\"1158\" y=\"1002\" type=\"line\"/>\n      <point x=\"1158\" y=\"1192\" type=\"line\"/>\n      <point x=\"42\" y=\"1192\" type=\"line\"/>\n    </contour>\n    <component base=\"H\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>H</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/H_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021E\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/H_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0124\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/H_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E24\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0406\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0049\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"467\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"1420\" type=\"line\"/>\n      <point x=\"467\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"238\" type=\"line\"/>\n      <point x=\"151\" y=\"238\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"1183\" type=\"line\"/>\n      <point x=\"1049\" y=\"1183\" type=\"line\"/>\n      <point x=\"1049\" y=\"1420\" type=\"line\"/>\n      <point x=\"151\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"344\" y=\"0\" type=\"line\"/>\n      <point x=\"495\" y=\"0\" type=\"line\"/>\n      <point x=\"495\" y=\"639\" type=\"line\"/>\n      <point x=\"344\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"0\" type=\"line\"/>\n      <point x=\"725\" y=\"0\" type=\"line\"/>\n      <point x=\"725\" y=\"135\" type=\"line\"/>\n      <point x=\"115\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"505\" type=\"line\"/>\n      <point x=\"725\" y=\"505\" type=\"line\"/>\n      <point x=\"725\" y=\"639\" type=\"line\"/>\n      <point x=\"115\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_J_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"IJ\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0132\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"627\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"-20\"/>\n      <point x=\"1094\" y=\"154\"/>\n      <point x=\"1094\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1094\" y=\"1420\" type=\"line\"/>\n      <point x=\"832\" y=\"1420\" type=\"line\"/>\n      <point x=\"832\" y=\"507\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"314\"/>\n      <point x=\"771\" y=\"231\"/>\n      <point x=\"632\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"231\"/>\n      <point x=\"453\" y=\"291\"/>\n      <point x=\"453\" y=\"427\" type=\"curve\"/>\n      <point x=\"181\" y=\"427\" type=\"line\"/>\n      <point x=\"181\" y=\"128\"/>\n      <point x=\"329\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"33\" y=\"568\" type=\"line\"/>\n      <point x=\"619\" y=\"568\" type=\"line\"/>\n      <point x=\"619\" y=\"811\" type=\"line\"/>\n      <point x=\"33\" y=\"811\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"187\" y=\"568\" type=\"line\"/>\n      <point x=\"449\" y=\"568\" type=\"line\"/>\n      <point x=\"449\" y=\"1420\" type=\"line\"/>\n      <point x=\"187\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"33\" y=\"1177\" type=\"line\"/>\n      <point x=\"599\" y=\"1177\" type=\"line\"/>\n      <point x=\"599\" y=\"1420\" type=\"line\"/>\n      <point x=\"33\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"685\" y=\"1177\" type=\"line\"/>\n      <point x=\"926\" y=\"1177\" type=\"line\"/>\n      <point x=\"926\" y=\"1420\" type=\"line\"/>\n      <point x=\"685\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_J__acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"IJ_acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"IJ\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-195\"/>\n    <component base=\"acutecomb.case\" xOffset=\"359\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ia-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042F\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"564\" y=\"636\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"829\" y=\"636\" type=\"line\"/>\n      <point x=\"829\" y=\"747\" type=\"line\"/>\n      <point x=\"584\" y=\"747\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"747\"/>\n      <point x=\"372\" y=\"835\"/>\n      <point x=\"372\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"1111\"/>\n      <point x=\"455\" y=\"1177\"/>\n      <point x=\"584\" y=\"1177\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"1177\" type=\"line\"/>\n      <point x=\"849\" y=\"1420\" type=\"line\"/>\n      <point x=\"584\" y=\"1420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"1420\"/>\n      <point x=\"95\" y=\"1266\"/>\n      <point x=\"95\" y=\"996\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"95\" y=\"636\"/>\n      <point x=\"428\" y=\"636\"/>\n    </contour>\n    <contour>\n      <point x=\"55\" y=\"-5\" type=\"line\"/>\n      <point x=\"115\" y=\"-5\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"-5\"/>\n      <point x=\"465\" y=\"100\"/>\n      <point x=\"479\" y=\"251\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"376\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"465\"/>\n      <point x=\"538\" y=\"505\"/>\n      <point x=\"666\" y=\"505\" type=\"curve\"/>\n      <point x=\"666\" y=\"596\" type=\"line\"/>\n      <point x=\"475\" y=\"596\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"370\" y=\"596\"/>\n      <point x=\"273\" y=\"591\"/>\n      <point x=\"247\" y=\"458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"225\" y=\"348\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"250\"/>\n      <point x=\"157\" y=\"238\"/>\n      <point x=\"105\" y=\"238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"55\" y=\"238\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"495\" y=\"505\" type=\"line\"/>\n      <point x=\"851\" y=\"503\" type=\"line\"/>\n      <point x=\"851\" y=\"747\" type=\"line\"/>\n      <point x=\"495\" y=\"745\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"815\" y=\"0\" type=\"line\"/>\n      <point x=\"1079\" y=\"0\" type=\"line\"/>\n      <point x=\"1079\" y=\"1420\" type=\"line\"/>\n      <point x=\"815\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CD\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ibreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012C\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Icircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CE\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CF\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0130\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dotaccentcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECA\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ie-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0415\"/>\n  <outline>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_egrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iegrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0400\"/>\n  <outline>\n    <component base=\"Ie-cy\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Igrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CC\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ihookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC8\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ii-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0418\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"311\" y=\"0\" type=\"line\"/>\n      <point x=\"413\" y=\"0\" type=\"line\"/>\n      <point x=\"778\" y=\"962\" type=\"line\"/>\n      <point x=\"847\" y=\"962\" type=\"line\"/>\n      <point x=\"847\" y=\"1420\" type=\"line\"/>\n      <point x=\"787\" y=\"1420\" type=\"line\"/>\n      <point x=\"422\" y=\"458\" type=\"line\"/>\n      <point x=\"311\" y=\"458\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"131\" y=\"0\" type=\"line\"/>\n      <point x=\"393\" y=\"0\" type=\"line\"/>\n      <point x=\"393\" y=\"1420\" type=\"line\"/>\n      <point x=\"131\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"807\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"1420\" type=\"line\"/>\n      <point x=\"807\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_igrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iigrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040D\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_ishort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iishort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0419\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"brevecomb-cy.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_macron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Imacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E2\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Imacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012A\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_o-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Io-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0401\"/>\n  <outline>\n    <component base=\"Ie-cy\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012E\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"653\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"-424\"/>\n      <point x=\"723\" y=\"-421\"/>\n      <point x=\"759\" y=\"-415\" type=\"curve\"/>\n      <point x=\"777\" y=\"-195\" type=\"line\"/>\n      <point x=\"747\" y=\"-202\"/>\n      <point x=\"718\" y=\"-206\"/>\n      <point x=\"695\" y=\"-206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"-206\"/>\n      <point x=\"604\" y=\"-177\"/>\n      <point x=\"604\" y=\"-126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"-46\"/>\n      <point x=\"671\" y=\"0\"/>\n      <point x=\"787\" y=\"0\" type=\"curve\"/>\n      <point x=\"787\" y=\"32\" type=\"line\"/>\n      <point x=\"527\" y=\"30\" type=\"line\"/>\n      <point x=\"527\" y=\"-28\" type=\"line\"/>\n      <point x=\"449\" y=\"-52\"/>\n      <point x=\"404\" y=\"-118\"/>\n      <point x=\"404\" y=\"-212\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"-347\"/>\n      <point x=\"495\" y=\"-424\"/>\n    </contour>\n    <component base=\"I\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>I</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_ota.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iota\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0399\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_otaafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotaafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0196\"/>\n  <outline>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_otadieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotadieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AA\"/>\n  <outline>\n    <component base=\"Iota\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_otatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038A\"/>\n  <anchor x=\"690\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"690\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"568\" y=\"0\" type=\"line\"/>\n      <point x=\"832\" y=\"0\" type=\"line\"/>\n      <point x=\"832\" y=\"1420\" type=\"line\"/>\n      <point x=\"568\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"351\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"238\" type=\"line\"/>\n      <point x=\"351\" y=\"238\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-18\" y=\"1040\" type=\"line\"/>\n      <point x=\"224\" y=\"1040\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n      <point x=\"31\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"351\" y=\"1183\" type=\"line\"/>\n      <point x=\"1049\" y=\"1183\" type=\"line\"/>\n      <point x=\"1049\" y=\"1420\" type=\"line\"/>\n      <point x=\"351\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ismall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"465\" y=\"0\" type=\"line\"/>\n      <point x=\"735\" y=\"0\" type=\"line\"/>\n      <point x=\"735\" y=\"1060\" type=\"line\"/>\n      <point x=\"465\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"168\" y=\"0\" type=\"line\"/>\n      <point x=\"1032\" y=\"0\" type=\"line\"/>\n      <point x=\"1032\" y=\"249\" type=\"line\"/>\n      <point x=\"168\" y=\"249\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"168\" y=\"811\" type=\"line\"/>\n      <point x=\"1032\" y=\"811\" type=\"line\"/>\n      <point x=\"1032\" y=\"1060\" type=\"line\"/>\n      <point x=\"168\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Itilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0128\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/I_u-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iu-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042E\"/>\n  <anchor x=\"540\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"540\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"779\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"-20\"/>\n      <point x=\"1141\" y=\"195\"/>\n      <point x=\"1141\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"1219\"/>\n      <point x=\"1033\" y=\"1440\"/>\n      <point x=\"779\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"519\" y=\"1440\"/>\n      <point x=\"409\" y=\"1219\"/>\n      <point x=\"409\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"195\"/>\n      <point x=\"519\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"63\" y=\"0\" type=\"line\"/>\n      <point x=\"325\" y=\"0\" type=\"line\"/>\n      <point x=\"325\" y=\"1420\" type=\"line\"/>\n      <point x=\"63\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"162\" y=\"585\" type=\"line\"/>\n      <point x=\"493\" y=\"585\" type=\"line\"/>\n      <point x=\"493\" y=\"829\" type=\"line\"/>\n      <point x=\"162\" y=\"829\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"769\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"232\"/>\n      <point x=\"664\" y=\"372\"/>\n      <point x=\"664\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"1043\"/>\n      <point x=\"696\" y=\"1189\"/>\n      <point x=\"769\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"1189\"/>\n      <point x=\"877\" y=\"1043\"/>\n      <point x=\"877\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"372\"/>\n      <point x=\"845\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/J_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"J\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"790\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"574\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"-20\"/>\n      <point x=\"1079\" y=\"164\"/>\n      <point x=\"1079\" y=\"484\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"1420\" type=\"line\"/>\n      <point x=\"815\" y=\"1420\" type=\"line\"/>\n      <point x=\"815\" y=\"484\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"322\"/>\n      <point x=\"730\" y=\"231\"/>\n      <point x=\"579\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"231\"/>\n      <point x=\"344\" y=\"324\"/>\n      <point x=\"344\" y=\"484\" type=\"curve\"/>\n      <point x=\"69\" y=\"484\" type=\"line\"/>\n      <point x=\"69\" y=\"165\"/>\n      <point x=\"251\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"490\" y=\"1177\" type=\"line\"/>\n      <point x=\"956\" y=\"1177\" type=\"line\"/>\n      <point x=\"956\" y=\"1420\" type=\"line\"/>\n      <point x=\"490\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/J_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Jacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"J\"/>\n    <component base=\"acutecomb.case\" xOffset=\"269\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/J_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Jcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0134\"/>\n  <outline>\n    <component base=\"J\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"190\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/J_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Je-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0408\"/>\n  <outline>\n    <component base=\"J\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"K\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004B\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"620\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"276\" y=\"452\" type=\"line\"/>\n      <point x=\"805\" y=\"452\"/>\n      <point x=\"1111\" y=\"915\"/>\n      <point x=\"1111\" y=\"1420\" type=\"curve\"/>\n      <point x=\"843\" y=\"1420\" type=\"line\"/>\n      <point x=\"843\" y=\"1063\"/>\n      <point x=\"673\" y=\"717\"/>\n      <point x=\"294\" y=\"717\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"133\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"1420\" type=\"line\"/>\n      <point x=\"133\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"853\" y=\"0\" type=\"line\"/>\n      <point x=\"1179\" y=\"0\" type=\"line\"/>\n      <point x=\"814\" y=\"731\" type=\"line\"/>\n      <point x=\"568\" y=\"629\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"K.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"202\" y=\"167\" type=\"line\"/>\n      <point x=\"565\" y=\"167\"/>\n      <point x=\"775\" y=\"437\"/>\n      <point x=\"775\" y=\"639\" type=\"curve\"/>\n      <point x=\"619\" y=\"639\" type=\"line\"/>\n      <point x=\"619\" y=\"516\"/>\n      <point x=\"497\" y=\"305\"/>\n      <point x=\"215\" y=\"305\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"639\" y=\"0\" type=\"line\"/>\n      <point x=\"823\" y=\"0\" type=\"line\"/>\n      <point x=\"567\" y=\"387\" type=\"line\"/>\n      <point x=\"430\" y=\"324\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"535\" y=\"724\" type=\"line\"/>\n      <point x=\"699\" y=\"724\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"724\"/>\n      <point x=\"942\" y=\"799\"/>\n      <point x=\"952\" y=\"918\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"967\" y=\"1078\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1154\"/>\n      <point x=\"1002\" y=\"1182\"/>\n      <point x=\"1063\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"1182\" type=\"line\"/>\n      <point x=\"1128\" y=\"1425\" type=\"line\"/>\n      <point x=\"1043\" y=\"1425\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"1425\"/>\n      <point x=\"723\" y=\"1363\"/>\n      <point x=\"708\" y=\"1158\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"695\" y=\"974\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"871\"/>\n      <point x=\"648\" y=\"832\"/>\n      <point x=\"546\" y=\"832\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"295\" y=\"588\" type=\"line\"/>\n      <point x=\"628\" y=\"588\" type=\"line\"/>\n      <point x=\"628\" y=\"832\" type=\"line\"/>\n      <point x=\"295\" y=\"832\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1053\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1147\" y=\"-5\" type=\"line\"/>\n      <point x=\"1147\" y=\"238\" type=\"line\"/>\n      <point x=\"1082\" y=\"238\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"238\"/>\n      <point x=\"993\" y=\"266\"/>\n      <point x=\"986\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"502\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"622\"/>\n      <point x=\"880\" y=\"696\"/>\n      <point x=\"699\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"696\" type=\"line\"/>\n      <point x=\"546\" y=\"588\" type=\"line\"/>\n      <point x=\"657\" y=\"588\"/>\n      <point x=\"698\" y=\"547\"/>\n      <point x=\"705\" y=\"446\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"262\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"57\"/>\n      <point x=\"837\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E30\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"acutecomb.case\" xOffset=\"99\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_adescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"049A\"/>\n  <anchor x=\"590\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"535\" y=\"724\" type=\"line\"/>\n      <point x=\"699\" y=\"724\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"724\"/>\n      <point x=\"942\" y=\"799\"/>\n      <point x=\"952\" y=\"918\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"967\" y=\"1078\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1154\"/>\n      <point x=\"1002\" y=\"1182\"/>\n      <point x=\"1063\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"1182\" type=\"line\"/>\n      <point x=\"1128\" y=\"1425\" type=\"line\"/>\n      <point x=\"1043\" y=\"1425\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"1425\"/>\n      <point x=\"723\" y=\"1363\"/>\n      <point x=\"708\" y=\"1158\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"695\" y=\"974\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"871\"/>\n      <point x=\"648\" y=\"832\"/>\n      <point x=\"546\" y=\"832\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"915\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"238\" type=\"line\"/>\n      <point x=\"915\" y=\"238\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"295\" y=\"588\" type=\"line\"/>\n      <point x=\"628\" y=\"588\" type=\"line\"/>\n      <point x=\"628\" y=\"832\" type=\"line\"/>\n      <point x=\"295\" y=\"832\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1053\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1147\" y=\"-5\" type=\"line\"/>\n      <point x=\"1147\" y=\"238\" type=\"line\"/>\n      <point x=\"1082\" y=\"238\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"238\"/>\n      <point x=\"993\" y=\"266\"/>\n      <point x=\"986\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"502\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"622\"/>\n      <point x=\"880\" y=\"696\"/>\n      <point x=\"699\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"696\" type=\"line\"/>\n      <point x=\"546\" y=\"588\" type=\"line\"/>\n      <point x=\"657\" y=\"588\"/>\n      <point x=\"698\" y=\"547\"/>\n      <point x=\"705\" y=\"446\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"262\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"57\"/>\n      <point x=\"837\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_aiS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"KaiSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CF\"/>\n  <anchor x=\"600\" y=\"-395\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"276\" y=\"452\" type=\"line\"/>\n      <point x=\"805\" y=\"452\"/>\n      <point x=\"1111\" y=\"915\"/>\n      <point x=\"1111\" y=\"1420\" type=\"curve\"/>\n      <point x=\"843\" y=\"1420\" type=\"line\"/>\n      <point x=\"843\" y=\"1063\"/>\n      <point x=\"673\" y=\"717\"/>\n      <point x=\"294\" y=\"717\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"133\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"1420\" type=\"line\"/>\n      <point x=\"133\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"915\" y=\"-395\" type=\"line\"/>\n      <point x=\"1179\" y=\"-395\" type=\"line\"/>\n      <point x=\"1179\" y=\"6\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1179\" y=\"76\"/>\n      <point x=\"1161\" y=\"146\"/>\n      <point x=\"1132\" y=\"193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"777\" type=\"line\"/>\n      <point x=\"538\" y=\"675\" type=\"line\"/>\n      <point x=\"859\" y=\"149\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"79\"/>\n      <point x=\"915\" y=\"31\"/>\n      <point x=\"915\" y=\"-14\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_appa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kappa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039A\"/>\n  <outline>\n    <component base=\"K\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0136\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E32\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040C\"/>\n  <outline>\n    <component base=\"Ka-cy\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/K_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Klinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E34\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"L\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004C\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"275\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"1420\" type=\"line\"/>\n      <point x=\"143\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"243\" type=\"line\"/>\n      <point x=\"143\" y=\"243\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"L.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"772\" y=\"0\" type=\"line\"/>\n      <point x=\"772\" y=\"135\" type=\"line\"/>\n      <point x=\"109\" y=\"135\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_I_G_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"LIG\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0139\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-246\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_ambda.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lambda\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039B\"/>\n  <outline>\n    <component base=\"El-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023D\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"641\" type=\"line\"/>\n      <point x=\"836\" y=\"641\" type=\"line\"/>\n      <point x=\"836\" y=\"883\" type=\"line\"/>\n      <point x=\"-20\" y=\"883\" type=\"line\"/>\n    </contour>\n    <component base=\"L\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013D\"/>\n  <outline>\n    <contour>\n      <point x=\"704\" y=\"1188\" type=\"line\"/>\n      <point x=\"951\" y=\"1188\" type=\"line\"/>\n      <point x=\"1041\" y=\"1568\" type=\"line\"/>\n      <point x=\"754\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"L\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>L</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013B\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_dot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ldot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013F\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"periodcentered\" xOffset=\"233\" yOffset=\"220\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>L</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>periodcentered</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ldotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E36\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0409\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"53\" y=\"0\" type=\"line\"/>\n      <point x=\"336\" y=\"0\"/>\n      <point x=\"425\" y=\"105\"/>\n      <point x=\"425\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"1420\" type=\"line\"/>\n      <point x=\"187\" y=\"1420\" type=\"line\"/>\n      <point x=\"187\" y=\"445\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"187\" y=\"305\"/>\n      <point x=\"155\" y=\"262\"/>\n      <point x=\"53\" y=\"262\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"531\" y=\"0\" type=\"line\"/>\n      <point x=\"733\" y=\"0\" type=\"line\"/>\n      <point x=\"733\" y=\"1420\" type=\"line\"/>\n      <point x=\"531\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"672\" y=\"0\" type=\"line\"/>\n      <point x=\"789\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1001\" y=\"0\"/>\n      <point x=\"1141\" y=\"187\"/>\n      <point x=\"1141\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"756\"/>\n      <point x=\"1001\" y=\"943\"/>\n      <point x=\"789\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"652\" y=\"943\" type=\"line\"/>\n      <point x=\"652\" y=\"716\" type=\"line\"/>\n      <point x=\"698\" y=\"716\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"716\"/>\n      <point x=\"867\" y=\"626\"/>\n      <point x=\"867\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"317\"/>\n      <point x=\"806\" y=\"227\"/>\n      <point x=\"698\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"227\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"245\" y=\"1177\" type=\"line\"/>\n      <point x=\"697\" y=\"1177\" type=\"line\"/>\n      <point x=\"697\" y=\"1420\" type=\"line\"/>\n      <point x=\"245\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Llinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E3A\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_middletilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lmiddletilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2C62\"/>\n  <anchor x=\"710\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"694\" y=\"710\" name=\"center\"/>\n  <anchor x=\"440\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1158\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"-14\" y=\"562\" type=\"line\"/>\n      <point x=\"219\" y=\"562\" type=\"line\"/>\n      <point x=\"219\" y=\"647\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"695\"/>\n      <point x=\"240\" y=\"716\"/>\n      <point x=\"290\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"716\"/>\n      <point x=\"392\" y=\"695\"/>\n      <point x=\"453.2\" y=\"660.8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"622\"/>\n      <point x=\"597\" y=\"590\"/>\n      <point x=\"682\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"590\"/>\n      <point x=\"914\" y=\"669\"/>\n      <point x=\"914\" y=\"854\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"970\" type=\"line\"/>\n      <point x=\"682\" y=\"970\" type=\"line\"/>\n      <point x=\"682\" y=\"886\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"682\" y=\"838\"/>\n      <point x=\"665\" y=\"817\"/>\n      <point x=\"621\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"571\" y=\"817\"/>\n      <point x=\"525\" y=\"842\"/>\n      <point x=\"474\" y=\"872\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"399\" y=\"916\"/>\n      <point x=\"329\" y=\"943\"/>\n      <point x=\"242\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"64\" y=\"943\"/>\n      <point x=\"-14\" y=\"864\"/>\n      <point x=\"-14\" y=\"679\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"319\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"243\" type=\"line\"/>\n      <point x=\"319\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"319\" y=\"0\" type=\"line\"/>\n      <point x=\"582\" y=\"0\" type=\"line\"/>\n      <point x=\"582\" y=\"1420\" type=\"line\"/>\n      <point x=\"319\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0141\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"260\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"58\" y=\"430\" type=\"line\"/>\n      <point x=\"864\" y=\"825\" type=\"line\"/>\n      <point x=\"864\" y=\"1085\" type=\"line\"/>\n      <point x=\"58\" y=\"690\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"227\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"244\" type=\"line\"/>\n      <point x=\"227\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"227\" y=\"0\" type=\"line\"/>\n      <point x=\"490\" y=\"0\" type=\"line\"/>\n      <point x=\"490\" y=\"1420\" type=\"line\"/>\n      <point x=\"227\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/L_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lsmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"029F\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"540\" name=\"center\"/>\n  <anchor x=\"260\" y=\"1079\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1079\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"142\" y=\"0\" type=\"line\"/>\n      <point x=\"412\" y=\"0\" type=\"line\"/>\n      <point x=\"412\" y=\"1079\" type=\"line\"/>\n      <point x=\"142\" y=\"1079\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"142\" y=\"0\" type=\"line\"/>\n      <point x=\"1119\" y=\"0\" type=\"line\"/>\n      <point x=\"1119\" y=\"250\" type=\"line\"/>\n      <point x=\"142\" y=\"250\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/M_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"M\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004D\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"566\" y=\"497\" type=\"line\"/>\n      <point x=\"692\" y=\"497\" type=\"line\"/>\n      <point x=\"812\" y=\"1168\" type=\"line\"/>\n      <point x=\"875\" y=\"1168\" type=\"line\"/>\n      <point x=\"859\" y=\"1420\" type=\"line\"/>\n      <point x=\"712\" y=\"1420\" type=\"line\"/>\n      <point x=\"608\" y=\"785\" type=\"line\"/>\n      <point x=\"596\" y=\"785\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"357\" y=\"0\" type=\"line\"/>\n      <point x=\"357\" y=\"1420\" type=\"line\"/>\n      <point x=\"111\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"497\" type=\"line\"/>\n      <point x=\"628\" y=\"497\" type=\"line\"/>\n      <point x=\"600\" y=\"785\" type=\"line\"/>\n      <point x=\"592\" y=\"785\" type=\"line\"/>\n      <point x=\"488\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n      <point x=\"325\" y=\"1168\" type=\"line\"/>\n      <point x=\"388\" y=\"1168\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"843\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"1420\" type=\"line\"/>\n      <point x=\"843\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/M_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"M.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"395\" y=\"162\" type=\"line\"/>\n      <point x=\"487\" y=\"162\" type=\"line\"/>\n      <point x=\"589\" y=\"499\" type=\"line\"/>\n      <point x=\"631\" y=\"499\" type=\"line\"/>\n      <point x=\"630\" y=\"639\" type=\"line\"/>\n      <point x=\"527\" y=\"639\" type=\"line\"/>\n      <point x=\"426\" y=\"288\" type=\"line\"/>\n      <point x=\"417\" y=\"288\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"87\" y=\"0\" type=\"line\"/>\n      <point x=\"232\" y=\"0\" type=\"line\"/>\n      <point x=\"232\" y=\"639\" type=\"line\"/>\n      <point x=\"87\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"353\" y=\"162\" type=\"line\"/>\n      <point x=\"435\" y=\"162\" type=\"line\"/>\n      <point x=\"420\" y=\"288\" type=\"line\"/>\n      <point x=\"414\" y=\"288\" type=\"line\"/>\n      <point x=\"313\" y=\"639\" type=\"line\"/>\n      <point x=\"209\" y=\"639\" type=\"line\"/>\n      <point x=\"208\" y=\"499\" type=\"line\"/>\n      <point x=\"251\" y=\"499\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"609\" y=\"0\" type=\"line\"/>\n      <point x=\"753\" y=\"0\" type=\"line\"/>\n      <point x=\"753\" y=\"639\" type=\"line\"/>\n      <point x=\"609\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/M_u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Mu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039C\"/>\n  <outline>\n    <component base=\"M\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"N\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004E\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"672\" y=\"0\" type=\"line\"/>\n      <point x=\"845\" y=\"0\" type=\"line\"/>\n      <point x=\"845\" y=\"310\" type=\"line\"/>\n      <point x=\"778\" y=\"310\" type=\"line\"/>\n      <point x=\"528\" y=\"1420\" type=\"line\"/>\n      <point x=\"313\" y=\"1420\" type=\"line\"/>\n      <point x=\"313\" y=\"1110\" type=\"line\"/>\n      <point x=\"422\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"131\" y=\"0\" type=\"line\"/>\n      <point x=\"385\" y=\"0\" type=\"line\"/>\n      <point x=\"385\" y=\"1420\" type=\"line\"/>\n      <point x=\"131\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"815\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"1420\" type=\"line\"/>\n      <point x=\"815\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"N.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"546\" y=\"0\" type=\"line\"/>\n      <point x=\"615\" y=\"0\" type=\"line\"/>\n      <point x=\"615\" y=\"193\" type=\"line\"/>\n      <point x=\"558\" y=\"193\" type=\"line\"/>\n      <point x=\"294\" y=\"639\" type=\"line\"/>\n      <point x=\"194\" y=\"639\" type=\"line\"/>\n      <point x=\"194\" y=\"446\" type=\"line\"/>\n      <point x=\"282\" y=\"446\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"101\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"594\" y=\"0\" type=\"line\"/>\n      <point x=\"739\" y=\"0\" type=\"line\"/>\n      <point x=\"739\" y=\"639\" type=\"line\"/>\n      <point x=\"594\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0143\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"acutecomb.case.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ncaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0147\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ncommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0145\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_hookleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nhookleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019D\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"-74\" y=\"-480\" type=\"line\"/>\n      <point x=\"15\" y=\"-477\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"271\" y=\"-473\"/>\n      <point x=\"385\" y=\"-355\"/>\n      <point x=\"385\" y=\"-96\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"184\" type=\"line\"/>\n      <point x=\"131\" y=\"184\" type=\"line\"/>\n      <point x=\"131\" y=\"-88\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"131\" y=\"-187\"/>\n      <point x=\"88\" y=\"-235\"/>\n      <point x=\"-13\" y=\"-237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-76\" y=\"-240\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"672\" y=\"0\" type=\"line\"/>\n      <point x=\"787\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"0\"/>\n      <point x=\"1141\" y=\"187\"/>\n      <point x=\"1141\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"756\"/>\n      <point x=\"1000\" y=\"943\"/>\n      <point x=\"787\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"943\" type=\"line\"/>\n      <point x=\"655\" y=\"716\" type=\"line\"/>\n      <point x=\"696\" y=\"716\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"716\"/>\n      <point x=\"867\" y=\"626\"/>\n      <point x=\"867\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"317\"/>\n      <point x=\"805\" y=\"227\"/>\n      <point x=\"696\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"227\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"1420\" type=\"line\"/>\n      <point x=\"111\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"153\" y=\"576\" type=\"line\"/>\n      <point x=\"701\" y=\"576\" type=\"line\"/>\n      <point x=\"701\" y=\"838\" type=\"line\"/>\n      <point x=\"153\" y=\"838\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"507\" y=\"0\" type=\"line\"/>\n      <point x=\"720\" y=\"0\" type=\"line\"/>\n      <point x=\"720\" y=\"830\" type=\"line\"/>\n      <point x=\"753\" y=\"866\" type=\"line\"/>\n      <point x=\"753\" y=\"1420\" type=\"line\"/>\n      <point x=\"507\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E48\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D1\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/N_u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039D\"/>\n  <outline>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041E\"/>\n  <outline>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"1080\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"-20\"/>\n      <point x=\"1141\" y=\"218\"/>\n      <point x=\"1141\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"1194\"/>\n      <point x=\"959\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"241\" y=\"1440\"/>\n      <point x=\"59\" y=\"1194\"/>\n      <point x=\"59\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"218\"/>\n      <point x=\"241\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"232\"/>\n      <point x=\"336\" y=\"387\"/>\n      <point x=\"336\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"1026\"/>\n      <point x=\"424\" y=\"1188\"/>\n      <point x=\"600\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"1188\"/>\n      <point x=\"864\" y=\"1026\"/>\n      <point x=\"864\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"387\"/>\n      <point x=\"776\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"420\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"-9\"/>\n      <point x=\"790\" y=\"98\"/>\n      <point x=\"790\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"537\"/>\n      <point x=\"666\" y=\"648\"/>\n      <point x=\"420\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"648\"/>\n      <point x=\"51\" y=\"537\"/>\n      <point x=\"51\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"51\" y=\"98\"/>\n      <point x=\"176\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"420\" y=\"130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"281\" y=\"130\"/>\n      <point x=\"210\" y=\"191\"/>\n      <point x=\"210\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"210\" y=\"447\"/>\n      <point x=\"281\" y=\"513\"/>\n      <point x=\"420\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"513\"/>\n      <point x=\"631\" y=\"447\"/>\n      <point x=\"631\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"191\"/>\n      <point x=\"560\" y=\"130\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"OE\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0152\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"503\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"-20\"/>\n      <point x=\"704\" y=\"0\"/>\n      <point x=\"775\" y=\"0\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"0\" type=\"line\"/>\n      <point x=\"820\" y=\"1420\" type=\"line\"/>\n      <point x=\"775\" y=\"1420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"681\" y=\"1420\"/>\n      <point x=\"612\" y=\"1440\"/>\n      <point x=\"503\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"221\" y=\"1440\"/>\n      <point x=\"59\" y=\"1170\"/>\n      <point x=\"59\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"242\"/>\n      <point x=\"221\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"617\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"242\" type=\"line\"/>\n      <point x=\"617\" y=\"242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"513\" y=\"226\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"226\"/>\n      <point x=\"336\" y=\"404\"/>\n      <point x=\"336\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"1020\"/>\n      <point x=\"397\" y=\"1194\"/>\n      <point x=\"503\" y=\"1194\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"545\" y=\"1190\"/>\n      <point x=\"560\" y=\"1181\" type=\"curve\"/>\n      <point x=\"560\" y=\"232\" type=\"line\"/>\n      <point x=\"547\" y=\"228\"/>\n      <point x=\"530\" y=\"226\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"590\" type=\"line\"/>\n      <point x=\"1057\" y=\"590\" type=\"line\"/>\n      <point x=\"1057\" y=\"832\" type=\"line\"/>\n      <point x=\"637\" y=\"832\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"607\" y=\"1178\" type=\"line\"/>\n      <point x=\"1117\" y=\"1178\" type=\"line\"/>\n      <point x=\"1117\" y=\"1420\" type=\"line\"/>\n      <point x=\"607\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D3\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"acutecomb.case.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_barred-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Obarred-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E8\"/>\n  <outline>\n    <contour>\n      <point x=\"182\" y=\"612\" type=\"line\"/>\n      <point x=\"1023\" y=\"612\" type=\"line\"/>\n      <point x=\"1023\" y=\"802\" type=\"line\"/>\n      <point x=\"182\" y=\"802\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Obreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014E\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D4\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED0\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"463\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED8\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED2\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"304\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED4\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"384\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED6\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Odieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D6\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Odotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECC\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ograve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D2\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_hm.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohm\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2126\"/>\n  <outline>\n    <component base=\"Omega\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECE\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A0\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"horncomb.case\" xOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_hornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDA\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_horndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE2\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_horngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDC\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_hornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDE\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_horntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE0\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0150\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"hungarumlautcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014C\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_macronacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacronacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E52\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\" yOffset=\"341\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_macrongrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacrongrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E50\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\" yOffset=\"341\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_mega.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omega\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A9\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"317\" y=\"184\" type=\"line\"/>\n      <point x=\"563\" y=\"243\" type=\"line\"/>\n      <point x=\"434\" y=\"293\"/>\n      <point x=\"336\" y=\"454\"/>\n      <point x=\"336\" y=\"727\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"1036\"/>\n      <point x=\"423\" y=\"1189\"/>\n      <point x=\"600\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"1189\"/>\n      <point x=\"864\" y=\"1036\"/>\n      <point x=\"864\" y=\"727\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"448\"/>\n      <point x=\"774\" y=\"288\"/>\n      <point x=\"661\" y=\"243\" type=\"curve\"/>\n      <point x=\"907\" y=\"192\" type=\"line\"/>\n      <point x=\"907\" y=\"279\" type=\"line\"/>\n      <point x=\"1047\" y=\"344\"/>\n      <point x=\"1141\" y=\"473\"/>\n      <point x=\"1141\" y=\"777\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"1221\"/>\n      <point x=\"961\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"239\" y=\"1440\"/>\n      <point x=\"59\" y=\"1221\"/>\n      <point x=\"59\" y=\"777\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"478\"/>\n      <point x=\"161\" y=\"347\"/>\n      <point x=\"317\" y=\"276\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"87\" y=\"0\" type=\"line\"/>\n      <point x=\"563\" y=\"0\" type=\"line\"/>\n      <point x=\"563\" y=\"243\" type=\"line\"/>\n      <point x=\"87\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"661\" y=\"0\" type=\"line\"/>\n      <point x=\"1113\" y=\"0\" type=\"line\"/>\n      <point x=\"1113\" y=\"243\" type=\"line\"/>\n      <point x=\"661\" y=\"243\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_megatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omegatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038F\"/>\n  <anchor x=\"700\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"700\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"473\" y=\"184\" type=\"line\"/>\n      <point x=\"658\" y=\"243\" type=\"line\"/>\n      <point x=\"576\" y=\"296\"/>\n      <point x=\"536\" y=\"468\"/>\n      <point x=\"536\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"1047\"/>\n      <point x=\"590\" y=\"1189\"/>\n      <point x=\"700\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"1189\"/>\n      <point x=\"864\" y=\"1047\"/>\n      <point x=\"864\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"463\"/>\n      <point x=\"824\" y=\"291\"/>\n      <point x=\"742\" y=\"243\" type=\"curve\"/>\n      <point x=\"927\" y=\"192\" type=\"line\"/>\n      <point x=\"927\" y=\"271\" type=\"line\"/>\n      <point x=\"1069\" y=\"301\"/>\n      <point x=\"1141\" y=\"478\"/>\n      <point x=\"1141\" y=\"802\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"1229\"/>\n      <point x=\"994\" y=\"1440\"/>\n      <point x=\"700\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"406\" y=\"1440\"/>\n      <point x=\"259\" y=\"1229\"/>\n      <point x=\"259\" y=\"802\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"259\" y=\"483\"/>\n      <point x=\"331\" y=\"305\"/>\n      <point x=\"473\" y=\"268\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"287\" y=\"0\" type=\"line\"/>\n      <point x=\"658\" y=\"0\" type=\"line\"/>\n      <point x=\"658\" y=\"243\" type=\"line\"/>\n      <point x=\"287\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"742\" y=\"0\" type=\"line\"/>\n      <point x=\"1113\" y=\"0\" type=\"line\"/>\n      <point x=\"1113\" y=\"243\" type=\"line\"/>\n      <point x=\"742\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-18\" y=\"1040\" type=\"line\"/>\n      <point x=\"224\" y=\"1040\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n      <point x=\"31\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_micron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omicron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039F\"/>\n  <outline>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_microntonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omicrontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038C\"/>\n  <anchor x=\"688\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"688\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"700\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"993\" y=\"-20\"/>\n      <point x=\"1141\" y=\"218\"/>\n      <point x=\"1141\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"1194\"/>\n      <point x=\"993\" y=\"1440\"/>\n      <point x=\"700\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"407\" y=\"1440\"/>\n      <point x=\"259\" y=\"1194\"/>\n      <point x=\"259\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"259\" y=\"218\"/>\n      <point x=\"407\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"-18\" y=\"1040\" type=\"line\"/>\n      <point x=\"224\" y=\"1040\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n      <point x=\"31\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"700\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"591\" y=\"232\"/>\n      <point x=\"536\" y=\"387\"/>\n      <point x=\"536\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"1027\"/>\n      <point x=\"591\" y=\"1189\"/>\n      <point x=\"700\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"1189\"/>\n      <point x=\"864\" y=\"1027\"/>\n      <point x=\"864\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"387\"/>\n      <point x=\"809\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01EA\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"658\" y=\"-432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"-432\"/>\n      <point x=\"724\" y=\"-427\"/>\n      <point x=\"765\" y=\"-415\" type=\"curve\"/>\n      <point x=\"783\" y=\"-203\" type=\"line\"/>\n      <point x=\"753\" y=\"-211\"/>\n      <point x=\"729\" y=\"-214\"/>\n      <point x=\"709\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"-214\"/>\n      <point x=\"626\" y=\"-176\"/>\n      <point x=\"626\" y=\"-151\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"626\" y=\"-49\"/>\n      <point x=\"714\" y=\"-24\"/>\n      <point x=\"786\" y=\"8\" type=\"curve\"/>\n      <point x=\"742\" y=\"40\" type=\"line\"/>\n      <point x=\"532\" y=\"30\" type=\"line\"/>\n      <point x=\"532\" y=\"-48\" type=\"line\"/>\n      <point x=\"449\" y=\"-72\"/>\n      <point x=\"401\" y=\"-138\"/>\n      <point x=\"401\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"-359\"/>\n      <point x=\"494\" y=\"-432\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_open.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0186\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"496\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"925\" y=\"-20\"/>\n      <point x=\"1141\" y=\"256\"/>\n      <point x=\"1141\" y=\"713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"1183\"/>\n      <point x=\"913\" y=\"1440\"/>\n      <point x=\"475\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"1440\"/>\n      <point x=\"212\" y=\"1418\"/>\n      <point x=\"89\" y=\"1372\" type=\"curve\"/>\n      <point x=\"152\" y=\"1129\" type=\"line\"/>\n      <point x=\"246\" y=\"1169\"/>\n      <point x=\"339\" y=\"1189\"/>\n      <point x=\"441\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"1189\"/>\n      <point x=\"865\" y=\"1013\"/>\n      <point x=\"865\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"410\"/>\n      <point x=\"738\" y=\"232\"/>\n      <point x=\"524\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"365\" y=\"232\"/>\n      <point x=\"292\" y=\"262\"/>\n      <point x=\"173\" y=\"360\" type=\"curve\"/>\n      <point x=\"20\" y=\"151\" type=\"line\"/>\n      <point x=\"144\" y=\"37\"/>\n      <point x=\"309\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D8\"/>\n  <outline>\n    <contour>\n      <point x=\"251\" y=\"-134\" type=\"line\"/>\n      <point x=\"1114\" y=\"1457\" type=\"line\"/>\n      <point x=\"929\" y=\"1532\" type=\"line\"/>\n      <point x=\"66\" y=\"-59\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_slashacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oslashacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FE\"/>\n  <outline>\n    <component base=\"Oslash\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/O_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Otilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D5\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/P_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"P\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0050\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"383\" y=\"407\" type=\"line\"/>\n      <point x=\"578\" y=\"407\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"407\"/>\n      <point x=\"1137\" y=\"601\"/>\n      <point x=\"1137\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1137\" y=\"1245\"/>\n      <point x=\"934\" y=\"1420\"/>\n      <point x=\"578\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"387\" y=\"1177\" type=\"line\"/>\n      <point x=\"578\" y=\"1177\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"1177\"/>\n      <point x=\"852\" y=\"1085\"/>\n      <point x=\"852\" y=\"923\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"751\"/>\n      <point x=\"752\" y=\"650\"/>\n      <point x=\"578\" y=\"650\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"650\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"1420\" type=\"line\"/>\n      <point x=\"143\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/P_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"P.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"244\" y=\"175\" type=\"line\"/>\n      <point x=\"503\" y=\"175\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"175\"/>\n      <point x=\"786\" y=\"252\"/>\n      <point x=\"786\" y=\"408\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"562\"/>\n      <point x=\"692\" y=\"639\"/>\n      <point x=\"503\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"246\" y=\"503\" type=\"line\"/>\n      <point x=\"503\" y=\"503\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"503\"/>\n      <point x=\"627\" y=\"472\"/>\n      <point x=\"627\" y=\"407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"342\"/>\n      <point x=\"586\" y=\"310\"/>\n      <point x=\"503\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/P_alochka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Palochka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04C0\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/P_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Pe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"813\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"1420\" type=\"line\"/>\n      <point x=\"813\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"1177\" type=\"line\"/>\n      <point x=\"1023\" y=\"1177\" type=\"line\"/>\n      <point x=\"1023\" y=\"1420\" type=\"line\"/>\n      <point x=\"165\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/P_hi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Phi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A6\"/>\n  <outline>\n    <component base=\"Ef-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/P_i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Pi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A0\"/>\n  <outline>\n    <component base=\"Pe-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/P_si.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Psi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A8\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"277\"/>\n      <point x=\"1141\" y=\"455\"/>\n      <point x=\"1141\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"1420\" type=\"line\"/>\n      <point x=\"877\" y=\"1420\" type=\"line\"/>\n      <point x=\"877\" y=\"817\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"624\"/>\n      <point x=\"785\" y=\"528\"/>\n      <point x=\"600\" y=\"528\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"415\" y=\"528\"/>\n      <point x=\"323\" y=\"624\"/>\n      <point x=\"323\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"1420\" type=\"line\"/>\n      <point x=\"59\" y=\"1420\" type=\"line\"/>\n      <point x=\"59\" y=\"817\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"455\"/>\n      <point x=\"241\" y=\"277\"/>\n    </contour>\n    <contour>\n      <point x=\"467\" y=\"407\" type=\"line\"/>\n      <point x=\"467\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"407\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"714\" y=\"407\" type=\"line\"/>\n      <point x=\"714\" y=\"1420\" type=\"line\"/>\n      <point x=\"484\" y=\"1420\" type=\"line\"/>\n      <point x=\"484\" y=\"407\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Q_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Q\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0051\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"947\" y=\"-460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"-460\" type=\"line\"/>\n      <point x=\"1049\" y=\"-209\" type=\"line\"/>\n      <point x=\"947\" y=\"-209\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"-209\"/>\n      <point x=\"728\" y=\"-147\"/>\n      <point x=\"728\" y=\"-22\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"62\" type=\"line\"/>\n      <point x=\"462\" y=\"62\" type=\"line\"/>\n      <point x=\"462\" y=\"-20\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"-314\"/>\n      <point x=\"625\" y=\"-460\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Q_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Q.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"609\" y=\"-257\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"-257\" type=\"line\"/>\n      <point x=\"724\" y=\"-123\" type=\"line\"/>\n      <point x=\"609\" y=\"-123\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"519\" y=\"-123\"/>\n      <point x=\"491\" y=\"-90\"/>\n      <point x=\"491\" y=\"-30\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"36\" type=\"line\"/>\n      <point x=\"341\" y=\"36\" type=\"line\"/>\n      <point x=\"341\" y=\"-29\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"-202\"/>\n      <point x=\"448\" y=\"-257\"/>\n    </contour>\n    <component base=\"O.half\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O.half</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"R\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0052\"/>\n  <anchor x=\"610\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"520\" type=\"line\"/>\n      <point x=\"628\" y=\"520\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"933\" y=\"520\"/>\n      <point x=\"1107\" y=\"692\"/>\n      <point x=\"1107\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1107\" y=\"1264\"/>\n      <point x=\"933\" y=\"1420\"/>\n      <point x=\"628\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"1420\" type=\"line\"/>\n      <point x=\"377\" y=\"1177\" type=\"line\"/>\n      <point x=\"628\" y=\"1177\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"1177\"/>\n      <point x=\"822\" y=\"1102\"/>\n      <point x=\"822\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"839\"/>\n      <point x=\"750\" y=\"763\"/>\n      <point x=\"628\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"763\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"844\" y=\"0\" type=\"line\"/>\n      <point x=\"1159\" y=\"0\" type=\"line\"/>\n      <point x=\"854\" y=\"668\" type=\"line\"/>\n      <point x=\"576\" y=\"668\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/R_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"R.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"237\" y=\"201\" type=\"line\"/>\n      <point x=\"517\" y=\"201\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"201\"/>\n      <point x=\"765\" y=\"284\"/>\n      <point x=\"765\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"561\"/>\n      <point x=\"675\" y=\"639\"/>\n      <point x=\"517\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"223\" y=\"639\" type=\"line\"/>\n      <point x=\"239\" y=\"504\" type=\"line\"/>\n      <point x=\"517\" y=\"504\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"574\" y=\"504\"/>\n      <point x=\"606\" y=\"473\"/>\n      <point x=\"606\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"366\"/>\n      <point x=\"574\" y=\"336\"/>\n      <point x=\"517\" y=\"336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"336\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"95\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"620\" y=\"0\" type=\"line\"/>\n      <point x=\"802\" y=\"0\" type=\"line\"/>\n      <point x=\"568\" y=\"301\" type=\"line\"/>\n      <point x=\"403\" y=\"301\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/R_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Racute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0154\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"acutecomb.case\" xOffset=\"39\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/R_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0158\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/R_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0156\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/R_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E5A\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/R_ho.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rho\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A1\"/>\n  <outline>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"S\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0053\"/>\n  <anchor x=\"610\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"620\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"551\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"-20\"/>\n      <point x=\"1074\" y=\"122\"/>\n      <point x=\"1074\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1074\" y=\"533\"/>\n      <point x=\"961\" y=\"675\"/>\n      <point x=\"761\" y=\"779\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"569\" y=\"878\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"923\"/>\n      <point x=\"436\" y=\"980\"/>\n      <point x=\"436\" y=\"1043\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"1137\"/>\n      <point x=\"504\" y=\"1189\"/>\n      <point x=\"622\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"708\" y=\"1189\"/>\n      <point x=\"804\" y=\"1140\"/>\n      <point x=\"896\" y=\"1052\" type=\"curve\"/>\n      <point x=\"1078\" y=\"1261\" type=\"line\"/>\n      <point x=\"956\" y=\"1377\"/>\n      <point x=\"795\" y=\"1440\"/>\n      <point x=\"621\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"321\" y=\"1440\"/>\n      <point x=\"150\" y=\"1298\"/>\n      <point x=\"150\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"874\"/>\n      <point x=\"266\" y=\"724\"/>\n      <point x=\"467\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"745\" y=\"492\"/>\n      <point x=\"788\" y=\"438\"/>\n      <point x=\"788\" y=\"379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"284\"/>\n      <point x=\"709\" y=\"232\"/>\n      <point x=\"567\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"232\"/>\n      <point x=\"294\" y=\"266\"/>\n      <point x=\"148\" y=\"328\" type=\"curve\"/>\n      <point x=\"112\" y=\"58\" type=\"line\"/>\n      <point x=\"232\" y=\"8\"/>\n      <point x=\"390\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"S.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"386\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"625\" y=\"-9\"/>\n      <point x=\"743\" y=\"60\"/>\n      <point x=\"743\" y=\"200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"313\"/>\n      <point x=\"669\" y=\"372\"/>\n      <point x=\"520\" y=\"378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"384\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"302\" y=\"386\"/>\n      <point x=\"274\" y=\"407\"/>\n      <point x=\"274\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"491\"/>\n      <point x=\"329\" y=\"513\"/>\n      <point x=\"439\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"523\" y=\"513\"/>\n      <point x=\"606\" y=\"496\"/>\n      <point x=\"690\" y=\"463\" type=\"curve\"/>\n      <point x=\"746\" y=\"593\" type=\"line\"/>\n      <point x=\"662\" y=\"630\"/>\n      <point x=\"560\" y=\"648\"/>\n      <point x=\"439\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"222\" y=\"648\"/>\n      <point x=\"115\" y=\"577\"/>\n      <point x=\"115\" y=\"434\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"115\" y=\"319\"/>\n      <point x=\"181\" y=\"259\"/>\n      <point x=\"315\" y=\"254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"245\"/>\n      <point x=\"583\" y=\"225\"/>\n      <point x=\"583\" y=\"188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"147\"/>\n      <point x=\"521\" y=\"126\"/>\n      <point x=\"397\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"126\"/>\n      <point x=\"212\" y=\"143\"/>\n      <point x=\"108\" y=\"178\" type=\"curve\"/>\n      <point x=\"88\" y=\"30\" type=\"line\"/>\n      <point x=\"172\" y=\"4\"/>\n      <point x=\"271\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015A\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"acutecomb.case\" xOffset=\"99\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0160\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"caroncomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015E\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"cedillacomb\" xOffset=\"35\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_chwa-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Schwa-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04D8\"/>\n  <outline>\n    <component base=\"Schwa\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_chwa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Schwa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"018F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"-20\"/>\n      <point x=\"1141\" y=\"218\"/>\n      <point x=\"1141\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"1194\"/>\n      <point x=\"925\" y=\"1440\"/>\n      <point x=\"500\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"379\" y=\"1440\"/>\n      <point x=\"261\" y=\"1425\"/>\n      <point x=\"151\" y=\"1394\" type=\"curve\"/>\n      <point x=\"179\" y=\"1150\" type=\"line\"/>\n      <point x=\"278\" y=\"1176\"/>\n      <point x=\"387\" y=\"1189\"/>\n      <point x=\"500\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"1189\"/>\n      <point x=\"864\" y=\"1027\"/>\n      <point x=\"864\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"387\"/>\n      <point x=\"776\" y=\"232\"/>\n      <point x=\"600\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"232\"/>\n      <point x=\"336\" y=\"380\"/>\n      <point x=\"336\" y=\"680\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"725\"/>\n      <point x=\"337\" y=\"767\"/>\n      <point x=\"339\" y=\"809\" type=\"curve\"/>\n      <point x=\"63\" y=\"825\" type=\"line\"/>\n      <point x=\"60\" y=\"779\"/>\n      <point x=\"59\" y=\"730\"/>\n      <point x=\"59\" y=\"680\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"211\"/>\n      <point x=\"241\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"63\" y=\"581\" type=\"line\"/>\n      <point x=\"1021\" y=\"581\" type=\"line\"/>\n      <point x=\"1021\" y=\"825\" type=\"line\"/>\n      <point x=\"63\" y=\"825\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015C\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0218\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E62\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_ha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0428\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"825\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"1420\" type=\"line\"/>\n      <point x=\"825\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"153\" y=\"0\" type=\"line\"/>\n      <point x=\"1052\" y=\"0\" type=\"line\"/>\n      <point x=\"1052\" y=\"242\" type=\"line\"/>\n      <point x=\"153\" y=\"242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"1420\" type=\"line\"/>\n      <point x=\"111\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"498\" y=\"0\" type=\"line\"/>\n      <point x=\"702\" y=\"0\" type=\"line\"/>\n      <point x=\"702\" y=\"1420\" type=\"line\"/>\n      <point x=\"498\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_hcha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Shcha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0429\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"825\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"1420\" type=\"line\"/>\n      <point x=\"825\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"153\" y=\"0\" type=\"line\"/>\n      <point x=\"1035\" y=\"0\" type=\"line\"/>\n      <point x=\"1035\" y=\"242\" type=\"line\"/>\n      <point x=\"153\" y=\"242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"1420\" type=\"line\"/>\n      <point x=\"111\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"913\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"242\" type=\"line\"/>\n      <point x=\"913\" y=\"242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"498\" y=\"0\" type=\"line\"/>\n      <point x=\"702\" y=\"0\" type=\"line\"/>\n      <point x=\"702\" y=\"1420\" type=\"line\"/>\n      <point x=\"498\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_hha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Shha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04BA\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"209\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"813\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"487\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"778\"/>\n      <point x=\"956\" y=\"902\"/>\n      <point x=\"670\" y=\"902\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"369\" y=\"902\" type=\"line\"/>\n      <point x=\"369\" y=\"658\" type=\"line\"/>\n      <point x=\"653\" y=\"658\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"658\"/>\n      <point x=\"813\" y=\"602\"/>\n      <point x=\"813\" y=\"470\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_igma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sigma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A3\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"354\" y=\"121\" type=\"line\"/>\n      <point x=\"864\" y=\"713\" type=\"line\"/>\n      <point x=\"370\" y=\"1309\" type=\"line\"/>\n      <point x=\"133\" y=\"1177\" type=\"line\"/>\n      <point x=\"533\" y=\"713\" type=\"line\"/>\n      <point x=\"133\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"133\" y=\"0\" type=\"line\"/>\n      <point x=\"1087\" y=\"0\" type=\"line\"/>\n      <point x=\"1087\" y=\"243\" type=\"line\"/>\n      <point x=\"133\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"133\" y=\"1177\" type=\"line\"/>\n      <point x=\"1067\" y=\"1177\" type=\"line\"/>\n      <point x=\"1067\" y=\"1420\" type=\"line\"/>\n      <point x=\"133\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/S_oftsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Softsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042C\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"667\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"0\"/>\n      <point x=\"1131\" y=\"187\"/>\n      <point x=\"1131\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"756\"/>\n      <point x=\"946\" y=\"943\"/>\n      <point x=\"667\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"943\" type=\"line\"/>\n      <point x=\"353\" y=\"699\" type=\"line\"/>\n      <point x=\"601\" y=\"699\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"699\"/>\n      <point x=\"854\" y=\"621\"/>\n      <point x=\"854\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"322\"/>\n      <point x=\"767\" y=\"243\"/>\n      <point x=\"601\" y=\"243\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"T\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0054\"/>\n  <anchor x=\"595\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"1420\" type=\"line\"/>\n      <point x=\"468\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"63\" y=\"1177\" type=\"line\"/>\n      <point x=\"1137\" y=\"1177\" type=\"line\"/>\n      <point x=\"1137\" y=\"1420\" type=\"line\"/>\n      <point x=\"63\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"T.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"344\" y=\"0\" type=\"line\"/>\n      <point x=\"495\" y=\"0\" type=\"line\"/>\n      <point x=\"495\" y=\"639\" type=\"line\"/>\n      <point x=\"344\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"53\" y=\"504\" type=\"line\"/>\n      <point x=\"786\" y=\"504\" type=\"line\"/>\n      <point x=\"786\" y=\"639\" type=\"line\"/>\n      <point x=\"53\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_au.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tau\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A4\"/>\n  <outline>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0166\"/>\n  <outline>\n    <contour>\n      <point x=\"172\" y=\"561\" type=\"line\"/>\n      <point x=\"1028\" y=\"561\" type=\"line\"/>\n      <point x=\"1028\" y=\"803\" type=\"line\"/>\n      <point x=\"172\" y=\"803\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>T</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0164\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0162\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"cedillacomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021A\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_diagonalstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tdiagonalstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023E\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"405\" y=\"-350\" type=\"line\"/>\n      <point x=\"1101\" y=\"1672\" type=\"line\"/>\n      <point x=\"908\" y=\"1716\" type=\"line\"/>\n      <point x=\"232\" y=\"-286\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Te-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0422\"/>\n  <outline>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_heta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Theta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0398\"/>\n  <outline>\n    <contour>\n      <point x=\"213\" y=\"616\" type=\"line\"/>\n      <point x=\"987\" y=\"616\" type=\"line\"/>\n      <point x=\"987\" y=\"804\" type=\"line\"/>\n      <point x=\"213\" y=\"804\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Thorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DE\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"383\" y=\"208\" type=\"line\"/>\n      <point x=\"578\" y=\"208\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"208\"/>\n      <point x=\"1137\" y=\"398\"/>\n      <point x=\"1137\" y=\"731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1137\" y=\"1042\"/>\n      <point x=\"934\" y=\"1221\"/>\n      <point x=\"578\" y=\"1221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"1221\" type=\"line\"/>\n      <point x=\"387\" y=\"978\" type=\"line\"/>\n      <point x=\"578\" y=\"978\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"978\"/>\n      <point x=\"852\" y=\"882\"/>\n      <point x=\"852\" y=\"714\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"548\"/>\n      <point x=\"752\" y=\"451\"/>\n      <point x=\"578\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"451\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"0\" type=\"line\"/>\n      <point x=\"407\" y=\"1420\" type=\"line\"/>\n      <point x=\"143\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E6E\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_se-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tse-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0426\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"803\" y=\"0\" type=\"line\"/>\n      <point x=\"1067\" y=\"0\" type=\"line\"/>\n      <point x=\"1067\" y=\"1420\" type=\"line\"/>\n      <point x=\"803\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"0\" type=\"line\"/>\n      <point x=\"1175\" y=\"0\" type=\"line\"/>\n      <point x=\"1175\" y=\"243\" type=\"line\"/>\n      <point x=\"165\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"913\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"-290\" type=\"line\"/>\n      <point x=\"1177\" y=\"243\" type=\"line\"/>\n      <point x=\"913\" y=\"243\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/T_she-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tshe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"340\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"815\" y=\"0\" type=\"line\"/>\n      <point x=\"1079\" y=\"0\" type=\"line\"/>\n      <point x=\"1079\" y=\"484\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"780\"/>\n      <point x=\"951\" y=\"906\"/>\n      <point x=\"650\" y=\"906\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"906\" type=\"line\"/>\n      <point x=\"460\" y=\"644\" type=\"line\"/>\n      <point x=\"650\" y=\"644\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"644\"/>\n      <point x=\"815\" y=\"587\"/>\n      <point x=\"815\" y=\"454\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"215\" y=\"0\" type=\"line\"/>\n      <point x=\"478\" y=\"0\" type=\"line\"/>\n      <point x=\"478\" y=\"1420\" type=\"line\"/>\n      <point x=\"215\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"3\" y=\"1158\" type=\"line\"/>\n      <point x=\"857\" y=\"1158\" type=\"line\"/>\n      <point x=\"857\" y=\"1420\" type=\"line\"/>\n      <point x=\"3\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0423\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"40\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"193\" y=\"0\" type=\"line\"/>\n      <point x=\"564\" y=\"0\"/>\n      <point x=\"770\" y=\"77\"/>\n      <point x=\"859\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1183\" y=\"1420\" type=\"line\"/>\n      <point x=\"896\" y=\"1420\" type=\"line\"/>\n      <point x=\"653\" y=\"470\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"249\"/>\n      <point x=\"473\" y=\"243\"/>\n      <point x=\"193\" y=\"243\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"537\" y=\"164\" type=\"line\"/>\n      <point x=\"741\" y=\"552\" type=\"line\"/>\n      <point x=\"657\" y=\"552\" type=\"line\"/>\n      <point x=\"356\" y=\"1420\" type=\"line\"/>\n      <point x=\"69\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0055\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"-20\"/>\n      <point x=\"1077\" y=\"138\"/>\n      <point x=\"1077\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"1420\" type=\"line\"/>\n      <point x=\"813\" y=\"1420\" type=\"line\"/>\n      <point x=\"813\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"308\"/>\n      <point x=\"741\" y=\"233\"/>\n      <point x=\"600\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"233\"/>\n      <point x=\"387\" y=\"308\"/>\n      <point x=\"387\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"123\" y=\"138\"/>\n      <point x=\"281\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"417\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"-9\"/>\n      <point x=\"744\" y=\"82\"/>\n      <point x=\"744\" y=\"265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"639\" type=\"line\"/>\n      <point x=\"593\" y=\"639\" type=\"line\"/>\n      <point x=\"593\" y=\"265\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"172\"/>\n      <point x=\"536\" y=\"126\"/>\n      <point x=\"420\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"126\"/>\n      <point x=\"246\" y=\"172\"/>\n      <point x=\"246\" y=\"265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"95\" y=\"639\" type=\"line\"/>\n      <point x=\"95\" y=\"265\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"95\" y=\"82\"/>\n      <point x=\"202\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DA\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ubreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016C\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ucircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DB\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Udieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DC\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Udotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE4\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ugrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D9\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE6\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01AF\"/>\n  <outline>\n    <contour>\n      <point x=\"911\" y=\"1205\" type=\"line\"/>\n      <point x=\"971\" y=\"1215\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1190\" y=\"1252\"/>\n      <point x=\"1298\" y=\"1399\"/>\n      <point x=\"1298\" y=\"1653\" type=\"curve\"/>\n      <point x=\"1039\" y=\"1653\" type=\"line\"/>\n      <point x=\"1039\" y=\"1518\"/>\n      <point x=\"987\" y=\"1425\"/>\n      <point x=\"877\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"U\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>U</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_hornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE8\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_horndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF0\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_horngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEA\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_hornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEC\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_horntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEE\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0170\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"hungarumlautcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_macron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Umacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04EE\"/>\n  <outline>\n    <component base=\"U-cy\"/>\n    <component base=\"macroncomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Umacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016A\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0172\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"660\" y=\"-432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"-432\"/>\n      <point x=\"726\" y=\"-427\"/>\n      <point x=\"766\" y=\"-415\" type=\"curve\"/>\n      <point x=\"784\" y=\"-203\" type=\"line\"/>\n      <point x=\"755\" y=\"-211\"/>\n      <point x=\"730\" y=\"-214\"/>\n      <point x=\"711\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"-214\"/>\n      <point x=\"628\" y=\"-176\"/>\n      <point x=\"628\" y=\"-151\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"-51\"/>\n      <point x=\"716\" y=\"-25\"/>\n      <point x=\"789\" y=\"6\" type=\"curve\"/>\n      <point x=\"745\" y=\"40\" type=\"line\"/>\n      <point x=\"534\" y=\"30\" type=\"line\"/>\n      <point x=\"534\" y=\"-48\" type=\"line\"/>\n      <point x=\"451\" y=\"-72\"/>\n      <point x=\"403\" y=\"-138\"/>\n      <point x=\"403\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"-359\"/>\n      <point x=\"496\" y=\"-432\"/>\n    </contour>\n    <component base=\"U\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>U</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_psilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A5\"/>\n  <outline>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_psilonafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilonafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B1\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"317\" y=\"1236\" type=\"line\"/>\n      <point x=\"317\" y=\"1144\" type=\"line\"/>\n      <point x=\"161\" y=\"1046\"/>\n      <point x=\"59\" y=\"905\"/>\n      <point x=\"59\" y=\"603\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"207\"/>\n      <point x=\"256\" y=\"-20\"/>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"-20\"/>\n      <point x=\"1141\" y=\"207\"/>\n      <point x=\"1141\" y=\"603\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"910\"/>\n      <point x=\"1047\" y=\"1050\"/>\n      <point x=\"907\" y=\"1141\" type=\"curve\"/>\n      <point x=\"907\" y=\"1228\" type=\"line\"/>\n      <point x=\"661\" y=\"1177\" type=\"line\"/>\n      <point x=\"774\" y=\"1128\"/>\n      <point x=\"864\" y=\"955\"/>\n      <point x=\"864\" y=\"653\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"385\"/>\n      <point x=\"768\" y=\"231\"/>\n      <point x=\"600\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"231\"/>\n      <point x=\"336\" y=\"385\"/>\n      <point x=\"336\" y=\"653\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"949\"/>\n      <point x=\"434\" y=\"1123\"/>\n      <point x=\"563\" y=\"1177\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"87\" y=\"1420\" type=\"line\"/>\n      <point x=\"87\" y=\"1177\" type=\"line\"/>\n      <point x=\"563\" y=\"1177\" type=\"line\"/>\n      <point x=\"563\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"661\" y=\"1420\" type=\"line\"/>\n      <point x=\"661\" y=\"1177\" type=\"line\"/>\n      <point x=\"1113\" y=\"1177\" type=\"line\"/>\n      <point x=\"1113\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_psilondieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilondieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AB\"/>\n  <outline>\n    <component base=\"Upsilon\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_psilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038E\"/>\n  <anchor x=\"741\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"741\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"636\" y=\"423\" type=\"line\"/>\n      <point x=\"870\" y=\"423\" type=\"line\"/>\n      <point x=\"1192\" y=\"1420\" type=\"line\"/>\n      <point x=\"897\" y=\"1420\" type=\"line\"/>\n      <point x=\"762\" y=\"843\" type=\"line\"/>\n      <point x=\"744\" y=\"843\" type=\"line\"/>\n      <point x=\"614\" y=\"1420\" type=\"line\"/>\n      <point x=\"319\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"621\" y=\"0\" type=\"line\"/>\n      <point x=\"885\" y=\"0\" type=\"line\"/>\n      <point x=\"885\" y=\"700\" type=\"line\"/>\n      <point x=\"621\" y=\"700\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-18\" y=\"1040\" type=\"line\"/>\n      <point x=\"224\" y=\"1040\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n      <point x=\"31\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016E\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"ringcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_short-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ushort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040E\"/>\n  <outline>\n    <component base=\"U-cy\"/>\n    <component base=\"brevecomb-cy.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_straight-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ustraight-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04AE\"/>\n  <outline>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_straightstroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ustraightstroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B0\"/>\n  <outline>\n    <contour>\n      <point x=\"240\" y=\"268\" type=\"line\"/>\n      <point x=\"963\" y=\"268\" type=\"line\"/>\n      <point x=\"963\" y=\"512\" type=\"line\"/>\n      <point x=\"240\" y=\"512\" type=\"line\"/>\n    </contour>\n    <component base=\"Y\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>Y</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/U_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Utilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0168\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/V_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"V\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0056\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"395\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"0\" type=\"line\"/>\n      <point x=\"1172\" y=\"1420\" type=\"line\"/>\n      <point x=\"899\" y=\"1420\" type=\"line\"/>\n      <point x=\"609\" y=\"237\" type=\"line\"/>\n      <point x=\"591\" y=\"237\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n      <point x=\"28\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/V_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"V.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"312\" y=\"0\" type=\"line\"/>\n      <point x=\"528\" y=\"0\" type=\"line\"/>\n      <point x=\"811\" y=\"639\" type=\"line\"/>\n      <point x=\"645\" y=\"639\" type=\"line\"/>\n      <point x=\"427\" y=\"129\" type=\"line\"/>\n      <point x=\"414\" y=\"129\" type=\"line\"/>\n      <point x=\"196\" y=\"639\" type=\"line\"/>\n      <point x=\"29\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/V_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ve-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0412\"/>\n  <outline>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/V_hook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Vhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B2\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"573\" y=\"1420\" type=\"line\"/>\n      <point x=\"573\" y=\"1175\" type=\"line\"/>\n      <point x=\"654\" y=\"1175\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"1175\"/>\n      <point x=\"813\" y=\"1125\"/>\n      <point x=\"813\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"308\"/>\n      <point x=\"741\" y=\"233\"/>\n      <point x=\"600\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"233\"/>\n      <point x=\"387\" y=\"308\"/>\n      <point x=\"387\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"1420\" type=\"line\"/>\n      <point x=\"123\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"123\" y=\"138\"/>\n      <point x=\"281\" y=\"-20\"/>\n      <point x=\"596\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"-20\"/>\n      <point x=\"1077\" y=\"138\"/>\n      <point x=\"1077\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"1100\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"1335\"/>\n      <point x=\"991\" y=\"1420\"/>\n      <point x=\"753\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/V_turned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Vturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0245\"/>\n  <outline>\n    <component base=\"El-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/W_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"W\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0057\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"155\" y=\"0\" type=\"line\"/>\n      <point x=\"514\" y=\"0\" type=\"line\"/>\n      <point x=\"594\" y=\"787\" type=\"line\"/>\n      <point x=\"634\" y=\"787\" type=\"line\"/>\n      <point x=\"718\" y=\"1060\" type=\"line\"/>\n      <point x=\"484\" y=\"1060\" type=\"line\"/>\n      <point x=\"378\" y=\"235\" type=\"line\"/>\n      <point x=\"350\" y=\"235\" type=\"line\"/>\n      <point x=\"263\" y=\"1420\" type=\"line\"/>\n      <point x=\"3\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"686\" y=\"0\" type=\"line\"/>\n      <point x=\"1045\" y=\"0\" type=\"line\"/>\n      <point x=\"1197\" y=\"1420\" type=\"line\"/>\n      <point x=\"937\" y=\"1420\" type=\"line\"/>\n      <point x=\"850\" y=\"235\" type=\"line\"/>\n      <point x=\"822\" y=\"235\" type=\"line\"/>\n      <point x=\"718\" y=\"1060\" type=\"line\"/>\n      <point x=\"484\" y=\"1060\" type=\"line\"/>\n      <point x=\"566\" y=\"787\" type=\"line\"/>\n      <point x=\"606\" y=\"787\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/W_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E82\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/W_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0174\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/W_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wdieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E84\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/W_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E80\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/X_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"X\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0058\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"839\" y=\"0\" type=\"line\"/>\n      <point x=\"1169\" y=\"0\" type=\"line\"/>\n      <point x=\"690\" y=\"763\" type=\"line\"/>\n      <point x=\"362\" y=\"1420\" type=\"line\"/>\n      <point x=\"32\" y=\"1420\" type=\"line\"/>\n      <point x=\"524\" y=\"619\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"32\" y=\"0\" type=\"line\"/>\n      <point x=\"362\" y=\"0\" type=\"line\"/>\n      <point x=\"676\" y=\"619\" type=\"line\"/>\n      <point x=\"1169\" y=\"1420\" type=\"line\"/>\n      <point x=\"839\" y=\"1420\" type=\"line\"/>\n      <point x=\"510\" y=\"763\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/X_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"X.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"602\" y=\"0\" type=\"line\"/>\n      <point x=\"799\" y=\"0\" type=\"line\"/>\n      <point x=\"475\" y=\"350\" type=\"line\"/>\n      <point x=\"238\" y=\"639\" type=\"line\"/>\n      <point x=\"42\" y=\"639\" type=\"line\"/>\n      <point x=\"376\" y=\"272\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"42\" y=\"0\" type=\"line\"/>\n      <point x=\"238\" y=\"0\" type=\"line\"/>\n      <point x=\"465\" y=\"272\" type=\"line\"/>\n      <point x=\"799\" y=\"639\" type=\"line\"/>\n      <point x=\"602\" y=\"639\" type=\"line\"/>\n      <point x=\"366\" y=\"350\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/X_i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Xi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039E\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"83\" y=\"1160\" type=\"line\"/>\n      <point x=\"1117\" y=\"1160\" type=\"line\"/>\n      <point x=\"1117\" y=\"1420\" type=\"line\"/>\n      <point x=\"83\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"83\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"260\" type=\"line\"/>\n      <point x=\"83\" y=\"260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"173\" y=\"581\" type=\"line\"/>\n      <point x=\"1027\" y=\"581\" type=\"line\"/>\n      <point x=\"1027\" y=\"841\" type=\"line\"/>\n      <point x=\"173\" y=\"841\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Y\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0059\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"483\" y=\"424\" type=\"line\"/>\n      <point x=\"717\" y=\"424\" type=\"line\"/>\n      <point x=\"1192\" y=\"1420\" type=\"line\"/>\n      <point x=\"897\" y=\"1420\" type=\"line\"/>\n      <point x=\"609\" y=\"760\" type=\"line\"/>\n      <point x=\"591\" y=\"760\" type=\"line\"/>\n      <point x=\"303\" y=\"1420\" type=\"line\"/>\n      <point x=\"8\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"700\" type=\"line\"/>\n      <point x=\"468\" y=\"700\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Y.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"355\" y=\"160\" type=\"line\"/>\n      <point x=\"486\" y=\"160\" type=\"line\"/>\n      <point x=\"825\" y=\"639\" type=\"line\"/>\n      <point x=\"659\" y=\"639\" type=\"line\"/>\n      <point x=\"427\" y=\"311\" type=\"line\"/>\n      <point x=\"414\" y=\"311\" type=\"line\"/>\n      <point x=\"182\" y=\"639\" type=\"line\"/>\n      <point x=\"15\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"345\" y=\"0\" type=\"line\"/>\n      <point x=\"496\" y=\"0\" type=\"line\"/>\n      <point x=\"496\" y=\"260\" type=\"line\"/>\n      <point x=\"345\" y=\"260\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DD\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ycircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0176\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ydieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0178\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ydotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF4\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_eru-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yeru-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"296\" y=\"0\" type=\"line\"/>\n      <point x=\"412\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"0\"/>\n      <point x=\"771\" y=\"187\"/>\n      <point x=\"771\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"771\" y=\"756\"/>\n      <point x=\"628\" y=\"943\"/>\n      <point x=\"412\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"943\" type=\"line\"/>\n      <point x=\"276\" y=\"716\" type=\"line\"/>\n      <point x=\"354\" y=\"716\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"716\"/>\n      <point x=\"531\" y=\"626\"/>\n      <point x=\"531\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"317\"/>\n      <point x=\"466\" y=\"227\"/>\n      <point x=\"354\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"227\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"1420\" type=\"line\"/>\n      <point x=\"111\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"827\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"1420\" type=\"line\"/>\n      <point x=\"827\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ygrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF2\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF6\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yi-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0407\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ymacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0232\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Y_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ytilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF8\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Z_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Z\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"305\" y=\"68\" type=\"line\"/>\n      <point x=\"1062\" y=\"1177\" type=\"line\"/>\n      <point x=\"885\" y=\"1362\" type=\"line\"/>\n      <point x=\"128\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"0\" type=\"line\"/>\n      <point x=\"1082\" y=\"0\" type=\"line\"/>\n      <point x=\"1082\" y=\"243\" type=\"line\"/>\n      <point x=\"128\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"1177\" type=\"line\"/>\n      <point x=\"1062\" y=\"1177\" type=\"line\"/>\n      <point x=\"1062\" y=\"1420\" type=\"line\"/>\n      <point x=\"128\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Z_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0179\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"acutecomb.case\" xOffset=\"79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Z_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"acutecomb.case.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Z_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017D\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Z_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017B\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"dotaccentcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Z_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0417\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"537\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"-20\"/>\n      <point x=\"1089\" y=\"145\"/>\n      <point x=\"1089\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1089\" y=\"610\"/>\n      <point x=\"898\" y=\"729\"/>\n      <point x=\"671\" y=\"735\" type=\"curve\"/>\n      <point x=\"688\" y=\"689\" type=\"line\"/>\n      <point x=\"688\" y=\"806\" type=\"line\"/>\n      <point x=\"671\" y=\"758\" type=\"line\"/>\n      <point x=\"950\" y=\"809\"/>\n      <point x=\"1060\" y=\"915\"/>\n      <point x=\"1060\" y=\"1089\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"1306\"/>\n      <point x=\"890\" y=\"1440\"/>\n      <point x=\"542\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"1440\"/>\n      <point x=\"229\" y=\"1414\"/>\n      <point x=\"156\" y=\"1382\" type=\"curve\"/>\n      <point x=\"202\" y=\"1131\" type=\"line\"/>\n      <point x=\"283\" y=\"1155\"/>\n      <point x=\"395\" y=\"1188\"/>\n      <point x=\"526\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"1188\"/>\n      <point x=\"786\" y=\"1126\"/>\n      <point x=\"786\" y=\"1026\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"912\"/>\n      <point x=\"663\" y=\"860\"/>\n      <point x=\"364\" y=\"855\" type=\"curve\"/>\n      <point x=\"386\" y=\"612\" type=\"line\"/>\n      <point x=\"534\" y=\"612\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"612\"/>\n      <point x=\"812\" y=\"552\"/>\n      <point x=\"812\" y=\"426\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"310\"/>\n      <point x=\"716\" y=\"232\"/>\n      <point x=\"537\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"232\"/>\n      <point x=\"329\" y=\"264\"/>\n      <point x=\"216\" y=\"343\" type=\"curve\"/>\n      <point x=\"47\" y=\"151\" type=\"line\"/>\n      <point x=\"174\" y=\"37\"/>\n      <point x=\"336\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Z_eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zeta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0396\"/>\n  <outline>\n    <component base=\"Z\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Z_he-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0416\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"713\" y=\"724\" type=\"line\"/>\n      <point x=\"947\" y=\"734\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"738\"/>\n      <point x=\"1118\" y=\"789\"/>\n      <point x=\"1118\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"1118\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"1163\"/>\n      <point x=\"1142\" y=\"1182\"/>\n      <point x=\"1167\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1190\" y=\"1182\" type=\"line\"/>\n      <point x=\"1190\" y=\"1425\" type=\"line\"/>\n      <point x=\"1080\" y=\"1425\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"933\" y=\"1425\"/>\n      <point x=\"856\" y=\"1351\"/>\n      <point x=\"856\" y=\"1178\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"932\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"859\"/>\n      <point x=\"856\" y=\"841\"/>\n      <point x=\"778\" y=\"841\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"27\" y=\"-5\" type=\"line\"/>\n      <point x=\"137\" y=\"-5\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"-5\"/>\n      <point x=\"361\" y=\"69\"/>\n      <point x=\"361\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"488\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"561\"/>\n      <point x=\"361\" y=\"579\"/>\n      <point x=\"439\" y=\"579\" type=\"curve\"/>\n      <point x=\"504\" y=\"696\" type=\"line\"/>\n      <point x=\"253\" y=\"686\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"161\" y=\"683\"/>\n      <point x=\"99\" y=\"631\"/>\n      <point x=\"99\" y=\"545\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"302\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"257\"/>\n      <point x=\"75\" y=\"238\"/>\n      <point x=\"50\" y=\"238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"27\" y=\"238\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"349\" y=\"579\" type=\"line\"/>\n      <point x=\"518\" y=\"579\" type=\"line\"/>\n      <point x=\"518\" y=\"841\" type=\"line\"/>\n      <point x=\"349\" y=\"841\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"504\" y=\"724\" type=\"line\"/>\n      <point x=\"439\" y=\"841\" type=\"line\"/>\n      <point x=\"361\" y=\"841\"/>\n      <point x=\"361\" y=\"859\"/>\n      <point x=\"361\" y=\"932\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"1178\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"1351\"/>\n      <point x=\"284\" y=\"1425\"/>\n      <point x=\"137\" y=\"1425\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"27\" y=\"1425\" type=\"line\"/>\n      <point x=\"27\" y=\"1182\" type=\"line\"/>\n      <point x=\"50\" y=\"1182\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"1182\"/>\n      <point x=\"99\" y=\"1163\"/>\n      <point x=\"99\" y=\"1118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"875\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"789\"/>\n      <point x=\"161\" y=\"738\"/>\n      <point x=\"253\" y=\"734\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"498\" y=\"0\" type=\"line\"/>\n      <point x=\"702\" y=\"0\" type=\"line\"/>\n      <point x=\"702\" y=\"1420\" type=\"line\"/>\n      <point x=\"498\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1080\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1190\" y=\"-5\" type=\"line\"/>\n      <point x=\"1190\" y=\"238\" type=\"line\"/>\n      <point x=\"1167\" y=\"238\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"238\"/>\n      <point x=\"1118\" y=\"257\"/>\n      <point x=\"1118\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"545\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"631\"/>\n      <point x=\"1049\" y=\"682\"/>\n      <point x=\"947\" y=\"686\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"696\" type=\"line\"/>\n      <point x=\"778\" y=\"579\" type=\"line\"/>\n      <point x=\"856\" y=\"579\"/>\n      <point x=\"856\" y=\"561\"/>\n      <point x=\"856\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"242\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"69\"/>\n      <point x=\"933\" y=\"-5\"/>\n    </contour>\n    <contour>\n      <point x=\"702\" y=\"579\" type=\"line\"/>\n      <point x=\"858\" y=\"579\" type=\"line\"/>\n      <point x=\"858\" y=\"841\" type=\"line\"/>\n      <point x=\"702\" y=\"841\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/Z_hedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zhedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0496\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"633\" y=\"724\" type=\"line\"/>\n      <point x=\"867\" y=\"734\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"738\"/>\n      <point x=\"1038\" y=\"789\"/>\n      <point x=\"1038\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"1118\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"1163\"/>\n      <point x=\"1062\" y=\"1182\"/>\n      <point x=\"1087\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1110\" y=\"1182\" type=\"line\"/>\n      <point x=\"1110\" y=\"1425\" type=\"line\"/>\n      <point x=\"1008\" y=\"1425\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"1425\"/>\n      <point x=\"784\" y=\"1351\"/>\n      <point x=\"784\" y=\"1178\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"932\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"859\"/>\n      <point x=\"784\" y=\"841\"/>\n      <point x=\"709\" y=\"841\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"27\" y=\"-5\" type=\"line\"/>\n      <point x=\"129\" y=\"-5\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"275\" y=\"-5\"/>\n      <point x=\"353\" y=\"69\"/>\n      <point x=\"353\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"488\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"561\"/>\n      <point x=\"353\" y=\"579\"/>\n      <point x=\"427\" y=\"579\" type=\"curve\"/>\n      <point x=\"504\" y=\"696\" type=\"line\"/>\n      <point x=\"253\" y=\"686\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"161\" y=\"683\"/>\n      <point x=\"99\" y=\"631\"/>\n      <point x=\"99\" y=\"545\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"302\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"257\"/>\n      <point x=\"75\" y=\"238\"/>\n      <point x=\"50\" y=\"238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"27\" y=\"238\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"938\" y=\"-290\" type=\"line\"/>\n      <point x=\"1200\" y=\"-290\" type=\"line\"/>\n      <point x=\"1200\" y=\"239\" type=\"line\"/>\n      <point x=\"938\" y=\"239\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"342\" y=\"579\" type=\"line\"/>\n      <point x=\"503\" y=\"579\" type=\"line\"/>\n      <point x=\"503\" y=\"841\" type=\"line\"/>\n      <point x=\"342\" y=\"841\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"504\" y=\"724\" type=\"line\"/>\n      <point x=\"427\" y=\"841\" type=\"line\"/>\n      <point x=\"353\" y=\"841\"/>\n      <point x=\"353\" y=\"859\"/>\n      <point x=\"353\" y=\"932\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"1178\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"1351\"/>\n      <point x=\"275\" y=\"1425\"/>\n      <point x=\"129\" y=\"1425\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"27\" y=\"1425\" type=\"line\"/>\n      <point x=\"27\" y=\"1182\" type=\"line\"/>\n      <point x=\"50\" y=\"1182\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"1182\"/>\n      <point x=\"99\" y=\"1163\"/>\n      <point x=\"99\" y=\"1118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"875\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"789\"/>\n      <point x=\"161\" y=\"738\"/>\n      <point x=\"253\" y=\"734\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"0\" type=\"line\"/>\n      <point x=\"666\" y=\"0\" type=\"line\"/>\n      <point x=\"666\" y=\"1420\" type=\"line\"/>\n      <point x=\"454\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1008\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1110\" y=\"-5\" type=\"line\"/>\n      <point x=\"1110\" y=\"239\" type=\"line\"/>\n      <point x=\"1087\" y=\"239\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1062\" y=\"239\"/>\n      <point x=\"1038\" y=\"258\"/>\n      <point x=\"1038\" y=\"303\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"545\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"631\"/>\n      <point x=\"969\" y=\"682\"/>\n      <point x=\"867\" y=\"686\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"633\" y=\"696\" type=\"line\"/>\n      <point x=\"709\" y=\"579\" type=\"line\"/>\n      <point x=\"784\" y=\"579\"/>\n      <point x=\"784\" y=\"561\"/>\n      <point x=\"784\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"242\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"69\"/>\n      <point x=\"862\" y=\"-5\"/>\n    </contour>\n    <contour>\n      <point x=\"628\" y=\"579\" type=\"line\"/>\n      <point x=\"785\" y=\"579\" type=\"line\"/>\n      <point x=\"785\" y=\"841\" type=\"line\"/>\n      <point x=\"628\" y=\"841\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alef-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alef-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"343\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"294\" y=\"1367\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-10\"/>\n      <point x=\"1093\" y=\"102\"/>\n      <point x=\"1093\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1093\" y=\"571\"/>\n      <point x=\"764\" y=\"826\"/>\n      <point x=\"244\" y=\"1308\" type=\"curve\"/>\n      <point x=\"51\" y=\"1098\" type=\"line\"/>\n      <point x=\"560\" y=\"621\"/>\n      <point x=\"826\" y=\"415\"/>\n      <point x=\"826\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"290\"/>\n      <point x=\"772\" y=\"285\"/>\n      <point x=\"634\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"569\" y=\"285\"/>\n      <point x=\"437\" y=\"292\"/>\n      <point x=\"344\" y=\"300\" type=\"curve\"/>\n      <point x=\"170\" y=\"273\" type=\"line\"/>\n      <point x=\"166\" y=\"10\" type=\"line\"/>\n      <point x=\"364\" y=\"-4\"/>\n      <point x=\"474\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alef-ar.fina.short.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alef-ar.fina.short.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"333\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"294\" y=\"1255\" name=\"top\"/>\n  <anchor x=\"294\" y=\"1191\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-10\"/>\n      <point x=\"1093\" y=\"102\"/>\n      <point x=\"1093\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1093\" y=\"541\"/>\n      <point x=\"744\" y=\"786\"/>\n      <point x=\"224\" y=\"1198\" type=\"curve\"/>\n      <point x=\"51\" y=\"988\" type=\"line\"/>\n      <point x=\"560\" y=\"581\"/>\n      <point x=\"826\" y=\"385\"/>\n      <point x=\"826\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"290\"/>\n      <point x=\"772\" y=\"285\"/>\n      <point x=\"634\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"569\" y=\"285\"/>\n      <point x=\"437\" y=\"292\"/>\n      <point x=\"344\" y=\"300\" type=\"curve\"/>\n      <point x=\"170\" y=\"273\" type=\"line\"/>\n      <point x=\"166\" y=\"10\" type=\"line\"/>\n      <point x=\"364\" y=\"-4\"/>\n      <point x=\"474\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefF_athatan-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefFathatan-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"273\" y=\"1661\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"fathatan-ar\" xOffset=\"-305\" yOffset=\"-55\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefH_amzaabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefHamzaabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"290\" y=\"1684\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-326\" yOffset=\"87\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefH_amzabelow-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefHamzabelow-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"359\" y=\"-492\" name=\"bottom\"/>\n  <anchor x=\"294\" y=\"1317\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.rlig\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-262\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.rlig</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefM_adda-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefMadda-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"286\" y=\"1505\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"madda-ar\" xOffset=\"-309\" yOffset=\"68\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefT_hreeabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefThreeabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"35\" y=\"1481\" name=\"top\"/>\n  <outline>\n    <component base=\"three-persian.small01\" xOffset=\"-591\" yOffset=\"-161\"/>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefT_woabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefTwoabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"5\" y=\"1481\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-637\" yOffset=\"-161\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefW_asla-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefWasla-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"249\" y=\"1624\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"wasla-ar\" xOffset=\"-357\" yOffset=\"65\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefW_avyhamzaabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefWavyhamzaabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"296\" y=\"1708\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-326\" yOffset=\"87\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefW_avyhamzabelow-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefWavyhamzabelow-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"290\" y=\"-523\" name=\"bottom\"/>\n  <anchor x=\"294\" y=\"1317\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.rlig\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"-262\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.rlig</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_alefabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"524\" y=\"568\" type=\"curve\"/>\n      <point x=\"716\" y=\"568\" type=\"line\"/>\n      <point x=\"727\" y=\"668\"/>\n      <point x=\"717\" y=\"878\"/>\n      <point x=\"683\" y=\"1009\" type=\"curve\"/>\n      <point x=\"479\" y=\"1009\" type=\"line\"/>\n      <point x=\"511\" y=\"874\"/>\n      <point x=\"524\" y=\"711\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_bar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"596\" y=\"318\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"254\" y=\"219\" type=\"line\"/>\n      <point x=\"925\" y=\"219\" type=\"line\"/>\n      <point x=\"925\" y=\"397\" type=\"line\"/>\n      <point x=\"254\" y=\"397\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_cuberoot_fourthroot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_cuberoot_fourthroot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"0\" type=\"line\"/>\n      <point x=\"699\" y=\"0\" type=\"line\"/>\n      <point x=\"994\" y=\"745\" type=\"line\"/>\n      <point x=\"1186\" y=\"745\" type=\"line\"/>\n      <point x=\"1186\" y=\"972\" type=\"line\"/>\n      <point x=\"806\" y=\"972\" type=\"line\"/>\n      <point x=\"526\" y=\"138\" type=\"line\"/>\n      <point x=\"693\" y=\"137\" type=\"line\"/>\n      <point x=\"320\" y=\"1420\" type=\"line\"/>\n      <point x=\"51\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_damma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_damma-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"1229\" name=\"_top\"/>\n  <anchor x=\"599\" y=\"1056\" name=\"_top.dot\"/>\n  <anchor x=\"593\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"330\" y=\"1083\" type=\"line\"/>\n      <point x=\"612\" y=\"1139\"/>\n      <point x=\"822\" y=\"1234\"/>\n      <point x=\"822\" y=\"1407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"1528\"/>\n      <point x=\"746\" y=\"1587\"/>\n      <point x=\"650\" y=\"1587\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"1587\"/>\n      <point x=\"474\" y=\"1523\"/>\n      <point x=\"474\" y=\"1412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"1333\"/>\n      <point x=\"518\" y=\"1280\"/>\n      <point x=\"562\" y=\"1251\" type=\"curve\"/>\n      <point x=\"661\" y=\"1314\" type=\"line\"/>\n      <point x=\"619\" y=\"1331\"/>\n      <point x=\"596\" y=\"1355\"/>\n      <point x=\"596\" y=\"1394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"596\" y=\"1425\"/>\n      <point x=\"612\" y=\"1447\"/>\n      <point x=\"646\" y=\"1447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"1447\"/>\n      <point x=\"694\" y=\"1425\"/>\n      <point x=\"694\" y=\"1394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"1334\"/>\n      <point x=\"644\" y=\"1302\"/>\n      <point x=\"333\" y=\"1242\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_dot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_dot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"355\" type=\"line\"/>\n      <point x=\"783\" y=\"538\" type=\"line\"/>\n      <point x=\"600\" y=\"722\" type=\"line\"/>\n      <point x=\"417\" y=\"538\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_dotV_I_nvertedabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_dotVInvertedabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"767\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1302\" name=\"top\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" yOffset=\"976\"/>\n    <component base=\"_vabove\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1851\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_dotV_above.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_dotVabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"762\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"562\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1362\" name=\"top\"/>\n  <outline>\n    <component base=\"dotabove-ar\" xOffset=\"-4\" yOffset=\"1\"/>\n    <component base=\"vabove-ar\" xOffset=\"-4\" yOffset=\"431\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_dots.horz.below.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_dots.horz.below\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-8\" name=\"_bottom.dot\"/>\n  <anchor x=\"599\" y=\"-414\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"24\" yOffset=\"-741\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-226\" yOffset=\"-741\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"274\" yOffset=\"-741\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_doublebar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_doublebar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"596\" y=\"318\" name=\"_center\"/>\n  <outline>\n    <component base=\"_bar\" yScale=\"0.9\" yOffset=\"-85\"/>\n    <component base=\"_bar\" yScale=\"0.9\" yOffset=\"147\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_bar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_bar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_fatha-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_fatha-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"330\" y=\"1241\" type=\"line\"/>\n      <point x=\"848\" y=\"1385\" type=\"line\"/>\n      <point x=\"854\" y=\"1548\" type=\"line\"/>\n      <point x=\"336\" y=\"1404\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_four-persian.small01.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_four-persian.small01\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"482\" y=\"587\" type=\"curve\"/>\n      <point x=\"622\" y=\"587\" type=\"line\"/>\n      <point x=\"609\" y=\"674\"/>\n      <point x=\"578\" y=\"815\"/>\n      <point x=\"578\" y=\"859\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"885\"/>\n      <point x=\"585\" y=\"895\"/>\n      <point x=\"606\" y=\"895\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"895\"/>\n      <point x=\"635\" y=\"870\"/>\n      <point x=\"639\" y=\"810\" type=\"curve\"/>\n      <point x=\"770\" y=\"810\" type=\"line\"/>\n      <point x=\"783\" y=\"867\"/>\n      <point x=\"809\" y=\"962\"/>\n      <point x=\"837\" y=\"1014\" type=\"curve\"/>\n      <point x=\"722\" y=\"1041\" type=\"line\"/>\n      <point x=\"710\" y=\"1005\"/>\n      <point x=\"705\" y=\"972\"/>\n      <point x=\"700\" y=\"929\" type=\"curve\"/>\n      <point x=\"692\" y=\"929\" type=\"line\"/>\n      <point x=\"681\" y=\"1004\"/>\n      <point x=\"634\" y=\"1038\"/>\n      <point x=\"564\" y=\"1038\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"1038\"/>\n      <point x=\"438\" y=\"996\"/>\n      <point x=\"438\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"833\"/>\n      <point x=\"469\" y=\"680\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_fourdotscenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_fourdotscenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-60\" yOffset=\"681\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-63\" yOffset=\"434\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"183\" yOffset=\"682\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"180\" yOffset=\"435\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>3</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_fourthroot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_fourthroot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"619\" y=\"1334\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1651\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"623\" y=\"1131\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1131\"/>\n      <point x=\"727\" y=\"1137\"/>\n      <point x=\"767\" y=\"1148\" type=\"curve\"/>\n      <point x=\"761\" y=\"1273\" type=\"line\"/>\n      <point x=\"724\" y=\"1268\"/>\n      <point x=\"681\" y=\"1262\"/>\n      <point x=\"642\" y=\"1262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"600\" y=\"1262\"/>\n      <point x=\"589\" y=\"1264\"/>\n      <point x=\"589\" y=\"1275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"1286\"/>\n      <point x=\"611\" y=\"1296\"/>\n      <point x=\"712\" y=\"1318\" type=\"curve\"/>\n      <point x=\"707\" y=\"1436\" type=\"line\"/>\n      <point x=\"615\" y=\"1432\"/>\n      <point x=\"593\" y=\"1434\"/>\n      <point x=\"593\" y=\"1447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"1461\"/>\n      <point x=\"621\" y=\"1468\"/>\n      <point x=\"718\" y=\"1476\" type=\"curve\"/>\n      <point x=\"713\" y=\"1607\" type=\"line\"/>\n      <point x=\"546\" y=\"1572\"/>\n      <point x=\"476\" y=\"1511\"/>\n      <point x=\"476\" y=\"1447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"1399\"/>\n      <point x=\"513\" y=\"1376\"/>\n      <point x=\"570\" y=\"1369\" type=\"curve\"/>\n      <point x=\"570\" y=\"1352\" type=\"line\"/>\n      <point x=\"629\" y=\"1343\" type=\"line\"/>\n      <point x=\"628\" y=\"1382\" type=\"line\"/>\n      <point x=\"502\" y=\"1343\"/>\n      <point x=\"462\" y=\"1296\"/>\n      <point x=\"462\" y=\"1236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"1171\"/>\n      <point x=\"527\" y=\"1131\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_hamzasmall-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_hamzasmall-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"376\" y=\"497\" type=\"line\"/>\n      <point x=\"800\" y=\"585\" type=\"line\"/>\n      <point x=\"786\" y=\"739\" type=\"line\"/>\n      <point x=\"726\" y=\"728\"/>\n      <point x=\"640\" y=\"713\"/>\n      <point x=\"597\" y=\"713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"713\"/>\n      <point x=\"533\" y=\"721\"/>\n      <point x=\"533\" y=\"759\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"801\"/>\n      <point x=\"568\" y=\"810\"/>\n      <point x=\"646\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"810\"/>\n      <point x=\"709\" y=\"807\"/>\n      <point x=\"740\" y=\"803\" type=\"curve\"/>\n      <point x=\"748\" y=\"947\" type=\"line\"/>\n      <point x=\"715\" y=\"960\"/>\n      <point x=\"657\" y=\"971\"/>\n      <point x=\"611\" y=\"971\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"971\"/>\n      <point x=\"387\" y=\"917\"/>\n      <point x=\"387\" y=\"802\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"738\"/>\n      <point x=\"416\" y=\"700\"/>\n      <point x=\"469\" y=\"684\" type=\"curve\"/>\n      <point x=\"469\" y=\"660\" type=\"line\"/>\n      <point x=\"529\" y=\"604\" type=\"line\"/>\n      <point x=\"539\" y=\"689\" type=\"line\"/>\n      <point x=\"365\" y=\"647\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_hamzawavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_hamzawavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"276\" y=\"484\" type=\"line\"/>\n      <point x=\"321\" y=\"510\"/>\n      <point x=\"351\" y=\"527\"/>\n      <point x=\"386\" y=\"527\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"426\" y=\"527\"/>\n      <point x=\"466\" y=\"502\"/>\n      <point x=\"536\" y=\"502\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"502\"/>\n      <point x=\"749\" y=\"552\"/>\n      <point x=\"860\" y=\"585\" type=\"curve\"/>\n      <point x=\"846\" y=\"739\" type=\"line\"/>\n      <point x=\"786\" y=\"728\"/>\n      <point x=\"700\" y=\"713\"/>\n      <point x=\"657\" y=\"713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"613\" y=\"713\"/>\n      <point x=\"593\" y=\"721\"/>\n      <point x=\"593\" y=\"759\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"801\"/>\n      <point x=\"628\" y=\"810\"/>\n      <point x=\"706\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"810\"/>\n      <point x=\"769\" y=\"807\"/>\n      <point x=\"800\" y=\"803\" type=\"curve\"/>\n      <point x=\"808\" y=\"947\" type=\"line\"/>\n      <point x=\"775\" y=\"960\"/>\n      <point x=\"717\" y=\"971\"/>\n      <point x=\"671\" y=\"971\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"971\"/>\n      <point x=\"447\" y=\"917\"/>\n      <point x=\"447\" y=\"802\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"738\"/>\n      <point x=\"476\" y=\"700\"/>\n      <point x=\"529\" y=\"684\" type=\"curve\"/>\n      <point x=\"529\" y=\"660\" type=\"line\"/>\n      <point x=\"589\" y=\"604\" type=\"line\"/>\n      <point x=\"591\" y=\"690\" type=\"line\"/>\n      <point x=\"563\" y=\"682\"/>\n      <point x=\"540\" y=\"671\"/>\n      <point x=\"512\" y=\"671\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"671\"/>\n      <point x=\"419\" y=\"694\"/>\n      <point x=\"375\" y=\"694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"694\"/>\n      <point x=\"299\" y=\"673\"/>\n      <point x=\"254\" y=\"635\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_hehgoalcomma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_hehgoalcomma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"590\" y=\"-5\" name=\"_bottom.dot\"/>\n  <anchor x=\"592\" y=\"-424\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"587\" y=\"-412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"-412\"/>\n      <point x=\"715\" y=\"-370\"/>\n      <point x=\"715\" y=\"-292\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"-239\"/>\n      <point x=\"690\" y=\"-191\"/>\n      <point x=\"609\" y=\"-191\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"587\" y=\"-191\"/>\n      <point x=\"567\" y=\"-193\"/>\n      <point x=\"548\" y=\"-196\" type=\"curve\"/>\n      <point x=\"611\" y=\"-236\" type=\"line\"/>\n      <point x=\"616\" y=\"-170\"/>\n      <point x=\"636\" y=\"-139\"/>\n      <point x=\"691\" y=\"-83\" type=\"curve\"/>\n      <point x=\"610\" y=\"-29\" type=\"line\"/>\n      <point x=\"502\" y=\"-86\"/>\n      <point x=\"454\" y=\"-183\"/>\n      <point x=\"454\" y=\"-274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"-365\"/>\n      <point x=\"505\" y=\"-412\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_highhamzaA_lef-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_highhamzaAlef-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"532\" y=\"1741\" name=\"top\"/>\n  <outline>\n    <component base=\"highhamza-ar\" xOffset=\"-94\" yOffset=\"118\"/>\n    <component base=\"_alef-ar.fina.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_invertedstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_invertedstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"220\" y=\"852\" type=\"line\"/>\n      <point x=\"599\" y=\"1058\" type=\"line\"/>\n      <point x=\"600\" y=\"1230\" type=\"line\"/>\n      <point x=\"208\" y=\"1011\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_notdef.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\".notdef\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"823\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"1420\" type=\"line\"/>\n      <point x=\"823\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"243\" type=\"line\"/>\n      <point x=\"111\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"377\" y=\"0\" type=\"line\"/>\n      <point x=\"377\" y=\"1420\" type=\"line\"/>\n      <point x=\"111\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"1177\" type=\"line\"/>\n      <point x=\"1089\" y=\"1177\" type=\"line\"/>\n      <point x=\"1089\" y=\"1420\" type=\"line\"/>\n      <point x=\"111\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_onedotstah.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_onedotstah\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"762\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1512\" name=\"top\"/>\n  <outline>\n    <component base=\"_tahabove\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"60\" yOffset=\"464\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-4\" yOffset=\"1\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_ringA_rabic.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_ringArabic\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"595\" y=\"-188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"-188\"/>\n      <point x=\"777\" y=\"-121\"/>\n      <point x=\"777\" y=\"-8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"107\"/>\n      <point x=\"698\" y=\"172\"/>\n      <point x=\"595\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"172\"/>\n      <point x=\"414\" y=\"101\"/>\n      <point x=\"414\" y=\"-8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"-118\"/>\n      <point x=\"489\" y=\"-188\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"-54\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"569\" y=\"-54\"/>\n      <point x=\"547\" y=\"-39\"/>\n      <point x=\"547\" y=\"-8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"20\"/>\n      <point x=\"567\" y=\"38\"/>\n      <point x=\"596\" y=\"38\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"623\" y=\"38\"/>\n      <point x=\"642\" y=\"21\"/>\n      <point x=\"642\" y=\"-8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"-37\"/>\n      <point x=\"623\" y=\"-54\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_stroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"312\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"322\" y=\"227\" type=\"line\"/>\n      <point x=\"877\" y=\"227\" type=\"line\"/>\n      <point x=\"877\" y=\"402\" type=\"line\"/>\n      <point x=\"322\" y=\"402\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_tahabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_tahabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"568\" y=\"661\" name=\"_top\"/>\n  <anchor x=\"568\" y=\"546\" name=\"_top.dot\"/>\n  <anchor x=\"552\" y=\"1112\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"547\" y=\"586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"745\" y=\"586\"/>\n      <point x=\"844\" y=\"655\"/>\n      <point x=\"844\" y=\"787\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"903\"/>\n      <point x=\"758\" y=\"1000\"/>\n      <point x=\"667\" y=\"1000\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"1000\"/>\n      <point x=\"470\" y=\"867\"/>\n      <point x=\"387\" y=\"695\" type=\"curve\"/>\n      <point x=\"485\" y=\"677\" type=\"line\"/>\n      <point x=\"555\" y=\"804\"/>\n      <point x=\"599\" y=\"837\"/>\n      <point x=\"637\" y=\"837\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"837\"/>\n      <point x=\"694\" y=\"807\"/>\n      <point x=\"694\" y=\"782\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"747\"/>\n      <point x=\"668\" y=\"741\"/>\n      <point x=\"556\" y=\"741\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"741\"/>\n      <point x=\"353\" y=\"755\"/>\n      <point x=\"299\" y=\"760\" type=\"curve\"/>\n      <point x=\"304\" y=\"610\" type=\"line\"/>\n      <point x=\"366\" y=\"598\"/>\n      <point x=\"455\" y=\"586\"/>\n    </contour>\n    <contour>\n      <point x=\"383\" y=\"700\" type=\"line\"/>\n      <point x=\"516\" y=\"751\" type=\"line\"/>\n      <point x=\"513\" y=\"867\" type=\"line\"/>\n      <point x=\"485\" y=\"886\" type=\"line\"/>\n      <point x=\"508\" y=\"923\"/>\n      <point x=\"519\" y=\"950\"/>\n      <point x=\"518\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"1074\" type=\"line\"/>\n      <point x=\"377\" y=\"1074\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_tahabovesmall.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_tahabovesmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"336\"/>\n      <point x=\"806\" y=\"384\"/>\n      <point x=\"806\" y=\"481\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"560\"/>\n      <point x=\"753\" y=\"634\"/>\n      <point x=\"678\" y=\"634\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"634\"/>\n      <point x=\"542\" y=\"537\"/>\n      <point x=\"484\" y=\"416\" type=\"curve\"/>\n      <point x=\"563\" y=\"399\" type=\"line\"/>\n      <point x=\"617\" y=\"490\"/>\n      <point x=\"637\" y=\"510\"/>\n      <point x=\"663\" y=\"510\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"682\" y=\"510\"/>\n      <point x=\"693\" y=\"497\"/>\n      <point x=\"693\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"465\"/>\n      <point x=\"679\" y=\"458\"/>\n      <point x=\"602\" y=\"458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"458\"/>\n      <point x=\"448\" y=\"467\"/>\n      <point x=\"410\" y=\"472\" type=\"curve\"/>\n      <point x=\"413\" y=\"353\" type=\"line\"/>\n      <point x=\"456\" y=\"343\"/>\n      <point x=\"529\" y=\"336\"/>\n    </contour>\n    <contour>\n      <point x=\"479\" y=\"418\" type=\"line\"/>\n      <point x=\"572\" y=\"456\" type=\"line\"/>\n      <point x=\"577\" y=\"542\" type=\"line\"/>\n      <point x=\"555\" y=\"559\" type=\"line\"/>\n      <point x=\"566\" y=\"579\"/>\n      <point x=\"575\" y=\"594\"/>\n      <point x=\"575\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"574\" y=\"667\" type=\"line\"/>\n      <point x=\"472\" y=\"667\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_threedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_threedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"60\" yOffset=\"340\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"149\" yOffset=\"30\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-101\" yOffset=\"30\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_twodotshorizontal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_twodotshorizontal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"149\" yOffset=\"20\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-101\" yOffset=\"20\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_twodotstah.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_twodotstah\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"767\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"628\" y=\"1407\" name=\"top\"/>\n  <outline>\n    <component base=\"_tahabove\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"99\" yOffset=\"422\"/>\n    <component base=\"_twodotshorizontal-ar\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotshorizontal-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_twodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_twodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"24\" yOffset=\"1239\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"21\" yOffset=\"974\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_vabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_vabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"530\" y=\"580\" type=\"line\"/>\n      <point x=\"677\" y=\"580\" type=\"line\"/>\n      <point x=\"812\" y=\"896\" type=\"line\"/>\n      <point x=\"660\" y=\"911\" type=\"line\"/>\n      <point x=\"587\" y=\"671\" type=\"line\"/>\n      <point x=\"641\" y=\"671\" type=\"line\"/>\n      <point x=\"614\" y=\"737\" type=\"line\"/>\n      <point x=\"598\" y=\"737\" type=\"line\"/>\n      <point x=\"542\" y=\"911\" type=\"line\"/>\n      <point x=\"388\" y=\"891\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_vbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_vbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-476\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_vabove\" yOffset=\"-995\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_vabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_vinvertedbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_vinvertedbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-426\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_vabove\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"523\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_vabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_yehR_ohingya-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_yehRohingya-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"851\" y=\"-26\" name=\"bottom.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"115\" y=\"-251\" type=\"curve\"/>\n      <point x=\"343\" y=\"-251\" type=\"line\"/>\n      <point x=\"332\" y=\"-207\"/>\n      <point x=\"324\" y=\"-158\"/>\n      <point x=\"324\" y=\"-114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"-59\"/>\n      <point x=\"354\" y=\"-23\"/>\n      <point x=\"469\" y=\"-11\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"6\"/>\n      <point x=\"770\" y=\"17\"/>\n      <point x=\"926\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"192\"/>\n      <point x=\"1148\" y=\"306\"/>\n      <point x=\"1148\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1148\" y=\"713\"/>\n      <point x=\"1019\" y=\"861\"/>\n      <point x=\"832\" y=\"861\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"861\"/>\n      <point x=\"498\" y=\"688\"/>\n      <point x=\"498\" y=\"461\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"72\"/>\n      <point x=\"848\" y=\"-10\"/>\n      <point x=\"1185\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-10\"/>\n      <point x=\"1310\" y=\"26\"/>\n      <point x=\"1310\" y=\"140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1310\" y=\"234\"/>\n      <point x=\"1277\" y=\"285\"/>\n      <point x=\"1202\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"285\"/>\n      <point x=\"698\" y=\"314\"/>\n      <point x=\"698\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"540\"/>\n      <point x=\"758\" y=\"579\"/>\n      <point x=\"825\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"579\"/>\n      <point x=\"947\" y=\"536\"/>\n      <point x=\"947\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"398\"/>\n      <point x=\"920\" y=\"348\"/>\n      <point x=\"853\" y=\"324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"291\"/>\n      <point x=\"614\" y=\"282\"/>\n      <point x=\"449\" y=\"273\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"197\" y=\"259\"/>\n      <point x=\"77\" y=\"161\"/>\n      <point x=\"77\" y=\"-50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"77\" y=\"-104\"/>\n      <point x=\"91\" y=\"-184\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/_yehR_ohingya-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_yehRohingya-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"811\" y=\"-26\" name=\"bottom.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"476\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"-10\"/>\n      <point x=\"770\" y=\"17\"/>\n      <point x=\"926\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"192\"/>\n      <point x=\"1148\" y=\"306\"/>\n      <point x=\"1148\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1148\" y=\"713\"/>\n      <point x=\"1019\" y=\"861\"/>\n      <point x=\"832\" y=\"861\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"861\"/>\n      <point x=\"498\" y=\"688\"/>\n      <point x=\"498\" y=\"461\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"72\"/>\n      <point x=\"848\" y=\"-10\"/>\n      <point x=\"1185\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-10\"/>\n      <point x=\"1310\" y=\"26\"/>\n      <point x=\"1310\" y=\"140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1310\" y=\"234\"/>\n      <point x=\"1277\" y=\"285\"/>\n      <point x=\"1202\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"285\"/>\n      <point x=\"698\" y=\"314\"/>\n      <point x=\"698\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"540\"/>\n      <point x=\"758\" y=\"579\"/>\n      <point x=\"825\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"579\"/>\n      <point x=\"947\" y=\"536\"/>\n      <point x=\"947\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"398\"/>\n      <point x=\"920\" y=\"348\"/>\n      <point x=\"853\" y=\"324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"291\"/>\n      <point x=\"612\" y=\"285\"/>\n      <point x=\"477\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"285\"/>\n      <point x=\"228\" y=\"295\"/>\n      <point x=\"68\" y=\"305\" type=\"curve\"/>\n      <point x=\"60\" y=\"40\" type=\"line\"/>\n      <point x=\"205\" y=\"0\"/>\n      <point x=\"311\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"a-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0430\"/>\n  <outline>\n    <component base=\"a\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/a.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"a\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0061\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1057\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"795\" y=\"-10\" type=\"line\"/>\n      <point x=\"1175\" y=\"0\" type=\"line\"/>\n      <point x=\"1175\" y=\"220\" type=\"line\"/>\n      <point x=\"1028\" y=\"242\" type=\"line\"/>\n      <point x=\"1028\" y=\"634\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"914\"/>\n      <point x=\"844\" y=\"1062\"/>\n      <point x=\"460\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"229\" y=\"1070\" type=\"line\"/>\n      <point x=\"209\" y=\"824\" type=\"line\"/>\n      <point x=\"480\" y=\"817\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"812\"/>\n      <point x=\"768\" y=\"762\"/>\n      <point x=\"768\" y=\"649\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"442\" type=\"line\"/>\n      <point x=\"772\" y=\"304\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"436\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"-20\"/>\n      <point x=\"749\" y=\"72\"/>\n      <point x=\"756\" y=\"256\" type=\"curve\"/>\n      <point x=\"721\" y=\"224\" type=\"line\"/>\n      <point x=\"806\" y=\"224\" type=\"line\"/>\n      <point x=\"768\" y=\"496\" type=\"line\"/>\n      <point x=\"768\" y=\"430\" type=\"line\"/>\n      <point x=\"768\" y=\"322\"/>\n      <point x=\"679\" y=\"208\"/>\n      <point x=\"503\" y=\"208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"406\" y=\"208\"/>\n      <point x=\"354\" y=\"247\"/>\n      <point x=\"354\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"398\"/>\n      <point x=\"427\" y=\"439\"/>\n      <point x=\"564\" y=\"439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"639\" y=\"439\"/>\n      <point x=\"700\" y=\"439\"/>\n      <point x=\"786\" y=\"419\" type=\"curve\"/>\n      <point x=\"830\" y=\"630\" type=\"line\"/>\n      <point x=\"743\" y=\"655\"/>\n      <point x=\"667\" y=\"667\"/>\n      <point x=\"551\" y=\"667\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"667\"/>\n      <point x=\"79\" y=\"536\"/>\n      <point x=\"79\" y=\"299\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"79\" y=\"95\"/>\n      <point x=\"210\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/aacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"acutecomb\" xOffset=\"41\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/abreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0103\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/abreveacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abreveacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAF\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n    <component base=\"acutecomb\" xOffset=\"41\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/abrevedotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevedotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB7\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/abrevegrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevegrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n    <component base=\"gravecomb\" xOffset=\"-65\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/abrevehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n    <component base=\"hookabovecomb\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/abrevetilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevetilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n    <component base=\"tildecomb\" xOffset=\"-10\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01CE\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"caroncomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E2\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n    <component base=\"acutecomb\" xOffset=\"399\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAD\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA7\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n    <component base=\"gravecomb\" xOffset=\"293\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA9\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n    <component base=\"hookabovecomb\" xOffset=\"358\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAB\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n    <component base=\"tildecomb\" xOffset=\"-10\" yOffset=\"520\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acknowledgeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acknowledgeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2406\"/>\n  <outline>\n    <component base=\"A.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"K.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>A.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>K.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acknowledgeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acknowledgeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"299\" y=\"185\" type=\"line\"/>\n      <point x=\"617\" y=\"185\" type=\"line\"/>\n      <point x=\"1143\" y=\"1235\" type=\"line\"/>\n      <point x=\"878\" y=\"1235\" type=\"line\"/>\n      <point x=\"489\" y=\"465\" type=\"line\"/>\n      <point x=\"471\" y=\"465\" type=\"line\"/>\n      <point x=\"365\" y=\"786\" type=\"line\"/>\n      <point x=\"109\" y=\"786\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B4\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acutecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.case\" format=\"2\">\n  <anchor x=\"521\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"521\" y=\"1420\" name=\"_top_viet\"/>\n  <anchor x=\"521\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"1580\" type=\"line\"/>\n      <point x=\"655\" y=\"1580\" type=\"line\"/>\n      <point x=\"959\" y=\"1855\" type=\"line\"/>\n      <point x=\"595\" y=\"1855\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acutecomb.case.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.case.loclPLK\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1800\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"488\" y=\"1540\" type=\"line\"/>\n      <point x=\"714\" y=\"1540\" type=\"line\"/>\n      <point x=\"813\" y=\"1840\" type=\"line\"/>\n      <point x=\"534\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acutecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb\" format=\"2\">\n  <unicode hex=\"0301\"/>\n  <anchor x=\"539\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"539\" y=\"1060\" name=\"_top_viet\"/>\n  <anchor x=\"539\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"401\" y=\"1248\" type=\"line\"/>\n      <point x=\"668\" y=\"1248\" type=\"line\"/>\n      <point x=\"874\" y=\"1628\" type=\"line\"/>\n      <point x=\"587\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acutecomb.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.loclPLK\" format=\"2\">\n  <anchor x=\"570\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"570\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"446\" y=\"1248\" type=\"line\"/>\n      <point x=\"704\" y=\"1248\" type=\"line\"/>\n      <point x=\"814\" y=\"1648\" type=\"line\"/>\n      <point x=\"536\" y=\"1648\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/acutetonecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutetonecomb\" format=\"2\">\n  <unicode hex=\"0341\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/adieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"adieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E4\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-18\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/adotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"adotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ae-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ae-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ae-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ae-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D5\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ae.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ae\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E6\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"299\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"-20\"/>\n      <point x=\"572\" y=\"92\"/>\n      <point x=\"593\" y=\"288\" type=\"curve\"/>\n      <point x=\"509\" y=\"266\" type=\"line\"/>\n      <point x=\"673\" y=\"266\" type=\"line\"/>\n      <point x=\"496\" y=\"556\" type=\"line\"/>\n      <point x=\"479\" y=\"380\" type=\"line\"/>\n      <point x=\"479\" y=\"271\"/>\n      <point x=\"432\" y=\"208\"/>\n      <point x=\"351\" y=\"208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"294\" y=\"208\"/>\n      <point x=\"261\" y=\"246\"/>\n      <point x=\"261\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"393\"/>\n      <point x=\"319\" y=\"441\"/>\n      <point x=\"420\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"441\"/>\n      <point x=\"557\" y=\"441\"/>\n      <point x=\"592\" y=\"411\" type=\"curve\"/>\n      <point x=\"603\" y=\"598\" type=\"line\"/>\n      <point x=\"554\" y=\"621\"/>\n      <point x=\"477\" y=\"634\"/>\n      <point x=\"391\" y=\"634\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"145\" y=\"634\"/>\n      <point x=\"4\" y=\"507\"/>\n      <point x=\"4\" y=\"286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"4\" y=\"91\"/>\n      <point x=\"111\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"496\" y=\"310\" type=\"line\"/>\n      <point x=\"640\" y=\"310\" type=\"line\"/>\n      <point x=\"640\" y=\"634\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"640\" y=\"902\"/>\n      <point x=\"496\" y=\"1061\"/>\n      <point x=\"245\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"134\" y=\"1070\" type=\"line\"/>\n      <point x=\"114\" y=\"815\" type=\"line\"/>\n      <point x=\"225\" y=\"812\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"807\"/>\n      <point x=\"479\" y=\"741\"/>\n      <point x=\"479\" y=\"633\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"375\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"963\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1023\" y=\"-20\"/>\n      <point x=\"1092\" y=\"-13\"/>\n      <point x=\"1150\" y=\"-2\" type=\"curve\"/>\n      <point x=\"1124\" y=\"247\" type=\"line\"/>\n      <point x=\"1080\" y=\"239\"/>\n      <point x=\"1029\" y=\"234\"/>\n      <point x=\"987\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"234\"/>\n      <point x=\"728\" y=\"347\"/>\n      <point x=\"728\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"740\"/>\n      <point x=\"762\" y=\"824\"/>\n      <point x=\"839\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"913\" y=\"824\"/>\n      <point x=\"945\" y=\"761\"/>\n      <point x=\"945\" y=\"610\" type=\"curve\"/>\n      <point x=\"710\" y=\"610\" type=\"line\"/>\n      <point x=\"710\" y=\"423\" type=\"line\"/>\n      <point x=\"1186\" y=\"423\" type=\"line\"/>\n      <point x=\"1190\" y=\"467\"/>\n      <point x=\"1192\" y=\"522\"/>\n      <point x=\"1192\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1192\" y=\"895\"/>\n      <point x=\"1081\" y=\"1080\"/>\n      <point x=\"887\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"1080\"/>\n      <point x=\"574\" y=\"880\"/>\n      <point x=\"574\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"574\" y=\"171\"/>\n      <point x=\"716\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/aeacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aeacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FD\"/>\n  <outline>\n    <component base=\"ae\"/>\n    <component base=\"acutecomb\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/afghani-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"afghani-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060B\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n    <component base=\"alefbelow-ar\" xOffset=\"3\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/agrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"agrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E0\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"gravecomb\" xOffset=\"-65\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ahookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ahookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ain-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ain-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"611\" y=\"-645\" name=\"bottom\"/>\n  <anchor x=\"612\" y=\"-606\" name=\"bottom.dot\"/>\n  <anchor x=\"628\" y=\"-151\" name=\"center\"/>\n  <anchor x=\"609\" y=\"1105\" name=\"top\"/>\n  <anchor x=\"610\" y=\"815\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"645\" y=\"-649\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"807\" y=\"-649\"/>\n      <point x=\"983\" y=\"-617\"/>\n      <point x=\"1089\" y=\"-572\" type=\"curve\"/>\n      <point x=\"1091\" y=\"-308\" type=\"line\"/>\n      <point x=\"995\" y=\"-327\"/>\n      <point x=\"811\" y=\"-354\"/>\n      <point x=\"659\" y=\"-354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"-354\"/>\n      <point x=\"346\" y=\"-321\"/>\n      <point x=\"346\" y=\"-225\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"-133\"/>\n      <point x=\"432\" y=\"-26\"/>\n      <point x=\"720\" y=\"154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"277\"/>\n      <point x=\"1026\" y=\"385\"/>\n      <point x=\"1026\" y=\"521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"669\"/>\n      <point x=\"889\" y=\"770\"/>\n      <point x=\"614\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"770\"/>\n      <point x=\"304\" y=\"736\"/>\n      <point x=\"188\" y=\"686\" type=\"curve\"/>\n      <point x=\"188\" y=\"441\" type=\"line\"/>\n      <point x=\"312\" y=\"302\"/>\n      <point x=\"356\" y=\"253\"/>\n      <point x=\"454\" y=\"169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"18\"/>\n      <point x=\"790\" y=\"-10\"/>\n      <point x=\"1186\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1294\" y=\"-10\"/>\n      <point x=\"1320\" y=\"26\"/>\n      <point x=\"1320\" y=\"139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1320\" y=\"233\"/>\n      <point x=\"1307\" y=\"285\"/>\n      <point x=\"1202\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"285\"/>\n      <point x=\"674\" y=\"277\"/>\n      <point x=\"597\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"393\"/>\n      <point x=\"492\" y=\"429\"/>\n      <point x=\"346\" y=\"575\" type=\"curve\"/>\n      <point x=\"286\" y=\"468\" type=\"line\"/>\n      <point x=\"371\" y=\"491\"/>\n      <point x=\"505\" y=\"508\"/>\n      <point x=\"603\" y=\"508\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"508\"/>\n      <point x=\"753\" y=\"489\"/>\n      <point x=\"753\" y=\"455\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"419\"/>\n      <point x=\"715\" y=\"387\"/>\n      <point x=\"546\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"77\"/>\n      <point x=\"92\" y=\"-84\"/>\n      <point x=\"92\" y=\"-281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"92\" y=\"-546\"/>\n      <point x=\"300\" y=\"-649\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ain-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ain-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0639\"/>\n  <anchor x=\"591\" y=\"-645\" name=\"bottom\"/>\n  <anchor x=\"592\" y=\"-606\" name=\"bottom.dot\"/>\n  <anchor x=\"658\" y=\"-116\" name=\"center\"/>\n  <anchor x=\"506\" y=\"1248\" name=\"top\"/>\n  <anchor x=\"507\" y=\"998\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"-649\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"-649\"/>\n      <point x=\"987\" y=\"-615\"/>\n      <point x=\"1114\" y=\"-571\" type=\"curve\"/>\n      <point x=\"1116\" y=\"-306\" type=\"line\"/>\n      <point x=\"981\" y=\"-327\"/>\n      <point x=\"821\" y=\"-354\"/>\n      <point x=\"668\" y=\"-354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"-354\"/>\n      <point x=\"298\" y=\"-310\"/>\n      <point x=\"298\" y=\"-179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"-49\"/>\n      <point x=\"383\" y=\"90\"/>\n      <point x=\"926\" y=\"203\" type=\"curve\"/>\n      <point x=\"907\" y=\"483\" type=\"line\"/>\n      <point x=\"762\" y=\"456\"/>\n      <point x=\"677\" y=\"443\"/>\n      <point x=\"604\" y=\"443\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"443\"/>\n      <point x=\"393\" y=\"470\"/>\n      <point x=\"393\" y=\"571\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"662\"/>\n      <point x=\"450\" y=\"700\"/>\n      <point x=\"587\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"700\"/>\n      <point x=\"744\" y=\"688\"/>\n      <point x=\"825\" y=\"670\" type=\"curve\"/>\n      <point x=\"842\" y=\"913\" type=\"line\"/>\n      <point x=\"750\" y=\"949\"/>\n      <point x=\"656\" y=\"974\"/>\n      <point x=\"543\" y=\"974\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"974\"/>\n      <point x=\"136\" y=\"807\"/>\n      <point x=\"136\" y=\"578\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"412\"/>\n      <point x=\"199\" y=\"314\"/>\n      <point x=\"372\" y=\"273\" type=\"curve\"/>\n      <point x=\"372\" y=\"237\" type=\"line\"/>\n      <point x=\"440\" y=\"235\" type=\"line\"/>\n      <point x=\"432\" y=\"285\" type=\"line\"/>\n      <point x=\"203\" y=\"179\"/>\n      <point x=\"44\" y=\"14\"/>\n      <point x=\"44\" y=\"-219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"44\" y=\"-539\"/>\n      <point x=\"298\" y=\"-649\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ain-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ain-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"663\" y=\"-131\" name=\"bottom\"/>\n  <anchor x=\"663\" y=\"-16\" name=\"bottom.dot\"/>\n  <anchor x=\"660\" y=\"1185\" name=\"top\"/>\n  <anchor x=\"661\" y=\"915\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-17\" y=\"-10\" type=\"line\"/>\n      <point x=\"560\" y=\"-10\"/>\n      <point x=\"807\" y=\"40\"/>\n      <point x=\"1073\" y=\"97\" type=\"curve\"/>\n      <point x=\"1054\" y=\"377\" type=\"line\"/>\n      <point x=\"919\" y=\"360\"/>\n      <point x=\"824\" y=\"347\"/>\n      <point x=\"741\" y=\"347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"347\"/>\n      <point x=\"540\" y=\"379\"/>\n      <point x=\"540\" y=\"489\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"580\"/>\n      <point x=\"607\" y=\"618\"/>\n      <point x=\"734\" y=\"618\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"618\"/>\n      <point x=\"891\" y=\"606\"/>\n      <point x=\"972\" y=\"588\" type=\"curve\"/>\n      <point x=\"989\" y=\"831\" type=\"line\"/>\n      <point x=\"897\" y=\"867\"/>\n      <point x=\"793\" y=\"892\"/>\n      <point x=\"690\" y=\"892\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"892\"/>\n      <point x=\"283\" y=\"745\"/>\n      <point x=\"283\" y=\"526\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"390\"/>\n      <point x=\"324\" y=\"351\"/>\n      <point x=\"384\" y=\"313\" type=\"curve\"/>\n      <point x=\"384\" y=\"260\" type=\"line\"/>\n      <point x=\"512\" y=\"258\" type=\"line\"/>\n      <point x=\"504\" y=\"308\" type=\"line\"/>\n      <point x=\"432\" y=\"291\"/>\n      <point x=\"331\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ain-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ain-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"611\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"611\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"609\" y=\"1105\" name=\"top\"/>\n  <anchor x=\"610\" y=\"815\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-16\" y=\"-10\" type=\"line\"/>\n      <point x=\"475\" y=\"-10\"/>\n      <point x=\"1026\" y=\"225\"/>\n      <point x=\"1026\" y=\"522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"669\"/>\n      <point x=\"889\" y=\"770\"/>\n      <point x=\"634\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"770\"/>\n      <point x=\"304\" y=\"736\"/>\n      <point x=\"188\" y=\"687\" type=\"curve\"/>\n      <point x=\"188\" y=\"441\" type=\"line\"/>\n      <point x=\"282\" y=\"334\"/>\n      <point x=\"361\" y=\"255\"/>\n      <point x=\"452\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"613\" y=\"25\"/>\n      <point x=\"720\" y=\"-10\"/>\n      <point x=\"1186\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1294\" y=\"-10\"/>\n      <point x=\"1320\" y=\"26\"/>\n      <point x=\"1320\" y=\"139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1320\" y=\"233\"/>\n      <point x=\"1307\" y=\"285\"/>\n      <point x=\"1202\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"285\"/>\n      <point x=\"647\" y=\"285\"/>\n      <point x=\"587\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"409\"/>\n      <point x=\"482\" y=\"439\"/>\n      <point x=\"348\" y=\"574\" type=\"curve\"/>\n      <point x=\"338\" y=\"480\" type=\"line\"/>\n      <point x=\"413\" y=\"496\"/>\n      <point x=\"505\" y=\"508\"/>\n      <point x=\"602\" y=\"508\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"508\"/>\n      <point x=\"754\" y=\"489\"/>\n      <point x=\"754\" y=\"457\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"322\"/>\n      <point x=\"345\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"10\" yOffset=\"273\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A0\"/>\n  <guideline x=\"121\" y=\"689\" angle=\"0\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-93\" yOffset=\"456\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"210\" y=\"624\" angle=\"0\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"61\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"10\" yOffset=\"273\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedotsdownabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"601\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"threedotsdownabove-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"34\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedotsdownabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075E\"/>\n  <anchor x=\"511\" y=\"1704\" name=\"top\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"threedotsdownabove-ar\" xScale=\"1.001\" xOffset=\"-94\" yOffset=\"476\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedotsdownabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"651\" y=\"1644\" name=\"top\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"threedotsdownabove-ar\" xScale=\"1.001\" xOffset=\"60\" yOffset=\"393\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedotsdownabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"601\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"threedotsdownabove-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"34\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"10\" yOffset=\"283\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075D\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-93\" yOffset=\"466\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"61\" yOffset=\"383\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"10\" yOffset=\"283\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotsverticalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"10\" yOffset=\"253\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075F\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-93\" yOffset=\"436\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotsverticalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"61\" yOffset=\"353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotsverticalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"10\" yOffset=\"253\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"318\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"318\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"270\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"588\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"-10\"/>\n      <point x=\"670\" y=\"52\"/>\n      <point x=\"670\" y=\"120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"209\"/>\n      <point x=\"646\" y=\"285\"/>\n      <point x=\"600\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"434\" y=\"285\"/>\n      <point x=\"411\" y=\"309\"/>\n      <point x=\"410\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"406\" y=\"1420\" type=\"line\"/>\n      <point x=\"132\" y=\"1420\" type=\"line\"/>\n      <point x=\"136\" y=\"406\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"90\"/>\n      <point x=\"245\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"462\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"462\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"414\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1246\" y=\"-10\"/>\n      <point x=\"1270\" y=\"62\"/>\n      <point x=\"1270\" y=\"130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1270\" y=\"219\"/>\n      <point x=\"1246\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"285\"/>\n      <point x=\"826\" y=\"285\"/>\n      <point x=\"692\" y=\"291\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"588\" y=\"296\"/>\n      <point x=\"560\" y=\"321\"/>\n      <point x=\"560\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"1420\" type=\"line\"/>\n      <point x=\"284\" y=\"1420\" type=\"line\"/>\n      <point x=\"286\" y=\"406\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"117\"/>\n      <point x=\"391\" y=\"6\"/>\n      <point x=\"700\" y=\"-4\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"-9\"/>\n      <point x=\"1052\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"293\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"293\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"274\" y=\"1310\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"735\" y=\"219\" type=\"curve\"/>\n      <point x=\"920\" y=\"379\" type=\"line\"/>\n      <point x=\"722\" y=\"700\"/>\n      <point x=\"479\" y=\"1025\"/>\n      <point x=\"243\" y=\"1298\" type=\"curve\"/>\n      <point x=\"36\" y=\"1122\" type=\"line\"/>\n      <point x=\"259\" y=\"858\"/>\n      <point x=\"530\" y=\"536\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.short.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.short.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"319\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"273\" y=\"1204\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"588\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"-10\"/>\n      <point x=\"670\" y=\"52\"/>\n      <point x=\"670\" y=\"120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"209\"/>\n      <point x=\"646\" y=\"285\"/>\n      <point x=\"600\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"285\"/>\n      <point x=\"422\" y=\"299\"/>\n      <point x=\"420\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"412\" y=\"1198\" type=\"line\"/>\n      <point x=\"138\" y=\"1198\" type=\"line\"/>\n      <point x=\"146\" y=\"406\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"149\" y=\"90\"/>\n      <point x=\"255\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.short.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.short\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"462\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"462\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"416\" y=\"1204\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1246\" y=\"-10\"/>\n      <point x=\"1270\" y=\"62\"/>\n      <point x=\"1270\" y=\"130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1270\" y=\"219\"/>\n      <point x=\"1246\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"285\"/>\n      <point x=\"826\" y=\"285\"/>\n      <point x=\"692\" y=\"291\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"588\" y=\"296\"/>\n      <point x=\"561\" y=\"321\"/>\n      <point x=\"560\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"1198\" type=\"line\"/>\n      <point x=\"278\" y=\"1198\" type=\"line\"/>\n      <point x=\"286\" y=\"406\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"117\"/>\n      <point x=\"391\" y=\"6\"/>\n      <point x=\"700\" y=\"-4\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"-9\"/>\n      <point x=\"1052\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.short.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.short.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"274\" y=\"1253\" name=\"top\"/>\n  <anchor x=\"274\" y=\"1189\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"735\" y=\"219\" type=\"curve\"/>\n      <point x=\"920\" y=\"379\" type=\"line\"/>\n      <point x=\"722\" y=\"660\"/>\n      <point x=\"487\" y=\"943\"/>\n      <point x=\"243\" y=\"1198\" type=\"curve\"/>\n      <point x=\"46\" y=\"1013\" type=\"line\"/>\n      <point x=\"275\" y=\"769\"/>\n      <point x=\"530\" y=\"496\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0627\"/>\n  <anchor x=\"612\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"612\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"594\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"471\" y=\"0\" type=\"line\"/>\n      <point x=\"745\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"1420\" type=\"line\"/>\n      <point x=\"457\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.short.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.short\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"610\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"610\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"588\" y=\"1204\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"471\" y=\"0\" type=\"line\"/>\n      <point x=\"745\" y=\"0\" type=\"line\"/>\n      <point x=\"724\" y=\"1197\" type=\"line\"/>\n      <point x=\"450\" y=\"1197\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alef-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D0\"/>\n  <anchor x=\"584\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"449\" y=\"374\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"799\" y=\"0\" type=\"line\"/>\n      <point x=\"1127\" y=\"0\" type=\"line\"/>\n      <point x=\"374\" y=\"1200\" type=\"line\"/>\n      <point x=\"48\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"207\" y=\"0\" type=\"line\"/>\n      <point x=\"504\" y=\"0\" type=\"line\"/>\n      <point x=\"504\" y=\"271\" type=\"line\"/>\n      <point x=\"207\" y=\"271\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"106\" y=\"0\" type=\"curve\"/>\n      <point x=\"354\" y=\"0\" type=\"line\"/>\n      <point x=\"354\" y=\"43\"/>\n      <point x=\"354\" y=\"321\"/>\n      <point x=\"354\" y=\"459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"700\"/>\n      <point x=\"396\" y=\"743\"/>\n      <point x=\"479\" y=\"757\" type=\"curve\"/>\n      <point x=\"453\" y=\"875\" type=\"line\"/>\n      <point x=\"147\" y=\"853\"/>\n      <point x=\"106\" y=\"609\"/>\n      <point x=\"106\" y=\"296\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"156\"/>\n      <point x=\"106\" y=\"41\"/>\n    </contour>\n    <contour>\n      <point x=\"594\" y=\"463\" type=\"line\"/>\n      <point x=\"833\" y=\"463\"/>\n      <point x=\"1027\" y=\"558\"/>\n      <point x=\"1046\" y=\"877\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"961\"/>\n      <point x=\"1057\" y=\"1094\"/>\n      <point x=\"1057\" y=\"1200\" type=\"curve\"/>\n      <point x=\"805\" y=\"1200\" type=\"line\"/>\n      <point x=\"805\" y=\"1094\"/>\n      <point x=\"798\" y=\"975\"/>\n      <point x=\"791\" y=\"869\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"687\"/>\n      <point x=\"745\" y=\"618\"/>\n      <point x=\"584\" y=\"618\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"661\" y=\"929\" type=\"line\"/>\n      <point x=\"978\" y=\"929\" type=\"line\"/>\n      <point x=\"1048\" y=\"1200\" type=\"line\"/>\n      <point x=\"661\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefF_athatan-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefFathatan-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FD3C\"/>\n  <outline>\n    <component base=\"alef-ar.fina\"/>\n    <component base=\"fathatan-ar\" xOffset=\"309\" yOffset=\"-252\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fathatan-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefF_athatan-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefFathatan-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"332\" y=\"1681\" name=\"top\"/>\n  <outline>\n    <component base=\"fathatan-ar\" xOffset=\"-260\" yOffset=\"-20\"/>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefF_athatan-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefFathatan-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FD3D\"/>\n  <outline>\n    <component base=\"alef-ar\"/>\n    <component base=\"fathatan-ar\" xOffset=\"489\" yOffset=\"-252\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fathatan-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzaabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzaabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"282\" y=\"1721\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-341\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"462\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-204\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzaabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzaabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"262\" y=\"1674\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-346\" yOffset=\"85\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0623\"/>\n  <anchor x=\"590\" y=\"1721\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-32\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzabelow-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"351\" y=\"-491\" name=\"bottom\"/>\n  <anchor x=\"270\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.alt\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-284\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzabelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"462\" y=\"-491\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alef-ar.fina\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-143\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzabelow-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"321\" y=\"-491\" name=\"bottom\"/>\n  <anchor x=\"274\" y=\"1310\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.rlig\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-312\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.rlig</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzabelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0625\"/>\n  <anchor x=\"626\" y=\"-493\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alef-ar\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"7\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMadda-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"293\" y=\"1571\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n    <component base=\"madda-ar\" xOffset=\"-324\" yOffset=\"81\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>madda-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMadda-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"madda-ar\" xOffset=\"-187\" yOffset=\"81\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMadda-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"293\" y=\"1521\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n    <component base=\"madda-ar\" xOffset=\"-329\" yOffset=\"66\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMadda-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0622\"/>\n  <anchor x=\"588\" y=\"1546\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"madda-ar\" xOffset=\"-15\" yOffset=\"81\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"517\" y=\"-458\" name=\"bottom\"/>\n  <anchor x=\"517\" y=\"-391\" name=\"bottom.dot\"/>\n  <anchor x=\"411\" y=\"476\" name=\"top\"/>\n  <anchor x=\"174\" y=\"330\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"497\" y=\"-420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"-420\"/>\n      <point x=\"1157\" y=\"-224\"/>\n      <point x=\"1157\" y=\"-30\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"121\"/>\n      <point x=\"1053\" y=\"186\"/>\n      <point x=\"705\" y=\"260\" type=\"curve\"/>\n      <point x=\"677\" y=\"13\" type=\"line\"/>\n      <point x=\"862\" y=\"-5\"/>\n      <point x=\"931\" y=\"-18\"/>\n      <point x=\"931\" y=\"-46\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"931\" y=\"-87\"/>\n      <point x=\"842\" y=\"-125\"/>\n      <point x=\"524\" y=\"-125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"-125\"/>\n      <point x=\"265\" y=\"-80\"/>\n      <point x=\"265\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"118\"/>\n      <point x=\"277\" y=\"177\"/>\n      <point x=\"292\" y=\"274\" type=\"curve\"/>\n      <point x=\"64\" y=\"274\" type=\"line\"/>\n      <point x=\"36\" y=\"183\"/>\n      <point x=\"20\" y=\"75\"/>\n      <point x=\"20\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"-245\"/>\n      <point x=\"137\" y=\"-420\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"517\" y=\"-458\" name=\"bottom\"/>\n  <anchor x=\"517\" y=\"-401\" name=\"bottom.dot\"/>\n  <anchor x=\"411\" y=\"476\" name=\"top\"/>\n  <anchor x=\"174\" y=\"330\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"497\" y=\"-420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"-420\"/>\n      <point x=\"1157\" y=\"-244\"/>\n      <point x=\"1157\" y=\"-50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"11\"/>\n      <point x=\"1132\" y=\"58\"/>\n      <point x=\"1086\" y=\"89\" type=\"curve\"/>\n      <point x=\"1053\" y=\"3\" type=\"line\"/>\n      <point x=\"1085\" y=\"-4\"/>\n      <point x=\"1136\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1263\" y=\"-10\"/>\n      <point x=\"1302\" y=\"49\"/>\n      <point x=\"1302\" y=\"137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1302\" y=\"218\"/>\n      <point x=\"1272\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1097\" y=\"285\"/>\n      <point x=\"920\" y=\"287\"/>\n      <point x=\"798\" y=\"295\" type=\"curve\"/>\n      <point x=\"763\" y=\"21\" type=\"line\"/>\n      <point x=\"908\" y=\"6\"/>\n      <point x=\"931\" y=\"2\"/>\n      <point x=\"931\" y=\"-26\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"931\" y=\"-67\"/>\n      <point x=\"862\" y=\"-125\"/>\n      <point x=\"524\" y=\"-125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"-125\"/>\n      <point x=\"265\" y=\"-80\"/>\n      <point x=\"265\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"118\"/>\n      <point x=\"277\" y=\"177\"/>\n      <point x=\"292\" y=\"274\" type=\"curve\"/>\n      <point x=\"64\" y=\"274\" type=\"line\"/>\n      <point x=\"36\" y=\"183\"/>\n      <point x=\"20\" y=\"75\"/>\n      <point x=\"20\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"-245\"/>\n      <point x=\"137\" y=\"-420\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0649\"/>\n  <anchor x=\"585\" y=\"-399\" name=\"bottom\"/>\n  <anchor x=\"585\" y=\"-336\" name=\"bottom.dot\"/>\n  <anchor x=\"291\" y=\"656\" name=\"top\"/>\n  <anchor x=\"184\" y=\"440\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"541\" y=\"-366\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"957\" y=\"-366\"/>\n      <point x=\"1152\" y=\"-173\"/>\n      <point x=\"1152\" y=\"65\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1152\" y=\"181\"/>\n      <point x=\"1112\" y=\"256\"/>\n      <point x=\"899\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"360\"/>\n      <point x=\"721\" y=\"371\"/>\n      <point x=\"721\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"469\"/>\n      <point x=\"795\" y=\"538\"/>\n      <point x=\"925\" y=\"538\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"538\"/>\n      <point x=\"1059\" y=\"516\"/>\n      <point x=\"1106\" y=\"491\" type=\"curve\"/>\n      <point x=\"1147\" y=\"769\" type=\"line\"/>\n      <point x=\"1093\" y=\"807\"/>\n      <point x=\"1030\" y=\"833\"/>\n      <point x=\"938\" y=\"833\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"833\"/>\n      <point x=\"469\" y=\"567\"/>\n      <point x=\"469\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"209\"/>\n      <point x=\"511\" y=\"138\"/>\n      <point x=\"724\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"41\"/>\n      <point x=\"900\" y=\"33\"/>\n      <point x=\"900\" y=\"-1\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-41\"/>\n      <point x=\"799\" y=\"-71\"/>\n      <point x=\"601\" y=\"-71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"-71\"/>\n      <point x=\"269\" y=\"-26\"/>\n      <point x=\"269\" y=\"127\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"269\" y=\"218\"/>\n      <point x=\"280\" y=\"266\"/>\n      <point x=\"298\" y=\"379\" type=\"curve\"/>\n      <point x=\"70\" y=\"379\" type=\"line\"/>\n      <point x=\"36\" y=\"270\"/>\n      <point x=\"24\" y=\"170\"/>\n      <point x=\"24\" y=\"67\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"24\" y=\"-235\"/>\n      <point x=\"180\" y=\"-366\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksuraAlefabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-210\" yOffset=\"-51\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksuraAlefabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FC90\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-210\" yOffset=\"-51\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksuraA_lefabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksuraAlefabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FC5D\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-330\" yOffset=\"129\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefThreeabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"137\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"three-persian.small01\" xOffset=\"-494\" yOffset=\"-84\"/>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefThreeabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"241\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-386\" yOffset=\"-84\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=alef-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefThreeabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"7\" y=\"1490\" name=\"top\"/>\n  <outline>\n    <component base=\"three-persian.small01\" xOffset=\"-600\" yOffset=\"-151\"/>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefThreeabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0774\"/>\n  <anchor x=\"610\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"411\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-216\" yOffset=\"-84\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefTwoabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"59\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"two-persian.small01\" xOffset=\"-582\" yOffset=\"-83\"/>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefTwoabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"191\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"two-persian.small01\" xOffset=\"-444\" yOffset=\"-83\"/>\n    <component base=\"alef-ar.fina.short\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=alef-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefTwoabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"-12\" y=\"1490\" name=\"top\"/>\n  <outline>\n    <component base=\"two-persian.small01\" xOffset=\"-651\" yOffset=\"-151\"/>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefTwoabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0773\"/>\n  <anchor x=\"610\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"361\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"two-persian.small01\" xOffset=\"-269\" yOffset=\"-83\"/>\n    <component base=\"alef-ar.short\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_asla-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWasla-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"253\" y=\"1660\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n    <component base=\"wasla-ar\" xOffset=\"-372\" yOffset=\"78\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_asla-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWasla-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"wasla-ar\" xOffset=\"-235\" yOffset=\"78\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_asla-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWasla-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"223\" y=\"1610\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n    <component base=\"wasla-ar\" xOffset=\"-377\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_asla-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWasla-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0671\"/>\n  <anchor x=\"567\" y=\"1655\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"wasla-ar\" xOffset=\"-63\" yOffset=\"78\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzaabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzaabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"282\" y=\"1671\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-341\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-204\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzaabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzaabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"292\" y=\"1674\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-346\" yOffset=\"85\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0672\"/>\n  <anchor x=\"590\" y=\"1721\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-32\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzabelow-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"291\" y=\"-491\" name=\"bottom\"/>\n  <anchor x=\"270\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.alt\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"-287\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzabelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alef-ar.fina\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"-143\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzabelow-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"271\" y=\"-491\" name=\"bottom\"/>\n  <anchor x=\"274\" y=\"1310\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.rlig\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"-312\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.rlig</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzabelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0673\"/>\n  <anchor x=\"559\" y=\"-523\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alef-ar\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"7\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefabove-ar\" format=\"2\">\n  <unicode hex=\"0670\"/>\n  <anchor x=\"621\" y=\"527\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"414\" name=\"_top.dot\"/>\n  <anchor x=\"573\" y=\"1025\" name=\"top\"/>\n  <outline>\n    <component base=\"_alefabove\" xOffset=\"-1\" yOffset=\"3\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alefabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefbelow-ar\" format=\"2\">\n  <unicode hex=\"0656\"/>\n  <anchor x=\"612\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"615\" y=\"0\" name=\"_bottom.dot\"/>\n  <anchor x=\"639\" y=\"-547\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_alefabove\" xOffset=\"29\" yOffset=\"-1081\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alefabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefdagesh-hb.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefdagesh-hb.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"448.786\" y=\"373.713\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"448.786\" y=\"306.095\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486.352\" y=\"306.095\"/>\n      <point x=\"517.155\" y=\"336.147\"/>\n      <point x=\"517.155\" y=\"373.713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517.155\" y=\"411.278\"/>\n      <point x=\"486.352\" y=\"442.082\"/>\n      <point x=\"448.786\" y=\"442.082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"411.221\" y=\"442.082\"/>\n      <point x=\"380.417\" y=\"411.278\"/>\n      <point x=\"380.417\" y=\"373.713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380.417\" y=\"336.147\"/>\n      <point x=\"411.221\" y=\"306.095\"/>\n    </contour>\n    <component base=\"alef-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB30\"/>\n  <outline>\n    <component base=\"alef-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-151\" yOffset=\"-170\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefpatah-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefpatah-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2E\"/>\n  <outline>\n    <component base=\"alef-hb\"/>\n    <component base=\"patah-hb\" xOffset=\"-15\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alefqamats-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefqamats-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2F\"/>\n  <outline>\n    <component base=\"alef-hb\"/>\n    <component base=\"qamats-hb\" xOffset=\"-15\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/allah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"allah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FDF2\"/>\n  <anchor x=\"2216\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"1789\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"1290\" y=\"-141\" name=\"bottom_3\"/>\n  <anchor x=\"449\" y=\"-141\" name=\"bottom_4\"/>\n  <anchor x=\"2206\" y=\"1310\" name=\"top_1\"/>\n  <anchor x=\"1769\" y=\"1310\" name=\"top_2\"/>\n  <anchor x=\"1280\" y=\"1310\" name=\"top_3\"/>\n  <anchor x=\"582\" y=\"1270\" name=\"top_4\"/>\n  <outline>\n    <component base=\"lam_lam_heh-ar\" xOffset=\"-250\"/>\n    <component base=\"alef-ar.short\" xOffset=\"1610\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>lam_lam_heh-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alpha-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alpha-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0251\"/>\n  <outline>\n    <component base=\"alpha\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alpha.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alpha\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B1\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"570\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"-20\"/>\n      <point x=\"707\" y=\"51\"/>\n      <point x=\"720\" y=\"192\" type=\"curve\"/>\n      <point x=\"820\" y=\"192\" type=\"line\"/>\n      <point x=\"748\" y=\"547\" type=\"line\"/>\n      <point x=\"748\" y=\"497\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"322\"/>\n      <point x=\"697\" y=\"235\"/>\n      <point x=\"551\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"235\"/>\n      <point x=\"326\" y=\"331\"/>\n      <point x=\"326\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"715\"/>\n      <point x=\"407\" y=\"825\"/>\n      <point x=\"549\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"682\" y=\"825\"/>\n      <point x=\"748\" y=\"738\"/>\n      <point x=\"748\" y=\"563\" type=\"curve\"/>\n      <point x=\"810\" y=\"868\" type=\"line\"/>\n      <point x=\"716\" y=\"868\" type=\"line\"/>\n      <point x=\"701\" y=\"1010\"/>\n      <point x=\"620\" y=\"1080\"/>\n      <point x=\"472\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"203\" y=\"1080\"/>\n      <point x=\"49\" y=\"876\"/>\n      <point x=\"49\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"49\" y=\"172\"/>\n      <point x=\"202\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"766\" y=\"-10\" type=\"line\"/>\n      <point x=\"1165\" y=\"0\" type=\"line\"/>\n      <point x=\"1165\" y=\"220\" type=\"line\"/>\n      <point x=\"1019\" y=\"242\" type=\"line\"/>\n      <point x=\"1019\" y=\"521\" type=\"line\"/>\n      <point x=\"748\" y=\"521\" type=\"line\"/>\n      <point x=\"748\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"748\" y=\"433\" type=\"line\"/>\n      <point x=\"1019\" y=\"435\" type=\"line\"/>\n      <point x=\"1019\" y=\"1060\" type=\"line\"/>\n      <point x=\"748\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/alphatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alphatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AC\"/>\n  <outline>\n    <component base=\"alpha\"/>\n    <component base=\"tonos\" xOffset=\"31\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/amacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"amacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0101\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"macroncomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ampersand.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0026\"/>\n  <outline>\n    <contour>\n      <point x=\"912\" y=\"0\" type=\"line\"/>\n      <point x=\"1241\" y=\"0\" type=\"line\"/>\n      <point x=\"583\" y=\"792\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"875\"/>\n      <point x=\"480\" y=\"950\"/>\n      <point x=\"480\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"1142\"/>\n      <point x=\"522\" y=\"1189\"/>\n      <point x=\"614\" y=\"1189\" type=\"curve\"/>\n      <point x=\"627\" y=\"1440\" type=\"line\"/>\n      <point x=\"333\" y=\"1440\"/>\n      <point x=\"202\" y=\"1317\"/>\n      <point x=\"202\" y=\"1042\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"202\" y=\"904\"/>\n      <point x=\"262\" y=\"775\"/>\n      <point x=\"404\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"462\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"-20\"/>\n      <point x=\"1109\" y=\"266\"/>\n      <point x=\"1109\" y=\"766\" type=\"curve\"/>\n      <point x=\"835\" y=\"766\" type=\"line\"/>\n      <point x=\"835\" y=\"425\"/>\n      <point x=\"708\" y=\"231\"/>\n      <point x=\"486\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"231\"/>\n      <point x=\"316\" y=\"293\"/>\n      <point x=\"316\" y=\"387\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"476\"/>\n      <point x=\"400\" y=\"542\"/>\n      <point x=\"546\" y=\"566\" type=\"curve\"/>\n      <point x=\"436\" y=\"771\" type=\"line\"/>\n      <point x=\"183\" y=\"732\"/>\n      <point x=\"39\" y=\"576\"/>\n      <point x=\"39\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"39\" y=\"124\"/>\n      <point x=\"208\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"718\" y=\"1072\" type=\"curve\"/>\n      <point x=\"1007\" y=\"1072\" type=\"line\"/>\n      <point x=\"1007\" y=\"1306\"/>\n      <point x=\"868\" y=\"1440\"/>\n      <point x=\"627\" y=\"1440\" type=\"curve\"/>\n      <point x=\"614\" y=\"1189\" type=\"line\"/>\n      <point x=\"680\" y=\"1189\"/>\n      <point x=\"718\" y=\"1147\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ampersand_ampersand.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand_ampersand.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1912\" y=\"0\" type=\"line\"/>\n      <point x=\"2211\" y=\"0\" type=\"line\"/>\n      <point x=\"1713\" y=\"781\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1654\" y=\"874\"/>\n      <point x=\"1627\" y=\"949\"/>\n      <point x=\"1627\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1627\" y=\"1146\"/>\n      <point x=\"1653\" y=\"1189\"/>\n      <point x=\"1707\" y=\"1189\" type=\"curve\"/>\n      <point x=\"1707\" y=\"1440\" type=\"line\"/>\n      <point x=\"1479\" y=\"1440\"/>\n      <point x=\"1349\" y=\"1314\"/>\n      <point x=\"1349\" y=\"1094\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1349\" y=\"966\"/>\n      <point x=\"1384\" y=\"840\"/>\n      <point x=\"1476\" y=\"692\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"552\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"-20\"/>\n      <point x=\"1099\" y=\"262\"/>\n      <point x=\"1099\" y=\"766\" type=\"curve\"/>\n      <point x=\"835\" y=\"766\" type=\"line\"/>\n      <point x=\"835\" y=\"415\"/>\n      <point x=\"742\" y=\"221\"/>\n      <point x=\"576\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"221\"/>\n      <point x=\"438\" y=\"272\"/>\n      <point x=\"438\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"460\"/>\n      <point x=\"518\" y=\"537\"/>\n      <point x=\"663\" y=\"566\" type=\"curve\"/>\n      <point x=\"553\" y=\"771\" type=\"line\"/>\n      <point x=\"307\" y=\"730\"/>\n      <point x=\"169\" y=\"571\"/>\n      <point x=\"169\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"113\"/>\n      <point x=\"318\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"892\" y=\"0\" type=\"line\"/>\n      <point x=\"1191\" y=\"0\" type=\"line\"/>\n      <point x=\"693\" y=\"781\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"633\" y=\"874\"/>\n      <point x=\"607\" y=\"949\"/>\n      <point x=\"607\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"607\" y=\"1146\"/>\n      <point x=\"633\" y=\"1189\"/>\n      <point x=\"686\" y=\"1189\" type=\"curve\"/>\n      <point x=\"687\" y=\"1440\" type=\"line\"/>\n      <point x=\"459\" y=\"1440\"/>\n      <point x=\"329\" y=\"1314\"/>\n      <point x=\"329\" y=\"1094\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"329\" y=\"968\"/>\n      <point x=\"363\" y=\"840\"/>\n      <point x=\"456\" y=\"692\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1572\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1878\" y=\"-20\"/>\n      <point x=\"2119\" y=\"262\"/>\n      <point x=\"2119\" y=\"766\" type=\"curve\"/>\n      <point x=\"1855\" y=\"766\" type=\"line\"/>\n      <point x=\"1855\" y=\"416\"/>\n      <point x=\"1762\" y=\"221\"/>\n      <point x=\"1596\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1510\" y=\"221\"/>\n      <point x=\"1458\" y=\"272\"/>\n      <point x=\"1458\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1458\" y=\"460\"/>\n      <point x=\"1539\" y=\"537\"/>\n      <point x=\"1683\" y=\"566\" type=\"curve\"/>\n      <point x=\"1573\" y=\"771\" type=\"line\"/>\n      <point x=\"1327\" y=\"730\"/>\n      <point x=\"1189\" y=\"571\"/>\n      <point x=\"1189\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1189\" y=\"113\"/>\n      <point x=\"1338\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"758\" y=\"1072\" type=\"curve\"/>\n      <point x=\"1047\" y=\"1072\" type=\"line\"/>\n      <point x=\"1047\" y=\"1306\"/>\n      <point x=\"915\" y=\"1440\"/>\n      <point x=\"687\" y=\"1440\" type=\"curve\"/>\n      <point x=\"686\" y=\"1189\" type=\"line\"/>\n      <point x=\"731\" y=\"1189\"/>\n      <point x=\"758\" y=\"1147\"/>\n    </contour>\n    <contour>\n      <point x=\"1778\" y=\"1072\" type=\"curve\"/>\n      <point x=\"2067\" y=\"1072\" type=\"line\"/>\n      <point x=\"2067\" y=\"1307\"/>\n      <point x=\"1938\" y=\"1440\"/>\n      <point x=\"1707\" y=\"1440\" type=\"curve\"/>\n      <point x=\"1707\" y=\"1189\" type=\"line\"/>\n      <point x=\"1752\" y=\"1189\"/>\n      <point x=\"1778\" y=\"1147\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/anoteleia.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"anoteleia\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0387\"/>\n  <outline>\n    <component base=\"period\" yOffset=\"735\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/aogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0105\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1020\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"-424\"/>\n      <point x=\"1090\" y=\"-421\"/>\n      <point x=\"1127\" y=\"-415\" type=\"curve\"/>\n      <point x=\"1153\" y=\"-178\" type=\"line\"/>\n      <point x=\"1120\" y=\"-185\"/>\n      <point x=\"1088\" y=\"-189\"/>\n      <point x=\"1063\" y=\"-189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"-189\"/>\n      <point x=\"980\" y=\"-167\"/>\n      <point x=\"980\" y=\"-126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"980\" y=\"-46\"/>\n      <point x=\"1044\" y=\"0\"/>\n      <point x=\"1154\" y=\"0\" type=\"curve\"/>\n      <point x=\"1134\" y=\"32\" type=\"line\"/>\n      <point x=\"894\" y=\"30\" type=\"line\"/>\n      <point x=\"894\" y=\"-43\" type=\"line\"/>\n      <point x=\"821\" y=\"-66\"/>\n      <point x=\"780\" y=\"-135\"/>\n      <point x=\"780\" y=\"-229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"-353\"/>\n      <point x=\"867\" y=\"-424\"/>\n    </contour>\n    <component base=\"a\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>a</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/apostrophemod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"apostrophemod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02BC\"/>\n  <outline>\n    <component base=\"quoteright\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>quoteright</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/approxequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"approxequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2248\"/>\n  <outline>\n    <component base=\"asciitilde\" yOffset=\"290\"/>\n    <component base=\"asciitilde\" yOffset=\"-290\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>asciitilde</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>asciitilde</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/aring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"ringcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/aringacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aringacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FB\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"ringcomb\" xOffset=\"-20\"/>\n    <component base=\"acutecomb\" xOffset=\"10\" yOffset=\"280\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asciicircum.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciicircum\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005E\"/>\n  <outline>\n    <contour>\n      <point x=\"180\" y=\"820\" type=\"line\"/>\n      <point x=\"442\" y=\"820\" type=\"line\"/>\n      <point x=\"591\" y=\"1210\" type=\"line\"/>\n      <point x=\"609\" y=\"1210\" type=\"line\"/>\n      <point x=\"758\" y=\"820\" type=\"line\"/>\n      <point x=\"1020\" y=\"820\" type=\"line\"/>\n      <point x=\"752\" y=\"1420\" type=\"line\"/>\n      <point x=\"448\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asciicircum_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciicircum_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"194\" y=\"658\" type=\"line\"/>\n      <point x=\"456\" y=\"658\" type=\"line\"/>\n      <point x=\"667\" y=\"1210\" type=\"line\"/>\n      <point x=\"685\" y=\"1210\" type=\"line\"/>\n      <point x=\"825\" y=\"835\" type=\"line\"/>\n      <point x=\"1087\" y=\"835\" type=\"line\"/>\n      <point x=\"827\" y=\"1420\" type=\"line\"/>\n      <point x=\"524\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1136\" y=\"333\" type=\"line\"/>\n      <point x=\"2120\" y=\"333\" type=\"line\"/>\n      <point x=\"2120\" y=\"583\" type=\"line\"/>\n      <point x=\"1136\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"836\" y=\"835\" type=\"line\"/>\n      <point x=\"2120\" y=\"835\" type=\"line\"/>\n      <point x=\"2120\" y=\"1085\" type=\"line\"/>\n      <point x=\"836\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asciitilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007E\"/>\n  <outline>\n    <contour>\n      <point x=\"83\" y=\"453\" type=\"line\"/>\n      <point x=\"349\" y=\"453\" type=\"line\"/>\n      <point x=\"349\" y=\"559\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"619\"/>\n      <point x=\"375\" y=\"645\"/>\n      <point x=\"437\" y=\"645\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"645\"/>\n      <point x=\"548\" y=\"613\"/>\n      <point x=\"604\" y=\"576\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"526\"/>\n      <point x=\"760\" y=\"487\"/>\n      <point x=\"852\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"487\"/>\n      <point x=\"1117\" y=\"586\"/>\n      <point x=\"1117\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"963\" type=\"line\"/>\n      <point x=\"853\" y=\"963\" type=\"line\"/>\n      <point x=\"853\" y=\"857\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"797\"/>\n      <point x=\"831\" y=\"771\"/>\n      <point x=\"776\" y=\"771\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"726\" y=\"771\"/>\n      <point x=\"683\" y=\"806\"/>\n      <point x=\"630\" y=\"840\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"890\"/>\n      <point x=\"472\" y=\"929\"/>\n      <point x=\"378\" y=\"929\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"929\"/>\n      <point x=\"83\" y=\"830\"/>\n      <point x=\"83\" y=\"599\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"263\" y=\"421\" type=\"line\"/>\n      <point x=\"526\" y=\"421\" type=\"line\"/>\n      <point x=\"526\" y=\"503\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"580\"/>\n      <point x=\"557\" y=\"613\"/>\n      <point x=\"631\" y=\"613\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"613\"/>\n      <point x=\"720\" y=\"597\"/>\n      <point x=\"768\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"533\"/>\n      <point x=\"912\" y=\"503\"/>\n      <point x=\"990\" y=\"503\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"503\"/>\n      <point x=\"1212\" y=\"574\"/>\n      <point x=\"1270\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1315\" y=\"693\"/>\n      <point x=\"1351\" y=\"752\"/>\n      <point x=\"1466\" y=\"752\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1557\" y=\"752\"/>\n      <point x=\"1595\" y=\"711\"/>\n      <point x=\"1657\" y=\"675\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1716\" y=\"641\"/>\n      <point x=\"1773\" y=\"600\"/>\n      <point x=\"1880\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2060\" y=\"600\"/>\n      <point x=\"2137\" y=\"714\"/>\n      <point x=\"2137\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2137\" y=\"1077\" type=\"line\"/>\n      <point x=\"1873\" y=\"1077\" type=\"line\"/>\n      <point x=\"1873\" y=\"987\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1873\" y=\"915\"/>\n      <point x=\"1846\" y=\"884\"/>\n      <point x=\"1783\" y=\"884\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1747\" y=\"884\"/>\n      <point x=\"1716\" y=\"896\"/>\n      <point x=\"1635\" y=\"954\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1558\" y=\"1008\"/>\n      <point x=\"1488\" y=\"1028\"/>\n      <point x=\"1425\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1288\" y=\"1028\"/>\n      <point x=\"1211\" y=\"967\"/>\n      <point x=\"1156\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1096\" y=\"818\"/>\n      <point x=\"1044\" y=\"779\"/>\n      <point x=\"948\" y=\"779\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"779\"/>\n      <point x=\"829\" y=\"793\"/>\n      <point x=\"758\" y=\"832\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"865\"/>\n      <point x=\"648\" y=\"898\"/>\n      <point x=\"550\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"898\"/>\n      <point x=\"263\" y=\"786\"/>\n      <point x=\"263\" y=\"526\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1600\" y=\"932\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1505\" y=\"932\"/>\n      <point x=\"1396\" y=\"875\"/>\n      <point x=\"1291\" y=\"820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1209\" y=\"777\"/>\n      <point x=\"1121\" y=\"747\"/>\n      <point x=\"1048\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"747\"/>\n      <point x=\"908\" y=\"789\"/>\n      <point x=\"837\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"874\"/>\n      <point x=\"637\" y=\"932\"/>\n      <point x=\"520\" y=\"932\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"291\" y=\"932\"/>\n      <point x=\"183\" y=\"808\"/>\n      <point x=\"183\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"453\" type=\"line\"/>\n      <point x=\"444\" y=\"453\" type=\"line\"/>\n      <point x=\"444\" y=\"484\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"594\"/>\n      <point x=\"479\" y=\"648\"/>\n      <point x=\"547\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"648\"/>\n      <point x=\"701\" y=\"591\"/>\n      <point x=\"784\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"513\"/>\n      <point x=\"942\" y=\"488\"/>\n      <point x=\"1033\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1136\" y=\"488\"/>\n      <point x=\"1256\" y=\"532\"/>\n      <point x=\"1365\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1447\" y=\"633\"/>\n      <point x=\"1528\" y=\"673\"/>\n      <point x=\"1602\" y=\"673\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1686\" y=\"673\"/>\n      <point x=\"1750\" y=\"642\"/>\n      <point x=\"1813\" y=\"607\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1904\" y=\"558\"/>\n      <point x=\"1995\" y=\"508\"/>\n      <point x=\"2128\" y=\"508\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2344\" y=\"508\"/>\n      <point x=\"2428\" y=\"611\"/>\n      <point x=\"2650\" y=\"611\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2874\" y=\"611\"/>\n      <point x=\"2942\" y=\"593\"/>\n      <point x=\"3135\" y=\"593\" type=\"curve\"/>\n      <point x=\"3135\" y=\"814\" type=\"line\"/>\n      <point x=\"2942\" y=\"814\"/>\n      <point x=\"2874\" y=\"851\"/>\n      <point x=\"2648\" y=\"851\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2429\" y=\"851\"/>\n      <point x=\"2344\" y=\"767\"/>\n      <point x=\"2134\" y=\"767\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2036\" y=\"767\"/>\n      <point x=\"1963\" y=\"806\"/>\n      <point x=\"1886\" y=\"847\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1806\" y=\"891\"/>\n      <point x=\"1720\" y=\"932\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"2363\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_at.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_at.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"183\" y=\"451\" type=\"line\"/>\n      <point x=\"449\" y=\"451\" type=\"line\"/>\n      <point x=\"449\" y=\"555\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"617\"/>\n      <point x=\"475\" y=\"644\"/>\n      <point x=\"537\" y=\"644\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"644\"/>\n      <point x=\"641\" y=\"605\"/>\n      <point x=\"696\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"501\"/>\n      <point x=\"855\" y=\"447\"/>\n      <point x=\"949\" y=\"447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1114\" y=\"447\"/>\n      <point x=\"1216\" y=\"557\"/>\n      <point x=\"1260\" y=\"813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1306\" y=\"1077\"/>\n      <point x=\"1422\" y=\"1202\"/>\n      <point x=\"1618\" y=\"1202\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1803\" y=\"1202\"/>\n      <point x=\"1898\" y=\"1090\"/>\n      <point x=\"1898\" y=\"862\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1898\" y=\"499\" type=\"line\"/>\n      <point x=\"2137\" y=\"499\" type=\"line\"/>\n      <point x=\"2137\" y=\"868\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2137\" y=\"1245\"/>\n      <point x=\"1964\" y=\"1439\"/>\n      <point x=\"1618\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1314\" y=\"1439\"/>\n      <point x=\"1126\" y=\"1282\"/>\n      <point x=\"1046\" y=\"963\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"790\"/>\n      <point x=\"993\" y=\"731\"/>\n      <point x=\"904\" y=\"731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"731\"/>\n      <point x=\"795\" y=\"786\"/>\n      <point x=\"722\" y=\"841\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"899\"/>\n      <point x=\"569\" y=\"928\"/>\n      <point x=\"478\" y=\"928\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"928\"/>\n      <point x=\"183\" y=\"828\"/>\n      <point x=\"183\" y=\"595\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1775\" y=\"-285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1857\" y=\"-285\"/>\n      <point x=\"1915\" y=\"-278\"/>\n      <point x=\"1972\" y=\"-260\" type=\"curve\"/>\n      <point x=\"1972\" y=\"-21\" type=\"line\"/>\n      <point x=\"1920\" y=\"-39\"/>\n      <point x=\"1861\" y=\"-46\"/>\n      <point x=\"1775\" y=\"-46\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1499\" y=\"-46\"/>\n      <point x=\"1380\" y=\"139\"/>\n      <point x=\"1376\" y=\"576\" type=\"curve\"/>\n      <point x=\"1317\" y=\"503\"/>\n      <point x=\"1240\" y=\"449\"/>\n      <point x=\"1145\" y=\"414\" type=\"curve\"/>\n      <point x=\"1182\" y=\"-74\"/>\n      <point x=\"1376\" y=\"-285\"/>\n    </contour>\n    <contour>\n      <point x=\"1691\" y=\"123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1787\" y=\"123\"/>\n      <point x=\"1856\" y=\"207\"/>\n      <point x=\"1878\" y=\"355\" type=\"curve\"/>\n      <point x=\"1960\" y=\"355\" type=\"line\"/>\n      <point x=\"1960\" y=\"832\" type=\"line\"/>\n      <point x=\"1878\" y=\"832\" type=\"line\"/>\n      <point x=\"1851\" y=\"980\"/>\n      <point x=\"1782\" y=\"1064\"/>\n      <point x=\"1693\" y=\"1064\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1567\" y=\"1064\"/>\n      <point x=\"1496\" y=\"910\"/>\n      <point x=\"1496\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1496\" y=\"295\"/>\n      <point x=\"1567\" y=\"123\"/>\n    </contour>\n    <contour>\n      <point x=\"1774\" y=\"346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1721\" y=\"346\"/>\n      <point x=\"1691\" y=\"436\"/>\n      <point x=\"1691\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1691\" y=\"766\"/>\n      <point x=\"1726\" y=\"841\"/>\n      <point x=\"1788\" y=\"841\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1859\" y=\"841\"/>\n      <point x=\"1898\" y=\"763\"/>\n      <point x=\"1898\" y=\"586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1898\" y=\"433\"/>\n      <point x=\"1853\" y=\"346\"/>\n    </contour>\n    <contour>\n      <point x=\"1898\" y=\"143\" type=\"line\"/>\n      <point x=\"2137\" y=\"143\" type=\"line\"/>\n      <point x=\"2137\" y=\"744\" type=\"line\"/>\n      <point x=\"1898\" y=\"744\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asciitilde\" xOffset=\"39\"/>\n    <component base=\"equal\" xOffset=\"1161\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"183\" y=\"454\" type=\"line\"/>\n      <point x=\"447\" y=\"454\" type=\"line\"/>\n      <point x=\"447\" y=\"534\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"611\"/>\n      <point x=\"481\" y=\"648\"/>\n      <point x=\"547\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"648\"/>\n      <point x=\"690\" y=\"600\"/>\n      <point x=\"744\" y=\"563\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"508\"/>\n      <point x=\"896\" y=\"488\"/>\n      <point x=\"987\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1171\" y=\"488\"/>\n      <point x=\"1284\" y=\"613\"/>\n      <point x=\"1500\" y=\"613\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1654\" y=\"613\"/>\n      <point x=\"1779\" y=\"587\"/>\n      <point x=\"1945\" y=\"587\" type=\"curve\"/>\n      <point x=\"1945\" y=\"817\" type=\"line\"/>\n      <point x=\"1791\" y=\"817\"/>\n      <point x=\"1654\" y=\"864\"/>\n      <point x=\"1500\" y=\"864\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1306\" y=\"864\"/>\n      <point x=\"1202\" y=\"747\"/>\n      <point x=\"1043\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"958\" y=\"747\"/>\n      <point x=\"887\" y=\"787\"/>\n      <point x=\"813\" y=\"829\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"886\"/>\n      <point x=\"610\" y=\"932\"/>\n      <point x=\"487\" y=\"932\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"281\" y=\"932\"/>\n      <point x=\"183\" y=\"808\"/>\n      <point x=\"183\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"1163\" yOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1052\" y=\"432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1237\" y=\"432\"/>\n      <point x=\"1317\" y=\"531\"/>\n      <point x=\"1317\" y=\"762\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1317\" y=\"834\" type=\"line\"/>\n      <point x=\"1053\" y=\"834\" type=\"line\"/>\n      <point x=\"1053\" y=\"802\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"742\"/>\n      <point x=\"1031\" y=\"716\"/>\n      <point x=\"976\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"716\"/>\n      <point x=\"822\" y=\"781\"/>\n      <point x=\"730\" y=\"840\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"890\"/>\n      <point x=\"572\" y=\"929\"/>\n      <point x=\"478\" y=\"929\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"929\"/>\n      <point x=\"183\" y=\"830\"/>\n      <point x=\"183\" y=\"599\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"453\" type=\"line\"/>\n      <point x=\"449\" y=\"453\" type=\"line\"/>\n      <point x=\"449\" y=\"559\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"619\"/>\n      <point x=\"475\" y=\"645\"/>\n      <point x=\"537\" y=\"645\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"645\"/>\n      <point x=\"661\" y=\"602\"/>\n      <point x=\"724\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"506\"/>\n      <point x=\"923\" y=\"432\"/>\n    </contour>\n    <contour>\n      <point x=\"1062\" y=\"584\" type=\"line\"/>\n      <point x=\"2122\" y=\"584\" type=\"line\"/>\n      <point x=\"2122\" y=\"834\" type=\"line\"/>\n      <point x=\"1062\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asterisk-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066D\"/>\n  <outline>\n    <contour>\n      <point x=\"517\" y=\"394\" type=\"line\"/>\n      <point x=\"681\" y=\"394\" type=\"line\"/>\n      <point x=\"635\" y=\"619\" type=\"line\"/>\n      <point x=\"809\" y=\"465\" type=\"line\"/>\n      <point x=\"893\" y=\"612\" type=\"line\"/>\n      <point x=\"674\" y=\"683\" type=\"line\"/>\n      <point x=\"892\" y=\"753\" type=\"line\"/>\n      <point x=\"807\" y=\"900\" type=\"line\"/>\n      <point x=\"633\" y=\"744\" type=\"line\"/>\n      <point x=\"683\" y=\"968\" type=\"line\"/>\n      <point x=\"512\" y=\"968\" type=\"line\"/>\n      <point x=\"560\" y=\"747\" type=\"line\"/>\n      <point x=\"392\" y=\"899\" type=\"line\"/>\n      <point x=\"307\" y=\"752\" type=\"line\"/>\n      <point x=\"524\" y=\"683\" type=\"line\"/>\n      <point x=\"310\" y=\"610\" type=\"line\"/>\n      <point x=\"393\" y=\"467\" type=\"line\"/>\n      <point x=\"562\" y=\"622\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"579\" y=\"647\"/>\n      <point x=\"562\" y=\"664\"/>\n      <point x=\"562\" y=\"684\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"704\"/>\n      <point x=\"579\" y=\"721\"/>\n      <point x=\"599\" y=\"721\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"619\" y=\"721\"/>\n      <point x=\"636\" y=\"704\"/>\n      <point x=\"636\" y=\"684\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"664\"/>\n      <point x=\"619\" y=\"647\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asterisk.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002A\"/>\n  <outline>\n    <contour>\n      <point x=\"773\" y=\"227\" type=\"line\"/>\n      <point x=\"1000\" y=\"396\" type=\"line\"/>\n      <point x=\"686\" y=\"760\" type=\"line\"/>\n      <point x=\"507\" y=\"627\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"427\" y=\"227\" type=\"line\"/>\n      <point x=\"686\" y=\"632\" type=\"line\"/>\n      <point x=\"507\" y=\"765\" type=\"line\"/>\n      <point x=\"200\" y=\"396\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"567\" y=\"594\" type=\"line\"/>\n      <point x=\"636\" y=\"806\" type=\"line\"/>\n      <point x=\"189\" y=\"981\" type=\"line\"/>\n      <point x=\"100\" y=\"713\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"493\" y=\"696\" type=\"line\"/>\n      <point x=\"716\" y=\"696\" type=\"line\"/>\n      <point x=\"741\" y=\"1176\" type=\"line\"/>\n      <point x=\"459\" y=\"1176\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"636\" y=\"586\" type=\"line\"/>\n      <point x=\"1100\" y=\"713\" type=\"line\"/>\n      <point x=\"1012\" y=\"981\" type=\"line\"/>\n      <point x=\"567\" y=\"798\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asteriskA_rt-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asteriskArt-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06DE\"/>\n  <outline>\n    <contour>\n      <point x=\"601\" y=\"-240\" type=\"line\"/>\n      <point x=\"1176\" y=\"335\" type=\"line\"/>\n      <point x=\"599\" y=\"912\" type=\"line\"/>\n      <point x=\"24\" y=\"337\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"601\" y=\"-184\" type=\"line\"/>\n      <point x=\"79\" y=\"339\" type=\"line\"/>\n      <point x=\"599\" y=\"857\" type=\"line\"/>\n      <point x=\"1120\" y=\"337\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"193\" y=\"-70\" type=\"line\"/>\n      <point x=\"1009\" y=\"-70\" type=\"line\"/>\n      <point x=\"1009\" y=\"743\" type=\"line\"/>\n      <point x=\"193\" y=\"743\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"231\" y=\"-30\" type=\"line\"/>\n      <point x=\"231\" y=\"705\" type=\"line\"/>\n      <point x=\"969\" y=\"705\" type=\"line\"/>\n      <point x=\"969\" y=\"-30\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"229\"/>\n      <point x=\"710\" y=\"279\"/>\n      <point x=\"710\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"710\" y=\"400\"/>\n      <point x=\"660\" y=\"450\"/>\n      <point x=\"600\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"450\"/>\n      <point x=\"490\" y=\"400\"/>\n      <point x=\"490\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"279\"/>\n      <point x=\"540\" y=\"229\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"264\"/>\n      <point x=\"525\" y=\"299\"/>\n      <point x=\"525\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"381\"/>\n      <point x=\"558\" y=\"415\"/>\n      <point x=\"600\" y=\"415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"415\"/>\n      <point x=\"675\" y=\"381\"/>\n      <point x=\"675\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"299\"/>\n      <point x=\"642\" y=\"264\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asterisk_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"60\"/>\n    <component base=\"asterisk\" xOffset=\"1140\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_asterisk_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"2340\"/>\n    <component base=\"asterisk\" xOffset=\"60\"/>\n    <component base=\"asterisk\" xOffset=\"1208\" yOffset=\"300\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asterisk_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"62\"/>\n    <component base=\"greater\" xOffset=\"1102\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>greater</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asterisk_parenright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_parenright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1338\" y=\"-200\" type=\"line\"/>\n      <point x=\"1382\" y=\"-200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1904\" y=\"-200\"/>\n      <point x=\"2203\" y=\"133\"/>\n      <point x=\"2203\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2203\" y=\"1291\"/>\n      <point x=\"1904\" y=\"1620\"/>\n      <point x=\"1382\" y=\"1620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1338\" y=\"1620\" type=\"line\"/>\n      <point x=\"1338\" y=\"1369\" type=\"line\"/>\n      <point x=\"1382\" y=\"1369\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1730\" y=\"1369\"/>\n      <point x=\"1926\" y=\"1130\"/>\n      <point x=\"1926\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1926\" y=\"294\"/>\n      <point x=\"1730\" y=\"51\"/>\n      <point x=\"1382\" y=\"51\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1338\" y=\"51\" type=\"line\"/>\n    </contour>\n    <component base=\"asterisk\" xOffset=\"205\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/asterisk_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"62\"/>\n    <component base=\"slash\" xOffset=\"1142\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/at.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"at\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0040\"/>\n  <outline>\n    <contour>\n      <point x=\"727\" y=\"-285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"-285\"/>\n      <point x=\"867\" y=\"-278\"/>\n      <point x=\"924\" y=\"-260\" type=\"curve\"/>\n      <point x=\"924\" y=\"-21\" type=\"line\"/>\n      <point x=\"872\" y=\"-39\"/>\n      <point x=\"813\" y=\"-46\"/>\n      <point x=\"727\" y=\"-46\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"-46\"/>\n      <point x=\"328\" y=\"146\"/>\n      <point x=\"328\" y=\"598\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"328\" y=\"1002\"/>\n      <point x=\"424\" y=\"1202\"/>\n      <point x=\"620\" y=\"1202\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"1202\"/>\n      <point x=\"850\" y=\"1090\"/>\n      <point x=\"850\" y=\"862\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"744\"/>\n      <point x=\"850\" y=\"642\"/>\n      <point x=\"850\" y=\"499\" type=\"curve\"/>\n      <point x=\"1089\" y=\"499\" type=\"line\"/>\n      <point x=\"1089\" y=\"644\"/>\n      <point x=\"1089\" y=\"748\"/>\n      <point x=\"1089\" y=\"868\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1089\" y=\"1250\"/>\n      <point x=\"932\" y=\"1439\"/>\n      <point x=\"620\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"1439\"/>\n      <point x=\"91\" y=\"1160\"/>\n      <point x=\"91\" y=\"598\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"91\" y=\"-21\"/>\n      <point x=\"281\" y=\"-285\"/>\n    </contour>\n    <contour>\n      <point x=\"643\" y=\"123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"739\" y=\"123\"/>\n      <point x=\"808\" y=\"207\"/>\n      <point x=\"830\" y=\"355\" type=\"curve\"/>\n      <point x=\"912\" y=\"355\" type=\"line\"/>\n      <point x=\"912\" y=\"832\" type=\"line\"/>\n      <point x=\"830\" y=\"832\" type=\"line\"/>\n      <point x=\"803\" y=\"980\"/>\n      <point x=\"734\" y=\"1064\"/>\n      <point x=\"645\" y=\"1064\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"519\" y=\"1064\"/>\n      <point x=\"448\" y=\"910\"/>\n      <point x=\"448\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"295\"/>\n      <point x=\"519\" y=\"123\"/>\n    </contour>\n    <contour>\n      <point x=\"726\" y=\"346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"346\"/>\n      <point x=\"643\" y=\"436\"/>\n      <point x=\"643\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"766\"/>\n      <point x=\"678\" y=\"841\"/>\n      <point x=\"740\" y=\"841\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"841\"/>\n      <point x=\"850\" y=\"763\"/>\n      <point x=\"850\" y=\"586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"433\"/>\n      <point x=\"805\" y=\"346\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"143\" type=\"line\"/>\n      <point x=\"1089\" y=\"143\" type=\"line\"/>\n      <point x=\"1089\" y=\"744\" type=\"line\"/>\n      <point x=\"850\" y=\"744\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/atilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"atilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"tildecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ayin-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ayin-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E2\"/>\n  <outline>\n    <contour>\n      <point x=\"117\" y=\"0\" type=\"line\"/>\n      <point x=\"234\" y=\"0\"/>\n      <point x=\"350\" y=\"0\"/>\n      <point x=\"467\" y=\"0\" type=\"curve\"/>\n      <point x=\"911\" y=\"0\"/>\n      <point x=\"1045\" y=\"124\"/>\n      <point x=\"1045\" y=\"551\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1045\" y=\"1200\" type=\"line\"/>\n      <point x=\"787\" y=\"1200\" type=\"line\"/>\n      <point x=\"787\" y=\"610\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"296\"/>\n      <point x=\"704\" y=\"270\"/>\n      <point x=\"533\" y=\"270\" type=\"curve\"/>\n      <point x=\"117\" y=\"270\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"385\" y=\"77\" type=\"line\"/>\n      <point x=\"641\" y=\"77\" type=\"line\"/>\n      <point x=\"478\" y=\"1200\" type=\"line\"/>\n      <point x=\"204\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/b.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"b\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0062\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"288\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"447\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"-20\"/>\n      <point x=\"1116\" y=\"206\"/>\n      <point x=\"1116\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"906\"/>\n      <point x=\"963\" y=\"1080\"/>\n      <point x=\"697\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"1080\"/>\n      <point x=\"463\" y=\"1010\"/>\n      <point x=\"445\" y=\"868\" type=\"curve\"/>\n      <point x=\"355\" y=\"868\" type=\"line\"/>\n      <point x=\"417\" y=\"596\" type=\"line\"/>\n      <point x=\"417\" y=\"750\"/>\n      <point x=\"493\" y=\"825\"/>\n      <point x=\"645\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"769\" y=\"825\"/>\n      <point x=\"839\" y=\"744\"/>\n      <point x=\"839\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"368\"/>\n      <point x=\"712\" y=\"235\"/>\n      <point x=\"489\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"235\"/>\n      <point x=\"315\" y=\"235\"/>\n      <point x=\"245\" y=\"269\" type=\"curve\"/>\n      <point x=\"146\" y=\"0\" type=\"line\"/>\n      <point x=\"248\" y=\"-12\"/>\n      <point x=\"345\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"146\" y=\"0\" type=\"line\"/>\n      <point x=\"417\" y=\"18\" type=\"line\"/>\n      <point x=\"417\" y=\"1500\" type=\"line\"/>\n      <point x=\"146\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/backslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005C\"/>\n  <outline>\n    <contour>\n      <point x=\"845\" y=\"-190\" type=\"line\"/>\n      <point x=\"1120\" y=\"-190\" type=\"line\"/>\n      <point x=\"345\" y=\"1610\" type=\"line\"/>\n      <point x=\"70\" y=\"1610\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/backslash_backslash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash_backslash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"backslash\" xOffset=\"118\"/>\n    <component base=\"backslash\" xOffset=\"1000\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>backslash</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>backslash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/backslash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"1040\"/>\n    <component base=\"backslash\" xOffset=\"160\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/backspaceC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backspaceControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2408\"/>\n  <outline>\n    <component base=\"B.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/backspaceC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backspaceControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"883\" y=\"285\" type=\"line\"/>\n      <point x=\"1125\" y=\"285\" type=\"line\"/>\n      <point x=\"1125\" y=\"1024\" type=\"line\"/>\n      <point x=\"883\" y=\"1024\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"777\" type=\"line\"/>\n      <point x=\"1100\" y=\"1027\" type=\"line\"/>\n      <point x=\"253\" y=\"1027\" type=\"line\"/>\n      <point x=\"253\" y=\"777\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"341\" type=\"line\"/>\n      <point x=\"734\" y=\"496\" type=\"line\"/>\n      <point x=\"348\" y=\"893\" type=\"line\"/>\n      <point x=\"348\" y=\"911\" type=\"line\"/>\n      <point x=\"734\" y=\"1308\" type=\"line\"/>\n      <point x=\"554\" y=\"1463\" type=\"line\"/>\n      <point x=\"64\" y=\"963\" type=\"line\"/>\n      <point x=\"64\" y=\"841\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"baht.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"457\" y=\"1281\" type=\"line\"/>\n      <point x=\"710\" y=\"1281\" type=\"line\"/>\n      <point x=\"710\" y=\"1740\" type=\"line\"/>\n      <point x=\"457\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"457\" y=\"-320\" type=\"line\"/>\n      <point x=\"710\" y=\"-320\" type=\"line\"/>\n      <point x=\"710\" y=\"131\" type=\"line\"/>\n      <point x=\"457\" y=\"131\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/baht.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"baht\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0E3F\"/>\n  <outline>\n    <contour>\n      <point x=\"457\" y=\"-320\" type=\"line\"/>\n      <point x=\"710\" y=\"-320\" type=\"line\"/>\n      <point x=\"710\" y=\"1740\" type=\"line\"/>\n      <point x=\"457\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-310\" type=\"line\"/>\n      <point x=\"732\" y=\"-310\" type=\"line\"/>\n      <point x=\"732\" y=\"1730\" type=\"line\"/>\n      <point x=\"468\" y=\"1730\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"1070\"/>\n    <component base=\"bar\" xOffset=\"130\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"1200\"/>\n    <component base=\"bar\" xOffset=\"2400\"/>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2796\" y=\"-10\" type=\"line\"/>\n      <point x=\"4300\" y=\"575\" type=\"line\"/>\n      <point x=\"4300\" y=\"843\" type=\"line\"/>\n      <point x=\"2796\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"3063\" y=\"303\" type=\"line\"/>\n      <point x=\"3063\" y=\"1116\" type=\"line\"/>\n      <point x=\"2982\" y=\"1059\" type=\"line\"/>\n      <point x=\"3950\" y=\"726\" type=\"line\"/>\n      <point x=\"3950\" y=\"692\" type=\"line\"/>\n      <point x=\"2982\" y=\"360\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"356\"/>\n    <component base=\"bar\" xOffset=\"1356\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"835\" type=\"line\"/>\n      <point x=\"845\" y=\"835\" type=\"line\"/>\n      <point x=\"845\" y=\"1085\" type=\"line\"/>\n      <point x=\"-20\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"333\" type=\"line\"/>\n      <point x=\"845\" y=\"333\" type=\"line\"/>\n      <point x=\"845\" y=\"583\" type=\"line\"/>\n      <point x=\"-20\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"835\" type=\"line\"/>\n      <point x=\"845\" y=\"835\" type=\"line\"/>\n      <point x=\"845\" y=\"1085\" type=\"line\"/>\n      <point x=\"-50\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"333\" type=\"line\"/>\n      <point x=\"845\" y=\"333\" type=\"line\"/>\n      <point x=\"845\" y=\"583\" type=\"line\"/>\n      <point x=\"-50\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1543\" y=\"835\" type=\"line\"/>\n      <point x=\"2450\" y=\"835\" type=\"line\"/>\n      <point x=\"2450\" y=\"1085\" type=\"line\"/>\n      <point x=\"1543\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1543\" y=\"333\" type=\"line\"/>\n      <point x=\"2450\" y=\"333\" type=\"line\"/>\n      <point x=\"2450\" y=\"583\" type=\"line\"/>\n      <point x=\"1543\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1543\" y=\"333\" type=\"line\"/>\n      <point x=\"2420\" y=\"333\" type=\"line\"/>\n      <point x=\"2420\" y=\"583\" type=\"line\"/>\n      <point x=\"1543\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1543\" y=\"835\" type=\"line\"/>\n      <point x=\"2420\" y=\"835\" type=\"line\"/>\n      <point x=\"2420\" y=\"1085\" type=\"line\"/>\n      <point x=\"1543\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1551\" y=\"-10\" type=\"line\"/>\n      <point x=\"3055\" y=\"575\" type=\"line\"/>\n      <point x=\"3055\" y=\"843\" type=\"line\"/>\n      <point x=\"1551\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1818\" y=\"303\" type=\"line\"/>\n      <point x=\"1818\" y=\"1116\" type=\"line\"/>\n      <point x=\"1737\" y=\"1059\" type=\"line\"/>\n      <point x=\"2705\" y=\"726\" type=\"line\"/>\n      <point x=\"2705\" y=\"692\" type=\"line\"/>\n      <point x=\"1737\" y=\"360\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xScale=\"-1\" xOffset=\"1460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"584\" type=\"line\"/>\n      <point x=\"821\" y=\"584\" type=\"line\"/>\n      <point x=\"821\" y=\"834\" type=\"line\"/>\n      <point x=\"-20\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1553\" y=\"584\" type=\"line\"/>\n      <point x=\"2450\" y=\"584\" type=\"line\"/>\n      <point x=\"2450\" y=\"834\" type=\"line\"/>\n      <point x=\"1553\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"584\" type=\"line\"/>\n      <point x=\"821\" y=\"584\" type=\"line\"/>\n      <point x=\"821\" y=\"834\" type=\"line\"/>\n      <point x=\"-50\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1553\" y=\"584\" type=\"line\"/>\n      <point x=\"2420\" y=\"584\" type=\"line\"/>\n      <point x=\"2420\" y=\"834\" type=\"line\"/>\n      <point x=\"1553\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_braceright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_braceright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1490\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1745\" y=\"-214\"/>\n      <point x=\"1892\" y=\"-78\"/>\n      <point x=\"1892\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1892\" y=\"252\"/>\n      <point x=\"1850\" y=\"344\"/>\n      <point x=\"1850\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1850\" y=\"538\"/>\n      <point x=\"1974\" y=\"580\"/>\n      <point x=\"2177\" y=\"580\" type=\"curve\"/>\n      <point x=\"2177\" y=\"832\" type=\"line\"/>\n      <point x=\"1975\" y=\"832\"/>\n      <point x=\"1850\" y=\"883\"/>\n      <point x=\"1850\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1850\" y=\"1090\"/>\n      <point x=\"1892\" y=\"1178\"/>\n      <point x=\"1892\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1892\" y=\"1499\"/>\n      <point x=\"1745\" y=\"1626\"/>\n      <point x=\"1490\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1367\" y=\"1626\"/>\n      <point x=\"1292\" y=\"1618\"/>\n      <point x=\"1223\" y=\"1606\" type=\"curve\"/>\n      <point x=\"1247\" y=\"1365\" type=\"line\"/>\n      <point x=\"1315\" y=\"1371\"/>\n      <point x=\"1378\" y=\"1375\"/>\n      <point x=\"1430\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1557\" y=\"1375\"/>\n      <point x=\"1625\" y=\"1312\"/>\n      <point x=\"1625\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1625\" y=\"1112\"/>\n      <point x=\"1579\" y=\"1033\"/>\n      <point x=\"1579\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1579\" y=\"807\"/>\n      <point x=\"1691\" y=\"730\"/>\n      <point x=\"1881\" y=\"727\" type=\"curve\"/>\n      <point x=\"1881\" y=\"685\" type=\"line\"/>\n      <point x=\"1691\" y=\"682\"/>\n      <point x=\"1579\" y=\"608\"/>\n      <point x=\"1579\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1579\" y=\"393\"/>\n      <point x=\"1625\" y=\"315\"/>\n      <point x=\"1625\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1625\" y=\"106\"/>\n      <point x=\"1557\" y=\"37\"/>\n      <point x=\"1430\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1378\" y=\"37\"/>\n      <point x=\"1315\" y=\"41\"/>\n      <point x=\"1247\" y=\"47\" type=\"curve\"/>\n      <point x=\"1223\" y=\"-194\" type=\"line\"/>\n      <point x=\"1292\" y=\"-206\"/>\n      <point x=\"1367\" y=\"-214\"/>\n    </contour>\n    <component base=\"bar\" xScale=\"-1\" xOffset=\"1200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_bracketright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bracketright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1620\" y=\"-214\" type=\"line\"/>\n      <point x=\"1884\" y=\"-214\" type=\"line\"/>\n      <point x=\"1884\" y=\"1634\" type=\"line\"/>\n      <point x=\"1620\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1016\" y=\"-214\" type=\"line\"/>\n      <point x=\"1640\" y=\"-214\" type=\"line\"/>\n      <point x=\"1640\" y=\"27\" type=\"line\"/>\n      <point x=\"1016\" y=\"27\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1016\" y=\"1393\" type=\"line\"/>\n      <point x=\"1640\" y=\"1393\" type=\"line\"/>\n      <point x=\"1640\" y=\"1634\" type=\"line\"/>\n      <point x=\"1016\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"835\" type=\"line\"/>\n      <point x=\"615\" y=\"835\" type=\"line\"/>\n      <point x=\"615\" y=\"1085\" type=\"line\"/>\n      <point x=\"-20\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"333\" type=\"line\"/>\n      <point x=\"615\" y=\"333\" type=\"line\"/>\n      <point x=\"615\" y=\"583\" type=\"line\"/>\n      <point x=\"-20\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"586\" y=\"835\" type=\"line\"/>\n      <point x=\"1220\" y=\"835\" type=\"line\"/>\n      <point x=\"1220\" y=\"1085\" type=\"line\"/>\n      <point x=\"585\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"586\" y=\"333\" type=\"line\"/>\n      <point x=\"1220\" y=\"333\" type=\"line\"/>\n      <point x=\"1220\" y=\"583\" type=\"line\"/>\n      <point x=\"586\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"541\" y=\"-10\" type=\"line\"/>\n      <point x=\"2045\" y=\"575\" type=\"line\"/>\n      <point x=\"2045\" y=\"843\" type=\"line\"/>\n      <point x=\"541\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"808\" y=\"303\" type=\"line\"/>\n      <point x=\"808\" y=\"1116\" type=\"line\"/>\n      <point x=\"727\" y=\"1059\" type=\"line\"/>\n      <point x=\"1695\" y=\"726\" type=\"line\"/>\n      <point x=\"1695\" y=\"692\" type=\"line\"/>\n      <point x=\"727\" y=\"360\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"584\" type=\"line\"/>\n      <point x=\"604\" y=\"584\" type=\"line\"/>\n      <point x=\"604\" y=\"834\" type=\"line\"/>\n      <point x=\"-20\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\"/>\n    <component base=\"hyphen_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"584\" type=\"line\"/>\n      <point x=\"1220\" y=\"584\" type=\"line\"/>\n      <point x=\"1220\" y=\"834\" type=\"line\"/>\n      <point x=\"596\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bar_underscore_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_underscore_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-50\" type=\"line\"/>\n      <point x=\"732\" y=\"-50\" type=\"line\"/>\n      <point x=\"732\" y=\"1730\" type=\"line\"/>\n      <point x=\"468\" y=\"1730\" type=\"line\"/>\n    </contour>\n    <component base=\"underscore_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/be-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"be-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0431\"/>\n  <anchor x=\"606\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"606\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"598\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"-21\"/>\n      <point x=\"1101\" y=\"169\"/>\n      <point x=\"1101\" y=\"503\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"824\"/>\n      <point x=\"963\" y=\"1006\"/>\n      <point x=\"723\" y=\"1006\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"1006\"/>\n      <point x=\"445\" y=\"917\"/>\n      <point x=\"408\" y=\"760\" type=\"curve\"/>\n      <point x=\"377\" y=\"760\" type=\"line\"/>\n      <point x=\"377\" y=\"862\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"1096\"/>\n      <point x=\"489\" y=\"1173\"/>\n      <point x=\"739\" y=\"1208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1059\" y=\"1253\" type=\"line\"/>\n      <point x=\"1049\" y=\"1521\" type=\"line\"/>\n      <point x=\"684\" y=\"1466\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"1398\"/>\n      <point x=\"105\" y=\"1131\"/>\n      <point x=\"105\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"105\" y=\"544\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"105\" y=\"186\"/>\n      <point x=\"281\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"606\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"237\"/>\n      <point x=\"382\" y=\"330\"/>\n      <point x=\"382\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"382\" y=\"654\"/>\n      <point x=\"465\" y=\"747\"/>\n      <point x=\"606\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"747\"/>\n      <point x=\"824\" y=\"653\"/>\n      <point x=\"824\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"330\"/>\n      <point x=\"744\" y=\"237\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/be-cy.loclS_R_B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"be-cy.loclSRB\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1440\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"-20\"/>\n      <point x=\"1101\" y=\"157\"/>\n      <point x=\"1101\" y=\"460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"821\"/>\n      <point x=\"841\" y=\"894\"/>\n      <point x=\"596\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"977\"/>\n      <point x=\"469\" y=\"997\"/>\n      <point x=\"469\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"1144\"/>\n      <point x=\"527\" y=\"1148\"/>\n      <point x=\"601\" y=\"1152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"1169\" type=\"line\"/>\n      <point x=\"1017\" y=\"1421\" type=\"line\"/>\n      <point x=\"620\" y=\"1409\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"481\" y=\"1404\"/>\n      <point x=\"183\" y=\"1391\"/>\n      <point x=\"183\" y=\"1118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"1011\"/>\n      <point x=\"214\" y=\"893\"/>\n      <point x=\"407\" y=\"834\" type=\"curve\"/>\n      <point x=\"407\" y=\"803\" type=\"line\"/>\n      <point x=\"231\" y=\"768\"/>\n      <point x=\"109\" y=\"642\"/>\n      <point x=\"109\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"142\"/>\n      <point x=\"305\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"605\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"236\"/>\n      <point x=\"386\" y=\"318\"/>\n      <point x=\"386\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"594\"/>\n      <point x=\"469\" y=\"684\"/>\n      <point x=\"604\" y=\"684\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"684\"/>\n      <point x=\"824\" y=\"600\"/>\n      <point x=\"824\" y=\"455\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"330\"/>\n      <point x=\"746\" y=\"236\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067B\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0628\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"-18\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"-18\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"-10\" y=\"975\" name=\"top\"/>\n  <anchor x=\"-10\" y=\"625\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-77\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"-10\"/>\n      <point x=\"874\" y=\"154\"/>\n      <point x=\"874\" y=\"413\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"538\"/>\n      <point x=\"860\" y=\"651\"/>\n      <point x=\"846\" y=\"753\" type=\"curve\"/>\n      <point x=\"603\" y=\"732\" type=\"line\"/>\n      <point x=\"613\" y=\"630\"/>\n      <point x=\"621\" y=\"547\"/>\n      <point x=\"621\" y=\"468\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"348\"/>\n      <point x=\"553\" y=\"285\"/>\n      <point x=\"-57\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-607\" y=\"285\"/>\n      <point x=\"-659\" y=\"345\"/>\n      <point x=\"-659\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-659\" y=\"576\"/>\n      <point x=\"-649\" y=\"637\"/>\n      <point x=\"-632\" y=\"735\" type=\"curve\"/>\n      <point x=\"-860\" y=\"735\" type=\"line\"/>\n      <point x=\"-888\" y=\"639\"/>\n      <point x=\"-904\" y=\"547\"/>\n      <point x=\"-904\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-904\" y=\"175\"/>\n      <point x=\"-795\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"-108\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"-108\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"-100\" y=\"975\" name=\"top\"/>\n  <anchor x=\"-100\" y=\"625\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-157\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"-10\"/>\n      <point x=\"536\" y=\"37\"/>\n      <point x=\"599\" y=\"152\" type=\"curve\"/>\n      <point x=\"694\" y=\"152\" type=\"line\"/>\n      <point x=\"756\" y=\"219\"/>\n      <point x=\"791\" y=\"296\"/>\n      <point x=\"791\" y=\"423\" type=\"curve\"/>\n      <point x=\"794\" y=\"701\" type=\"line\"/>\n      <point x=\"537\" y=\"697\" type=\"line\"/>\n      <point x=\"528\" y=\"407\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"312\"/>\n      <point x=\"423\" y=\"285\"/>\n      <point x=\"-137\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-687\" y=\"285\"/>\n      <point x=\"-739\" y=\"345\"/>\n      <point x=\"-739\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-739\" y=\"576\"/>\n      <point x=\"-729\" y=\"637\"/>\n      <point x=\"-712\" y=\"735\" type=\"curve\"/>\n      <point x=\"-940\" y=\"735\" type=\"line\"/>\n      <point x=\"-968\" y=\"639\"/>\n      <point x=\"-984\" y=\"547\"/>\n      <point x=\"-984\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-984\" y=\"175\"/>\n      <point x=\"-875\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"285\"/>\n      <point x=\"791\" y=\"296\"/>\n      <point x=\"791\" y=\"423\" type=\"curve\"/>\n      <point x=\"621\" y=\"209\" type=\"line\"/>\n      <point x=\"660\" y=\"28\"/>\n      <point x=\"740\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"582\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"582\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"590\" y=\"975\" name=\"top\"/>\n  <anchor x=\"590\" y=\"625\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"535\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"-10\"/>\n      <point x=\"883\" y=\"47\"/>\n      <point x=\"936\" y=\"152\" type=\"curve\"/>\n      <point x=\"1031\" y=\"152\" type=\"line\"/>\n      <point x=\"1128\" y=\"423\" type=\"line\"/>\n      <point x=\"1131\" y=\"701\" type=\"line\"/>\n      <point x=\"874\" y=\"697\" type=\"line\"/>\n      <point x=\"865\" y=\"407\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"312\"/>\n      <point x=\"838\" y=\"285\"/>\n      <point x=\"567\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"285\"/>\n      <point x=\"260\" y=\"312\"/>\n      <point x=\"260\" y=\"468\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"530\"/>\n      <point x=\"266\" y=\"588\"/>\n      <point x=\"278\" y=\"683\" type=\"curve\"/>\n      <point x=\"50\" y=\"684\" type=\"line\"/>\n      <point x=\"29\" y=\"616\"/>\n      <point x=\"6\" y=\"488\"/>\n      <point x=\"6\" y=\"385\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"6\" y=\"86\"/>\n      <point x=\"137\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1137\" y=\"285\"/>\n      <point x=\"1128\" y=\"306\"/>\n      <point x=\"1128\" y=\"423\" type=\"curve\"/>\n      <point x=\"958\" y=\"209\" type=\"line\"/>\n      <point x=\"983\" y=\"28\"/>\n      <point x=\"1050\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066E\"/>\n  <anchor x=\"582\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"582\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"590\" y=\"975\" name=\"top\"/>\n  <anchor x=\"590\" y=\"625\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"509\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1068\" y=\"-10\"/>\n      <point x=\"1190\" y=\"134\"/>\n      <point x=\"1190\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1190\" y=\"508\"/>\n      <point x=\"1177\" y=\"599\"/>\n      <point x=\"1152\" y=\"733\" type=\"curve\"/>\n      <point x=\"919\" y=\"712\" type=\"line\"/>\n      <point x=\"938\" y=\"590\"/>\n      <point x=\"950\" y=\"527\"/>\n      <point x=\"950\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"318\"/>\n      <point x=\"899\" y=\"285\"/>\n      <point x=\"529\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"285\"/>\n      <point x=\"245\" y=\"308\"/>\n      <point x=\"245\" y=\"457\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"245\" y=\"529\"/>\n      <point x=\"255\" y=\"587\"/>\n      <point x=\"272\" y=\"685\" type=\"curve\"/>\n      <point x=\"54\" y=\"685\" type=\"line\"/>\n      <point x=\"26\" y=\"599\"/>\n      <point x=\"10\" y=\"497\"/>\n      <point x=\"10\" y=\"394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"10\" y=\"95\"/>\n      <point x=\"141\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"812\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"812\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"872\" y=\"1157\" name=\"top\"/>\n  <anchor x=\"875\" y=\"877\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"582\" y=\"-10\" type=\"line\"/>\n      <point x=\"993\" y=\"-10\"/>\n      <point x=\"1082\" y=\"108\"/>\n      <point x=\"1082\" y=\"413\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"528\"/>\n      <point x=\"1058\" y=\"670\"/>\n      <point x=\"1017\" y=\"833\" type=\"curve\"/>\n      <point x=\"771\" y=\"801\" type=\"line\"/>\n      <point x=\"805\" y=\"641\"/>\n      <point x=\"823\" y=\"517\"/>\n      <point x=\"823\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"305\"/>\n      <point x=\"806\" y=\"285\"/>\n      <point x=\"594\" y=\"285\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"772\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"772\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"832\" y=\"1117\" name=\"top\"/>\n  <anchor x=\"835\" y=\"867\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"-10\"/>\n      <point x=\"1018\" y=\"138\"/>\n      <point x=\"1018\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1018\" y=\"558\"/>\n      <point x=\"994\" y=\"670\"/>\n      <point x=\"953\" y=\"833\" type=\"curve\"/>\n      <point x=\"707\" y=\"801\" type=\"line\"/>\n      <point x=\"741\" y=\"641\"/>\n      <point x=\"759\" y=\"527\"/>\n      <point x=\"759\" y=\"447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"759\" y=\"325\"/>\n      <point x=\"712\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-34\" y=\"285\"/>\n      <point x=\"-70\" y=\"263\"/>\n      <point x=\"-70\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"33\"/>\n      <point x=\"-51\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"592\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"592\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"630\" y=\"1005\" name=\"top\"/>\n  <anchor x=\"630\" y=\"755\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"line\"/>\n      <point x=\"384\" y=\"-10\"/>\n      <point x=\"486\" y=\"31\"/>\n      <point x=\"549\" y=\"143\" type=\"curve\"/>\n      <point x=\"644\" y=\"143\" type=\"line\"/>\n      <point x=\"706\" y=\"210\"/>\n      <point x=\"739\" y=\"306\"/>\n      <point x=\"739\" y=\"423\" type=\"curve\"/>\n      <point x=\"742\" y=\"701\" type=\"line\"/>\n      <point x=\"485\" y=\"697\" type=\"line\"/>\n      <point x=\"476\" y=\"407\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"312\"/>\n      <point x=\"443\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"285\"/>\n      <point x=\"994\" y=\"285\"/>\n      <point x=\"906\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"285\"/>\n      <point x=\"739\" y=\"306\"/>\n      <point x=\"739\" y=\"423\" type=\"curve\"/>\n      <point x=\"569\" y=\"209\" type=\"line\"/>\n      <point x=\"598\" y=\"60\"/>\n      <point x=\"668\" y=\"-10\"/>\n      <point x=\"863\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"-10\"/>\n      <point x=\"1098\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-626\" yOffset=\"-369\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-716\" yOffset=\"-369\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-26\" yOffset=\"-369\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B6\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-26\" yOffset=\"-369\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"259\" yOffset=\"-117\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"219\" yOffset=\"-127\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"14\" yOffset=\"-239\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-618\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-708\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-18\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0750\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-18\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"908\" y=\"-414\" name=\"bottom\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"302\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"172\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-8\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-610\" yOffset=\"83\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-700\" yOffset=\"83\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0751\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"275\" yOffset=\"335\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"235\" yOffset=\"325\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"30\" yOffset=\"213\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0752\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-610\" yOffset=\"83\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-700\" yOffset=\"83\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0754\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"335\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"235\" yOffset=\"325\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"30\" yOffset=\"213\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0756\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"275\" yOffset=\"345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"vabove-ar\" xOffset=\"235\" yOffset=\"335\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"vabove-ar\" xOffset=\"30\" yOffset=\"223\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A0\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0755\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0680\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-630\" yOffset=\"-479\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.fina.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-720\" yOffset=\"-479\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-30\" yOffset=\"-479\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A1\"/>\n  <outline>\n    <component base=\"beh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-30\" yOffset=\"-479\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"215\" yOffset=\"-237\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"10\" yOffset=\"-349\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bellC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bellControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2407\"/>\n  <outline>\n    <component base=\"B.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bellC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bellControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"229\" type=\"line\"/>\n      <point x=\"311\" y=\"229\" type=\"line\"/>\n      <point x=\"311\" y=\"535\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"311\" y=\"834\"/>\n      <point x=\"394\" y=\"953\"/>\n      <point x=\"600\" y=\"953\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"953\"/>\n      <point x=\"889\" y=\"834\"/>\n      <point x=\"889\" y=\"535\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"229\" type=\"line\"/>\n      <point x=\"1125\" y=\"229\" type=\"line\"/>\n      <point x=\"1125\" y=\"535\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"999\"/>\n      <point x=\"975\" y=\"1185\"/>\n      <point x=\"600\" y=\"1185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"225\" y=\"1185\"/>\n      <point x=\"75\" y=\"999\"/>\n      <point x=\"75\" y=\"535\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"125\" y=\"229\" type=\"line\"/>\n      <point x=\"1075\" y=\"229\" type=\"line\"/>\n      <point x=\"1075\" y=\"471\" type=\"line\"/>\n      <point x=\"125\" y=\"471\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bet-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bet-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D1\"/>\n  <guideline x=\"120\" y=\"548\" angle=\"90\"/>\n  <anchor x=\"392\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"1140\" y=\"214\" type=\"line\"/>\n      <point x=\"963\" y=\"270\" type=\"line\"/>\n      <point x=\"121\" y=\"270\" type=\"line\"/>\n      <point x=\"121\" y=\"0\" type=\"line\"/>\n      <point x=\"1140\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"964\" y=\"809\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"1067\"/>\n      <point x=\"820\" y=\"1200\"/>\n      <point x=\"533\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"1200\"/>\n      <point x=\"238\" y=\"1234\"/>\n      <point x=\"208\" y=\"1253\" type=\"curve\"/>\n      <point x=\"118\" y=\"1018\" type=\"line\"/>\n      <point x=\"184\" y=\"970\"/>\n      <point x=\"281\" y=\"930\"/>\n      <point x=\"394\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"930\"/>\n      <point x=\"706\" y=\"873\"/>\n      <point x=\"706\" y=\"638\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"0\" type=\"line\"/>\n      <point x=\"964\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/beta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B2\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"605\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"704\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"-20\"/>\n      <point x=\"1101\" y=\"136\"/>\n      <point x=\"1101\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"650\"/>\n      <point x=\"955\" y=\"798\"/>\n      <point x=\"709\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"798\" type=\"line\"/>\n      <point x=\"508\" y=\"684\" type=\"line\"/>\n      <point x=\"612\" y=\"684\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"684\"/>\n      <point x=\"824\" y=\"597\"/>\n      <point x=\"824\" y=\"443\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"311\"/>\n      <point x=\"747\" y=\"237\"/>\n      <point x=\"616\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"481\" y=\"237\"/>\n      <point x=\"414\" y=\"330\"/>\n      <point x=\"414\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"1003\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"1178\"/>\n      <point x=\"480\" y=\"1263\"/>\n      <point x=\"612\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"1263\"/>\n      <point x=\"774\" y=\"1205\"/>\n      <point x=\"774\" y=\"1105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"997\"/>\n      <point x=\"712\" y=\"936\"/>\n      <point x=\"606\" y=\"936\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"936\" type=\"line\"/>\n      <point x=\"508\" y=\"822\" type=\"line\"/>\n      <point x=\"689\" y=\"822\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"919\" y=\"822\"/>\n      <point x=\"1051\" y=\"938\"/>\n      <point x=\"1051\" y=\"1140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"1381\"/>\n      <point x=\"891\" y=\"1520\"/>\n      <point x=\"612\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"299\" y=\"1520\"/>\n      <point x=\"143\" y=\"1356\"/>\n      <point x=\"143\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"143\" y=\"470\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"143\" y=\"347\"/>\n      <point x=\"215\" y=\"249\"/>\n      <point x=\"356\" y=\"176\" type=\"curve\"/>\n      <point x=\"466\" y=\"176\" type=\"line\"/>\n      <point x=\"448\" y=\"216\" type=\"line\"/>\n      <point x=\"448\" y=\"66\"/>\n      <point x=\"541\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"-460\" type=\"line\"/>\n      <point x=\"414\" y=\"-460\" type=\"line\"/>\n      <point x=\"414\" y=\"788\" type=\"line\"/>\n      <point x=\"143\" y=\"788\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"758\" type=\"line\"/>\n      <point x=\"721\" y=\"758\" type=\"line\"/>\n      <point x=\"721\" y=\"856\" type=\"line\"/>\n      <point x=\"508\" y=\"856\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/betdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"betdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB31\"/>\n  <outline>\n    <component base=\"bet-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-208\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bitcoin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bitcoin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BF\"/>\n  <outline>\n    <contour>\n      <point x=\"284\" y=\"94\" type=\"line\"/>\n      <point x=\"284\" y=\"-320\" type=\"line\"/>\n      <point x=\"532\" y=\"-320\" type=\"line\"/>\n      <point x=\"532\" y=\"94\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"634\" y=\"94\" type=\"line\"/>\n      <point x=\"634\" y=\"-320\" type=\"line\"/>\n      <point x=\"882\" y=\"-320\" type=\"line\"/>\n      <point x=\"882\" y=\"94\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"532\" y=\"1327\" type=\"line\"/>\n      <point x=\"532\" y=\"1740\" type=\"line\"/>\n      <point x=\"284\" y=\"1740\" type=\"line\"/>\n      <point x=\"284\" y=\"1327\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"882\" y=\"1327\" type=\"line\"/>\n      <point x=\"882\" y=\"1740\" type=\"line\"/>\n      <point x=\"634\" y=\"1740\" type=\"line\"/>\n      <point x=\"634\" y=\"1327\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CF\"/>\n  <note>\nH18533\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"185\"/>\n      <point x=\"1125\" y=\"395\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1025\"/>\n      <point x=\"915\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"1235\"/>\n      <point x=\"75\" y=\"1025\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"395\"/>\n      <point x=\"285\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C6\"/>\n  <note>\nuni25C6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B22\"/>\n  <note>\nuni2B22\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1120\" y=\"410\" type=\"line\"/>\n      <point x=\"1120\" y=\"1010\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"80\" y=\"1010\" type=\"line\"/>\n      <point x=\"80\" y=\"410\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackH_orizontalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackHorizontalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2C\"/>\n  <note>\nuni2B2C\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"395\"/>\n      <point x=\"1125\" y=\"520\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"900\"/>\n      <point x=\"916\" y=\"1025\"/>\n      <point x=\"600\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1025\"/>\n      <point x=\"75\" y=\"900\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"520\"/>\n      <point x=\"284\" y=\"395\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackI_nW_hiteD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackInWhiteDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C8\"/>\n  <note>\nuni25C8\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"551\" type=\"line\"/>\n      <point x=\"759\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"869\" type=\"line\"/>\n      <point x=\"441\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteDiamond</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackL_argeC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackLargeCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B24\"/>\n  <note>\nuni2B24\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackL_argeS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackLargeSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1B\"/>\n  <note>\nuni2B1B\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B25\"/>\n  <note>\nuni2B25\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"322\" type=\"line\"/>\n      <point x=\"988\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\n      <point x=\"212\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumDownTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC6\"/>\n  <note>\nuni2BC6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"466\" type=\"line\"/>\n      <point x=\"938\" y=\"1040\" type=\"line\"/>\n      <point x=\"262\" y=\"1040\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumLeftTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC7\"/>\n  <note>\nuni2BC7\n</note>\n  <outline>\n    <contour>\n      <point x=\"840\" y=\"372\" type=\"line\"/>\n      <point x=\"840\" y=\"1048\" type=\"line\"/>\n      <point x=\"266\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B27\"/>\n  <note>\nuni2B27\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"256\" type=\"line\"/>\n      <point x=\"873\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1164\" type=\"line\"/>\n      <point x=\"328\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumRightTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC8\"/>\n  <note>\nuni2BC8\n</note>\n  <outline>\n    <contour>\n      <point x=\"360\" y=\"372\" type=\"line\"/>\n      <point x=\"934\" y=\"710\" type=\"line\"/>\n      <point x=\"360\" y=\"1048\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumUpTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC5\"/>\n  <note>\nuni2BC5\n</note>\n  <outline>\n    <contour>\n      <point x=\"262\" y=\"380\" type=\"line\"/>\n      <point x=\"938\" y=\"380\" type=\"line\"/>\n      <point x=\"600\" y=\"954\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackP_arallelogram.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackParallelogram\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B0\"/>\n  <note>\nuni25B0\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1030\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"170\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackP_entagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackPentagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1F\"/>\n  <note>\nuni2B1F\n</note>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"168\" type=\"line\"/>\n      <point x=\"970\" y=\"168\" type=\"line\"/>\n      <point x=\"1200\" y=\"874\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"874\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackS_mallD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B29\"/>\n  <note>\nuni2B29\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"534\" type=\"line\"/>\n      <point x=\"776\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"886\" type=\"line\"/>\n      <point x=\"424\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackS_mallL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2A\"/>\n  <note>\nuni2B2A\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"402\" type=\"line\"/>\n      <point x=\"785\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1019\" type=\"line\"/>\n      <point x=\"415\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AA\"/>\n  <note>\nH18543\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"1010\" type=\"line\"/>\n      <point x=\"300\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackS_milingF_ace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmilingFace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263B\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"594\" y=\"316\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"392\" y=\"316\"/>\n      <point x=\"260\" y=\"422\"/>\n      <point x=\"260\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"634\"/>\n      <point x=\"282\" y=\"656\"/>\n      <point x=\"332\" y=\"656\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"656\"/>\n      <point x=\"724\" y=\"656\"/>\n      <point x=\"880\" y=\"656\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"656\"/>\n      <point x=\"952\" y=\"638\"/>\n      <point x=\"952\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"422\"/>\n      <point x=\"810\" y=\"316\"/>\n    </contour>\n    <contour>\n      <point x=\"390\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"747\"/>\n      <point x=\"247\" y=\"804\"/>\n      <point x=\"247\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"247\" y=\"976\"/>\n      <point x=\"304\" y=\"1033\"/>\n      <point x=\"390\" y=\"1033\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"1033\"/>\n      <point x=\"533\" y=\"976\"/>\n      <point x=\"533\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"804\"/>\n      <point x=\"476\" y=\"747\"/>\n    </contour>\n    <contour>\n      <point x=\"810\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"747\"/>\n      <point x=\"667\" y=\"804\"/>\n      <point x=\"667\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"976\"/>\n      <point x=\"724\" y=\"1033\"/>\n      <point x=\"810\" y=\"1033\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"1033\"/>\n      <point x=\"953\" y=\"976\"/>\n      <point x=\"953\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"953\" y=\"804\"/>\n      <point x=\"896\" y=\"747\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A0\"/>\n  <note>\nfilledbox\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackV_erticalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerticalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2E\"/>\n  <note>\nuni2B2E\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"185\"/>\n      <point x=\"915\" y=\"394\"/>\n      <point x=\"915\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"1026\"/>\n      <point x=\"790\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1235\"/>\n      <point x=\"285\" y=\"1026\"/>\n      <point x=\"285\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"394\"/>\n      <point x=\"410\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackV_erticalR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerticalRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AE\"/>\n  <note>\nuni25AE\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"1310\" type=\"line\"/>\n      <point x=\"300\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blackV_erysmallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerysmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1D\"/>\n  <note>\nuni2B1D\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blank-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blank-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2800\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blank.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blank\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2423\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"-415\" type=\"line\"/>\n      <point x=\"1100\" y=\"-415\" type=\"line\"/>\n      <point x=\"1100\" y=\"-172\" type=\"line\"/>\n      <point x=\"100\" y=\"-172\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"832\" y=\"-298\" type=\"line\"/>\n      <point x=\"1100\" y=\"-298\" type=\"line\"/>\n      <point x=\"1100\" y=\"-20\" type=\"line\"/>\n      <point x=\"832\" y=\"-20\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"-298\" type=\"line\"/>\n      <point x=\"368\" y=\"-298\" type=\"line\"/>\n      <point x=\"368\" y=\"-20\" type=\"line\"/>\n      <point x=\"100\" y=\"-20\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blankS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blankSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2422\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"898\" type=\"line\"/>\n      <point x=\"706\" y=\"1228\" type=\"line\"/>\n      <point x=\"706\" y=\"1497\" type=\"line\"/>\n      <point x=\"0\" y=\"1167\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"447\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"-20\"/>\n      <point x=\"1116\" y=\"206\"/>\n      <point x=\"1116\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"906\"/>\n      <point x=\"963\" y=\"1080\"/>\n      <point x=\"697\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"1080\"/>\n      <point x=\"463\" y=\"1010\"/>\n      <point x=\"445\" y=\"868\" type=\"curve\"/>\n      <point x=\"355\" y=\"868\" type=\"line\"/>\n      <point x=\"417\" y=\"596\" type=\"line\"/>\n      <point x=\"417\" y=\"750\"/>\n      <point x=\"493\" y=\"825\"/>\n      <point x=\"645\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"825\"/>\n      <point x=\"831\" y=\"744\"/>\n      <point x=\"831\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"368\"/>\n      <point x=\"707\" y=\"235\"/>\n      <point x=\"489\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"235\"/>\n      <point x=\"315\" y=\"235\"/>\n      <point x=\"245\" y=\"269\" type=\"curve\"/>\n      <point x=\"146\" y=\"0\" type=\"line\"/>\n      <point x=\"248\" y=\"-12\"/>\n      <point x=\"345\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"146\" y=\"0\" type=\"line\"/>\n      <point x=\"417\" y=\"18\" type=\"line\"/>\n      <point x=\"417\" y=\"1500\" type=\"line\"/>\n      <point x=\"146\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"0\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBED\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-LC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-LC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"196\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"196\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-LC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-LC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"115\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"115\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-ML.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-ML\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"2226\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"600\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"300\" y=\"-480\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-ML.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-ML.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"1900\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"300\" y=\"-480\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-MR.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-MR\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"2226\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"600\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"900\" y=\"-480\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-MR.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-MR.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"1900\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"900\" y=\"-480\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-UC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-UC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1549\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"1549\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-UC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-UC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1305\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"1305\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB40.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB40\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB40.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB41.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB41\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB41.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB42.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB42\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB42.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB43.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB43\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB43.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB44.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB44\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB44.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB45\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB49.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB49\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB49.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB50.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB50\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB50.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB51.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB51\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB51.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB52.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB52\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB52.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB53.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB53\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB53.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB54.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB54\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB54.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB55.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB55\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB55.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB57.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB57\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB57.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB58.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB58\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB58.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB59.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB59\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB59.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB60.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB60\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB60.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB61.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB61\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB61.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB62.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB62\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB62.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB63.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB63\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB63.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB64.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB64\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB64.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB65.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB65\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB65.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB66.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB66\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB66.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB67.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB67\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB67.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD02\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD17\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD70\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1235678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1235678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD87\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1237.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1237\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1237.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1237.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1238.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1238\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD77\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1238.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1238.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD05\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD13\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1245678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1245678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD98\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1247.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1247\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1247.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1247.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1248.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1248\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1248.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1248.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-125678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-125678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1257.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1257\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1257.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1257.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1258.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1258\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1258.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1258.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1267.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1267\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1267.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1267.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1268.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1268\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD92\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1268.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1268.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-127.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-127\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-127.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-127.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1278.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1278\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1278.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1278.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-128.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-128\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD73\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-128.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-128.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD07\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD15\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1345678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1345678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-135.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-135\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-135.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-135.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-137.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-137\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-137.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-137.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-138.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-138\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD75\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-138.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-138.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD04\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD11\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-145678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-145678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD89\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-147.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-147\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-147.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-147.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-148.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-148\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD79\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-148.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-148.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-15678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-15678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-157.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-157\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD45\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-157.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-157.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-158.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-158\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD81\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-158.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-158.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD19\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-167.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-167\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-167.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-167.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-168.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-168\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD90\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-168.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-168.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-17.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-17\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-17.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-17.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-178.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-178\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-178.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-178.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-18.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-18\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD71\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-18.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-18.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD01\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD08\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD16\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2345678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2345678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-235678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-235678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD94\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-237.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-237\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-237.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-237.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-238.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-238\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD76\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-238.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-238.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD12\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-247.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-247\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-247.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-247.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-248.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-248\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-248.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-248.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-25678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-25678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-257.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-257\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-257.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-257.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-258.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-258\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-258.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-258.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-267.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-267\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-267.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-267.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-268.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-268\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD91\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-268.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-268.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-27.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-27\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-27.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-27.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-278.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-278\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-278.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-278.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-28.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-28\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD72\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-28.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-28.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD00\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD06\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD14\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD99\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-35678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-35678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-35678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-35678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD93\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-37.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-37\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-37.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-37.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-38.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-38\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD74\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-38.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-38.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD03\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD10\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-45678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-45678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD88\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD78\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD09\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-58.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-58\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD80\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-58.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-58.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD18\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-67.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-67\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-67.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-67.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-7\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-7.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-8\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-8.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-8.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-LC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-LC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-LC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-LC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-ML.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-ML\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-ML.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-ML.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-MR.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-MR\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-MR.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-MR.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-UC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-UC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-UC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-UC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE90\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-159.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-159\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-159.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-159.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE91\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE92\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE93\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-48C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-48C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE94\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-59D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-59D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-59D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-59D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-7\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-7.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-8.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-8CG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8CG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-8CG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8CG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-9.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE98\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-9.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-9D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-9D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE99\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-CG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-CG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-CG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-CG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-DEF.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-DEF\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-DEF.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-DEF.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-EFG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-EFG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-EFG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-EFG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-G.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-G\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-G.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-G.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-123456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE87\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE77\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE73\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-135.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-135\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-135.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE75\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE89\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE79\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE81\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE71\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE76\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE72\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE74\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE88\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE78\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE80\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE70\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB00\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB02\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB06\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB15\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB19\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB12\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB04\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB08\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB17\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB10\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB01\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB05\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB14\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB09\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB18\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB11\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB03\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB13\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB07\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB16\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bottomH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bottomHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BCB\"/>\n  <note>\nuni2BCB\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bottomH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bottomHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B19\"/>\n  <note>\nuni2B19\n</note>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteDiamond</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2566\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2557\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2554\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2550\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2569\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255D\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255A\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2551\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256C\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2563\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2560\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2565\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2556\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2553\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2530\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2512\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2527\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250E\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251F\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndUpHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2541\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndUpHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252F\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2511\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2529\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2521\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndUpHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2547\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndUpHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2564\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2555\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2552\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254D\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"443\" type=\"line\"/>\n      <point x=\"1050\" y=\"443\" type=\"line\"/>\n      <point x=\"1050\" y=\"971\" type=\"line\"/>\n      <point x=\"750\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"443\" type=\"line\"/>\n      <point x=\"450\" y=\"443\" type=\"line\"/>\n      <point x=\"450\" y=\"971\" type=\"line\"/>\n      <point x=\"150\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"443\" type=\"line\"/>\n      <point x=\"1050\" y=\"443\" type=\"line\"/>\n      <point x=\"1050\" y=\"971\" type=\"line\"/>\n      <point x=\"750\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"443\" type=\"line\"/>\n      <point x=\"450\" y=\"443\" type=\"line\"/>\n      <point x=\"450\" y=\"971\" type=\"line\"/>\n      <point x=\"150\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254F\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1013\" type=\"line\"/>\n      <point x=\"864\" y=\"1013\" type=\"line\"/>\n      <point x=\"864\" y=\"1626\" type=\"line\"/>\n      <point x=\"336\" y=\"1626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-212\" type=\"line\"/>\n      <point x=\"864\" y=\"-212\" type=\"line\"/>\n      <point x=\"864\" y=\"401\" type=\"line\"/>\n      <point x=\"336\" y=\"401\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"972\" type=\"line\"/>\n      <point x=\"864\" y=\"972\" type=\"line\"/>\n      <point x=\"864\" y=\"1503\" type=\"line\"/>\n      <point x=\"336\" y=\"1503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-90\" type=\"line\"/>\n      <point x=\"864\" y=\"-90\" type=\"line\"/>\n      <point x=\"864\" y=\"441\" type=\"line\"/>\n      <point x=\"336\" y=\"441\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257B\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2533\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2513\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250F\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2501\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2578\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeftAndLightRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257E\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeftAndLightRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2509\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"443\" type=\"line\"/>\n      <point x=\"1162\" y=\"443\" type=\"line\"/>\n      <point x=\"1162\" y=\"971\" type=\"line\"/>\n      <point x=\"937\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"443\" type=\"line\"/>\n      <point x=\"262\" y=\"443\" type=\"line\"/>\n      <point x=\"262\" y=\"971\" type=\"line\"/>\n      <point x=\"37\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"443\" type=\"line\"/>\n      <point x=\"562\" y=\"443\" type=\"line\"/>\n      <point x=\"562\" y=\"971\" type=\"line\"/>\n      <point x=\"337\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"443\" type=\"line\"/>\n      <point x=\"862\" y=\"443\" type=\"line\"/>\n      <point x=\"862\" y=\"971\" type=\"line\"/>\n      <point x=\"637\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"443\" type=\"line\"/>\n      <point x=\"1162\" y=\"443\" type=\"line\"/>\n      <point x=\"1162\" y=\"971\" type=\"line\"/>\n      <point x=\"937\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"443\" type=\"line\"/>\n      <point x=\"262\" y=\"443\" type=\"line\"/>\n      <point x=\"262\" y=\"971\" type=\"line\"/>\n      <point x=\"37\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"443\" type=\"line\"/>\n      <point x=\"562\" y=\"443\" type=\"line\"/>\n      <point x=\"562\" y=\"971\" type=\"line\"/>\n      <point x=\"337\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"443\" type=\"line\"/>\n      <point x=\"862\" y=\"443\" type=\"line\"/>\n      <point x=\"862\" y=\"971\" type=\"line\"/>\n      <point x=\"637\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250B\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1394\" type=\"line\"/>\n      <point x=\"864\" y=\"1394\" type=\"line\"/>\n      <point x=\"864\" y=\"1853\" type=\"line\"/>\n      <point x=\"336\" y=\"1853\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-442\" type=\"line\"/>\n      <point x=\"864\" y=\"-442\" type=\"line\"/>\n      <point x=\"864\" y=\"17\" type=\"line\"/>\n      <point x=\"336\" y=\"17\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"170\" type=\"line\"/>\n      <point x=\"864\" y=\"170\" type=\"line\"/>\n      <point x=\"864\" y=\"629\" type=\"line\"/>\n      <point x=\"336\" y=\"629\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"782\" type=\"line\"/>\n      <point x=\"864\" y=\"782\" type=\"line\"/>\n      <point x=\"864\" y=\"1241\" type=\"line\"/>\n      <point x=\"336\" y=\"1241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1304\" type=\"line\"/>\n      <point x=\"864\" y=\"1304\" type=\"line\"/>\n      <point x=\"864\" y=\"1703\" type=\"line\"/>\n      <point x=\"336\" y=\"1703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-289\" type=\"line\"/>\n      <point x=\"864\" y=\"-289\" type=\"line\"/>\n      <point x=\"864\" y=\"110\" type=\"line\"/>\n      <point x=\"336\" y=\"110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"242\" type=\"line\"/>\n      <point x=\"864\" y=\"242\" type=\"line\"/>\n      <point x=\"864\" y=\"641\" type=\"line\"/>\n      <point x=\"336\" y=\"641\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"773\" type=\"line\"/>\n      <point x=\"864\" y=\"773\" type=\"line\"/>\n      <point x=\"864\" y=\"1172\" type=\"line\"/>\n      <point x=\"336\" y=\"1172\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257A\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2505\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"443\" type=\"line\"/>\n      <point x=\"1133\" y=\"443\" type=\"line\"/>\n      <point x=\"1133\" y=\"971\" type=\"line\"/>\n      <point x=\"866\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"971\" type=\"line\"/>\n      <point x=\"66\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"443\" type=\"line\"/>\n      <point x=\"733\" y=\"443\" type=\"line\"/>\n      <point x=\"733\" y=\"971\" type=\"line\"/>\n      <point x=\"466\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"443\" type=\"line\"/>\n      <point x=\"1133\" y=\"443\" type=\"line\"/>\n      <point x=\"1133\" y=\"971\" type=\"line\"/>\n      <point x=\"866\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"971\" type=\"line\"/>\n      <point x=\"66\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"443\" type=\"line\"/>\n      <point x=\"733\" y=\"443\" type=\"line\"/>\n      <point x=\"733\" y=\"971\" type=\"line\"/>\n      <point x=\"466\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2507\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1250\" type=\"line\"/>\n      <point x=\"864\" y=\"1250\" type=\"line\"/>\n      <point x=\"864\" y=\"1794\" type=\"line\"/>\n      <point x=\"336\" y=\"1794\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-382\" type=\"line\"/>\n      <point x=\"864\" y=\"-382\" type=\"line\"/>\n      <point x=\"864\" y=\"162\" type=\"line\"/>\n      <point x=\"336\" y=\"162\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"434\" type=\"line\"/>\n      <point x=\"864\" y=\"434\" type=\"line\"/>\n      <point x=\"864\" y=\"978\" type=\"line\"/>\n      <point x=\"336\" y=\"978\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1179\" type=\"line\"/>\n      <point x=\"864\" y=\"1179\" type=\"line\"/>\n      <point x=\"864\" y=\"1651\" type=\"line\"/>\n      <point x=\"336\" y=\"1651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-237\" type=\"line\"/>\n      <point x=\"864\" y=\"-237\" type=\"line\"/>\n      <point x=\"864\" y=\"235\" type=\"line\"/>\n      <point x=\"336\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"471\" type=\"line\"/>\n      <point x=\"864\" y=\"471\" type=\"line\"/>\n      <point x=\"864\" y=\"943\" type=\"line\"/>\n      <point x=\"336\" y=\"943\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2579\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_p.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUp.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253B\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251B\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLightDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257F\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLightDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2517\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2503\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254B\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252B\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2523\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftDownHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2545\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftDownHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2535\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightVerticalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightVerticalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2532\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253A\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightVerticalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254A\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightVerticalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftUpHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2543\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftUpHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"511\"/>\n      <point x=\"404\" y=\"839\"/>\n      <point x=\"0\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"0\" y=\"575\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"575\"/>\n      <point x=\"468\" y=\"365\"/>\n      <point x=\"468\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"511\"/>\n      <point x=\"404\" y=\"839\"/>\n      <point x=\"0\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"0\" y=\"575\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"575\"/>\n      <point x=\"468\" y=\"365\"/>\n      <point x=\"468\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"365\"/>\n      <point x=\"942\" y=\"575\"/>\n      <point x=\"1200\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1200\" y=\"839\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"839\"/>\n      <point x=\"468\" y=\"511\"/>\n      <point x=\"468\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"365\"/>\n      <point x=\"942\" y=\"575\"/>\n      <point x=\"1200\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1200\" y=\"839\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"839\"/>\n      <point x=\"468\" y=\"511\"/>\n      <point x=\"468\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256F\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"0\" y=\"575\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"575\"/>\n      <point x=\"732\" y=\"903\"/>\n      <point x=\"732\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"1049\"/>\n      <point x=\"258\" y=\"839\"/>\n      <point x=\"0\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"0\" y=\"575\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"575\"/>\n      <point x=\"732\" y=\"903\"/>\n      <point x=\"732\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"1049\"/>\n      <point x=\"258\" y=\"839\"/>\n      <point x=\"0\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2570\"/>\n  <outline>\n    <contour>\n      <point x=\"1200\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1200\" y=\"839\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"839\"/>\n      <point x=\"732\" y=\"1049\"/>\n      <point x=\"732\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"903\"/>\n      <point x=\"796\" y=\"575\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1200\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1200\" y=\"839\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"839\"/>\n      <point x=\"732\" y=\"1049\"/>\n      <point x=\"732\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"903\"/>\n      <point x=\"796\" y=\"575\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalC_ross.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalCross\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2573\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-518\" type=\"line\"/>\n      <point x=\"147\" y=\"-518\" type=\"line\"/>\n      <point x=\"600\" y=\"407\" type=\"line\"/>\n      <point x=\"1053\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-218\" type=\"line\"/>\n      <point x=\"747\" y=\"707\" type=\"line\"/>\n      <point x=\"1200\" y=\"1632\" type=\"line\"/>\n      <point x=\"1200\" y=\"1932\" type=\"line\"/>\n      <point x=\"1053\" y=\"1932\" type=\"line\"/>\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\n      <point x=\"147\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1632\" type=\"line\"/>\n      <point x=\"453\" y=\"707\" type=\"line\"/>\n      <point x=\"0\" y=\"-218\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalCross.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-355\" type=\"line\"/>\n      <point x=\"152\" y=\"-355\" type=\"line\"/>\n      <point x=\"600\" y=\"438\" type=\"line\"/>\n      <point x=\"1048\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-87\" type=\"line\"/>\n      <point x=\"752\" y=\"707\" type=\"line\"/>\n      <point x=\"1200\" y=\"1501\" type=\"line\"/>\n      <point x=\"1200\" y=\"1769\" type=\"line\"/>\n      <point x=\"1048\" y=\"1769\" type=\"line\"/>\n      <point x=\"600\" y=\"976\" type=\"line\"/>\n      <point x=\"152\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1501\" type=\"line\"/>\n      <point x=\"448\" y=\"707\" type=\"line\"/>\n      <point x=\"0\" y=\"-87\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperLeftToLowerRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2572\"/>\n  <outline>\n    <contour>\n      <point x=\"1053\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-218\" type=\"line\"/>\n      <point x=\"147\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1632\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperLeftToLowerRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1048\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-87\" type=\"line\"/>\n      <point x=\"152\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1501\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperRightToLowerLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2571\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-518\" type=\"line\"/>\n      <point x=\"147\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"1632\" type=\"line\"/>\n      <point x=\"1200\" y=\"1932\" type=\"line\"/>\n      <point x=\"1053\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"-218\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperRightToLowerLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-355\" type=\"line\"/>\n      <point x=\"152\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"1501\" type=\"line\"/>\n      <point x=\"1200\" y=\"1769\" type=\"line\"/>\n      <point x=\"1048\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"-87\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254C\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"575\" type=\"line\"/>\n      <point x=\"1050\" y=\"575\" type=\"line\"/>\n      <point x=\"1050\" y=\"839\" type=\"line\"/>\n      <point x=\"750\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"575\" type=\"line\"/>\n      <point x=\"450\" y=\"575\" type=\"line\"/>\n      <point x=\"450\" y=\"839\" type=\"line\"/>\n      <point x=\"150\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"575\" type=\"line\"/>\n      <point x=\"1050\" y=\"575\" type=\"line\"/>\n      <point x=\"1050\" y=\"839\" type=\"line\"/>\n      <point x=\"750\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"575\" type=\"line\"/>\n      <point x=\"450\" y=\"575\" type=\"line\"/>\n      <point x=\"450\" y=\"839\" type=\"line\"/>\n      <point x=\"150\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1013\" type=\"line\"/>\n      <point x=\"732\" y=\"1013\" type=\"line\"/>\n      <point x=\"732\" y=\"1626\" type=\"line\"/>\n      <point x=\"468\" y=\"1626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-212\" type=\"line\"/>\n      <point x=\"732\" y=\"-212\" type=\"line\"/>\n      <point x=\"732\" y=\"401\" type=\"line\"/>\n      <point x=\"468\" y=\"401\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"972\" type=\"line\"/>\n      <point x=\"732\" y=\"972\" type=\"line\"/>\n      <point x=\"732\" y=\"1503\" type=\"line\"/>\n      <point x=\"468\" y=\"1503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-90\" type=\"line\"/>\n      <point x=\"732\" y=\"-90\" type=\"line\"/>\n      <point x=\"732\" y=\"441\" type=\"line\"/>\n      <point x=\"468\" y=\"441\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2577\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2510\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2500\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2574\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeftAndHeavyRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeftAndHeavyRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2508\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"575\" type=\"line\"/>\n      <point x=\"1162\" y=\"575\" type=\"line\"/>\n      <point x=\"1162\" y=\"839\" type=\"line\"/>\n      <point x=\"937\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"575\" type=\"line\"/>\n      <point x=\"262\" y=\"575\" type=\"line\"/>\n      <point x=\"262\" y=\"839\" type=\"line\"/>\n      <point x=\"37\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"575\" type=\"line\"/>\n      <point x=\"562\" y=\"575\" type=\"line\"/>\n      <point x=\"562\" y=\"839\" type=\"line\"/>\n      <point x=\"337\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"575\" type=\"line\"/>\n      <point x=\"862\" y=\"575\" type=\"line\"/>\n      <point x=\"862\" y=\"839\" type=\"line\"/>\n      <point x=\"637\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"575\" type=\"line\"/>\n      <point x=\"1162\" y=\"575\" type=\"line\"/>\n      <point x=\"1162\" y=\"839\" type=\"line\"/>\n      <point x=\"937\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"575\" type=\"line\"/>\n      <point x=\"262\" y=\"575\" type=\"line\"/>\n      <point x=\"262\" y=\"839\" type=\"line\"/>\n      <point x=\"37\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"575\" type=\"line\"/>\n      <point x=\"562\" y=\"575\" type=\"line\"/>\n      <point x=\"562\" y=\"839\" type=\"line\"/>\n      <point x=\"337\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"575\" type=\"line\"/>\n      <point x=\"862\" y=\"575\" type=\"line\"/>\n      <point x=\"862\" y=\"839\" type=\"line\"/>\n      <point x=\"637\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250A\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1394\" type=\"line\"/>\n      <point x=\"732\" y=\"1394\" type=\"line\"/>\n      <point x=\"732\" y=\"1853\" type=\"line\"/>\n      <point x=\"468\" y=\"1853\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-442\" type=\"line\"/>\n      <point x=\"732\" y=\"-442\" type=\"line\"/>\n      <point x=\"732\" y=\"17\" type=\"line\"/>\n      <point x=\"468\" y=\"17\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"170\" type=\"line\"/>\n      <point x=\"732\" y=\"170\" type=\"line\"/>\n      <point x=\"732\" y=\"629\" type=\"line\"/>\n      <point x=\"468\" y=\"629\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"782\" type=\"line\"/>\n      <point x=\"732\" y=\"782\" type=\"line\"/>\n      <point x=\"732\" y=\"1241\" type=\"line\"/>\n      <point x=\"468\" y=\"1241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1304\" type=\"line\"/>\n      <point x=\"732\" y=\"1304\" type=\"line\"/>\n      <point x=\"732\" y=\"1703\" type=\"line\"/>\n      <point x=\"468\" y=\"1703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-289\" type=\"line\"/>\n      <point x=\"732\" y=\"-289\" type=\"line\"/>\n      <point x=\"732\" y=\"110\" type=\"line\"/>\n      <point x=\"468\" y=\"110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"242\" type=\"line\"/>\n      <point x=\"732\" y=\"242\" type=\"line\"/>\n      <point x=\"732\" y=\"641\" type=\"line\"/>\n      <point x=\"468\" y=\"641\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"773\" type=\"line\"/>\n      <point x=\"732\" y=\"773\" type=\"line\"/>\n      <point x=\"732\" y=\"1172\" type=\"line\"/>\n      <point x=\"468\" y=\"1172\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2576\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2504\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"575\" type=\"line\"/>\n      <point x=\"1133\" y=\"575\" type=\"line\"/>\n      <point x=\"1133\" y=\"839\" type=\"line\"/>\n      <point x=\"866\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"575\" type=\"line\"/>\n      <point x=\"333\" y=\"575\" type=\"line\"/>\n      <point x=\"333\" y=\"839\" type=\"line\"/>\n      <point x=\"66\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"575\" type=\"line\"/>\n      <point x=\"733\" y=\"575\" type=\"line\"/>\n      <point x=\"733\" y=\"839\" type=\"line\"/>\n      <point x=\"466\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"575\" type=\"line\"/>\n      <point x=\"1133\" y=\"575\" type=\"line\"/>\n      <point x=\"1133\" y=\"839\" type=\"line\"/>\n      <point x=\"866\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"575\" type=\"line\"/>\n      <point x=\"333\" y=\"575\" type=\"line\"/>\n      <point x=\"333\" y=\"839\" type=\"line\"/>\n      <point x=\"66\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"575\" type=\"line\"/>\n      <point x=\"733\" y=\"575\" type=\"line\"/>\n      <point x=\"733\" y=\"839\" type=\"line\"/>\n      <point x=\"466\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2506\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1250\" type=\"line\"/>\n      <point x=\"732\" y=\"1250\" type=\"line\"/>\n      <point x=\"732\" y=\"1794\" type=\"line\"/>\n      <point x=\"468\" y=\"1794\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-382\" type=\"line\"/>\n      <point x=\"732\" y=\"-382\" type=\"line\"/>\n      <point x=\"732\" y=\"162\" type=\"line\"/>\n      <point x=\"468\" y=\"162\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"434\" type=\"line\"/>\n      <point x=\"732\" y=\"434\" type=\"line\"/>\n      <point x=\"732\" y=\"978\" type=\"line\"/>\n      <point x=\"468\" y=\"978\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1179\" type=\"line\"/>\n      <point x=\"732\" y=\"1179\" type=\"line\"/>\n      <point x=\"732\" y=\"1651\" type=\"line\"/>\n      <point x=\"468\" y=\"1651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-237\" type=\"line\"/>\n      <point x=\"732\" y=\"-237\" type=\"line\"/>\n      <point x=\"732\" y=\"235\" type=\"line\"/>\n      <point x=\"468\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"471\" type=\"line\"/>\n      <point x=\"732\" y=\"471\" type=\"line\"/>\n      <point x=\"732\" y=\"943\" type=\"line\"/>\n      <point x=\"468\" y=\"943\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2575\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_p.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUp.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHeavyDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257D\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHeavyDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2534\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2518\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2514\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2502\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2524\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightDownHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2546\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightDownHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2536\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftVerticalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftVerticalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2531\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2539\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftVerticalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2549\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftVerticalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightUpHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2544\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightUpHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2568\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255C\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2559\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndDownHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2540\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndDownHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2538\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2526\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251A\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2516\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndDownHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2548\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndDownHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2537\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252A\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2519\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2522\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2515\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2567\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255B\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2558\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256B\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2562\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255F\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2542\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2528\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2520\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253F\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2525\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256A\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2561\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/braceleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007B\"/>\n  <outline>\n    <contour>\n      <point x=\"816\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"-214\"/>\n      <point x=\"955\" y=\"-206\"/>\n      <point x=\"1003\" y=\"-194\" type=\"curve\"/>\n      <point x=\"979\" y=\"47\" type=\"line\"/>\n      <point x=\"941\" y=\"41\"/>\n      <point x=\"905\" y=\"37\"/>\n      <point x=\"876\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"37\"/>\n      <point x=\"726\" y=\"103\"/>\n      <point x=\"751\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"310\"/>\n      <point x=\"827\" y=\"393\"/>\n      <point x=\"827\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"608\"/>\n      <point x=\"715\" y=\"682\"/>\n      <point x=\"525\" y=\"685\" type=\"curve\"/>\n      <point x=\"525\" y=\"727\" type=\"line\"/>\n      <point x=\"715\" y=\"730\"/>\n      <point x=\"827\" y=\"807\"/>\n      <point x=\"827\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"1033\"/>\n      <point x=\"772\" y=\"1119\"/>\n      <point x=\"751\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"1315\"/>\n      <point x=\"795\" y=\"1375\"/>\n      <point x=\"876\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"1375\"/>\n      <point x=\"941\" y=\"1371\"/>\n      <point x=\"979\" y=\"1365\" type=\"curve\"/>\n      <point x=\"1003\" y=\"1606\" type=\"line\"/>\n      <point x=\"955\" y=\"1618\"/>\n      <point x=\"902\" y=\"1626\"/>\n      <point x=\"816\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"1626\"/>\n      <point x=\"434\" y=\"1499\"/>\n      <point x=\"474\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"1179\"/>\n      <point x=\"556\" y=\"1090\"/>\n      <point x=\"556\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"883\"/>\n      <point x=\"431\" y=\"832\"/>\n      <point x=\"229\" y=\"832\" type=\"curve\"/>\n      <point x=\"229\" y=\"580\" type=\"line\"/>\n      <point x=\"432\" y=\"580\"/>\n      <point x=\"556\" y=\"538\"/>\n      <point x=\"556\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"344\"/>\n      <point x=\"490\" y=\"251\"/>\n      <point x=\"474\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"434\" y=\"-78\"/>\n      <point x=\"599\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/braceleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"910\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"-214\"/>\n      <point x=\"1108\" y=\"-206\"/>\n      <point x=\"1177\" y=\"-194\" type=\"curve\"/>\n      <point x=\"1153\" y=\"47\" type=\"line\"/>\n      <point x=\"1085\" y=\"41\"/>\n      <point x=\"1022\" y=\"37\"/>\n      <point x=\"970\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"37\"/>\n      <point x=\"775\" y=\"106\"/>\n      <point x=\"775\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"315\"/>\n      <point x=\"821\" y=\"393\"/>\n      <point x=\"821\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"608\"/>\n      <point x=\"709\" y=\"682\"/>\n      <point x=\"519\" y=\"685\" type=\"curve\"/>\n      <point x=\"519\" y=\"727\" type=\"line\"/>\n      <point x=\"709\" y=\"730\"/>\n      <point x=\"821\" y=\"807\"/>\n      <point x=\"821\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"1033\"/>\n      <point x=\"775\" y=\"1112\"/>\n      <point x=\"775\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"1312\"/>\n      <point x=\"843\" y=\"1375\"/>\n      <point x=\"970\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"1375\"/>\n      <point x=\"1085\" y=\"1371\"/>\n      <point x=\"1153\" y=\"1365\" type=\"curve\"/>\n      <point x=\"1177\" y=\"1606\" type=\"line\"/>\n      <point x=\"1108\" y=\"1618\"/>\n      <point x=\"1033\" y=\"1626\"/>\n      <point x=\"910\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1626\"/>\n      <point x=\"508\" y=\"1499\"/>\n      <point x=\"508\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"1178\"/>\n      <point x=\"550\" y=\"1090\"/>\n      <point x=\"550\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"883\"/>\n      <point x=\"425\" y=\"832\"/>\n      <point x=\"223\" y=\"832\" type=\"curve\"/>\n      <point x=\"223\" y=\"580\" type=\"line\"/>\n      <point x=\"426\" y=\"580\"/>\n      <point x=\"550\" y=\"538\"/>\n      <point x=\"550\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"344\"/>\n      <point x=\"508\" y=\"252\"/>\n      <point x=\"508\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"-78\"/>\n      <point x=\"655\" y=\"-214\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/braceright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007D\"/>\n  <outline>\n    <contour>\n      <point x=\"384\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"-214\"/>\n      <point x=\"766\" y=\"-78\"/>\n      <point x=\"726\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"710\" y=\"251\"/>\n      <point x=\"644\" y=\"344\"/>\n      <point x=\"644\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"538\"/>\n      <point x=\"768\" y=\"580\"/>\n      <point x=\"971\" y=\"580\" type=\"curve\"/>\n      <point x=\"971\" y=\"832\" type=\"line\"/>\n      <point x=\"769\" y=\"832\"/>\n      <point x=\"644\" y=\"883\"/>\n      <point x=\"644\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"1090\"/>\n      <point x=\"709\" y=\"1179\"/>\n      <point x=\"726\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"1499\"/>\n      <point x=\"601\" y=\"1626\"/>\n      <point x=\"384\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"1626\"/>\n      <point x=\"245\" y=\"1618\"/>\n      <point x=\"197\" y=\"1606\" type=\"curve\"/>\n      <point x=\"221\" y=\"1365\" type=\"line\"/>\n      <point x=\"259\" y=\"1371\"/>\n      <point x=\"295\" y=\"1375\"/>\n      <point x=\"324\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"1375\"/>\n      <point x=\"477\" y=\"1315\"/>\n      <point x=\"449\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"1119\"/>\n      <point x=\"373\" y=\"1033\"/>\n      <point x=\"373\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"807\"/>\n      <point x=\"485\" y=\"730\"/>\n      <point x=\"675\" y=\"727\" type=\"curve\"/>\n      <point x=\"675\" y=\"685\" type=\"line\"/>\n      <point x=\"485\" y=\"682\"/>\n      <point x=\"373\" y=\"608\"/>\n      <point x=\"373\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"393\"/>\n      <point x=\"432\" y=\"310\"/>\n      <point x=\"449\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"103\"/>\n      <point x=\"405\" y=\"37\"/>\n      <point x=\"324\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"37\"/>\n      <point x=\"259\" y=\"41\"/>\n      <point x=\"221\" y=\"47\" type=\"curve\"/>\n      <point x=\"197\" y=\"-194\" type=\"line\"/>\n      <point x=\"245\" y=\"-206\"/>\n      <point x=\"298\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/braceright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright_numbersign.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"592\" y=\"310\" type=\"line\"/>\n      <point x=\"2137\" y=\"310\" type=\"line\"/>\n      <point x=\"2137\" y=\"558\" type=\"line\"/>\n      <point x=\"592\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1204\" y=\"0\" type=\"line\"/>\n      <point x=\"1447\" y=\"0\" type=\"line\"/>\n      <point x=\"1567\" y=\"1420\" type=\"line\"/>\n      <point x=\"1324\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"593\" y=\"862\" type=\"line\"/>\n      <point x=\"2137\" y=\"862\" type=\"line\"/>\n      <point x=\"2137\" y=\"1110\" type=\"line\"/>\n      <point x=\"593\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1640\" y=\"0\" type=\"line\"/>\n      <point x=\"1883\" y=\"0\" type=\"line\"/>\n      <point x=\"2003\" y=\"1420\" type=\"line\"/>\n      <point x=\"1760\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"413\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"-214\"/>\n      <point x=\"795\" y=\"-78\"/>\n      <point x=\"755\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"739\" y=\"251\"/>\n      <point x=\"673\" y=\"344\"/>\n      <point x=\"673\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"579\"/>\n      <point x=\"797\" y=\"640\"/>\n      <point x=\"1000\" y=\"640\" type=\"curve\"/>\n      <point x=\"1000\" y=\"772\" type=\"line\"/>\n      <point x=\"798\" y=\"772\"/>\n      <point x=\"673\" y=\"843\"/>\n      <point x=\"673\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"1090\"/>\n      <point x=\"738\" y=\"1179\"/>\n      <point x=\"755\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"1499\"/>\n      <point x=\"630\" y=\"1626\"/>\n      <point x=\"413\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"327\" y=\"1626\"/>\n      <point x=\"274\" y=\"1618\"/>\n      <point x=\"226\" y=\"1606\" type=\"curve\"/>\n      <point x=\"250\" y=\"1365\" type=\"line\"/>\n      <point x=\"288\" y=\"1371\"/>\n      <point x=\"324\" y=\"1375\"/>\n      <point x=\"353\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"434\" y=\"1375\"/>\n      <point x=\"506\" y=\"1315\"/>\n      <point x=\"478\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"1119\"/>\n      <point x=\"402\" y=\"1033\"/>\n      <point x=\"402\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"807\"/>\n      <point x=\"514\" y=\"730\"/>\n      <point x=\"704\" y=\"727\" type=\"curve\"/>\n      <point x=\"704\" y=\"685\" type=\"line\"/>\n      <point x=\"514\" y=\"682\"/>\n      <point x=\"402\" y=\"608\"/>\n      <point x=\"402\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"393\"/>\n      <point x=\"461\" y=\"310\"/>\n      <point x=\"478\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"503\" y=\"103\"/>\n      <point x=\"434\" y=\"37\"/>\n      <point x=\"353\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"37\"/>\n      <point x=\"288\" y=\"41\"/>\n      <point x=\"250\" y=\"47\" type=\"curve\"/>\n      <point x=\"226\" y=\"-194\" type=\"line\"/>\n      <point x=\"274\" y=\"-206\"/>\n      <point x=\"327\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bracketleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005B\"/>\n  <outline>\n    <contour>\n      <point x=\"355\" y=\"-214\" type=\"line\"/>\n      <point x=\"619\" y=\"-214\" type=\"line\"/>\n      <point x=\"619\" y=\"1634\" type=\"line\"/>\n      <point x=\"355\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"-214\" type=\"line\"/>\n      <point x=\"1015\" y=\"-214\" type=\"line\"/>\n      <point x=\"1015\" y=\"38\" type=\"line\"/>\n      <point x=\"599\" y=\"38\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"1382\" type=\"line\"/>\n      <point x=\"1015\" y=\"1382\" type=\"line\"/>\n      <point x=\"1015\" y=\"1634\" type=\"line\"/>\n      <point x=\"599\" y=\"1634\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bracketleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketleft_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"510\" y=\"-214\" type=\"line\"/>\n      <point x=\"774\" y=\"-214\" type=\"line\"/>\n      <point x=\"774\" y=\"1634\" type=\"line\"/>\n      <point x=\"510\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"754\" y=\"-214\" type=\"line\"/>\n      <point x=\"1351\" y=\"-214\" type=\"line\"/>\n      <point x=\"1351\" y=\"38\" type=\"line\"/>\n      <point x=\"754\" y=\"38\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"754\" y=\"1382\" type=\"line\"/>\n      <point x=\"1351\" y=\"1382\" type=\"line\"/>\n      <point x=\"1351\" y=\"1634\" type=\"line\"/>\n      <point x=\"754\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1154\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bracketright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005D\"/>\n  <outline>\n    <contour>\n      <point x=\"579\" y=\"-214\" type=\"line\"/>\n      <point x=\"845\" y=\"-214\" type=\"line\"/>\n      <point x=\"845\" y=\"1634\" type=\"line\"/>\n      <point x=\"579\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"185\" y=\"-214\" type=\"line\"/>\n      <point x=\"599\" y=\"-214\" type=\"line\"/>\n      <point x=\"599\" y=\"38\" type=\"line\"/>\n      <point x=\"185\" y=\"38\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"185\" y=\"1382\" type=\"line\"/>\n      <point x=\"599\" y=\"1382\" type=\"line\"/>\n      <point x=\"599\" y=\"1634\" type=\"line\"/>\n      <point x=\"185\" y=\"1634\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bracketright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketright_numbersign.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1640\" y=\"0\" type=\"line\"/>\n      <point x=\"1883\" y=\"0\" type=\"line\"/>\n      <point x=\"2003\" y=\"1420\" type=\"line\"/>\n      <point x=\"1760\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"310\" type=\"line\"/>\n      <point x=\"2137\" y=\"310\" type=\"line\"/>\n      <point x=\"2137\" y=\"558\" type=\"line\"/>\n      <point x=\"780\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1204\" y=\"0\" type=\"line\"/>\n      <point x=\"1447\" y=\"0\" type=\"line\"/>\n      <point x=\"1567\" y=\"1420\" type=\"line\"/>\n      <point x=\"1324\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"862\" type=\"line\"/>\n      <point x=\"2137\" y=\"862\" type=\"line\"/>\n      <point x=\"2137\" y=\"1110\" type=\"line\"/>\n      <point x=\"780\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <component base=\"bracketleft\" xScale=\"-1\" xOffset=\"1237\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bracketleft</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"breve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D8\"/>\n  <outline>\n    <component base=\"brevecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>brevecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/brevecomb-cy.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb-cy.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1553\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"1553\"/>\n      <point x=\"986\" y=\"1665\"/>\n      <point x=\"986\" y=\"1860\" type=\"curve\"/>\n      <point x=\"716\" y=\"1860\" type=\"line\"/>\n      <point x=\"716\" y=\"1761\"/>\n      <point x=\"673\" y=\"1731\"/>\n      <point x=\"600\" y=\"1731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"527\" y=\"1731\"/>\n      <point x=\"484\" y=\"1761\"/>\n      <point x=\"484\" y=\"1860\" type=\"curve\"/>\n      <point x=\"214\" y=\"1860\" type=\"line\"/>\n      <point x=\"214\" y=\"1665\"/>\n      <point x=\"355\" y=\"1553\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/brevecomb-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb-cy\" format=\"2\">\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"1238\"/>\n      <point x=\"997\" y=\"1356\"/>\n      <point x=\"997\" y=\"1603\" type=\"curve\"/>\n      <point x=\"730\" y=\"1603\" type=\"line\"/>\n      <point x=\"730\" y=\"1486\"/>\n      <point x=\"696\" y=\"1432\"/>\n      <point x=\"600\" y=\"1432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"1432\"/>\n      <point x=\"470\" y=\"1484\"/>\n      <point x=\"470\" y=\"1603\" type=\"curve\"/>\n      <point x=\"203\" y=\"1603\" type=\"line\"/>\n      <point x=\"203\" y=\"1358\"/>\n      <point x=\"327\" y=\"1238\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/brevecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1553\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"1553\"/>\n      <point x=\"991\" y=\"1665\"/>\n      <point x=\"991\" y=\"1860\" type=\"curve\"/>\n      <point x=\"724\" y=\"1860\" type=\"line\"/>\n      <point x=\"724\" y=\"1765\"/>\n      <point x=\"679\" y=\"1731\"/>\n      <point x=\"600\" y=\"1731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"1731\"/>\n      <point x=\"476\" y=\"1765\"/>\n      <point x=\"476\" y=\"1860\" type=\"curve\"/>\n      <point x=\"209\" y=\"1860\" type=\"line\"/>\n      <point x=\"209\" y=\"1665\"/>\n      <point x=\"352\" y=\"1553\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/brevecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb\" format=\"2\">\n  <unicode hex=\"0306\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"1238\"/>\n      <point x=\"991\" y=\"1355\"/>\n      <point x=\"991\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"1603\" type=\"line\"/>\n      <point x=\"732\" y=\"1603\" type=\"line\"/>\n      <point x=\"732\" y=\"1560\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"1478\"/>\n      <point x=\"685\" y=\"1432\"/>\n      <point x=\"600\" y=\"1432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"1432\"/>\n      <point x=\"468\" y=\"1478\"/>\n      <point x=\"468\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"1603\" type=\"line\"/>\n      <point x=\"209\" y=\"1603\" type=\"line\"/>\n      <point x=\"209\" y=\"1560\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"209\" y=\"1355\"/>\n      <point x=\"352\" y=\"1238\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/brokenbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brokenbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A6\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"870\" type=\"line\"/>\n      <point x=\"732\" y=\"870\" type=\"line\"/>\n      <point x=\"732\" y=\"1730\" type=\"line\"/>\n      <point x=\"468\" y=\"1730\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-310\" type=\"line\"/>\n      <point x=\"732\" y=\"-310\" type=\"line\"/>\n      <point x=\"732\" y=\"550\" type=\"line\"/>\n      <point x=\"468\" y=\"550\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2022\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"362\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"362\"/>\n      <point x=\"948\" y=\"518\"/>\n      <point x=\"948\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"902\"/>\n      <point x=\"792\" y=\"1058\"/>\n      <point x=\"600\" y=\"1058\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"1058\"/>\n      <point x=\"252\" y=\"902\"/>\n      <point x=\"252\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"252\" y=\"518\"/>\n      <point x=\"408\" y=\"362\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bulletoperator.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bulletoperator\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2219\"/>\n  <outline>\n    <component base=\"bullet\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bullet</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/bullseye.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bullseye\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CE\"/>\n  <note>\nuni25CE\n</note>\n  <outline>\n    <component base=\"largeCircle\"/>\n    <component base=\"whiteBullet\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>largeCircle</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>whiteBullet</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/c.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"c\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0063\"/>\n  <anchor x=\"650\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"650\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"724\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"-20\"/>\n      <point x=\"951\" y=\"-14\"/>\n      <point x=\"1059\" y=\"10\" type=\"curve\"/>\n      <point x=\"1031\" y=\"263\" type=\"line\"/>\n      <point x=\"940\" y=\"247\"/>\n      <point x=\"844\" y=\"237\"/>\n      <point x=\"748\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"523\" y=\"237\"/>\n      <point x=\"396\" y=\"343\"/>\n      <point x=\"396\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"722\"/>\n      <point x=\"496\" y=\"823\"/>\n      <point x=\"666\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"823\"/>\n      <point x=\"867\" y=\"771\"/>\n      <point x=\"926\" y=\"679\" type=\"curve\"/>\n      <point x=\"1122\" y=\"835\" type=\"line\"/>\n      <point x=\"1056\" y=\"991\"/>\n      <point x=\"893\" y=\"1080\"/>\n      <point x=\"674\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"1080\"/>\n      <point x=\"119\" y=\"878\"/>\n      <point x=\"119\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"176\"/>\n      <point x=\"338\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0107\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"acutecomb\" xOffset=\"111\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cancelC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cancelControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2418\"/>\n  <outline>\n    <component base=\"C.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"N.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cancelC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cancelControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"238\" y=\"371\" type=\"line\"/>\n      <point x=\"1125\" y=\"993\" type=\"line\"/>\n      <point x=\"962\" y=\"1051\" type=\"line\"/>\n      <point x=\"75\" y=\"427\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"427\" type=\"line\"/>\n      <point x=\"75\" y=\"427\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"962\" y=\"371\" type=\"line\"/>\n      <point x=\"1125\" y=\"427\" type=\"line\"/>\n      <point x=\"238\" y=\"1051\" type=\"line\"/>\n      <point x=\"75\" y=\"993\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"993\" type=\"line\"/>\n      <point x=\"1125\" y=\"993\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/careof.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"careof\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2105\"/>\n  <outline>\n    <contour>\n      <point x=\"160\" y=\"306\" type=\"line\"/>\n      <point x=\"1115\" y=\"951\" type=\"line\"/>\n      <point x=\"998\" y=\"1106\" type=\"line\"/>\n      <point x=\"43\" y=\"467\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"834\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1032\" y=\"-20\"/>\n      <point x=\"1163\" y=\"108\"/>\n      <point x=\"1163\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1163\" y=\"498\"/>\n      <point x=\"1032\" y=\"626\"/>\n      <point x=\"834\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"634\" y=\"626\"/>\n      <point x=\"503\" y=\"498\"/>\n      <point x=\"503\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"503\" y=\"108\"/>\n      <point x=\"634\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"834\" y=\"181\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"181\"/>\n      <point x=\"739\" y=\"230\"/>\n      <point x=\"739\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"739\" y=\"376\"/>\n      <point x=\"776\" y=\"425\"/>\n      <point x=\"834\" y=\"425\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"425\"/>\n      <point x=\"927\" y=\"376\"/>\n      <point x=\"927\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"230\"/>\n      <point x=\"890\" y=\"181\"/>\n    </contour>\n    <contour>\n      <point x=\"368\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"452\" y=\"815\"/>\n      <point x=\"532\" y=\"830\"/>\n      <point x=\"588\" y=\"855\" type=\"curve\"/>\n      <point x=\"564\" y=\"1069\" type=\"line\"/>\n      <point x=\"507\" y=\"1046\"/>\n      <point x=\"444\" y=\"1033\"/>\n      <point x=\"392\" y=\"1033\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"1033\"/>\n      <point x=\"252\" y=\"1069\"/>\n      <point x=\"252\" y=\"1131\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"252\" y=\"1188\"/>\n      <point x=\"299\" y=\"1221\"/>\n      <point x=\"382\" y=\"1221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"1221\"/>\n      <point x=\"475\" y=\"1200\"/>\n      <point x=\"502\" y=\"1164\" type=\"curve\"/>\n      <point x=\"633\" y=\"1319\" type=\"line\"/>\n      <point x=\"596\" y=\"1395\"/>\n      <point x=\"504\" y=\"1439\"/>\n      <point x=\"380\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"1439\"/>\n      <point x=\"15\" y=\"1327\"/>\n      <point x=\"15\" y=\"1131\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"15\" y=\"930\"/>\n      <point x=\"143\" y=\"815\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C7\"/>\n  <outline>\n    <component base=\"caroncomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>caroncomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/caroncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caroncomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1800\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"464\" y=\"1580\" type=\"line\"/>\n      <point x=\"736\" y=\"1580\" type=\"line\"/>\n      <point x=\"979\" y=\"1840\" type=\"line\"/>\n      <point x=\"682\" y=\"1840\" type=\"line\"/>\n      <point x=\"590\" y=\"1709\" type=\"line\"/>\n      <point x=\"610\" y=\"1709\" type=\"line\"/>\n      <point x=\"518\" y=\"1840\" type=\"line\"/>\n      <point x=\"221\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/caroncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caroncomb\" format=\"2\">\n  <unicode hex=\"030C\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"456\" y=\"1210\" type=\"line\"/>\n      <point x=\"744\" y=\"1210\" type=\"line\"/>\n      <point x=\"984\" y=\"1590\" type=\"line\"/>\n      <point x=\"689\" y=\"1590\" type=\"line\"/>\n      <point x=\"590\" y=\"1344\" type=\"line\"/>\n      <point x=\"610\" y=\"1344\" type=\"line\"/>\n      <point x=\"511\" y=\"1590\" type=\"line\"/>\n      <point x=\"216\" y=\"1590\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/carriageR_eturnC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"carriageReturnControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240D\"/>\n  <outline>\n    <component base=\"C.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"R.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>R.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"carriageReturnControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"183\" type=\"line\"/>\n      <point x=\"1125\" y=\"432\" type=\"line\"/>\n      <point x=\"577\" y=\"559\" type=\"line\"/>\n      <point x=\"577\" y=\"859\" type=\"line\"/>\n      <point x=\"1125\" y=\"985\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"70\" y=\"720\" type=\"line\"/>\n      <point x=\"70\" y=\"698\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"318\" y=\"587\" type=\"line\"/>\n      <point x=\"1125\" y=\"587\" type=\"line\"/>\n      <point x=\"1125\" y=\"830\" type=\"line\"/>\n      <point x=\"318\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ccaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010D\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"caroncomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ccedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E7\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"cedillacomb\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ccircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0109\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"circumflexcomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010B\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"48\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cedi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B5\"/>\n  <outline>\n    <contour>\n      <point x=\"576\" y=\"-320\" type=\"line\"/>\n      <point x=\"830\" y=\"-320\" type=\"line\"/>\n      <point x=\"830\" y=\"1740\" type=\"line\"/>\n      <point x=\"576\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B8\"/>\n  <outline>\n    <component base=\"cedillacomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>cedillacomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cedillacomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedillacomb\" format=\"2\">\n  <unicode hex=\"0327\"/>\n  <anchor x=\"575\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"500\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"381\" y=\"-480\" type=\"line\"/>\n      <point x=\"667\" y=\"-480\"/>\n      <point x=\"809\" y=\"-409\"/>\n      <point x=\"809\" y=\"-267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"-183\"/>\n      <point x=\"758\" y=\"-132\"/>\n      <point x=\"653\" y=\"-108\" type=\"curve\"/>\n      <point x=\"678\" y=\"-5\" type=\"line\"/>\n      <point x=\"476\" y=\"6\" type=\"line\"/>\n      <point x=\"407\" y=\"-198\" type=\"line\"/>\n      <point x=\"505\" y=\"-198\"/>\n      <point x=\"552\" y=\"-218\"/>\n      <point x=\"552\" y=\"-258\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"-300\"/>\n      <point x=\"496\" y=\"-322\"/>\n      <point x=\"381\" y=\"-322\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A2\"/>\n  <outline>\n    <contour>\n      <point x=\"534\" y=\"-334\" type=\"line\"/>\n      <point x=\"792\" y=\"-334\" type=\"line\"/>\n      <point x=\"792\" y=\"1394\" type=\"line\"/>\n      <point x=\"534\" y=\"1394\" type=\"line\"/>\n    </contour>\n    <component base=\"c\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>c</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/che-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"che-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0447\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"570\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"550\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"343\" type=\"line\"/>\n      <point x=\"826\" y=\"592\" type=\"line\"/>\n      <point x=\"592\" y=\"592\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"439\" y=\"592\"/>\n      <point x=\"372\" y=\"658\"/>\n      <point x=\"372\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"1060\" type=\"line\"/>\n      <point x=\"101\" y=\"1060\" type=\"line\"/>\n      <point x=\"101\" y=\"810\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"101\" y=\"485\"/>\n      <point x=\"238\" y=\"343\"/>\n    </contour>\n    <contour>\n      <point x=\"768\" y=\"0\" type=\"line\"/>\n      <point x=\"1039\" y=\"0\" type=\"line\"/>\n      <point x=\"1039\" y=\"1060\" type=\"line\"/>\n      <point x=\"768\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardDeleteAmstradCpc\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"2429\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1888\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"535\" type=\"line\"/>\r\n      <point x=\"0\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"535\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardDeleteAmstradCpc.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1602\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"412\" type=\"line\"/>\r\n      <point x=\"0\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"412\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-183\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-183\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkerBoardDeleteApple2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2427\"/>\n  <outline>\n    <contour>\n      <point x=\"140\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"140\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"140\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"140\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkerBoardDeleteTrs80\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2428\"/>\n  <outline>\n    <contour>\n      <point x=\"324\" y=\"1421\" type=\"line\"/>\n      <point x=\"508\" y=\"1421\" type=\"line\"/>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1421\" type=\"line\"/>\n      <point x=\"876\" y=\"1421\" type=\"line\"/>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"140\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"140\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"140\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"0\" type=\"line\"/>\n      <point x=\"324\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"0\" type=\"line\"/>\n      <point x=\"692\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_ill.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFill\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_ill.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFill.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_illI_nverse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFillInverse\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFillInverse.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/checkmark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkmark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2713\"/>\n  <outline>\n    <contour>\n      <point x=\"299\" y=\"0\" type=\"line\"/>\n      <point x=\"617\" y=\"0\" type=\"line\"/>\n      <point x=\"1143\" y=\"1420\" type=\"line\"/>\n      <point x=\"878\" y=\"1420\" type=\"line\"/>\n      <point x=\"469\" y=\"280\" type=\"line\"/>\n      <point x=\"451\" y=\"280\" type=\"line\"/>\n      <point x=\"365\" y=\"601\" type=\"line\"/>\n      <point x=\"109\" y=\"601\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/chedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B7\"/>\n  <anchor x=\"560\" y=\"-270\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"-270\" type=\"line\"/>\n      <point x=\"1183\" y=\"-270\" type=\"line\"/>\n      <point x=\"1183\" y=\"252\" type=\"line\"/>\n      <point x=\"914\" y=\"252\" type=\"line\"/>\n    </contour>\n    <component base=\"che-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>che-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/chi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C7\"/>\n  <anchor x=\"600\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"586\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1023\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1063\" y=\"-480\"/>\n      <point x=\"1108\" y=\"-477\"/>\n      <point x=\"1146\" y=\"-468\" type=\"curve\"/>\n      <point x=\"1122\" y=\"-215\" type=\"line\"/>\n      <point x=\"1096\" y=\"-221\"/>\n      <point x=\"1062\" y=\"-223\"/>\n      <point x=\"1043\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"-223\"/>\n      <point x=\"909\" y=\"-179\"/>\n      <point x=\"859\" y=\"-53\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"820\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"1012\"/>\n      <point x=\"346\" y=\"1080\"/>\n      <point x=\"163\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"116\" y=\"1080\"/>\n      <point x=\"84\" y=\"1077\"/>\n      <point x=\"40\" y=\"1068\" type=\"curve\"/>\n      <point x=\"64\" y=\"815\" type=\"line\"/>\n      <point x=\"97\" y=\"821\"/>\n      <point x=\"119\" y=\"823\"/>\n      <point x=\"143\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"223\" y=\"823\"/>\n      <point x=\"273\" y=\"777\"/>\n      <point x=\"322\" y=\"653\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"-209\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"-408\"/>\n      <point x=\"837\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"69\" y=\"-460\" type=\"line\"/>\n      <point x=\"376\" y=\"-460\" type=\"line\"/>\n      <point x=\"654\" y=\"195\" type=\"line\"/>\n      <point x=\"1131\" y=\"1060\" type=\"line\"/>\n      <point x=\"824\" y=\"1060\" type=\"line\"/>\n      <point x=\"540\" y=\"407\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C6\"/>\n  <outline>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>circumflexcomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/circumflexcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflexcomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1800\" name=\"top\"/>\n  <anchor x=\"984\" y=\"1668\" name=\"top_viet\"/>\n  <outline>\n    <contour>\n      <point x=\"222\" y=\"1580\" type=\"line\"/>\n      <point x=\"519\" y=\"1580\" type=\"line\"/>\n      <point x=\"618\" y=\"1719\" type=\"line\"/>\n      <point x=\"584\" y=\"1719\" type=\"line\"/>\n      <point x=\"683\" y=\"1580\" type=\"line\"/>\n      <point x=\"980\" y=\"1580\" type=\"line\"/>\n      <point x=\"737\" y=\"1840\" type=\"line\"/>\n      <point x=\"465\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/circumflexcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflexcomb\" format=\"2\">\n  <unicode hex=\"0302\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1580\" name=\"top\"/>\n  <anchor x=\"958\" y=\"1400\" name=\"top_viet\"/>\n  <outline>\n    <contour>\n      <point x=\"216\" y=\"1248\" type=\"line\"/>\n      <point x=\"511\" y=\"1248\" type=\"line\"/>\n      <point x=\"610\" y=\"1494\" type=\"line\"/>\n      <point x=\"590\" y=\"1494\" type=\"line\"/>\n      <point x=\"689\" y=\"1248\" type=\"line\"/>\n      <point x=\"984\" y=\"1248\" type=\"line\"/>\n      <point x=\"744\" y=\"1628\" type=\"line\"/>\n      <point x=\"456\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/clubB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"clubBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2663\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"553\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"553\"/>\n      <point x=\"992\" y=\"688\"/>\n      <point x=\"992\" y=\"892\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"1126\"/>\n      <point x=\"836\" y=\"1280\"/>\n      <point x=\"600\" y=\"1280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"1280\"/>\n      <point x=\"208\" y=\"1126\"/>\n      <point x=\"208\" y=\"892\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"208\" y=\"688\"/>\n      <point x=\"364\" y=\"553\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"107\"/>\n      <point x=\"489\" y=\"202\"/>\n      <point x=\"489\" y=\"346\" type=\"curve\"/>\n      <point x=\"574\" y=\"346\" type=\"line\"/>\n      <point x=\"574\" y=\"429\" type=\"line\"/>\n      <point x=\"342\" y=\"464\" type=\"line\"/>\n      <point x=\"479\" y=\"346\" type=\"line\"/>\n      <point x=\"479\" y=\"503\"/>\n      <point x=\"392\" y=\"607\"/>\n      <point x=\"259\" y=\"607\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"112\" y=\"607\"/>\n      <point x=\"16\" y=\"505\"/>\n      <point x=\"16\" y=\"351\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"16\" y=\"204\"/>\n      <point x=\"111\" y=\"107\"/>\n    </contour>\n    <contour>\n      <point x=\"344\" y=\"402\" type=\"line\"/>\n      <point x=\"647\" y=\"402\" type=\"line\"/>\n      <point x=\"647\" y=\"604\" type=\"line\"/>\n      <point x=\"436\" y=\"604\" type=\"line\"/>\n      <point x=\"344\" y=\"454\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"516\" y=\"60\" type=\"line\"/>\n      <point x=\"684\" y=\"60\" type=\"line\"/>\n      <point x=\"684\" y=\"1060\" type=\"line\"/>\n      <point x=\"516\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"402\" type=\"line\"/>\n      <point x=\"856\" y=\"402\" type=\"line\"/>\n      <point x=\"856\" y=\"454\" type=\"line\"/>\n      <point x=\"764\" y=\"604\" type=\"line\"/>\n      <point x=\"553\" y=\"604\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1089\" y=\"107\"/>\n      <point x=\"1184\" y=\"204\"/>\n      <point x=\"1184\" y=\"351\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1184\" y=\"505\"/>\n      <point x=\"1088\" y=\"607\"/>\n      <point x=\"941\" y=\"607\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"607\"/>\n      <point x=\"721\" y=\"503\"/>\n      <point x=\"721\" y=\"346\" type=\"curve\"/>\n      <point x=\"858\" y=\"464\" type=\"line\"/>\n      <point x=\"626\" y=\"429\" type=\"line\"/>\n      <point x=\"626\" y=\"346\" type=\"line\"/>\n      <point x=\"711\" y=\"346\" type=\"line\"/>\n      <point x=\"711\" y=\"202\"/>\n      <point x=\"804\" y=\"107\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colon.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003A\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"716\"/>\n      <point x=\"782\" y=\"798\"/>\n      <point x=\"782\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"999\"/>\n      <point x=\"701\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"1080\"/>\n      <point x=\"418\" y=\"999\"/>\n      <point x=\"418\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"798\"/>\n      <point x=\"499\" y=\"716\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"-20\"/>\n      <point x=\"782\" y=\"62\"/>\n      <point x=\"782\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"263\"/>\n      <point x=\"701\" y=\"344\"/>\n      <point x=\"600\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"344\"/>\n      <point x=\"418\" y=\"263\"/>\n      <point x=\"418\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"62\"/>\n      <point x=\"499\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colon_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"140\"/>\n    <component base=\"colon\" xOffset=\"1060\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colon_colon_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"400\"/>\n    <component base=\"colon\" xOffset=\"1200\"/>\n    <component base=\"colon\" xOffset=\"2000\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colon_colon_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1900\" y=\"835\" type=\"line\"/>\n      <point x=\"3320\" y=\"835\" type=\"line\"/>\n      <point x=\"3320\" y=\"1085\" type=\"line\"/>\n      <point x=\"1900\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1900\" y=\"333\" type=\"line\"/>\n      <point x=\"3320\" y=\"333\" type=\"line\"/>\n      <point x=\"3320\" y=\"583\" type=\"line\"/>\n      <point x=\"1900\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"colon\" xOffset=\"650\" yOffset=\"180\"/>\n    <component base=\"colon\" xOffset=\"-120\" yOffset=\"180\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colon_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1083\" y=\"835\" type=\"line\"/>\n      <point x=\"2120\" y=\"835\" type=\"line\"/>\n      <point x=\"2120\" y=\"1085\" type=\"line\"/>\n      <point x=\"1083\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1083\" y=\"333\" type=\"line\"/>\n      <point x=\"2120\" y=\"333\" type=\"line\"/>\n      <point x=\"2120\" y=\"583\" type=\"line\"/>\n      <point x=\"1083\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"colon\" xOffset=\"-60\" yOffset=\"180\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colon_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"983\" y=\"835\" type=\"line\"/>\n      <point x=\"1250\" y=\"835\" type=\"line\"/>\n      <point x=\"1250\" y=\"1085\" type=\"line\"/>\n      <point x=\"983\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"983\" y=\"333\" type=\"line\"/>\n      <point x=\"1250\" y=\"333\" type=\"line\"/>\n      <point x=\"1250\" y=\"583\" type=\"line\"/>\n      <point x=\"983\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"835\" type=\"line\"/>\n      <point x=\"217\" y=\"835\" type=\"line\"/>\n      <point x=\"217\" y=\"1085\" type=\"line\"/>\n      <point x=\"-50\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"333\" type=\"line\"/>\n      <point x=\"217\" y=\"333\" type=\"line\"/>\n      <point x=\"217\" y=\"583\" type=\"line\"/>\n      <point x=\"-50\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"colon.center\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colon_slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"110\"/>\n    <component base=\"slash\" xOffset=\"2080\"/>\n    <component base=\"slash\" xOffset=\"1120\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colonsign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colonsign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A1\"/>\n  <outline>\n    <contour>\n      <point x=\"740\" y=\"-330\" type=\"line\"/>\n      <point x=\"1096\" y=\"1692\" type=\"line\"/>\n      <point x=\"893\" y=\"1716\" type=\"line\"/>\n      <point x=\"537\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"443\" y=\"-330\" type=\"line\"/>\n      <point x=\"799\" y=\"1692\" type=\"line\"/>\n      <point x=\"596\" y=\"1716\" type=\"line\"/>\n      <point x=\"240\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/colontriangularmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colontriangularmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D0\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"620\" type=\"line\"/>\n      <point x=\"860\" y=\"1060\" type=\"line\"/>\n      <point x=\"340\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"340\" y=\"0\" type=\"line\"/>\n      <point x=\"860\" y=\"0\" type=\"line\"/>\n      <point x=\"600\" y=\"440\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/comma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"comma-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060C\"/>\n  <outline>\n    <contour>\n      <point x=\"611\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"-10\"/>\n      <point x=\"782\" y=\"46\"/>\n      <point x=\"782\" y=\"143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"242\"/>\n      <point x=\"701\" y=\"282\"/>\n      <point x=\"618\" y=\"287\" type=\"curve\"/>\n      <point x=\"640\" y=\"380\"/>\n      <point x=\"698\" y=\"463\"/>\n      <point x=\"772\" y=\"560\" type=\"curve\"/>\n      <point x=\"615\" y=\"570\" type=\"line\"/>\n      <point x=\"498\" y=\"461\"/>\n      <point x=\"418\" y=\"327\"/>\n      <point x=\"418\" y=\"183\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"52\"/>\n      <point x=\"495\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/comma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"comma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002C\"/>\n  <outline>\n    <contour>\n      <point x=\"379\" y=\"-436\" type=\"line\"/>\n      <point x=\"637\" y=\"-436\" type=\"line\"/>\n      <point x=\"757\" y=\"254\" type=\"line\"/>\n      <point x=\"459\" y=\"254\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/commaabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaabovecomb\" format=\"2\">\n  <unicode hex=\"0313\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"590\" y=\"1498\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"661\" y=\"1122\" type=\"line\"/>\n      <point x=\"788\" y=\"1226\"/>\n      <point x=\"843\" y=\"1308\"/>\n      <point x=\"843\" y=\"1419\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"1554\"/>\n      <point x=\"750\" y=\"1616\"/>\n      <point x=\"548\" y=\"1616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"1616\" type=\"line\"/>\n      <point x=\"493\" y=\"1426\" type=\"line\"/>\n      <point x=\"558\" y=\"1426\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"1426\"/>\n      <point x=\"611\" y=\"1412\"/>\n      <point x=\"611\" y=\"1383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"1359\"/>\n      <point x=\"580\" y=\"1330\"/>\n      <point x=\"482\" y=\"1251\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/commaaboverightcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaaboverightcomb\" format=\"2\">\n  <unicode hex=\"0315\"/>\n  <outline>\n    <component base=\"commaabovecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/commaaccentcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaaccentcomb\" format=\"2\">\n  <unicode hex=\"0326\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <component base=\"commaabovecomb\" xOffset=\"-60\" yOffset=\"-1730\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/commaturnedabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaturnedabovecomb\" format=\"2\">\n  <unicode hex=\"0312\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"590\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"559\" y=\"1685\" type=\"line\"/>\n      <point x=\"432\" y=\"1581\"/>\n      <point x=\"377\" y=\"1499\"/>\n      <point x=\"377\" y=\"1388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"1253\"/>\n      <point x=\"470\" y=\"1191\"/>\n      <point x=\"672\" y=\"1191\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"1191\" type=\"line\"/>\n      <point x=\"727\" y=\"1381\" type=\"line\"/>\n      <point x=\"662\" y=\"1381\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"626\" y=\"1381\"/>\n      <point x=\"609\" y=\"1395\"/>\n      <point x=\"609\" y=\"1424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"1448\"/>\n      <point x=\"640\" y=\"1477\"/>\n      <point x=\"738\" y=\"1556\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/commaturnedmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaturnedmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02BB\"/>\n  <outline>\n    <component base=\"quoteleft\" yOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>.notdef</key>\n    <string>_notdef.glif</string>\n    <key>A</key>\n    <string>A_.glif</string>\n    <key>A-cy</key>\n    <string>A_-cy.glif</string>\n    <key>A.half</key>\n    <string>A_.half.glif</string>\n    <key>AE</key>\n    <string>A_E_.glif</string>\n    <key>AEacute</key>\n    <string>A_E_acute.glif</string>\n    <key>Aacute</key>\n    <string>A_acute.glif</string>\n    <key>Abreve</key>\n    <string>A_breve.glif</string>\n    <key>Abreveacute</key>\n    <string>A_breveacute.glif</string>\n    <key>Abrevedotbelow</key>\n    <string>A_brevedotbelow.glif</string>\n    <key>Abrevegrave</key>\n    <string>A_brevegrave.glif</string>\n    <key>Abrevehookabove</key>\n    <string>A_brevehookabove.glif</string>\n    <key>Abrevetilde</key>\n    <string>A_brevetilde.glif</string>\n    <key>Acaron</key>\n    <string>A_caron.glif</string>\n    <key>Acircumflex</key>\n    <string>A_circumflex.glif</string>\n    <key>Acircumflexacute</key>\n    <string>A_circumflexacute.glif</string>\n    <key>Acircumflexdotbelow</key>\n    <string>A_circumflexdotbelow.glif</string>\n    <key>Acircumflexgrave</key>\n    <string>A_circumflexgrave.glif</string>\n    <key>Acircumflexhookabove</key>\n    <string>A_circumflexhookabove.glif</string>\n    <key>Acircumflextilde</key>\n    <string>A_circumflextilde.glif</string>\n    <key>Adieresis</key>\n    <string>A_dieresis.glif</string>\n    <key>Adotbelow</key>\n    <string>A_dotbelow.glif</string>\n    <key>Agrave</key>\n    <string>A_grave.glif</string>\n    <key>Ahookabove</key>\n    <string>A_hookabove.glif</string>\n    <key>Alpha</key>\n    <string>A_lpha.glif</string>\n    <key>Alpha-latin</key>\n    <string>A_lpha-latin.glif</string>\n    <key>Alphatonos</key>\n    <string>A_lphatonos.glif</string>\n    <key>Amacron</key>\n    <string>A_macron.glif</string>\n    <key>Aogonek</key>\n    <string>A_ogonek.glif</string>\n    <key>Aring</key>\n    <string>A_ring.glif</string>\n    <key>Aringacute</key>\n    <string>A_ringacute.glif</string>\n    <key>Asmall</key>\n    <string>A_small.glif</string>\n    <key>Astroke</key>\n    <string>A_stroke.glif</string>\n    <key>Atilde</key>\n    <string>A_tilde.glif</string>\n    <key>B</key>\n    <string>B_.glif</string>\n    <key>B.half</key>\n    <string>B_.half.glif</string>\n    <key>Be-cy</key>\n    <string>B_e-cy.glif</string>\n    <key>Beta</key>\n    <string>B_eta.glif</string>\n    <key>C</key>\n    <string>C_.glif</string>\n    <key>C.half</key>\n    <string>C_.half.glif</string>\n    <key>CR</key>\n    <string>C_R_.glif</string>\n    <key>Cacute</key>\n    <string>C_acute.glif</string>\n    <key>Cacute.loclPLK</key>\n    <string>C_acute.loclP_L_K_.glif</string>\n    <key>Ccaron</key>\n    <string>C_caron.glif</string>\n    <key>Ccedilla</key>\n    <string>C_cedilla.glif</string>\n    <key>Ccircumflex</key>\n    <string>C_circumflex.glif</string>\n    <key>Cdotaccent</key>\n    <string>C_dotaccent.glif</string>\n    <key>Che-cy</key>\n    <string>C_he-cy.glif</string>\n    <key>Chedescender-cy</key>\n    <string>C_hedescender-cy.glif</string>\n    <key>Chi</key>\n    <string>C_hi.glif</string>\n    <key>Cstroke</key>\n    <string>C_stroke.glif</string>\n    <key>D</key>\n    <string>D_.glif</string>\n    <key>D.half</key>\n    <string>D_.half.glif</string>\n    <key>Dafrican</key>\n    <string>D_african.glif</string>\n    <key>Dcaron</key>\n    <string>D_caron.glif</string>\n    <key>Dcroat</key>\n    <string>D_croat.glif</string>\n    <key>De-cy</key>\n    <string>D_e-cy.glif</string>\n    <key>De-cy.loclBGR</key>\n    <string>D_e-cy.loclB_G_R_.glif</string>\n    <key>Delta</key>\n    <string>D_elta.glif</string>\n    <key>Dje-cy</key>\n    <string>D_je-cy.glif</string>\n    <key>Dze-cy</key>\n    <string>D_ze-cy.glif</string>\n    <key>Dzhe-cy</key>\n    <string>D_zhe-cy.glif</string>\n    <key>E</key>\n    <string>E_.glif</string>\n    <key>E-cy</key>\n    <string>E_-cy.glif</string>\n    <key>E.half</key>\n    <string>E_.half.glif</string>\n    <key>Eacute</key>\n    <string>E_acute.glif</string>\n    <key>Ebreve</key>\n    <string>E_breve.glif</string>\n    <key>Ecaron</key>\n    <string>E_caron.glif</string>\n    <key>Ecircumflex</key>\n    <string>E_circumflex.glif</string>\n    <key>Ecircumflexacute</key>\n    <string>E_circumflexacute.glif</string>\n    <key>Ecircumflexdotbelow</key>\n    <string>E_circumflexdotbelow.glif</string>\n    <key>Ecircumflexgrave</key>\n    <string>E_circumflexgrave.glif</string>\n    <key>Ecircumflexhookabove</key>\n    <string>E_circumflexhookabove.glif</string>\n    <key>Ecircumflextilde</key>\n    <string>E_circumflextilde.glif</string>\n    <key>Edieresis</key>\n    <string>E_dieresis.glif</string>\n    <key>Edotaccent</key>\n    <string>E_dotaccent.glif</string>\n    <key>Edotbelow</key>\n    <string>E_dotbelow.glif</string>\n    <key>Ef-cy</key>\n    <string>E_f-cy.glif</string>\n    <key>Ef-cy.loclBGR</key>\n    <string>E_f-cy.loclB_G_R_.glif</string>\n    <key>Egrave</key>\n    <string>E_grave.glif</string>\n    <key>Ehookabove</key>\n    <string>E_hookabove.glif</string>\n    <key>El-cy</key>\n    <string>E_l-cy.glif</string>\n    <key>El-cy.loclBGR</key>\n    <string>E_l-cy.loclB_G_R_.glif</string>\n    <key>Em-cy</key>\n    <string>E_m-cy.glif</string>\n    <key>Emacron</key>\n    <string>E_macron.glif</string>\n    <key>En-cy</key>\n    <string>E_n-cy.glif</string>\n    <key>Endescender-cy</key>\n    <string>E_ndescender-cy.glif</string>\n    <key>Eng</key>\n    <string>E_ng.glif</string>\n    <key>Eogonek</key>\n    <string>E_ogonek.glif</string>\n    <key>Eopen</key>\n    <string>E_open.glif</string>\n    <key>Epsilon</key>\n    <string>E_psilon.glif</string>\n    <key>Epsilontonos</key>\n    <string>E_psilontonos.glif</string>\n    <key>Er-cy</key>\n    <string>E_r-cy.glif</string>\n    <key>Ereversed</key>\n    <string>E_reversed.glif</string>\n    <key>Ereversed-cy</key>\n    <string>E_reversed-cy.glif</string>\n    <key>Es-cy</key>\n    <string>E_s-cy.glif</string>\n    <key>Esh</key>\n    <string>E_sh.glif</string>\n    <key>Eta</key>\n    <string>E_ta.glif</string>\n    <key>Etatonos</key>\n    <string>E_tatonos.glif</string>\n    <key>Eth</key>\n    <string>E_th.glif</string>\n    <key>Etilde</key>\n    <string>E_tilde.glif</string>\n    <key>Ezh</key>\n    <string>E_zh.glif</string>\n    <key>F</key>\n    <string>F_.glif</string>\n    <key>F.half</key>\n    <string>F_.half.glif</string>\n    <key>Fhook</key>\n    <string>F_hook.glif</string>\n    <key>G</key>\n    <string>G_.glif</string>\n    <key>G.half</key>\n    <string>G_.half.glif</string>\n    <key>Gamma</key>\n    <string>G_amma.glif</string>\n    <key>Gammaafrican</key>\n    <string>G_ammaafrican.glif</string>\n    <key>Gbreve</key>\n    <string>G_breve.glif</string>\n    <key>Gcaron</key>\n    <string>G_caron.glif</string>\n    <key>Gcircumflex</key>\n    <string>G_circumflex.glif</string>\n    <key>Gcommaaccent</key>\n    <string>G_commaaccent.glif</string>\n    <key>Gdotaccent</key>\n    <string>G_dotaccent.glif</string>\n    <key>Ge-cy</key>\n    <string>G_e-cy.glif</string>\n    <key>Germandbls</key>\n    <string>G_ermandbls.glif</string>\n    <key>Ghestroke-cy</key>\n    <string>G_hestroke-cy.glif</string>\n    <key>Gheupturn-cy</key>\n    <string>G_heupturn-cy.glif</string>\n    <key>Gje-cy</key>\n    <string>G_je-cy.glif</string>\n    <key>Gsmall</key>\n    <string>G_small.glif</string>\n    <key>Gstroke</key>\n    <string>G_stroke.glif</string>\n    <key>H</key>\n    <string>H_.glif</string>\n    <key>H.half</key>\n    <string>H_.half.glif</string>\n    <key>Ha-cy</key>\n    <string>H_a-cy.glif</string>\n    <key>Hadescender-cy</key>\n    <string>H_adescender-cy.glif</string>\n    <key>Hardsign-cy</key>\n    <string>H_ardsign-cy.glif</string>\n    <key>Hbar</key>\n    <string>H_bar.glif</string>\n    <key>Hcaron</key>\n    <string>H_caron.glif</string>\n    <key>Hcircumflex</key>\n    <string>H_circumflex.glif</string>\n    <key>Hdotbelow</key>\n    <string>H_dotbelow.glif</string>\n    <key>I</key>\n    <string>I_.glif</string>\n    <key>I-cy</key>\n    <string>I_-cy.glif</string>\n    <key>I.half</key>\n    <string>I_.half.glif</string>\n    <key>IJ</key>\n    <string>I_J_.glif</string>\n    <key>IJ_acute</key>\n    <string>I_J__acute.glif</string>\n    <key>Ia-cy</key>\n    <string>I_a-cy.glif</string>\n    <key>Iacute</key>\n    <string>I_acute.glif</string>\n    <key>Ibreve</key>\n    <string>I_breve.glif</string>\n    <key>Icircumflex</key>\n    <string>I_circumflex.glif</string>\n    <key>Idieresis</key>\n    <string>I_dieresis.glif</string>\n    <key>Idotaccent</key>\n    <string>I_dotaccent.glif</string>\n    <key>Idotbelow</key>\n    <string>I_dotbelow.glif</string>\n    <key>Ie-cy</key>\n    <string>I_e-cy.glif</string>\n    <key>Iegrave-cy</key>\n    <string>I_egrave-cy.glif</string>\n    <key>Igrave</key>\n    <string>I_grave.glif</string>\n    <key>Ihookabove</key>\n    <string>I_hookabove.glif</string>\n    <key>Ii-cy</key>\n    <string>I_i-cy.glif</string>\n    <key>Iigrave-cy</key>\n    <string>I_igrave-cy.glif</string>\n    <key>Iishort-cy</key>\n    <string>I_ishort-cy.glif</string>\n    <key>Imacron</key>\n    <string>I_macron.glif</string>\n    <key>Imacron-cy</key>\n    <string>I_macron-cy.glif</string>\n    <key>Io-cy</key>\n    <string>I_o-cy.glif</string>\n    <key>Iogonek</key>\n    <string>I_ogonek.glif</string>\n    <key>Iota</key>\n    <string>I_ota.glif</string>\n    <key>Iotaafrican</key>\n    <string>I_otaafrican.glif</string>\n    <key>Iotadieresis</key>\n    <string>I_otadieresis.glif</string>\n    <key>Iotatonos</key>\n    <string>I_otatonos.glif</string>\n    <key>Ismall</key>\n    <string>I_small.glif</string>\n    <key>Itilde</key>\n    <string>I_tilde.glif</string>\n    <key>Iu-cy</key>\n    <string>I_u-cy.glif</string>\n    <key>J</key>\n    <string>J_.glif</string>\n    <key>Jacute</key>\n    <string>J_acute.glif</string>\n    <key>Jcircumflex</key>\n    <string>J_circumflex.glif</string>\n    <key>Je-cy</key>\n    <string>J_e-cy.glif</string>\n    <key>K</key>\n    <string>K_.glif</string>\n    <key>K.half</key>\n    <string>K_.half.glif</string>\n    <key>Ka-cy</key>\n    <string>K_a-cy.glif</string>\n    <key>Kacute</key>\n    <string>K_acute.glif</string>\n    <key>Kadescender-cy</key>\n    <string>K_adescender-cy.glif</string>\n    <key>KaiSymbol</key>\n    <string>K_aiS_ymbol.glif</string>\n    <key>Kappa</key>\n    <string>K_appa.glif</string>\n    <key>Kcommaaccent</key>\n    <string>K_commaaccent.glif</string>\n    <key>Kdotbelow</key>\n    <string>K_dotbelow.glif</string>\n    <key>Kje-cy</key>\n    <string>K_je-cy.glif</string>\n    <key>Klinebelow</key>\n    <string>K_linebelow.glif</string>\n    <key>L</key>\n    <string>L_.glif</string>\n    <key>L.half</key>\n    <string>L_.half.glif</string>\n    <key>LIG</key>\n    <string>L_I_G_.glif</string>\n    <key>Lacute</key>\n    <string>L_acute.glif</string>\n    <key>Lambda</key>\n    <string>L_ambda.glif</string>\n    <key>Lbar</key>\n    <string>L_bar.glif</string>\n    <key>Lcaron</key>\n    <string>L_caron.glif</string>\n    <key>Lcommaaccent</key>\n    <string>L_commaaccent.glif</string>\n    <key>Ldot</key>\n    <string>L_dot.glif</string>\n    <key>Ldotbelow</key>\n    <string>L_dotbelow.glif</string>\n    <key>Lje-cy</key>\n    <string>L_je-cy.glif</string>\n    <key>Llinebelow</key>\n    <string>L_linebelow.glif</string>\n    <key>Lmiddletilde</key>\n    <string>L_middletilde.glif</string>\n    <key>Lslash</key>\n    <string>L_slash.glif</string>\n    <key>Lsmall</key>\n    <string>L_small.glif</string>\n    <key>M</key>\n    <string>M_.glif</string>\n    <key>M.half</key>\n    <string>M_.half.glif</string>\n    <key>Mu</key>\n    <string>M_u.glif</string>\n    <key>N</key>\n    <string>N_.glif</string>\n    <key>N.half</key>\n    <string>N_.half.glif</string>\n    <key>Nacute</key>\n    <string>N_acute.glif</string>\n    <key>Nacute.loclPLK</key>\n    <string>N_acute.loclP_L_K_.glif</string>\n    <key>Ncaron</key>\n    <string>N_caron.glif</string>\n    <key>Ncommaaccent</key>\n    <string>N_commaaccent.glif</string>\n    <key>Nhookleft</key>\n    <string>N_hookleft.glif</string>\n    <key>Nje-cy</key>\n    <string>N_je-cy.glif</string>\n    <key>Nlinebelow</key>\n    <string>N_linebelow.glif</string>\n    <key>Ntilde</key>\n    <string>N_tilde.glif</string>\n    <key>Nu</key>\n    <string>N_u.glif</string>\n    <key>O</key>\n    <string>O_.glif</string>\n    <key>O-cy</key>\n    <string>O_-cy.glif</string>\n    <key>O.half</key>\n    <string>O_.half.glif</string>\n    <key>OE</key>\n    <string>O_E_.glif</string>\n    <key>Oacute</key>\n    <string>O_acute.glif</string>\n    <key>Oacute.loclPLK</key>\n    <string>O_acute.loclP_L_K_.glif</string>\n    <key>Obarred-cy</key>\n    <string>O_barred-cy.glif</string>\n    <key>Obreve</key>\n    <string>O_breve.glif</string>\n    <key>Ocircumflex</key>\n    <string>O_circumflex.glif</string>\n    <key>Ocircumflexacute</key>\n    <string>O_circumflexacute.glif</string>\n    <key>Ocircumflexdotbelow</key>\n    <string>O_circumflexdotbelow.glif</string>\n    <key>Ocircumflexgrave</key>\n    <string>O_circumflexgrave.glif</string>\n    <key>Ocircumflexhookabove</key>\n    <string>O_circumflexhookabove.glif</string>\n    <key>Ocircumflextilde</key>\n    <string>O_circumflextilde.glif</string>\n    <key>Odieresis</key>\n    <string>O_dieresis.glif</string>\n    <key>Odotbelow</key>\n    <string>O_dotbelow.glif</string>\n    <key>Ograve</key>\n    <string>O_grave.glif</string>\n    <key>Ohm</key>\n    <string>O_hm.glif</string>\n    <key>Ohookabove</key>\n    <string>O_hookabove.glif</string>\n    <key>Ohorn</key>\n    <string>O_horn.glif</string>\n    <key>Ohornacute</key>\n    <string>O_hornacute.glif</string>\n    <key>Ohorndotbelow</key>\n    <string>O_horndotbelow.glif</string>\n    <key>Ohorngrave</key>\n    <string>O_horngrave.glif</string>\n    <key>Ohornhookabove</key>\n    <string>O_hornhookabove.glif</string>\n    <key>Ohorntilde</key>\n    <string>O_horntilde.glif</string>\n    <key>Ohungarumlaut</key>\n    <string>O_hungarumlaut.glif</string>\n    <key>Omacron</key>\n    <string>O_macron.glif</string>\n    <key>Omacronacute</key>\n    <string>O_macronacute.glif</string>\n    <key>Omacrongrave</key>\n    <string>O_macrongrave.glif</string>\n    <key>Omega</key>\n    <string>O_mega.glif</string>\n    <key>Omegatonos</key>\n    <string>O_megatonos.glif</string>\n    <key>Omicron</key>\n    <string>O_micron.glif</string>\n    <key>Omicrontonos</key>\n    <string>O_microntonos.glif</string>\n    <key>Oogonek</key>\n    <string>O_ogonek.glif</string>\n    <key>Oopen</key>\n    <string>O_open.glif</string>\n    <key>Oslash</key>\n    <string>O_slash.glif</string>\n    <key>Oslashacute</key>\n    <string>O_slashacute.glif</string>\n    <key>Otilde</key>\n    <string>O_tilde.glif</string>\n    <key>P</key>\n    <string>P_.glif</string>\n    <key>P.half</key>\n    <string>P_.half.glif</string>\n    <key>Palochka-cy</key>\n    <string>P_alochka-cy.glif</string>\n    <key>Pe-cy</key>\n    <string>P_e-cy.glif</string>\n    <key>Phi</key>\n    <string>P_hi.glif</string>\n    <key>Pi</key>\n    <string>P_i.glif</string>\n    <key>Psi</key>\n    <string>P_si.glif</string>\n    <key>Q</key>\n    <string>Q_.glif</string>\n    <key>Q.half</key>\n    <string>Q_.half.glif</string>\n    <key>R</key>\n    <string>R_.glif</string>\n    <key>R.half</key>\n    <string>R_.half.glif</string>\n    <key>Racute</key>\n    <string>R_acute.glif</string>\n    <key>Rcaron</key>\n    <string>R_caron.glif</string>\n    <key>Rcommaaccent</key>\n    <string>R_commaaccent.glif</string>\n    <key>Rdotbelow</key>\n    <string>R_dotbelow.glif</string>\n    <key>Rho</key>\n    <string>R_ho.glif</string>\n    <key>S</key>\n    <string>S_.glif</string>\n    <key>S.half</key>\n    <string>S_.half.glif</string>\n    <key>Sacute</key>\n    <string>S_acute.glif</string>\n    <key>Sacute.loclPLK</key>\n    <string>S_acute.loclP_L_K_.glif</string>\n    <key>Scaron</key>\n    <string>S_caron.glif</string>\n    <key>Scedilla</key>\n    <string>S_cedilla.glif</string>\n    <key>Schwa</key>\n    <string>S_chwa.glif</string>\n    <key>Schwa-cy</key>\n    <string>S_chwa-cy.glif</string>\n    <key>Scircumflex</key>\n    <string>S_circumflex.glif</string>\n    <key>Scommaaccent</key>\n    <string>S_commaaccent.glif</string>\n    <key>Sdotbelow</key>\n    <string>S_dotbelow.glif</string>\n    <key>Sha-cy</key>\n    <string>S_ha-cy.glif</string>\n    <key>Shcha-cy</key>\n    <string>S_hcha-cy.glif</string>\n    <key>Shha-cy</key>\n    <string>S_hha-cy.glif</string>\n    <key>Sigma</key>\n    <string>S_igma.glif</string>\n    <key>Softsign-cy</key>\n    <string>S_oftsign-cy.glif</string>\n    <key>T</key>\n    <string>T_.glif</string>\n    <key>T.half</key>\n    <string>T_.half.glif</string>\n    <key>Tau</key>\n    <string>T_au.glif</string>\n    <key>Tbar</key>\n    <string>T_bar.glif</string>\n    <key>Tcaron</key>\n    <string>T_caron.glif</string>\n    <key>Tcedilla</key>\n    <string>T_cedilla.glif</string>\n    <key>Tcommaaccent</key>\n    <string>T_commaaccent.glif</string>\n    <key>Tdiagonalstroke</key>\n    <string>T_diagonalstroke.glif</string>\n    <key>Te-cy</key>\n    <string>T_e-cy.glif</string>\n    <key>Theta</key>\n    <string>T_heta.glif</string>\n    <key>Thorn</key>\n    <string>T_horn.glif</string>\n    <key>Tlinebelow</key>\n    <string>T_linebelow.glif</string>\n    <key>Tse-cy</key>\n    <string>T_se-cy.glif</string>\n    <key>Tshe-cy</key>\n    <string>T_she-cy.glif</string>\n    <key>U</key>\n    <string>U_.glif</string>\n    <key>U-cy</key>\n    <string>U_-cy.glif</string>\n    <key>U.half</key>\n    <string>U_.half.glif</string>\n    <key>Uacute</key>\n    <string>U_acute.glif</string>\n    <key>Ubreve</key>\n    <string>U_breve.glif</string>\n    <key>Ucircumflex</key>\n    <string>U_circumflex.glif</string>\n    <key>Udieresis</key>\n    <string>U_dieresis.glif</string>\n    <key>Udotbelow</key>\n    <string>U_dotbelow.glif</string>\n    <key>Ugrave</key>\n    <string>U_grave.glif</string>\n    <key>Uhookabove</key>\n    <string>U_hookabove.glif</string>\n    <key>Uhorn</key>\n    <string>U_horn.glif</string>\n    <key>Uhornacute</key>\n    <string>U_hornacute.glif</string>\n    <key>Uhorndotbelow</key>\n    <string>U_horndotbelow.glif</string>\n    <key>Uhorngrave</key>\n    <string>U_horngrave.glif</string>\n    <key>Uhornhookabove</key>\n    <string>U_hornhookabove.glif</string>\n    <key>Uhorntilde</key>\n    <string>U_horntilde.glif</string>\n    <key>Uhungarumlaut</key>\n    <string>U_hungarumlaut.glif</string>\n    <key>Umacron</key>\n    <string>U_macron.glif</string>\n    <key>Umacron-cy</key>\n    <string>U_macron-cy.glif</string>\n    <key>Uogonek</key>\n    <string>U_ogonek.glif</string>\n    <key>Upsilon</key>\n    <string>U_psilon.glif</string>\n    <key>Upsilonafrican</key>\n    <string>U_psilonafrican.glif</string>\n    <key>Upsilondieresis</key>\n    <string>U_psilondieresis.glif</string>\n    <key>Upsilontonos</key>\n    <string>U_psilontonos.glif</string>\n    <key>Uring</key>\n    <string>U_ring.glif</string>\n    <key>Ushort-cy</key>\n    <string>U_short-cy.glif</string>\n    <key>Ustraight-cy</key>\n    <string>U_straight-cy.glif</string>\n    <key>Ustraightstroke-cy</key>\n    <string>U_straightstroke-cy.glif</string>\n    <key>Utilde</key>\n    <string>U_tilde.glif</string>\n    <key>V</key>\n    <string>V_.glif</string>\n    <key>V.half</key>\n    <string>V_.half.glif</string>\n    <key>Ve-cy</key>\n    <string>V_e-cy.glif</string>\n    <key>Vhook</key>\n    <string>V_hook.glif</string>\n    <key>Vturned</key>\n    <string>V_turned.glif</string>\n    <key>W</key>\n    <string>W_.glif</string>\n    <key>Wacute</key>\n    <string>W_acute.glif</string>\n    <key>Wcircumflex</key>\n    <string>W_circumflex.glif</string>\n    <key>Wdieresis</key>\n    <string>W_dieresis.glif</string>\n    <key>Wgrave</key>\n    <string>W_grave.glif</string>\n    <key>X</key>\n    <string>X_.glif</string>\n    <key>X.half</key>\n    <string>X_.half.glif</string>\n    <key>Xi</key>\n    <string>X_i.glif</string>\n    <key>Y</key>\n    <string>Y_.glif</string>\n    <key>Y.half</key>\n    <string>Y_.half.glif</string>\n    <key>Yacute</key>\n    <string>Y_acute.glif</string>\n    <key>Ycircumflex</key>\n    <string>Y_circumflex.glif</string>\n    <key>Ydieresis</key>\n    <string>Y_dieresis.glif</string>\n    <key>Ydotbelow</key>\n    <string>Y_dotbelow.glif</string>\n    <key>Yeru-cy</key>\n    <string>Y_eru-cy.glif</string>\n    <key>Ygrave</key>\n    <string>Y_grave.glif</string>\n    <key>Yhookabove</key>\n    <string>Y_hookabove.glif</string>\n    <key>Yi-cy</key>\n    <string>Y_i-cy.glif</string>\n    <key>Ymacron</key>\n    <string>Y_macron.glif</string>\n    <key>Ytilde</key>\n    <string>Y_tilde.glif</string>\n    <key>Z</key>\n    <string>Z_.glif</string>\n    <key>Zacute</key>\n    <string>Z_acute.glif</string>\n    <key>Zacute.loclPLK</key>\n    <string>Z_acute.loclP_L_K_.glif</string>\n    <key>Zcaron</key>\n    <string>Z_caron.glif</string>\n    <key>Zdotaccent</key>\n    <string>Z_dotaccent.glif</string>\n    <key>Ze-cy</key>\n    <string>Z_e-cy.glif</string>\n    <key>Zeta</key>\n    <string>Z_eta.glif</string>\n    <key>Zhe-cy</key>\n    <string>Z_he-cy.glif</string>\n    <key>Zhedescender-cy</key>\n    <string>Z_hedescender-cy.glif</string>\n    <key>_alef-ar.fina.rlig</key>\n    <string>_alef-ar.fina.rlig.glif</string>\n    <key>_alef-ar.fina.short.rlig</key>\n    <string>_alef-ar.fina.short.rlig.glif</string>\n    <key>_alefFathatan-ar.fina.rlig</key>\n    <string>_alefF_athatan-ar.fina.rlig.glif</string>\n    <key>_alefHamzaabove-ar.fina.rlig</key>\n    <string>_alefH_amzaabove-ar.fina.rlig.glif</string>\n    <key>_alefHamzabelow-ar.fina.rlig</key>\n    <string>_alefH_amzabelow-ar.fina.rlig.glif</string>\n    <key>_alefMadda-ar.fina.rlig</key>\n    <string>_alefM_adda-ar.fina.rlig.glif</string>\n    <key>_alefThreeabove-ar.fina.rlig</key>\n    <string>_alefT_hreeabove-ar.fina.rlig.glif</string>\n    <key>_alefTwoabove-ar.fina.rlig</key>\n    <string>_alefT_woabove-ar.fina.rlig.glif</string>\n    <key>_alefWasla-ar.fina.rlig</key>\n    <string>_alefW_asla-ar.fina.rlig.glif</string>\n    <key>_alefWavyhamzaabove-ar.fina.rlig</key>\n    <string>_alefW_avyhamzaabove-ar.fina.rlig.glif</string>\n    <key>_alefWavyhamzabelow-ar.fina.rlig</key>\n    <string>_alefW_avyhamzabelow-ar.fina.rlig.glif</string>\n    <key>_alefabove</key>\n    <string>_alefabove.glif</string>\n    <key>_bar</key>\n    <string>_bar.glif</string>\n    <key>_cuberoot_fourthroot-ar</key>\n    <string>_cuberoot_fourthroot-ar.glif</string>\n    <key>_damma-ar</key>\n    <string>_damma-ar.glif</string>\n    <key>_dot-ar</key>\n    <string>_dot-ar.glif</string>\n    <key>_dotVInvertedabove</key>\n    <string>_dotV_I_nvertedabove.glif</string>\n    <key>_dotVabove</key>\n    <string>_dotV_above.glif</string>\n    <key>_dots.horz.below</key>\n    <string>_dots.horz.below.glif</string>\n    <key>_doublebar</key>\n    <string>_doublebar.glif</string>\n    <key>_fatha-ar</key>\n    <string>_fatha-ar.glif</string>\n    <key>_four-persian.small01</key>\n    <string>_four-persian.small01.glif</string>\n    <key>_fourdotscenter-ar</key>\n    <string>_fourdotscenter-ar.glif</string>\n    <key>_fourthroot-ar</key>\n    <string>_fourthroot-ar.glif</string>\n    <key>_hamzasmall-ar</key>\n    <string>_hamzasmall-ar.glif</string>\n    <key>_hamzawavy</key>\n    <string>_hamzawavy.glif</string>\n    <key>_hehgoalcomma</key>\n    <string>_hehgoalcomma.glif</string>\n    <key>_highhamzaAlef-ar.fina.rlig</key>\n    <string>_highhamzaA_lef-ar.fina.rlig.glif</string>\n    <key>_invertedstroke</key>\n    <string>_invertedstroke.glif</string>\n    <key>_onedotstah</key>\n    <string>_onedotstah.glif</string>\n    <key>_ringArabic</key>\n    <string>_ringA_rabic.glif</string>\n    <key>_stroke</key>\n    <string>_stroke.glif</string>\n    <key>_tahabove</key>\n    <string>_tahabove.glif</string>\n    <key>_tahabovesmall</key>\n    <string>_tahabovesmall.glif</string>\n    <key>_threedots-ar</key>\n    <string>_threedots-ar.glif</string>\n    <key>_twodotshorizontal-ar</key>\n    <string>_twodotshorizontal-ar.glif</string>\n    <key>_twodotstah</key>\n    <string>_twodotstah.glif</string>\n    <key>_twodotsverticalabove-ar</key>\n    <string>_twodotsverticalabove-ar.glif</string>\n    <key>_vabove</key>\n    <string>_vabove.glif</string>\n    <key>_vbelow-ar</key>\n    <string>_vbelow-ar.glif</string>\n    <key>_vinvertedbelow-ar</key>\n    <string>_vinvertedbelow-ar.glif</string>\n    <key>_yehRohingya-ar</key>\n    <string>_yehR_ohingya-ar.glif</string>\n    <key>_yehRohingya-ar.fina</key>\n    <string>_yehR_ohingya-ar.fina.glif</string>\n    <key>a</key>\n    <string>a.glif</string>\n    <key>a-cy</key>\n    <string>a-cy.glif</string>\n    <key>aacute</key>\n    <string>aacute.glif</string>\n    <key>abreve</key>\n    <string>abreve.glif</string>\n    <key>abreveacute</key>\n    <string>abreveacute.glif</string>\n    <key>abrevedotbelow</key>\n    <string>abrevedotbelow.glif</string>\n    <key>abrevegrave</key>\n    <string>abrevegrave.glif</string>\n    <key>abrevehookabove</key>\n    <string>abrevehookabove.glif</string>\n    <key>abrevetilde</key>\n    <string>abrevetilde.glif</string>\n    <key>acaron</key>\n    <string>acaron.glif</string>\n    <key>acircumflex</key>\n    <string>acircumflex.glif</string>\n    <key>acircumflexacute</key>\n    <string>acircumflexacute.glif</string>\n    <key>acircumflexdotbelow</key>\n    <string>acircumflexdotbelow.glif</string>\n    <key>acircumflexgrave</key>\n    <string>acircumflexgrave.glif</string>\n    <key>acircumflexhookabove</key>\n    <string>acircumflexhookabove.glif</string>\n    <key>acircumflextilde</key>\n    <string>acircumflextilde.glif</string>\n    <key>acknowledgeControl</key>\n    <string>acknowledgeC_ontrol.glif</string>\n    <key>acknowledgeControl.ss20</key>\n    <string>acknowledgeC_ontrol.ss20.glif</string>\n    <key>acute</key>\n    <string>acute.glif</string>\n    <key>acutecomb</key>\n    <string>acutecomb.glif</string>\n    <key>acutecomb.case</key>\n    <string>acutecomb.case.glif</string>\n    <key>acutecomb.case.loclPLK</key>\n    <string>acutecomb.case.loclP_L_K_.glif</string>\n    <key>acutecomb.loclPLK</key>\n    <string>acutecomb.loclP_L_K_.glif</string>\n    <key>acutetonecomb</key>\n    <string>acutetonecomb.glif</string>\n    <key>adieresis</key>\n    <string>adieresis.glif</string>\n    <key>adotbelow</key>\n    <string>adotbelow.glif</string>\n    <key>ae</key>\n    <string>ae.glif</string>\n    <key>ae-ar</key>\n    <string>ae-ar.glif</string>\n    <key>ae-ar.fina</key>\n    <string>ae-ar.fina.glif</string>\n    <key>aeacute</key>\n    <string>aeacute.glif</string>\n    <key>afghani-ar</key>\n    <string>afghani-ar.glif</string>\n    <key>agrave</key>\n    <string>agrave.glif</string>\n    <key>ahookabove</key>\n    <string>ahookabove.glif</string>\n    <key>ain-ar</key>\n    <string>ain-ar.glif</string>\n    <key>ain-ar.fina</key>\n    <string>ain-ar.fina.glif</string>\n    <key>ain-ar.init</key>\n    <string>ain-ar.init.glif</string>\n    <key>ain-ar.medi</key>\n    <string>ain-ar.medi.glif</string>\n    <key>ainThreedots-ar</key>\n    <string>ainT_hreedots-ar.glif</string>\n    <key>ainThreedots-ar.fina</key>\n    <string>ainT_hreedots-ar.fina.glif</string>\n    <key>ainThreedots-ar.init</key>\n    <string>ainT_hreedots-ar.init.glif</string>\n    <key>ainThreedots-ar.medi</key>\n    <string>ainT_hreedots-ar.medi.glif</string>\n    <key>ainThreedotsdownabove-ar</key>\n    <string>ainT_hreedotsdownabove-ar.glif</string>\n    <key>ainThreedotsdownabove-ar.fina</key>\n    <string>ainT_hreedotsdownabove-ar.fina.glif</string>\n    <key>ainThreedotsdownabove-ar.init</key>\n    <string>ainT_hreedotsdownabove-ar.init.glif</string>\n    <key>ainThreedotsdownabove-ar.medi</key>\n    <string>ainT_hreedotsdownabove-ar.medi.glif</string>\n    <key>ainTwodotshorizontalabove-ar</key>\n    <string>ainT_wodotshorizontalabove-ar.glif</string>\n    <key>ainTwodotshorizontalabove-ar.fina</key>\n    <string>ainT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>ainTwodotshorizontalabove-ar.init</key>\n    <string>ainT_wodotshorizontalabove-ar.init.glif</string>\n    <key>ainTwodotshorizontalabove-ar.medi</key>\n    <string>ainT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>ainTwodotsverticalabove-ar</key>\n    <string>ainT_wodotsverticalabove-ar.glif</string>\n    <key>ainTwodotsverticalabove-ar.fina</key>\n    <string>ainT_wodotsverticalabove-ar.fina.glif</string>\n    <key>ainTwodotsverticalabove-ar.init</key>\n    <string>ainT_wodotsverticalabove-ar.init.glif</string>\n    <key>ainTwodotsverticalabove-ar.medi</key>\n    <string>ainT_wodotsverticalabove-ar.medi.glif</string>\n    <key>alef-ar</key>\n    <string>alef-ar.glif</string>\n    <key>alef-ar.fina</key>\n    <string>alef-ar.fina.glif</string>\n    <key>alef-ar.fina.alt</key>\n    <string>alef-ar.fina.alt.glif</string>\n    <key>alef-ar.fina.rlig</key>\n    <string>alef-ar.fina.rlig.glif</string>\n    <key>alef-ar.fina.short</key>\n    <string>alef-ar.fina.short.glif</string>\n    <key>alef-ar.fina.short.alt</key>\n    <string>alef-ar.fina.short.alt.glif</string>\n    <key>alef-ar.fina.short.rlig</key>\n    <string>alef-ar.fina.short.rlig.glif</string>\n    <key>alef-ar.short</key>\n    <string>alef-ar.short.glif</string>\n    <key>alef-hb</key>\n    <string>alef-hb.glif</string>\n    <key>alefFathatan-ar</key>\n    <string>alefF_athatan-ar.glif</string>\n    <key>alefFathatan-ar.fina</key>\n    <string>alefF_athatan-ar.fina.glif</string>\n    <key>alefFathatan-ar.fina.rlig</key>\n    <string>alefF_athatan-ar.fina.rlig.glif</string>\n    <key>alefHamzaabove-ar</key>\n    <string>alefH_amzaabove-ar.glif</string>\n    <key>alefHamzaabove-ar.fina</key>\n    <string>alefH_amzaabove-ar.fina.glif</string>\n    <key>alefHamzaabove-ar.fina.alt</key>\n    <string>alefH_amzaabove-ar.fina.alt.glif</string>\n    <key>alefHamzaabove-ar.fina.rlig</key>\n    <string>alefH_amzaabove-ar.fina.rlig.glif</string>\n    <key>alefHamzabelow-ar</key>\n    <string>alefH_amzabelow-ar.glif</string>\n    <key>alefHamzabelow-ar.fina</key>\n    <string>alefH_amzabelow-ar.fina.glif</string>\n    <key>alefHamzabelow-ar.fina.alt</key>\n    <string>alefH_amzabelow-ar.fina.alt.glif</string>\n    <key>alefHamzabelow-ar.fina.rlig</key>\n    <string>alefH_amzabelow-ar.fina.rlig.glif</string>\n    <key>alefMadda-ar</key>\n    <string>alefM_adda-ar.glif</string>\n    <key>alefMadda-ar.fina</key>\n    <string>alefM_adda-ar.fina.glif</string>\n    <key>alefMadda-ar.fina.alt</key>\n    <string>alefM_adda-ar.fina.alt.glif</string>\n    <key>alefMadda-ar.fina.rlig</key>\n    <string>alefM_adda-ar.fina.rlig.glif</string>\n    <key>alefMaksura-ar</key>\n    <string>alefM_aksura-ar.glif</string>\n    <key>alefMaksura-ar.fina</key>\n    <string>alefM_aksura-ar.fina.glif</string>\n    <key>alefMaksura-ar.fina.alt</key>\n    <string>alefM_aksura-ar.fina.alt.glif</string>\n    <key>alefMaksura-ar.init</key>\n    <string>alefM_aksura-ar.init.glif</string>\n    <key>alefMaksura-ar.init.alt</key>\n    <string>alefM_aksura-ar.init.alt.glif</string>\n    <key>alefMaksura-ar.medi</key>\n    <string>alefM_aksura-ar.medi.glif</string>\n    <key>alefMaksuraAlefabove-ar</key>\n    <string>alefM_aksuraA_lefabove-ar.glif</string>\n    <key>alefMaksuraAlefabove-ar.fina</key>\n    <string>alefM_aksuraA_lefabove-ar.fina.glif</string>\n    <key>alefMaksuraAlefabove-ar.fina.alt</key>\n    <string>alefM_aksuraA_lefabove-ar.fina.alt.glif</string>\n    <key>alefThreeabove-ar</key>\n    <string>alefT_hreeabove-ar.glif</string>\n    <key>alefThreeabove-ar.fina</key>\n    <string>alefT_hreeabove-ar.fina.glif</string>\n    <key>alefThreeabove-ar.fina.alt</key>\n    <string>alefT_hreeabove-ar.fina.alt.glif</string>\n    <key>alefThreeabove-ar.fina.rlig</key>\n    <string>alefT_hreeabove-ar.fina.rlig.glif</string>\n    <key>alefTwoabove-ar</key>\n    <string>alefT_woabove-ar.glif</string>\n    <key>alefTwoabove-ar.fina</key>\n    <string>alefT_woabove-ar.fina.glif</string>\n    <key>alefTwoabove-ar.fina.alt</key>\n    <string>alefT_woabove-ar.fina.alt.glif</string>\n    <key>alefTwoabove-ar.fina.rlig</key>\n    <string>alefT_woabove-ar.fina.rlig.glif</string>\n    <key>alefWasla-ar</key>\n    <string>alefW_asla-ar.glif</string>\n    <key>alefWasla-ar.fina</key>\n    <string>alefW_asla-ar.fina.glif</string>\n    <key>alefWasla-ar.fina.alt</key>\n    <string>alefW_asla-ar.fina.alt.glif</string>\n    <key>alefWasla-ar.fina.rlig</key>\n    <string>alefW_asla-ar.fina.rlig.glif</string>\n    <key>alefWavyhamzaabove-ar</key>\n    <string>alefW_avyhamzaabove-ar.glif</string>\n    <key>alefWavyhamzaabove-ar.fina</key>\n    <string>alefW_avyhamzaabove-ar.fina.glif</string>\n    <key>alefWavyhamzaabove-ar.fina.alt</key>\n    <string>alefW_avyhamzaabove-ar.fina.alt.glif</string>\n    <key>alefWavyhamzaabove-ar.fina.rlig</key>\n    <string>alefW_avyhamzaabove-ar.fina.rlig.glif</string>\n    <key>alefWavyhamzabelow-ar</key>\n    <string>alefW_avyhamzabelow-ar.glif</string>\n    <key>alefWavyhamzabelow-ar.fina</key>\n    <string>alefW_avyhamzabelow-ar.fina.glif</string>\n    <key>alefWavyhamzabelow-ar.fina.alt</key>\n    <string>alefW_avyhamzabelow-ar.fina.alt.glif</string>\n    <key>alefWavyhamzabelow-ar.fina.rlig</key>\n    <string>alefW_avyhamzabelow-ar.fina.rlig.glif</string>\n    <key>alefabove-ar</key>\n    <string>alefabove-ar.glif</string>\n    <key>alefbelow-ar</key>\n    <string>alefbelow-ar.glif</string>\n    <key>alefdagesh-hb</key>\n    <string>alefdagesh-hb.glif</string>\n    <key>alefdagesh-hb.BRACKET.500</key>\n    <string>alefdagesh-hb.B_R_A_C_K_E_T_.500.glif</string>\n    <key>alefpatah-hb</key>\n    <string>alefpatah-hb.glif</string>\n    <key>alefqamats-hb</key>\n    <string>alefqamats-hb.glif</string>\n    <key>allah-ar</key>\n    <string>allah-ar.glif</string>\n    <key>alpha</key>\n    <string>alpha.glif</string>\n    <key>alpha-latin</key>\n    <string>alpha-latin.glif</string>\n    <key>alphatonos</key>\n    <string>alphatonos.glif</string>\n    <key>amacron</key>\n    <string>amacron.glif</string>\n    <key>ampersand</key>\n    <string>ampersand.glif</string>\n    <key>ampersand_ampersand.liga</key>\n    <string>ampersand_ampersand.liga.glif</string>\n    <key>anoteleia</key>\n    <string>anoteleia.glif</string>\n    <key>aogonek</key>\n    <string>aogonek.glif</string>\n    <key>apostrophemod</key>\n    <string>apostrophemod.glif</string>\n    <key>approxequal</key>\n    <string>approxequal.glif</string>\n    <key>aring</key>\n    <string>aring.glif</string>\n    <key>aringacute</key>\n    <string>aringacute.glif</string>\n    <key>asciicircum</key>\n    <string>asciicircum.glif</string>\n    <key>asciicircum_equal.liga</key>\n    <string>asciicircum_equal.liga.glif</string>\n    <key>asciitilde</key>\n    <string>asciitilde.glif</string>\n    <key>asciitilde_asciitilde.liga</key>\n    <string>asciitilde_asciitilde.liga.glif</string>\n    <key>asciitilde_asciitilde_greater.liga</key>\n    <string>asciitilde_asciitilde_greater.liga.glif</string>\n    <key>asciitilde_at.liga</key>\n    <string>asciitilde_at.liga.glif</string>\n    <key>asciitilde_equal.liga</key>\n    <string>asciitilde_equal.liga.glif</string>\n    <key>asciitilde_greater.liga</key>\n    <string>asciitilde_greater.liga.glif</string>\n    <key>asciitilde_hyphen.liga</key>\n    <string>asciitilde_hyphen.liga.glif</string>\n    <key>asterisk</key>\n    <string>asterisk.glif</string>\n    <key>asterisk-ar</key>\n    <string>asterisk-ar.glif</string>\n    <key>asteriskArt-ar</key>\n    <string>asteriskA_rt-ar.glif</string>\n    <key>asterisk_asterisk.liga</key>\n    <string>asterisk_asterisk.liga.glif</string>\n    <key>asterisk_asterisk_asterisk.liga</key>\n    <string>asterisk_asterisk_asterisk.liga.glif</string>\n    <key>asterisk_greater.liga</key>\n    <string>asterisk_greater.liga.glif</string>\n    <key>asterisk_parenright.liga</key>\n    <string>asterisk_parenright.liga.glif</string>\n    <key>asterisk_slash.liga</key>\n    <string>asterisk_slash.liga.glif</string>\n    <key>at</key>\n    <string>at.glif</string>\n    <key>atilde</key>\n    <string>atilde.glif</string>\n    <key>ayin-hb</key>\n    <string>ayin-hb.glif</string>\n    <key>b</key>\n    <string>b.glif</string>\n    <key>backslash</key>\n    <string>backslash.glif</string>\n    <key>backslash_backslash.liga</key>\n    <string>backslash_backslash.liga.glif</string>\n    <key>backslash_slash.liga</key>\n    <string>backslash_slash.liga.glif</string>\n    <key>backspaceControl</key>\n    <string>backspaceC_ontrol.glif</string>\n    <key>backspaceControl.ss20</key>\n    <string>backspaceC_ontrol.ss20.glif</string>\n    <key>baht</key>\n    <string>baht.glif</string>\n    <key>baht.BRACKET.600</key>\n    <string>baht.B_R_A_C_K_E_T_.600.glif</string>\n    <key>bar</key>\n    <string>bar.glif</string>\n    <key>bar_bar.liga</key>\n    <string>bar_bar.liga.glif</string>\n    <key>bar_bar_bar.liga</key>\n    <string>bar_bar_bar.liga.glif</string>\n    <key>bar_bar_bar_greater.liga</key>\n    <string>bar_bar_bar_greater.liga.glif</string>\n    <key>bar_bar_equal_end.seq</key>\n    <string>bar_bar_equal_end.seq.glif</string>\n    <key>bar_bar_equal_middle.seq</key>\n    <string>bar_bar_equal_middle.seq.glif</string>\n    <key>bar_bar_equal_start.seq</key>\n    <string>bar_bar_equal_start.seq.glif</string>\n    <key>bar_bar_greater.liga</key>\n    <string>bar_bar_greater.liga.glif</string>\n    <key>bar_bar_hyphen_end.seq</key>\n    <string>bar_bar_hyphen_end.seq.glif</string>\n    <key>bar_bar_hyphen_middle.seq</key>\n    <string>bar_bar_hyphen_middle.seq.glif</string>\n    <key>bar_bar_hyphen_start.seq</key>\n    <string>bar_bar_hyphen_start.seq.glif</string>\n    <key>bar_braceright.liga</key>\n    <string>bar_braceright.liga.glif</string>\n    <key>bar_bracketright.liga</key>\n    <string>bar_bracketright.liga.glif</string>\n    <key>bar_equal_end.seq</key>\n    <string>bar_equal_end.seq.glif</string>\n    <key>bar_equal_middle.seq</key>\n    <string>bar_equal_middle.seq.glif</string>\n    <key>bar_equal_start.seq</key>\n    <string>bar_equal_start.seq.glif</string>\n    <key>bar_greater.liga</key>\n    <string>bar_greater.liga.glif</string>\n    <key>bar_hyphen_end.seq</key>\n    <string>bar_hyphen_end.seq.glif</string>\n    <key>bar_hyphen_middle.seq</key>\n    <string>bar_hyphen_middle.seq.glif</string>\n    <key>bar_hyphen_start.seq</key>\n    <string>bar_hyphen_start.seq.glif</string>\n    <key>bar_underscore_middle.seq</key>\n    <string>bar_underscore_middle.seq.glif</string>\n    <key>be-cy</key>\n    <string>be-cy.glif</string>\n    <key>be-cy.loclSRB</key>\n    <string>be-cy.loclS_R_B_.glif</string>\n    <key>beeh-ar</key>\n    <string>beeh-ar.glif</string>\n    <key>beeh-ar.alt</key>\n    <string>beeh-ar.alt.glif</string>\n    <key>beeh-ar.fina</key>\n    <string>beeh-ar.fina.glif</string>\n    <key>beeh-ar.fina.alt</key>\n    <string>beeh-ar.fina.alt.glif</string>\n    <key>beeh-ar.init</key>\n    <string>beeh-ar.init.glif</string>\n    <key>beeh-ar.init.alt</key>\n    <string>beeh-ar.init.alt.glif</string>\n    <key>beeh-ar.medi</key>\n    <string>beeh-ar.medi.glif</string>\n    <key>beh-ar</key>\n    <string>beh-ar.glif</string>\n    <key>beh-ar.alt</key>\n    <string>beh-ar.alt.glif</string>\n    <key>beh-ar.fina</key>\n    <string>beh-ar.fina.glif</string>\n    <key>beh-ar.fina.alt</key>\n    <string>beh-ar.fina.alt.glif</string>\n    <key>beh-ar.init</key>\n    <string>beh-ar.init.glif</string>\n    <key>beh-ar.init.alt</key>\n    <string>beh-ar.init.alt.glif</string>\n    <key>beh-ar.medi</key>\n    <string>beh-ar.medi.glif</string>\n    <key>behDotless-ar</key>\n    <string>behD_otless-ar.glif</string>\n    <key>behDotless-ar.alt</key>\n    <string>behD_otless-ar.alt.glif</string>\n    <key>behDotless-ar.fina</key>\n    <string>behD_otless-ar.fina.glif</string>\n    <key>behDotless-ar.fina.alt</key>\n    <string>behD_otless-ar.fina.alt.glif</string>\n    <key>behDotless-ar.init</key>\n    <string>behD_otless-ar.init.glif</string>\n    <key>behDotless-ar.init.alt</key>\n    <string>behD_otless-ar.init.alt.glif</string>\n    <key>behDotless-ar.medi</key>\n    <string>behD_otless-ar.medi.glif</string>\n    <key>behMeemabove-ar</key>\n    <string>behM_eemabove-ar.glif</string>\n    <key>behMeemabove-ar.alt</key>\n    <string>behM_eemabove-ar.alt.glif</string>\n    <key>behMeemabove-ar.fina</key>\n    <string>behM_eemabove-ar.fina.glif</string>\n    <key>behMeemabove-ar.fina.alt</key>\n    <string>behM_eemabove-ar.fina.alt.glif</string>\n    <key>behMeemabove-ar.init</key>\n    <string>behM_eemabove-ar.init.glif</string>\n    <key>behMeemabove-ar.init.alt</key>\n    <string>behM_eemabove-ar.init.alt.glif</string>\n    <key>behMeemabove-ar.medi</key>\n    <string>behM_eemabove-ar.medi.glif</string>\n    <key>behThreedotshorizontalbelow-ar</key>\n    <string>behT_hreedotshorizontalbelow-ar.glif</string>\n    <key>behThreedotshorizontalbelow-ar.alt</key>\n    <string>behT_hreedotshorizontalbelow-ar.alt.glif</string>\n    <key>behThreedotshorizontalbelow-ar.fina</key>\n    <string>behT_hreedotshorizontalbelow-ar.fina.glif</string>\n    <key>behThreedotshorizontalbelow-ar.fina.alt</key>\n    <string>behT_hreedotshorizontalbelow-ar.fina.alt.glif</string>\n    <key>behThreedotshorizontalbelow-ar.init</key>\n    <string>behT_hreedotshorizontalbelow-ar.init.glif</string>\n    <key>behThreedotshorizontalbelow-ar.init.alt</key>\n    <string>behT_hreedotshorizontalbelow-ar.init.alt.glif</string>\n    <key>behThreedotshorizontalbelow-ar.medi</key>\n    <string>behT_hreedotshorizontalbelow-ar.medi.glif</string>\n    <key>behThreedotsupabove-ar</key>\n    <string>behT_hreedotsupabove-ar.glif</string>\n    <key>behThreedotsupabove-ar.alt</key>\n    <string>behT_hreedotsupabove-ar.alt.glif</string>\n    <key>behThreedotsupabove-ar.fina</key>\n    <string>behT_hreedotsupabove-ar.fina.glif</string>\n    <key>behThreedotsupabove-ar.fina.alt</key>\n    <string>behT_hreedotsupabove-ar.fina.alt.glif</string>\n    <key>behThreedotsupabove-ar.init</key>\n    <string>behT_hreedotsupabove-ar.init.glif</string>\n    <key>behThreedotsupabove-ar.init.alt</key>\n    <string>behT_hreedotsupabove-ar.init.alt.glif</string>\n    <key>behThreedotsupabove-ar.medi</key>\n    <string>behT_hreedotsupabove-ar.medi.glif</string>\n    <key>behThreedotsupbelow-ar</key>\n    <string>behT_hreedotsupbelow-ar.glif</string>\n    <key>behThreedotsupbelow-ar.alt</key>\n    <string>behT_hreedotsupbelow-ar.alt.glif</string>\n    <key>behThreedotsupbelow-ar.fina</key>\n    <string>behT_hreedotsupbelow-ar.fina.glif</string>\n    <key>behThreedotsupbelow-ar.fina.alt</key>\n    <string>behT_hreedotsupbelow-ar.fina.alt.glif</string>\n    <key>behThreedotsupbelow-ar.init</key>\n    <string>behT_hreedotsupbelow-ar.init.glif</string>\n    <key>behThreedotsupbelow-ar.init.alt</key>\n    <string>behT_hreedotsupbelow-ar.init.alt.glif</string>\n    <key>behThreedotsupbelow-ar.medi</key>\n    <string>behT_hreedotsupbelow-ar.medi.glif</string>\n    <key>behTwodotsbelowDotabove-ar</key>\n    <string>behT_wodotsbelowD_otabove-ar.glif</string>\n    <key>behTwodotsbelowDotabove-ar.alt</key>\n    <string>behT_wodotsbelowD_otabove-ar.alt.glif</string>\n    <key>behTwodotsbelowDotabove-ar.fina</key>\n    <string>behT_wodotsbelowD_otabove-ar.fina.glif</string>\n    <key>behTwodotsbelowDotabove-ar.fina.alt</key>\n    <string>behT_wodotsbelowD_otabove-ar.fina.alt.glif</string>\n    <key>behTwodotsbelowDotabove-ar.init</key>\n    <string>behT_wodotsbelowD_otabove-ar.init.glif</string>\n    <key>behTwodotsbelowDotabove-ar.init.alt</key>\n    <string>behT_wodotsbelowD_otabove-ar.init.alt.glif</string>\n    <key>behTwodotsbelowDotabove-ar.medi</key>\n    <string>behT_wodotsbelowD_otabove-ar.medi.glif</string>\n    <key>behVabove-ar</key>\n    <string>behV_above-ar.glif</string>\n    <key>behVabove-ar.alt</key>\n    <string>behV_above-ar.alt.glif</string>\n    <key>behVabove-ar.fina</key>\n    <string>behV_above-ar.fina.glif</string>\n    <key>behVabove-ar.fina.alt</key>\n    <string>behV_above-ar.fina.alt.glif</string>\n    <key>behVabove-ar.init</key>\n    <string>behV_above-ar.init.glif</string>\n    <key>behVabove-ar.init.alt</key>\n    <string>behV_above-ar.init.alt.glif</string>\n    <key>behVabove-ar.medi</key>\n    <string>behV_above-ar.medi.glif</string>\n    <key>behVbelow-ar</key>\n    <string>behV_below-ar.glif</string>\n    <key>behVbelow-ar.alt</key>\n    <string>behV_below-ar.alt.glif</string>\n    <key>behVbelow-ar.fina</key>\n    <string>behV_below-ar.fina.glif</string>\n    <key>behVbelow-ar.fina.alt</key>\n    <string>behV_below-ar.fina.alt.glif</string>\n    <key>behVbelow-ar.init</key>\n    <string>behV_below-ar.init.glif</string>\n    <key>behVbelow-ar.init.alt</key>\n    <string>behV_below-ar.init.alt.glif</string>\n    <key>behVbelow-ar.medi</key>\n    <string>behV_below-ar.medi.glif</string>\n    <key>behVinvertedbelow-ar</key>\n    <string>behV_invertedbelow-ar.glif</string>\n    <key>behVinvertedbelow-ar.alt</key>\n    <string>behV_invertedbelow-ar.alt.glif</string>\n    <key>behVinvertedbelow-ar.fina</key>\n    <string>behV_invertedbelow-ar.fina.glif</string>\n    <key>behVinvertedbelow-ar.fina.alt</key>\n    <string>behV_invertedbelow-ar.fina.alt.glif</string>\n    <key>behVinvertedbelow-ar.init</key>\n    <string>behV_invertedbelow-ar.init.glif</string>\n    <key>behVinvertedbelow-ar.init.alt</key>\n    <string>behV_invertedbelow-ar.init.alt.glif</string>\n    <key>behVinvertedbelow-ar.medi</key>\n    <string>behV_invertedbelow-ar.medi.glif</string>\n    <key>beheh-ar</key>\n    <string>beheh-ar.glif</string>\n    <key>beheh-ar.alt</key>\n    <string>beheh-ar.alt.glif</string>\n    <key>beheh-ar.fina</key>\n    <string>beheh-ar.fina.glif</string>\n    <key>beheh-ar.fina.alt</key>\n    <string>beheh-ar.fina.alt.glif</string>\n    <key>beheh-ar.init</key>\n    <string>beheh-ar.init.glif</string>\n    <key>beheh-ar.init.alt</key>\n    <string>beheh-ar.init.alt.glif</string>\n    <key>beheh-ar.medi</key>\n    <string>beheh-ar.medi.glif</string>\n    <key>behhamzaabove-ar</key>\n    <string>behhamzaabove-ar.glif</string>\n    <key>behhamzaabove-ar.alt</key>\n    <string>behhamzaabove-ar.alt.glif</string>\n    <key>behhamzaabove-ar.fina</key>\n    <string>behhamzaabove-ar.fina.glif</string>\n    <key>behhamzaabove-ar.fina.alt</key>\n    <string>behhamzaabove-ar.fina.alt.glif</string>\n    <key>behhamzaabove-ar.init</key>\n    <string>behhamzaabove-ar.init.glif</string>\n    <key>behhamzaabove-ar.medi</key>\n    <string>behhamzaabove-ar.medi.glif</string>\n    <key>bellControl</key>\n    <string>bellC_ontrol.glif</string>\n    <key>bellControl.ss20</key>\n    <string>bellC_ontrol.ss20.glif</string>\n    <key>bet-hb</key>\n    <string>bet-hb.glif</string>\n    <key>beta</key>\n    <string>beta.glif</string>\n    <key>betdagesh-hb</key>\n    <string>betdagesh-hb.glif</string>\n    <key>bitcoin</key>\n    <string>bitcoin.glif</string>\n    <key>blackCircle</key>\n    <string>blackC_ircle.glif</string>\n    <key>blackDiamond</key>\n    <string>blackD_iamond.glif</string>\n    <key>blackHexagon</key>\n    <string>blackH_exagon.glif</string>\n    <key>blackHorizontalEllipse</key>\n    <string>blackH_orizontalE_llipse.glif</string>\n    <key>blackInWhiteDiamond</key>\n    <string>blackI_nW_hiteD_iamond.glif</string>\n    <key>blackLargeCircle</key>\n    <string>blackL_argeC_ircle.glif</string>\n    <key>blackLargeSquare</key>\n    <string>blackL_argeS_quare.glif</string>\n    <key>blackMediumDiamond</key>\n    <string>blackM_ediumD_iamond.glif</string>\n    <key>blackMediumDownTriangleCentred</key>\n    <string>blackM_ediumD_ownT_riangleC_entred.glif</string>\n    <key>blackMediumLeftTriangleCentred</key>\n    <string>blackM_ediumL_eftT_riangleC_entred.glif</string>\n    <key>blackMediumLozenge</key>\n    <string>blackM_ediumL_ozenge.glif</string>\n    <key>blackMediumRightTriangleCentred</key>\n    <string>blackM_ediumR_ightT_riangleC_entred.glif</string>\n    <key>blackMediumUpTriangleCentred</key>\n    <string>blackM_ediumU_pT_riangleC_entred.glif</string>\n    <key>blackParallelogram</key>\n    <string>blackP_arallelogram.glif</string>\n    <key>blackPentagon</key>\n    <string>blackP_entagon.glif</string>\n    <key>blackSmallDiamond</key>\n    <string>blackS_mallD_iamond.glif</string>\n    <key>blackSmallLozenge</key>\n    <string>blackS_mallL_ozenge.glif</string>\n    <key>blackSmallSquare</key>\n    <string>blackS_mallS_quare.glif</string>\n    <key>blackSmilingFace</key>\n    <string>blackS_milingF_ace.glif</string>\n    <key>blackSquare</key>\n    <string>blackS_quare.glif</string>\n    <key>blackVerticalEllipse</key>\n    <string>blackV_erticalE_llipse.glif</string>\n    <key>blackVerticalRect</key>\n    <string>blackV_erticalR_ect.glif</string>\n    <key>blackVerysmallSquare</key>\n    <string>blackV_erysmallS_quare.glif</string>\n    <key>blank</key>\n    <string>blank.glif</string>\n    <key>blank-braille</key>\n    <string>blank-braille.glif</string>\n    <key>blankSymbol</key>\n    <string>blankS_ymbol.glif</string>\n    <key>bottomHalfBlackCircle</key>\n    <string>bottomH_alfB_lackC_ircle.glif</string>\n    <key>bottomHalfBlackDiamond</key>\n    <string>bottomH_alfB_lackD_iamond.glif</string>\n    <key>boxDoubleDownAndHorizontal</key>\n    <string>boxD_oubleD_ownA_ndH_orizontal.glif</string>\n    <key>boxDoubleDownAndHorizontal.stypo</key>\n    <string>boxD_oubleD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleDownAndLeft</key>\n    <string>boxD_oubleD_ownA_ndL_eft.glif</string>\n    <key>boxDoubleDownAndLeft.stypo</key>\n    <string>boxD_oubleD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleDownAndRight</key>\n    <string>boxD_oubleD_ownA_ndR_ight.glif</string>\n    <key>boxDoubleDownAndRight.stypo</key>\n    <string>boxD_oubleD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxDoubleHorizontal</key>\n    <string>boxD_oubleH_orizontal.glif</string>\n    <key>boxDoubleHorizontal.stypo</key>\n    <string>boxD_oubleH_orizontal.stypo.glif</string>\n    <key>boxDoubleUpAndHorizontal</key>\n    <string>boxD_oubleU_pA_ndH_orizontal.glif</string>\n    <key>boxDoubleUpAndHorizontal.stypo</key>\n    <string>boxD_oubleU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleUpAndLeft</key>\n    <string>boxD_oubleU_pA_ndL_eft.glif</string>\n    <key>boxDoubleUpAndLeft.stypo</key>\n    <string>boxD_oubleU_pA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleUpAndRight</key>\n    <string>boxD_oubleU_pA_ndR_ight.glif</string>\n    <key>boxDoubleUpAndRight.stypo</key>\n    <string>boxD_oubleU_pA_ndR_ight.stypo.glif</string>\n    <key>boxDoubleVertical</key>\n    <string>boxD_oubleV_ertical.glif</string>\n    <key>boxDoubleVertical.stypo</key>\n    <string>boxD_oubleV_ertical.stypo.glif</string>\n    <key>boxDoubleVerticalAndHorizontal</key>\n    <string>boxD_oubleV_erticalA_ndH_orizontal.glif</string>\n    <key>boxDoubleVerticalAndHorizontal.stypo</key>\n    <string>boxD_oubleV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleVerticalAndLeft</key>\n    <string>boxD_oubleV_erticalA_ndL_eft.glif</string>\n    <key>boxDoubleVerticalAndLeft.stypo</key>\n    <string>boxD_oubleV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleVerticalAndRight</key>\n    <string>boxD_oubleV_erticalA_ndR_ight.glif</string>\n    <key>boxDoubleVerticalAndRight.stypo</key>\n    <string>boxD_oubleV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxDownDoubleAndHorizontalSingle</key>\n    <string>boxD_ownD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxDownDoubleAndHorizontalSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxDownDoubleAndLeftSingle</key>\n    <string>boxD_ownD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxDownDoubleAndLeftSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxDownDoubleAndRightSingle</key>\n    <string>boxD_ownD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxDownDoubleAndRightSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxDownHeavyAndHorizontalLight</key>\n    <string>boxD_ownH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxDownHeavyAndHorizontalLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndLeftLight</key>\n    <string>boxD_ownH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxDownHeavyAndLeftLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndLeftUpLight</key>\n    <string>boxD_ownH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxDownHeavyAndLeftUpLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndRightLight</key>\n    <string>boxD_ownH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxDownHeavyAndRightLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndRightUpLight</key>\n    <string>boxD_ownH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxDownHeavyAndRightUpLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndUpHorizontalLight</key>\n    <string>boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif</string>\n    <key>boxDownHeavyAndUpHorizontalLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif</string>\n    <key>boxDownLightAndHorizontalHeavy</key>\n    <string>boxD_ownL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxDownLightAndHorizontalHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxDownLightAndLeftHeavy</key>\n    <string>boxD_ownL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxDownLightAndLeftHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxDownLightAndLeftUpHeavy</key>\n    <string>boxD_ownL_ightA_ndL_eftU_pH_eavy.glif</string>\n    <key>boxDownLightAndLeftUpHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif</string>\n    <key>boxDownLightAndRightHeavy</key>\n    <string>boxD_ownL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxDownLightAndRightHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxDownLightAndRightUpHeavy</key>\n    <string>boxD_ownL_ightA_ndR_ightU_pH_eavy.glif</string>\n    <key>boxDownLightAndRightUpHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif</string>\n    <key>boxDownLightAndUpHorizontalHeavy</key>\n    <string>boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif</string>\n    <key>boxDownLightAndUpHorizontalHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif</string>\n    <key>boxDownSingleAndHorizontalDouble</key>\n    <string>boxD_ownS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxDownSingleAndHorizontalDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxDownSingleAndLeftDouble</key>\n    <string>boxD_ownS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxDownSingleAndLeftDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxDownSingleAndRightDouble</key>\n    <string>boxD_ownS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxDownSingleAndRightDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>boxHeavyDoubleDashHorizontal</key>\n    <string>boxH_eavyD_oubleD_ashH_orizontal.glif</string>\n    <key>boxHeavyDoubleDashHorizontal.stypo</key>\n    <string>boxH_eavyD_oubleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyDoubleDashVertical</key>\n    <string>boxH_eavyD_oubleD_ashV_ertical.glif</string>\n    <key>boxHeavyDoubleDashVertical.stypo</key>\n    <string>boxH_eavyD_oubleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyDown</key>\n    <string>boxH_eavyD_own.glif</string>\n    <key>boxHeavyDown.stypo</key>\n    <string>boxH_eavyD_own.stypo.glif</string>\n    <key>boxHeavyDownAndHorizontal</key>\n    <string>boxH_eavyD_ownA_ndH_orizontal.glif</string>\n    <key>boxHeavyDownAndHorizontal.stypo</key>\n    <string>boxH_eavyD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyDownAndLeft</key>\n    <string>boxH_eavyD_ownA_ndL_eft.glif</string>\n    <key>boxHeavyDownAndLeft.stypo</key>\n    <string>boxH_eavyD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyDownAndRight</key>\n    <string>boxH_eavyD_ownA_ndR_ight.glif</string>\n    <key>boxHeavyDownAndRight.stypo</key>\n    <string>boxH_eavyD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxHeavyHorizontal</key>\n    <string>boxH_eavyH_orizontal.glif</string>\n    <key>boxHeavyHorizontal.stypo</key>\n    <string>boxH_eavyH_orizontal.stypo.glif</string>\n    <key>boxHeavyLeft</key>\n    <string>boxH_eavyL_eft.glif</string>\n    <key>boxHeavyLeft.stypo</key>\n    <string>boxH_eavyL_eft.stypo.glif</string>\n    <key>boxHeavyLeftAndLightRight</key>\n    <string>boxH_eavyL_eftA_ndL_ightR_ight.glif</string>\n    <key>boxHeavyLeftAndLightRight.stypo</key>\n    <string>boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif</string>\n    <key>boxHeavyQuadrupleDashHorizontal</key>\n    <string>boxH_eavyQ_uadrupleD_ashH_orizontal.glif</string>\n    <key>boxHeavyQuadrupleDashHorizontal.stypo</key>\n    <string>boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyQuadrupleDashVertical</key>\n    <string>boxH_eavyQ_uadrupleD_ashV_ertical.glif</string>\n    <key>boxHeavyQuadrupleDashVertical.stypo</key>\n    <string>boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyRight</key>\n    <string>boxH_eavyR_ight.glif</string>\n    <key>boxHeavyRight.stypo</key>\n    <string>boxH_eavyR_ight.stypo.glif</string>\n    <key>boxHeavyTripleDashHorizontal</key>\n    <string>boxH_eavyT_ripleD_ashH_orizontal.glif</string>\n    <key>boxHeavyTripleDashHorizontal.stypo</key>\n    <string>boxH_eavyT_ripleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyTripleDashVertical</key>\n    <string>boxH_eavyT_ripleD_ashV_ertical.glif</string>\n    <key>boxHeavyTripleDashVertical.stypo</key>\n    <string>boxH_eavyT_ripleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyUp</key>\n    <string>boxH_eavyU_p.glif</string>\n    <key>boxHeavyUp.stypo</key>\n    <string>boxH_eavyU_p.stypo.glif</string>\n    <key>boxHeavyUpAndHorizontal</key>\n    <string>boxH_eavyU_pA_ndH_orizontal.glif</string>\n    <key>boxHeavyUpAndHorizontal.stypo</key>\n    <string>boxH_eavyU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyUpAndLeft</key>\n    <string>boxH_eavyU_pA_ndL_eft.glif</string>\n    <key>boxHeavyUpAndLeft.stypo</key>\n    <string>boxH_eavyU_pA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyUpAndLightDown</key>\n    <string>boxH_eavyU_pA_ndL_ightD_own.glif</string>\n    <key>boxHeavyUpAndLightDown.stypo</key>\n    <string>boxH_eavyU_pA_ndL_ightD_own.stypo.glif</string>\n    <key>boxHeavyUpAndRight</key>\n    <string>boxH_eavyU_pA_ndR_ight.glif</string>\n    <key>boxHeavyUpAndRight.stypo</key>\n    <string>boxH_eavyU_pA_ndR_ight.stypo.glif</string>\n    <key>boxHeavyVertical</key>\n    <string>boxH_eavyV_ertical.glif</string>\n    <key>boxHeavyVertical.stypo</key>\n    <string>boxH_eavyV_ertical.stypo.glif</string>\n    <key>boxHeavyVerticalAndHorizontal</key>\n    <string>boxH_eavyV_erticalA_ndH_orizontal.glif</string>\n    <key>boxHeavyVerticalAndHorizontal.stypo</key>\n    <string>boxH_eavyV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyVerticalAndLeft</key>\n    <string>boxH_eavyV_erticalA_ndL_eft.glif</string>\n    <key>boxHeavyVerticalAndLeft.stypo</key>\n    <string>boxH_eavyV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyVerticalAndRight</key>\n    <string>boxH_eavyV_erticalA_ndR_ight.glif</string>\n    <key>boxHeavyVerticalAndRight.stypo</key>\n    <string>boxH_eavyV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxLeftDownHeavyAndRightUpLight</key>\n    <string>boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxLeftDownHeavyAndRightUpLight.stypo</key>\n    <string>boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightDownLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxLeftHeavyAndRightDownLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightUpLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxLeftHeavyAndRightUpLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightVerticalLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif</string>\n    <key>boxLeftHeavyAndRightVerticalLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif</string>\n    <key>boxLeftLightAndRightDownHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif</string>\n    <key>boxLeftLightAndRightDownHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif</string>\n    <key>boxLeftLightAndRightUpHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightU_pH_eavy.glif</string>\n    <key>boxLeftLightAndRightUpHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif</string>\n    <key>boxLeftLightAndRightVerticalHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif</string>\n    <key>boxLeftLightAndRightVerticalHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif</string>\n    <key>boxLeftUpHeavyAndRightDownLight</key>\n    <string>boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxLeftUpHeavyAndRightDownLight.stypo</key>\n    <string>boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxLightArcDownAndLeft</key>\n    <string>boxL_ightA_rcD_ownA_ndL_eft.glif</string>\n    <key>boxLightArcDownAndLeft.stypo</key>\n    <string>boxL_ightA_rcD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxLightArcDownAndRight</key>\n    <string>boxL_ightA_rcD_ownA_ndR_ight.glif</string>\n    <key>boxLightArcDownAndRight.stypo</key>\n    <string>boxL_ightA_rcD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxLightArcUpAndLeft</key>\n    <string>boxL_ightA_rcU_pA_ndL_eft.glif</string>\n    <key>boxLightArcUpAndLeft.stypo</key>\n    <string>boxL_ightA_rcU_pA_ndL_eft.stypo.glif</string>\n    <key>boxLightArcUpAndRight</key>\n    <string>boxL_ightA_rcU_pA_ndR_ight.glif</string>\n    <key>boxLightArcUpAndRight.stypo</key>\n    <string>boxL_ightA_rcU_pA_ndR_ight.stypo.glif</string>\n    <key>boxLightDiagonalCross</key>\n    <string>boxL_ightD_iagonalC_ross.glif</string>\n    <key>boxLightDiagonalCross.stypo</key>\n    <string>boxL_ightD_iagonalC_ross.stypo.glif</string>\n    <key>boxLightDiagonalUpperLeftToLowerRight</key>\n    <string>boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif</string>\n    <key>boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n    <string>boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif</string>\n    <key>boxLightDiagonalUpperRightToLowerLeft</key>\n    <string>boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif</string>\n    <key>boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n    <string>boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif</string>\n    <key>boxLightDoubleDashHorizontal</key>\n    <string>boxL_ightD_oubleD_ashH_orizontal.glif</string>\n    <key>boxLightDoubleDashHorizontal.stypo</key>\n    <string>boxL_ightD_oubleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightDoubleDashVertical</key>\n    <string>boxL_ightD_oubleD_ashV_ertical.glif</string>\n    <key>boxLightDoubleDashVertical.stypo</key>\n    <string>boxL_ightD_oubleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightDown</key>\n    <string>boxL_ightD_own.glif</string>\n    <key>boxLightDown.stypo</key>\n    <string>boxL_ightD_own.stypo.glif</string>\n    <key>boxLightDownAndHorizontal</key>\n    <string>boxL_ightD_ownA_ndH_orizontal.glif</string>\n    <key>boxLightDownAndHorizontal.stypo</key>\n    <string>boxL_ightD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightDownAndLeft</key>\n    <string>boxL_ightD_ownA_ndL_eft.glif</string>\n    <key>boxLightDownAndLeft.stypo</key>\n    <string>boxL_ightD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxLightDownAndRight</key>\n    <string>boxL_ightD_ownA_ndR_ight.glif</string>\n    <key>boxLightDownAndRight.stypo</key>\n    <string>boxL_ightD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxLightHorizontal</key>\n    <string>boxL_ightH_orizontal.glif</string>\n    <key>boxLightHorizontal.stypo</key>\n    <string>boxL_ightH_orizontal.stypo.glif</string>\n    <key>boxLightLeft</key>\n    <string>boxL_ightL_eft.glif</string>\n    <key>boxLightLeft.stypo</key>\n    <string>boxL_ightL_eft.stypo.glif</string>\n    <key>boxLightLeftAndHeavyRight</key>\n    <string>boxL_ightL_eftA_ndH_eavyR_ight.glif</string>\n    <key>boxLightLeftAndHeavyRight.stypo</key>\n    <string>boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif</string>\n    <key>boxLightQuadrupleDashHorizontal</key>\n    <string>boxL_ightQ_uadrupleD_ashH_orizontal.glif</string>\n    <key>boxLightQuadrupleDashHorizontal.stypo</key>\n    <string>boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightQuadrupleDashVertical</key>\n    <string>boxL_ightQ_uadrupleD_ashV_ertical.glif</string>\n    <key>boxLightQuadrupleDashVertical.stypo</key>\n    <string>boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightRight</key>\n    <string>boxL_ightR_ight.glif</string>\n    <key>boxLightRight.stypo</key>\n    <string>boxL_ightR_ight.stypo.glif</string>\n    <key>boxLightTripleDashHorizontal</key>\n    <string>boxL_ightT_ripleD_ashH_orizontal.glif</string>\n    <key>boxLightTripleDashHorizontal.stypo</key>\n    <string>boxL_ightT_ripleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightTripleDashVertical</key>\n    <string>boxL_ightT_ripleD_ashV_ertical.glif</string>\n    <key>boxLightTripleDashVertical.stypo</key>\n    <string>boxL_ightT_ripleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightUp</key>\n    <string>boxL_ightU_p.glif</string>\n    <key>boxLightUp.stypo</key>\n    <string>boxL_ightU_p.stypo.glif</string>\n    <key>boxLightUpAndHeavyDown</key>\n    <string>boxL_ightU_pA_ndH_eavyD_own.glif</string>\n    <key>boxLightUpAndHeavyDown.stypo</key>\n    <string>boxL_ightU_pA_ndH_eavyD_own.stypo.glif</string>\n    <key>boxLightUpAndHorizontal</key>\n    <string>boxL_ightU_pA_ndH_orizontal.glif</string>\n    <key>boxLightUpAndHorizontal.stypo</key>\n    <string>boxL_ightU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightUpAndLeft</key>\n    <string>boxL_ightU_pA_ndL_eft.glif</string>\n    <key>boxLightUpAndLeft.stypo</key>\n    <string>boxL_ightU_pA_ndL_eft.stypo.glif</string>\n    <key>boxLightUpAndRight</key>\n    <string>boxL_ightU_pA_ndR_ight.glif</string>\n    <key>boxLightUpAndRight.stypo</key>\n    <string>boxL_ightU_pA_ndR_ight.stypo.glif</string>\n    <key>boxLightVertical</key>\n    <string>boxL_ightV_ertical.glif</string>\n    <key>boxLightVertical.stypo</key>\n    <string>boxL_ightV_ertical.stypo.glif</string>\n    <key>boxLightVerticalAndHorizontal</key>\n    <string>boxL_ightV_erticalA_ndH_orizontal.glif</string>\n    <key>boxLightVerticalAndHorizontal.stypo</key>\n    <string>boxL_ightV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightVerticalAndLeft</key>\n    <string>boxL_ightV_erticalA_ndL_eft.glif</string>\n    <key>boxLightVerticalAndLeft.stypo</key>\n    <string>boxL_ightV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxLightVerticalAndRight</key>\n    <string>boxL_ightV_erticalA_ndR_ight.glif</string>\n    <key>boxLightVerticalAndRight.stypo</key>\n    <string>boxL_ightV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxRightDownHeavyAndLeftUpLight</key>\n    <string>boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxRightDownHeavyAndLeftUpLight.stypo</key>\n    <string>boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftDownLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxRightHeavyAndLeftDownLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftUpLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxRightHeavyAndLeftUpLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftVerticalLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif</string>\n    <key>boxRightHeavyAndLeftVerticalLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif</string>\n    <key>boxRightLightAndLeftDownHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif</string>\n    <key>boxRightLightAndLeftDownHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif</string>\n    <key>boxRightLightAndLeftUpHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftU_pH_eavy.glif</string>\n    <key>boxRightLightAndLeftUpHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif</string>\n    <key>boxRightLightAndLeftVerticalHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif</string>\n    <key>boxRightLightAndLeftVerticalHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif</string>\n    <key>boxRightUpHeavyAndLeftDownLight</key>\n    <string>boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxRightUpHeavyAndLeftDownLight.stypo</key>\n    <string>boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxUpDoubleAndHorizontalSingle</key>\n    <string>boxU_pD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxUpDoubleAndHorizontalSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxUpDoubleAndLeftSingle</key>\n    <string>boxU_pD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxUpDoubleAndLeftSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxUpDoubleAndRightSingle</key>\n    <string>boxU_pD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxUpDoubleAndRightSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxUpHeavyAndDownHorizontalLight</key>\n    <string>boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif</string>\n    <key>boxUpHeavyAndDownHorizontalLight.stypo</key>\n    <string>boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndHorizontalLight</key>\n    <string>boxU_pH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxUpHeavyAndHorizontalLight.stypo</key>\n    <string>boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndLeftDownLight</key>\n    <string>boxU_pH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxUpHeavyAndLeftDownLight.stypo</key>\n    <string>boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndLeftLight</key>\n    <string>boxU_pH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxUpHeavyAndLeftLight.stypo</key>\n    <string>boxU_pH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndRightDownLight</key>\n    <string>boxU_pH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxUpHeavyAndRightDownLight.stypo</key>\n    <string>boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndRightLight</key>\n    <string>boxU_pH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxUpHeavyAndRightLight.stypo</key>\n    <string>boxU_pH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxUpLightAndDownHorizontalHeavy</key>\n    <string>boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif</string>\n    <key>boxUpLightAndDownHorizontalHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif</string>\n    <key>boxUpLightAndHorizontalHeavy</key>\n    <string>boxU_pL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxUpLightAndHorizontalHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxUpLightAndLeftDownHeavy</key>\n    <string>boxU_pL_ightA_ndL_eftD_ownH_eavy.glif</string>\n    <key>boxUpLightAndLeftDownHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif</string>\n    <key>boxUpLightAndLeftHeavy</key>\n    <string>boxU_pL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxUpLightAndLeftHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxUpLightAndRightDownHeavy</key>\n    <string>boxU_pL_ightA_ndR_ightD_ownH_eavy.glif</string>\n    <key>boxUpLightAndRightDownHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif</string>\n    <key>boxUpLightAndRightHeavy</key>\n    <string>boxU_pL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxUpLightAndRightHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxUpSingleAndHorizontalDouble</key>\n    <string>boxU_pS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxUpSingleAndHorizontalDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxUpSingleAndLeftDouble</key>\n    <string>boxU_pS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxUpSingleAndLeftDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxUpSingleAndRightDouble</key>\n    <string>boxU_pS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxUpSingleAndRightDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>boxVerticalDoubleAndHorizontalSingle</key>\n    <string>boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxVerticalDoubleAndHorizontalSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxVerticalDoubleAndLeftSingle</key>\n    <string>boxV_erticalD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxVerticalDoubleAndLeftSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxVerticalDoubleAndRightSingle</key>\n    <string>boxV_erticalD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxVerticalDoubleAndRightSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxVerticalHeavyAndHorizontalLight</key>\n    <string>boxV_erticalH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxVerticalHeavyAndHorizontalLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxVerticalHeavyAndLeftLight</key>\n    <string>boxV_erticalH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxVerticalHeavyAndLeftLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxVerticalHeavyAndRightLight</key>\n    <string>boxV_erticalH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxVerticalHeavyAndRightLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxVerticalLightAndHorizontalHeavy</key>\n    <string>boxV_erticalL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxVerticalLightAndHorizontalHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxVerticalLightAndLeftHeavy</key>\n    <string>boxV_erticalL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxVerticalLightAndLeftHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxVerticalLightAndRightHeavy</key>\n    <string>boxV_erticalL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxVerticalLightAndRightHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxVerticalSingleAndHorizontalDouble</key>\n    <string>boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxVerticalSingleAndHorizontalDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxVerticalSingleAndLeftDouble</key>\n    <string>boxV_erticalS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxVerticalSingleAndLeftDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxVerticalSingleAndRightDouble</key>\n    <string>boxV_erticalS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxVerticalSingleAndRightDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>braceleft</key>\n    <string>braceleft.glif</string>\n    <key>braceleft_bar.liga</key>\n    <string>braceleft_bar.liga.glif</string>\n    <key>braceright</key>\n    <string>braceright.glif</string>\n    <key>braceright_numbersign.liga</key>\n    <string>braceright_numbersign.liga.glif</string>\n    <key>bracketleft</key>\n    <string>bracketleft.glif</string>\n    <key>bracketleft_bar.liga</key>\n    <string>bracketleft_bar.liga.glif</string>\n    <key>bracketright</key>\n    <string>bracketright.glif</string>\n    <key>bracketright_numbersign.liga</key>\n    <string>bracketright_numbersign.liga.glif</string>\n    <key>breve</key>\n    <string>breve.glif</string>\n    <key>brevecomb</key>\n    <string>brevecomb.glif</string>\n    <key>brevecomb-cy</key>\n    <string>brevecomb-cy.glif</string>\n    <key>brevecomb-cy.case</key>\n    <string>brevecomb-cy.case.glif</string>\n    <key>brevecomb.case</key>\n    <string>brevecomb.case.glif</string>\n    <key>brokenbar</key>\n    <string>brokenbar.glif</string>\n    <key>bullet</key>\n    <string>bullet.glif</string>\n    <key>bulletoperator</key>\n    <string>bulletoperator.glif</string>\n    <key>bullseye</key>\n    <string>bullseye.glif</string>\n    <key>c</key>\n    <string>c.glif</string>\n    <key>cacute</key>\n    <string>cacute.glif</string>\n    <key>cacute.loclPLK</key>\n    <string>cacute.loclP_L_K_.glif</string>\n    <key>cancelControl</key>\n    <string>cancelC_ontrol.glif</string>\n    <key>cancelControl.ss20</key>\n    <string>cancelC_ontrol.ss20.glif</string>\n    <key>careof</key>\n    <string>careof.glif</string>\n    <key>caron</key>\n    <string>caron.glif</string>\n    <key>caroncomb</key>\n    <string>caroncomb.glif</string>\n    <key>caroncomb.case</key>\n    <string>caroncomb.case.glif</string>\n    <key>carriageReturnControl</key>\n    <string>carriageR_eturnC_ontrol.glif</string>\n    <key>carriageReturnControl.ss20</key>\n    <string>carriageR_eturnC_ontrol.ss20.glif</string>\n    <key>ccaron</key>\n    <string>ccaron.glif</string>\n    <key>ccedilla</key>\n    <string>ccedilla.glif</string>\n    <key>ccircumflex</key>\n    <string>ccircumflex.glif</string>\n    <key>cdotaccent</key>\n    <string>cdotaccent.glif</string>\n    <key>cedi</key>\n    <string>cedi.glif</string>\n    <key>cedilla</key>\n    <string>cedilla.glif</string>\n    <key>cedillacomb</key>\n    <string>cedillacomb.glif</string>\n    <key>cent</key>\n    <string>cent.glif</string>\n    <key>che-cy</key>\n    <string>che-cy.glif</string>\n    <key>checkmark</key>\n    <string>checkmark.glif</string>\n    <key>chedescender-cy</key>\n    <string>chedescender-cy.glif</string>\n    <key>chi</key>\n    <string>chi.glif</string>\n    <key>circumflex</key>\n    <string>circumflex.glif</string>\n    <key>circumflexcomb</key>\n    <string>circumflexcomb.glif</string>\n    <key>circumflexcomb.case</key>\n    <string>circumflexcomb.case.glif</string>\n    <key>clubBlackSuit</key>\n    <string>clubB_lackS_uit.glif</string>\n    <key>colon</key>\n    <string>colon.glif</string>\n    <key>colon.center</key>\n    <string>colon.center.glif</string>\n    <key>colon_colon.liga</key>\n    <string>colon_colon.liga.glif</string>\n    <key>colon_colon_colon.liga</key>\n    <string>colon_colon_colon.liga.glif</string>\n    <key>colon_colon_equal.liga</key>\n    <string>colon_colon_equal.liga.glif</string>\n    <key>colon_equal.liga</key>\n    <string>colon_equal.liga.glif</string>\n    <key>colon_equal_middle.seq</key>\n    <string>colon_equal_middle.seq.glif</string>\n    <key>colon_slash_slash.liga</key>\n    <string>colon_slash_slash.liga.glif</string>\n    <key>colonsign</key>\n    <string>colonsign.glif</string>\n    <key>colontriangularmod</key>\n    <string>colontriangularmod.glif</string>\n    <key>comma</key>\n    <string>comma.glif</string>\n    <key>comma-ar</key>\n    <string>comma-ar.glif</string>\n    <key>commaabovecomb</key>\n    <string>commaabovecomb.glif</string>\n    <key>commaaboverightcomb</key>\n    <string>commaaboverightcomb.glif</string>\n    <key>commaaccentcomb</key>\n    <string>commaaccentcomb.glif</string>\n    <key>commaturnedabovecomb</key>\n    <string>commaturnedabovecomb.glif</string>\n    <key>commaturnedmod</key>\n    <string>commaturnedmod.glif</string>\n    <key>copyright</key>\n    <string>copyright.glif</string>\n    <key>crosshatchFillSquare</key>\n    <string>crosshatchF_illS_quare.glif</string>\n    <key>cuberoot-ar</key>\n    <string>cuberoot-ar.glif</string>\n    <key>currency</key>\n    <string>currency.glif</string>\n    <key>d</key>\n    <string>d.glif</string>\n    <key>dad-ar</key>\n    <string>dad-ar.glif</string>\n    <key>dad-ar.alt</key>\n    <string>dad-ar.alt.glif</string>\n    <key>dad-ar.fina</key>\n    <string>dad-ar.fina.glif</string>\n    <key>dad-ar.fina.alt</key>\n    <string>dad-ar.fina.alt.glif</string>\n    <key>dad-ar.init</key>\n    <string>dad-ar.init.glif</string>\n    <key>dad-ar.medi</key>\n    <string>dad-ar.medi.glif</string>\n    <key>dadDotbelow-ar</key>\n    <string>dadD_otbelow-ar.glif</string>\n    <key>dadDotbelow-ar.alt</key>\n    <string>dadD_otbelow-ar.alt.glif</string>\n    <key>dadDotbelow-ar.fina</key>\n    <string>dadD_otbelow-ar.fina.glif</string>\n    <key>dadDotbelow-ar.fina.alt</key>\n    <string>dadD_otbelow-ar.fina.alt.glif</string>\n    <key>dadDotbelow-ar.init</key>\n    <string>dadD_otbelow-ar.init.glif</string>\n    <key>dadDotbelow-ar.medi</key>\n    <string>dadD_otbelow-ar.medi.glif</string>\n    <key>dagesh-hb</key>\n    <string>dagesh-hb.glif</string>\n    <key>dagger</key>\n    <string>dagger.glif</string>\n    <key>daggerdbl</key>\n    <string>daggerdbl.glif</string>\n    <key>dahal-ar</key>\n    <string>dahal-ar.glif</string>\n    <key>dahal-ar.fina</key>\n    <string>dahal-ar.fina.glif</string>\n    <key>dal-ar</key>\n    <string>dal-ar.glif</string>\n    <key>dal-ar.fina</key>\n    <string>dal-ar.fina.glif</string>\n    <key>dalDotbelow-ar</key>\n    <string>dalD_otbelow-ar.glif</string>\n    <key>dalDotbelow-ar.fina</key>\n    <string>dalD_otbelow-ar.fina.glif</string>\n    <key>dalDotbelowTah-ar</key>\n    <string>dalD_otbelowT_ah-ar.glif</string>\n    <key>dalDotbelowTah-ar.fina</key>\n    <string>dalD_otbelowT_ah-ar.fina.glif</string>\n    <key>dalFourdots-ar</key>\n    <string>dalF_ourdots-ar.glif</string>\n    <key>dalFourdots-ar.fina</key>\n    <string>dalF_ourdots-ar.fina.glif</string>\n    <key>dalRing-ar</key>\n    <string>dalR_ing-ar.glif</string>\n    <key>dalRing-ar.fina</key>\n    <string>dalR_ing-ar.fina.glif</string>\n    <key>dalThreedotsbelow-ar</key>\n    <string>dalT_hreedotsbelow-ar.glif</string>\n    <key>dalThreedotsbelow-ar.fina</key>\n    <string>dalT_hreedotsbelow-ar.fina.glif</string>\n    <key>dalThreedotsdown-ar</key>\n    <string>dalT_hreedotsdown-ar.glif</string>\n    <key>dalThreedotsdown-ar.fina</key>\n    <string>dalT_hreedotsdown-ar.fina.glif</string>\n    <key>dalTwodotsverticalbelowTahabove-ar</key>\n    <string>dalT_wodotsverticalbelowT_ahabove-ar.glif</string>\n    <key>dalTwodotsverticalbelowTahabove-ar.fina</key>\n    <string>dalT_wodotsverticalbelowT_ahabove-ar.fina.glif</string>\n    <key>dalVinvertedabove-ar</key>\n    <string>dalV_invertedabove-ar.glif</string>\n    <key>dalVinvertedabove-ar.fina</key>\n    <string>dalV_invertedabove-ar.fina.glif</string>\n    <key>dalVinvertedbelow-ar</key>\n    <string>dalV_invertedbelow-ar.glif</string>\n    <key>dalVinvertedbelow-ar.fina</key>\n    <string>dalV_invertedbelow-ar.fina.glif</string>\n    <key>dalet-hb</key>\n    <string>dalet-hb.glif</string>\n    <key>daletdagesh-hb</key>\n    <string>daletdagesh-hb.glif</string>\n    <key>damma-ar</key>\n    <string>damma-ar.glif</string>\n    <key>dammatan-ar</key>\n    <string>dammatan-ar.glif</string>\n    <key>dashdownArrow</key>\n    <string>dashdownA_rrow.glif</string>\n    <key>dataLinkEscapeControl</key>\n    <string>dataL_inkE_scapeC_ontrol.glif</string>\n    <key>dataLinkEscapeControl.ss20</key>\n    <string>dataL_inkE_scapeC_ontrol.ss20.glif</string>\n    <key>dateseparator-ar</key>\n    <string>dateseparator-ar.glif</string>\n    <key>dcaron</key>\n    <string>dcaron.glif</string>\n    <key>dcaron.alt</key>\n    <string>dcaron.alt.glif</string>\n    <key>dcroat</key>\n    <string>dcroat.glif</string>\n    <key>ddahal-ar</key>\n    <string>ddahal-ar.glif</string>\n    <key>ddahal-ar.fina</key>\n    <string>ddahal-ar.fina.glif</string>\n    <key>ddal-ar</key>\n    <string>ddal-ar.glif</string>\n    <key>ddal-ar.fina</key>\n    <string>ddal-ar.fina.glif</string>\n    <key>de-cy</key>\n    <string>de-cy.glif</string>\n    <key>de-cy.loclBGR</key>\n    <string>de-cy.loclB_G_R_.glif</string>\n    <key>decimalseparator-ar</key>\n    <string>decimalseparator-ar.glif</string>\n    <key>degree</key>\n    <string>degree.glif</string>\n    <key>deleteControl</key>\n    <string>deleteC_ontrol.glif</string>\n    <key>deleteFormTwoControl</key>\n    <string>deleteF_ormT_woC_ontrol.glif</string>\n    <key>delta</key>\n    <string>delta.glif</string>\n    <key>deviceControlFourControl</key>\n    <string>deviceC_ontrolF_ourC_ontrol.glif</string>\n    <key>deviceControlOneControl</key>\n    <string>deviceC_ontrolO_neC_ontrol.glif</string>\n    <key>deviceControlThreeControl</key>\n    <string>deviceC_ontrolT_hreeC_ontrol.glif</string>\n    <key>deviceControlTwoControl</key>\n    <string>deviceC_ontrolT_woC_ontrol.glif</string>\n    <key>diagonalcrosshatchFillSquare</key>\n    <string>diagonalcrosshatchF_illS_quare.glif</string>\n    <key>diamondBlackSuit</key>\n    <string>diamondB_lackS_uit.glif</string>\n    <key>dieresis</key>\n    <string>dieresis.glif</string>\n    <key>dieresiscomb</key>\n    <string>dieresiscomb.glif</string>\n    <key>dieresiscomb.case</key>\n    <string>dieresiscomb.case.glif</string>\n    <key>dieresistonos</key>\n    <string>dieresistonos.glif</string>\n    <key>divide</key>\n    <string>divide.glif</string>\n    <key>divisionslash</key>\n    <string>divisionslash.glif</string>\n    <key>dje-cy</key>\n    <string>dje-cy.glif</string>\n    <key>dollar</key>\n    <string>dollar.glif</string>\n    <key>dollar.BRACKET.600</key>\n    <string>dollar.B_R_A_C_K_E_T_.600.glif</string>\n    <key>dollar_greater.liga</key>\n    <string>dollar_greater.liga.glif</string>\n    <key>dollar_greater.liga.BRACKET.600</key>\n    <string>dollar_greater.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>dong</key>\n    <string>dong.glif</string>\n    <key>dotabove-ar</key>\n    <string>dotabove-ar.glif</string>\n    <key>dotaccent</key>\n    <string>dotaccent.glif</string>\n    <key>dotaccentcomb</key>\n    <string>dotaccentcomb.glif</string>\n    <key>dotaccentcomb.case</key>\n    <string>dotaccentcomb.case.glif</string>\n    <key>dotbelow-ar</key>\n    <string>dotbelow-ar.glif</string>\n    <key>dotbelowcomb</key>\n    <string>dotbelowcomb.glif</string>\n    <key>dotcenter-ar</key>\n    <string>dotcenter-ar.glif</string>\n    <key>dots1-braille</key>\n    <string>dots1-braille.glif</string>\n    <key>dots12-braille</key>\n    <string>dots12-braille.glif</string>\n    <key>dots123-braille</key>\n    <string>dots123-braille.glif</string>\n    <key>dots1234-braille</key>\n    <string>dots1234-braille.glif</string>\n    <key>dots12345-braille</key>\n    <string>dots12345-braille.glif</string>\n    <key>dots123456-braille</key>\n    <string>dots123456-braille.glif</string>\n    <key>dots1234567-braille</key>\n    <string>dots1234567-braille.glif</string>\n    <key>dots12345678-braille</key>\n    <string>dots12345678-braille.glif</string>\n    <key>dots1234568-braille</key>\n    <string>dots1234568-braille.glif</string>\n    <key>dots123457-braille</key>\n    <string>dots123457-braille.glif</string>\n    <key>dots1234578-braille</key>\n    <string>dots1234578-braille.glif</string>\n    <key>dots123458-braille</key>\n    <string>dots123458-braille.glif</string>\n    <key>dots12346-braille</key>\n    <string>dots12346-braille.glif</string>\n    <key>dots123467-braille</key>\n    <string>dots123467-braille.glif</string>\n    <key>dots1234678-braille</key>\n    <string>dots1234678-braille.glif</string>\n    <key>dots123468-braille</key>\n    <string>dots123468-braille.glif</string>\n    <key>dots12347-braille</key>\n    <string>dots12347-braille.glif</string>\n    <key>dots123478-braille</key>\n    <string>dots123478-braille.glif</string>\n    <key>dots12348-braille</key>\n    <string>dots12348-braille.glif</string>\n    <key>dots1235-braille</key>\n    <string>dots1235-braille.glif</string>\n    <key>dots12356-braille</key>\n    <string>dots12356-braille.glif</string>\n    <key>dots123567-braille</key>\n    <string>dots123567-braille.glif</string>\n    <key>dots1235678-braille</key>\n    <string>dots1235678-braille.glif</string>\n    <key>dots123568-braille</key>\n    <string>dots123568-braille.glif</string>\n    <key>dots12357-braille</key>\n    <string>dots12357-braille.glif</string>\n    <key>dots123578-braille</key>\n    <string>dots123578-braille.glif</string>\n    <key>dots12358-braille</key>\n    <string>dots12358-braille.glif</string>\n    <key>dots1236-braille</key>\n    <string>dots1236-braille.glif</string>\n    <key>dots12367-braille</key>\n    <string>dots12367-braille.glif</string>\n    <key>dots123678-braille</key>\n    <string>dots123678-braille.glif</string>\n    <key>dots12368-braille</key>\n    <string>dots12368-braille.glif</string>\n    <key>dots1237-braille</key>\n    <string>dots1237-braille.glif</string>\n    <key>dots12378-braille</key>\n    <string>dots12378-braille.glif</string>\n    <key>dots1238-braille</key>\n    <string>dots1238-braille.glif</string>\n    <key>dots124-braille</key>\n    <string>dots124-braille.glif</string>\n    <key>dots1245-braille</key>\n    <string>dots1245-braille.glif</string>\n    <key>dots12456-braille</key>\n    <string>dots12456-braille.glif</string>\n    <key>dots124567-braille</key>\n    <string>dots124567-braille.glif</string>\n    <key>dots1245678-braille</key>\n    <string>dots1245678-braille.glif</string>\n    <key>dots124568-braille</key>\n    <string>dots124568-braille.glif</string>\n    <key>dots12457-braille</key>\n    <string>dots12457-braille.glif</string>\n    <key>dots124578-braille</key>\n    <string>dots124578-braille.glif</string>\n    <key>dots12458-braille</key>\n    <string>dots12458-braille.glif</string>\n    <key>dots1246-braille</key>\n    <string>dots1246-braille.glif</string>\n    <key>dots12467-braille</key>\n    <string>dots12467-braille.glif</string>\n    <key>dots124678-braille</key>\n    <string>dots124678-braille.glif</string>\n    <key>dots12468-braille</key>\n    <string>dots12468-braille.glif</string>\n    <key>dots1247-braille</key>\n    <string>dots1247-braille.glif</string>\n    <key>dots12478-braille</key>\n    <string>dots12478-braille.glif</string>\n    <key>dots1248-braille</key>\n    <string>dots1248-braille.glif</string>\n    <key>dots125-braille</key>\n    <string>dots125-braille.glif</string>\n    <key>dots1256-braille</key>\n    <string>dots1256-braille.glif</string>\n    <key>dots12567-braille</key>\n    <string>dots12567-braille.glif</string>\n    <key>dots125678-braille</key>\n    <string>dots125678-braille.glif</string>\n    <key>dots12568-braille</key>\n    <string>dots12568-braille.glif</string>\n    <key>dots1257-braille</key>\n    <string>dots1257-braille.glif</string>\n    <key>dots12578-braille</key>\n    <string>dots12578-braille.glif</string>\n    <key>dots1258-braille</key>\n    <string>dots1258-braille.glif</string>\n    <key>dots126-braille</key>\n    <string>dots126-braille.glif</string>\n    <key>dots1267-braille</key>\n    <string>dots1267-braille.glif</string>\n    <key>dots12678-braille</key>\n    <string>dots12678-braille.glif</string>\n    <key>dots1268-braille</key>\n    <string>dots1268-braille.glif</string>\n    <key>dots127-braille</key>\n    <string>dots127-braille.glif</string>\n    <key>dots1278-braille</key>\n    <string>dots1278-braille.glif</string>\n    <key>dots128-braille</key>\n    <string>dots128-braille.glif</string>\n    <key>dots13-braille</key>\n    <string>dots13-braille.glif</string>\n    <key>dots134-braille</key>\n    <string>dots134-braille.glif</string>\n    <key>dots1345-braille</key>\n    <string>dots1345-braille.glif</string>\n    <key>dots13456-braille</key>\n    <string>dots13456-braille.glif</string>\n    <key>dots134567-braille</key>\n    <string>dots134567-braille.glif</string>\n    <key>dots1345678-braille</key>\n    <string>dots1345678-braille.glif</string>\n    <key>dots134568-braille</key>\n    <string>dots134568-braille.glif</string>\n    <key>dots13457-braille</key>\n    <string>dots13457-braille.glif</string>\n    <key>dots134578-braille</key>\n    <string>dots134578-braille.glif</string>\n    <key>dots13458-braille</key>\n    <string>dots13458-braille.glif</string>\n    <key>dots1346-braille</key>\n    <string>dots1346-braille.glif</string>\n    <key>dots13467-braille</key>\n    <string>dots13467-braille.glif</string>\n    <key>dots134678-braille</key>\n    <string>dots134678-braille.glif</string>\n    <key>dots13468-braille</key>\n    <string>dots13468-braille.glif</string>\n    <key>dots1347-braille</key>\n    <string>dots1347-braille.glif</string>\n    <key>dots13478-braille</key>\n    <string>dots13478-braille.glif</string>\n    <key>dots1348-braille</key>\n    <string>dots1348-braille.glif</string>\n    <key>dots135-braille</key>\n    <string>dots135-braille.glif</string>\n    <key>dots1356-braille</key>\n    <string>dots1356-braille.glif</string>\n    <key>dots13567-braille</key>\n    <string>dots13567-braille.glif</string>\n    <key>dots135678-braille</key>\n    <string>dots135678-braille.glif</string>\n    <key>dots13568-braille</key>\n    <string>dots13568-braille.glif</string>\n    <key>dots1357-braille</key>\n    <string>dots1357-braille.glif</string>\n    <key>dots13578-braille</key>\n    <string>dots13578-braille.glif</string>\n    <key>dots1358-braille</key>\n    <string>dots1358-braille.glif</string>\n    <key>dots136-braille</key>\n    <string>dots136-braille.glif</string>\n    <key>dots1367-braille</key>\n    <string>dots1367-braille.glif</string>\n    <key>dots13678-braille</key>\n    <string>dots13678-braille.glif</string>\n    <key>dots1368-braille</key>\n    <string>dots1368-braille.glif</string>\n    <key>dots137-braille</key>\n    <string>dots137-braille.glif</string>\n    <key>dots1378-braille</key>\n    <string>dots1378-braille.glif</string>\n    <key>dots138-braille</key>\n    <string>dots138-braille.glif</string>\n    <key>dots14-braille</key>\n    <string>dots14-braille.glif</string>\n    <key>dots145-braille</key>\n    <string>dots145-braille.glif</string>\n    <key>dots1456-braille</key>\n    <string>dots1456-braille.glif</string>\n    <key>dots14567-braille</key>\n    <string>dots14567-braille.glif</string>\n    <key>dots145678-braille</key>\n    <string>dots145678-braille.glif</string>\n    <key>dots14568-braille</key>\n    <string>dots14568-braille.glif</string>\n    <key>dots1457-braille</key>\n    <string>dots1457-braille.glif</string>\n    <key>dots14578-braille</key>\n    <string>dots14578-braille.glif</string>\n    <key>dots1458-braille</key>\n    <string>dots1458-braille.glif</string>\n    <key>dots146-braille</key>\n    <string>dots146-braille.glif</string>\n    <key>dots1467-braille</key>\n    <string>dots1467-braille.glif</string>\n    <key>dots14678-braille</key>\n    <string>dots14678-braille.glif</string>\n    <key>dots1468-braille</key>\n    <string>dots1468-braille.glif</string>\n    <key>dots147-braille</key>\n    <string>dots147-braille.glif</string>\n    <key>dots1478-braille</key>\n    <string>dots1478-braille.glif</string>\n    <key>dots148-braille</key>\n    <string>dots148-braille.glif</string>\n    <key>dots15-braille</key>\n    <string>dots15-braille.glif</string>\n    <key>dots156-braille</key>\n    <string>dots156-braille.glif</string>\n    <key>dots1567-braille</key>\n    <string>dots1567-braille.glif</string>\n    <key>dots15678-braille</key>\n    <string>dots15678-braille.glif</string>\n    <key>dots1568-braille</key>\n    <string>dots1568-braille.glif</string>\n    <key>dots157-braille</key>\n    <string>dots157-braille.glif</string>\n    <key>dots1578-braille</key>\n    <string>dots1578-braille.glif</string>\n    <key>dots158-braille</key>\n    <string>dots158-braille.glif</string>\n    <key>dots16-braille</key>\n    <string>dots16-braille.glif</string>\n    <key>dots167-braille</key>\n    <string>dots167-braille.glif</string>\n    <key>dots1678-braille</key>\n    <string>dots1678-braille.glif</string>\n    <key>dots168-braille</key>\n    <string>dots168-braille.glif</string>\n    <key>dots17-braille</key>\n    <string>dots17-braille.glif</string>\n    <key>dots178-braille</key>\n    <string>dots178-braille.glif</string>\n    <key>dots18-braille</key>\n    <string>dots18-braille.glif</string>\n    <key>dots2-braille</key>\n    <string>dots2-braille.glif</string>\n    <key>dots23-braille</key>\n    <string>dots23-braille.glif</string>\n    <key>dots234-braille</key>\n    <string>dots234-braille.glif</string>\n    <key>dots2345-braille</key>\n    <string>dots2345-braille.glif</string>\n    <key>dots23456-braille</key>\n    <string>dots23456-braille.glif</string>\n    <key>dots234567-braille</key>\n    <string>dots234567-braille.glif</string>\n    <key>dots2345678-braille</key>\n    <string>dots2345678-braille.glif</string>\n    <key>dots234568-braille</key>\n    <string>dots234568-braille.glif</string>\n    <key>dots23457-braille</key>\n    <string>dots23457-braille.glif</string>\n    <key>dots234578-braille</key>\n    <string>dots234578-braille.glif</string>\n    <key>dots23458-braille</key>\n    <string>dots23458-braille.glif</string>\n    <key>dots2346-braille</key>\n    <string>dots2346-braille.glif</string>\n    <key>dots23467-braille</key>\n    <string>dots23467-braille.glif</string>\n    <key>dots234678-braille</key>\n    <string>dots234678-braille.glif</string>\n    <key>dots23468-braille</key>\n    <string>dots23468-braille.glif</string>\n    <key>dots2347-braille</key>\n    <string>dots2347-braille.glif</string>\n    <key>dots23478-braille</key>\n    <string>dots23478-braille.glif</string>\n    <key>dots2348-braille</key>\n    <string>dots2348-braille.glif</string>\n    <key>dots235-braille</key>\n    <string>dots235-braille.glif</string>\n    <key>dots2356-braille</key>\n    <string>dots2356-braille.glif</string>\n    <key>dots23567-braille</key>\n    <string>dots23567-braille.glif</string>\n    <key>dots235678-braille</key>\n    <string>dots235678-braille.glif</string>\n    <key>dots23568-braille</key>\n    <string>dots23568-braille.glif</string>\n    <key>dots2357-braille</key>\n    <string>dots2357-braille.glif</string>\n    <key>dots23578-braille</key>\n    <string>dots23578-braille.glif</string>\n    <key>dots2358-braille</key>\n    <string>dots2358-braille.glif</string>\n    <key>dots236-braille</key>\n    <string>dots236-braille.glif</string>\n    <key>dots2367-braille</key>\n    <string>dots2367-braille.glif</string>\n    <key>dots23678-braille</key>\n    <string>dots23678-braille.glif</string>\n    <key>dots2368-braille</key>\n    <string>dots2368-braille.glif</string>\n    <key>dots237-braille</key>\n    <string>dots237-braille.glif</string>\n    <key>dots2378-braille</key>\n    <string>dots2378-braille.glif</string>\n    <key>dots238-braille</key>\n    <string>dots238-braille.glif</string>\n    <key>dots24-braille</key>\n    <string>dots24-braille.glif</string>\n    <key>dots245-braille</key>\n    <string>dots245-braille.glif</string>\n    <key>dots2456-braille</key>\n    <string>dots2456-braille.glif</string>\n    <key>dots24567-braille</key>\n    <string>dots24567-braille.glif</string>\n    <key>dots245678-braille</key>\n    <string>dots245678-braille.glif</string>\n    <key>dots24568-braille</key>\n    <string>dots24568-braille.glif</string>\n    <key>dots2457-braille</key>\n    <string>dots2457-braille.glif</string>\n    <key>dots24578-braille</key>\n    <string>dots24578-braille.glif</string>\n    <key>dots2458-braille</key>\n    <string>dots2458-braille.glif</string>\n    <key>dots246-braille</key>\n    <string>dots246-braille.glif</string>\n    <key>dots2467-braille</key>\n    <string>dots2467-braille.glif</string>\n    <key>dots24678-braille</key>\n    <string>dots24678-braille.glif</string>\n    <key>dots2468-braille</key>\n    <string>dots2468-braille.glif</string>\n    <key>dots247-braille</key>\n    <string>dots247-braille.glif</string>\n    <key>dots2478-braille</key>\n    <string>dots2478-braille.glif</string>\n    <key>dots248-braille</key>\n    <string>dots248-braille.glif</string>\n    <key>dots25-braille</key>\n    <string>dots25-braille.glif</string>\n    <key>dots256-braille</key>\n    <string>dots256-braille.glif</string>\n    <key>dots2567-braille</key>\n    <string>dots2567-braille.glif</string>\n    <key>dots25678-braille</key>\n    <string>dots25678-braille.glif</string>\n    <key>dots2568-braille</key>\n    <string>dots2568-braille.glif</string>\n    <key>dots257-braille</key>\n    <string>dots257-braille.glif</string>\n    <key>dots2578-braille</key>\n    <string>dots2578-braille.glif</string>\n    <key>dots258-braille</key>\n    <string>dots258-braille.glif</string>\n    <key>dots26-braille</key>\n    <string>dots26-braille.glif</string>\n    <key>dots267-braille</key>\n    <string>dots267-braille.glif</string>\n    <key>dots2678-braille</key>\n    <string>dots2678-braille.glif</string>\n    <key>dots268-braille</key>\n    <string>dots268-braille.glif</string>\n    <key>dots27-braille</key>\n    <string>dots27-braille.glif</string>\n    <key>dots278-braille</key>\n    <string>dots278-braille.glif</string>\n    <key>dots28-braille</key>\n    <string>dots28-braille.glif</string>\n    <key>dots3-braille</key>\n    <string>dots3-braille.glif</string>\n    <key>dots34-braille</key>\n    <string>dots34-braille.glif</string>\n    <key>dots345-braille</key>\n    <string>dots345-braille.glif</string>\n    <key>dots3456-braille</key>\n    <string>dots3456-braille.glif</string>\n    <key>dots34567-braille</key>\n    <string>dots34567-braille.glif</string>\n    <key>dots345678-braille</key>\n    <string>dots345678-braille.glif</string>\n    <key>dots34568-braille</key>\n    <string>dots34568-braille.glif</string>\n    <key>dots3457-braille</key>\n    <string>dots3457-braille.glif</string>\n    <key>dots34578-braille</key>\n    <string>dots34578-braille.glif</string>\n    <key>dots3458-braille</key>\n    <string>dots3458-braille.glif</string>\n    <key>dots346-braille</key>\n    <string>dots346-braille.glif</string>\n    <key>dots3467-braille</key>\n    <string>dots3467-braille.glif</string>\n    <key>dots34678-braille</key>\n    <string>dots34678-braille.glif</string>\n    <key>dots3468-braille</key>\n    <string>dots3468-braille.glif</string>\n    <key>dots347-braille</key>\n    <string>dots347-braille.glif</string>\n    <key>dots3478-braille</key>\n    <string>dots3478-braille.glif</string>\n    <key>dots348-braille</key>\n    <string>dots348-braille.glif</string>\n    <key>dots35-braille</key>\n    <string>dots35-braille.glif</string>\n    <key>dots356-braille</key>\n    <string>dots356-braille.glif</string>\n    <key>dots3567-braille</key>\n    <string>dots3567-braille.glif</string>\n    <key>dots35678-braille</key>\n    <string>dots35678-braille.glif</string>\n    <key>dots3568-braille</key>\n    <string>dots3568-braille.glif</string>\n    <key>dots357-braille</key>\n    <string>dots357-braille.glif</string>\n    <key>dots3578-braille</key>\n    <string>dots3578-braille.glif</string>\n    <key>dots358-braille</key>\n    <string>dots358-braille.glif</string>\n    <key>dots36-braille</key>\n    <string>dots36-braille.glif</string>\n    <key>dots367-braille</key>\n    <string>dots367-braille.glif</string>\n    <key>dots3678-braille</key>\n    <string>dots3678-braille.glif</string>\n    <key>dots368-braille</key>\n    <string>dots368-braille.glif</string>\n    <key>dots37-braille</key>\n    <string>dots37-braille.glif</string>\n    <key>dots378-braille</key>\n    <string>dots378-braille.glif</string>\n    <key>dots38-braille</key>\n    <string>dots38-braille.glif</string>\n    <key>dots4-braille</key>\n    <string>dots4-braille.glif</string>\n    <key>dots45-braille</key>\n    <string>dots45-braille.glif</string>\n    <key>dots456-braille</key>\n    <string>dots456-braille.glif</string>\n    <key>dots4567-braille</key>\n    <string>dots4567-braille.glif</string>\n    <key>dots45678-braille</key>\n    <string>dots45678-braille.glif</string>\n    <key>dots4568-braille</key>\n    <string>dots4568-braille.glif</string>\n    <key>dots457-braille</key>\n    <string>dots457-braille.glif</string>\n    <key>dots4578-braille</key>\n    <string>dots4578-braille.glif</string>\n    <key>dots458-braille</key>\n    <string>dots458-braille.glif</string>\n    <key>dots46-braille</key>\n    <string>dots46-braille.glif</string>\n    <key>dots467-braille</key>\n    <string>dots467-braille.glif</string>\n    <key>dots4678-braille</key>\n    <string>dots4678-braille.glif</string>\n    <key>dots468-braille</key>\n    <string>dots468-braille.glif</string>\n    <key>dots47-braille</key>\n    <string>dots47-braille.glif</string>\n    <key>dots478-braille</key>\n    <string>dots478-braille.glif</string>\n    <key>dots48-braille</key>\n    <string>dots48-braille.glif</string>\n    <key>dots5-braille</key>\n    <string>dots5-braille.glif</string>\n    <key>dots56-braille</key>\n    <string>dots56-braille.glif</string>\n    <key>dots567-braille</key>\n    <string>dots567-braille.glif</string>\n    <key>dots5678-braille</key>\n    <string>dots5678-braille.glif</string>\n    <key>dots568-braille</key>\n    <string>dots568-braille.glif</string>\n    <key>dots57-braille</key>\n    <string>dots57-braille.glif</string>\n    <key>dots578-braille</key>\n    <string>dots578-braille.glif</string>\n    <key>dots58-braille</key>\n    <string>dots58-braille.glif</string>\n    <key>dots6-braille</key>\n    <string>dots6-braille.glif</string>\n    <key>dots67-braille</key>\n    <string>dots67-braille.glif</string>\n    <key>dots678-braille</key>\n    <string>dots678-braille.glif</string>\n    <key>dots68-braille</key>\n    <string>dots68-braille.glif</string>\n    <key>dots7-braille</key>\n    <string>dots7-braille.glif</string>\n    <key>dots78-braille</key>\n    <string>dots78-braille.glif</string>\n    <key>dots8-braille</key>\n    <string>dots8-braille.glif</string>\n    <key>dottedCircle</key>\n    <string>dottedC_ircle.glif</string>\n    <key>dottedSquare</key>\n    <string>dottedS_quare.glif</string>\n    <key>doubleverticalbarbelowSymbol-ar</key>\n    <string>doubleverticalbarbelowS_ymbol-ar.glif</string>\n    <key>doubleverticalbarbelowSymbol-ar.comb</key>\n    <string>doubleverticalbarbelowS_ymbol-ar.comb.glif</string>\n    <key>downArrow</key>\n    <string>downA_rrow.glif</string>\n    <key>downBlackSmallTriangle</key>\n    <string>downB_lackS_mallT_riangle.glif</string>\n    <key>downBlackTriangle</key>\n    <string>downB_lackT_riangle.glif</string>\n    <key>downTipLeftArrow</key>\n    <string>downT_ipL_eftA_rrow.glif</string>\n    <key>downWhiteSmallTriangle</key>\n    <string>downW_hiteS_mallT_riangle.glif</string>\n    <key>downWhiteTriangle</key>\n    <string>downW_hiteT_riangle.glif</string>\n    <key>dtail</key>\n    <string>dtail.glif</string>\n    <key>dul-ar</key>\n    <string>dul-ar.glif</string>\n    <key>dul-ar.fina</key>\n    <string>dul-ar.fina.glif</string>\n    <key>dyeh-ar</key>\n    <string>dyeh-ar.glif</string>\n    <key>dyeh-ar.fina</key>\n    <string>dyeh-ar.fina.glif</string>\n    <key>dyeh-ar.init</key>\n    <string>dyeh-ar.init.glif</string>\n    <key>dyeh-ar.medi</key>\n    <string>dyeh-ar.medi.glif</string>\n    <key>dze-cy</key>\n    <string>dze-cy.glif</string>\n    <key>dzhe-cy</key>\n    <string>dzhe-cy.glif</string>\n    <key>e</key>\n    <string>e.glif</string>\n    <key>e-ar</key>\n    <string>e-ar.glif</string>\n    <key>e-ar.fina</key>\n    <string>e-ar.fina.glif</string>\n    <key>e-ar.fina.alt</key>\n    <string>e-ar.fina.alt.glif</string>\n    <key>e-ar.init</key>\n    <string>e-ar.init.glif</string>\n    <key>e-ar.init.alt</key>\n    <string>e-ar.init.alt.glif</string>\n    <key>e-ar.medi</key>\n    <string>e-ar.medi.glif</string>\n    <key>e-cy</key>\n    <string>e-cy.glif</string>\n    <key>eacute</key>\n    <string>eacute.glif</string>\n    <key>ebreve</key>\n    <string>ebreve.glif</string>\n    <key>ecaron</key>\n    <string>ecaron.glif</string>\n    <key>ecircumflex</key>\n    <string>ecircumflex.glif</string>\n    <key>ecircumflexacute</key>\n    <string>ecircumflexacute.glif</string>\n    <key>ecircumflexdotbelow</key>\n    <string>ecircumflexdotbelow.glif</string>\n    <key>ecircumflexgrave</key>\n    <string>ecircumflexgrave.glif</string>\n    <key>ecircumflexhookabove</key>\n    <string>ecircumflexhookabove.glif</string>\n    <key>ecircumflextilde</key>\n    <string>ecircumflextilde.glif</string>\n    <key>edieresis</key>\n    <string>edieresis.glif</string>\n    <key>edotaccent</key>\n    <string>edotaccent.glif</string>\n    <key>edotbelow</key>\n    <string>edotbelow.glif</string>\n    <key>ef-cy</key>\n    <string>ef-cy.glif</string>\n    <key>ef-cy.loclBGR</key>\n    <string>ef-cy.loclB_G_R_.glif</string>\n    <key>egrave</key>\n    <string>egrave.glif</string>\n    <key>ehookabove</key>\n    <string>ehookabove.glif</string>\n    <key>eight</key>\n    <string>eight.glif</string>\n    <key>eight-ar</key>\n    <string>eight-ar.glif</string>\n    <key>eight-arinferior</key>\n    <string>eight-arinferior.glif</string>\n    <key>eight-arsuperior</key>\n    <string>eight-arsuperior.glif</string>\n    <key>eight-persian</key>\n    <string>eight-persian.glif</string>\n    <key>eight-persianinferior</key>\n    <string>eight-persianinferior.glif</string>\n    <key>eight-persiansuperior</key>\n    <string>eight-persiansuperior.glif</string>\n    <key>eight.dnom</key>\n    <string>eight.dnom.glif</string>\n    <key>eight.numr</key>\n    <string>eight.numr.glif</string>\n    <key>eightinferior</key>\n    <string>eightinferior.glif</string>\n    <key>eightsuperior</key>\n    <string>eightsuperior.glif</string>\n    <key>el-cy</key>\n    <string>el-cy.glif</string>\n    <key>el-cy.loclBGR</key>\n    <string>el-cy.loclB_G_R_.glif</string>\n    <key>ellipsis</key>\n    <string>ellipsis.glif</string>\n    <key>em-cy</key>\n    <string>em-cy.glif</string>\n    <key>emacron</key>\n    <string>emacron.glif</string>\n    <key>emdash</key>\n    <string>emdash.glif</string>\n    <key>en-cy</key>\n    <string>en-cy.glif</string>\n    <key>endOfMediumControl</key>\n    <string>endO_fM_ediumC_ontrol.glif</string>\n    <key>endOfMediumControl.ss20</key>\n    <string>endO_fM_ediumC_ontrol.ss20.glif</string>\n    <key>endOfTextControl</key>\n    <string>endO_fT_extC_ontrol.glif</string>\n    <key>endOfTextControl.ss20</key>\n    <string>endO_fT_extC_ontrol.ss20.glif</string>\n    <key>endOfTransmissionBlockControl</key>\n    <string>endO_fT_ransmissionB_lockC_ontrol.glif</string>\n    <key>endOfTransmissionBlockControl.ss20</key>\n    <string>endO_fT_ransmissionB_lockC_ontrol.ss20.glif</string>\n    <key>endOfTransmissionControl</key>\n    <string>endO_fT_ransmissionC_ontrol.glif</string>\n    <key>endOfTransmissionControl.ss20</key>\n    <string>endO_fT_ransmissionC_ontrol.ss20.glif</string>\n    <key>endash</key>\n    <string>endash.glif</string>\n    <key>endescender-cy</key>\n    <string>endescender-cy.glif</string>\n    <key>endofayah-ar</key>\n    <string>endofayah-ar.glif</string>\n    <key>eng</key>\n    <string>eng.glif</string>\n    <key>enquiryControl</key>\n    <string>enquiryC_ontrol.glif</string>\n    <key>enquiryControl.ss20</key>\n    <string>enquiryC_ontrol.ss20.glif</string>\n    <key>eogonek</key>\n    <string>eogonek.glif</string>\n    <key>eopen</key>\n    <string>eopen.glif</string>\n    <key>epsilon</key>\n    <string>epsilon.glif</string>\n    <key>epsilontonos</key>\n    <string>epsilontonos.glif</string>\n    <key>equal</key>\n    <string>equal.glif</string>\n    <key>equal_end.seq</key>\n    <string>equal_end.seq.glif</string>\n    <key>equal_equal.liga</key>\n    <string>equal_equal.liga.glif</string>\n    <key>equal_equal_equal.liga</key>\n    <string>equal_equal_equal.liga.glif</string>\n    <key>equal_greater_greater.liga</key>\n    <string>equal_greater_greater.liga.glif</string>\n    <key>equal_less_less.liga</key>\n    <string>equal_less_less.liga.glif</string>\n    <key>equal_middle.seq</key>\n    <string>equal_middle.seq.glif</string>\n    <key>equal_start.seq</key>\n    <string>equal_start.seq.glif</string>\n    <key>equivalence</key>\n    <string>equivalence.glif</string>\n    <key>er-cy</key>\n    <string>er-cy.glif</string>\n    <key>ereversed-cy</key>\n    <string>ereversed-cy.glif</string>\n    <key>es-cy</key>\n    <string>es-cy.glif</string>\n    <key>escapeControl</key>\n    <string>escapeC_ontrol.glif</string>\n    <key>escapeControl.ss20</key>\n    <string>escapeC_ontrol.ss20.glif</string>\n    <key>esh</key>\n    <string>esh.glif</string>\n    <key>estimated</key>\n    <string>estimated.glif</string>\n    <key>eta</key>\n    <string>eta.glif</string>\n    <key>etatonos</key>\n    <string>etatonos.glif</string>\n    <key>eth</key>\n    <string>eth.glif</string>\n    <key>etilde</key>\n    <string>etilde.glif</string>\n    <key>eturned</key>\n    <string>eturned.glif</string>\n    <key>euro</key>\n    <string>euro.glif</string>\n    <key>eurocurrency</key>\n    <string>eurocurrency.glif</string>\n    <key>exclam</key>\n    <string>exclam.glif</string>\n    <key>exclam_colon.liga</key>\n    <string>exclam_colon.liga.glif</string>\n    <key>exclam_equal.liga</key>\n    <string>exclam_equal.liga.glif</string>\n    <key>exclam_equal_equal.liga</key>\n    <string>exclam_equal_equal.liga.glif</string>\n    <key>exclam_equal_middle.seq</key>\n    <string>exclam_equal_middle.seq.glif</string>\n    <key>exclam_exclam.liga</key>\n    <string>exclam_exclam.liga.glif</string>\n    <key>exclam_exclam_period.liga</key>\n    <string>exclam_exclam_period.liga.glif</string>\n    <key>exclam_period.liga</key>\n    <string>exclam_period.liga.glif</string>\n    <key>exclamdouble</key>\n    <string>exclamdouble.glif</string>\n    <key>exclamdown</key>\n    <string>exclamdown.glif</string>\n    <key>ezh</key>\n    <string>ezh.glif</string>\n    <key>f</key>\n    <string>f.glif</string>\n    <key>fatha-ar</key>\n    <string>fatha-ar.glif</string>\n    <key>fathatan-ar</key>\n    <string>fathatan-ar.glif</string>\n    <key>feh-ar</key>\n    <string>feh-ar.glif</string>\n    <key>feh-ar.alt</key>\n    <string>feh-ar.alt.glif</string>\n    <key>feh-ar.fina</key>\n    <string>feh-ar.fina.glif</string>\n    <key>feh-ar.fina.alt</key>\n    <string>feh-ar.fina.alt.glif</string>\n    <key>feh-ar.init</key>\n    <string>feh-ar.init.glif</string>\n    <key>feh-ar.init.alt</key>\n    <string>feh-ar.init.alt.glif</string>\n    <key>feh-ar.medi</key>\n    <string>feh-ar.medi.glif</string>\n    <key>fehDotMovedbelow-ar</key>\n    <string>fehD_otM_ovedbelow-ar.glif</string>\n    <key>fehDotMovedbelow-ar.alt</key>\n    <string>fehD_otM_ovedbelow-ar.alt.glif</string>\n    <key>fehDotMovedbelow-ar.fina</key>\n    <string>fehD_otM_ovedbelow-ar.fina.glif</string>\n    <key>fehDotMovedbelow-ar.fina.alt</key>\n    <string>fehD_otM_ovedbelow-ar.fina.alt.glif</string>\n    <key>fehDotMovedbelow-ar.init</key>\n    <string>fehD_otM_ovedbelow-ar.init.glif</string>\n    <key>fehDotMovedbelow-ar.medi</key>\n    <string>fehD_otM_ovedbelow-ar.medi.glif</string>\n    <key>fehDotbelow-ar</key>\n    <string>fehD_otbelow-ar.glif</string>\n    <key>fehDotbelow-ar.alt</key>\n    <string>fehD_otbelow-ar.alt.glif</string>\n    <key>fehDotbelow-ar.fina</key>\n    <string>fehD_otbelow-ar.fina.glif</string>\n    <key>fehDotbelow-ar.fina.alt</key>\n    <string>fehD_otbelow-ar.fina.alt.glif</string>\n    <key>fehDotbelow-ar.init</key>\n    <string>fehD_otbelow-ar.init.glif</string>\n    <key>fehDotbelow-ar.medi</key>\n    <string>fehD_otbelow-ar.medi.glif</string>\n    <key>fehDotbelowThreedotsabove-ar</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.alt</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.alt.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.fina</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.fina.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.fina.alt</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.fina.alt.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.init</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.init.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.medi</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.medi.glif</string>\n    <key>fehDotless-ar</key>\n    <string>fehD_otless-ar.glif</string>\n    <key>fehDotless-ar.alt</key>\n    <string>fehD_otless-ar.alt.glif</string>\n    <key>fehDotless-ar.fina</key>\n    <string>fehD_otless-ar.fina.glif</string>\n    <key>fehDotless-ar.fina.alt</key>\n    <string>fehD_otless-ar.fina.alt.glif</string>\n    <key>fehDotless-ar.init</key>\n    <string>fehD_otless-ar.init.glif</string>\n    <key>fehDotless-ar.init.alt</key>\n    <string>fehD_otless-ar.init.alt.glif</string>\n    <key>fehDotless-ar.medi</key>\n    <string>fehD_otless-ar.medi.glif</string>\n    <key>fehThreedotsbelow-ar</key>\n    <string>fehT_hreedotsbelow-ar.glif</string>\n    <key>fehThreedotsbelow-ar.alt</key>\n    <string>fehT_hreedotsbelow-ar.alt.glif</string>\n    <key>fehThreedotsbelow-ar.fina</key>\n    <string>fehT_hreedotsbelow-ar.fina.glif</string>\n    <key>fehThreedotsbelow-ar.fina.alt</key>\n    <string>fehT_hreedotsbelow-ar.fina.alt.glif</string>\n    <key>fehThreedotsbelow-ar.init</key>\n    <string>fehT_hreedotsbelow-ar.init.glif</string>\n    <key>fehThreedotsbelow-ar.medi</key>\n    <string>fehT_hreedotsbelow-ar.medi.glif</string>\n    <key>fehThreedotsupbelow-ar</key>\n    <string>fehT_hreedotsupbelow-ar.glif</string>\n    <key>fehThreedotsupbelow-ar.alt</key>\n    <string>fehT_hreedotsupbelow-ar.alt.glif</string>\n    <key>fehThreedotsupbelow-ar.fina</key>\n    <string>fehT_hreedotsupbelow-ar.fina.glif</string>\n    <key>fehThreedotsupbelow-ar.fina.alt</key>\n    <string>fehT_hreedotsupbelow-ar.fina.alt.glif</string>\n    <key>fehThreedotsupbelow-ar.init</key>\n    <string>fehT_hreedotsupbelow-ar.init.glif</string>\n    <key>fehThreedotsupbelow-ar.medi</key>\n    <string>fehT_hreedotsupbelow-ar.medi.glif</string>\n    <key>fehTwodotsbelow-ar</key>\n    <string>fehT_wodotsbelow-ar.glif</string>\n    <key>fehTwodotsbelow-ar.alt</key>\n    <string>fehT_wodotsbelow-ar.alt.glif</string>\n    <key>fehTwodotsbelow-ar.fina</key>\n    <string>fehT_wodotsbelow-ar.fina.glif</string>\n    <key>fehTwodotsbelow-ar.fina.alt</key>\n    <string>fehT_wodotsbelow-ar.fina.alt.glif</string>\n    <key>fehTwodotsbelow-ar.init</key>\n    <string>fehT_wodotsbelow-ar.init.glif</string>\n    <key>fehTwodotsbelow-ar.medi</key>\n    <string>fehT_wodotsbelow-ar.medi.glif</string>\n    <key>fi</key>\n    <string>fi.glif</string>\n    <key>fileSeparatorControl</key>\n    <string>fileS_eparatorC_ontrol.glif</string>\n    <key>filledRect</key>\n    <string>filledR_ect.glif</string>\n    <key>finalkaf-hb</key>\n    <string>finalkaf-hb.glif</string>\n    <key>finalkafdagesh-hb</key>\n    <string>finalkafdagesh-hb.glif</string>\n    <key>finalmem-hb</key>\n    <string>finalmem-hb.glif</string>\n    <key>finalnun-hb</key>\n    <string>finalnun-hb.glif</string>\n    <key>finalpe-hb</key>\n    <string>finalpe-hb.glif</string>\n    <key>finalpedagesh-hb</key>\n    <string>finalpedagesh-hb.glif</string>\n    <key>finaltsadi-hb</key>\n    <string>finaltsadi-hb.glif</string>\n    <key>firsttonechinese</key>\n    <string>firsttonechinese.glif</string>\n    <key>fisheye</key>\n    <string>fisheye.glif</string>\n    <key>five</key>\n    <string>five.glif</string>\n    <key>five-ar</key>\n    <string>five-ar.glif</string>\n    <key>five-arinferior</key>\n    <string>five-arinferior.glif</string>\n    <key>five-arsuperior</key>\n    <string>five-arsuperior.glif</string>\n    <key>five-persian</key>\n    <string>five-persian.glif</string>\n    <key>five-persianinferior</key>\n    <string>five-persianinferior.glif</string>\n    <key>five-persiansuperior</key>\n    <string>five-persiansuperior.glif</string>\n    <key>five.dnom</key>\n    <string>five.dnom.glif</string>\n    <key>five.numr</key>\n    <string>five.numr.glif</string>\n    <key>fiveeighths</key>\n    <string>fiveeighths.glif</string>\n    <key>fiveeighths.BRACKET.500</key>\n    <string>fiveeighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>fiveinferior</key>\n    <string>fiveinferior.glif</string>\n    <key>fivesuperior</key>\n    <string>fivesuperior.glif</string>\n    <key>fl</key>\n    <string>fl.glif</string>\n    <key>florin</key>\n    <string>florin.glif</string>\n    <key>footnotemarker-ar</key>\n    <string>footnotemarker-ar.glif</string>\n    <key>formFeedControl</key>\n    <string>formF_eedC_ontrol.glif</string>\n    <key>formFeedControl.ss20</key>\n    <string>formF_eedC_ontrol.ss20.glif</string>\n    <key>four</key>\n    <string>four.glif</string>\n    <key>four-ar</key>\n    <string>four-ar.glif</string>\n    <key>four-arinferior</key>\n    <string>four-arinferior.glif</string>\n    <key>four-arsuperior</key>\n    <string>four-arsuperior.glif</string>\n    <key>four-persian</key>\n    <string>four-persian.glif</string>\n    <key>four-persian.small01</key>\n    <string>four-persian.small01.glif</string>\n    <key>four-persian.urdu</key>\n    <string>four-persian.urdu.glif</string>\n    <key>four-persian.urduinferior</key>\n    <string>four-persian.urduinferior.glif</string>\n    <key>four-persian.urdusuperior</key>\n    <string>four-persian.urdusuperior.glif</string>\n    <key>four-persianbelow-ar</key>\n    <string>four-persianbelow-ar.glif</string>\n    <key>four-persiancenter-ar</key>\n    <string>four-persiancenter-ar.glif</string>\n    <key>four-persianinferior</key>\n    <string>four-persianinferior.glif</string>\n    <key>four-persiansuperior</key>\n    <string>four-persiansuperior.glif</string>\n    <key>four.dnom</key>\n    <string>four.dnom.glif</string>\n    <key>four.half</key>\n    <string>four.half.glif</string>\n    <key>four.numr</key>\n    <string>four.numr.glif</string>\n    <key>fourdotsabove-ar</key>\n    <string>fourdotsabove-ar.glif</string>\n    <key>fourdotsbelow-ar</key>\n    <string>fourdotsbelow-ar.glif</string>\n    <key>fourdotscenter-ar</key>\n    <string>fourdotscenter-ar.glif</string>\n    <key>fourinferior</key>\n    <string>fourinferior.glif</string>\n    <key>foursuperior</key>\n    <string>foursuperior.glif</string>\n    <key>fourthroot-ar</key>\n    <string>fourthroot-ar.glif</string>\n    <key>fraction</key>\n    <string>fraction.glif</string>\n    <key>franc</key>\n    <string>franc.glif</string>\n    <key>fullBlock</key>\n    <string>fullB_lock.glif</string>\n    <key>fullBlock.stypo</key>\n    <string>fullB_lock.stypo.glif</string>\n    <key>fullstop-ar</key>\n    <string>fullstop-ar.glif</string>\n    <key>g</key>\n    <string>g.glif</string>\n    <key>gaf-ar</key>\n    <string>gaf-ar.glif</string>\n    <key>gaf-ar.fina</key>\n    <string>gaf-ar.fina.glif</string>\n    <key>gaf-ar.init</key>\n    <string>gaf-ar.init.glif</string>\n    <key>gaf-ar.medi</key>\n    <string>gaf-ar.medi.glif</string>\n    <key>gafInvertedstroke-ar</key>\n    <string>gafI_nvertedstroke-ar.glif</string>\n    <key>gafInvertedstroke-ar.fina</key>\n    <string>gafI_nvertedstroke-ar.fina.glif</string>\n    <key>gafInvertedstroke-ar.init</key>\n    <string>gafI_nvertedstroke-ar.init.glif</string>\n    <key>gafInvertedstroke-ar.medi</key>\n    <string>gafI_nvertedstroke-ar.medi.glif</string>\n    <key>gafRing-ar</key>\n    <string>gafR_ing-ar.glif</string>\n    <key>gafRing-ar.fina</key>\n    <string>gafR_ing-ar.fina.glif</string>\n    <key>gafRing-ar.init</key>\n    <string>gafR_ing-ar.init.glif</string>\n    <key>gafRing-ar.medi</key>\n    <string>gafR_ing-ar.medi.glif</string>\n    <key>gafThreedots-ar</key>\n    <string>gafT_hreedots-ar.glif</string>\n    <key>gafThreedots-ar.fina</key>\n    <string>gafT_hreedots-ar.fina.glif</string>\n    <key>gafThreedots-ar.init</key>\n    <string>gafT_hreedots-ar.init.glif</string>\n    <key>gafThreedots-ar.medi</key>\n    <string>gafT_hreedots-ar.medi.glif</string>\n    <key>gafTwodotsbelow-ar</key>\n    <string>gafT_wodotsbelow-ar.glif</string>\n    <key>gafTwodotsbelow-ar.fina</key>\n    <string>gafT_wodotsbelow-ar.fina.glif</string>\n    <key>gafTwodotsbelow-ar.init</key>\n    <string>gafT_wodotsbelow-ar.init.glif</string>\n    <key>gafTwodotsbelow-ar.medi</key>\n    <string>gafT_wodotsbelow-ar.medi.glif</string>\n    <key>gafsarkashabove-ar</key>\n    <string>gafsarkashabove-ar.glif</string>\n    <key>gamma</key>\n    <string>gamma.glif</string>\n    <key>gamma-latin</key>\n    <string>gamma-latin.glif</string>\n    <key>gbreve</key>\n    <string>gbreve.glif</string>\n    <key>gcaron</key>\n    <string>gcaron.glif</string>\n    <key>gcircumflex</key>\n    <string>gcircumflex.glif</string>\n    <key>gcommaaccent</key>\n    <string>gcommaaccent.glif</string>\n    <key>gdotaccent</key>\n    <string>gdotaccent.glif</string>\n    <key>ge-cy</key>\n    <string>ge-cy.glif</string>\n    <key>ge-cy.loclBGR</key>\n    <string>ge-cy.loclB_G_R_.glif</string>\n    <key>geresh-hb</key>\n    <string>geresh-hb.glif</string>\n    <key>germandbls</key>\n    <string>germandbls.glif</string>\n    <key>gershayim-hb</key>\n    <string>gershayim-hb.glif</string>\n    <key>ghain-ar</key>\n    <string>ghain-ar.glif</string>\n    <key>ghain-ar.fina</key>\n    <string>ghain-ar.fina.glif</string>\n    <key>ghain-ar.init</key>\n    <string>ghain-ar.init.glif</string>\n    <key>ghain-ar.medi</key>\n    <string>ghain-ar.medi.glif</string>\n    <key>ghainDotbelow-ar</key>\n    <string>ghainD_otbelow-ar.glif</string>\n    <key>ghainDotbelow-ar.fina</key>\n    <string>ghainD_otbelow-ar.fina.glif</string>\n    <key>ghainDotbelow-ar.init</key>\n    <string>ghainD_otbelow-ar.init.glif</string>\n    <key>ghainDotbelow-ar.medi</key>\n    <string>ghainD_otbelow-ar.medi.glif</string>\n    <key>ghestroke-cy</key>\n    <string>ghestroke-cy.glif</string>\n    <key>gheupturn-cy</key>\n    <string>gheupturn-cy.glif</string>\n    <key>gimel-hb</key>\n    <string>gimel-hb.glif</string>\n    <key>gimeldagesh-hb</key>\n    <string>gimeldagesh-hb.glif</string>\n    <key>gje-cy</key>\n    <string>gje-cy.glif</string>\n    <key>glottalstop</key>\n    <string>glottalstop.glif</string>\n    <key>glottalstopmod</key>\n    <string>glottalstopmod.glif</string>\n    <key>glottalstopreversed</key>\n    <string>glottalstopreversed.glif</string>\n    <key>grave</key>\n    <string>grave.glif</string>\n    <key>gravecomb</key>\n    <string>gravecomb.glif</string>\n    <key>gravecomb.case</key>\n    <string>gravecomb.case.glif</string>\n    <key>gravetonecomb</key>\n    <string>gravetonecomb.glif</string>\n    <key>greater</key>\n    <string>greater.glif</string>\n    <key>greater.alt</key>\n    <string>greater.alt.glif</string>\n    <key>greater.center</key>\n    <string>greater.center.glif</string>\n    <key>greater_equal.liga</key>\n    <string>greater_equal.liga.glif</string>\n    <key>greater_equal_end.seq</key>\n    <string>greater_equal_end.seq.glif</string>\n    <key>greater_equal_middle.seq</key>\n    <string>greater_equal_middle.seq.glif</string>\n    <key>greater_equal_start.seq</key>\n    <string>greater_equal_start.seq.glif</string>\n    <key>greater_greater.liga</key>\n    <string>greater_greater.liga.glif</string>\n    <key>greater_greater_equal.liga</key>\n    <string>greater_greater_equal.liga.glif</string>\n    <key>greater_greater_equal_end.seq</key>\n    <string>greater_greater_equal_end.seq.glif</string>\n    <key>greater_greater_equal_middle.seq</key>\n    <string>greater_greater_equal_middle.seq.glif</string>\n    <key>greater_greater_equal_start.seq</key>\n    <string>greater_greater_equal_start.seq.glif</string>\n    <key>greater_greater_greater.liga</key>\n    <string>greater_greater_greater.liga.glif</string>\n    <key>greater_greater_hyphen_end.seq</key>\n    <string>greater_greater_hyphen_end.seq.glif</string>\n    <key>greater_greater_hyphen_middle.seq</key>\n    <string>greater_greater_hyphen_middle.seq.glif</string>\n    <key>greater_greater_hyphen_start.seq</key>\n    <string>greater_greater_hyphen_start.seq.glif</string>\n    <key>greater_hyphen_end.seq</key>\n    <string>greater_hyphen_end.seq.glif</string>\n    <key>greater_hyphen_middle.seq</key>\n    <string>greater_hyphen_middle.seq.glif</string>\n    <key>greater_hyphen_start.seq</key>\n    <string>greater_hyphen_start.seq.glif</string>\n    <key>greaterequal</key>\n    <string>greaterequal.glif</string>\n    <key>groupSeparatorControl</key>\n    <string>groupS_eparatorC_ontrol.glif</string>\n    <key>gstroke</key>\n    <string>gstroke.glif</string>\n    <key>guarani</key>\n    <string>guarani.glif</string>\n    <key>gueh-ar</key>\n    <string>gueh-ar.glif</string>\n    <key>gueh-ar.fina</key>\n    <string>gueh-ar.fina.glif</string>\n    <key>gueh-ar.init</key>\n    <string>gueh-ar.init.glif</string>\n    <key>gueh-ar.medi</key>\n    <string>gueh-ar.medi.glif</string>\n    <key>guillemetleft</key>\n    <string>guillemetleft.glif</string>\n    <key>guillemetright</key>\n    <string>guillemetright.glif</string>\n    <key>guilsinglleft</key>\n    <string>guilsinglleft.glif</string>\n    <key>guilsinglright</key>\n    <string>guilsinglright.glif</string>\n    <key>h</key>\n    <string>h.glif</string>\n    <key>ha-cy</key>\n    <string>ha-cy.glif</string>\n    <key>hadescender-cy</key>\n    <string>hadescender-cy.glif</string>\n    <key>hah-ar</key>\n    <string>hah-ar.glif</string>\n    <key>hah-ar.fina</key>\n    <string>hah-ar.fina.glif</string>\n    <key>hah-ar.init</key>\n    <string>hah-ar.init.glif</string>\n    <key>hah-ar.medi</key>\n    <string>hah-ar.medi.glif</string>\n    <key>hahFourbelow-ar</key>\n    <string>hahF_ourbelow-ar.glif</string>\n    <key>hahFourbelow-ar.fina</key>\n    <string>hahF_ourbelow-ar.fina.glif</string>\n    <key>hahFourbelow-ar.init</key>\n    <string>hahF_ourbelow-ar.init.glif</string>\n    <key>hahFourbelow-ar.medi</key>\n    <string>hahF_ourbelow-ar.medi.glif</string>\n    <key>hahHamzaabove-ar</key>\n    <string>hahH_amzaabove-ar.glif</string>\n    <key>hahHamzaabove-ar.fina</key>\n    <string>hahH_amzaabove-ar.fina.glif</string>\n    <key>hahHamzaabove-ar.init</key>\n    <string>hahH_amzaabove-ar.init.glif</string>\n    <key>hahHamzaabove-ar.medi</key>\n    <string>hahH_amzaabove-ar.medi.glif</string>\n    <key>hahTahTwodotshorizontalabove-ar</key>\n    <string>hahT_ahT_wodotshorizontalabove-ar.glif</string>\n    <key>hahTahTwodotshorizontalabove-ar.fina</key>\n    <string>hahT_ahT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>hahTahTwodotshorizontalabove-ar.init</key>\n    <string>hahT_ahT_wodotshorizontalabove-ar.init.glif</string>\n    <key>hahTahTwodotshorizontalabove-ar.medi</key>\n    <string>hahT_ahT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>hahTahabove-ar</key>\n    <string>hahT_ahabove-ar.glif</string>\n    <key>hahTahabove-ar.fina</key>\n    <string>hahT_ahabove-ar.fina.glif</string>\n    <key>hahTahabove-ar.init</key>\n    <string>hahT_ahabove-ar.init.glif</string>\n    <key>hahTahabove-ar.medi</key>\n    <string>hahT_ahabove-ar.medi.glif</string>\n    <key>hahTahbelow-ar</key>\n    <string>hahT_ahbelow-ar.glif</string>\n    <key>hahTahbelow-ar.fina</key>\n    <string>hahT_ahbelow-ar.fina.glif</string>\n    <key>hahTahbelow-ar.init</key>\n    <string>hahT_ahbelow-ar.init.glif</string>\n    <key>hahTahbelow-ar.medi</key>\n    <string>hahT_ahbelow-ar.medi.glif</string>\n    <key>hahThreedotsabove-ar</key>\n    <string>hahT_hreedotsabove-ar.glif</string>\n    <key>hahThreedotsabove-ar.fina</key>\n    <string>hahT_hreedotsabove-ar.fina.glif</string>\n    <key>hahThreedotsabove-ar.init</key>\n    <string>hahT_hreedotsabove-ar.init.glif</string>\n    <key>hahThreedotsabove-ar.medi</key>\n    <string>hahT_hreedotsabove-ar.medi.glif</string>\n    <key>hahThreedotsupbelow-ar</key>\n    <string>hahT_hreedotsupbelow-ar.glif</string>\n    <key>hahThreedotsupbelow-ar.fina</key>\n    <string>hahT_hreedotsupbelow-ar.fina.glif</string>\n    <key>hahThreedotsupbelow-ar.init</key>\n    <string>hahT_hreedotsupbelow-ar.init.glif</string>\n    <key>hahThreedotsupbelow-ar.medi</key>\n    <string>hahT_hreedotsupbelow-ar.medi.glif</string>\n    <key>hahTwodotshorizontalabove-ar</key>\n    <string>hahT_wodotshorizontalabove-ar.glif</string>\n    <key>hahTwodotshorizontalabove-ar.fina</key>\n    <string>hahT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>hahTwodotshorizontalabove-ar.init</key>\n    <string>hahT_wodotshorizontalabove-ar.init.glif</string>\n    <key>hahTwodotshorizontalabove-ar.medi</key>\n    <string>hahT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>hahTwodotsverticalabove-ar</key>\n    <string>hahT_wodotsverticalabove-ar.glif</string>\n    <key>hahTwodotsverticalabove-ar.fina</key>\n    <string>hahT_wodotsverticalabove-ar.fina.glif</string>\n    <key>hahTwodotsverticalabove-ar.init</key>\n    <string>hahT_wodotsverticalabove-ar.init.glif</string>\n    <key>hahTwodotsverticalabove-ar.medi</key>\n    <string>hahT_wodotsverticalabove-ar.medi.glif</string>\n    <key>hamza-ar</key>\n    <string>hamza-ar.glif</string>\n    <key>hamzaabove-ar</key>\n    <string>hamzaabove-ar.glif</string>\n    <key>hamzabelow-ar</key>\n    <string>hamzabelow-ar.glif</string>\n    <key>hardsign-cy</key>\n    <string>hardsign-cy.glif</string>\n    <key>hardsign-cy.loclBGR</key>\n    <string>hardsign-cy.loclB_G_R_.glif</string>\n    <key>hbar</key>\n    <string>hbar.glif</string>\n    <key>hcaron</key>\n    <string>hcaron.glif</string>\n    <key>hcircumflex</key>\n    <string>hcircumflex.glif</string>\n    <key>hdotbelow</key>\n    <string>hdotbelow.glif</string>\n    <key>he-hb</key>\n    <string>he-hb.glif</string>\n    <key>heartBlackSuit</key>\n    <string>heartB_lackS_uit.glif</string>\n    <key>heavyleftpointinganglebracketornament</key>\n    <string>heavyleftpointinganglebracketornament.glif</string>\n    <key>heavyleftpointinganglequotationmarkornament</key>\n    <string>heavyleftpointinganglequotationmarkornament.glif</string>\n    <key>heavyrightpointinganglebracketornament</key>\n    <string>heavyrightpointinganglebracketornament.glif</string>\n    <key>heavyrightpointinganglequotationmarkornament</key>\n    <string>heavyrightpointinganglequotationmarkornament.glif</string>\n    <key>hedagesh-hb</key>\n    <string>hedagesh-hb.glif</string>\n    <key>heh-ar</key>\n    <string>heh-ar.glif</string>\n    <key>heh-ar.fina</key>\n    <string>heh-ar.fina.glif</string>\n    <key>heh-ar.init</key>\n    <string>heh-ar.init.glif</string>\n    <key>heh-ar.medi</key>\n    <string>heh-ar.medi.glif</string>\n    <key>hehAlefabove-ar.init</key>\n    <string>hehA_lefabove-ar.init.glif</string>\n    <key>hehAlefabove-ar.init.fina</key>\n    <string>hehA_lefabove-ar.init.fina.glif</string>\n    <key>hehDoachashmee-ar</key>\n    <string>hehD_oachashmee-ar.glif</string>\n    <key>hehDoachashmee-ar.fina</key>\n    <string>hehD_oachashmee-ar.fina.glif</string>\n    <key>hehDoachashmee-ar.init</key>\n    <string>hehD_oachashmee-ar.init.glif</string>\n    <key>hehDoachashmee-ar.medi</key>\n    <string>hehD_oachashmee-ar.medi.glif</string>\n    <key>hehHamzaabove-ar</key>\n    <string>hehH_amzaabove-ar.glif</string>\n    <key>hehHamzaabove-ar.fina</key>\n    <string>hehH_amzaabove-ar.fina.glif</string>\n    <key>hehVinvertedabove-ar</key>\n    <string>hehV_invertedabove-ar.glif</string>\n    <key>hehVinvertedabove-ar.fina</key>\n    <string>hehV_invertedabove-ar.fina.glif</string>\n    <key>hehVinvertedabove-ar.init</key>\n    <string>hehV_invertedabove-ar.init.glif</string>\n    <key>hehVinvertedabove-ar.medi</key>\n    <string>hehV_invertedabove-ar.medi.glif</string>\n    <key>hehgoal-ar</key>\n    <string>hehgoal-ar.glif</string>\n    <key>hehgoal-ar.fina</key>\n    <string>hehgoal-ar.fina.glif</string>\n    <key>hehgoal-ar.init</key>\n    <string>hehgoal-ar.init.glif</string>\n    <key>hehgoal-ar.init.alt</key>\n    <string>hehgoal-ar.init.alt.glif</string>\n    <key>hehgoal-ar.medi</key>\n    <string>hehgoal-ar.medi.glif</string>\n    <key>hehgoalHamzaabove-ar</key>\n    <string>hehgoalH_amzaabove-ar.glif</string>\n    <key>hehgoalHamzaabove-ar.fina</key>\n    <string>hehgoalH_amzaabove-ar.fina.glif</string>\n    <key>hehgoalHamzaabove-ar.init</key>\n    <string>hehgoalH_amzaabove-ar.init.glif</string>\n    <key>hehgoalHamzaabove-ar.init.alt</key>\n    <string>hehgoalH_amzaabove-ar.init.alt.glif</string>\n    <key>hehgoalHamzaabove-ar.medi</key>\n    <string>hehgoalH_amzaabove-ar.medi.glif</string>\n    <key>het-hb</key>\n    <string>het-hb.glif</string>\n    <key>highhamza-ar</key>\n    <string>highhamza-ar.glif</string>\n    <key>highhamzaAlef-ar</key>\n    <string>highhamzaA_lef-ar.glif</string>\n    <key>highhamzaAlef-ar.fina</key>\n    <string>highhamzaA_lef-ar.fina.glif</string>\n    <key>highhamzaAlef-ar.fina.rlig</key>\n    <string>highhamzaA_lef-ar.fina.rlig.glif</string>\n    <key>highhamzaWaw-ar</key>\n    <string>highhamzaW_aw-ar.glif</string>\n    <key>highhamzaWaw-ar.fina</key>\n    <string>highhamzaW_aw-ar.fina.glif</string>\n    <key>highhamzaYeh-ar</key>\n    <string>highhamzaY_eh-ar.glif</string>\n    <key>highhamzaYeh-ar.fina</key>\n    <string>highhamzaY_eh-ar.fina.glif</string>\n    <key>highhamzaYeh-ar.fina.alt</key>\n    <string>highhamzaY_eh-ar.fina.alt.glif</string>\n    <key>highhamzaYeh-ar.init</key>\n    <string>highhamzaY_eh-ar.init.glif</string>\n    <key>highhamzaYeh-ar.init.alt</key>\n    <string>highhamzaY_eh-ar.init.alt.glif</string>\n    <key>highhamzaYeh-ar.medi</key>\n    <string>highhamzaY_eh-ar.medi.glif</string>\n    <key>holam-hb</key>\n    <string>holam-hb.glif</string>\n    <key>holamhaser-hb</key>\n    <string>holamhaser-hb.glif</string>\n    <key>hookabovecomb</key>\n    <string>hookabovecomb.glif</string>\n    <key>hookabovecomb.case</key>\n    <string>hookabovecomb.case.glif</string>\n    <key>horizontalBlackHexagon</key>\n    <string>horizontalB_lackH_exagon.glif</string>\n    <key>horizontalFillSquare</key>\n    <string>horizontalF_illS_quare.glif</string>\n    <key>horizontalTabulationControl</key>\n    <string>horizontalT_abulationC_ontrol.glif</string>\n    <key>horizontalTabulationControl.ss20</key>\n    <string>horizontalT_abulationC_ontrol.ss20.glif</string>\n    <key>horizontalbar</key>\n    <string>horizontalbar.glif</string>\n    <key>horizontallineextension</key>\n    <string>horizontallineextension.glif</string>\n    <key>horncomb</key>\n    <string>horncomb.glif</string>\n    <key>horncomb.case</key>\n    <string>horncomb.case.glif</string>\n    <key>house</key>\n    <string>house.glif</string>\n    <key>hryvnia</key>\n    <string>hryvnia.glif</string>\n    <key>hungarumlaut</key>\n    <string>hungarumlaut.glif</string>\n    <key>hungarumlautcomb</key>\n    <string>hungarumlautcomb.glif</string>\n    <key>hungarumlautcomb.case</key>\n    <string>hungarumlautcomb.case.glif</string>\n    <key>hyphen</key>\n    <string>hyphen.glif</string>\n    <key>hyphen_asciitilde.liga</key>\n    <string>hyphen_asciitilde.liga.glif</string>\n    <key>hyphen_end.seq</key>\n    <string>hyphen_end.seq.glif</string>\n    <key>hyphen_hyphen.liga</key>\n    <string>hyphen_hyphen.liga.glif</string>\n    <key>hyphen_hyphen_hyphen.liga</key>\n    <string>hyphen_hyphen_hyphen.liga.glif</string>\n    <key>hyphen_middle.seq</key>\n    <string>hyphen_middle.seq.glif</string>\n    <key>hyphen_start.seq</key>\n    <string>hyphen_start.seq.glif</string>\n    <key>hyphentwo</key>\n    <string>hyphentwo.glif</string>\n    <key>i</key>\n    <string>i.glif</string>\n    <key>i-cy</key>\n    <string>i-cy.glif</string>\n    <key>ia-cy</key>\n    <string>ia-cy.glif</string>\n    <key>iacute</key>\n    <string>iacute.glif</string>\n    <key>ibreve</key>\n    <string>ibreve.glif</string>\n    <key>icircumflex</key>\n    <string>icircumflex.glif</string>\n    <key>idieresis</key>\n    <string>idieresis.glif</string>\n    <key>idotbelow</key>\n    <string>idotbelow.glif</string>\n    <key>idotless</key>\n    <string>idotless.glif</string>\n    <key>ie-cy</key>\n    <string>ie-cy.glif</string>\n    <key>iegrave-cy</key>\n    <string>iegrave-cy.glif</string>\n    <key>igrave</key>\n    <string>igrave.glif</string>\n    <key>ihookabove</key>\n    <string>ihookabove.glif</string>\n    <key>ii-cy</key>\n    <string>ii-cy.glif</string>\n    <key>ii-cy.loclBGR</key>\n    <string>ii-cy.loclB_G_R_.glif</string>\n    <key>iigrave-cy</key>\n    <string>iigrave-cy.glif</string>\n    <key>iigrave-cy.loclBGR</key>\n    <string>iigrave-cy.loclB_G_R_.glif</string>\n    <key>iishort-cy</key>\n    <string>iishort-cy.glif</string>\n    <key>iishort-cy.loclBGR</key>\n    <string>iishort-cy.loclB_G_R_.glif</string>\n    <key>ij</key>\n    <string>ij.glif</string>\n    <key>ij_acute</key>\n    <string>ij_acute.glif</string>\n    <key>imacron</key>\n    <string>imacron.glif</string>\n    <key>imacron-cy</key>\n    <string>imacron-cy.glif</string>\n    <key>increment</key>\n    <string>increment.glif</string>\n    <key>infinity</key>\n    <string>infinity.glif</string>\n    <key>integral</key>\n    <string>integral.glif</string>\n    <key>integralbt</key>\n    <string>integralbt.glif</string>\n    <key>integraltp</key>\n    <string>integraltp.glif</string>\n    <key>intersection</key>\n    <string>intersection.glif</string>\n    <key>inverseBullet</key>\n    <string>inverseB_ullet.glif</string>\n    <key>inverseWhiteCircle</key>\n    <string>inverseW_hiteC_ircle.glif</string>\n    <key>io-cy</key>\n    <string>io-cy.glif</string>\n    <key>iogonek</key>\n    <string>iogonek.glif</string>\n    <key>iota</key>\n    <string>iota.glif</string>\n    <key>iota-latin</key>\n    <string>iota-latin.glif</string>\n    <key>iotadieresis</key>\n    <string>iotadieresis.glif</string>\n    <key>iotadieresistonos</key>\n    <string>iotadieresistonos.glif</string>\n    <key>iotatonos</key>\n    <string>iotatonos.glif</string>\n    <key>itilde</key>\n    <string>itilde.glif</string>\n    <key>iu-cy</key>\n    <string>iu-cy.glif</string>\n    <key>iu-cy.loclBGR</key>\n    <string>iu-cy.loclB_G_R_.glif</string>\n    <key>j</key>\n    <string>j.glif</string>\n    <key>jacute</key>\n    <string>jacute.glif</string>\n    <key>jcaron</key>\n    <string>jcaron.glif</string>\n    <key>jcircumflex</key>\n    <string>jcircumflex.glif</string>\n    <key>jdotless</key>\n    <string>jdotless.glif</string>\n    <key>je-cy</key>\n    <string>je-cy.glif</string>\n    <key>jeem-ar</key>\n    <string>jeem-ar.glif</string>\n    <key>jeem-ar.fina</key>\n    <string>jeem-ar.fina.glif</string>\n    <key>jeem-ar.init</key>\n    <string>jeem-ar.init.glif</string>\n    <key>jeem-ar.medi</key>\n    <string>jeem-ar.medi.glif</string>\n    <key>jeemTwodotsabove-ar</key>\n    <string>jeemT_wodotsabove-ar.glif</string>\n    <key>jeemTwodotsabove-ar.fina</key>\n    <string>jeemT_wodotsabove-ar.fina.glif</string>\n    <key>jeemTwodotsabove-ar.init</key>\n    <string>jeemT_wodotsabove-ar.init.glif</string>\n    <key>jeemTwodotsabove-ar.medi</key>\n    <string>jeemT_wodotsabove-ar.medi.glif</string>\n    <key>jeh-ar</key>\n    <string>jeh-ar.glif</string>\n    <key>jeh-ar.fina</key>\n    <string>jeh-ar.fina.glif</string>\n    <key>k</key>\n    <string>k.glif</string>\n    <key>ka-cy</key>\n    <string>ka-cy.glif</string>\n    <key>ka-cy.loclBGR</key>\n    <string>ka-cy.loclB_G_R_.glif</string>\n    <key>kadescender-cy</key>\n    <string>kadescender-cy.glif</string>\n    <key>kaf-ar</key>\n    <string>kaf-ar.glif</string>\n    <key>kaf-ar.fina</key>\n    <string>kaf-ar.fina.glif</string>\n    <key>kaf-ar.init</key>\n    <string>kaf-ar.init.glif</string>\n    <key>kaf-ar.medi</key>\n    <string>kaf-ar.medi.glif</string>\n    <key>kaf-hb</key>\n    <string>kaf-hb.glif</string>\n    <key>kafDotabove-ar</key>\n    <string>kafD_otabove-ar.glif</string>\n    <key>kafDotabove-ar.fina</key>\n    <string>kafD_otabove-ar.fina.glif</string>\n    <key>kafDotabove-ar.init</key>\n    <string>kafD_otabove-ar.init.glif</string>\n    <key>kafDotabove-ar.medi</key>\n    <string>kafD_otabove-ar.medi.glif</string>\n    <key>kafRing-ar</key>\n    <string>kafR_ing-ar.glif</string>\n    <key>kafRing-ar.fina</key>\n    <string>kafR_ing-ar.fina.glif</string>\n    <key>kafRing-ar.init</key>\n    <string>kafR_ing-ar.init.glif</string>\n    <key>kafRing-ar.medi</key>\n    <string>kafR_ing-ar.medi.glif</string>\n    <key>kafThreedotsbelow-ar</key>\n    <string>kafT_hreedotsbelow-ar.glif</string>\n    <key>kafThreedotsbelow-ar.fina</key>\n    <string>kafT_hreedotsbelow-ar.fina.glif</string>\n    <key>kafThreedotsbelow-ar.init</key>\n    <string>kafT_hreedotsbelow-ar.init.glif</string>\n    <key>kafThreedotsbelow-ar.medi</key>\n    <string>kafT_hreedotsbelow-ar.medi.glif</string>\n    <key>kafTwodotshorizontalabove-ar</key>\n    <string>kafT_wodotshorizontalabove-ar.glif</string>\n    <key>kafTwodotshorizontalabove-ar.fina</key>\n    <string>kafT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>kafTwodotshorizontalabove-ar.init</key>\n    <string>kafT_wodotshorizontalabove-ar.init.glif</string>\n    <key>kafTwodotshorizontalabove-ar.medi</key>\n    <string>kafT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>kafdagesh-hb</key>\n    <string>kafdagesh-hb.glif</string>\n    <key>kafswash-ar</key>\n    <string>kafswash-ar.glif</string>\n    <key>kafswash-ar.alt</key>\n    <string>kafswash-ar.alt.glif</string>\n    <key>kafswash-ar.fina</key>\n    <string>kafswash-ar.fina.glif</string>\n    <key>kafswash-ar.fina.alt</key>\n    <string>kafswash-ar.fina.alt.glif</string>\n    <key>kafswash-ar.init</key>\n    <string>kafswash-ar.init.glif</string>\n    <key>kafswash-ar.init.alt</key>\n    <string>kafswash-ar.init.alt.glif</string>\n    <key>kafswash-ar.medi</key>\n    <string>kafswash-ar.medi.glif</string>\n    <key>kafswash-ar.medi.alt</key>\n    <string>kafswash-ar.medi.alt.glif</string>\n    <key>kaiSymbol</key>\n    <string>kaiS_ymbol.glif</string>\n    <key>kappa</key>\n    <string>kappa.glif</string>\n    <key>kashida-ar</key>\n    <string>kashida-ar.glif</string>\n    <key>kasra-ar</key>\n    <string>kasra-ar.glif</string>\n    <key>kasratan-ar</key>\n    <string>kasratan-ar.glif</string>\n    <key>kcommaaccent</key>\n    <string>kcommaaccent.glif</string>\n    <key>kdotbelow</key>\n    <string>kdotbelow.glif</string>\n    <key>keheh-ar</key>\n    <string>keheh-ar.glif</string>\n    <key>keheh-ar.fina</key>\n    <string>keheh-ar.fina.glif</string>\n    <key>keheh-ar.init</key>\n    <string>keheh-ar.init.glif</string>\n    <key>keheh-ar.medi</key>\n    <string>keheh-ar.medi.glif</string>\n    <key>kehehDotabove-ar</key>\n    <string>kehehD_otabove-ar.glif</string>\n    <key>kehehDotabove-ar.fina</key>\n    <string>kehehD_otabove-ar.fina.glif</string>\n    <key>kehehDotabove-ar.init</key>\n    <string>kehehD_otabove-ar.init.glif</string>\n    <key>kehehDotabove-ar.medi</key>\n    <string>kehehD_otabove-ar.medi.glif</string>\n    <key>kehehThreedotsabove-ar</key>\n    <string>kehehT_hreedotsabove-ar.glif</string>\n    <key>kehehThreedotsabove-ar.fina</key>\n    <string>kehehT_hreedotsabove-ar.fina.glif</string>\n    <key>kehehThreedotsabove-ar.init</key>\n    <string>kehehT_hreedotsabove-ar.init.glif</string>\n    <key>kehehThreedotsabove-ar.medi</key>\n    <string>kehehT_hreedotsabove-ar.medi.glif</string>\n    <key>kehehThreedotsbelow-ar</key>\n    <string>kehehT_hreedotsbelow-ar.glif</string>\n    <key>kehehThreedotsbelow-ar.fina</key>\n    <string>kehehT_hreedotsbelow-ar.fina.glif</string>\n    <key>kehehThreedotsbelow-ar.init</key>\n    <string>kehehT_hreedotsbelow-ar.init.glif</string>\n    <key>kehehThreedotsbelow-ar.medi</key>\n    <string>kehehT_hreedotsbelow-ar.medi.glif</string>\n    <key>kehehThreedotsupbelow-ar</key>\n    <string>kehehT_hreedotsupbelow-ar.glif</string>\n    <key>kehehThreedotsupbelow-ar.fina</key>\n    <string>kehehT_hreedotsupbelow-ar.fina.glif</string>\n    <key>kehehThreedotsupbelow-ar.init</key>\n    <string>kehehT_hreedotsupbelow-ar.init.glif</string>\n    <key>kehehThreedotsupbelow-ar.medi</key>\n    <string>kehehT_hreedotsupbelow-ar.medi.glif</string>\n    <key>kehehTwodotshorizontalabove-ar</key>\n    <string>kehehT_wodotshorizontalabove-ar.glif</string>\n    <key>kehehTwodotshorizontalabove-ar.fina</key>\n    <string>kehehT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>kehehTwodotshorizontalabove-ar.init</key>\n    <string>kehehT_wodotshorizontalabove-ar.init.glif</string>\n    <key>kehehTwodotshorizontalabove-ar.medi</key>\n    <string>kehehT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>kgreenlandic</key>\n    <string>kgreenlandic.glif</string>\n    <key>khah-ar</key>\n    <string>khah-ar.glif</string>\n    <key>khah-ar.fina</key>\n    <string>khah-ar.fina.glif</string>\n    <key>khah-ar.init</key>\n    <string>khah-ar.init.glif</string>\n    <key>khah-ar.medi</key>\n    <string>khah-ar.medi.glif</string>\n    <key>kip</key>\n    <string>kip.glif</string>\n    <key>kirghizoe-ar</key>\n    <string>kirghizoe-ar.glif</string>\n    <key>kirghizoe-ar.fina</key>\n    <string>kirghizoe-ar.fina.glif</string>\n    <key>kirghizyu-ar</key>\n    <string>kirghizyu-ar.glif</string>\n    <key>kirghizyu-ar.fina</key>\n    <string>kirghizyu-ar.fina.glif</string>\n    <key>kje-cy</key>\n    <string>kje-cy.glif</string>\n    <key>klinebelow</key>\n    <string>klinebelow.glif</string>\n    <key>l</key>\n    <string>l.glif</string>\n    <key>lacute</key>\n    <string>lacute.glif</string>\n    <key>lam-ar</key>\n    <string>lam-ar.glif</string>\n    <key>lam-ar.fina</key>\n    <string>lam-ar.fina.glif</string>\n    <key>lam-ar.init</key>\n    <string>lam-ar.init.glif</string>\n    <key>lam-ar.init.rlig</key>\n    <string>lam-ar.init.rlig.glif</string>\n    <key>lam-ar.medi</key>\n    <string>lam-ar.medi.glif</string>\n    <key>lam-ar.medi.rlig</key>\n    <string>lam-ar.medi.rlig.glif</string>\n    <key>lamBar-ar</key>\n    <string>lamB_ar-ar.glif</string>\n    <key>lamBar-ar.fina</key>\n    <string>lamB_ar-ar.fina.glif</string>\n    <key>lamBar-ar.init</key>\n    <string>lamB_ar-ar.init.glif</string>\n    <key>lamBar-ar.init.rlig</key>\n    <string>lamB_ar-ar.init.rlig.glif</string>\n    <key>lamBar-ar.medi</key>\n    <string>lamB_ar-ar.medi.glif</string>\n    <key>lamBar-ar.medi.rlig</key>\n    <string>lamB_ar-ar.medi.rlig.glif</string>\n    <key>lamDotabove-ar</key>\n    <string>lamD_otabove-ar.glif</string>\n    <key>lamDotabove-ar.fina</key>\n    <string>lamD_otabove-ar.fina.glif</string>\n    <key>lamDotabove-ar.init</key>\n    <string>lamD_otabove-ar.init.glif</string>\n    <key>lamDotabove-ar.init.rlig</key>\n    <string>lamD_otabove-ar.init.rlig.glif</string>\n    <key>lamDotabove-ar.medi</key>\n    <string>lamD_otabove-ar.medi.glif</string>\n    <key>lamDotabove-ar.medi.rlig</key>\n    <string>lamD_otabove-ar.medi.rlig.glif</string>\n    <key>lamDoublebar-ar</key>\n    <string>lamD_oublebar-ar.glif</string>\n    <key>lamDoublebar-ar.fina</key>\n    <string>lamD_oublebar-ar.fina.glif</string>\n    <key>lamDoublebar-ar.init</key>\n    <string>lamD_oublebar-ar.init.glif</string>\n    <key>lamDoublebar-ar.init.rlig</key>\n    <string>lamD_oublebar-ar.init.rlig.glif</string>\n    <key>lamDoublebar-ar.medi</key>\n    <string>lamD_oublebar-ar.medi.glif</string>\n    <key>lamDoublebar-ar.medi.rlig</key>\n    <string>lamD_oublebar-ar.medi.rlig.glif</string>\n    <key>lamThreedotsabove-ar</key>\n    <string>lamT_hreedotsabove-ar.glif</string>\n    <key>lamThreedotsabove-ar.fina</key>\n    <string>lamT_hreedotsabove-ar.fina.glif</string>\n    <key>lamThreedotsabove-ar.init</key>\n    <string>lamT_hreedotsabove-ar.init.glif</string>\n    <key>lamThreedotsabove-ar.init.rlig</key>\n    <string>lamT_hreedotsabove-ar.init.rlig.glif</string>\n    <key>lamThreedotsabove-ar.medi</key>\n    <string>lamT_hreedotsabove-ar.medi.glif</string>\n    <key>lamThreedotsabove-ar.medi.rlig</key>\n    <string>lamT_hreedotsabove-ar.medi.rlig.glif</string>\n    <key>lamThreedotsbelow-ar</key>\n    <string>lamT_hreedotsbelow-ar.glif</string>\n    <key>lamThreedotsbelow-ar.fina</key>\n    <string>lamT_hreedotsbelow-ar.fina.glif</string>\n    <key>lamThreedotsbelow-ar.init</key>\n    <string>lamT_hreedotsbelow-ar.init.glif</string>\n    <key>lamThreedotsbelow-ar.init.rlig</key>\n    <string>lamT_hreedotsbelow-ar.init.rlig.glif</string>\n    <key>lamThreedotsbelow-ar.medi</key>\n    <string>lamT_hreedotsbelow-ar.medi.glif</string>\n    <key>lamThreedotsbelow-ar.medi.rlig</key>\n    <string>lamT_hreedotsbelow-ar.medi.rlig.glif</string>\n    <key>lamVabove-ar</key>\n    <string>lamV_above-ar.glif</string>\n    <key>lamVabove-ar.fina</key>\n    <string>lamV_above-ar.fina.glif</string>\n    <key>lamVabove-ar.init</key>\n    <string>lamV_above-ar.init.glif</string>\n    <key>lamVabove-ar.init.rlig</key>\n    <string>lamV_above-ar.init.rlig.glif</string>\n    <key>lamVabove-ar.medi</key>\n    <string>lamV_above-ar.medi.glif</string>\n    <key>lamVabove-ar.medi.rlig</key>\n    <string>lamV_above-ar.medi.rlig.glif</string>\n    <key>lam_alef-ar</key>\n    <string>lam_alef-ar.glif</string>\n    <key>lam_alef-ar.fina</key>\n    <string>lam_alef-ar.fina.glif</string>\n    <key>lam_alef-ar.fina.short</key>\n    <string>lam_alef-ar.fina.short.glif</string>\n    <key>lam_alef-ar.short</key>\n    <string>lam_alef-ar.short.glif</string>\n    <key>lam_alefHamzaabove-ar</key>\n    <string>lam_alefH_amzaabove-ar.glif</string>\n    <key>lam_alefHamzaabove-ar.fina</key>\n    <string>lam_alefH_amzaabove-ar.fina.glif</string>\n    <key>lam_alefHamzabelow-ar</key>\n    <string>lam_alefH_amzabelow-ar.glif</string>\n    <key>lam_alefHamzabelow-ar.fina</key>\n    <string>lam_alefH_amzabelow-ar.fina.glif</string>\n    <key>lam_alefMadda-ar</key>\n    <string>lam_alefM_adda-ar.glif</string>\n    <key>lam_alefMadda-ar.fina</key>\n    <string>lam_alefM_adda-ar.fina.glif</string>\n    <key>lam_alefWasla-ar</key>\n    <string>lam_alefW_asla-ar.glif</string>\n    <key>lam_alefWasla-ar.fina</key>\n    <string>lam_alefW_asla-ar.fina.glif</string>\n    <key>lam_lam_heh-ar</key>\n    <string>lam_lam_heh-ar.glif</string>\n    <key>lambda</key>\n    <string>lambda.glif</string>\n    <key>lambdastroke</key>\n    <string>lambdastroke.glif</string>\n    <key>lamed-hb</key>\n    <string>lamed-hb.glif</string>\n    <key>lameddagesh-hb</key>\n    <string>lameddagesh-hb.glif</string>\n    <key>largeCircle</key>\n    <string>largeC_ircle.glif</string>\n    <key>lari</key>\n    <string>lari.glif</string>\n    <key>lbar</key>\n    <string>lbar.glif</string>\n    <key>lbelt</key>\n    <string>lbelt.glif</string>\n    <key>lcaron</key>\n    <string>lcaron.glif</string>\n    <key>lcommaaccent</key>\n    <string>lcommaaccent.glif</string>\n    <key>ldot</key>\n    <string>ldot.glif</string>\n    <key>ldotbelow</key>\n    <string>ldotbelow.glif</string>\n    <key>leftArrow</key>\n    <string>leftA_rrow.glif</string>\n    <key>leftBlackPointer</key>\n    <string>leftB_lackP_ointer.glif</string>\n    <key>leftBlackSmallTriangle</key>\n    <string>leftB_lackS_mallT_riangle.glif</string>\n    <key>leftBlackTriangle</key>\n    <string>leftB_lackT_riangle.glif</string>\n    <key>leftBlock</key>\n    <string>leftB_lock.glif</string>\n    <key>leftBlock.stypo</key>\n    <string>leftB_lock.stypo.glif</string>\n    <key>leftFiveEighthsBlock</key>\n    <string>leftF_iveE_ighthsB_lock.glif</string>\n    <key>leftFiveEighthsBlock.stypo</key>\n    <string>leftF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>leftHalfBlackCircle</key>\n    <string>leftH_alfB_lackC_ircle.glif</string>\n    <key>leftHalfBlackDiamond</key>\n    <string>leftH_alfB_lackD_iamond.glif</string>\n    <key>leftHalfBlackSquare</key>\n    <string>leftH_alfB_lackS_quare.glif</string>\n    <key>leftHalfBlackWhiteCircle</key>\n    <string>leftH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>leftOneEighthBlock</key>\n    <string>leftO_neE_ighthB_lock.glif</string>\n    <key>leftOneEighthBlock.stypo</key>\n    <string>leftO_neE_ighthB_lock.stypo.glif</string>\n    <key>leftOneQuarterBlock</key>\n    <string>leftO_neQ_uarterB_lock.glif</string>\n    <key>leftOneQuarterBlock.stypo</key>\n    <string>leftO_neQ_uarterB_lock.stypo.glif</string>\n    <key>leftRightArrow</key>\n    <string>leftR_ightA_rrow.glif</string>\n    <key>leftSevenEighthsBlock</key>\n    <string>leftS_evenE_ighthsB_lock.glif</string>\n    <key>leftSevenEighthsBlock.stypo</key>\n    <string>leftS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>leftThreeEighthsBlock</key>\n    <string>leftT_hreeE_ighthsB_lock.glif</string>\n    <key>leftThreeEighthsBlock.stypo</key>\n    <string>leftT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>leftThreeQuartersBlock</key>\n    <string>leftT_hreeQ_uartersB_lock.glif</string>\n    <key>leftThreeQuartersBlock.stypo</key>\n    <string>leftT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>leftWhitePointer</key>\n    <string>leftW_hiteP_ointer.glif</string>\n    <key>leftWhiteSmallTriangle</key>\n    <string>leftW_hiteS_mallT_riangle.glif</string>\n    <key>leftWhiteTriangle</key>\n    <string>leftW_hiteT_riangle.glif</string>\n    <key>less</key>\n    <string>less.glif</string>\n    <key>less.alt</key>\n    <string>less.alt.glif</string>\n    <key>less.center</key>\n    <string>less.center.glif</string>\n    <key>less_asciitilde.liga</key>\n    <string>less_asciitilde.liga.glif</string>\n    <key>less_asciitilde_asciitilde.liga</key>\n    <string>less_asciitilde_asciitilde.liga.glif</string>\n    <key>less_asciitilde_greater.liga</key>\n    <string>less_asciitilde_greater.liga.glif</string>\n    <key>less_asterisk.liga</key>\n    <string>less_asterisk.liga.glif</string>\n    <key>less_asterisk_greater.liga</key>\n    <string>less_asterisk_greater.liga.glif</string>\n    <key>less_bar.liga</key>\n    <string>less_bar.liga.glif</string>\n    <key>less_bar_bar.liga</key>\n    <string>less_bar_bar.liga.glif</string>\n    <key>less_bar_bar_bar.liga</key>\n    <string>less_bar_bar_bar.liga.glif</string>\n    <key>less_bar_greater.liga</key>\n    <string>less_bar_greater.liga.glif</string>\n    <key>less_dollar.liga</key>\n    <string>less_dollar.liga.glif</string>\n    <key>less_dollar.liga.BRACKET.600</key>\n    <string>less_dollar.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>less_dollar_greater.liga</key>\n    <string>less_dollar_greater.liga.glif</string>\n    <key>less_dollar_greater.liga.BRACKET.600</key>\n    <string>less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>less_equal.liga</key>\n    <string>less_equal.liga.glif</string>\n    <key>less_equal_end.seq</key>\n    <string>less_equal_end.seq.glif</string>\n    <key>less_equal_middle.seq</key>\n    <string>less_equal_middle.seq.glif</string>\n    <key>less_equal_start.seq</key>\n    <string>less_equal_start.seq.glif</string>\n    <key>less_exclam_hyphen_hyphen.liga</key>\n    <string>less_exclam_hyphen_hyphen.liga.glif</string>\n    <key>less_greater.liga</key>\n    <string>less_greater.liga.glif</string>\n    <key>less_hyphen_end.seq</key>\n    <string>less_hyphen_end.seq.glif</string>\n    <key>less_hyphen_middle.seq</key>\n    <string>less_hyphen_middle.seq.glif</string>\n    <key>less_hyphen_start.seq</key>\n    <string>less_hyphen_start.seq.glif</string>\n    <key>less_less.liga</key>\n    <string>less_less.liga.glif</string>\n    <key>less_less_equal.liga</key>\n    <string>less_less_equal.liga.glif</string>\n    <key>less_less_equal_end.seq</key>\n    <string>less_less_equal_end.seq.glif</string>\n    <key>less_less_equal_middle.seq</key>\n    <string>less_less_equal_middle.seq.glif</string>\n    <key>less_less_equal_start.seq</key>\n    <string>less_less_equal_start.seq.glif</string>\n    <key>less_less_hyphen_end.seq</key>\n    <string>less_less_hyphen_end.seq.glif</string>\n    <key>less_less_hyphen_middle.seq</key>\n    <string>less_less_hyphen_middle.seq.glif</string>\n    <key>less_less_hyphen_start.seq</key>\n    <string>less_less_hyphen_start.seq.glif</string>\n    <key>less_less_less.liga</key>\n    <string>less_less_less.liga.glif</string>\n    <key>less_plus.liga</key>\n    <string>less_plus.liga.glif</string>\n    <key>less_plus_greater.liga</key>\n    <string>less_plus_greater.liga.glif</string>\n    <key>less_slash.liga</key>\n    <string>less_slash.liga.glif</string>\n    <key>less_slash_greater.liga</key>\n    <string>less_slash_greater.liga.glif</string>\n    <key>lessequal</key>\n    <string>lessequal.glif</string>\n    <key>lineFeedControl</key>\n    <string>lineF_eedC_ontrol.glif</string>\n    <key>lineFeedControl.ss20</key>\n    <string>lineF_eedC_ontrol.ss20.glif</string>\n    <key>lineseparator</key>\n    <string>lineseparator.glif</string>\n    <key>lira</key>\n    <string>lira.glif</string>\n    <key>liraTurkish</key>\n    <string>liraT_urkish.glif</string>\n    <key>literSign</key>\n    <string>literS_ign.glif</string>\n    <key>lje-cy</key>\n    <string>lje-cy.glif</string>\n    <key>llinebelow</key>\n    <string>llinebelow.glif</string>\n    <key>lmiddletilde</key>\n    <string>lmiddletilde.glif</string>\n    <key>logicalnot</key>\n    <string>logicalnot.glif</string>\n    <key>logicalnotReversed</key>\n    <string>logicalnotR_eversed.glif</string>\n    <key>longs</key>\n    <string>longs.glif</string>\n    <key>lowerFiveEighthsBlock</key>\n    <string>lowerF_iveE_ighthsB_lock.glif</string>\n    <key>lowerFiveEighthsBlock.stypo</key>\n    <string>lowerF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>lowerHalfArc</key>\n    <string>lowerH_alfA_rc.glif</string>\n    <key>lowerHalfBlackWhiteCircle</key>\n    <string>lowerH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>lowerHalfBlock</key>\n    <string>lowerH_alfB_lock.glif</string>\n    <key>lowerHalfBlock.stypo</key>\n    <string>lowerH_alfB_lock.stypo.glif</string>\n    <key>lowerHalfInverseWhiteCircle</key>\n    <string>lowerH_alfI_nverseW_hiteC_ircle.glif</string>\n    <key>lowerHalfWhiteSquare</key>\n    <string>lowerH_alfW_hiteS_quare.glif</string>\n    <key>lowerLeftArc</key>\n    <string>lowerL_eftA_rc.glif</string>\n    <key>lowerLeftBlackTriangle</key>\n    <string>lowerL_eftB_lackT_riangle.glif</string>\n    <key>lowerLeftBlock</key>\n    <string>lowerL_eftB_lock.glif</string>\n    <key>lowerLeftBlock.stypo</key>\n    <string>lowerL_eftB_lock.stypo.glif</string>\n    <key>lowerLeftHalfWhiteSquare</key>\n    <string>lowerL_eftH_alfW_hiteS_quare.glif</string>\n    <key>lowerLeftQuadrantWhiteCircle</key>\n    <string>lowerL_eftQ_uadrantW_hiteC_ircle.glif</string>\n    <key>lowerLeftTriangle</key>\n    <string>lowerL_eftT_riangle.glif</string>\n    <key>lowerOneEighthBlock</key>\n    <string>lowerO_neE_ighthB_lock.glif</string>\n    <key>lowerOneEighthBlock.stypo</key>\n    <string>lowerO_neE_ighthB_lock.stypo.glif</string>\n    <key>lowerOneQuarterBlock</key>\n    <string>lowerO_neQ_uarterB_lock.glif</string>\n    <key>lowerOneQuarterBlock.stypo</key>\n    <string>lowerO_neQ_uarterB_lock.stypo.glif</string>\n    <key>lowerRightArc</key>\n    <string>lowerR_ightA_rc.glif</string>\n    <key>lowerRightBlackTriangle</key>\n    <string>lowerR_ightB_lackT_riangle.glif</string>\n    <key>lowerRightBlock</key>\n    <string>lowerR_ightB_lock.glif</string>\n    <key>lowerRightBlock.stypo</key>\n    <string>lowerR_ightB_lock.stypo.glif</string>\n    <key>lowerRightDiagonalHalfBlackSquare</key>\n    <string>lowerR_ightD_iagonalH_alfB_lackS_quare.glif</string>\n    <key>lowerRightQuadrantWhiteCircle</key>\n    <string>lowerR_ightQ_uadrantW_hiteC_ircle.glif</string>\n    <key>lowerRightTriangle</key>\n    <string>lowerR_ightT_riangle.glif</string>\n    <key>lowerSevenEighthsBlock</key>\n    <string>lowerS_evenE_ighthsB_lock.glif</string>\n    <key>lowerSevenEighthsBlock.stypo</key>\n    <string>lowerS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>lowerThreeEighthsBlock</key>\n    <string>lowerT_hreeE_ighthsB_lock.glif</string>\n    <key>lowerThreeEighthsBlock.stypo</key>\n    <string>lowerT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>lowerThreeQuartersBlock</key>\n    <string>lowerT_hreeQ_uartersB_lock.glif</string>\n    <key>lowerThreeQuartersBlock.stypo</key>\n    <string>lowerT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>lowernumeral-greek</key>\n    <string>lowernumeral-greek.glif</string>\n    <key>lowlinecomb</key>\n    <string>lowlinecomb.glif</string>\n    <key>lozenge</key>\n    <string>lozenge.glif</string>\n    <key>lslash</key>\n    <string>lslash.glif</string>\n    <key>m</key>\n    <string>m.glif</string>\n    <key>macron</key>\n    <string>macron.glif</string>\n    <key>macronbelowcomb</key>\n    <string>macronbelowcomb.glif</string>\n    <key>macroncomb</key>\n    <string>macroncomb.glif</string>\n    <key>macroncomb.case</key>\n    <string>macroncomb.case.glif</string>\n    <key>madda-ar</key>\n    <string>madda-ar.glif</string>\n    <key>manat</key>\n    <string>manat.glif</string>\n    <key>maqaf-hb</key>\n    <string>maqaf-hb.glif</string>\n    <key>mars</key>\n    <string>mars.glif</string>\n    <key>mediumBlackSmallSquare</key>\n    <string>mediumB_lackS_mallS_quare.glif</string>\n    <key>mediumBlackSquare</key>\n    <string>mediumB_lackS_quare.glif</string>\n    <key>mediumWhiteSmallSquare</key>\n    <string>mediumW_hiteS_mallS_quare.glif</string>\n    <key>mediumWhiteSquare</key>\n    <string>mediumW_hiteS_quare.glif</string>\n    <key>mediumleftpointinganglebracketornament</key>\n    <string>mediumleftpointinganglebracketornament.glif</string>\n    <key>mediumrightpointinganglebracketornament</key>\n    <string>mediumrightpointinganglebracketornament.glif</string>\n    <key>meem-ar</key>\n    <string>meem-ar.glif</string>\n    <key>meem-ar.fina</key>\n    <string>meem-ar.fina.glif</string>\n    <key>meem-ar.init</key>\n    <string>meem-ar.init.glif</string>\n    <key>meem-ar.medi</key>\n    <string>meem-ar.medi.glif</string>\n    <key>meemDotabove-ar</key>\n    <string>meemD_otabove-ar.glif</string>\n    <key>meemDotabove-ar.fina</key>\n    <string>meemD_otabove-ar.fina.glif</string>\n    <key>meemDotabove-ar.init</key>\n    <string>meemD_otabove-ar.init.glif</string>\n    <key>meemDotabove-ar.medi</key>\n    <string>meemD_otabove-ar.medi.glif</string>\n    <key>meemDotbelow-ar</key>\n    <string>meemD_otbelow-ar.glif</string>\n    <key>meemDotbelow-ar.fina</key>\n    <string>meemD_otbelow-ar.fina.glif</string>\n    <key>meemDotbelow-ar.init</key>\n    <string>meemD_otbelow-ar.init.glif</string>\n    <key>meemDotbelow-ar.medi</key>\n    <string>meemD_otbelow-ar.medi.glif</string>\n    <key>meemStopabove-ar</key>\n    <string>meemS_topabove-ar.glif</string>\n    <key>meemThreedotsabove-ar</key>\n    <string>meemT_hreedotsabove-ar.glif</string>\n    <key>meemThreedotsabove-ar.fina</key>\n    <string>meemT_hreedotsabove-ar.fina.glif</string>\n    <key>meemThreedotsabove-ar.init</key>\n    <string>meemT_hreedotsabove-ar.init.glif</string>\n    <key>meemThreedotsabove-ar.medi</key>\n    <string>meemT_hreedotsabove-ar.medi.glif</string>\n    <key>mem-hb</key>\n    <string>mem-hb.glif</string>\n    <key>memdagesh-hb</key>\n    <string>memdagesh-hb.glif</string>\n    <key>micro</key>\n    <string>micro.glif</string>\n    <key>minus</key>\n    <string>minus.glif</string>\n    <key>minute</key>\n    <string>minute.glif</string>\n    <key>misraComma-ar</key>\n    <string>misraC_omma-ar.glif</string>\n    <key>mu</key>\n    <string>mu.glif</string>\n    <key>multiply</key>\n    <string>multiply.glif</string>\n    <key>n</key>\n    <string>n.glif</string>\n    <key>nacute</key>\n    <string>nacute.glif</string>\n    <key>nacute.loclPLK</key>\n    <string>nacute.loclP_L_K_.glif</string>\n    <key>naira</key>\n    <string>naira.glif</string>\n    <key>napostrophe</key>\n    <string>napostrophe.glif</string>\n    <key>nbspace</key>\n    <string>nbspace.glif</string>\n    <key>ncaron</key>\n    <string>ncaron.glif</string>\n    <key>ncommaaccent</key>\n    <string>ncommaaccent.glif</string>\n    <key>negativeAcknowledgeControl</key>\n    <string>negativeA_cknowledgeC_ontrol.glif</string>\n    <key>negativeAcknowledgeControl.ss20</key>\n    <string>negativeA_cknowledgeC_ontrol.ss20.glif</string>\n    <key>newlineControl</key>\n    <string>newlineC_ontrol.glif</string>\n    <key>ng-ar</key>\n    <string>ng-ar.glif</string>\n    <key>ng-ar.fina</key>\n    <string>ng-ar.fina.glif</string>\n    <key>ng-ar.init</key>\n    <string>ng-ar.init.glif</string>\n    <key>ng-ar.medi</key>\n    <string>ng-ar.medi.glif</string>\n    <key>ngoeh-ar</key>\n    <string>ngoeh-ar.glif</string>\n    <key>ngoeh-ar.fina</key>\n    <string>ngoeh-ar.fina.glif</string>\n    <key>ngoeh-ar.init</key>\n    <string>ngoeh-ar.init.glif</string>\n    <key>ngoeh-ar.medi</key>\n    <string>ngoeh-ar.medi.glif</string>\n    <key>nhookleft</key>\n    <string>nhookleft.glif</string>\n    <key>nine</key>\n    <string>nine.glif</string>\n    <key>nine-ar</key>\n    <string>nine-ar.glif</string>\n    <key>nine-arinferior</key>\n    <string>nine-arinferior.glif</string>\n    <key>nine-arsuperior</key>\n    <string>nine-arsuperior.glif</string>\n    <key>nine-persian</key>\n    <string>nine-persian.glif</string>\n    <key>nine-persianinferior</key>\n    <string>nine-persianinferior.glif</string>\n    <key>nine-persiansuperior</key>\n    <string>nine-persiansuperior.glif</string>\n    <key>nine.dnom</key>\n    <string>nine.dnom.glif</string>\n    <key>nine.numr</key>\n    <string>nine.numr.glif</string>\n    <key>nineinferior</key>\n    <string>nineinferior.glif</string>\n    <key>ninesuperior</key>\n    <string>ninesuperior.glif</string>\n    <key>nje-cy</key>\n    <string>nje-cy.glif</string>\n    <key>nlinebelow</key>\n    <string>nlinebelow.glif</string>\n    <key>nmod</key>\n    <string>nmod.glif</string>\n    <key>nonbreakinghyphen</key>\n    <string>nonbreakinghyphen.glif</string>\n    <key>noon-ar</key>\n    <string>noon-ar.glif</string>\n    <key>noon-ar.fina</key>\n    <string>noon-ar.fina.glif</string>\n    <key>noon-ar.init</key>\n    <string>noon-ar.init.glif</string>\n    <key>noon-ar.init.alt</key>\n    <string>noon-ar.init.alt.glif</string>\n    <key>noon-ar.medi</key>\n    <string>noon-ar.medi.glif</string>\n    <key>noonAfrican-ar</key>\n    <string>noonA_frican-ar.glif</string>\n    <key>noonAfrican-ar.fina</key>\n    <string>noonA_frican-ar.fina.glif</string>\n    <key>noonAfrican-ar.init</key>\n    <string>noonA_frican-ar.init.glif</string>\n    <key>noonAfrican-ar.init.alt</key>\n    <string>noonA_frican-ar.init.alt.glif</string>\n    <key>noonAfrican-ar.medi</key>\n    <string>noonA_frican-ar.medi.glif</string>\n    <key>noonDotbelow-ar</key>\n    <string>noonD_otbelow-ar.glif</string>\n    <key>noonDotbelow-ar.fina</key>\n    <string>noonD_otbelow-ar.fina.glif</string>\n    <key>noonDotbelow-ar.init</key>\n    <string>noonD_otbelow-ar.init.glif</string>\n    <key>noonDotbelow-ar.init.alt</key>\n    <string>noonD_otbelow-ar.init.alt.glif</string>\n    <key>noonDotbelow-ar.medi</key>\n    <string>noonD_otbelow-ar.medi.glif</string>\n    <key>noonRing-ar</key>\n    <string>noonR_ing-ar.glif</string>\n    <key>noonRing-ar.fina</key>\n    <string>noonR_ing-ar.fina.glif</string>\n    <key>noonRing-ar.init</key>\n    <string>noonR_ing-ar.init.glif</string>\n    <key>noonRing-ar.init.alt</key>\n    <string>noonR_ing-ar.init.alt.glif</string>\n    <key>noonRing-ar.medi</key>\n    <string>noonR_ing-ar.medi.glif</string>\n    <key>noonTahabove-ar</key>\n    <string>noonT_ahabove-ar.glif</string>\n    <key>noonTahabove-ar.fina</key>\n    <string>noonT_ahabove-ar.fina.glif</string>\n    <key>noonTahabove-ar.init</key>\n    <string>noonT_ahabove-ar.init.glif</string>\n    <key>noonTahabove-ar.init.alt</key>\n    <string>noonT_ahabove-ar.init.alt.glif</string>\n    <key>noonTahabove-ar.medi</key>\n    <string>noonT_ahabove-ar.medi.glif</string>\n    <key>noonThreedotsabove-ar</key>\n    <string>noonT_hreedotsabove-ar.glif</string>\n    <key>noonThreedotsabove-ar.fina</key>\n    <string>noonT_hreedotsabove-ar.fina.glif</string>\n    <key>noonThreedotsabove-ar.init</key>\n    <string>noonT_hreedotsabove-ar.init.glif</string>\n    <key>noonThreedotsabove-ar.init.alt</key>\n    <string>noonT_hreedotsabove-ar.init.alt.glif</string>\n    <key>noonThreedotsabove-ar.medi</key>\n    <string>noonT_hreedotsabove-ar.medi.glif</string>\n    <key>noonTwodotsbelow-ar</key>\n    <string>noonT_wodotsbelow-ar.glif</string>\n    <key>noonTwodotsbelow-ar.fina</key>\n    <string>noonT_wodotsbelow-ar.fina.glif</string>\n    <key>noonTwodotsbelow-ar.init</key>\n    <string>noonT_wodotsbelow-ar.init.glif</string>\n    <key>noonTwodotsbelow-ar.init.alt</key>\n    <string>noonT_wodotsbelow-ar.init.alt.glif</string>\n    <key>noonTwodotsbelow-ar.medi</key>\n    <string>noonT_wodotsbelow-ar.medi.glif</string>\n    <key>noonVabove-ar</key>\n    <string>noonV_above-ar.glif</string>\n    <key>noonVabove-ar.fina</key>\n    <string>noonV_above-ar.fina.glif</string>\n    <key>noonVabove-ar.init</key>\n    <string>noonV_above-ar.init.glif</string>\n    <key>noonVabove-ar.init.alt</key>\n    <string>noonV_above-ar.init.alt.glif</string>\n    <key>noonVabove-ar.medi</key>\n    <string>noonV_above-ar.medi.glif</string>\n    <key>noonabove-ar</key>\n    <string>noonabove-ar.glif</string>\n    <key>noonghunna-ar</key>\n    <string>noonghunna-ar.glif</string>\n    <key>noonghunna-ar.fina</key>\n    <string>noonghunna-ar.fina.glif</string>\n    <key>noonghunna-ar.init</key>\n    <string>noonghunna-ar.init.glif</string>\n    <key>noonghunna-ar.init.alt</key>\n    <string>noonghunna-ar.init.alt.glif</string>\n    <key>noonghunna-ar.medi</key>\n    <string>noonghunna-ar.medi.glif</string>\n    <key>noonghunnaabove-ar</key>\n    <string>noonghunnaabove-ar.glif</string>\n    <key>note-musical</key>\n    <string>note-musical.glif</string>\n    <key>notedbl-musical</key>\n    <string>notedbl-musical.glif</string>\n    <key>notequal</key>\n    <string>notequal.glif</string>\n    <key>notidentical</key>\n    <string>notidentical.glif</string>\n    <key>ntilde</key>\n    <string>ntilde.glif</string>\n    <key>nu</key>\n    <string>nu.glif</string>\n    <key>nullControl</key>\n    <string>nullC_ontrol.glif</string>\n    <key>number-ar</key>\n    <string>number-ar.glif</string>\n    <key>numbermark-ar</key>\n    <string>numbermark-ar.glif</string>\n    <key>numbersign</key>\n    <string>numbersign.glif</string>\n    <key>numbersign_braceleft.liga</key>\n    <string>numbersign_braceleft.liga.glif</string>\n    <key>numbersign_bracketleft.liga</key>\n    <string>numbersign_bracketleft.liga.glif</string>\n    <key>numbersign_colon.liga</key>\n    <string>numbersign_colon.liga.glif</string>\n    <key>numbersign_end.seq</key>\n    <string>numbersign_end.seq.glif</string>\n    <key>numbersign_equal.liga</key>\n    <string>numbersign_equal.liga.glif</string>\n    <key>numbersign_exclam.liga</key>\n    <string>numbersign_exclam.liga.glif</string>\n    <key>numbersign_middle.seq</key>\n    <string>numbersign_middle.seq.glif</string>\n    <key>numbersign_parenleft.liga</key>\n    <string>numbersign_parenleft.liga.glif</string>\n    <key>numbersign_question.liga</key>\n    <string>numbersign_question.liga.glif</string>\n    <key>numbersign_start.seq</key>\n    <string>numbersign_start.seq.glif</string>\n    <key>numbersign_underscore.liga</key>\n    <string>numbersign_underscore.liga.glif</string>\n    <key>numbersign_underscore_parenleft.liga</key>\n    <string>numbersign_underscore_parenleft.liga.glif</string>\n    <key>numeral-greek</key>\n    <string>numeral-greek.glif</string>\n    <key>numero</key>\n    <string>numero.glif</string>\n    <key>nun-hb</key>\n    <string>nun-hb.glif</string>\n    <key>nundagesh-hb</key>\n    <string>nundagesh-hb.glif</string>\n    <key>nyeh-ar</key>\n    <string>nyeh-ar.glif</string>\n    <key>nyeh-ar.fina</key>\n    <string>nyeh-ar.fina.glif</string>\n    <key>nyeh-ar.init</key>\n    <string>nyeh-ar.init.glif</string>\n    <key>nyeh-ar.medi</key>\n    <string>nyeh-ar.medi.glif</string>\n    <key>o</key>\n    <string>o.glif</string>\n    <key>o-cy</key>\n    <string>o-cy.glif</string>\n    <key>oacute</key>\n    <string>oacute.glif</string>\n    <key>oacute.loclPLK</key>\n    <string>oacute.loclP_L_K_.glif</string>\n    <key>obarred-cy</key>\n    <string>obarred-cy.glif</string>\n    <key>obreve</key>\n    <string>obreve.glif</string>\n    <key>ocircumflex</key>\n    <string>ocircumflex.glif</string>\n    <key>ocircumflexacute</key>\n    <string>ocircumflexacute.glif</string>\n    <key>ocircumflexdotbelow</key>\n    <string>ocircumflexdotbelow.glif</string>\n    <key>ocircumflexgrave</key>\n    <string>ocircumflexgrave.glif</string>\n    <key>ocircumflexhookabove</key>\n    <string>ocircumflexhookabove.glif</string>\n    <key>ocircumflextilde</key>\n    <string>ocircumflextilde.glif</string>\n    <key>odieresis</key>\n    <string>odieresis.glif</string>\n    <key>odotbelow</key>\n    <string>odotbelow.glif</string>\n    <key>oe</key>\n    <string>oe.glif</string>\n    <key>oe-ar</key>\n    <string>oe-ar.glif</string>\n    <key>oe-ar.fina</key>\n    <string>oe-ar.fina.glif</string>\n    <key>ogonek</key>\n    <string>ogonek.glif</string>\n    <key>ogonekcomb</key>\n    <string>ogonekcomb.glif</string>\n    <key>ograve</key>\n    <string>ograve.glif</string>\n    <key>ohookabove</key>\n    <string>ohookabove.glif</string>\n    <key>ohorn</key>\n    <string>ohorn.glif</string>\n    <key>ohornacute</key>\n    <string>ohornacute.glif</string>\n    <key>ohorndotbelow</key>\n    <string>ohorndotbelow.glif</string>\n    <key>ohorngrave</key>\n    <string>ohorngrave.glif</string>\n    <key>ohornhookabove</key>\n    <string>ohornhookabove.glif</string>\n    <key>ohorntilde</key>\n    <string>ohorntilde.glif</string>\n    <key>ohungarumlaut</key>\n    <string>ohungarumlaut.glif</string>\n    <key>omacron</key>\n    <string>omacron.glif</string>\n    <key>omacronacute</key>\n    <string>omacronacute.glif</string>\n    <key>omacrongrave</key>\n    <string>omacrongrave.glif</string>\n    <key>omega</key>\n    <string>omega.glif</string>\n    <key>omegatonos</key>\n    <string>omegatonos.glif</string>\n    <key>omicron</key>\n    <string>omicron.glif</string>\n    <key>omicrontonos</key>\n    <string>omicrontonos.glif</string>\n    <key>one</key>\n    <string>one.glif</string>\n    <key>one-ar</key>\n    <string>one-ar.glif</string>\n    <key>one-arinferior</key>\n    <string>one-arinferior.glif</string>\n    <key>one-arsuperior</key>\n    <string>one-arsuperior.glif</string>\n    <key>one-persian</key>\n    <string>one-persian.glif</string>\n    <key>one-persianinferior</key>\n    <string>one-persianinferior.glif</string>\n    <key>one-persiansuperior</key>\n    <string>one-persiansuperior.glif</string>\n    <key>one.dnom</key>\n    <string>one.dnom.glif</string>\n    <key>one.half</key>\n    <string>one.half.glif</string>\n    <key>one.numr</key>\n    <string>one.numr.glif</string>\n    <key>onedotenleader</key>\n    <string>onedotenleader.glif</string>\n    <key>oneeighth</key>\n    <string>oneeighth.glif</string>\n    <key>oneeighth.BRACKET.500</key>\n    <string>oneeighth.B_R_A_C_K_E_T_.500.glif</string>\n    <key>onehalf</key>\n    <string>onehalf.glif</string>\n    <key>onehalf.BRACKET.500</key>\n    <string>onehalf.B_R_A_C_K_E_T_.500.glif</string>\n    <key>oneinferior</key>\n    <string>oneinferior.glif</string>\n    <key>onequarter</key>\n    <string>onequarter.glif</string>\n    <key>onequarter.BRACKET.500</key>\n    <string>onequarter.B_R_A_C_K_E_T_.500.glif</string>\n    <key>onesuperior</key>\n    <string>onesuperior.glif</string>\n    <key>oogonek</key>\n    <string>oogonek.glif</string>\n    <key>oopen</key>\n    <string>oopen.glif</string>\n    <key>ordfeminine</key>\n    <string>ordfeminine.glif</string>\n    <key>ordmasculine</key>\n    <string>ordmasculine.glif</string>\n    <key>orthogonal</key>\n    <string>orthogonal.glif</string>\n    <key>oslash</key>\n    <string>oslash.glif</string>\n    <key>oslashacute</key>\n    <string>oslashacute.glif</string>\n    <key>otilde</key>\n    <string>otilde.glif</string>\n    <key>overline</key>\n    <string>overline.glif</string>\n    <key>p</key>\n    <string>p.glif</string>\n    <key>pagenumber-ar</key>\n    <string>pagenumber-ar.glif</string>\n    <key>palochka-cy</key>\n    <string>palochka-cy.glif</string>\n    <key>paragraph</key>\n    <string>paragraph.glif</string>\n    <key>parenleft</key>\n    <string>parenleft.glif</string>\n    <key>parenleft-ar</key>\n    <string>parenleft-ar.glif</string>\n    <key>parenleft_asterisk.liga</key>\n    <string>parenleft_asterisk.liga.glif</string>\n    <key>parenright</key>\n    <string>parenright.glif</string>\n    <key>parenright-ar</key>\n    <string>parenright-ar.glif</string>\n    <key>partialdiff</key>\n    <string>partialdiff.glif</string>\n    <key>paseq-hb</key>\n    <string>paseq-hb.glif</string>\n    <key>patah-hb</key>\n    <string>patah-hb.glif</string>\n    <key>pe-cy</key>\n    <string>pe-cy.glif</string>\n    <key>pe-cy.loclBGR</key>\n    <string>pe-cy.loclB_G_R_.glif</string>\n    <key>pe-hb</key>\n    <string>pe-hb.glif</string>\n    <key>pedagesh-hb</key>\n    <string>pedagesh-hb.glif</string>\n    <key>pedagesh-hb.BRACKET.600</key>\n    <string>pedagesh-hb.B_R_A_C_K_E_T_.600.glif</string>\n    <key>peh-ar</key>\n    <string>peh-ar.glif</string>\n    <key>peh-ar.alt</key>\n    <string>peh-ar.alt.glif</string>\n    <key>peh-ar.fina</key>\n    <string>peh-ar.fina.glif</string>\n    <key>peh-ar.fina.alt</key>\n    <string>peh-ar.fina.alt.glif</string>\n    <key>peh-ar.init</key>\n    <string>peh-ar.init.glif</string>\n    <key>peh-ar.init.alt</key>\n    <string>peh-ar.init.alt.glif</string>\n    <key>peh-ar.medi</key>\n    <string>peh-ar.medi.glif</string>\n    <key>pehMeemabove-ar</key>\n    <string>pehM_eemabove-ar.glif</string>\n    <key>pehMeemabove-ar.alt</key>\n    <string>pehM_eemabove-ar.alt.glif</string>\n    <key>pehMeemabove-ar.fina</key>\n    <string>pehM_eemabove-ar.fina.glif</string>\n    <key>pehMeemabove-ar.fina.alt</key>\n    <string>pehM_eemabove-ar.fina.alt.glif</string>\n    <key>pehMeemabove-ar.init</key>\n    <string>pehM_eemabove-ar.init.glif</string>\n    <key>pehMeemabove-ar.init.alt</key>\n    <string>pehM_eemabove-ar.init.alt.glif</string>\n    <key>pehMeemabove-ar.medi</key>\n    <string>pehM_eemabove-ar.medi.glif</string>\n    <key>peheh-ar</key>\n    <string>peheh-ar.glif</string>\n    <key>peheh-ar.alt</key>\n    <string>peheh-ar.alt.glif</string>\n    <key>peheh-ar.fina</key>\n    <string>peheh-ar.fina.glif</string>\n    <key>peheh-ar.fina.alt</key>\n    <string>peheh-ar.fina.alt.glif</string>\n    <key>peheh-ar.init</key>\n    <string>peheh-ar.init.glif</string>\n    <key>peheh-ar.init.alt</key>\n    <string>peheh-ar.init.alt.glif</string>\n    <key>peheh-ar.medi</key>\n    <string>peheh-ar.medi.glif</string>\n    <key>percent</key>\n    <string>percent.glif</string>\n    <key>percent-ar</key>\n    <string>percent-ar.glif</string>\n    <key>percent_percent.liga</key>\n    <string>percent_percent.liga.glif</string>\n    <key>period</key>\n    <string>period.glif</string>\n    <key>period_equal.liga</key>\n    <string>period_equal.liga.glif</string>\n    <key>period_hyphen.liga</key>\n    <string>period_hyphen.liga.glif</string>\n    <key>period_period.liga</key>\n    <string>period_period.liga.glif</string>\n    <key>period_period_equal.liga</key>\n    <string>period_period_equal.liga.glif</string>\n    <key>period_period_less.liga</key>\n    <string>period_period_less.liga.glif</string>\n    <key>period_period_period.liga</key>\n    <string>period_period_period.liga.glif</string>\n    <key>period_question.liga</key>\n    <string>period_question.liga.glif</string>\n    <key>periodcentered</key>\n    <string>periodcentered.glif</string>\n    <key>perispomenicomb</key>\n    <string>perispomenicomb.glif</string>\n    <key>perthousand</key>\n    <string>perthousand.glif</string>\n    <key>perthousand-ar</key>\n    <string>perthousand-ar.glif</string>\n    <key>peseta</key>\n    <string>peseta.glif</string>\n    <key>peso</key>\n    <string>peso.glif</string>\n    <key>phi</key>\n    <string>phi.glif</string>\n    <key>pi</key>\n    <string>pi.glif</string>\n    <key>plus</key>\n    <string>plus.glif</string>\n    <key>plus_greater.liga</key>\n    <string>plus_greater.liga.glif</string>\n    <key>plus_plus.liga</key>\n    <string>plus_plus.liga.glif</string>\n    <key>plus_plus_plus.liga</key>\n    <string>plus_plus_plus.liga.glif</string>\n    <key>plusminus</key>\n    <string>plusminus.glif</string>\n    <key>prescription</key>\n    <string>prescription.glif</string>\n    <key>product</key>\n    <string>product.glif</string>\n    <key>psi</key>\n    <string>psi.glif</string>\n    <key>published</key>\n    <string>published.glif</string>\n    <key>punctuationspace</key>\n    <string>punctuationspace.glif</string>\n    <key>q</key>\n    <string>q.glif</string>\n    <key>qaf-ar</key>\n    <string>qaf-ar.glif</string>\n    <key>qaf-ar.fina</key>\n    <string>qaf-ar.fina.glif</string>\n    <key>qaf-ar.init</key>\n    <string>qaf-ar.init.glif</string>\n    <key>qaf-ar.init.alt</key>\n    <string>qaf-ar.init.alt.glif</string>\n    <key>qaf-ar.medi</key>\n    <string>qaf-ar.medi.glif</string>\n    <key>qafAfrican-ar</key>\n    <string>qafA_frican-ar.glif</string>\n    <key>qafAfrican-ar.fina</key>\n    <string>qafA_frican-ar.fina.glif</string>\n    <key>qafAfrican-ar.init</key>\n    <string>qafA_frican-ar.init.glif</string>\n    <key>qafAfrican-ar.init.alt</key>\n    <string>qafA_frican-ar.init.alt.glif</string>\n    <key>qafAfrican-ar.medi</key>\n    <string>qafA_frican-ar.medi.glif</string>\n    <key>qafDotabove-ar</key>\n    <string>qafD_otabove-ar.glif</string>\n    <key>qafDotabove-ar.fina</key>\n    <string>qafD_otabove-ar.fina.glif</string>\n    <key>qafDotabove-ar.init</key>\n    <string>qafD_otabove-ar.init.glif</string>\n    <key>qafDotabove-ar.init.alt</key>\n    <string>qafD_otabove-ar.init.alt.glif</string>\n    <key>qafDotabove-ar.medi</key>\n    <string>qafD_otabove-ar.medi.glif</string>\n    <key>qafDotbelow-ar</key>\n    <string>qafD_otbelow-ar.glif</string>\n    <key>qafDotbelow-ar.fina</key>\n    <string>qafD_otbelow-ar.fina.glif</string>\n    <key>qafDotbelow-ar.init</key>\n    <string>qafD_otbelow-ar.init.glif</string>\n    <key>qafDotbelow-ar.medi</key>\n    <string>qafD_otbelow-ar.medi.glif</string>\n    <key>qafDotless-ar</key>\n    <string>qafD_otless-ar.glif</string>\n    <key>qafDotless-ar.fina</key>\n    <string>qafD_otless-ar.fina.glif</string>\n    <key>qafDotless-ar.init</key>\n    <string>qafD_otless-ar.init.glif</string>\n    <key>qafDotless-ar.init.alt</key>\n    <string>qafD_otless-ar.init.alt.glif</string>\n    <key>qafDotless-ar.medi</key>\n    <string>qafD_otless-ar.medi.glif</string>\n    <key>qafThreedotsabove-ar</key>\n    <string>qafT_hreedotsabove-ar.glif</string>\n    <key>qafThreedotsabove-ar.fina</key>\n    <string>qafT_hreedotsabove-ar.fina.glif</string>\n    <key>qafThreedotsabove-ar.init</key>\n    <string>qafT_hreedotsabove-ar.init.glif</string>\n    <key>qafThreedotsabove-ar.medi</key>\n    <string>qafT_hreedotsabove-ar.medi.glif</string>\n    <key>qamats-hb</key>\n    <string>qamats-hb.glif</string>\n    <key>qamatsqatan-hb</key>\n    <string>qamatsqatan-hb.glif</string>\n    <key>qof-hb</key>\n    <string>qof-hb.glif</string>\n    <key>qofdagesh-hb</key>\n    <string>qofdagesh-hb.glif</string>\n    <key>question</key>\n    <string>question.glif</string>\n    <key>question-ar</key>\n    <string>question-ar.glif</string>\n    <key>question_colon.liga</key>\n    <string>question_colon.liga.glif</string>\n    <key>question_equal.liga</key>\n    <string>question_equal.liga.glif</string>\n    <key>question_period.liga</key>\n    <string>question_period.liga.glif</string>\n    <key>question_question.liga</key>\n    <string>question_question.liga.glif</string>\n    <key>question_question_equal.liga</key>\n    <string>question_question_equal.liga.glif</string>\n    <key>questiondown</key>\n    <string>questiondown.glif</string>\n    <key>questiongreek</key>\n    <string>questiongreek.glif</string>\n    <key>quotedbl</key>\n    <string>quotedbl.glif</string>\n    <key>quotedblbase</key>\n    <string>quotedblbase.glif</string>\n    <key>quotedblleft</key>\n    <string>quotedblleft.glif</string>\n    <key>quotedblright</key>\n    <string>quotedblright.glif</string>\n    <key>quoteleft</key>\n    <string>quoteleft.glif</string>\n    <key>quotereversed</key>\n    <string>quotereversed.glif</string>\n    <key>quoteright</key>\n    <string>quoteright.glif</string>\n    <key>quotesinglbase</key>\n    <string>quotesinglbase.glif</string>\n    <key>quotesingle</key>\n    <string>quotesingle.glif</string>\n    <key>r</key>\n    <string>r.glif</string>\n    <key>racute</key>\n    <string>racute.glif</string>\n    <key>radical</key>\n    <string>radical.glif</string>\n    <key>ratio</key>\n    <string>ratio.glif</string>\n    <key>ray-ar</key>\n    <string>ray-ar.glif</string>\n    <key>rcaron</key>\n    <string>rcaron.glif</string>\n    <key>rcommaaccent</key>\n    <string>rcommaaccent.glif</string>\n    <key>rdotbelow</key>\n    <string>rdotbelow.glif</string>\n    <key>recordSeparatorControl</key>\n    <string>recordS_eparatorC_ontrol.glif</string>\n    <key>registered</key>\n    <string>registered.glif</string>\n    <key>reh-ar</key>\n    <string>reh-ar.glif</string>\n    <key>reh-ar.fina</key>\n    <string>reh-ar.fina.glif</string>\n    <key>rehAlefabove-ar</key>\n    <string>rehA_lefabove-ar.glif</string>\n    <key>rehAlefabove-ar.fina</key>\n    <string>rehA_lefabove-ar.fina.glif</string>\n    <key>rehDotbelow-ar</key>\n    <string>rehD_otbelow-ar.glif</string>\n    <key>rehDotbelow-ar.fina</key>\n    <string>rehD_otbelow-ar.fina.glif</string>\n    <key>rehDotbelowdotabove-ar</key>\n    <string>rehD_otbelowdotabove-ar.glif</string>\n    <key>rehDotbelowdotabove-ar.fina</key>\n    <string>rehD_otbelowdotabove-ar.fina.glif</string>\n    <key>rehFourdots-ar</key>\n    <string>rehF_ourdots-ar.glif</string>\n    <key>rehFourdots-ar.fina</key>\n    <string>rehF_ourdots-ar.fina.glif</string>\n    <key>rehHamzaabove-ar</key>\n    <string>rehH_amzaabove-ar.glif</string>\n    <key>rehHamzaabove-ar.fina</key>\n    <string>rehH_amzaabove-ar.fina.glif</string>\n    <key>rehLoop-ar</key>\n    <string>rehL_oop-ar.glif</string>\n    <key>rehLoop-ar.fina</key>\n    <string>rehL_oop-ar.fina.glif</string>\n    <key>rehRing-ar</key>\n    <string>rehR_ing-ar.glif</string>\n    <key>rehRing-ar.fina</key>\n    <string>rehR_ing-ar.fina.glif</string>\n    <key>rehStroke-ar</key>\n    <string>rehS_troke-ar.glif</string>\n    <key>rehStroke-ar.fina</key>\n    <string>rehS_troke-ar.fina.glif</string>\n    <key>rehTwodots-ar</key>\n    <string>rehT_wodots-ar.glif</string>\n    <key>rehTwodots-ar.fina</key>\n    <string>rehT_wodots-ar.fina.glif</string>\n    <key>rehTwodotshorizontalaboveTahabove-ar</key>\n    <string>rehT_wodotshorizontalaboveT_ahabove-ar.glif</string>\n    <key>rehTwodotshorizontalaboveTahabove-ar.fina</key>\n    <string>rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif</string>\n    <key>rehTwodotsverticalabove-ar</key>\n    <string>rehT_wodotsverticalabove-ar.glif</string>\n    <key>rehTwodotsverticalabove-ar.fina</key>\n    <string>rehT_wodotsverticalabove-ar.fina.glif</string>\n    <key>rehVbelow-ar</key>\n    <string>rehV_below-ar.glif</string>\n    <key>rehVbelow-ar.fina</key>\n    <string>rehV_below-ar.fina.glif</string>\n    <key>rehVinvertedabove-ar</key>\n    <string>rehV_invertedabove-ar.glif</string>\n    <key>rehVinvertedabove-ar.fina</key>\n    <string>rehV_invertedabove-ar.fina.glif</string>\n    <key>rehv-ar</key>\n    <string>rehv-ar.glif</string>\n    <key>rehv-ar.fina</key>\n    <string>rehv-ar.fina.glif</string>\n    <key>replacementCharacter</key>\n    <string>replacementC_haracter.glif</string>\n    <key>resh-hb</key>\n    <string>resh-hb.glif</string>\n    <key>reshdagesh-hb</key>\n    <string>reshdagesh-hb.glif</string>\n    <key>returnsymbol</key>\n    <string>returnsymbol.glif</string>\n    <key>reversedRotatedFloralHeartBullet</key>\n    <string>reversedR_otatedF_loralH_eartB_ullet.glif</string>\n    <key>rho</key>\n    <string>rho.glif</string>\n    <key>rightArrow</key>\n    <string>rightA_rrow.glif</string>\n    <key>rightBlackPointer</key>\n    <string>rightB_lackP_ointer.glif</string>\n    <key>rightBlackSmallTriangle</key>\n    <string>rightB_lackS_mallT_riangle.glif</string>\n    <key>rightBlackTriangle</key>\n    <string>rightB_lackT_riangle.glif</string>\n    <key>rightBlock</key>\n    <string>rightB_lock.glif</string>\n    <key>rightBlock.stypo</key>\n    <string>rightB_lock.stypo.glif</string>\n    <key>rightHalfBlackCircle</key>\n    <string>rightH_alfB_lackC_ircle.glif</string>\n    <key>rightHalfBlackDiamond</key>\n    <string>rightH_alfB_lackD_iamond.glif</string>\n    <key>rightHalfBlackSquare</key>\n    <string>rightH_alfB_lackS_quare.glif</string>\n    <key>rightHalfBlackWhiteCircle</key>\n    <string>rightH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>rightOneEighthBlock</key>\n    <string>rightO_neE_ighthB_lock.glif</string>\n    <key>rightOneEighthBlock.stypo</key>\n    <string>rightO_neE_ighthB_lock.stypo.glif</string>\n    <key>rightWhitePointer</key>\n    <string>rightW_hiteP_ointer.glif</string>\n    <key>rightWhiteSmallTriangle</key>\n    <string>rightW_hiteS_mallT_riangle.glif</string>\n    <key>rightWhiteTriangle</key>\n    <string>rightW_hiteT_riangle.glif</string>\n    <key>ring</key>\n    <string>ring.glif</string>\n    <key>ringArabic</key>\n    <string>ringA_rabic.glif</string>\n    <key>ringbelowcomb</key>\n    <string>ringbelowcomb.glif</string>\n    <key>ringcomb</key>\n    <string>ringcomb.glif</string>\n    <key>ringcomb.case</key>\n    <string>ringcomb.case.glif</string>\n    <key>rnoon-ar</key>\n    <string>rnoon-ar.glif</string>\n    <key>rnoon-ar.fina</key>\n    <string>rnoon-ar.fina.glif</string>\n    <key>rnoon-ar.init</key>\n    <string>rnoon-ar.init.glif</string>\n    <key>rnoon-ar.init.alt</key>\n    <string>rnoon-ar.init.alt.glif</string>\n    <key>rnoon-ar.medi</key>\n    <string>rnoon-ar.medi.glif</string>\n    <key>rotatedFloralHeartBullet</key>\n    <string>rotatedF_loralH_eartB_ullet.glif</string>\n    <key>rreh-ar</key>\n    <string>rreh-ar.glif</string>\n    <key>rreh-ar.fina</key>\n    <string>rreh-ar.fina.glif</string>\n    <key>ruble</key>\n    <string>ruble.glif</string>\n    <key>rupee</key>\n    <string>rupee.glif</string>\n    <key>rupeeIndian</key>\n    <string>rupeeI_ndian.glif</string>\n    <key>s</key>\n    <string>s.glif</string>\n    <key>sacute</key>\n    <string>sacute.glif</string>\n    <key>sacute.loclPLK</key>\n    <string>sacute.loclP_L_K_.glif</string>\n    <key>sad-ar</key>\n    <string>sad-ar.glif</string>\n    <key>sad-ar.alt</key>\n    <string>sad-ar.alt.glif</string>\n    <key>sad-ar.fina</key>\n    <string>sad-ar.fina.glif</string>\n    <key>sad-ar.fina.alt</key>\n    <string>sad-ar.fina.alt.glif</string>\n    <key>sad-ar.init</key>\n    <string>sad-ar.init.glif</string>\n    <key>sad-ar.medi</key>\n    <string>sad-ar.medi.glif</string>\n    <key>sadThreedots-ar</key>\n    <string>sadT_hreedots-ar.glif</string>\n    <key>sadThreedots-ar.alt</key>\n    <string>sadT_hreedots-ar.alt.glif</string>\n    <key>sadThreedots-ar.fina</key>\n    <string>sadT_hreedots-ar.fina.glif</string>\n    <key>sadThreedots-ar.fina.alt</key>\n    <string>sadT_hreedots-ar.fina.alt.glif</string>\n    <key>sadThreedots-ar.init</key>\n    <string>sadT_hreedots-ar.init.glif</string>\n    <key>sadThreedots-ar.medi</key>\n    <string>sadT_hreedots-ar.medi.glif</string>\n    <key>sadThreedotsbelow-ar</key>\n    <string>sadT_hreedotsbelow-ar.glif</string>\n    <key>sadThreedotsbelow-ar.alt</key>\n    <string>sadT_hreedotsbelow-ar.alt.glif</string>\n    <key>sadThreedotsbelow-ar.fina</key>\n    <string>sadT_hreedotsbelow-ar.fina.glif</string>\n    <key>sadThreedotsbelow-ar.fina.alt</key>\n    <string>sadT_hreedotsbelow-ar.fina.alt.glif</string>\n    <key>sadThreedotsbelow-ar.init</key>\n    <string>sadT_hreedotsbelow-ar.init.glif</string>\n    <key>sadThreedotsbelow-ar.medi</key>\n    <string>sadT_hreedotsbelow-ar.medi.glif</string>\n    <key>sadTwodotsbelow-ar</key>\n    <string>sadT_wodotsbelow-ar.glif</string>\n    <key>sadTwodotsbelow-ar.alt</key>\n    <string>sadT_wodotsbelow-ar.alt.glif</string>\n    <key>sadTwodotsbelow-ar.fina</key>\n    <string>sadT_wodotsbelow-ar.fina.glif</string>\n    <key>sadTwodotsbelow-ar.fina.alt</key>\n    <string>sadT_wodotsbelow-ar.fina.alt.glif</string>\n    <key>sadTwodotsbelow-ar.init</key>\n    <string>sadT_wodotsbelow-ar.init.glif</string>\n    <key>sadTwodotsbelow-ar.medi</key>\n    <string>sadT_wodotsbelow-ar.medi.glif</string>\n    <key>samekh-hb</key>\n    <string>samekh-hb.glif</string>\n    <key>samekhdagesh-hb</key>\n    <string>samekhdagesh-hb.glif</string>\n    <key>samvat-ar</key>\n    <string>samvat-ar.glif</string>\n    <key>scaron</key>\n    <string>scaron.glif</string>\n    <key>scedilla</key>\n    <string>scedilla.glif</string>\n    <key>schwa</key>\n    <string>schwa.glif</string>\n    <key>schwa-cy</key>\n    <string>schwa-cy.glif</string>\n    <key>scircumflex</key>\n    <string>scircumflex.glif</string>\n    <key>scommaaccent</key>\n    <string>scommaaccent.glif</string>\n    <key>sdotbelow</key>\n    <string>sdotbelow.glif</string>\n    <key>second</key>\n    <string>second.glif</string>\n    <key>section</key>\n    <string>section.glif</string>\n    <key>seen-ar</key>\n    <string>seen-ar.glif</string>\n    <key>seen-ar.alt</key>\n    <string>seen-ar.alt.glif</string>\n    <key>seen-ar.fina</key>\n    <string>seen-ar.fina.glif</string>\n    <key>seen-ar.fina.alt</key>\n    <string>seen-ar.fina.alt.glif</string>\n    <key>seen-ar.init</key>\n    <string>seen-ar.init.glif</string>\n    <key>seen-ar.medi</key>\n    <string>seen-ar.medi.glif</string>\n    <key>seenDotbelowDotabove-ar</key>\n    <string>seenD_otbelowD_otabove-ar.glif</string>\n    <key>seenDotbelowDotabove-ar.alt</key>\n    <string>seenD_otbelowD_otabove-ar.alt.glif</string>\n    <key>seenDotbelowDotabove-ar.fina</key>\n    <string>seenD_otbelowD_otabove-ar.fina.glif</string>\n    <key>seenDotbelowDotabove-ar.fina.alt</key>\n    <string>seenD_otbelowD_otabove-ar.fina.alt.glif</string>\n    <key>seenDotbelowDotabove-ar.init</key>\n    <string>seenD_otbelowD_otabove-ar.init.glif</string>\n    <key>seenDotbelowDotabove-ar.medi</key>\n    <string>seenD_otbelowD_otabove-ar.medi.glif</string>\n    <key>seenFourabove-ar</key>\n    <string>seenF_ourabove-ar.glif</string>\n    <key>seenFourabove-ar.alt</key>\n    <string>seenF_ourabove-ar.alt.glif</string>\n    <key>seenFourabove-ar.fina</key>\n    <string>seenF_ourabove-ar.fina.glif</string>\n    <key>seenFourabove-ar.fina.alt</key>\n    <string>seenF_ourabove-ar.fina.alt.glif</string>\n    <key>seenFourabove-ar.init</key>\n    <string>seenF_ourabove-ar.init.glif</string>\n    <key>seenFourabove-ar.medi</key>\n    <string>seenF_ourabove-ar.medi.glif</string>\n    <key>seenFourdotsabove-ar</key>\n    <string>seenF_ourdotsabove-ar.glif</string>\n    <key>seenFourdotsabove-ar.alt</key>\n    <string>seenF_ourdotsabove-ar.alt.glif</string>\n    <key>seenFourdotsabove-ar.fina</key>\n    <string>seenF_ourdotsabove-ar.fina.glif</string>\n    <key>seenFourdotsabove-ar.fina.alt</key>\n    <string>seenF_ourdotsabove-ar.fina.alt.glif</string>\n    <key>seenFourdotsabove-ar.init</key>\n    <string>seenF_ourdotsabove-ar.init.glif</string>\n    <key>seenFourdotsabove-ar.medi</key>\n    <string>seenF_ourdotsabove-ar.medi.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.alt</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.alt.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.fina</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.fina.alt</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.init</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.init.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.medi</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>seenThreedotsbelow-ar</key>\n    <string>seenT_hreedotsbelow-ar.glif</string>\n    <key>seenThreedotsbelow-ar.alt</key>\n    <string>seenT_hreedotsbelow-ar.alt.glif</string>\n    <key>seenThreedotsbelow-ar.fina</key>\n    <string>seenT_hreedotsbelow-ar.fina.glif</string>\n    <key>seenThreedotsbelow-ar.fina.alt</key>\n    <string>seenT_hreedotsbelow-ar.fina.alt.glif</string>\n    <key>seenThreedotsbelow-ar.init</key>\n    <string>seenT_hreedotsbelow-ar.init.glif</string>\n    <key>seenThreedotsbelow-ar.medi</key>\n    <string>seenT_hreedotsbelow-ar.medi.glif</string>\n    <key>seenThreedotsbelowthreedots-ar</key>\n    <string>seenT_hreedotsbelowthreedots-ar.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.alt</key>\n    <string>seenT_hreedotsbelowthreedots-ar.alt.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.fina</key>\n    <string>seenT_hreedotsbelowthreedots-ar.fina.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.fina.alt</key>\n    <string>seenT_hreedotsbelowthreedots-ar.fina.alt.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.init</key>\n    <string>seenT_hreedotsbelowthreedots-ar.init.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.medi</key>\n    <string>seenT_hreedotsbelowthreedots-ar.medi.glif</string>\n    <key>seenTwodotshorizontalabove-ar</key>\n    <string>seenT_wodotshorizontalabove-ar.glif</string>\n    <key>seenTwodotshorizontalabove-ar.fina</key>\n    <string>seenT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>seenTwodotshorizontalabove-ar.init</key>\n    <string>seenT_wodotshorizontalabove-ar.init.glif</string>\n    <key>seenTwodotshorizontalabove-ar.medi</key>\n    <string>seenT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>seenTwodotsverticalabove-ar.alt</key>\n    <string>seenT_wodotsverticalabove-ar.alt.glif</string>\n    <key>seenTwodotsverticalabove-ar.fina.alt</key>\n    <string>seenT_wodotsverticalabove-ar.fina.alt.glif</string>\n    <key>seenVinvertedabove-ar</key>\n    <string>seenV_invertedabove-ar.glif</string>\n    <key>seenVinvertedabove-ar.alt</key>\n    <string>seenV_invertedabove-ar.alt.glif</string>\n    <key>seenVinvertedabove-ar.fina</key>\n    <string>seenV_invertedabove-ar.fina.glif</string>\n    <key>seenVinvertedabove-ar.fina.alt</key>\n    <string>seenV_invertedabove-ar.fina.alt.glif</string>\n    <key>seenVinvertedabove-ar.init</key>\n    <string>seenV_invertedabove-ar.init.glif</string>\n    <key>seenVinvertedabove-ar.medi</key>\n    <string>seenV_invertedabove-ar.medi.glif</string>\n    <key>semicolon</key>\n    <string>semicolon.glif</string>\n    <key>semicolon-ar</key>\n    <string>semicolon-ar.glif</string>\n    <key>semicolon_semicolon.liga</key>\n    <string>semicolon_semicolon.liga.glif</string>\n    <key>seven</key>\n    <string>seven.glif</string>\n    <key>seven-ar</key>\n    <string>seven-ar.glif</string>\n    <key>seven-arinferior</key>\n    <string>seven-arinferior.glif</string>\n    <key>seven-arsuperior</key>\n    <string>seven-arsuperior.glif</string>\n    <key>seven-persian</key>\n    <string>seven-persian.glif</string>\n    <key>seven-persian.urdu</key>\n    <string>seven-persian.urdu.glif</string>\n    <key>seven-persian.urduinferior</key>\n    <string>seven-persian.urduinferior.glif</string>\n    <key>seven-persian.urdusuperior</key>\n    <string>seven-persian.urdusuperior.glif</string>\n    <key>seven-persianinferior</key>\n    <string>seven-persianinferior.glif</string>\n    <key>seven-persiansuperior</key>\n    <string>seven-persiansuperior.glif</string>\n    <key>seven.dnom</key>\n    <string>seven.dnom.glif</string>\n    <key>seven.numr</key>\n    <string>seven.numr.glif</string>\n    <key>seveneighths</key>\n    <string>seveneighths.glif</string>\n    <key>seveneighths.BRACKET.500</key>\n    <string>seveneighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>seveninferior</key>\n    <string>seveninferior.glif</string>\n    <key>sevensuperior</key>\n    <string>sevensuperior.glif</string>\n    <key>sha-cy</key>\n    <string>sha-cy.glif</string>\n    <key>sha-cy.loclBGR</key>\n    <string>sha-cy.loclB_G_R_.glif</string>\n    <key>shadda-ar</key>\n    <string>shadda-ar.glif</string>\n    <key>shadedark</key>\n    <string>shadedark.glif</string>\n    <key>shadedark.stypo</key>\n    <string>shadedark.stypo.glif</string>\n    <key>shadelight</key>\n    <string>shadelight.glif</string>\n    <key>shadelight.stypo</key>\n    <string>shadelight.stypo.glif</string>\n    <key>shademedium</key>\n    <string>shademedium.glif</string>\n    <key>shademedium.stypo</key>\n    <string>shademedium.stypo.glif</string>\n    <key>shcha-cy</key>\n    <string>shcha-cy.glif</string>\n    <key>shcha-cy.loclBGR</key>\n    <string>shcha-cy.loclB_G_R_.glif</string>\n    <key>sheen-ar</key>\n    <string>sheen-ar.glif</string>\n    <key>sheen-ar.alt</key>\n    <string>sheen-ar.alt.glif</string>\n    <key>sheen-ar.fina</key>\n    <string>sheen-ar.fina.glif</string>\n    <key>sheen-ar.fina.alt</key>\n    <string>sheen-ar.fina.alt.glif</string>\n    <key>sheen-ar.init</key>\n    <string>sheen-ar.init.glif</string>\n    <key>sheen-ar.medi</key>\n    <string>sheen-ar.medi.glif</string>\n    <key>sheenDotbelow-ar</key>\n    <string>sheenD_otbelow-ar.glif</string>\n    <key>sheenDotbelow-ar.alt</key>\n    <string>sheenD_otbelow-ar.alt.glif</string>\n    <key>sheenDotbelow-ar.fina</key>\n    <string>sheenD_otbelow-ar.fina.glif</string>\n    <key>sheenDotbelow-ar.fina.alt</key>\n    <string>sheenD_otbelow-ar.fina.alt.glif</string>\n    <key>sheenDotbelow-ar.init</key>\n    <string>sheenD_otbelow-ar.init.glif</string>\n    <key>sheenDotbelow-ar.medi</key>\n    <string>sheenD_otbelow-ar.medi.glif</string>\n    <key>sheqel</key>\n    <string>sheqel.glif</string>\n    <key>shha-cy</key>\n    <string>shha-cy.glif</string>\n    <key>shiftInControl</key>\n    <string>shiftI_nC_ontrol.glif</string>\n    <key>shiftInControl.ss20</key>\n    <string>shiftI_nC_ontrol.ss20.glif</string>\n    <key>shiftOutControl</key>\n    <string>shiftO_utC_ontrol.glif</string>\n    <key>shiftOutControl.ss20</key>\n    <string>shiftO_utC_ontrol.ss20.glif</string>\n    <key>shin-hb</key>\n    <string>shin-hb.glif</string>\n    <key>shindagesh-hb</key>\n    <string>shindagesh-hb.glif</string>\n    <key>shindageshshindot-hb</key>\n    <string>shindageshshindot-hb.glif</string>\n    <key>shindageshsindot-hb</key>\n    <string>shindageshsindot-hb.glif</string>\n    <key>shindot-hb</key>\n    <string>shindot-hb.glif</string>\n    <key>shinshindot-hb</key>\n    <string>shinshindot-hb.glif</string>\n    <key>shinsindot-hb</key>\n    <string>shinsindot-hb.glif</string>\n    <key>sigma</key>\n    <string>sigma.glif</string>\n    <key>sigmafinal</key>\n    <string>sigmafinal.glif</string>\n    <key>sindhiampersand-ar</key>\n    <string>sindhiampersand-ar.glif</string>\n    <key>sindhipostpositionmen-ar</key>\n    <string>sindhipostpositionmen-ar.glif</string>\n    <key>sindot-hb</key>\n    <string>sindot-hb.glif</string>\n    <key>six</key>\n    <string>six.glif</string>\n    <key>six-ar</key>\n    <string>six-ar.glif</string>\n    <key>six-arinferior</key>\n    <string>six-arinferior.glif</string>\n    <key>six-arsuperior</key>\n    <string>six-arsuperior.glif</string>\n    <key>six-persian</key>\n    <string>six-persian.glif</string>\n    <key>six-persianinferior</key>\n    <string>six-persianinferior.glif</string>\n    <key>six-persiansuperior</key>\n    <string>six-persiansuperior.glif</string>\n    <key>six.dnom</key>\n    <string>six.dnom.glif</string>\n    <key>six.numr</key>\n    <string>six.numr.glif</string>\n    <key>sixinferior</key>\n    <string>sixinferior.glif</string>\n    <key>sixsuperior</key>\n    <string>sixsuperior.glif</string>\n    <key>slash</key>\n    <string>slash.glif</string>\n    <key>slash_asterisk.liga</key>\n    <string>slash_asterisk.liga.glif</string>\n    <key>slash_backslash.liga</key>\n    <string>slash_backslash.liga.glif</string>\n    <key>slash_equal_end.seq</key>\n    <string>slash_equal_end.seq.glif</string>\n    <key>slash_equal_middle.seq</key>\n    <string>slash_equal_middle.seq.glif</string>\n    <key>slash_equal_start.seq</key>\n    <string>slash_equal_start.seq.glif</string>\n    <key>slash_greater.liga</key>\n    <string>slash_greater.liga.glif</string>\n    <key>slash_slash.liga</key>\n    <string>slash_slash.liga.glif</string>\n    <key>slash_slash_equal_end.seq</key>\n    <string>slash_slash_equal_end.seq.glif</string>\n    <key>slash_slash_equal_middle.seq</key>\n    <string>slash_slash_equal_middle.seq.glif</string>\n    <key>slash_slash_equal_start.seq</key>\n    <string>slash_slash_equal_start.seq.glif</string>\n    <key>slash_slash_slash.liga</key>\n    <string>slash_slash_slash.liga.glif</string>\n    <key>softhyphen</key>\n    <string>softhyphen.glif</string>\n    <key>softsign-cy</key>\n    <string>softsign-cy.glif</string>\n    <key>softsign-cy.loclBGR</key>\n    <string>softsign-cy.loclB_G_R_.glif</string>\n    <key>space</key>\n    <string>space.glif</string>\n    <key>spaceControl</key>\n    <string>spaceC_ontrol.glif</string>\n    <key>spadeBlackSuit</key>\n    <string>spadeB_lackS_uit.glif</string>\n    <key>startOfHeadingControl</key>\n    <string>startO_fH_eadingC_ontrol.glif</string>\n    <key>startOfHeadingControl.ss20</key>\n    <string>startO_fH_eadingC_ontrol.ss20.glif</string>\n    <key>startOfTextControl</key>\n    <string>startO_fT_extC_ontrol.glif</string>\n    <key>startOfTextControl.ss20</key>\n    <string>startO_fT_extC_ontrol.ss20.glif</string>\n    <key>sterling</key>\n    <string>sterling.glif</string>\n    <key>strictlyequivalentto</key>\n    <string>strictlyequivalentto.glif</string>\n    <key>substituteControl</key>\n    <string>substituteC_ontrol.glif</string>\n    <key>substituteControl.ss20</key>\n    <string>substituteC_ontrol.ss20.glif</string>\n    <key>substituteFormTwoControl</key>\n    <string>substituteF_ormT_woC_ontrol.glif</string>\n    <key>sukun-ar</key>\n    <string>sukun-ar.glif</string>\n    <key>summation</key>\n    <string>summation.glif</string>\n    <key>sunWithRays</key>\n    <string>sunW_ithR_ays.glif</string>\n    <key>synchronousIdleControl</key>\n    <string>synchronousI_dleC_ontrol.glif</string>\n    <key>synchronousIdleControl.ss20</key>\n    <string>synchronousI_dleC_ontrol.ss20.glif</string>\n    <key>t</key>\n    <string>t.glif</string>\n    <key>tah-ar</key>\n    <string>tah-ar.glif</string>\n    <key>tah-ar.fina</key>\n    <string>tah-ar.fina.glif</string>\n    <key>tah-ar.init</key>\n    <string>tah-ar.init.glif</string>\n    <key>tah-ar.medi</key>\n    <string>tah-ar.medi.glif</string>\n    <key>tahThreedots-ar</key>\n    <string>tahT_hreedots-ar.glif</string>\n    <key>tahThreedots-ar.fina</key>\n    <string>tahT_hreedots-ar.fina.glif</string>\n    <key>tahThreedots-ar.init</key>\n    <string>tahT_hreedots-ar.init.glif</string>\n    <key>tahThreedots-ar.medi</key>\n    <string>tahT_hreedots-ar.medi.glif</string>\n    <key>tahTwodotsabove-ar</key>\n    <string>tahT_wodotsabove-ar.glif</string>\n    <key>tahTwodotsabove-ar.fina</key>\n    <string>tahT_wodotsabove-ar.fina.glif</string>\n    <key>tahTwodotsabove-ar.init</key>\n    <string>tahT_wodotsabove-ar.init.glif</string>\n    <key>tahTwodotsabove-ar.medi</key>\n    <string>tahT_wodotsabove-ar.medi.glif</string>\n    <key>tahbelow-ar</key>\n    <string>tahbelow-ar.glif</string>\n    <key>tahcenter-ar</key>\n    <string>tahcenter-ar.glif</string>\n    <key>tau</key>\n    <string>tau.glif</string>\n    <key>tav-hb</key>\n    <string>tav-hb.glif</string>\n    <key>tavdagesh-hb</key>\n    <string>tavdagesh-hb.glif</string>\n    <key>tbar</key>\n    <string>tbar.glif</string>\n    <key>tcaron</key>\n    <string>tcaron.glif</string>\n    <key>tcedilla</key>\n    <string>tcedilla.glif</string>\n    <key>tcheh-ar</key>\n    <string>tcheh-ar.glif</string>\n    <key>tcheh-ar.fina</key>\n    <string>tcheh-ar.fina.glif</string>\n    <key>tcheh-ar.init</key>\n    <string>tcheh-ar.init.glif</string>\n    <key>tcheh-ar.medi</key>\n    <string>tcheh-ar.medi.glif</string>\n    <key>tchehDotabove-ar</key>\n    <string>tchehD_otabove-ar.glif</string>\n    <key>tchehDotabove-ar.fina</key>\n    <string>tchehD_otabove-ar.fina.glif</string>\n    <key>tchehDotabove-ar.init</key>\n    <string>tchehD_otabove-ar.init.glif</string>\n    <key>tchehDotabove-ar.medi</key>\n    <string>tchehD_otabove-ar.medi.glif</string>\n    <key>tcheheh-ar</key>\n    <string>tcheheh-ar.glif</string>\n    <key>tcheheh-ar.fina</key>\n    <string>tcheheh-ar.fina.glif</string>\n    <key>tcheheh-ar.init</key>\n    <string>tcheheh-ar.init.glif</string>\n    <key>tcheheh-ar.medi</key>\n    <string>tcheheh-ar.medi.glif</string>\n    <key>tcommaaccent</key>\n    <string>tcommaaccent.glif</string>\n    <key>te-cy</key>\n    <string>te-cy.glif</string>\n    <key>te-cy.loclBGR</key>\n    <string>te-cy.loclB_G_R_.glif</string>\n    <key>teh-ar</key>\n    <string>teh-ar.glif</string>\n    <key>teh-ar.alt</key>\n    <string>teh-ar.alt.glif</string>\n    <key>teh-ar.fina</key>\n    <string>teh-ar.fina.glif</string>\n    <key>teh-ar.fina.alt</key>\n    <string>teh-ar.fina.alt.glif</string>\n    <key>teh-ar.init</key>\n    <string>teh-ar.init.glif</string>\n    <key>teh-ar.init.alt</key>\n    <string>teh-ar.init.alt.glif</string>\n    <key>teh-ar.medi</key>\n    <string>teh-ar.medi.glif</string>\n    <key>tehMarbuta-ar</key>\n    <string>tehM_arbuta-ar.glif</string>\n    <key>tehMarbuta-ar.fina</key>\n    <string>tehM_arbuta-ar.fina.glif</string>\n    <key>tehMarbutagoal-ar</key>\n    <string>tehM_arbutagoal-ar.glif</string>\n    <key>tehMarbutagoal-ar.fina</key>\n    <string>tehM_arbutagoal-ar.fina.glif</string>\n    <key>tehRing-ar</key>\n    <string>tehR_ing-ar.glif</string>\n    <key>tehRing-ar.alt</key>\n    <string>tehR_ing-ar.alt.glif</string>\n    <key>tehRing-ar.fina</key>\n    <string>tehR_ing-ar.fina.glif</string>\n    <key>tehRing-ar.fina.alt</key>\n    <string>tehR_ing-ar.fina.alt.glif</string>\n    <key>tehRing-ar.init</key>\n    <string>tehR_ing-ar.init.glif</string>\n    <key>tehRing-ar.init.alt</key>\n    <string>tehR_ing-ar.init.alt.glif</string>\n    <key>tehRing-ar.medi</key>\n    <string>tehR_ing-ar.medi.glif</string>\n    <key>tehTehabove-ar</key>\n    <string>tehT_ehabove-ar.glif</string>\n    <key>tehTehabove-ar.alt</key>\n    <string>tehT_ehabove-ar.alt.glif</string>\n    <key>tehTehabove-ar.fina</key>\n    <string>tehT_ehabove-ar.fina.glif</string>\n    <key>tehTehabove-ar.fina.alt</key>\n    <string>tehT_ehabove-ar.fina.alt.glif</string>\n    <key>tehTehabove-ar.init</key>\n    <string>tehT_ehabove-ar.init.glif</string>\n    <key>tehTehabove-ar.init.alt</key>\n    <string>tehT_ehabove-ar.init.alt.glif</string>\n    <key>tehTehabove-ar.medi</key>\n    <string>tehT_ehabove-ar.medi.glif</string>\n    <key>tehThreedotsdown-ar</key>\n    <string>tehT_hreedotsdown-ar.glif</string>\n    <key>tehThreedotsdown-ar.alt</key>\n    <string>tehT_hreedotsdown-ar.alt.glif</string>\n    <key>tehThreedotsdown-ar.fina</key>\n    <string>tehT_hreedotsdown-ar.fina.glif</string>\n    <key>tehThreedotsdown-ar.fina.alt</key>\n    <string>tehT_hreedotsdown-ar.fina.alt.glif</string>\n    <key>tehThreedotsdown-ar.init</key>\n    <string>tehT_hreedotsdown-ar.init.glif</string>\n    <key>tehThreedotsdown-ar.init.alt</key>\n    <string>tehT_hreedotsdown-ar.init.alt.glif</string>\n    <key>tehThreedotsdown-ar.medi</key>\n    <string>tehT_hreedotsdown-ar.medi.glif</string>\n    <key>tehThreedotsupbelow-ar</key>\n    <string>tehT_hreedotsupbelow-ar.glif</string>\n    <key>tehThreedotsupbelow-ar.alt</key>\n    <string>tehT_hreedotsupbelow-ar.alt.glif</string>\n    <key>tehThreedotsupbelow-ar.fina</key>\n    <string>tehT_hreedotsupbelow-ar.fina.glif</string>\n    <key>tehThreedotsupbelow-ar.fina.alt</key>\n    <string>tehT_hreedotsupbelow-ar.fina.alt.glif</string>\n    <key>tehThreedotsupbelow-ar.init</key>\n    <string>tehT_hreedotsupbelow-ar.init.glif</string>\n    <key>tehThreedotsupbelow-ar.init.alt</key>\n    <string>tehT_hreedotsupbelow-ar.init.alt.glif</string>\n    <key>tehThreedotsupbelow-ar.medi</key>\n    <string>tehT_hreedotsupbelow-ar.medi.glif</string>\n    <key>tehabove-ar.small</key>\n    <string>tehabove-ar.small.glif</string>\n    <key>teheh-ar</key>\n    <string>teheh-ar.glif</string>\n    <key>teheh-ar.alt</key>\n    <string>teheh-ar.alt.glif</string>\n    <key>teheh-ar.fina</key>\n    <string>teheh-ar.fina.glif</string>\n    <key>teheh-ar.fina.alt</key>\n    <string>teheh-ar.fina.alt.glif</string>\n    <key>teheh-ar.init</key>\n    <string>teheh-ar.init.glif</string>\n    <key>teheh-ar.init.alt</key>\n    <string>teheh-ar.init.alt.glif</string>\n    <key>teheh-ar.medi</key>\n    <string>teheh-ar.medi.glif</string>\n    <key>tenge</key>\n    <string>tenge.glif</string>\n    <key>tesh</key>\n    <string>tesh.glif</string>\n    <key>tet-hb</key>\n    <string>tet-hb.glif</string>\n    <key>tetdagesh-hb</key>\n    <string>tetdagesh-hb.glif</string>\n    <key>thal-ar</key>\n    <string>thal-ar.glif</string>\n    <key>thal-ar.fina</key>\n    <string>thal-ar.fina.glif</string>\n    <key>thalAlefabove-ar</key>\n    <string>thalA_lefabove-ar.glif</string>\n    <key>thalAlefabove-ar.fina</key>\n    <string>thalA_lefabove-ar.fina.glif</string>\n    <key>theh-ar</key>\n    <string>theh-ar.glif</string>\n    <key>theh-ar.alt</key>\n    <string>theh-ar.alt.glif</string>\n    <key>theh-ar.fina</key>\n    <string>theh-ar.fina.glif</string>\n    <key>theh-ar.fina.alt</key>\n    <string>theh-ar.fina.alt.glif</string>\n    <key>theh-ar.init</key>\n    <string>theh-ar.init.glif</string>\n    <key>theh-ar.init.alt</key>\n    <string>theh-ar.init.alt.glif</string>\n    <key>theh-ar.medi</key>\n    <string>theh-ar.medi.glif</string>\n    <key>theta</key>\n    <string>theta.glif</string>\n    <key>thetamod</key>\n    <string>thetamod.glif</string>\n    <key>thorn</key>\n    <string>thorn.glif</string>\n    <key>thousandseparator-ar</key>\n    <string>thousandseparator-ar.glif</string>\n    <key>three</key>\n    <string>three.glif</string>\n    <key>three-ar</key>\n    <string>three-ar.glif</string>\n    <key>three-arinferior</key>\n    <string>three-arinferior.glif</string>\n    <key>three-arsuperior</key>\n    <string>three-arsuperior.glif</string>\n    <key>three-persian</key>\n    <string>three-persian.glif</string>\n    <key>three-persian.small01</key>\n    <string>three-persian.small01.glif</string>\n    <key>three-persianinferior</key>\n    <string>three-persianinferior.glif</string>\n    <key>three-persiansuperior</key>\n    <string>three-persiansuperior.glif</string>\n    <key>three.dnom</key>\n    <string>three.dnom.glif</string>\n    <key>three.half</key>\n    <string>three.half.glif</string>\n    <key>three.numr</key>\n    <string>three.numr.glif</string>\n    <key>threedots-ar</key>\n    <string>threedots-ar.glif</string>\n    <key>threedotsdownabove-ar</key>\n    <string>threedotsdownabove-ar.glif</string>\n    <key>threedotsdownbelow-ar</key>\n    <string>threedotsdownbelow-ar.glif</string>\n    <key>threedotsdowncenter-ar</key>\n    <string>threedotsdowncenter-ar.glif</string>\n    <key>threedotsupabove-ar</key>\n    <string>threedotsupabove-ar.glif</string>\n    <key>threedotsupabove-ar.v2</key>\n    <string>threedotsupabove-ar.v2.glif</string>\n    <key>threedotsupbelow-ar</key>\n    <string>threedotsupbelow-ar.glif</string>\n    <key>threedotsupcenter-ar</key>\n    <string>threedotsupcenter-ar.glif</string>\n    <key>threeeighths</key>\n    <string>threeeighths.glif</string>\n    <key>threeeighths.BRACKET.500</key>\n    <string>threeeighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>threeinferior</key>\n    <string>threeinferior.glif</string>\n    <key>threequarters</key>\n    <string>threequarters.glif</string>\n    <key>threequarters.BRACKET.500</key>\n    <string>threequarters.B_R_A_C_K_E_T_.500.glif</string>\n    <key>threesuperior</key>\n    <string>threesuperior.glif</string>\n    <key>tilde</key>\n    <string>tilde.glif</string>\n    <key>tildecomb</key>\n    <string>tildecomb.glif</string>\n    <key>tildecomb.case</key>\n    <string>tildecomb.case.glif</string>\n    <key>tonos</key>\n    <string>tonos.glif</string>\n    <key>tonos.case</key>\n    <string>tonos.case.glif</string>\n    <key>topHalfBlackCircle</key>\n    <string>topH_alfB_lackC_ircle.glif</string>\n    <key>topHalfBlackDiamond</key>\n    <string>topH_alfB_lackD_iamond.glif</string>\n    <key>topHalfWhiteSquare</key>\n    <string>topH_alfW_hiteS_quare.glif</string>\n    <key>topRightHalfWhiteSquare</key>\n    <string>topR_ightH_alfW_hiteS_quare.glif</string>\n    <key>trademark</key>\n    <string>trademark.glif</string>\n    <key>tsadi-hb</key>\n    <string>tsadi-hb.glif</string>\n    <key>tsadidagesh-hb</key>\n    <string>tsadidagesh-hb.glif</string>\n    <key>tse-cy</key>\n    <string>tse-cy.glif</string>\n    <key>tse-cy.loclBGR</key>\n    <string>tse-cy.loclB_G_R_.glif</string>\n    <key>tshe-cy</key>\n    <string>tshe-cy.glif</string>\n    <key>tteh-ar</key>\n    <string>tteh-ar.glif</string>\n    <key>tteh-ar.alt</key>\n    <string>tteh-ar.alt.glif</string>\n    <key>tteh-ar.fina</key>\n    <string>tteh-ar.fina.glif</string>\n    <key>tteh-ar.fina.alt</key>\n    <string>tteh-ar.fina.alt.glif</string>\n    <key>tteh-ar.init</key>\n    <string>tteh-ar.init.glif</string>\n    <key>tteh-ar.init.alt</key>\n    <string>tteh-ar.init.alt.glif</string>\n    <key>tteh-ar.medi</key>\n    <string>tteh-ar.medi.glif</string>\n    <key>tteheh-ar</key>\n    <string>tteheh-ar.glif</string>\n    <key>tteheh-ar.alt</key>\n    <string>tteheh-ar.alt.glif</string>\n    <key>tteheh-ar.fina</key>\n    <string>tteheh-ar.fina.glif</string>\n    <key>tteheh-ar.fina.alt</key>\n    <string>tteheh-ar.fina.alt.glif</string>\n    <key>tteheh-ar.init</key>\n    <string>tteheh-ar.init.glif</string>\n    <key>tteheh-ar.init.alt</key>\n    <string>tteheh-ar.init.alt.glif</string>\n    <key>tteheh-ar.medi</key>\n    <string>tteheh-ar.medi.glif</string>\n    <key>tugrik</key>\n    <string>tugrik.glif</string>\n    <key>two</key>\n    <string>two.glif</string>\n    <key>two-ar</key>\n    <string>two-ar.glif</string>\n    <key>two-arinferior</key>\n    <string>two-arinferior.glif</string>\n    <key>two-arsuperior</key>\n    <string>two-arsuperior.glif</string>\n    <key>two-persian</key>\n    <string>two-persian.glif</string>\n    <key>two-persian.small01</key>\n    <string>two-persian.small01.glif</string>\n    <key>two-persianinferior</key>\n    <string>two-persianinferior.glif</string>\n    <key>two-persiansuperior</key>\n    <string>two-persiansuperior.glif</string>\n    <key>two.dnom</key>\n    <string>two.dnom.glif</string>\n    <key>two.half</key>\n    <string>two.half.glif</string>\n    <key>two.numr</key>\n    <string>two.numr.glif</string>\n    <key>twodotshorizontalabove-ar</key>\n    <string>twodotshorizontalabove-ar.glif</string>\n    <key>twodotshorizontalabove-ar.v2</key>\n    <string>twodotshorizontalabove-ar.v2.glif</string>\n    <key>twodotshorizontalbelow-ar</key>\n    <string>twodotshorizontalbelow-ar.glif</string>\n    <key>twodotshorizontalcenter-ar</key>\n    <string>twodotshorizontalcenter-ar.glif</string>\n    <key>twodotstahbelow-ar</key>\n    <string>twodotstahbelow-ar.glif</string>\n    <key>twodotstahcenter-ar</key>\n    <string>twodotstahcenter-ar.glif</string>\n    <key>twodotsverticalabove-ar</key>\n    <string>twodotsverticalabove-ar.glif</string>\n    <key>twodotsverticalbelow-ar</key>\n    <string>twodotsverticalbelow-ar.glif</string>\n    <key>twodotsverticalcenter-ar</key>\n    <string>twodotsverticalcenter-ar.glif</string>\n    <key>twoinferior</key>\n    <string>twoinferior.glif</string>\n    <key>twosuperior</key>\n    <string>twosuperior.glif</string>\n    <key>u</key>\n    <string>u.glif</string>\n    <key>u-ar</key>\n    <string>u-ar.glif</string>\n    <key>u-ar.fina</key>\n    <string>u-ar.fina.glif</string>\n    <key>u-cy</key>\n    <string>u-cy.glif</string>\n    <key>uHamzaabove-ar</key>\n    <string>uH_amzaabove-ar.glif</string>\n    <key>uHamzaabove-ar.fina</key>\n    <string>uH_amzaabove-ar.fina.glif</string>\n    <key>uacute</key>\n    <string>uacute.glif</string>\n    <key>ubreve</key>\n    <string>ubreve.glif</string>\n    <key>ucircumflex</key>\n    <string>ucircumflex.glif</string>\n    <key>udieresis</key>\n    <string>udieresis.glif</string>\n    <key>udotbelow</key>\n    <string>udotbelow.glif</string>\n    <key>ugrave</key>\n    <string>ugrave.glif</string>\n    <key>uhookabove</key>\n    <string>uhookabove.glif</string>\n    <key>uhorn</key>\n    <string>uhorn.glif</string>\n    <key>uhornacute</key>\n    <string>uhornacute.glif</string>\n    <key>uhorndotbelow</key>\n    <string>uhorndotbelow.glif</string>\n    <key>uhorngrave</key>\n    <string>uhorngrave.glif</string>\n    <key>uhornhookabove</key>\n    <string>uhornhookabove.glif</string>\n    <key>uhorntilde</key>\n    <string>uhorntilde.glif</string>\n    <key>uhungarumlaut</key>\n    <string>uhungarumlaut.glif</string>\n    <key>umacron</key>\n    <string>umacron.glif</string>\n    <key>umacron-cy</key>\n    <string>umacron-cy.glif</string>\n    <key>underscore</key>\n    <string>underscore.glif</string>\n    <key>underscore_end.seq</key>\n    <string>underscore_end.seq.glif</string>\n    <key>underscore_middle.seq</key>\n    <string>underscore_middle.seq.glif</string>\n    <key>underscore_start.seq</key>\n    <string>underscore_start.seq.glif</string>\n    <key>underscore_underscore.liga</key>\n    <string>underscore_underscore.liga.glif</string>\n    <key>underscoredbl</key>\n    <string>underscoredbl.glif</string>\n    <key>uni08B3</key>\n    <string>uni08B_3.glif</string>\n    <key>uni08B3.fina</key>\n    <string>uni08B_3.fina.glif</string>\n    <key>uni08B3.init</key>\n    <string>uni08B_3.init.glif</string>\n    <key>uni08B3.medi</key>\n    <string>uni08B_3.medi.glif</string>\n    <key>uni08B4</key>\n    <string>uni08B_4.glif</string>\n    <key>uni08B4.fina</key>\n    <string>uni08B_4.fina.glif</string>\n    <key>uni08B4.init</key>\n    <string>uni08B_4.init.glif</string>\n    <key>uni08B4.medi</key>\n    <string>uni08B_4.medi.glif</string>\n    <key>uni08B9.fina</key>\n    <string>uni08B_9.fina.glif</string>\n    <key>uniFBC0</key>\n    <string>uniF_B_C_0.glif</string>\n    <key>unitSeparatorControl</key>\n    <string>unitS_eparatorC_ontrol.glif</string>\n    <key>uogonek</key>\n    <string>uogonek.glif</string>\n    <key>upArrow</key>\n    <string>upA_rrow.glif</string>\n    <key>upBlackSmallTriangle</key>\n    <string>upB_lackS_mallT_riangle.glif</string>\n    <key>upBlackTriangle</key>\n    <string>upB_lackT_riangle.glif</string>\n    <key>upDashArrow</key>\n    <string>upD_ashA_rrow.glif</string>\n    <key>upDownArrow</key>\n    <string>upD_ownA_rrow.glif</string>\n    <key>upDownbaseArrow</key>\n    <string>upD_ownbaseA_rrow.glif</string>\n    <key>upLeftHalfBlackTriangle</key>\n    <string>upL_eftH_alfB_lackT_riangle.glif</string>\n    <key>upRightHalfBlackTriangle</key>\n    <string>upR_ightH_alfB_lackT_riangle.glif</string>\n    <key>upWhiteSmallTriangle</key>\n    <string>upW_hiteS_mallT_riangle.glif</string>\n    <key>upWhiteTriangle</key>\n    <string>upW_hiteT_riangle.glif</string>\n    <key>upWhiteTriangleWithDot</key>\n    <string>upW_hiteT_riangleW_ithD_ot.glif</string>\n    <key>upperHalfArc</key>\n    <string>upperH_alfA_rc.glif</string>\n    <key>upperHalfBlackWhiteCircle</key>\n    <string>upperH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>upperHalfBlock</key>\n    <string>upperH_alfB_lock.glif</string>\n    <key>upperHalfBlock.stypo</key>\n    <string>upperH_alfB_lock.stypo.glif</string>\n    <key>upperHalfInverseWhiteCircle</key>\n    <string>upperH_alfI_nverseW_hiteC_ircle.glif</string>\n    <key>upperLeftAndLowerLeftAndLowerRightBlock</key>\n    <string>upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftAndLowerRightBlock</key>\n    <string>upperL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftAndUpperRightAndLowerLeftBlock</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif</string>\n    <key>upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif</string>\n    <key>upperLeftAndUpperRightAndLowerRightBlock</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftArc</key>\n    <string>upperL_eftA_rc.glif</string>\n    <key>upperLeftBlackTriangle</key>\n    <string>upperL_eftB_lackT_riangle.glif</string>\n    <key>upperLeftBlock</key>\n    <string>upperL_eftB_lock.glif</string>\n    <key>upperLeftBlock.stypo</key>\n    <string>upperL_eftB_lock.stypo.glif</string>\n    <key>upperLeftDiagonalHalfBlackSquare</key>\n    <string>upperL_eftD_iagonalH_alfB_lackS_quare.glif</string>\n    <key>upperLeftQuadrantWhiteCircle</key>\n    <string>upperL_eftQ_uadrantW_hiteC_ircle.glif</string>\n    <key>upperLeftTriangle</key>\n    <string>upperL_eftT_riangle.glif</string>\n    <key>upperLeftWhiteCircle</key>\n    <string>upperL_eftW_hiteC_ircle.glif</string>\n    <key>upperOneEighthBlock</key>\n    <string>upperO_neE_ighthB_lock.glif</string>\n    <key>upperOneEighthBlock.stypo</key>\n    <string>upperO_neE_ighthB_lock.stypo.glif</string>\n    <key>upperRightAndLowerLeftAndLowerRightBlock</key>\n    <string>upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n    <string>upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperRightAndLowerLeftBlock</key>\n    <string>upperR_ightA_ndL_owerL_eftB_lock.glif</string>\n    <key>upperRightAndLowerLeftBlock.stypo</key>\n    <string>upperR_ightA_ndL_owerL_eftB_lock.stypo.glif</string>\n    <key>upperRightArc</key>\n    <string>upperR_ightA_rc.glif</string>\n    <key>upperRightBlackCircle</key>\n    <string>upperR_ightB_lackC_ircle.glif</string>\n    <key>upperRightBlackTriangle</key>\n    <string>upperR_ightB_lackT_riangle.glif</string>\n    <key>upperRightBlock</key>\n    <string>upperR_ightB_lock.glif</string>\n    <key>upperRightBlock.stypo</key>\n    <string>upperR_ightB_lock.stypo.glif</string>\n    <key>upperRightQuadrantWhiteCircle</key>\n    <string>upperR_ightQ_uadrantW_hiteC_ircle.glif</string>\n    <key>upperRightTriangle</key>\n    <string>upperR_ightT_riangle.glif</string>\n    <key>upperlefttolowerrightFillSquare</key>\n    <string>upperlefttolowerrightF_illS_quare.glif</string>\n    <key>upperrighttolowerleftFillSquare</key>\n    <string>upperrighttolowerleftF_illS_quare.glif</string>\n    <key>upsilon</key>\n    <string>upsilon.glif</string>\n    <key>upsilon-latin</key>\n    <string>upsilon-latin.glif</string>\n    <key>upsilondieresis</key>\n    <string>upsilondieresis.glif</string>\n    <key>upsilondieresistonos</key>\n    <string>upsilondieresistonos.glif</string>\n    <key>upsilontonos</key>\n    <string>upsilontonos.glif</string>\n    <key>uring</key>\n    <string>uring.glif</string>\n    <key>ushort-cy</key>\n    <string>ushort-cy.glif</string>\n    <key>ustraight-cy</key>\n    <string>ustraight-cy.glif</string>\n    <key>ustraightstroke-cy</key>\n    <string>ustraightstroke-cy.glif</string>\n    <key>utilde</key>\n    <string>utilde.glif</string>\n    <key>v</key>\n    <string>v.glif</string>\n    <key>vabove-ar</key>\n    <string>vabove-ar.glif</string>\n    <key>vav-hb</key>\n    <string>vav-hb.glif</string>\n    <key>vavdagesh-hb</key>\n    <string>vavdagesh-hb.glif</string>\n    <key>vavholam-hb</key>\n    <string>vavholam-hb.glif</string>\n    <key>ve-ar</key>\n    <string>ve-ar.glif</string>\n    <key>ve-ar.fina</key>\n    <string>ve-ar.fina.glif</string>\n    <key>ve-cy</key>\n    <string>ve-cy.glif</string>\n    <key>ve-cy.loclBGR</key>\n    <string>ve-cy.loclB_G_R_.glif</string>\n    <key>vectorOrCrossProduct</key>\n    <string>vectorO_rC_rossP_roduct.glif</string>\n    <key>veh-ar</key>\n    <string>veh-ar.glif</string>\n    <key>veh-ar.alt</key>\n    <string>veh-ar.alt.glif</string>\n    <key>veh-ar.fina</key>\n    <string>veh-ar.fina.glif</string>\n    <key>veh-ar.fina.alt</key>\n    <string>veh-ar.fina.alt.glif</string>\n    <key>veh-ar.init</key>\n    <string>veh-ar.init.glif</string>\n    <key>veh-ar.init.alt</key>\n    <string>veh-ar.init.alt.glif</string>\n    <key>veh-ar.medi</key>\n    <string>veh-ar.medi.glif</string>\n    <key>venus</key>\n    <string>venus.glif</string>\n    <key>verseComma-ar</key>\n    <string>verseC_omma-ar.glif</string>\n    <key>verticalBisectingLineWhiteSquare</key>\n    <string>verticalB_isectingL_ineW_hiteS_quare.glif</string>\n    <key>verticalFillCircle</key>\n    <string>verticalF_illC_ircle.glif</string>\n    <key>verticalFillSquare</key>\n    <string>verticalF_illS_quare.glif</string>\n    <key>verticalTabulationControl</key>\n    <string>verticalT_abulationC_ontrol.glif</string>\n    <key>verticalTabulationControl.ss20</key>\n    <string>verticalT_abulationC_ontrol.ss20.glif</string>\n    <key>vhook</key>\n    <string>vhook.glif</string>\n    <key>vinvertedabove-ar</key>\n    <string>vinvertedabove-ar.glif</string>\n    <key>vturned</key>\n    <string>vturned.glif</string>\n    <key>w</key>\n    <string>w.glif</string>\n    <key>w_w_w.liga</key>\n    <string>w_w_w.liga.glif</string>\n    <key>wacute</key>\n    <string>wacute.glif</string>\n    <key>wasla-ar</key>\n    <string>wasla-ar.glif</string>\n    <key>wavyhamzaabove-ar</key>\n    <string>wavyhamzaabove-ar.glif</string>\n    <key>wavyhamzabelow-ar</key>\n    <string>wavyhamzabelow-ar.glif</string>\n    <key>waw-ar</key>\n    <string>waw-ar.glif</string>\n    <key>waw-ar.fina</key>\n    <string>waw-ar.fina.glif</string>\n    <key>wawDotabove-ar</key>\n    <string>wawD_otabove-ar.glif</string>\n    <key>wawDotabove-ar.fina</key>\n    <string>wawD_otabove-ar.fina.glif</string>\n    <key>wawDotcenter-ar</key>\n    <string>wawD_otcenter-ar.glif</string>\n    <key>wawDotcenter-ar.fina</key>\n    <string>wawD_otcenter-ar.fina.glif</string>\n    <key>wawHamzaabove-ar</key>\n    <string>wawH_amzaabove-ar.glif</string>\n    <key>wawHamzaabove-ar.fina</key>\n    <string>wawH_amzaabove-ar.fina.glif</string>\n    <key>wawStraight-ar</key>\n    <string>wawS_traight-ar.glif</string>\n    <key>wawThreeAbove-ar</key>\n    <string>wawT_hreeA_bove-ar.glif</string>\n    <key>wawThreeAbove-ar.fina</key>\n    <string>wawT_hreeA_bove-ar.fina.glif</string>\n    <key>wawTwoabove-ar</key>\n    <string>wawT_woabove-ar.glif</string>\n    <key>wawTwoabove-ar.fina</key>\n    <string>wawT_woabove-ar.fina.glif</string>\n    <key>wawTwodots-ar</key>\n    <string>wawT_wodots-ar.glif</string>\n    <key>wawTwodots-ar.fina</key>\n    <string>wawT_wodots-ar.fina.glif</string>\n    <key>wawring-ar</key>\n    <string>wawring-ar.glif</string>\n    <key>wawring-ar.fina</key>\n    <string>wawring-ar.fina.glif</string>\n    <key>wcircumflex</key>\n    <string>wcircumflex.glif</string>\n    <key>wdieresis</key>\n    <string>wdieresis.glif</string>\n    <key>wgrave</key>\n    <string>wgrave.glif</string>\n    <key>whiteBullet</key>\n    <string>whiteB_ullet.glif</string>\n    <key>whiteCircle</key>\n    <string>whiteC_ircle.glif</string>\n    <key>whiteDiamond</key>\n    <string>whiteD_iamond.glif</string>\n    <key>whiteHexagon</key>\n    <string>whiteH_exagon.glif</string>\n    <key>whiteHorizontalEllipse</key>\n    <string>whiteH_orizontalE_llipse.glif</string>\n    <key>whiteInBlackSquare</key>\n    <string>whiteI_nB_lackS_quare.glif</string>\n    <key>whiteLargeSquare</key>\n    <string>whiteL_argeS_quare.glif</string>\n    <key>whiteLowerLeftQuadrantSquare</key>\n    <string>whiteL_owerL_eftQ_uadrantS_quare.glif</string>\n    <key>whiteLowerRightQuadrantSquare</key>\n    <string>whiteL_owerR_ightQ_uadrantS_quare.glif</string>\n    <key>whiteMediumDiamond</key>\n    <string>whiteM_ediumD_iamond.glif</string>\n    <key>whiteMediumLozenge</key>\n    <string>whiteM_ediumL_ozenge.glif</string>\n    <key>whiteParallelogram</key>\n    <string>whiteP_arallelogram.glif</string>\n    <key>whitePentagon</key>\n    <string>whiteP_entagon.glif</string>\n    <key>whiteRect</key>\n    <string>whiteR_ect.glif</string>\n    <key>whiteRoundedCornersSquare</key>\n    <string>whiteR_oundedC_ornersS_quare.glif</string>\n    <key>whiteSmallLozenge</key>\n    <string>whiteS_mallL_ozenge.glif</string>\n    <key>whiteSmallSquare</key>\n    <string>whiteS_mallS_quare.glif</string>\n    <key>whiteSmilingFace</key>\n    <string>whiteS_milingF_ace.glif</string>\n    <key>whiteSquare</key>\n    <string>whiteS_quare.glif</string>\n    <key>whiteUpperLeftQuadrantSquare</key>\n    <string>whiteU_pperL_eftQ_uadrantS_quare.glif</string>\n    <key>whiteUpperRightQuadrantSquare</key>\n    <string>whiteU_pperR_ightQ_uadrantS_quare.glif</string>\n    <key>whiteVerticalEllipse</key>\n    <string>whiteV_erticalE_llipse.glif</string>\n    <key>whiteVerticalRect</key>\n    <string>whiteV_erticalR_ect.glif</string>\n    <key>whiteVerysmallSquare</key>\n    <string>whiteV_erysmallS_quare.glif</string>\n    <key>wmod</key>\n    <string>wmod.glif</string>\n    <key>won</key>\n    <string>won.glif</string>\n    <key>x</key>\n    <string>x.glif</string>\n    <key>x.multiply</key>\n    <string>x.multiply.glif</string>\n    <key>xi</key>\n    <string>xi.glif</string>\n    <key>y</key>\n    <string>y.glif</string>\n    <key>yacute</key>\n    <string>yacute.glif</string>\n    <key>ycircumflex</key>\n    <string>ycircumflex.glif</string>\n    <key>ydieresis</key>\n    <string>ydieresis.glif</string>\n    <key>ydotbelow</key>\n    <string>ydotbelow.glif</string>\n    <key>year-ar</key>\n    <string>year-ar.glif</string>\n    <key>yeh-ar</key>\n    <string>yeh-ar.glif</string>\n    <key>yeh-ar.fina</key>\n    <string>yeh-ar.fina.glif</string>\n    <key>yeh-ar.fina.alt</key>\n    <string>yeh-ar.fina.alt.glif</string>\n    <key>yeh-ar.init</key>\n    <string>yeh-ar.init.glif</string>\n    <key>yeh-ar.init.alt</key>\n    <string>yeh-ar.init.alt.glif</string>\n    <key>yeh-ar.medi</key>\n    <string>yeh-ar.medi.glif</string>\n    <key>yeh-farsi</key>\n    <string>yeh-farsi.glif</string>\n    <key>yeh-farsi.fina</key>\n    <string>yeh-farsi.fina.glif</string>\n    <key>yeh-farsi.fina.alt</key>\n    <string>yeh-farsi.fina.alt.glif</string>\n    <key>yeh-farsi.init</key>\n    <string>yeh-farsi.init.glif</string>\n    <key>yeh-farsi.init.alt</key>\n    <string>yeh-farsi.init.alt.glif</string>\n    <key>yeh-farsi.medi</key>\n    <string>yeh-farsi.medi.glif</string>\n    <key>yehFourbelow-farsi</key>\n    <string>yehF_ourbelow-farsi.glif</string>\n    <key>yehFourbelow-farsi.fina</key>\n    <string>yehF_ourbelow-farsi.fina.glif</string>\n    <key>yehFourbelow-farsi.fina.alt</key>\n    <string>yehF_ourbelow-farsi.fina.alt.glif</string>\n    <key>yehFourbelow-farsi.init</key>\n    <string>yehF_ourbelow-farsi.init.glif</string>\n    <key>yehFourbelow-farsi.init.alt</key>\n    <string>yehF_ourbelow-farsi.init.alt.glif</string>\n    <key>yehFourbelow-farsi.medi</key>\n    <string>yehF_ourbelow-farsi.medi.glif</string>\n    <key>yehHamzaabove-ar</key>\n    <string>yehH_amzaabove-ar.glif</string>\n    <key>yehHamzaabove-ar.fina</key>\n    <string>yehH_amzaabove-ar.fina.glif</string>\n    <key>yehHamzaabove-ar.fina.alt</key>\n    <string>yehH_amzaabove-ar.fina.alt.glif</string>\n    <key>yehHamzaabove-ar.init</key>\n    <string>yehH_amzaabove-ar.init.glif</string>\n    <key>yehHamzaabove-ar.init.alt</key>\n    <string>yehH_amzaabove-ar.init.alt.glif</string>\n    <key>yehHamzaabove-ar.medi</key>\n    <string>yehH_amzaabove-ar.medi.glif</string>\n    <key>yehKashmiri-ar</key>\n    <string>yehK_ashmiri-ar.glif</string>\n    <key>yehKashmiri-ar.fina</key>\n    <string>yehK_ashmiri-ar.fina.glif</string>\n    <key>yehKashmiri-ar.fina.alt</key>\n    <string>yehK_ashmiri-ar.fina.alt.glif</string>\n    <key>yehKashmiri-ar.init</key>\n    <string>yehK_ashmiri-ar.init.glif</string>\n    <key>yehKashmiri-ar.init.alt</key>\n    <string>yehK_ashmiri-ar.init.alt.glif</string>\n    <key>yehKashmiri-ar.medi</key>\n    <string>yehK_ashmiri-ar.medi.glif</string>\n    <key>yehRohingya-ar</key>\n    <string>yehR_ohingya-ar.glif</string>\n    <key>yehRohingya-ar.fina</key>\n    <string>yehR_ohingya-ar.fina.glif</string>\n    <key>yehRohingya-ar.isol</key>\n    <string>yehR_ohingya-ar.isol.glif</string>\n    <key>yehTail-ar</key>\n    <string>yehT_ail-ar.glif</string>\n    <key>yehTail-ar.fina</key>\n    <string>yehT_ail-ar.fina.glif</string>\n    <key>yehTail-ar.fina.alt</key>\n    <string>yehT_ail-ar.fina.alt.glif</string>\n    <key>yehThreeabove-farsi</key>\n    <string>yehT_hreeabove-farsi.glif</string>\n    <key>yehThreeabove-farsi.fina</key>\n    <string>yehT_hreeabove-farsi.fina.glif</string>\n    <key>yehThreeabove-farsi.fina.alt</key>\n    <string>yehT_hreeabove-farsi.fina.alt.glif</string>\n    <key>yehThreeabove-farsi.init</key>\n    <string>yehT_hreeabove-farsi.init.glif</string>\n    <key>yehThreeabove-farsi.init.alt</key>\n    <string>yehT_hreeabove-farsi.init.alt.glif</string>\n    <key>yehThreeabove-farsi.medi</key>\n    <string>yehT_hreeabove-farsi.medi.glif</string>\n    <key>yehThreedotsabove-farsi</key>\n    <string>yehT_hreedotsabove-farsi.glif</string>\n    <key>yehThreedotsabove-farsi.fina</key>\n    <string>yehT_hreedotsabove-farsi.fina.glif</string>\n    <key>yehThreedotsabove-farsi.fina.alt</key>\n    <string>yehT_hreedotsabove-farsi.fina.alt.glif</string>\n    <key>yehThreedotsabove-farsi.init</key>\n    <string>yehT_hreedotsabove-farsi.init.glif</string>\n    <key>yehThreedotsabove-farsi.init.alt</key>\n    <string>yehT_hreedotsabove-farsi.init.alt.glif</string>\n    <key>yehThreedotsabove-farsi.medi</key>\n    <string>yehT_hreedotsabove-farsi.medi.glif</string>\n    <key>yehThreedotsbelow-ar</key>\n    <string>yehT_hreedotsbelow-ar.glif</string>\n    <key>yehThreedotsbelow-ar.fina</key>\n    <string>yehT_hreedotsbelow-ar.fina.glif</string>\n    <key>yehThreedotsbelow-ar.fina.alt</key>\n    <string>yehT_hreedotsbelow-ar.fina.alt.glif</string>\n    <key>yehThreedotsbelow-ar.init</key>\n    <string>yehT_hreedotsbelow-ar.init.glif</string>\n    <key>yehThreedotsbelow-ar.init.alt</key>\n    <string>yehT_hreedotsbelow-ar.init.alt.glif</string>\n    <key>yehThreedotsbelow-ar.medi</key>\n    <string>yehT_hreedotsbelow-ar.medi.glif</string>\n    <key>yehTwoabove-farsi</key>\n    <string>yehT_woabove-farsi.glif</string>\n    <key>yehTwoabove-farsi.fina</key>\n    <string>yehT_woabove-farsi.fina.glif</string>\n    <key>yehTwoabove-farsi.fina.alt</key>\n    <string>yehT_woabove-farsi.fina.alt.glif</string>\n    <key>yehTwoabove-farsi.init</key>\n    <string>yehT_woabove-farsi.init.glif</string>\n    <key>yehTwoabove-farsi.init.alt</key>\n    <string>yehT_woabove-farsi.init.alt.glif</string>\n    <key>yehTwoabove-farsi.medi</key>\n    <string>yehT_woabove-farsi.medi.glif</string>\n    <key>yehTwodotsabove-farsi</key>\n    <string>yehT_wodotsabove-farsi.glif</string>\n    <key>yehTwodotsabove-farsi.fina</key>\n    <string>yehT_wodotsabove-farsi.fina.glif</string>\n    <key>yehTwodotsabove-farsi.fina.alt</key>\n    <string>yehT_wodotsabove-farsi.fina.alt.glif</string>\n    <key>yehTwodotsabove-farsi.init</key>\n    <string>yehT_wodotsabove-farsi.init.glif</string>\n    <key>yehTwodotsabove-farsi.init.alt</key>\n    <string>yehT_wodotsabove-farsi.init.alt.glif</string>\n    <key>yehTwodotsabove-farsi.medi</key>\n    <string>yehT_wodotsabove-farsi.medi.glif</string>\n    <key>yehTwodotsbelowDotabove-ar</key>\n    <string>yehT_wodotsbelowD_otabove-ar.glif</string>\n    <key>yehTwodotsbelowDotabove-ar.fina</key>\n    <string>yehT_wodotsbelowD_otabove-ar.fina.glif</string>\n    <key>yehTwodotsbelowDotabove-ar.init</key>\n    <string>yehT_wodotsbelowD_otabove-ar.init.glif</string>\n    <key>yehTwodotsbelowDotabove-ar.init.alt</key>\n    <string>yehT_wodotsbelowD_otabove-ar.init.alt.glif</string>\n    <key>yehTwodotsbelowDotabove-ar.medi</key>\n    <string>yehT_wodotsbelowD_otabove-ar.medi.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar.fina</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.fina.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar.init</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.init.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar.init.alt</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.init.alt.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar.medi</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.medi.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.fina</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.fina.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.fina.alt</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.fina.alt.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.init</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.init.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.init.alt</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.init.alt.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.medi</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.medi.glif</string>\n    <key>yehVabove-ar</key>\n    <string>yehV_above-ar.glif</string>\n    <key>yehVabove-ar.fina</key>\n    <string>yehV_above-ar.fina.glif</string>\n    <key>yehVabove-ar.fina.alt</key>\n    <string>yehV_above-ar.fina.alt.glif</string>\n    <key>yehVabove-ar.init</key>\n    <string>yehV_above-ar.init.glif</string>\n    <key>yehVabove-ar.init.alt</key>\n    <string>yehV_above-ar.init.alt.glif</string>\n    <key>yehVabove-ar.medi</key>\n    <string>yehV_above-ar.medi.glif</string>\n    <key>yehVinverted-farsi</key>\n    <string>yehV_inverted-farsi.glif</string>\n    <key>yehVinverted-farsi.fina</key>\n    <string>yehV_inverted-farsi.fina.glif</string>\n    <key>yehVinverted-farsi.fina.alt</key>\n    <string>yehV_inverted-farsi.fina.alt.glif</string>\n    <key>yehVinverted-farsi.init</key>\n    <string>yehV_inverted-farsi.init.glif</string>\n    <key>yehVinverted-farsi.init.alt</key>\n    <string>yehV_inverted-farsi.init.alt.glif</string>\n    <key>yehVinverted-farsi.medi</key>\n    <string>yehV_inverted-farsi.medi.glif</string>\n    <key>yehbarree-ar</key>\n    <string>yehbarree-ar.glif</string>\n    <key>yehbarree-ar.fina</key>\n    <string>yehbarree-ar.fina.glif</string>\n    <key>yehbarreeHamzaabove-ar</key>\n    <string>yehbarreeH_amzaabove-ar.glif</string>\n    <key>yehbarreeHamzaabove-ar.fina</key>\n    <string>yehbarreeH_amzaabove-ar.fina.glif</string>\n    <key>yehbarreeThreeabove-ar</key>\n    <string>yehbarreeT_hreeabove-ar.glif</string>\n    <key>yehbarreeThreeabove-ar.fina</key>\n    <string>yehbarreeT_hreeabove-ar.fina.glif</string>\n    <key>yehbarreeThreeabove-ar.init</key>\n    <string>yehbarreeT_hreeabove-ar.init.glif</string>\n    <key>yehbarreeThreeabove-ar.init.alt</key>\n    <string>yehbarreeT_hreeabove-ar.init.alt.glif</string>\n    <key>yehbarreeThreeabove-ar.medi</key>\n    <string>yehbarreeT_hreeabove-ar.medi.glif</string>\n    <key>yehbarreeTwoabove-ar</key>\n    <string>yehbarreeT_woabove-ar.glif</string>\n    <key>yehbarreeTwoabove-ar.fina</key>\n    <string>yehbarreeT_woabove-ar.fina.glif</string>\n    <key>yehbarreeTwoabove-ar.init</key>\n    <string>yehbarreeT_woabove-ar.init.glif</string>\n    <key>yehbarreeTwoabove-ar.init.alt</key>\n    <string>yehbarreeT_woabove-ar.init.alt.glif</string>\n    <key>yehbarreeTwoabove-ar.medi</key>\n    <string>yehbarreeT_woabove-ar.medi.glif</string>\n    <key>yen</key>\n    <string>yen.glif</string>\n    <key>yeru-cy</key>\n    <string>yeru-cy.glif</string>\n    <key>ygrave</key>\n    <string>ygrave.glif</string>\n    <key>yhookabove</key>\n    <string>yhookabove.glif</string>\n    <key>yi-cy</key>\n    <string>yi-cy.glif</string>\n    <key>ymacron</key>\n    <string>ymacron.glif</string>\n    <key>ymod</key>\n    <string>ymod.glif</string>\n    <key>yod-hb</key>\n    <string>yod-hb.glif</string>\n    <key>yoddagesh-hb</key>\n    <string>yoddagesh-hb.glif</string>\n    <key>ytilde</key>\n    <string>ytilde.glif</string>\n    <key>yu-ar</key>\n    <string>yu-ar.glif</string>\n    <key>yu-ar.fina</key>\n    <string>yu-ar.fina.glif</string>\n    <key>z</key>\n    <string>z.glif</string>\n    <key>zacute</key>\n    <string>zacute.glif</string>\n    <key>zacute.loclPLK</key>\n    <string>zacute.loclP_L_K_.glif</string>\n    <key>zah-ar</key>\n    <string>zah-ar.glif</string>\n    <key>zah-ar.fina</key>\n    <string>zah-ar.fina.glif</string>\n    <key>zah-ar.init</key>\n    <string>zah-ar.init.glif</string>\n    <key>zah-ar.medi</key>\n    <string>zah-ar.medi.glif</string>\n    <key>zain-ar</key>\n    <string>zain-ar.glif</string>\n    <key>zain-ar.fina</key>\n    <string>zain-ar.fina.glif</string>\n    <key>zainVInvertedabove-ar</key>\n    <string>zainV_I_nvertedabove-ar.glif</string>\n    <key>zainVInvertedabove-ar.fina</key>\n    <string>zainV_I_nvertedabove-ar.fina.glif</string>\n    <key>zayin-hb</key>\n    <string>zayin-hb.glif</string>\n    <key>zayindagesh-hb</key>\n    <string>zayindagesh-hb.glif</string>\n    <key>zcaron</key>\n    <string>zcaron.glif</string>\n    <key>zdotaccent</key>\n    <string>zdotaccent.glif</string>\n    <key>ze-cy</key>\n    <string>ze-cy.glif</string>\n    <key>ze-cy.loclBGR</key>\n    <string>ze-cy.loclB_G_R_.glif</string>\n    <key>zero</key>\n    <string>zero.glif</string>\n    <key>zero-ar</key>\n    <string>zero-ar.glif</string>\n    <key>zero-arinferior</key>\n    <string>zero-arinferior.glif</string>\n    <key>zero-arsuperior</key>\n    <string>zero-arsuperior.glif</string>\n    <key>zero-persian</key>\n    <string>zero-persian.glif</string>\n    <key>zero-persianinferior</key>\n    <string>zero-persianinferior.glif</string>\n    <key>zero-persiansuperior</key>\n    <string>zero-persiansuperior.glif</string>\n    <key>zero.dnom</key>\n    <string>zero.dnom.glif</string>\n    <key>zero.numr</key>\n    <string>zero.numr.glif</string>\n    <key>zero.zero</key>\n    <string>zero.zero.glif</string>\n    <key>zeroinferior</key>\n    <string>zeroinferior.glif</string>\n    <key>zerosuperior</key>\n    <string>zerosuperior.glif</string>\n    <key>zeta</key>\n    <string>zeta.glif</string>\n    <key>zhe-cy</key>\n    <string>zhe-cy.glif</string>\n    <key>zhe-cy.loclBGR</key>\n    <string>zhe-cy.loclB_G_R_.glif</string>\n    <key>zhedescender-cy</key>\n    <string>zhedescender-cy.glif</string>\n    <key>zmod</key>\n    <string>zmod.glif</string>\n    <key>checkerBoardDeleteApple2</key>\n    <string>checkerB_oardD_eleteA_pple2.glif</string>\n    <key>checkerBoardDeleteTrs80</key>\n    <string>checkerB_oardD_eleteT_rs80.glif</string>\n    <key>checkerBoardDeleteAmstradCpc</key>\n    <string>checkerB_oardD_eleteA_mstradC_pc.glif</string>\n    <key>checkerBoardDeleteAmstradCpc.stypo</key>\n    <string>checkerB_oardD_eleteA_mstradC_pc.stypo.glif</string>\n    <key>checkerBoardFill</key>\n    <string>checkerB_oardF_ill.glif</string>\n    <key>checkerBoardFill.stypo</key>\n    <string>checkerB_oardF_ill.stypo.glif</string>\n    <key>checkerBoardFillInverse</key>\n    <string>checkerB_oardF_illI_nverse.glif</string>\n    <key>checkerBoardFillInverse.stypo</key>\n    <string>checkerB_oardF_illI_nverse.stypo.glif</string>\n    <key>blockQuadrant-UC</key>\n    <string>blockQ_uadrant-UC.glif</string>\n    <key>blockQuadrant-UC.stypo</key>\n    <string>blockQ_uadrant-UC.stypo.glif</string>\n    <key>blockQuadrant-LC</key>\n    <string>blockQ_uadrant-LC.glif</string>\n    <key>blockQuadrant-LC.stypo</key>\n    <string>blockQ_uadrant-LC.stypo.glif</string>\n    <key>blockQuadrant-ML</key>\n    <string>blockQ_uadrant-ML.glif</string>\n    <key>blockQuadrant-ML.stypo</key>\n    <string>blockQ_uadrant-ML.stypo.glif</string>\n    <key>blockQuadrant-MR</key>\n    <string>blockQ_uadrant-MR.glif</string>\n    <key>blockQuadrant-MR.stypo</key>\n    <string>blockQ_uadrant-MR.stypo.glif</string>\n    <key>blockTriangle-1</key>\n    <string>blockT_riangle-1.glif</string>\n    <key>blockTriangle-1.stypo</key>\n    <string>blockT_riangle-1.stypo.glif</string>\n    <key>blockTriangle-2</key>\n    <string>blockT_riangle-2.glif</string>\n    <key>blockTriangle-2.stypo</key>\n    <string>blockT_riangle-2.stypo.glif</string>\n    <key>blockTriangle-3</key>\n    <string>blockT_riangle-3.glif</string>\n    <key>blockTriangle-3.stypo</key>\n    <string>blockT_riangle-3.stypo.glif</string>\n    <key>blockTriangle-4</key>\n    <string>blockT_riangle-4.glif</string>\n    <key>blockTriangle-4.stypo</key>\n    <string>blockT_riangle-4.stypo.glif</string>\n    <key>blockTriangle-14</key>\n    <string>blockT_riangle-14.glif</string>\n    <key>blockTriangle-14.stypo</key>\n    <string>blockT_riangle-14.stypo.glif</string>\n    <key>blockTriangle-23</key>\n    <string>blockT_riangle-23.glif</string>\n    <key>blockTriangle-23.stypo</key>\n    <string>blockT_riangle-23.stypo.glif</string>\n    <key>blockTriangle-123</key>\n    <string>blockT_riangle-123.glif</string>\n    <key>blockTriangle-123.stypo</key>\n    <string>blockT_riangle-123.stypo.glif</string>\n    <key>blockTriangle-124</key>\n    <string>blockT_riangle-124.glif</string>\n    <key>blockTriangle-124.stypo</key>\n    <string>blockT_riangle-124.stypo.glif</string>\n    <key>blockTriangle-134</key>\n    <string>blockT_riangle-134.glif</string>\n    <key>blockTriangle-134.stypo</key>\n    <string>blockT_riangle-134.stypo.glif</string>\n    <key>blockTriangle-234</key>\n    <string>blockT_riangle-234.glif</string>\n    <key>blockTriangle-234.stypo</key>\n    <string>blockT_riangle-234.stypo.glif</string>\n    <key>blockCircle-UC</key>\n    <string>blockC_ircle-UC.glif</string>\n    <key>blockCircle-UC.stypo</key>\n    <string>blockC_ircle-UC.stypo.glif</string>\n    <key>blockCircle-LC</key>\n    <string>blockC_ircle-LC.glif</string>\n    <key>blockCircle-LC.stypo</key>\n    <string>blockC_ircle-LC.stypo.glif</string>\n    <key>blockCircle-ML</key>\n    <string>blockC_ircle-ML.glif</string>\n    <key>blockCircle-ML.stypo</key>\n    <string>blockC_ircle-ML.stypo.glif</string>\n    <key>blockCircle-MR</key>\n    <string>blockC_ircle-MR.glif</string>\n    <key>blockCircle-MR.stypo</key>\n    <string>blockC_ircle-MR.stypo.glif</string>\n    <key>blockCircle-1</key>\n    <string>blockC_ircle-1.glif</string>\n    <key>blockCircle-1.stypo</key>\n    <string>blockC_ircle-1.stypo.glif</string>\n    <key>blockCircle-2</key>\n    <string>blockC_ircle-2.glif</string>\n    <key>blockCircle-2.stypo</key>\n    <string>blockC_ircle-2.stypo.glif</string>\n    <key>blockCircle-3</key>\n    <string>blockC_ircle-3.glif</string>\n    <key>blockCircle-3.stypo</key>\n    <string>blockC_ircle-3.stypo.glif</string>\n    <key>blockCircle-4</key>\n    <string>blockC_ircle-4.glif</string>\n    <key>blockCircle-4.stypo</key>\n    <string>blockC_ircle-4.stypo.glif</string>\n    <key>blockSextant-1</key>\n    <string>blockS_extant-1.glif</string>\n    <key>blockSextant-1.stypo</key>\n    <string>blockS_extant-1.stypo.glif</string>\n    <key>blockSextant-2</key>\n    <string>blockS_extant-2.glif</string>\n    <key>blockSextant-2.stypo</key>\n    <string>blockS_extant-2.stypo.glif</string>\n    <key>blockSextant-12</key>\n    <string>blockS_extant-12.glif</string>\n    <key>blockSextant-12.stypo</key>\n    <string>blockS_extant-12.stypo.glif</string>\n    <key>blockSextant-3</key>\n    <string>blockS_extant-3.glif</string>\n    <key>blockSextant-3.stypo</key>\n    <string>blockS_extant-3.stypo.glif</string>\n    <key>blockSextant-13</key>\n    <string>blockS_extant-13.glif</string>\n    <key>blockSextant-13.stypo</key>\n    <string>blockS_extant-13.stypo.glif</string>\n    <key>blockSextant-23</key>\n    <string>blockS_extant-23.glif</string>\n    <key>blockSextant-23.stypo</key>\n    <string>blockS_extant-23.stypo.glif</string>\n    <key>blockSextant-123</key>\n    <string>blockS_extant-123.glif</string>\n    <key>blockSextant-123.stypo</key>\n    <string>blockS_extant-123.stypo.glif</string>\n    <key>blockSextant-4</key>\n    <string>blockS_extant-4.glif</string>\n    <key>blockSextant-4.stypo</key>\n    <string>blockS_extant-4.stypo.glif</string>\n    <key>blockSextant-14</key>\n    <string>blockS_extant-14.glif</string>\n    <key>blockSextant-14.stypo</key>\n    <string>blockS_extant-14.stypo.glif</string>\n    <key>blockSextant-24</key>\n    <string>blockS_extant-24.glif</string>\n    <key>blockSextant-24.stypo</key>\n    <string>blockS_extant-24.stypo.glif</string>\n    <key>blockSextant-124</key>\n    <string>blockS_extant-124.glif</string>\n    <key>blockSextant-124.stypo</key>\n    <string>blockS_extant-124.stypo.glif</string>\n    <key>blockSextant-34</key>\n    <string>blockS_extant-34.glif</string>\n    <key>blockSextant-34.stypo</key>\n    <string>blockS_extant-34.stypo.glif</string>\n    <key>blockSextant-134</key>\n    <string>blockS_extant-134.glif</string>\n    <key>blockSextant-134.stypo</key>\n    <string>blockS_extant-134.stypo.glif</string>\n    <key>blockSextant-234</key>\n    <string>blockS_extant-234.glif</string>\n    <key>blockSextant-234.stypo</key>\n    <string>blockS_extant-234.stypo.glif</string>\n    <key>blockSextant-1234</key>\n    <string>blockS_extant-1234.glif</string>\n    <key>blockSextant-1234.stypo</key>\n    <string>blockS_extant-1234.stypo.glif</string>\n    <key>blockSextant-5</key>\n    <string>blockS_extant-5.glif</string>\n    <key>blockSextant-5.stypo</key>\n    <string>blockS_extant-5.stypo.glif</string>\n    <key>blockSextant-15</key>\n    <string>blockS_extant-15.glif</string>\n    <key>blockSextant-15.stypo</key>\n    <string>blockS_extant-15.stypo.glif</string>\n    <key>blockSextant-25</key>\n    <string>blockS_extant-25.glif</string>\n    <key>blockSextant-25.stypo</key>\n    <string>blockS_extant-25.stypo.glif</string>\n    <key>blockSextant-125</key>\n    <string>blockS_extant-125.glif</string>\n    <key>blockSextant-125.stypo</key>\n    <string>blockS_extant-125.stypo.glif</string>\n    <key>blockSextant-35</key>\n    <string>blockS_extant-35.glif</string>\n    <key>blockSextant-35.stypo</key>\n    <string>blockS_extant-35.stypo.glif</string>\n    <key>blockSextant-235</key>\n    <string>blockS_extant-235.glif</string>\n    <key>blockSextant-235.stypo</key>\n    <string>blockS_extant-235.stypo.glif</string>\n    <key>blockSextant-1235</key>\n    <string>blockS_extant-1235.glif</string>\n    <key>blockSextant-1235.stypo</key>\n    <string>blockS_extant-1235.stypo.glif</string>\n    <key>blockSextant-45</key>\n    <string>blockS_extant-45.glif</string>\n    <key>blockSextant-45.stypo</key>\n    <string>blockS_extant-45.stypo.glif</string>\n    <key>blockSextant-145</key>\n    <string>blockS_extant-145.glif</string>\n    <key>blockSextant-145.stypo</key>\n    <string>blockS_extant-145.stypo.glif</string>\n    <key>blockSextant-245</key>\n    <string>blockS_extant-245.glif</string>\n    <key>blockSextant-245.stypo</key>\n    <string>blockS_extant-245.stypo.glif</string>\n    <key>blockSextant-1245</key>\n    <string>blockS_extant-1245.glif</string>\n    <key>blockSextant-1245.stypo</key>\n    <string>blockS_extant-1245.stypo.glif</string>\n    <key>blockSextant-345</key>\n    <string>blockS_extant-345.glif</string>\n    <key>blockSextant-345.stypo</key>\n    <string>blockS_extant-345.stypo.glif</string>\n    <key>blockSextant-1345</key>\n    <string>blockS_extant-1345.glif</string>\n    <key>blockSextant-1345.stypo</key>\n    <string>blockS_extant-1345.stypo.glif</string>\n    <key>blockSextant-2345</key>\n    <string>blockS_extant-2345.glif</string>\n    <key>blockSextant-2345.stypo</key>\n    <string>blockS_extant-2345.stypo.glif</string>\n    <key>blockSextant-12345</key>\n    <string>blockS_extant-12345.glif</string>\n    <key>blockSextant-12345.stypo</key>\n    <string>blockS_extant-12345.stypo.glif</string>\n    <key>blockSextant-6</key>\n    <string>blockS_extant-6.glif</string>\n    <key>blockSextant-6.stypo</key>\n    <string>blockS_extant-6.stypo.glif</string>\n    <key>blockSextant-16</key>\n    <string>blockS_extant-16.glif</string>\n    <key>blockSextant-16.stypo</key>\n    <string>blockS_extant-16.stypo.glif</string>\n    <key>blockSextant-26</key>\n    <string>blockS_extant-26.glif</string>\n    <key>blockSextant-26.stypo</key>\n    <string>blockS_extant-26.stypo.glif</string>\n    <key>blockSextant-126</key>\n    <string>blockS_extant-126.glif</string>\n    <key>blockSextant-126.stypo</key>\n    <string>blockS_extant-126.stypo.glif</string>\n    <key>blockSextant-36</key>\n    <string>blockS_extant-36.glif</string>\n    <key>blockSextant-36.stypo</key>\n    <string>blockS_extant-36.stypo.glif</string>\n    <key>blockSextant-136</key>\n    <string>blockS_extant-136.glif</string>\n    <key>blockSextant-136.stypo</key>\n    <string>blockS_extant-136.stypo.glif</string>\n    <key>blockSextant-236</key>\n    <string>blockS_extant-236.glif</string>\n    <key>blockSextant-236.stypo</key>\n    <string>blockS_extant-236.stypo.glif</string>\n    <key>blockSextant-1236</key>\n    <string>blockS_extant-1236.glif</string>\n    <key>blockSextant-1236.stypo</key>\n    <string>blockS_extant-1236.stypo.glif</string>\n    <key>blockSextant-46</key>\n    <string>blockS_extant-46.glif</string>\n    <key>blockSextant-46.stypo</key>\n    <string>blockS_extant-46.stypo.glif</string>\n    <key>blockSextant-146</key>\n    <string>blockS_extant-146.glif</string>\n    <key>blockSextant-146.stypo</key>\n    <string>blockS_extant-146.stypo.glif</string>\n    <key>blockSextant-1246</key>\n    <string>blockS_extant-1246.glif</string>\n    <key>blockSextant-1246.stypo</key>\n    <string>blockS_extant-1246.stypo.glif</string>\n    <key>blockSextant-346</key>\n    <string>blockS_extant-346.glif</string>\n    <key>blockSextant-346.stypo</key>\n    <string>blockS_extant-346.stypo.glif</string>\n    <key>blockSextant-1346</key>\n    <string>blockS_extant-1346.glif</string>\n    <key>blockSextant-1346.stypo</key>\n    <string>blockS_extant-1346.stypo.glif</string>\n    <key>blockSextant-2346</key>\n    <string>blockS_extant-2346.glif</string>\n    <key>blockSextant-2346.stypo</key>\n    <string>blockS_extant-2346.stypo.glif</string>\n    <key>blockSextant-12346</key>\n    <string>blockS_extant-12346.glif</string>\n    <key>blockSextant-12346.stypo</key>\n    <string>blockS_extant-12346.stypo.glif</string>\n    <key>blockSextant-56</key>\n    <string>blockS_extant-56.glif</string>\n    <key>blockSextant-56.stypo</key>\n    <string>blockS_extant-56.stypo.glif</string>\n    <key>blockSextant-156</key>\n    <string>blockS_extant-156.glif</string>\n    <key>blockSextant-156.stypo</key>\n    <string>blockS_extant-156.stypo.glif</string>\n    <key>blockSextant-256</key>\n    <string>blockS_extant-256.glif</string>\n    <key>blockSextant-256.stypo</key>\n    <string>blockS_extant-256.stypo.glif</string>\n    <key>blockSextant-1256</key>\n    <string>blockS_extant-1256.glif</string>\n    <key>blockSextant-1256.stypo</key>\n    <string>blockS_extant-1256.stypo.glif</string>\n    <key>blockSextant-356</key>\n    <string>blockS_extant-356.glif</string>\n    <key>blockSextant-356.stypo</key>\n    <string>blockS_extant-356.stypo.glif</string>\n    <key>blockSextant-1356</key>\n    <string>blockS_extant-1356.glif</string>\n    <key>blockSextant-1356.stypo</key>\n    <string>blockS_extant-1356.stypo.glif</string>\n    <key>blockSextant-2356</key>\n    <string>blockS_extant-2356.glif</string>\n    <key>blockSextant-2356.stypo</key>\n    <string>blockS_extant-2356.stypo.glif</string>\n    <key>blockSextant-12356</key>\n    <string>blockS_extant-12356.glif</string>\n    <key>blockSextant-12356.stypo</key>\n    <string>blockS_extant-12356.stypo.glif</string>\n    <key>blockSextant-456</key>\n    <string>blockS_extant-456.glif</string>\n    <key>blockSextant-456.stypo</key>\n    <string>blockS_extant-456.stypo.glif</string>\n    <key>blockSextant-1456</key>\n    <string>blockS_extant-1456.glif</string>\n    <key>blockSextant-1456.stypo</key>\n    <string>blockS_extant-1456.stypo.glif</string>\n    <key>blockSextant-2456</key>\n    <string>blockS_extant-2456.glif</string>\n    <key>blockSextant-2456.stypo</key>\n    <string>blockS_extant-2456.stypo.glif</string>\n    <key>blockSextant-12456</key>\n    <string>blockS_extant-12456.glif</string>\n    <key>blockSextant-12456.stypo</key>\n    <string>blockS_extant-12456.stypo.glif</string>\n    <key>blockSextant-3456</key>\n    <string>blockS_extant-3456.glif</string>\n    <key>blockSextant-3456.stypo</key>\n    <string>blockS_extant-3456.stypo.glif</string>\n    <key>blockSextant-13456</key>\n    <string>blockS_extant-13456.glif</string>\n    <key>blockSextant-13456.stypo</key>\n    <string>blockS_extant-13456.stypo.glif</string>\n    <key>blockSextant-23456</key>\n    <string>blockS_extant-23456.glif</string>\n    <key>blockSextant-23456.stypo</key>\n    <string>blockS_extant-23456.stypo.glif</string>\n    <key>blockDiagonal-1FB3C</key>\n    <string>blockD_iagonal-1FB3C.glif</string>\n    <key>blockDiagonal-1FB3C.stypo</key>\n    <string>blockD_iagonal-1FB3C.stypo.glif</string>\n    <key>blockDiagonal-1FB3D</key>\n    <string>blockD_iagonal-1FB3D.glif</string>\n    <key>blockDiagonal-1FB3D.stypo</key>\n    <string>blockD_iagonal-1FB3D.stypo.glif</string>\n    <key>blockDiagonal-1FB3E</key>\n    <string>blockD_iagonal-1FB3E.glif</string>\n    <key>blockDiagonal-1FB3E.stypo</key>\n    <string>blockD_iagonal-1FB3E.stypo.glif</string>\n    <key>blockDiagonal-1FB3F</key>\n    <string>blockD_iagonal-1FB3F.glif</string>\n    <key>blockDiagonal-1FB3F.stypo</key>\n    <string>blockD_iagonal-1FB3F.stypo.glif</string>\n    <key>blockDiagonal-1FB40</key>\n    <string>blockD_iagonal-1FB40.glif</string>\n    <key>blockDiagonal-1FB40.stypo</key>\n    <string>blockD_iagonal-1FB40.stypo.glif</string>\n    <key>blockDiagonal-1FB41</key>\n    <string>blockD_iagonal-1FB41.glif</string>\n    <key>blockDiagonal-1FB41.stypo</key>\n    <string>blockD_iagonal-1FB41.stypo.glif</string>\n    <key>blockDiagonal-1FB42</key>\n    <string>blockD_iagonal-1FB42.glif</string>\n    <key>blockDiagonal-1FB42.stypo</key>\n    <string>blockD_iagonal-1FB42.stypo.glif</string>\n    <key>blockDiagonal-1FB43</key>\n    <string>blockD_iagonal-1FB43.glif</string>\n    <key>blockDiagonal-1FB43.stypo</key>\n    <string>blockD_iagonal-1FB43.stypo.glif</string>\n    <key>blockDiagonal-1FB44</key>\n    <string>blockD_iagonal-1FB44.glif</string>\n    <key>blockDiagonal-1FB44.stypo</key>\n    <string>blockD_iagonal-1FB44.stypo.glif</string>\n    <key>blockDiagonal-1FB45</key>\n    <string>blockD_iagonal-1FB45.glif</string>\n    <key>blockDiagonal-1FB45.stypo</key>\n    <string>blockD_iagonal-1FB45.stypo.glif</string>\n    <key>blockDiagonal-1FB46</key>\n    <string>blockD_iagonal-1FB46.glif</string>\n    <key>blockDiagonal-1FB46.stypo</key>\n    <string>blockD_iagonal-1FB46.stypo.glif</string>\n    <key>blockDiagonal-1FB47</key>\n    <string>blockD_iagonal-1FB47.glif</string>\n    <key>blockDiagonal-1FB47.stypo</key>\n    <string>blockD_iagonal-1FB47.stypo.glif</string>\n    <key>blockDiagonal-1FB48</key>\n    <string>blockD_iagonal-1FB48.glif</string>\n    <key>blockDiagonal-1FB48.stypo</key>\n    <string>blockD_iagonal-1FB48.stypo.glif</string>\n    <key>blockDiagonal-1FB49</key>\n    <string>blockD_iagonal-1FB49.glif</string>\n    <key>blockDiagonal-1FB49.stypo</key>\n    <string>blockD_iagonal-1FB49.stypo.glif</string>\n    <key>blockDiagonal-1FB4A</key>\n    <string>blockD_iagonal-1FB4A.glif</string>\n    <key>blockDiagonal-1FB4A.stypo</key>\n    <string>blockD_iagonal-1FB4A.stypo.glif</string>\n    <key>blockDiagonal-1FB4B</key>\n    <string>blockD_iagonal-1FB4B.glif</string>\n    <key>blockDiagonal-1FB4B.stypo</key>\n    <string>blockD_iagonal-1FB4B.stypo.glif</string>\n    <key>blockDiagonal-1FB4C</key>\n    <string>blockD_iagonal-1FB4C.glif</string>\n    <key>blockDiagonal-1FB4C.stypo</key>\n    <string>blockD_iagonal-1FB4C.stypo.glif</string>\n    <key>blockDiagonal-1FB4D</key>\n    <string>blockD_iagonal-1FB4D.glif</string>\n    <key>blockDiagonal-1FB4D.stypo</key>\n    <string>blockD_iagonal-1FB4D.stypo.glif</string>\n    <key>blockDiagonal-1FB4E</key>\n    <string>blockD_iagonal-1FB4E.glif</string>\n    <key>blockDiagonal-1FB4E.stypo</key>\n    <string>blockD_iagonal-1FB4E.stypo.glif</string>\n    <key>blockDiagonal-1FB4F</key>\n    <string>blockD_iagonal-1FB4F.glif</string>\n    <key>blockDiagonal-1FB4F.stypo</key>\n    <string>blockD_iagonal-1FB4F.stypo.glif</string>\n    <key>blockDiagonal-1FB50</key>\n    <string>blockD_iagonal-1FB50.glif</string>\n    <key>blockDiagonal-1FB50.stypo</key>\n    <string>blockD_iagonal-1FB50.stypo.glif</string>\n    <key>blockDiagonal-1FB51</key>\n    <string>blockD_iagonal-1FB51.glif</string>\n    <key>blockDiagonal-1FB51.stypo</key>\n    <string>blockD_iagonal-1FB51.stypo.glif</string>\n    <key>blockDiagonal-1FB52</key>\n    <string>blockD_iagonal-1FB52.glif</string>\n    <key>blockDiagonal-1FB52.stypo</key>\n    <string>blockD_iagonal-1FB52.stypo.glif</string>\n    <key>blockDiagonal-1FB53</key>\n    <string>blockD_iagonal-1FB53.glif</string>\n    <key>blockDiagonal-1FB53.stypo</key>\n    <string>blockD_iagonal-1FB53.stypo.glif</string>\n    <key>blockDiagonal-1FB54</key>\n    <string>blockD_iagonal-1FB54.glif</string>\n    <key>blockDiagonal-1FB54.stypo</key>\n    <string>blockD_iagonal-1FB54.stypo.glif</string>\n    <key>blockDiagonal-1FB55</key>\n    <string>blockD_iagonal-1FB55.glif</string>\n    <key>blockDiagonal-1FB55.stypo</key>\n    <string>blockD_iagonal-1FB55.stypo.glif</string>\n    <key>blockDiagonal-1FB56</key>\n    <string>blockD_iagonal-1FB56.glif</string>\n    <key>blockDiagonal-1FB56.stypo</key>\n    <string>blockD_iagonal-1FB56.stypo.glif</string>\n    <key>blockDiagonal-1FB57</key>\n    <string>blockD_iagonal-1FB57.glif</string>\n    <key>blockDiagonal-1FB57.stypo</key>\n    <string>blockD_iagonal-1FB57.stypo.glif</string>\n    <key>blockDiagonal-1FB58</key>\n    <string>blockD_iagonal-1FB58.glif</string>\n    <key>blockDiagonal-1FB58.stypo</key>\n    <string>blockD_iagonal-1FB58.stypo.glif</string>\n    <key>blockDiagonal-1FB59</key>\n    <string>blockD_iagonal-1FB59.glif</string>\n    <key>blockDiagonal-1FB59.stypo</key>\n    <string>blockD_iagonal-1FB59.stypo.glif</string>\n    <key>blockDiagonal-1FB5A</key>\n    <string>blockD_iagonal-1FB5A.glif</string>\n    <key>blockDiagonal-1FB5A.stypo</key>\n    <string>blockD_iagonal-1FB5A.stypo.glif</string>\n    <key>blockDiagonal-1FB5B</key>\n    <string>blockD_iagonal-1FB5B.glif</string>\n    <key>blockDiagonal-1FB5B.stypo</key>\n    <string>blockD_iagonal-1FB5B.stypo.glif</string>\n    <key>blockDiagonal-1FB5C</key>\n    <string>blockD_iagonal-1FB5C.glif</string>\n    <key>blockDiagonal-1FB5C.stypo</key>\n    <string>blockD_iagonal-1FB5C.stypo.glif</string>\n    <key>blockDiagonal-1FB5D</key>\n    <string>blockD_iagonal-1FB5D.glif</string>\n    <key>blockDiagonal-1FB5D.stypo</key>\n    <string>blockD_iagonal-1FB5D.stypo.glif</string>\n    <key>blockDiagonal-1FB5E</key>\n    <string>blockD_iagonal-1FB5E.glif</string>\n    <key>blockDiagonal-1FB5E.stypo</key>\n    <string>blockD_iagonal-1FB5E.stypo.glif</string>\n    <key>blockDiagonal-1FB5F</key>\n    <string>blockD_iagonal-1FB5F.glif</string>\n    <key>blockDiagonal-1FB5F.stypo</key>\n    <string>blockD_iagonal-1FB5F.stypo.glif</string>\n    <key>blockDiagonal-1FB60</key>\n    <string>blockD_iagonal-1FB60.glif</string>\n    <key>blockDiagonal-1FB60.stypo</key>\n    <string>blockD_iagonal-1FB60.stypo.glif</string>\n    <key>blockDiagonal-1FB61</key>\n    <string>blockD_iagonal-1FB61.glif</string>\n    <key>blockDiagonal-1FB61.stypo</key>\n    <string>blockD_iagonal-1FB61.stypo.glif</string>\n    <key>blockDiagonal-1FB62</key>\n    <string>blockD_iagonal-1FB62.glif</string>\n    <key>blockDiagonal-1FB62.stypo</key>\n    <string>blockD_iagonal-1FB62.stypo.glif</string>\n    <key>blockDiagonal-1FB63</key>\n    <string>blockD_iagonal-1FB63.glif</string>\n    <key>blockDiagonal-1FB63.stypo</key>\n    <string>blockD_iagonal-1FB63.stypo.glif</string>\n    <key>blockDiagonal-1FB64</key>\n    <string>blockD_iagonal-1FB64.glif</string>\n    <key>blockDiagonal-1FB64.stypo</key>\n    <string>blockD_iagonal-1FB64.stypo.glif</string>\n    <key>blockDiagonal-1FB65</key>\n    <string>blockD_iagonal-1FB65.glif</string>\n    <key>blockDiagonal-1FB65.stypo</key>\n    <string>blockD_iagonal-1FB65.stypo.glif</string>\n    <key>blockDiagonal-1FB66</key>\n    <string>blockD_iagonal-1FB66.glif</string>\n    <key>blockDiagonal-1FB66.stypo</key>\n    <string>blockD_iagonal-1FB66.stypo.glif</string>\n    <key>blockDiagonal-1FB67</key>\n    <string>blockD_iagonal-1FB67.glif</string>\n    <key>blockDiagonal-1FB67.stypo</key>\n    <string>blockD_iagonal-1FB67.stypo.glif</string>\n    <key>blockOctant-1</key>\n    <string>blockO_ctant-1.glif</string>\n    <key>blockOctant-1.stypo</key>\n    <string>blockO_ctant-1.stypo.glif</string>\n    <key>blockOctant-2</key>\n    <string>blockO_ctant-2.glif</string>\n    <key>blockOctant-2.stypo</key>\n    <string>blockO_ctant-2.stypo.glif</string>\n    <key>blockOctant-12</key>\n    <string>blockO_ctant-12.glif</string>\n    <key>blockOctant-12.stypo</key>\n    <string>blockO_ctant-12.stypo.glif</string>\n    <key>blockOctant-3</key>\n    <string>blockO_ctant-3.glif</string>\n    <key>blockOctant-3.stypo</key>\n    <string>blockO_ctant-3.stypo.glif</string>\n    <key>blockOctant-23</key>\n    <string>blockO_ctant-23.glif</string>\n    <key>blockOctant-23.stypo</key>\n    <string>blockO_ctant-23.stypo.glif</string>\n    <key>blockOctant-123</key>\n    <string>blockO_ctant-123.glif</string>\n    <key>blockOctant-123.stypo</key>\n    <string>blockO_ctant-123.stypo.glif</string>\n    <key>blockOctant-4</key>\n    <string>blockO_ctant-4.glif</string>\n    <key>blockOctant-4.stypo</key>\n    <string>blockO_ctant-4.stypo.glif</string>\n    <key>blockOctant-14</key>\n    <string>blockO_ctant-14.glif</string>\n    <key>blockOctant-14.stypo</key>\n    <string>blockO_ctant-14.stypo.glif</string>\n    <key>blockOctant-124</key>\n    <string>blockO_ctant-124.glif</string>\n    <key>blockOctant-124.stypo</key>\n    <string>blockO_ctant-124.stypo.glif</string>\n    <key>blockOctant-34</key>\n    <string>blockO_ctant-34.glif</string>\n    <key>blockOctant-34.stypo</key>\n    <string>blockO_ctant-34.stypo.glif</string>\n    <key>blockOctant-134</key>\n    <string>blockO_ctant-134.glif</string>\n    <key>blockOctant-134.stypo</key>\n    <string>blockO_ctant-134.stypo.glif</string>\n    <key>blockOctant-234</key>\n    <string>blockO_ctant-234.glif</string>\n    <key>blockOctant-234.stypo</key>\n    <string>blockO_ctant-234.stypo.glif</string>\n    <key>blockOctant-5</key>\n    <string>blockO_ctant-5.glif</string>\n    <key>blockOctant-5.stypo</key>\n    <string>blockO_ctant-5.stypo.glif</string>\n    <key>blockOctant-15</key>\n    <string>blockO_ctant-15.glif</string>\n    <key>blockOctant-15.stypo</key>\n    <string>blockO_ctant-15.stypo.glif</string>\n    <key>blockOctant-25</key>\n    <string>blockO_ctant-25.glif</string>\n    <key>blockOctant-25.stypo</key>\n    <string>blockO_ctant-25.stypo.glif</string>\n    <key>blockOctant-125</key>\n    <string>blockO_ctant-125.glif</string>\n    <key>blockOctant-125.stypo</key>\n    <string>blockO_ctant-125.stypo.glif</string>\n    <key>blockOctant-135</key>\n    <string>blockO_ctant-135.glif</string>\n    <key>blockOctant-135.stypo</key>\n    <string>blockO_ctant-135.stypo.glif</string>\n    <key>blockOctant-235</key>\n    <string>blockO_ctant-235.glif</string>\n    <key>blockOctant-235.stypo</key>\n    <string>blockO_ctant-235.stypo.glif</string>\n    <key>blockOctant-1235</key>\n    <string>blockO_ctant-1235.glif</string>\n    <key>blockOctant-1235.stypo</key>\n    <string>blockO_ctant-1235.stypo.glif</string>\n    <key>blockOctant-45</key>\n    <string>blockO_ctant-45.glif</string>\n    <key>blockOctant-45.stypo</key>\n    <string>blockO_ctant-45.stypo.glif</string>\n    <key>blockOctant-145</key>\n    <string>blockO_ctant-145.glif</string>\n    <key>blockOctant-145.stypo</key>\n    <string>blockO_ctant-145.stypo.glif</string>\n    <key>blockOctant-245</key>\n    <string>blockO_ctant-245.glif</string>\n    <key>blockOctant-245.stypo</key>\n    <string>blockO_ctant-245.stypo.glif</string>\n    <key>blockOctant-1245</key>\n    <string>blockO_ctant-1245.glif</string>\n    <key>blockOctant-1245.stypo</key>\n    <string>blockO_ctant-1245.stypo.glif</string>\n    <key>blockOctant-345</key>\n    <string>blockO_ctant-345.glif</string>\n    <key>blockOctant-345.stypo</key>\n    <string>blockO_ctant-345.stypo.glif</string>\n    <key>blockOctant-1345</key>\n    <string>blockO_ctant-1345.glif</string>\n    <key>blockOctant-1345.stypo</key>\n    <string>blockO_ctant-1345.stypo.glif</string>\n    <key>blockOctant-2345</key>\n    <string>blockO_ctant-2345.glif</string>\n    <key>blockOctant-2345.stypo</key>\n    <string>blockO_ctant-2345.stypo.glif</string>\n    <key>blockOctant-12345</key>\n    <string>blockO_ctant-12345.glif</string>\n    <key>blockOctant-12345.stypo</key>\n    <string>blockO_ctant-12345.stypo.glif</string>\n    <key>blockOctant-6</key>\n    <string>blockO_ctant-6.glif</string>\n    <key>blockOctant-6.stypo</key>\n    <string>blockO_ctant-6.stypo.glif</string>\n    <key>blockOctant-16</key>\n    <string>blockO_ctant-16.glif</string>\n    <key>blockOctant-16.stypo</key>\n    <string>blockO_ctant-16.stypo.glif</string>\n    <key>blockOctant-26</key>\n    <string>blockO_ctant-26.glif</string>\n    <key>blockOctant-26.stypo</key>\n    <string>blockO_ctant-26.stypo.glif</string>\n    <key>blockOctant-126</key>\n    <string>blockO_ctant-126.glif</string>\n    <key>blockOctant-126.stypo</key>\n    <string>blockO_ctant-126.stypo.glif</string>\n    <key>blockOctant-36</key>\n    <string>blockO_ctant-36.glif</string>\n    <key>blockOctant-36.stypo</key>\n    <string>blockO_ctant-36.stypo.glif</string>\n    <key>blockOctant-136</key>\n    <string>blockO_ctant-136.glif</string>\n    <key>blockOctant-136.stypo</key>\n    <string>blockO_ctant-136.stypo.glif</string>\n    <key>blockOctant-236</key>\n    <string>blockO_ctant-236.glif</string>\n    <key>blockOctant-236.stypo</key>\n    <string>blockO_ctant-236.stypo.glif</string>\n    <key>blockOctant-1236</key>\n    <string>blockO_ctant-1236.glif</string>\n    <key>blockOctant-1236.stypo</key>\n    <string>blockO_ctant-1236.stypo.glif</string>\n    <key>blockOctant-146</key>\n    <string>blockO_ctant-146.glif</string>\n    <key>blockOctant-146.stypo</key>\n    <string>blockO_ctant-146.stypo.glif</string>\n    <key>blockOctant-246</key>\n    <string>blockO_ctant-246.glif</string>\n    <key>blockOctant-246.stypo</key>\n    <string>blockO_ctant-246.stypo.glif</string>\n    <key>blockOctant-1246</key>\n    <string>blockO_ctant-1246.glif</string>\n    <key>blockOctant-1246.stypo</key>\n    <string>blockO_ctant-1246.stypo.glif</string>\n    <key>blockOctant-346</key>\n    <string>blockO_ctant-346.glif</string>\n    <key>blockOctant-346.stypo</key>\n    <string>blockO_ctant-346.stypo.glif</string>\n    <key>blockOctant-1346</key>\n    <string>blockO_ctant-1346.glif</string>\n    <key>blockOctant-1346.stypo</key>\n    <string>blockO_ctant-1346.stypo.glif</string>\n    <key>blockOctant-2346</key>\n    <string>blockO_ctant-2346.glif</string>\n    <key>blockOctant-2346.stypo</key>\n    <string>blockO_ctant-2346.stypo.glif</string>\n    <key>blockOctant-12346</key>\n    <string>blockO_ctant-12346.glif</string>\n    <key>blockOctant-12346.stypo</key>\n    <string>blockO_ctant-12346.stypo.glif</string>\n    <key>blockOctant-56</key>\n    <string>blockO_ctant-56.glif</string>\n    <key>blockOctant-56.stypo</key>\n    <string>blockO_ctant-56.stypo.glif</string>\n    <key>blockOctant-156</key>\n    <string>blockO_ctant-156.glif</string>\n    <key>blockOctant-156.stypo</key>\n    <string>blockO_ctant-156.stypo.glif</string>\n    <key>blockOctant-256</key>\n    <string>blockO_ctant-256.glif</string>\n    <key>blockOctant-256.stypo</key>\n    <string>blockO_ctant-256.stypo.glif</string>\n    <key>blockOctant-1256</key>\n    <string>blockO_ctant-1256.glif</string>\n    <key>blockOctant-1256.stypo</key>\n    <string>blockO_ctant-1256.stypo.glif</string>\n    <key>blockOctant-356</key>\n    <string>blockO_ctant-356.glif</string>\n    <key>blockOctant-356.stypo</key>\n    <string>blockO_ctant-356.stypo.glif</string>\n    <key>blockOctant-1356</key>\n    <string>blockO_ctant-1356.glif</string>\n    <key>blockOctant-1356.stypo</key>\n    <string>blockO_ctant-1356.stypo.glif</string>\n    <key>blockOctant-2356</key>\n    <string>blockO_ctant-2356.glif</string>\n    <key>blockOctant-2356.stypo</key>\n    <string>blockO_ctant-2356.stypo.glif</string>\n    <key>blockOctant-12356</key>\n    <string>blockO_ctant-12356.glif</string>\n    <key>blockOctant-12356.stypo</key>\n    <string>blockO_ctant-12356.stypo.glif</string>\n    <key>blockOctant-456</key>\n    <string>blockO_ctant-456.glif</string>\n    <key>blockOctant-456.stypo</key>\n    <string>blockO_ctant-456.stypo.glif</string>\n    <key>blockOctant-1456</key>\n    <string>blockO_ctant-1456.glif</string>\n    <key>blockOctant-1456.stypo</key>\n    <string>blockO_ctant-1456.stypo.glif</string>\n    <key>blockOctant-2456</key>\n    <string>blockO_ctant-2456.glif</string>\n    <key>blockOctant-2456.stypo</key>\n    <string>blockO_ctant-2456.stypo.glif</string>\n    <key>blockOctant-12456</key>\n    <string>blockO_ctant-12456.glif</string>\n    <key>blockOctant-12456.stypo</key>\n    <string>blockO_ctant-12456.stypo.glif</string>\n    <key>blockOctant-3456</key>\n    <string>blockO_ctant-3456.glif</string>\n    <key>blockOctant-3456.stypo</key>\n    <string>blockO_ctant-3456.stypo.glif</string>\n    <key>blockOctant-13456</key>\n    <string>blockO_ctant-13456.glif</string>\n    <key>blockOctant-13456.stypo</key>\n    <string>blockO_ctant-13456.stypo.glif</string>\n    <key>blockOctant-23456</key>\n    <string>blockO_ctant-23456.glif</string>\n    <key>blockOctant-23456.stypo</key>\n    <string>blockO_ctant-23456.stypo.glif</string>\n    <key>blockOctant-123456</key>\n    <string>blockO_ctant-123456.glif</string>\n    <key>blockOctant-123456.stypo</key>\n    <string>blockO_ctant-123456.stypo.glif</string>\n    <key>blockOctant-7</key>\n    <string>blockO_ctant-7.glif</string>\n    <key>blockOctant-7.stypo</key>\n    <string>blockO_ctant-7.stypo.glif</string>\n    <key>blockOctant-17</key>\n    <string>blockO_ctant-17.glif</string>\n    <key>blockOctant-17.stypo</key>\n    <string>blockO_ctant-17.stypo.glif</string>\n    <key>blockOctant-27</key>\n    <string>blockO_ctant-27.glif</string>\n    <key>blockOctant-27.stypo</key>\n    <string>blockO_ctant-27.stypo.glif</string>\n    <key>blockOctant-127</key>\n    <string>blockO_ctant-127.glif</string>\n    <key>blockOctant-127.stypo</key>\n    <string>blockO_ctant-127.stypo.glif</string>\n    <key>blockOctant-37</key>\n    <string>blockO_ctant-37.glif</string>\n    <key>blockOctant-37.stypo</key>\n    <string>blockO_ctant-37.stypo.glif</string>\n    <key>blockOctant-137</key>\n    <string>blockO_ctant-137.glif</string>\n    <key>blockOctant-137.stypo</key>\n    <string>blockO_ctant-137.stypo.glif</string>\n    <key>blockOctant-237</key>\n    <string>blockO_ctant-237.glif</string>\n    <key>blockOctant-237.stypo</key>\n    <string>blockO_ctant-237.stypo.glif</string>\n    <key>blockOctant-1237</key>\n    <string>blockO_ctant-1237.glif</string>\n    <key>blockOctant-1237.stypo</key>\n    <string>blockO_ctant-1237.stypo.glif</string>\n    <key>blockOctant-47</key>\n    <string>blockO_ctant-47.glif</string>\n    <key>blockOctant-47.stypo</key>\n    <string>blockO_ctant-47.stypo.glif</string>\n    <key>blockOctant-147</key>\n    <string>blockO_ctant-147.glif</string>\n    <key>blockOctant-147.stypo</key>\n    <string>blockO_ctant-147.stypo.glif</string>\n    <key>blockOctant-247</key>\n    <string>blockO_ctant-247.glif</string>\n    <key>blockOctant-247.stypo</key>\n    <string>blockO_ctant-247.stypo.glif</string>\n    <key>blockOctant-1247</key>\n    <string>blockO_ctant-1247.glif</string>\n    <key>blockOctant-1247.stypo</key>\n    <string>blockO_ctant-1247.stypo.glif</string>\n    <key>blockOctant-347</key>\n    <string>blockO_ctant-347.glif</string>\n    <key>blockOctant-347.stypo</key>\n    <string>blockO_ctant-347.stypo.glif</string>\n    <key>blockOctant-1347</key>\n    <string>blockO_ctant-1347.glif</string>\n    <key>blockOctant-1347.stypo</key>\n    <string>blockO_ctant-1347.stypo.glif</string>\n    <key>blockOctant-2347</key>\n    <string>blockO_ctant-2347.glif</string>\n    <key>blockOctant-2347.stypo</key>\n    <string>blockO_ctant-2347.stypo.glif</string>\n    <key>blockOctant-12347</key>\n    <string>blockO_ctant-12347.glif</string>\n    <key>blockOctant-12347.stypo</key>\n    <string>blockO_ctant-12347.stypo.glif</string>\n    <key>blockOctant-157</key>\n    <string>blockO_ctant-157.glif</string>\n    <key>blockOctant-157.stypo</key>\n    <string>blockO_ctant-157.stypo.glif</string>\n    <key>blockOctant-257</key>\n    <string>blockO_ctant-257.glif</string>\n    <key>blockOctant-257.stypo</key>\n    <string>blockO_ctant-257.stypo.glif</string>\n    <key>blockOctant-1257</key>\n    <string>blockO_ctant-1257.glif</string>\n    <key>blockOctant-1257.stypo</key>\n    <string>blockO_ctant-1257.stypo.glif</string>\n    <key>blockOctant-357</key>\n    <string>blockO_ctant-357.glif</string>\n    <key>blockOctant-357.stypo</key>\n    <string>blockO_ctant-357.stypo.glif</string>\n    <key>blockOctant-2357</key>\n    <string>blockO_ctant-2357.glif</string>\n    <key>blockOctant-2357.stypo</key>\n    <string>blockO_ctant-2357.stypo.glif</string>\n    <key>blockOctant-12357</key>\n    <string>blockO_ctant-12357.glif</string>\n    <key>blockOctant-12357.stypo</key>\n    <string>blockO_ctant-12357.stypo.glif</string>\n    <key>blockOctant-457</key>\n    <string>blockO_ctant-457.glif</string>\n    <key>blockOctant-457.stypo</key>\n    <string>blockO_ctant-457.stypo.glif</string>\n    <key>blockOctant-1457</key>\n    <string>blockO_ctant-1457.glif</string>\n    <key>blockOctant-1457.stypo</key>\n    <string>blockO_ctant-1457.stypo.glif</string>\n    <key>blockOctant-12457</key>\n    <string>blockO_ctant-12457.glif</string>\n    <key>blockOctant-12457.stypo</key>\n    <string>blockO_ctant-12457.stypo.glif</string>\n    <key>blockOctant-3457</key>\n    <string>blockO_ctant-3457.glif</string>\n    <key>blockOctant-3457.stypo</key>\n    <string>blockO_ctant-3457.stypo.glif</string>\n    <key>blockOctant-13457</key>\n    <string>blockO_ctant-13457.glif</string>\n    <key>blockOctant-13457.stypo</key>\n    <string>blockO_ctant-13457.stypo.glif</string>\n    <key>blockOctant-23457</key>\n    <string>blockO_ctant-23457.glif</string>\n    <key>blockOctant-23457.stypo</key>\n    <string>blockO_ctant-23457.stypo.glif</string>\n    <key>blockOctant-67</key>\n    <string>blockO_ctant-67.glif</string>\n    <key>blockOctant-67.stypo</key>\n    <string>blockO_ctant-67.stypo.glif</string>\n    <key>blockOctant-167</key>\n    <string>blockO_ctant-167.glif</string>\n    <key>blockOctant-167.stypo</key>\n    <string>blockO_ctant-167.stypo.glif</string>\n    <key>blockOctant-267</key>\n    <string>blockO_ctant-267.glif</string>\n    <key>blockOctant-267.stypo</key>\n    <string>blockO_ctant-267.stypo.glif</string>\n    <key>blockOctant-1267</key>\n    <string>blockO_ctant-1267.glif</string>\n    <key>blockOctant-1267.stypo</key>\n    <string>blockO_ctant-1267.stypo.glif</string>\n    <key>blockOctant-367</key>\n    <string>blockO_ctant-367.glif</string>\n    <key>blockOctant-367.stypo</key>\n    <string>blockO_ctant-367.stypo.glif</string>\n    <key>blockOctant-1367</key>\n    <string>blockO_ctant-1367.glif</string>\n    <key>blockOctant-1367.stypo</key>\n    <string>blockO_ctant-1367.stypo.glif</string>\n    <key>blockOctant-2367</key>\n    <string>blockO_ctant-2367.glif</string>\n    <key>blockOctant-2367.stypo</key>\n    <string>blockO_ctant-2367.stypo.glif</string>\n    <key>blockOctant-12367</key>\n    <string>blockO_ctant-12367.glif</string>\n    <key>blockOctant-12367.stypo</key>\n    <string>blockO_ctant-12367.stypo.glif</string>\n    <key>blockOctant-467</key>\n    <string>blockO_ctant-467.glif</string>\n    <key>blockOctant-467.stypo</key>\n    <string>blockO_ctant-467.stypo.glif</string>\n    <key>blockOctant-1467</key>\n    <string>blockO_ctant-1467.glif</string>\n    <key>blockOctant-1467.stypo</key>\n    <string>blockO_ctant-1467.stypo.glif</string>\n    <key>blockOctant-2467</key>\n    <string>blockO_ctant-2467.glif</string>\n    <key>blockOctant-2467.stypo</key>\n    <string>blockO_ctant-2467.stypo.glif</string>\n    <key>blockOctant-12467</key>\n    <string>blockO_ctant-12467.glif</string>\n    <key>blockOctant-12467.stypo</key>\n    <string>blockO_ctant-12467.stypo.glif</string>\n    <key>blockOctant-3467</key>\n    <string>blockO_ctant-3467.glif</string>\n    <key>blockOctant-3467.stypo</key>\n    <string>blockO_ctant-3467.stypo.glif</string>\n    <key>blockOctant-13467</key>\n    <string>blockO_ctant-13467.glif</string>\n    <key>blockOctant-13467.stypo</key>\n    <string>blockO_ctant-13467.stypo.glif</string>\n    <key>blockOctant-23467</key>\n    <string>blockO_ctant-23467.glif</string>\n    <key>blockOctant-23467.stypo</key>\n    <string>blockO_ctant-23467.stypo.glif</string>\n    <key>blockOctant-123467</key>\n    <string>blockO_ctant-123467.glif</string>\n    <key>blockOctant-123467.stypo</key>\n    <string>blockO_ctant-123467.stypo.glif</string>\n    <key>blockOctant-567</key>\n    <string>blockO_ctant-567.glif</string>\n    <key>blockOctant-567.stypo</key>\n    <string>blockO_ctant-567.stypo.glif</string>\n    <key>blockOctant-1567</key>\n    <string>blockO_ctant-1567.glif</string>\n    <key>blockOctant-1567.stypo</key>\n    <string>blockO_ctant-1567.stypo.glif</string>\n    <key>blockOctant-2567</key>\n    <string>blockO_ctant-2567.glif</string>\n    <key>blockOctant-2567.stypo</key>\n    <string>blockO_ctant-2567.stypo.glif</string>\n    <key>blockOctant-12567</key>\n    <string>blockO_ctant-12567.glif</string>\n    <key>blockOctant-12567.stypo</key>\n    <string>blockO_ctant-12567.stypo.glif</string>\n    <key>blockOctant-3567</key>\n    <string>blockO_ctant-3567.glif</string>\n    <key>blockOctant-3567.stypo</key>\n    <string>blockO_ctant-3567.stypo.glif</string>\n    <key>blockOctant-13567</key>\n    <string>blockO_ctant-13567.glif</string>\n    <key>blockOctant-13567.stypo</key>\n    <string>blockO_ctant-13567.stypo.glif</string>\n    <key>blockOctant-23567</key>\n    <string>blockO_ctant-23567.glif</string>\n    <key>blockOctant-23567.stypo</key>\n    <string>blockO_ctant-23567.stypo.glif</string>\n    <key>blockOctant-123567</key>\n    <string>blockO_ctant-123567.glif</string>\n    <key>blockOctant-123567.stypo</key>\n    <string>blockO_ctant-123567.stypo.glif</string>\n    <key>blockOctant-4567</key>\n    <string>blockO_ctant-4567.glif</string>\n    <key>blockOctant-4567.stypo</key>\n    <string>blockO_ctant-4567.stypo.glif</string>\n    <key>blockOctant-14567</key>\n    <string>blockO_ctant-14567.glif</string>\n    <key>blockOctant-14567.stypo</key>\n    <string>blockO_ctant-14567.stypo.glif</string>\n    <key>blockOctant-24567</key>\n    <string>blockO_ctant-24567.glif</string>\n    <key>blockOctant-24567.stypo</key>\n    <string>blockO_ctant-24567.stypo.glif</string>\n    <key>blockOctant-124567</key>\n    <string>blockO_ctant-124567.glif</string>\n    <key>blockOctant-124567.stypo</key>\n    <string>blockO_ctant-124567.stypo.glif</string>\n    <key>blockOctant-34567</key>\n    <string>blockO_ctant-34567.glif</string>\n    <key>blockOctant-34567.stypo</key>\n    <string>blockO_ctant-34567.stypo.glif</string>\n    <key>blockOctant-134567</key>\n    <string>blockO_ctant-134567.glif</string>\n    <key>blockOctant-134567.stypo</key>\n    <string>blockO_ctant-134567.stypo.glif</string>\n    <key>blockOctant-234567</key>\n    <string>blockO_ctant-234567.glif</string>\n    <key>blockOctant-234567.stypo</key>\n    <string>blockO_ctant-234567.stypo.glif</string>\n    <key>blockOctant-1234567</key>\n    <string>blockO_ctant-1234567.glif</string>\n    <key>blockOctant-1234567.stypo</key>\n    <string>blockO_ctant-1234567.stypo.glif</string>\n    <key>blockOctant-8</key>\n    <string>blockO_ctant-8.glif</string>\n    <key>blockOctant-8.stypo</key>\n    <string>blockO_ctant-8.stypo.glif</string>\n    <key>blockOctant-18</key>\n    <string>blockO_ctant-18.glif</string>\n    <key>blockOctant-18.stypo</key>\n    <string>blockO_ctant-18.stypo.glif</string>\n    <key>blockOctant-28</key>\n    <string>blockO_ctant-28.glif</string>\n    <key>blockOctant-28.stypo</key>\n    <string>blockO_ctant-28.stypo.glif</string>\n    <key>blockOctant-128</key>\n    <string>blockO_ctant-128.glif</string>\n    <key>blockOctant-128.stypo</key>\n    <string>blockO_ctant-128.stypo.glif</string>\n    <key>blockOctant-38</key>\n    <string>blockO_ctant-38.glif</string>\n    <key>blockOctant-38.stypo</key>\n    <string>blockO_ctant-38.stypo.glif</string>\n    <key>blockOctant-138</key>\n    <string>blockO_ctant-138.glif</string>\n    <key>blockOctant-138.stypo</key>\n    <string>blockO_ctant-138.stypo.glif</string>\n    <key>blockOctant-238</key>\n    <string>blockO_ctant-238.glif</string>\n    <key>blockOctant-238.stypo</key>\n    <string>blockO_ctant-238.stypo.glif</string>\n    <key>blockOctant-1238</key>\n    <string>blockO_ctant-1238.glif</string>\n    <key>blockOctant-1238.stypo</key>\n    <string>blockO_ctant-1238.stypo.glif</string>\n    <key>blockOctant-48</key>\n    <string>blockO_ctant-48.glif</string>\n    <key>blockOctant-48.stypo</key>\n    <string>blockO_ctant-48.stypo.glif</string>\n    <key>blockOctant-148</key>\n    <string>blockO_ctant-148.glif</string>\n    <key>blockOctant-148.stypo</key>\n    <string>blockO_ctant-148.stypo.glif</string>\n    <key>blockOctant-248</key>\n    <string>blockO_ctant-248.glif</string>\n    <key>blockOctant-248.stypo</key>\n    <string>blockO_ctant-248.stypo.glif</string>\n    <key>blockOctant-1248</key>\n    <string>blockO_ctant-1248.glif</string>\n    <key>blockOctant-1248.stypo</key>\n    <string>blockO_ctant-1248.stypo.glif</string>\n    <key>blockOctant-348</key>\n    <string>blockO_ctant-348.glif</string>\n    <key>blockOctant-348.stypo</key>\n    <string>blockO_ctant-348.stypo.glif</string>\n    <key>blockOctant-1348</key>\n    <string>blockO_ctant-1348.glif</string>\n    <key>blockOctant-1348.stypo</key>\n    <string>blockO_ctant-1348.stypo.glif</string>\n    <key>blockOctant-2348</key>\n    <string>blockO_ctant-2348.glif</string>\n    <key>blockOctant-2348.stypo</key>\n    <string>blockO_ctant-2348.stypo.glif</string>\n    <key>blockOctant-12348</key>\n    <string>blockO_ctant-12348.glif</string>\n    <key>blockOctant-12348.stypo</key>\n    <string>blockO_ctant-12348.stypo.glif</string>\n    <key>blockOctant-58</key>\n    <string>blockO_ctant-58.glif</string>\n    <key>blockOctant-58.stypo</key>\n    <string>blockO_ctant-58.stypo.glif</string>\n    <key>blockOctant-158</key>\n    <string>blockO_ctant-158.glif</string>\n    <key>blockOctant-158.stypo</key>\n    <string>blockO_ctant-158.stypo.glif</string>\n    <key>blockOctant-258</key>\n    <string>blockO_ctant-258.glif</string>\n    <key>blockOctant-258.stypo</key>\n    <string>blockO_ctant-258.stypo.glif</string>\n    <key>blockOctant-1258</key>\n    <string>blockO_ctant-1258.glif</string>\n    <key>blockOctant-1258.stypo</key>\n    <string>blockO_ctant-1258.stypo.glif</string>\n    <key>blockOctant-358</key>\n    <string>blockO_ctant-358.glif</string>\n    <key>blockOctant-358.stypo</key>\n    <string>blockO_ctant-358.stypo.glif</string>\n    <key>blockOctant-1358</key>\n    <string>blockO_ctant-1358.glif</string>\n    <key>blockOctant-1358.stypo</key>\n    <string>blockO_ctant-1358.stypo.glif</string>\n    <key>blockOctant-2358</key>\n    <string>blockO_ctant-2358.glif</string>\n    <key>blockOctant-2358.stypo</key>\n    <string>blockO_ctant-2358.stypo.glif</string>\n    <key>blockOctant-12358</key>\n    <string>blockO_ctant-12358.glif</string>\n    <key>blockOctant-12358.stypo</key>\n    <string>blockO_ctant-12358.stypo.glif</string>\n    <key>blockOctant-458</key>\n    <string>blockO_ctant-458.glif</string>\n    <key>blockOctant-458.stypo</key>\n    <string>blockO_ctant-458.stypo.glif</string>\n    <key>blockOctant-1458</key>\n    <string>blockO_ctant-1458.glif</string>\n    <key>blockOctant-1458.stypo</key>\n    <string>blockO_ctant-1458.stypo.glif</string>\n    <key>blockOctant-2458</key>\n    <string>blockO_ctant-2458.glif</string>\n    <key>blockOctant-2458.stypo</key>\n    <string>blockO_ctant-2458.stypo.glif</string>\n    <key>blockOctant-12458</key>\n    <string>blockO_ctant-12458.glif</string>\n    <key>blockOctant-12458.stypo</key>\n    <string>blockO_ctant-12458.stypo.glif</string>\n    <key>blockOctant-3458</key>\n    <string>blockO_ctant-3458.glif</string>\n    <key>blockOctant-3458.stypo</key>\n    <string>blockO_ctant-3458.stypo.glif</string>\n    <key>blockOctant-13458</key>\n    <string>blockO_ctant-13458.glif</string>\n    <key>blockOctant-13458.stypo</key>\n    <string>blockO_ctant-13458.stypo.glif</string>\n    <key>blockOctant-23458</key>\n    <string>blockO_ctant-23458.glif</string>\n    <key>blockOctant-23458.stypo</key>\n    <string>blockO_ctant-23458.stypo.glif</string>\n    <key>blockOctant-123458</key>\n    <string>blockO_ctant-123458.glif</string>\n    <key>blockOctant-123458.stypo</key>\n    <string>blockO_ctant-123458.stypo.glif</string>\n    <key>blockOctant-168</key>\n    <string>blockO_ctant-168.glif</string>\n    <key>blockOctant-168.stypo</key>\n    <string>blockO_ctant-168.stypo.glif</string>\n    <key>blockOctant-268</key>\n    <string>blockO_ctant-268.glif</string>\n    <key>blockOctant-268.stypo</key>\n    <string>blockO_ctant-268.stypo.glif</string>\n    <key>blockOctant-1268</key>\n    <string>blockO_ctant-1268.glif</string>\n    <key>blockOctant-1268.stypo</key>\n    <string>blockO_ctant-1268.stypo.glif</string>\n    <key>blockOctant-368</key>\n    <string>blockO_ctant-368.glif</string>\n    <key>blockOctant-368.stypo</key>\n    <string>blockO_ctant-368.stypo.glif</string>\n    <key>blockOctant-2368</key>\n    <string>blockO_ctant-2368.glif</string>\n    <key>blockOctant-2368.stypo</key>\n    <string>blockO_ctant-2368.stypo.glif</string>\n    <key>blockOctant-12368</key>\n    <string>blockO_ctant-12368.glif</string>\n    <key>blockOctant-12368.stypo</key>\n    <string>blockO_ctant-12368.stypo.glif</string>\n    <key>blockOctant-468</key>\n    <string>blockO_ctant-468.glif</string>\n    <key>blockOctant-468.stypo</key>\n    <string>blockO_ctant-468.stypo.glif</string>\n    <key>blockOctant-1468</key>\n    <string>blockO_ctant-1468.glif</string>\n    <key>blockOctant-1468.stypo</key>\n    <string>blockO_ctant-1468.stypo.glif</string>\n    <key>blockOctant-12468</key>\n    <string>blockO_ctant-12468.glif</string>\n    <key>blockOctant-12468.stypo</key>\n    <string>blockO_ctant-12468.stypo.glif</string>\n    <key>blockOctant-3468</key>\n    <string>blockO_ctant-3468.glif</string>\n    <key>blockOctant-3468.stypo</key>\n    <string>blockO_ctant-3468.stypo.glif</string>\n    <key>blockOctant-13468</key>\n    <string>blockO_ctant-13468.glif</string>\n    <key>blockOctant-13468.stypo</key>\n    <string>blockO_ctant-13468.stypo.glif</string>\n    <key>blockOctant-23468</key>\n    <string>blockO_ctant-23468.glif</string>\n    <key>blockOctant-23468.stypo</key>\n    <string>blockO_ctant-23468.stypo.glif</string>\n    <key>blockOctant-568</key>\n    <string>blockO_ctant-568.glif</string>\n    <key>blockOctant-568.stypo</key>\n    <string>blockO_ctant-568.stypo.glif</string>\n    <key>blockOctant-1568</key>\n    <string>blockO_ctant-1568.glif</string>\n    <key>blockOctant-1568.stypo</key>\n    <string>blockO_ctant-1568.stypo.glif</string>\n    <key>blockOctant-2568</key>\n    <string>blockO_ctant-2568.glif</string>\n    <key>blockOctant-2568.stypo</key>\n    <string>blockO_ctant-2568.stypo.glif</string>\n    <key>blockOctant-12568</key>\n    <string>blockO_ctant-12568.glif</string>\n    <key>blockOctant-12568.stypo</key>\n    <string>blockO_ctant-12568.stypo.glif</string>\n    <key>blockOctant-3568</key>\n    <string>blockO_ctant-3568.glif</string>\n    <key>blockOctant-3568.stypo</key>\n    <string>blockO_ctant-3568.stypo.glif</string>\n    <key>blockOctant-13568</key>\n    <string>blockO_ctant-13568.glif</string>\n    <key>blockOctant-13568.stypo</key>\n    <string>blockO_ctant-13568.stypo.glif</string>\n    <key>blockOctant-23568</key>\n    <string>blockO_ctant-23568.glif</string>\n    <key>blockOctant-23568.stypo</key>\n    <string>blockO_ctant-23568.stypo.glif</string>\n    <key>blockOctant-123568</key>\n    <string>blockO_ctant-123568.glif</string>\n    <key>blockOctant-123568.stypo</key>\n    <string>blockO_ctant-123568.stypo.glif</string>\n    <key>blockOctant-4568</key>\n    <string>blockO_ctant-4568.glif</string>\n    <key>blockOctant-4568.stypo</key>\n    <string>blockO_ctant-4568.stypo.glif</string>\n    <key>blockOctant-14568</key>\n    <string>blockO_ctant-14568.glif</string>\n    <key>blockOctant-14568.stypo</key>\n    <string>blockO_ctant-14568.stypo.glif</string>\n    <key>blockOctant-24568</key>\n    <string>blockO_ctant-24568.glif</string>\n    <key>blockOctant-24568.stypo</key>\n    <string>blockO_ctant-24568.stypo.glif</string>\n    <key>blockOctant-124568</key>\n    <string>blockO_ctant-124568.glif</string>\n    <key>blockOctant-124568.stypo</key>\n    <string>blockO_ctant-124568.stypo.glif</string>\n    <key>blockOctant-34568</key>\n    <string>blockO_ctant-34568.glif</string>\n    <key>blockOctant-34568.stypo</key>\n    <string>blockO_ctant-34568.stypo.glif</string>\n    <key>blockOctant-134568</key>\n    <string>blockO_ctant-134568.glif</string>\n    <key>blockOctant-134568.stypo</key>\n    <string>blockO_ctant-134568.stypo.glif</string>\n    <key>blockOctant-234568</key>\n    <string>blockO_ctant-234568.glif</string>\n    <key>blockOctant-234568.stypo</key>\n    <string>blockO_ctant-234568.stypo.glif</string>\n    <key>blockOctant-1234568</key>\n    <string>blockO_ctant-1234568.glif</string>\n    <key>blockOctant-1234568.stypo</key>\n    <string>blockO_ctant-1234568.stypo.glif</string>\n    <key>blockOctant-178</key>\n    <string>blockO_ctant-178.glif</string>\n    <key>blockOctant-178.stypo</key>\n    <string>blockO_ctant-178.stypo.glif</string>\n    <key>blockOctant-278</key>\n    <string>blockO_ctant-278.glif</string>\n    <key>blockOctant-278.stypo</key>\n    <string>blockO_ctant-278.stypo.glif</string>\n    <key>blockOctant-1278</key>\n    <string>blockO_ctant-1278.glif</string>\n    <key>blockOctant-1278.stypo</key>\n    <string>blockO_ctant-1278.stypo.glif</string>\n    <key>blockOctant-378</key>\n    <string>blockO_ctant-378.glif</string>\n    <key>blockOctant-378.stypo</key>\n    <string>blockO_ctant-378.stypo.glif</string>\n    <key>blockOctant-1378</key>\n    <string>blockO_ctant-1378.glif</string>\n    <key>blockOctant-1378.stypo</key>\n    <string>blockO_ctant-1378.stypo.glif</string>\n    <key>blockOctant-2378</key>\n    <string>blockO_ctant-2378.glif</string>\n    <key>blockOctant-2378.stypo</key>\n    <string>blockO_ctant-2378.stypo.glif</string>\n    <key>blockOctant-12378</key>\n    <string>blockO_ctant-12378.glif</string>\n    <key>blockOctant-12378.stypo</key>\n    <string>blockO_ctant-12378.stypo.glif</string>\n    <key>blockOctant-478</key>\n    <string>blockO_ctant-478.glif</string>\n    <key>blockOctant-478.stypo</key>\n    <string>blockO_ctant-478.stypo.glif</string>\n    <key>blockOctant-1478</key>\n    <string>blockO_ctant-1478.glif</string>\n    <key>blockOctant-1478.stypo</key>\n    <string>blockO_ctant-1478.stypo.glif</string>\n    <key>blockOctant-2478</key>\n    <string>blockO_ctant-2478.glif</string>\n    <key>blockOctant-2478.stypo</key>\n    <string>blockO_ctant-2478.stypo.glif</string>\n    <key>blockOctant-12478</key>\n    <string>blockO_ctant-12478.glif</string>\n    <key>blockOctant-12478.stypo</key>\n    <string>blockO_ctant-12478.stypo.glif</string>\n    <key>blockOctant-3478</key>\n    <string>blockO_ctant-3478.glif</string>\n    <key>blockOctant-3478.stypo</key>\n    <string>blockO_ctant-3478.stypo.glif</string>\n    <key>blockOctant-13478</key>\n    <string>blockO_ctant-13478.glif</string>\n    <key>blockOctant-13478.stypo</key>\n    <string>blockO_ctant-13478.stypo.glif</string>\n    <key>blockOctant-23478</key>\n    <string>blockO_ctant-23478.glif</string>\n    <key>blockOctant-23478.stypo</key>\n    <string>blockO_ctant-23478.stypo.glif</string>\n    <key>blockOctant-123478</key>\n    <string>blockO_ctant-123478.glif</string>\n    <key>blockOctant-123478.stypo</key>\n    <string>blockO_ctant-123478.stypo.glif</string>\n    <key>blockOctant-578</key>\n    <string>blockO_ctant-578.glif</string>\n    <key>blockOctant-578.stypo</key>\n    <string>blockO_ctant-578.stypo.glif</string>\n    <key>blockOctant-1578</key>\n    <string>blockO_ctant-1578.glif</string>\n    <key>blockOctant-1578.stypo</key>\n    <string>blockO_ctant-1578.stypo.glif</string>\n    <key>blockOctant-2578</key>\n    <string>blockO_ctant-2578.glif</string>\n    <key>blockOctant-2578.stypo</key>\n    <string>blockO_ctant-2578.stypo.glif</string>\n    <key>blockOctant-12578</key>\n    <string>blockO_ctant-12578.glif</string>\n    <key>blockOctant-12578.stypo</key>\n    <string>blockO_ctant-12578.stypo.glif</string>\n    <key>blockOctant-3578</key>\n    <string>blockO_ctant-3578.glif</string>\n    <key>blockOctant-3578.stypo</key>\n    <string>blockO_ctant-3578.stypo.glif</string>\n    <key>blockOctant-13578</key>\n    <string>blockO_ctant-13578.glif</string>\n    <key>blockOctant-13578.stypo</key>\n    <string>blockO_ctant-13578.stypo.glif</string>\n    <key>blockOctant-23578</key>\n    <string>blockO_ctant-23578.glif</string>\n    <key>blockOctant-23578.stypo</key>\n    <string>blockO_ctant-23578.stypo.glif</string>\n    <key>blockOctant-123578</key>\n    <string>blockO_ctant-123578.glif</string>\n    <key>blockOctant-123578.stypo</key>\n    <string>blockO_ctant-123578.stypo.glif</string>\n    <key>blockOctant-4578</key>\n    <string>blockO_ctant-4578.glif</string>\n    <key>blockOctant-4578.stypo</key>\n    <string>blockO_ctant-4578.stypo.glif</string>\n    <key>blockOctant-14578</key>\n    <string>blockO_ctant-14578.glif</string>\n    <key>blockOctant-14578.stypo</key>\n    <string>blockO_ctant-14578.stypo.glif</string>\n    <key>blockOctant-24578</key>\n    <string>blockO_ctant-24578.glif</string>\n    <key>blockOctant-24578.stypo</key>\n    <string>blockO_ctant-24578.stypo.glif</string>\n    <key>blockOctant-124578</key>\n    <string>blockO_ctant-124578.glif</string>\n    <key>blockOctant-124578.stypo</key>\n    <string>blockO_ctant-124578.stypo.glif</string>\n    <key>blockOctant-34578</key>\n    <string>blockO_ctant-34578.glif</string>\n    <key>blockOctant-34578.stypo</key>\n    <string>blockO_ctant-34578.stypo.glif</string>\n    <key>blockOctant-134578</key>\n    <string>blockO_ctant-134578.glif</string>\n    <key>blockOctant-134578.stypo</key>\n    <string>blockO_ctant-134578.stypo.glif</string>\n    <key>blockOctant-234578</key>\n    <string>blockO_ctant-234578.glif</string>\n    <key>blockOctant-234578.stypo</key>\n    <string>blockO_ctant-234578.stypo.glif</string>\n    <key>blockOctant-1234578</key>\n    <string>blockO_ctant-1234578.glif</string>\n    <key>blockOctant-1234578.stypo</key>\n    <string>blockO_ctant-1234578.stypo.glif</string>\n    <key>blockOctant-678</key>\n    <string>blockO_ctant-678.glif</string>\n    <key>blockOctant-678.stypo</key>\n    <string>blockO_ctant-678.stypo.glif</string>\n    <key>blockOctant-1678</key>\n    <string>blockO_ctant-1678.glif</string>\n    <key>blockOctant-1678.stypo</key>\n    <string>blockO_ctant-1678.stypo.glif</string>\n    <key>blockOctant-2678</key>\n    <string>blockO_ctant-2678.glif</string>\n    <key>blockOctant-2678.stypo</key>\n    <string>blockO_ctant-2678.stypo.glif</string>\n    <key>blockOctant-12678</key>\n    <string>blockO_ctant-12678.glif</string>\n    <key>blockOctant-12678.stypo</key>\n    <string>blockO_ctant-12678.stypo.glif</string>\n    <key>blockOctant-3678</key>\n    <string>blockO_ctant-3678.glif</string>\n    <key>blockOctant-3678.stypo</key>\n    <string>blockO_ctant-3678.stypo.glif</string>\n    <key>blockOctant-13678</key>\n    <string>blockO_ctant-13678.glif</string>\n    <key>blockOctant-13678.stypo</key>\n    <string>blockO_ctant-13678.stypo.glif</string>\n    <key>blockOctant-23678</key>\n    <string>blockO_ctant-23678.glif</string>\n    <key>blockOctant-23678.stypo</key>\n    <string>blockO_ctant-23678.stypo.glif</string>\n    <key>blockOctant-123678</key>\n    <string>blockO_ctant-123678.glif</string>\n    <key>blockOctant-123678.stypo</key>\n    <string>blockO_ctant-123678.stypo.glif</string>\n    <key>blockOctant-4678</key>\n    <string>blockO_ctant-4678.glif</string>\n    <key>blockOctant-4678.stypo</key>\n    <string>blockO_ctant-4678.stypo.glif</string>\n    <key>blockOctant-14678</key>\n    <string>blockO_ctant-14678.glif</string>\n    <key>blockOctant-14678.stypo</key>\n    <string>blockO_ctant-14678.stypo.glif</string>\n    <key>blockOctant-24678</key>\n    <string>blockO_ctant-24678.glif</string>\n    <key>blockOctant-24678.stypo</key>\n    <string>blockO_ctant-24678.stypo.glif</string>\n    <key>blockOctant-124678</key>\n    <string>blockO_ctant-124678.glif</string>\n    <key>blockOctant-124678.stypo</key>\n    <string>blockO_ctant-124678.stypo.glif</string>\n    <key>blockOctant-34678</key>\n    <string>blockO_ctant-34678.glif</string>\n    <key>blockOctant-34678.stypo</key>\n    <string>blockO_ctant-34678.stypo.glif</string>\n    <key>blockOctant-134678</key>\n    <string>blockO_ctant-134678.glif</string>\n    <key>blockOctant-134678.stypo</key>\n    <string>blockO_ctant-134678.stypo.glif</string>\n    <key>blockOctant-234678</key>\n    <string>blockO_ctant-234678.glif</string>\n    <key>blockOctant-234678.stypo</key>\n    <string>blockO_ctant-234678.stypo.glif</string>\n    <key>blockOctant-1234678</key>\n    <string>blockO_ctant-1234678.glif</string>\n    <key>blockOctant-1234678.stypo</key>\n    <string>blockO_ctant-1234678.stypo.glif</string>\n    <key>blockOctant-15678</key>\n    <string>blockO_ctant-15678.glif</string>\n    <key>blockOctant-15678.stypo</key>\n    <string>blockO_ctant-15678.stypo.glif</string>\n    <key>blockOctant-25678</key>\n    <string>blockO_ctant-25678.glif</string>\n    <key>blockOctant-25678.stypo</key>\n    <string>blockO_ctant-25678.stypo.glif</string>\n    <key>blockOctant-125678</key>\n    <string>blockO_ctant-125678.glif</string>\n    <key>blockOctant-125678.stypo</key>\n    <string>blockO_ctant-125678.stypo.glif</string>\n    <key>blockOctant-35678</key>\n    <string>blockO_ctant-35678.glif</string>\n    <key>blockOctant-35678.stypo</key>\n    <string>blockO_ctant-35678.stypo.glif</string>\n    <key>blockOctant-235678</key>\n    <string>blockO_ctant-235678.glif</string>\n    <key>blockOctant-235678.stypo</key>\n    <string>blockO_ctant-235678.stypo.glif</string>\n    <key>blockOctant-1235678</key>\n    <string>blockO_ctant-1235678.glif</string>\n    <key>blockOctant-1235678.stypo</key>\n    <string>blockO_ctant-1235678.stypo.glif</string>\n    <key>blockOctant-45678</key>\n    <string>blockO_ctant-45678.glif</string>\n    <key>blockOctant-45678.stypo</key>\n    <string>blockO_ctant-45678.stypo.glif</string>\n    <key>blockOctant-145678</key>\n    <string>blockO_ctant-145678.glif</string>\n    <key>blockOctant-145678.stypo</key>\n    <string>blockO_ctant-145678.stypo.glif</string>\n    <key>blockOctant-1245678</key>\n    <string>blockO_ctant-1245678.glif</string>\n    <key>blockOctant-1245678.stypo</key>\n    <string>blockO_ctant-1245678.stypo.glif</string>\n    <key>blockOctant-1345678</key>\n    <string>blockO_ctant-1345678.glif</string>\n    <key>blockOctant-1345678.stypo</key>\n    <string>blockO_ctant-1345678.stypo.glif</string>\n    <key>blockOctant-2345678</key>\n    <string>blockO_ctant-2345678.glif</string>\n    <key>blockOctant-2345678.stypo</key>\n    <string>blockO_ctant-2345678.stypo.glif</string>\n    <key>blockSedecimant-1</key>\n    <string>blockS_edecimant-1.glif</string>\n    <key>blockSedecimant-1.stypo</key>\n    <string>blockS_edecimant-1.stypo.glif</string>\n    <key>blockSedecimant-2</key>\n    <string>blockS_edecimant-2.glif</string>\n    <key>blockSedecimant-2.stypo</key>\n    <string>blockS_edecimant-2.stypo.glif</string>\n    <key>blockSedecimant-3</key>\n    <string>blockS_edecimant-3.glif</string>\n    <key>blockSedecimant-3.stypo</key>\n    <string>blockS_edecimant-3.stypo.glif</string>\n    <key>blockSedecimant-4</key>\n    <string>blockS_edecimant-4.glif</string>\n    <key>blockSedecimant-4.stypo</key>\n    <string>blockS_edecimant-4.stypo.glif</string>\n    <key>blockSedecimant-5</key>\n    <string>blockS_edecimant-5.glif</string>\n    <key>blockSedecimant-5.stypo</key>\n    <string>blockS_edecimant-5.stypo.glif</string>\n    <key>blockSedecimant-6</key>\n    <string>blockS_edecimant-6.glif</string>\n    <key>blockSedecimant-6.stypo</key>\n    <string>blockS_edecimant-6.stypo.glif</string>\n    <key>blockSedecimant-7</key>\n    <string>blockS_edecimant-7.glif</string>\n    <key>blockSedecimant-7.stypo</key>\n    <string>blockS_edecimant-7.stypo.glif</string>\n    <key>blockSedecimant-8</key>\n    <string>blockS_edecimant-8.glif</string>\n    <key>blockSedecimant-8.stypo</key>\n    <string>blockS_edecimant-8.stypo.glif</string>\n    <key>blockSedecimant-9</key>\n    <string>blockS_edecimant-9.glif</string>\n    <key>blockSedecimant-9.stypo</key>\n    <string>blockS_edecimant-9.stypo.glif</string>\n    <key>blockSedecimant-A</key>\n    <string>blockS_edecimant-A.glif</string>\n    <key>blockSedecimant-A.stypo</key>\n    <string>blockS_edecimant-A.stypo.glif</string>\n    <key>blockSedecimant-B</key>\n    <string>blockS_edecimant-B.glif</string>\n    <key>blockSedecimant-B.stypo</key>\n    <string>blockS_edecimant-B.stypo.glif</string>\n    <key>blockSedecimant-C</key>\n    <string>blockS_edecimant-C.glif</string>\n    <key>blockSedecimant-C.stypo</key>\n    <string>blockS_edecimant-C.stypo.glif</string>\n    <key>blockSedecimant-D</key>\n    <string>blockS_edecimant-D.glif</string>\n    <key>blockSedecimant-D.stypo</key>\n    <string>blockS_edecimant-D.stypo.glif</string>\n    <key>blockSedecimant-E</key>\n    <string>blockS_edecimant-E.glif</string>\n    <key>blockSedecimant-E.stypo</key>\n    <string>blockS_edecimant-E.stypo.glif</string>\n    <key>blockSedecimant-F</key>\n    <string>blockS_edecimant-F.glif</string>\n    <key>blockSedecimant-F.stypo</key>\n    <string>blockS_edecimant-F.stypo.glif</string>\n    <key>blockSedecimant-G</key>\n    <string>blockS_edecimant-G.glif</string>\n    <key>blockSedecimant-G.stypo</key>\n    <string>blockS_edecimant-G.stypo.glif</string>\n    <key>blockSedecimant-EFG</key>\n    <string>blockS_edecimant-EFG.glif</string>\n    <key>blockSedecimant-EFG.stypo</key>\n    <string>blockS_edecimant-EFG.stypo.glif</string>\n    <key>blockSedecimant-DEF</key>\n    <string>blockS_edecimant-DEF.glif</string>\n    <key>blockSedecimant-DEF.stypo</key>\n    <string>blockS_edecimant-DEF.stypo.glif</string>\n    <key>blockSedecimant-9D</key>\n    <string>blockS_edecimant-9D.glif</string>\n    <key>blockSedecimant-9D.stypo</key>\n    <string>blockS_edecimant-9D.stypo.glif</string>\n    <key>blockSedecimant-59D</key>\n    <string>blockS_edecimant-59D.glif</string>\n    <key>blockSedecimant-59D.stypo</key>\n    <string>blockS_edecimant-59D.stypo.glif</string>\n    <key>blockSedecimant-159</key>\n    <string>blockS_edecimant-159.glif</string>\n    <key>blockSedecimant-159.stypo</key>\n    <string>blockS_edecimant-159.stypo.glif</string>\n    <key>blockSedecimant-15</key>\n    <string>blockS_edecimant-15.glif</string>\n    <key>blockSedecimant-15.stypo</key>\n    <string>blockS_edecimant-15.stypo.glif</string>\n    <key>blockSedecimant-123</key>\n    <string>blockS_edecimant-123.glif</string>\n    <key>blockSedecimant-123.stypo</key>\n    <string>blockS_edecimant-123.stypo.glif</string>\n    <key>blockSedecimant-234</key>\n    <string>blockS_edecimant-234.glif</string>\n    <key>blockSedecimant-234.stypo</key>\n    <string>blockS_edecimant-234.stypo.glif</string>\n    <key>blockSedecimant-48</key>\n    <string>blockS_edecimant-48.glif</string>\n    <key>blockSedecimant-48.stypo</key>\n    <string>blockS_edecimant-48.stypo.glif</string>\n    <key>blockSedecimant-48C</key>\n    <string>blockS_edecimant-48C.glif</string>\n    <key>blockSedecimant-48C.stypo</key>\n    <string>blockS_edecimant-48C.stypo.glif</string>\n    <key>blockSedecimant-8CG</key>\n    <string>blockS_edecimant-8CG.glif</string>\n    <key>blockSedecimant-8CG.stypo</key>\n    <string>blockS_edecimant-8CG.stypo.glif</string>\n    <key>blockSedecimant-CG</key>\n    <string>blockS_edecimant-CG.glif</string>\n    <key>blockSedecimant-CG.stypo</key>\n    <string>blockS_edecimant-CG.stypo.glif</string>\n    <key>verticalOneEighthBlock-2</key>\n    <string>verticalO_neE_ighthB_lock-2.glif</string>\n    <key>verticalOneEighthBlock-2.stypo</key>\n    <string>verticalO_neE_ighthB_lock-2.stypo.glif</string>\n    <key>verticalOneEighthBlock-3</key>\n    <string>verticalO_neE_ighthB_lock-3.glif</string>\n    <key>verticalOneEighthBlock-3.stypo</key>\n    <string>verticalO_neE_ighthB_lock-3.stypo.glif</string>\n    <key>verticalOneEighthBlock-4</key>\n    <string>verticalO_neE_ighthB_lock-4.glif</string>\n    <key>verticalOneEighthBlock-4.stypo</key>\n    <string>verticalO_neE_ighthB_lock-4.stypo.glif</string>\n    <key>verticalOneEighthBlock-5</key>\n    <string>verticalO_neE_ighthB_lock-5.glif</string>\n    <key>verticalOneEighthBlock-5.stypo</key>\n    <string>verticalO_neE_ighthB_lock-5.stypo.glif</string>\n    <key>verticalOneEighthBlock-6</key>\n    <string>verticalO_neE_ighthB_lock-6.glif</string>\n    <key>verticalOneEighthBlock-6.stypo</key>\n    <string>verticalO_neE_ighthB_lock-6.stypo.glif</string>\n    <key>verticalOneEighthBlock-7</key>\n    <string>verticalO_neE_ighthB_lock-7.glif</string>\n    <key>verticalOneEighthBlock-7.stypo</key>\n    <string>verticalO_neE_ighthB_lock-7.stypo.glif</string>\n    <key>horizontalOneEightBlock-2</key>\n    <string>horizontalO_neE_ightB_lock-2.glif</string>\n    <key>horizontalOneEightBlock-2.stypo</key>\n    <string>horizontalO_neE_ightB_lock-2.stypo.glif</string>\n    <key>horizontalOneEightBlock-3</key>\n    <string>horizontalO_neE_ightB_lock-3.glif</string>\n    <key>horizontalOneEightBlock-3.stypo</key>\n    <string>horizontalO_neE_ightB_lock-3.stypo.glif</string>\n    <key>horizontalOneEightBlock-4</key>\n    <string>horizontalO_neE_ightB_lock-4.glif</string>\n    <key>horizontalOneEightBlock-4.stypo</key>\n    <string>horizontalO_neE_ightB_lock-4.stypo.glif</string>\n    <key>horizontalOneEightBlock-5</key>\n    <string>horizontalO_neE_ightB_lock-5.glif</string>\n    <key>horizontalOneEightBlock-5.stypo</key>\n    <string>horizontalO_neE_ightB_lock-5.stypo.glif</string>\n    <key>horizontalOneEightBlock-6</key>\n    <string>horizontalO_neE_ightB_lock-6.glif</string>\n    <key>horizontalOneEightBlock-6.stypo</key>\n    <string>horizontalO_neE_ightB_lock-6.stypo.glif</string>\n    <key>horizontalOneEightBlock-7</key>\n    <string>horizontalO_neE_ightB_lock-7.glif</string>\n    <key>horizontalOneEightBlock-7.stypo</key>\n    <string>horizontalO_neE_ightB_lock-7.stypo.glif</string>\n    <key>leftAndLowerOneEightBlock</key>\n    <string>leftA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>leftAndLowerOneEightBlock.stypo</key>\n    <string>leftA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>leftAndUpperOneEightBlock</key>\n    <string>leftA_ndU_pperO_neE_ightB_lock.glif</string>\n    <key>leftAndUpperOneEightBlock.stypo</key>\n    <string>leftA_ndU_pperO_neE_ightB_lock.stypo.glif</string>\n    <key>rightAndUpperOneEightBlock</key>\n    <string>rightA_ndU_pperO_neE_ightB_lock.glif</string>\n    <key>rightAndUpperOneEightBlock.stypo</key>\n    <string>rightA_ndU_pperO_neE_ightB_lock.stypo.glif</string>\n    <key>rightAndLowerOneEightBlock</key>\n    <string>rightA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>rightAndLowerOneEightBlock.stypo</key>\n    <string>rightA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>upperAndLowerOneEightBlock</key>\n    <string>upperA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>upperAndLowerOneEightBlock.stypo</key>\n    <string>upperA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>upperThreeEighthsBlock</key>\n    <string>upperT_hreeE_ighthsB_lock.glif</string>\n    <key>upperThreeEighthsBlock.stypo</key>\n    <string>upperT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>upperFiveEighthsBlock</key>\n    <string>upperF_iveE_ighthsB_lock.glif</string>\n    <key>upperFiveEighthsBlock.stypo</key>\n    <string>upperF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>upperSevenEighthsBlock</key>\n    <string>upperS_evenE_ighthsB_lock.glif</string>\n    <key>upperSevenEighthsBlock.stypo</key>\n    <string>upperS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>rightOneQuarterBlock</key>\n    <string>rightO_neQ_uarterB_lock.glif</string>\n    <key>rightOneQuarterBlock.stypo</key>\n    <string>rightO_neQ_uarterB_lock.stypo.glif</string>\n    <key>rightThreeEighthsBlock</key>\n    <string>rightT_hreeE_ighthsB_lock.glif</string>\n    <key>rightThreeEighthsBlock.stypo</key>\n    <string>rightT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>rightFiveEighthsBlock</key>\n    <string>rightF_iveE_ighthsB_lock.glif</string>\n    <key>rightFiveEighthsBlock.stypo</key>\n    <string>rightF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>rightThreeQuartersBlock</key>\n    <string>rightT_hreeQ_uartersB_lock.glif</string>\n    <key>rightThreeQuartersBlock.stypo</key>\n    <string>rightT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>rightSevenEighthsBlock</key>\n    <string>rightS_evenE_ighthsB_lock.glif</string>\n    <key>rightSevenEighthsBlock.stypo</key>\n    <string>rightS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>leftTwoThirdsBlock</key>\n    <string>leftT_woT_hirdsB_lock.glif</string>\n    <key>leftTwoThirdsBlock.stypo</key>\n    <string>leftT_woT_hirdsB_lock.stypo.glif</string>\n    <key>leftOneThirdBlock</key>\n    <string>leftO_neT_hirdB_lock.glif</string>\n    <key>leftOneThirdBlock.stypo</key>\n    <string>leftO_neT_hirdB_lock.stypo.glif</string>\n    <key>heavyHorizontalFill</key>\n    <string>heavyH_orizontalF_ill.glif</string>\n    <key>heavyHorizontalFill.stypo</key>\n    <string>heavyH_orizontalF_ill.stypo.glif</string>\n    <key>blockSeparatedQuadrant-1</key>\n    <string>blockS_eparatedQ_uadrant-1.glif</string>\n    <key>blockSeparatedQuadrant-1.stypo</key>\n    <string>blockS_eparatedQ_uadrant-1.stypo.glif</string>\n    <key>blockSeparatedQuadrant-2</key>\n    <string>blockS_eparatedQ_uadrant-2.glif</string>\n    <key>blockSeparatedQuadrant-2.stypo</key>\n    <string>blockS_eparatedQ_uadrant-2.stypo.glif</string>\n    <key>blockSeparatedQuadrant-12</key>\n    <string>blockS_eparatedQ_uadrant-12.glif</string>\n    <key>blockSeparatedQuadrant-12.stypo</key>\n    <string>blockS_eparatedQ_uadrant-12.stypo.glif</string>\n    <key>blockSeparatedQuadrant-3</key>\n    <string>blockS_eparatedQ_uadrant-3.glif</string>\n    <key>blockSeparatedQuadrant-3.stypo</key>\n    <string>blockS_eparatedQ_uadrant-3.stypo.glif</string>\n    <key>blockSeparatedQuadrant-13</key>\n    <string>blockS_eparatedQ_uadrant-13.glif</string>\n    <key>blockSeparatedQuadrant-13.stypo</key>\n    <string>blockS_eparatedQ_uadrant-13.stypo.glif</string>\n    <key>blockSeparatedQuadrant-23</key>\n    <string>blockS_eparatedQ_uadrant-23.glif</string>\n    <key>blockSeparatedQuadrant-23.stypo</key>\n    <string>blockS_eparatedQ_uadrant-23.stypo.glif</string>\n    <key>blockSeparatedQuadrant-123</key>\n    <string>blockS_eparatedQ_uadrant-123.glif</string>\n    <key>blockSeparatedQuadrant-123.stypo</key>\n    <string>blockS_eparatedQ_uadrant-123.stypo.glif</string>\n    <key>blockSeparatedQuadrant-4</key>\n    <string>blockS_eparatedQ_uadrant-4.glif</string>\n    <key>blockSeparatedQuadrant-4.stypo</key>\n    <string>blockS_eparatedQ_uadrant-4.stypo.glif</string>\n    <key>blockSeparatedQuadrant-14</key>\n    <string>blockS_eparatedQ_uadrant-14.glif</string>\n    <key>blockSeparatedQuadrant-14.stypo</key>\n    <string>blockS_eparatedQ_uadrant-14.stypo.glif</string>\n    <key>blockSeparatedQuadrant-24</key>\n    <string>blockS_eparatedQ_uadrant-24.glif</string>\n    <key>blockSeparatedQuadrant-24.stypo</key>\n    <string>blockS_eparatedQ_uadrant-24.stypo.glif</string>\n    <key>blockSeparatedQuadrant-124</key>\n    <string>blockS_eparatedQ_uadrant-124.glif</string>\n    <key>blockSeparatedQuadrant-124.stypo</key>\n    <string>blockS_eparatedQ_uadrant-124.stypo.glif</string>\n    <key>blockSeparatedQuadrant-34</key>\n    <string>blockS_eparatedQ_uadrant-34.glif</string>\n    <key>blockSeparatedQuadrant-34.stypo</key>\n    <string>blockS_eparatedQ_uadrant-34.stypo.glif</string>\n    <key>blockSeparatedQuadrant-134</key>\n    <string>blockS_eparatedQ_uadrant-134.glif</string>\n    <key>blockSeparatedQuadrant-134.stypo</key>\n    <string>blockS_eparatedQ_uadrant-134.stypo.glif</string>\n    <key>blockSeparatedQuadrant-234</key>\n    <string>blockS_eparatedQ_uadrant-234.glif</string>\n    <key>blockSeparatedQuadrant-234.stypo</key>\n    <string>blockS_eparatedQ_uadrant-234.stypo.glif</string>\n    <key>blockSeparatedQuadrant-1234</key>\n    <string>blockS_eparatedQ_uadrant-1234.glif</string>\n    <key>blockSeparatedQuadrant-1234.stypo</key>\n    <string>blockS_eparatedQ_uadrant-1234.stypo.glif</string>\n    <key>blockSeparatedSextant-1</key>\n    <string>blockS_eparatedS_extant-1.glif</string>\n    <key>blockSeparatedSextant-1.stypo</key>\n    <string>blockS_eparatedS_extant-1.stypo.glif</string>\n    <key>blockSeparatedSextant-2</key>\n    <string>blockS_eparatedS_extant-2.glif</string>\n    <key>blockSeparatedSextant-2.stypo</key>\n    <string>blockS_eparatedS_extant-2.stypo.glif</string>\n    <key>blockSeparatedSextant-12</key>\n    <string>blockS_eparatedS_extant-12.glif</string>\n    <key>blockSeparatedSextant-12.stypo</key>\n    <string>blockS_eparatedS_extant-12.stypo.glif</string>\n    <key>blockSeparatedSextant-3</key>\n    <string>blockS_eparatedS_extant-3.glif</string>\n    <key>blockSeparatedSextant-3.stypo</key>\n    <string>blockS_eparatedS_extant-3.stypo.glif</string>\n    <key>blockSeparatedSextant-13</key>\n    <string>blockS_eparatedS_extant-13.glif</string>\n    <key>blockSeparatedSextant-13.stypo</key>\n    <string>blockS_eparatedS_extant-13.stypo.glif</string>\n    <key>blockSeparatedSextant-23</key>\n    <string>blockS_eparatedS_extant-23.glif</string>\n    <key>blockSeparatedSextant-23.stypo</key>\n    <string>blockS_eparatedS_extant-23.stypo.glif</string>\n    <key>blockSeparatedSextant-123</key>\n    <string>blockS_eparatedS_extant-123.glif</string>\n    <key>blockSeparatedSextant-123.stypo</key>\n    <string>blockS_eparatedS_extant-123.stypo.glif</string>\n    <key>blockSeparatedSextant-4</key>\n    <string>blockS_eparatedS_extant-4.glif</string>\n    <key>blockSeparatedSextant-4.stypo</key>\n    <string>blockS_eparatedS_extant-4.stypo.glif</string>\n    <key>blockSeparatedSextant-14</key>\n    <string>blockS_eparatedS_extant-14.glif</string>\n    <key>blockSeparatedSextant-14.stypo</key>\n    <string>blockS_eparatedS_extant-14.stypo.glif</string>\n    <key>blockSeparatedSextant-24</key>\n    <string>blockS_eparatedS_extant-24.glif</string>\n    <key>blockSeparatedSextant-24.stypo</key>\n    <string>blockS_eparatedS_extant-24.stypo.glif</string>\n    <key>blockSeparatedSextant-124</key>\n    <string>blockS_eparatedS_extant-124.glif</string>\n    <key>blockSeparatedSextant-124.stypo</key>\n    <string>blockS_eparatedS_extant-124.stypo.glif</string>\n    <key>blockSeparatedSextant-34</key>\n    <string>blockS_eparatedS_extant-34.glif</string>\n    <key>blockSeparatedSextant-34.stypo</key>\n    <string>blockS_eparatedS_extant-34.stypo.glif</string>\n    <key>blockSeparatedSextant-134</key>\n    <string>blockS_eparatedS_extant-134.glif</string>\n    <key>blockSeparatedSextant-134.stypo</key>\n    <string>blockS_eparatedS_extant-134.stypo.glif</string>\n    <key>blockSeparatedSextant-234</key>\n    <string>blockS_eparatedS_extant-234.glif</string>\n    <key>blockSeparatedSextant-234.stypo</key>\n    <string>blockS_eparatedS_extant-234.stypo.glif</string>\n    <key>blockSeparatedSextant-1234</key>\n    <string>blockS_eparatedS_extant-1234.glif</string>\n    <key>blockSeparatedSextant-1234.stypo</key>\n    <string>blockS_eparatedS_extant-1234.stypo.glif</string>\n    <key>blockSeparatedSextant-5</key>\n    <string>blockS_eparatedS_extant-5.glif</string>\n    <key>blockSeparatedSextant-5.stypo</key>\n    <string>blockS_eparatedS_extant-5.stypo.glif</string>\n    <key>blockSeparatedSextant-15</key>\n    <string>blockS_eparatedS_extant-15.glif</string>\n    <key>blockSeparatedSextant-15.stypo</key>\n    <string>blockS_eparatedS_extant-15.stypo.glif</string>\n    <key>blockSeparatedSextant-25</key>\n    <string>blockS_eparatedS_extant-25.glif</string>\n    <key>blockSeparatedSextant-25.stypo</key>\n    <string>blockS_eparatedS_extant-25.stypo.glif</string>\n    <key>blockSeparatedSextant-125</key>\n    <string>blockS_eparatedS_extant-125.glif</string>\n    <key>blockSeparatedSextant-125.stypo</key>\n    <string>blockS_eparatedS_extant-125.stypo.glif</string>\n    <key>blockSeparatedSextant-35</key>\n    <string>blockS_eparatedS_extant-35.glif</string>\n    <key>blockSeparatedSextant-35.stypo</key>\n    <string>blockS_eparatedS_extant-35.stypo.glif</string>\n    <key>blockSeparatedSextant-135</key>\n    <string>blockS_eparatedS_extant-135.glif</string>\n    <key>blockSeparatedSextant-135.stypo</key>\n    <string>blockS_eparatedS_extant-135.stypo.glif</string>\n    <key>blockSeparatedSextant-235</key>\n    <string>blockS_eparatedS_extant-235.glif</string>\n    <key>blockSeparatedSextant-235.stypo</key>\n    <string>blockS_eparatedS_extant-235.stypo.glif</string>\n    <key>blockSeparatedSextant-1235</key>\n    <string>blockS_eparatedS_extant-1235.glif</string>\n    <key>blockSeparatedSextant-1235.stypo</key>\n    <string>blockS_eparatedS_extant-1235.stypo.glif</string>\n    <key>blockSeparatedSextant-45</key>\n    <string>blockS_eparatedS_extant-45.glif</string>\n    <key>blockSeparatedSextant-45.stypo</key>\n    <string>blockS_eparatedS_extant-45.stypo.glif</string>\n    <key>blockSeparatedSextant-145</key>\n    <string>blockS_eparatedS_extant-145.glif</string>\n    <key>blockSeparatedSextant-145.stypo</key>\n    <string>blockS_eparatedS_extant-145.stypo.glif</string>\n    <key>blockSeparatedSextant-245</key>\n    <string>blockS_eparatedS_extant-245.glif</string>\n    <key>blockSeparatedSextant-245.stypo</key>\n    <string>blockS_eparatedS_extant-245.stypo.glif</string>\n    <key>blockSeparatedSextant-1245</key>\n    <string>blockS_eparatedS_extant-1245.glif</string>\n    <key>blockSeparatedSextant-1245.stypo</key>\n    <string>blockS_eparatedS_extant-1245.stypo.glif</string>\n    <key>blockSeparatedSextant-345</key>\n    <string>blockS_eparatedS_extant-345.glif</string>\n    <key>blockSeparatedSextant-345.stypo</key>\n    <string>blockS_eparatedS_extant-345.stypo.glif</string>\n    <key>blockSeparatedSextant-1345</key>\n    <string>blockS_eparatedS_extant-1345.glif</string>\n    <key>blockSeparatedSextant-1345.stypo</key>\n    <string>blockS_eparatedS_extant-1345.stypo.glif</string>\n    <key>blockSeparatedSextant-2345</key>\n    <string>blockS_eparatedS_extant-2345.glif</string>\n    <key>blockSeparatedSextant-2345.stypo</key>\n    <string>blockS_eparatedS_extant-2345.stypo.glif</string>\n    <key>blockSeparatedSextant-12345</key>\n    <string>blockS_eparatedS_extant-12345.glif</string>\n    <key>blockSeparatedSextant-12345.stypo</key>\n    <string>blockS_eparatedS_extant-12345.stypo.glif</string>\n    <key>blockSeparatedSextant-6</key>\n    <string>blockS_eparatedS_extant-6.glif</string>\n    <key>blockSeparatedSextant-6.stypo</key>\n    <string>blockS_eparatedS_extant-6.stypo.glif</string>\n    <key>blockSeparatedSextant-16</key>\n    <string>blockS_eparatedS_extant-16.glif</string>\n    <key>blockSeparatedSextant-16.stypo</key>\n    <string>blockS_eparatedS_extant-16.stypo.glif</string>\n    <key>blockSeparatedSextant-26</key>\n    <string>blockS_eparatedS_extant-26.glif</string>\n    <key>blockSeparatedSextant-26.stypo</key>\n    <string>blockS_eparatedS_extant-26.stypo.glif</string>\n    <key>blockSeparatedSextant-126</key>\n    <string>blockS_eparatedS_extant-126.glif</string>\n    <key>blockSeparatedSextant-126.stypo</key>\n    <string>blockS_eparatedS_extant-126.stypo.glif</string>\n    <key>blockSeparatedSextant-36</key>\n    <string>blockS_eparatedS_extant-36.glif</string>\n    <key>blockSeparatedSextant-36.stypo</key>\n    <string>blockS_eparatedS_extant-36.stypo.glif</string>\n    <key>blockSeparatedSextant-136</key>\n    <string>blockS_eparatedS_extant-136.glif</string>\n    <key>blockSeparatedSextant-136.stypo</key>\n    <string>blockS_eparatedS_extant-136.stypo.glif</string>\n    <key>blockSeparatedSextant-236</key>\n    <string>blockS_eparatedS_extant-236.glif</string>\n    <key>blockSeparatedSextant-236.stypo</key>\n    <string>blockS_eparatedS_extant-236.stypo.glif</string>\n    <key>blockSeparatedSextant-1236</key>\n    <string>blockS_eparatedS_extant-1236.glif</string>\n    <key>blockSeparatedSextant-1236.stypo</key>\n    <string>blockS_eparatedS_extant-1236.stypo.glif</string>\n    <key>blockSeparatedSextant-46</key>\n    <string>blockS_eparatedS_extant-46.glif</string>\n    <key>blockSeparatedSextant-46.stypo</key>\n    <string>blockS_eparatedS_extant-46.stypo.glif</string>\n    <key>blockSeparatedSextant-146</key>\n    <string>blockS_eparatedS_extant-146.glif</string>\n    <key>blockSeparatedSextant-146.stypo</key>\n    <string>blockS_eparatedS_extant-146.stypo.glif</string>\n    <key>blockSeparatedSextant-246</key>\n    <string>blockS_eparatedS_extant-246.glif</string>\n    <key>blockSeparatedSextant-246.stypo</key>\n    <string>blockS_eparatedS_extant-246.stypo.glif</string>\n    <key>blockSeparatedSextant-1246</key>\n    <string>blockS_eparatedS_extant-1246.glif</string>\n    <key>blockSeparatedSextant-1246.stypo</key>\n    <string>blockS_eparatedS_extant-1246.stypo.glif</string>\n    <key>blockSeparatedSextant-346</key>\n    <string>blockS_eparatedS_extant-346.glif</string>\n    <key>blockSeparatedSextant-346.stypo</key>\n    <string>blockS_eparatedS_extant-346.stypo.glif</string>\n    <key>blockSeparatedSextant-1346</key>\n    <string>blockS_eparatedS_extant-1346.glif</string>\n    <key>blockSeparatedSextant-1346.stypo</key>\n    <string>blockS_eparatedS_extant-1346.stypo.glif</string>\n    <key>blockSeparatedSextant-2346</key>\n    <string>blockS_eparatedS_extant-2346.glif</string>\n    <key>blockSeparatedSextant-2346.stypo</key>\n    <string>blockS_eparatedS_extant-2346.stypo.glif</string>\n    <key>blockSeparatedSextant-12346</key>\n    <string>blockS_eparatedS_extant-12346.glif</string>\n    <key>blockSeparatedSextant-12346.stypo</key>\n    <string>blockS_eparatedS_extant-12346.stypo.glif</string>\n    <key>blockSeparatedSextant-56</key>\n    <string>blockS_eparatedS_extant-56.glif</string>\n    <key>blockSeparatedSextant-56.stypo</key>\n    <string>blockS_eparatedS_extant-56.stypo.glif</string>\n    <key>blockSeparatedSextant-156</key>\n    <string>blockS_eparatedS_extant-156.glif</string>\n    <key>blockSeparatedSextant-156.stypo</key>\n    <string>blockS_eparatedS_extant-156.stypo.glif</string>\n    <key>blockSeparatedSextant-256</key>\n    <string>blockS_eparatedS_extant-256.glif</string>\n    <key>blockSeparatedSextant-256.stypo</key>\n    <string>blockS_eparatedS_extant-256.stypo.glif</string>\n    <key>blockSeparatedSextant-1256</key>\n    <string>blockS_eparatedS_extant-1256.glif</string>\n    <key>blockSeparatedSextant-1256.stypo</key>\n    <string>blockS_eparatedS_extant-1256.stypo.glif</string>\n    <key>blockSeparatedSextant-356</key>\n    <string>blockS_eparatedS_extant-356.glif</string>\n    <key>blockSeparatedSextant-356.stypo</key>\n    <string>blockS_eparatedS_extant-356.stypo.glif</string>\n    <key>blockSeparatedSextant-1356</key>\n    <string>blockS_eparatedS_extant-1356.glif</string>\n    <key>blockSeparatedSextant-1356.stypo</key>\n    <string>blockS_eparatedS_extant-1356.stypo.glif</string>\n    <key>blockSeparatedSextant-2356</key>\n    <string>blockS_eparatedS_extant-2356.glif</string>\n    <key>blockSeparatedSextant-2356.stypo</key>\n    <string>blockS_eparatedS_extant-2356.stypo.glif</string>\n    <key>blockSeparatedSextant-12356</key>\n    <string>blockS_eparatedS_extant-12356.glif</string>\n    <key>blockSeparatedSextant-12356.stypo</key>\n    <string>blockS_eparatedS_extant-12356.stypo.glif</string>\n    <key>blockSeparatedSextant-456</key>\n    <string>blockS_eparatedS_extant-456.glif</string>\n    <key>blockSeparatedSextant-456.stypo</key>\n    <string>blockS_eparatedS_extant-456.stypo.glif</string>\n    <key>blockSeparatedSextant-1456</key>\n    <string>blockS_eparatedS_extant-1456.glif</string>\n    <key>blockSeparatedSextant-1456.stypo</key>\n    <string>blockS_eparatedS_extant-1456.stypo.glif</string>\n    <key>blockSeparatedSextant-2456</key>\n    <string>blockS_eparatedS_extant-2456.glif</string>\n    <key>blockSeparatedSextant-2456.stypo</key>\n    <string>blockS_eparatedS_extant-2456.stypo.glif</string>\n    <key>blockSeparatedSextant-12456</key>\n    <string>blockS_eparatedS_extant-12456.glif</string>\n    <key>blockSeparatedSextant-12456.stypo</key>\n    <string>blockS_eparatedS_extant-12456.stypo.glif</string>\n    <key>blockSeparatedSextant-3456</key>\n    <string>blockS_eparatedS_extant-3456.glif</string>\n    <key>blockSeparatedSextant-3456.stypo</key>\n    <string>blockS_eparatedS_extant-3456.stypo.glif</string>\n    <key>blockSeparatedSextant-13456</key>\n    <string>blockS_eparatedS_extant-13456.glif</string>\n    <key>blockSeparatedSextant-13456.stypo</key>\n    <string>blockS_eparatedS_extant-13456.stypo.glif</string>\n    <key>blockSeparatedSextant-23456</key>\n    <string>blockS_eparatedS_extant-23456.glif</string>\n    <key>blockSeparatedSextant-23456.stypo</key>\n    <string>blockS_eparatedS_extant-23456.stypo.glif</string>\n    <key>blockSeparatedSextant-123456</key>\n    <string>blockS_eparatedS_extant-123456.glif</string>\n    <key>blockSeparatedSextant-123456.stypo</key>\n    <string>blockS_eparatedS_extant-123456.stypo.glif</string>\n    <key>segmentedDigit0</key>\n    <string>segmentedD_igit0.glif</string>\n    <key>segmentedDigit1</key>\n    <string>segmentedD_igit1.glif</string>\n    <key>segmentedDigit2</key>\n    <string>segmentedD_igit2.glif</string>\n    <key>segmentedDigit3</key>\n    <string>segmentedD_igit3.glif</string>\n    <key>segmentedDigit4</key>\n    <string>segmentedD_igit4.glif</string>\n    <key>segmentedDigit5</key>\n    <string>segmentedD_igit5.glif</string>\n    <key>segmentedDigit6</key>\n    <string>segmentedD_igit6.glif</string>\n    <key>segmentedDigit7</key>\n    <string>segmentedD_igit7.glif</string>\n    <key>segmentedDigit8</key>\n    <string>segmentedD_igit8.glif</string>\n    <key>segmentedDigit9</key>\n    <string>segmentedD_igit9.glif</string>\n    <key>largeType-1CE1A</key>\n    <string>largeT_ype-1CE1A.glif</string>\n    <key>largeType-1CE1A.stypo</key>\n    <string>largeT_ype-1CE1A.stypo.glif</string>\n    <key>largeType-1CE1B</key>\n    <string>largeT_ype-1CE1B.glif</string>\n    <key>largeType-1CE1B.stypo</key>\n    <string>largeT_ype-1CE1B.stypo.glif</string>\n    <key>largeType-1CE1C</key>\n    <string>largeT_ype-1CE1C.glif</string>\n    <key>largeType-1CE1C.stypo</key>\n    <string>largeT_ype-1CE1C.stypo.glif</string>\n    <key>largeType-1CE1D</key>\n    <string>largeT_ype-1CE1D.glif</string>\n    <key>largeType-1CE1D.stypo</key>\n    <string>largeT_ype-1CE1D.stypo.glif</string>\n    <key>largeType-1CE1E</key>\n    <string>largeT_ype-1CE1E.glif</string>\n    <key>largeType-1CE1E.stypo</key>\n    <string>largeT_ype-1CE1E.stypo.glif</string>\n    <key>largeType-1CE1F</key>\n    <string>largeT_ype-1CE1F.glif</string>\n    <key>largeType-1CE1F.stypo</key>\n    <string>largeT_ype-1CE1F.stypo.glif</string>\n    <key>largeType-1CE20</key>\n    <string>largeT_ype-1CE20.glif</string>\n    <key>largeType-1CE20.stypo</key>\n    <string>largeT_ype-1CE20.stypo.glif</string>\n    <key>largeType-1CE21</key>\n    <string>largeT_ype-1CE21.glif</string>\n    <key>largeType-1CE21.stypo</key>\n    <string>largeT_ype-1CE21.stypo.glif</string>\n    <key>largeType-1CE22</key>\n    <string>largeT_ype-1CE22.glif</string>\n    <key>largeType-1CE22.stypo</key>\n    <string>largeT_ype-1CE22.stypo.glif</string>\n    <key>largeType-1CE23</key>\n    <string>largeT_ype-1CE23.glif</string>\n    <key>largeType-1CE23.stypo</key>\n    <string>largeT_ype-1CE23.stypo.glif</string>\n    <key>largeType-1CE24</key>\n    <string>largeT_ype-1CE24.glif</string>\n    <key>largeType-1CE24.stypo</key>\n    <string>largeT_ype-1CE24.stypo.glif</string>\n    <key>largeType-1CE25</key>\n    <string>largeT_ype-1CE25.glif</string>\n    <key>largeType-1CE25.stypo</key>\n    <string>largeT_ype-1CE25.stypo.glif</string>\n    <key>largeType-1CE26</key>\n    <string>largeT_ype-1CE26.glif</string>\n    <key>largeType-1CE26.stypo</key>\n    <string>largeT_ype-1CE26.stypo.glif</string>\n    <key>largeType-1CE27</key>\n    <string>largeT_ype-1CE27.glif</string>\n    <key>largeType-1CE27.stypo</key>\n    <string>largeT_ype-1CE27.stypo.glif</string>\n    <key>largeType-1CE28</key>\n    <string>largeT_ype-1CE28.glif</string>\n    <key>largeType-1CE28.stypo</key>\n    <string>largeT_ype-1CE28.stypo.glif</string>\n    <key>largeType-1CE29</key>\n    <string>largeT_ype-1CE29.glif</string>\n    <key>largeType-1CE29.stypo</key>\n    <string>largeT_ype-1CE29.stypo.glif</string>\n    <key>largeType-1CE2A</key>\n    <string>largeT_ype-1CE2A.glif</string>\n    <key>largeType-1CE2A.stypo</key>\n    <string>largeT_ype-1CE2A.stypo.glif</string>\n    <key>largeType-1CE2B</key>\n    <string>largeT_ype-1CE2B.glif</string>\n    <key>largeType-1CE2B.stypo</key>\n    <string>largeT_ype-1CE2B.stypo.glif</string>\n    <key>largeType-1CE2C</key>\n    <string>largeT_ype-1CE2C.glif</string>\n    <key>largeType-1CE2C.stypo</key>\n    <string>largeT_ype-1CE2C.stypo.glif</string>\n    <key>largeType-1CE2D</key>\n    <string>largeT_ype-1CE2D.glif</string>\n    <key>largeType-1CE2D.stypo</key>\n    <string>largeT_ype-1CE2D.stypo.glif</string>\n    <key>largeType-1CE2E</key>\n    <string>largeT_ype-1CE2E.glif</string>\n    <key>largeType-1CE2E.stypo</key>\n    <string>largeT_ype-1CE2E.stypo.glif</string>\n    <key>largeType-1CE2F</key>\n    <string>largeT_ype-1CE2F.glif</string>\n    <key>largeType-1CE2F.stypo</key>\n    <string>largeT_ype-1CE2F.stypo.glif</string>\n    <key>largeType-1CE30</key>\n    <string>largeT_ype-1CE30.glif</string>\n    <key>largeType-1CE30.stypo</key>\n    <string>largeT_ype-1CE30.stypo.glif</string>\n    <key>largeType-1CE31</key>\n    <string>largeT_ype-1CE31.glif</string>\n    <key>largeType-1CE31.stypo</key>\n    <string>largeT_ype-1CE31.stypo.glif</string>\n    <key>largeType-1CE32</key>\n    <string>largeT_ype-1CE32.glif</string>\n    <key>largeType-1CE32.stypo</key>\n    <string>largeT_ype-1CE32.stypo.glif</string>\n    <key>largeType-1CE33</key>\n    <string>largeT_ype-1CE33.glif</string>\n    <key>largeType-1CE33.stypo</key>\n    <string>largeT_ype-1CE33.stypo.glif</string>\n    <key>largeType-1CE34</key>\n    <string>largeT_ype-1CE34.glif</string>\n    <key>largeType-1CE34.stypo</key>\n    <string>largeT_ype-1CE34.stypo.glif</string>\n    <key>largeType-1CE35</key>\n    <string>largeT_ype-1CE35.glif</string>\n    <key>largeType-1CE35.stypo</key>\n    <string>largeT_ype-1CE35.stypo.glif</string>\n    <key>largeType-1CE36</key>\n    <string>largeT_ype-1CE36.glif</string>\n    <key>largeType-1CE36.stypo</key>\n    <string>largeT_ype-1CE36.stypo.glif</string>\n    <key>largeType-1CE37</key>\n    <string>largeT_ype-1CE37.glif</string>\n    <key>largeType-1CE37.stypo</key>\n    <string>largeT_ype-1CE37.stypo.glif</string>\n    <key>largeType-1CE38</key>\n    <string>largeT_ype-1CE38.glif</string>\n    <key>largeType-1CE38.stypo</key>\n    <string>largeT_ype-1CE38.stypo.glif</string>\n    <key>largeType-1CE39</key>\n    <string>largeT_ype-1CE39.glif</string>\n    <key>largeType-1CE39.stypo</key>\n    <string>largeT_ype-1CE39.stypo.glif</string>\n    <key>largeType-1CE3A</key>\n    <string>largeT_ype-1CE3A.glif</string>\n    <key>largeType-1CE3A.stypo</key>\n    <string>largeT_ype-1CE3A.stypo.glif</string>\n    <key>largeType-1CE3B</key>\n    <string>largeT_ype-1CE3B.glif</string>\n    <key>largeType-1CE3B.stypo</key>\n    <string>largeT_ype-1CE3B.stypo.glif</string>\n    <key>largeType-1CE3C</key>\n    <string>largeT_ype-1CE3C.glif</string>\n    <key>largeType-1CE3C.stypo</key>\n    <string>largeT_ype-1CE3C.stypo.glif</string>\n    <key>largeType-1CE3D</key>\n    <string>largeT_ype-1CE3D.glif</string>\n    <key>largeType-1CE3D.stypo</key>\n    <string>largeT_ype-1CE3D.stypo.glif</string>\n    <key>largeType-1CE3E</key>\n    <string>largeT_ype-1CE3E.glif</string>\n    <key>largeType-1CE3E.stypo</key>\n    <string>largeT_ype-1CE3E.stypo.glif</string>\n    <key>largeType-1CE3F</key>\n    <string>largeT_ype-1CE3F.glif</string>\n    <key>largeType-1CE3F.stypo</key>\n    <string>largeT_ype-1CE3F.stypo.glif</string>\n    <key>largeType-1CE40</key>\n    <string>largeT_ype-1CE40.glif</string>\n    <key>largeType-1CE40.stypo</key>\n    <string>largeT_ype-1CE40.stypo.glif</string>\n    <key>largeType-1CE41</key>\n    <string>largeT_ype-1CE41.glif</string>\n    <key>largeType-1CE41.stypo</key>\n    <string>largeT_ype-1CE41.stypo.glif</string>\n    <key>largeType-1CE42</key>\n    <string>largeT_ype-1CE42.glif</string>\n    <key>largeType-1CE42.stypo</key>\n    <string>largeT_ype-1CE42.stypo.glif</string>\n    <key>largeType-1CE43</key>\n    <string>largeT_ype-1CE43.glif</string>\n    <key>largeType-1CE43.stypo</key>\n    <string>largeT_ype-1CE43.stypo.glif</string>\n    <key>largeType-1CE44</key>\n    <string>largeT_ype-1CE44.glif</string>\n    <key>largeType-1CE44.stypo</key>\n    <string>largeT_ype-1CE44.stypo.glif</string>\n    <key>largeType-1CE45</key>\n    <string>largeT_ype-1CE45.glif</string>\n    <key>largeType-1CE45.stypo</key>\n    <string>largeT_ype-1CE45.stypo.glif</string>\n    <key>largeType-1CE46</key>\n    <string>largeT_ype-1CE46.glif</string>\n    <key>largeType-1CE46.stypo</key>\n    <string>largeT_ype-1CE46.stypo.glif</string>\n    <key>largeType-1CE47</key>\n    <string>largeT_ype-1CE47.glif</string>\n    <key>largeType-1CE47.stypo</key>\n    <string>largeT_ype-1CE47.stypo.glif</string>\n    <key>largeType-1CE48</key>\n    <string>largeT_ype-1CE48.glif</string>\n    <key>largeType-1CE48.stypo</key>\n    <string>largeT_ype-1CE48.stypo.glif</string>\n    <key>largeType-1CE49</key>\n    <string>largeT_ype-1CE49.glif</string>\n    <key>largeType-1CE49.stypo</key>\n    <string>largeT_ype-1CE49.stypo.glif</string>\n    <key>largeType-1CE4A</key>\n    <string>largeT_ype-1CE4A.glif</string>\n    <key>largeType-1CE4A.stypo</key>\n    <string>largeT_ype-1CE4A.stypo.glif</string>\n    <key>largeType-1CE4B</key>\n    <string>largeT_ype-1CE4B.glif</string>\n    <key>largeType-1CE4B.stypo</key>\n    <string>largeT_ype-1CE4B.stypo.glif</string>\n    <key>largeType-1CE4C</key>\n    <string>largeT_ype-1CE4C.glif</string>\n    <key>largeType-1CE4C.stypo</key>\n    <string>largeT_ype-1CE4C.stypo.glif</string>\n    <key>largeType-1CE4D</key>\n    <string>largeT_ype-1CE4D.glif</string>\n    <key>largeType-1CE4D.stypo</key>\n    <string>largeT_ype-1CE4D.stypo.glif</string>\n    <key>largeType-1CE4E</key>\n    <string>largeT_ype-1CE4E.glif</string>\n    <key>largeType-1CE4E.stypo</key>\n    <string>largeT_ype-1CE4E.stypo.glif</string>\n    <key>largeType-1CE4F</key>\n    <string>largeT_ype-1CE4F.glif</string>\n    <key>largeType-1CE4F.stypo</key>\n    <string>largeT_ype-1CE4F.stypo.glif</string>\n    <key>largeType-1CE50</key>\n    <string>largeT_ype-1CE50.glif</string>\n    <key>largeType-1CE50.stypo</key>\n    <string>largeT_ype-1CE50.stypo.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/copyright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"copyright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A9\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"15\"/>\n      <point x=\"1191\" y=\"263\"/>\n      <point x=\"1191\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1191\" y=\"1146\"/>\n      <point x=\"976\" y=\"1405\"/>\n      <point x=\"600\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"1405\"/>\n      <point x=\"9\" y=\"1146\"/>\n      <point x=\"9\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"9\" y=\"263\"/>\n      <point x=\"224\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"656\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"380\"/>\n      <point x=\"786\" y=\"386\"/>\n      <point x=\"847\" y=\"410\" type=\"curve\"/>\n      <point x=\"823\" y=\"608\" type=\"line\"/>\n      <point x=\"777\" y=\"592\"/>\n      <point x=\"729\" y=\"582\"/>\n      <point x=\"680\" y=\"582\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"591\" y=\"582\"/>\n      <point x=\"543\" y=\"628\"/>\n      <point x=\"543\" y=\"714\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"793\"/>\n      <point x=\"584\" y=\"838\"/>\n      <point x=\"657\" y=\"838\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"838\"/>\n      <point x=\"729\" y=\"821\"/>\n      <point x=\"747\" y=\"790\" type=\"curve\"/>\n      <point x=\"870\" y=\"945\" type=\"line\"/>\n      <point x=\"838\" y=\"1005\"/>\n      <point x=\"756\" y=\"1040\"/>\n      <point x=\"648\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"1040\"/>\n      <point x=\"311\" y=\"919\"/>\n      <point x=\"311\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"311\" y=\"498\"/>\n      <point x=\"437\" y=\"380\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"370\" y=\"227\"/>\n      <point x=\"238\" y=\"398\"/>\n      <point x=\"238\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1011\"/>\n      <point x=\"370\" y=\"1193\"/>\n      <point x=\"600\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"1193\"/>\n      <point x=\"962\" y=\"1011\"/>\n      <point x=\"962\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"398\"/>\n      <point x=\"830\" y=\"227\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/crosshatchF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"crosshatchFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A6\"/>\n  <note>\nuni25A6\n</note>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"756\" type=\"line\"/>\n      <point x=\"1051\" y=\"756\" type=\"line\"/>\n      <point x=\"1051\" y=\"914\" type=\"line\"/>\n      <point x=\"149\" y=\"914\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"396\" y=\"259\" type=\"line\"/>\n      <point x=\"554\" y=\"259\" type=\"line\"/>\n      <point x=\"554\" y=\"1161\" type=\"line\"/>\n      <point x=\"396\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"506\" type=\"line\"/>\n      <point x=\"1051\" y=\"506\" type=\"line\"/>\n      <point x=\"1051\" y=\"664\" type=\"line\"/>\n      <point x=\"149\" y=\"664\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"646\" y=\"259\" type=\"line\"/>\n      <point x=\"804\" y=\"259\" type=\"line\"/>\n      <point x=\"804\" y=\"1161\" type=\"line\"/>\n      <point x=\"646\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/cuberoot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cuberoot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0606\"/>\n  <outline>\n    <component base=\"_cuberoot_fourthroot-ar\"/>\n    <component base=\"three-persian.small01\" xOffset=\"110\" yOffset=\"-115\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_cuberoot_fourthroot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>_cuberoot_fourthroot-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_cuberoot_fourthroot-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/currency.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"currency\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A4\"/>\n  <outline>\n    <contour>\n      <point x=\"603\" y=\"283\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"283\"/>\n      <point x=\"1044\" y=\"449\"/>\n      <point x=\"1044\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1044\" y=\"951\"/>\n      <point x=\"869\" y=\"1117\"/>\n      <point x=\"603\" y=\"1117\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"337\" y=\"1117\"/>\n      <point x=\"162\" y=\"951\"/>\n      <point x=\"162\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"162\" y=\"449\"/>\n      <point x=\"337\" y=\"283\"/>\n    </contour>\n    <contour>\n      <point x=\"206\" y=\"116\" type=\"line\"/>\n      <point x=\"429\" y=\"351\" type=\"line\"/>\n      <point x=\"252\" y=\"470\" type=\"line\"/>\n      <point x=\"56\" y=\"281\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"995\" y=\"114\" type=\"line\"/>\n      <point x=\"1145\" y=\"279\" type=\"line\"/>\n      <point x=\"929\" y=\"491\" type=\"line\"/>\n      <point x=\"767\" y=\"357\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"603\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"520\"/>\n      <point x=\"428\" y=\"591\"/>\n      <point x=\"428\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"809\"/>\n      <point x=\"498\" y=\"880\"/>\n      <point x=\"603\" y=\"880\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"880\"/>\n      <point x=\"778\" y=\"809\"/>\n      <point x=\"778\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"591\"/>\n      <point x=\"709\" y=\"520\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"926\" type=\"line\"/>\n      <point x=\"436\" y=\"1041\" type=\"line\"/>\n      <point x=\"217\" y=\"1274\" type=\"line\"/>\n      <point x=\"56\" y=\"1117\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"946\" y=\"926\" type=\"line\"/>\n      <point x=\"1146\" y=\"1118\" type=\"line\"/>\n      <point x=\"985\" y=\"1276\" type=\"line\"/>\n      <point x=\"769\" y=\"1047\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/d.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"d\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0064\"/>\n  <anchor x=\"540\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"530\" name=\"center\"/>\n  <anchor x=\"914\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1157\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"495\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"-20\"/>\n      <point x=\"735\" y=\"51\"/>\n      <point x=\"756\" y=\"192\" type=\"curve\"/>\n      <point x=\"850\" y=\"192\" type=\"line\"/>\n      <point x=\"778\" y=\"529\" type=\"line\"/>\n      <point x=\"778\" y=\"323\"/>\n      <point x=\"725\" y=\"235\"/>\n      <point x=\"571\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"235\"/>\n      <point x=\"356\" y=\"334\"/>\n      <point x=\"356\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"717\"/>\n      <point x=\"434\" y=\"825\"/>\n      <point x=\"571\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"825\"/>\n      <point x=\"778\" y=\"734\"/>\n      <point x=\"778\" y=\"529\" type=\"curve\"/>\n      <point x=\"840\" y=\"868\" type=\"line\"/>\n      <point x=\"752\" y=\"868\" type=\"line\"/>\n      <point x=\"728\" y=\"1010\"/>\n      <point x=\"652\" y=\"1080\"/>\n      <point x=\"497\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"1080\"/>\n      <point x=\"79\" y=\"879\"/>\n      <point x=\"79\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"79\" y=\"175\"/>\n      <point x=\"232\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"817\" y=\"-10\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"1500\" type=\"line\"/>\n      <point x=\"778\" y=\"1500\" type=\"line\"/>\n      <point x=\"778\" y=\"200\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"20\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"20\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"280\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0636\"/>\n  <outline>\n    <component base=\"sad-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"280\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"180\" yOffset=\"363\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"180\" yOffset=\"363\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-120\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-120\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FB\"/>\n  <outline>\n    <component base=\"dad-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dagesh-hb\" format=\"2\">\n  <unicode hex=\"05BC\"/>\n  <anchor x=\"600\" y=\"544\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"454\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"454\"/>\n      <point x=\"691\" y=\"494\"/>\n      <point x=\"691\" y=\"544\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"594\"/>\n      <point x=\"650\" y=\"635\"/>\n      <point x=\"600\" y=\"635\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"635\"/>\n      <point x=\"509\" y=\"594\"/>\n      <point x=\"509\" y=\"544\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"494\"/>\n      <point x=\"550\" y=\"454\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dagger.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dagger\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2020\"/>\n  <outline>\n    <contour>\n      <point x=\"476\" y=\"272\" type=\"line\"/>\n      <point x=\"718\" y=\"272\" type=\"line\"/>\n      <point x=\"728\" y=\"1440\" type=\"line\"/>\n      <point x=\"466\" y=\"1440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"203\" y=\"928\" type=\"line\"/>\n      <point x=\"602\" y=\"937\" type=\"line\"/>\n      <point x=\"997\" y=\"928\" type=\"line\"/>\n      <point x=\"997\" y=\"1168\" type=\"line\"/>\n      <point x=\"602\" y=\"1160\" type=\"line\"/>\n      <point x=\"203\" y=\"1168\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/daggerdbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"daggerdbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2021\"/>\n  <outline>\n    <contour>\n      <point x=\"203\" y=\"984\" type=\"line\"/>\n      <point x=\"602\" y=\"992\" type=\"line\"/>\n      <point x=\"997\" y=\"984\" type=\"line\"/>\n      <point x=\"997\" y=\"1222\" type=\"line\"/>\n      <point x=\"602\" y=\"1214\" type=\"line\"/>\n      <point x=\"203\" y=\"1222\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"272\" type=\"line\"/>\n      <point x=\"735\" y=\"272\" type=\"line\"/>\n      <point x=\"725\" y=\"620\" type=\"line\"/>\n      <point x=\"469\" y=\"620\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"203\" y=\"510\" type=\"line\"/>\n      <point x=\"602\" y=\"518\" type=\"line\"/>\n      <point x=\"997\" y=\"510\" type=\"line\"/>\n      <point x=\"997\" y=\"748\" type=\"line\"/>\n      <point x=\"602\" y=\"740\" type=\"line\"/>\n      <point x=\"203\" y=\"748\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"660\" type=\"line\"/>\n      <point x=\"725\" y=\"660\" type=\"line\"/>\n      <point x=\"725\" y=\"1104\" type=\"line\"/>\n      <point x=\"469\" y=\"1104\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"1082\" type=\"line\"/>\n      <point x=\"725\" y=\"1082\" type=\"line\"/>\n      <point x=\"735\" y=\"1440\" type=\"line\"/>\n      <point x=\"459\" y=\"1440\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dahal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dahal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"36\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dahal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dahal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068C\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"16\" yOffset=\"502\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"562\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"562\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"639\" y=\"1274\" name=\"top\"/>\n  <anchor x=\"636\" y=\"1024\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"398\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"-10\"/>\n      <point x=\"830\" y=\"60\"/>\n      <point x=\"935\" y=\"187\" type=\"curve\"/>\n      <point x=\"806\" y=\"227\" type=\"line\"/>\n      <point x=\"886\" y=\"40\"/>\n      <point x=\"1012\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1246\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"285\"/>\n      <point x=\"1041\" y=\"305\"/>\n      <point x=\"993\" y=\"432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"1013\" type=\"line\"/>\n      <point x=\"513\" y=\"923\" type=\"line\"/>\n      <point x=\"735\" y=\"343\" type=\"line\"/>\n      <point x=\"651\" y=\"302\"/>\n      <point x=\"526\" y=\"285\"/>\n      <point x=\"378\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"271\" y=\"285\"/>\n      <point x=\"234\" y=\"291\"/>\n      <point x=\"151\" y=\"301\" type=\"curve\"/>\n      <point x=\"143\" y=\"12\" type=\"line\"/>\n      <point x=\"249\" y=\"-5\"/>\n      <point x=\"294\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062F\"/>\n  <anchor x=\"572\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"572\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"619\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"616\" y=\"1034\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"448\" y=\"-8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"-8\"/>\n      <point x=\"1046\" y=\"67\"/>\n      <point x=\"1046\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1046\" y=\"498\"/>\n      <point x=\"918\" y=\"730\"/>\n      <point x=\"687\" y=\"1027\" type=\"curve\"/>\n      <point x=\"454\" y=\"872\" type=\"line\"/>\n      <point x=\"670\" y=\"580\"/>\n      <point x=\"755\" y=\"443\"/>\n      <point x=\"755\" y=\"365\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"308\"/>\n      <point x=\"646\" y=\"287\"/>\n      <point x=\"458\" y=\"287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"287\"/>\n      <point x=\"274\" y=\"293\"/>\n      <point x=\"171\" y=\"303\" type=\"curve\"/>\n      <point x=\"163\" y=\"14\" type=\"line\"/>\n      <point x=\"269\" y=\"-3\"/>\n      <point x=\"324\" y=\"-8\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068A\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelowT_ah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalDotbelowTah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n    <component base=\"_tahabove\" xOffset=\"71\" yOffset=\"613\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dal-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dal-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelowT_ah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalDotbelowTah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068B\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n    <component base=\"_tahabove\" xOffset=\"51\" yOffset=\"623\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dal-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dal-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalF_ourdots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalFourdots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"36\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalF_ourdots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalFourdots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0690\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"16\" yOffset=\"502\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"-67\" yOffset=\"-65\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dal-ar.fina</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0689\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"-27\" yOffset=\"-65\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dal-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-40\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AE\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-30\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsdown-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalThreedotsdown-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"127\" y=\"632\" angle=\"0\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"36\" yOffset=\"502\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsdown-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalThreedotsdown-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068F\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"16\" yOffset=\"512\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalTwodotsverticalbelowTahabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n    <component base=\"_tahabove\" xOffset=\"71\" yOffset=\"613\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dal-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dal-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalTwodotsverticalbelowTahabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0759\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n    <component base=\"_tahabove\" xOffset=\"51\" yOffset=\"623\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dal-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dal-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalVinvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"36\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalVinvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06EE\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"16\" yOffset=\"502\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalVinvertedbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalVinvertedbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075A\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dalet-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalet-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D3\"/>\n  <anchor x=\"392\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"634\" y=\"0\" type=\"line\"/>\n      <point x=\"892\" y=\"0\" type=\"line\"/>\n      <point x=\"892\" y=\"1200\" type=\"line\"/>\n      <point x=\"634\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"58\" y=\"930\" type=\"line\"/>\n      <point x=\"886\" y=\"930\" type=\"line\"/>\n      <point x=\"1073\" y=\"987\" type=\"line\"/>\n      <point x=\"1073\" y=\"1200\" type=\"line\"/>\n      <point x=\"58\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/daletdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"daletdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB33\"/>\n  <outline>\n    <component base=\"dalet-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-208\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/damma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"damma-ar\" format=\"2\">\n  <unicode hex=\"064F\"/>\n  <anchor x=\"566\" y=\"1114\" name=\"_top\"/>\n  <anchor x=\"593\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"322\" y=\"1097\" type=\"line\"/>\n      <point x=\"689\" y=\"1175\"/>\n      <point x=\"817\" y=\"1282\"/>\n      <point x=\"817\" y=\"1417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"1512\"/>\n      <point x=\"752\" y=\"1581\"/>\n      <point x=\"652\" y=\"1581\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"1581\"/>\n      <point x=\"481\" y=\"1513\"/>\n      <point x=\"481\" y=\"1412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"481\" y=\"1333\"/>\n      <point x=\"528\" y=\"1274\"/>\n      <point x=\"575\" y=\"1247\" type=\"curve\"/>\n      <point x=\"663\" y=\"1304\" type=\"line\"/>\n      <point x=\"617\" y=\"1331\"/>\n      <point x=\"597\" y=\"1366\"/>\n      <point x=\"597\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"597\" y=\"1437\"/>\n      <point x=\"615\" y=\"1460\"/>\n      <point x=\"647\" y=\"1460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"1460\"/>\n      <point x=\"693\" y=\"1444\"/>\n      <point x=\"693\" y=\"1408\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"1344\"/>\n      <point x=\"613\" y=\"1313\"/>\n      <point x=\"322\" y=\"1243\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dammatan-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dammatan-ar\" format=\"2\">\n  <unicode hex=\"064C\"/>\n  <anchor x=\"586\" y=\"1134\" name=\"_top\"/>\n  <anchor x=\"613\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"286\" y=\"1097\" type=\"line\"/>\n      <point x=\"743\" y=\"1195\"/>\n      <point x=\"876\" y=\"1252\"/>\n      <point x=\"876\" y=\"1417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"1512\"/>\n      <point x=\"811\" y=\"1581\"/>\n      <point x=\"711\" y=\"1581\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"1581\"/>\n      <point x=\"540\" y=\"1513\"/>\n      <point x=\"540\" y=\"1412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"1333\"/>\n      <point x=\"587\" y=\"1274\"/>\n      <point x=\"634\" y=\"1247\" type=\"curve\"/>\n      <point x=\"722\" y=\"1304\" type=\"line\"/>\n      <point x=\"676\" y=\"1331\"/>\n      <point x=\"656\" y=\"1366\"/>\n      <point x=\"656\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"1437\"/>\n      <point x=\"674\" y=\"1460\"/>\n      <point x=\"706\" y=\"1460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"1460\"/>\n      <point x=\"752\" y=\"1444\"/>\n      <point x=\"752\" y=\"1408\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"1361\"/>\n      <point x=\"726\" y=\"1346\"/>\n      <point x=\"445\" y=\"1276\" type=\"curve\"/>\n      <point x=\"411\" y=\"1179\" type=\"line\"/>\n      <point x=\"464\" y=\"1190\"/>\n      <point x=\"505\" y=\"1262\"/>\n      <point x=\"505\" y=\"1335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"505\" y=\"1425\"/>\n      <point x=\"465\" y=\"1470\"/>\n      <point x=\"392\" y=\"1470\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"1470\"/>\n      <point x=\"298\" y=\"1449\"/>\n      <point x=\"271\" y=\"1428\" type=\"curve\"/>\n      <point x=\"275\" y=\"1323\" type=\"line\"/>\n      <point x=\"300\" y=\"1335\"/>\n      <point x=\"331\" y=\"1344\"/>\n      <point x=\"354\" y=\"1344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"1344\"/>\n      <point x=\"388\" y=\"1336\"/>\n      <point x=\"388\" y=\"1306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"1264\"/>\n      <point x=\"367\" y=\"1258\"/>\n      <point x=\"281\" y=\"1237\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dashdownA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dashdownArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21E3\"/>\n  <outline>\n    <contour>\n      <point x=\"539\" y=\"-20\" type=\"line\"/>\n      <point x=\"661\" y=\"-20\" type=\"line\"/>\n      <point x=\"1161\" y=\"470\" type=\"line\"/>\n      <point x=\"1006\" y=\"650\" type=\"line\"/>\n      <point x=\"609\" y=\"264\" type=\"line\"/>\n      <point x=\"591\" y=\"264\" type=\"line\"/>\n      <point x=\"194\" y=\"650\" type=\"line\"/>\n      <point x=\"39\" y=\"470\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"228\" type=\"line\"/>\n      <point x=\"731\" y=\"228\" type=\"line\"/>\n      <point x=\"731\" y=\"574\" type=\"line\"/>\n      <point x=\"469\" y=\"574\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"642\" type=\"line\"/>\n      <point x=\"731\" y=\"642\" type=\"line\"/>\n      <point x=\"731\" y=\"849\" type=\"line\"/>\n      <point x=\"469\" y=\"849\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"917\" type=\"line\"/>\n      <point x=\"731\" y=\"917\" type=\"line\"/>\n      <point x=\"731\" y=\"1133\" type=\"line\"/>\n      <point x=\"469\" y=\"1133\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"1201\" type=\"line\"/>\n      <point x=\"731\" y=\"1201\" type=\"line\"/>\n      <point x=\"731\" y=\"1420\" type=\"line\"/>\n      <point x=\"469\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dataLinkEscapeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2410\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dataLinkEscapeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"635\" type=\"line\"/>\n      <point x=\"1091\" y=\"635\" type=\"line\"/>\n      <point x=\"1091\" y=\"785\" type=\"line\"/>\n      <point x=\"109\" y=\"785\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dateseparator-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dateseparator-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060D\"/>\n  <outline>\n    <contour>\n      <point x=\"234\" y=\"0\" type=\"line\"/>\n      <point x=\"485\" y=\"0\" type=\"line\"/>\n      <point x=\"958\" y=\"1060\" type=\"line\"/>\n      <point x=\"664\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dcaron.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcaron.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"881\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1025\" y=\"1188\" type=\"line\"/>\n      <point x=\"1227\" y=\"1188\" type=\"line\"/>\n      <point x=\"1317\" y=\"1568\" type=\"line\"/>\n      <point x=\"1075\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"455\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"-20\"/>\n      <point x=\"658\" y=\"51\"/>\n      <point x=\"676\" y=\"192\" type=\"curve\"/>\n      <point x=\"770\" y=\"192\" type=\"line\"/>\n      <point x=\"698\" y=\"529\" type=\"line\"/>\n      <point x=\"698\" y=\"323\"/>\n      <point x=\"658\" y=\"235\"/>\n      <point x=\"541\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"235\"/>\n      <point x=\"364\" y=\"334\"/>\n      <point x=\"364\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"717\"/>\n      <point x=\"428\" y=\"825\"/>\n      <point x=\"541\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"825\"/>\n      <point x=\"698\" y=\"734\"/>\n      <point x=\"698\" y=\"529\" type=\"curve\"/>\n      <point x=\"760\" y=\"868\" type=\"line\"/>\n      <point x=\"672\" y=\"868\" type=\"line\"/>\n      <point x=\"652\" y=\"1010\"/>\n      <point x=\"588\" y=\"1080\"/>\n      <point x=\"457\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"217\" y=\"1080\"/>\n      <point x=\"79\" y=\"879\"/>\n      <point x=\"79\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"79\" y=\"175\"/>\n      <point x=\"217\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"737\" y=\"-10\" type=\"line\"/>\n      <point x=\"969\" y=\"0\" type=\"line\"/>\n      <point x=\"969\" y=\"1500\" type=\"line\"/>\n      <point x=\"698\" y=\"1500\" type=\"line\"/>\n      <point x=\"698\" y=\"200\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010F\"/>\n  <outline>\n    <contour>\n      <point x=\"1105\" y=\"1188\" type=\"line\"/>\n      <point x=\"1311\" y=\"1188\" type=\"line\"/>\n      <point x=\"1401\" y=\"1568\" type=\"line\"/>\n      <point x=\"1155\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"d\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>d</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dcroat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcroat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0111\"/>\n  <outline>\n    <contour>\n      <point x=\"462\" y=\"1168\" type=\"line\"/>\n      <point x=\"1155\" y=\"1168\" type=\"line\"/>\n      <point x=\"1155\" y=\"1392\" type=\"line\"/>\n      <point x=\"462\" y=\"1392\" type=\"line\"/>\n    </contour>\n    <component base=\"d\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>d</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ddahal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ddahal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ddahal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ddahal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068D\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ddal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ddal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"71\" yOffset=\"613\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ddal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ddal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0688\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"51\" yOffset=\"623\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/de-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"de-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0434\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"374\" y=\"207\" type=\"line\"/>\n      <point x=\"451\" y=\"299\"/>\n      <point x=\"480\" y=\"424\"/>\n      <point x=\"480\" y=\"589\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"1060\" type=\"line\"/>\n      <point x=\"214\" y=\"1060\" type=\"line\"/>\n      <point x=\"214\" y=\"674\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"214\" y=\"477\"/>\n      <point x=\"182\" y=\"333\"/>\n      <point x=\"103\" y=\"232\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"23\" y=\"-270\" type=\"line\"/>\n      <point x=\"292\" y=\"-270\" type=\"line\"/>\n      <point x=\"292\" y=\"192\" type=\"line\"/>\n      <point x=\"23\" y=\"192\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"878\" y=\"-270\" type=\"line\"/>\n      <point x=\"1147\" y=\"-270\" type=\"line\"/>\n      <point x=\"1147\" y=\"192\" type=\"line\"/>\n      <point x=\"878\" y=\"192\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"740\" y=\"0\" type=\"line\"/>\n      <point x=\"1021\" y=\"0\" type=\"line\"/>\n      <point x=\"1021\" y=\"1060\" type=\"line\"/>\n      <point x=\"740\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"341\" y=\"808\" type=\"line\"/>\n      <point x=\"869\" y=\"808\" type=\"line\"/>\n      <point x=\"869\" y=\"1060\" type=\"line\"/>\n      <point x=\"341\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1147\" y=\"252\" type=\"line\"/>\n      <point x=\"23\" y=\"252\" type=\"line\"/>\n      <point x=\"23\" y=\"0\" type=\"line\"/>\n      <point x=\"1147\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/de-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"de-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"g\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/decimalseparator-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"decimalseparator-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066B\"/>\n  <outline>\n    <contour>\n      <point x=\"545\" y=\"-318\" type=\"line\"/>\n      <point x=\"684\" y=\"-198\"/>\n      <point x=\"767\" y=\"-55\"/>\n      <point x=\"767\" y=\"95\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"236\"/>\n      <point x=\"701\" y=\"312\"/>\n      <point x=\"596\" y=\"312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"312\"/>\n      <point x=\"432\" y=\"241\"/>\n      <point x=\"432\" y=\"143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"65\"/>\n      <point x=\"458\" y=\"-2\"/>\n      <point x=\"533\" y=\"-21\" type=\"curve\"/>\n      <point x=\"508\" y=\"-96\"/>\n      <point x=\"474\" y=\"-146\"/>\n      <point x=\"414\" y=\"-215\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/degree.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"degree\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B0\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"690\"/>\n      <point x=\"994\" y=\"840\"/>\n      <point x=\"994\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"1290\"/>\n      <point x=\"836\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"1440\"/>\n      <point x=\"206\" y=\"1290\"/>\n      <point x=\"206\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"840\"/>\n      <point x=\"364\" y=\"690\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"892\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"504\" y=\"892\"/>\n      <point x=\"440\" y=\"961\"/>\n      <point x=\"440\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1169\"/>\n      <point x=\"504\" y=\"1238\"/>\n      <point x=\"600\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"1238\"/>\n      <point x=\"760\" y=\"1169\"/>\n      <point x=\"760\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"961\"/>\n      <point x=\"696\" y=\"892\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/deleteC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deleteControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2421\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/deleteF_ormT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deleteFormTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2425\"/>\n  <outline>\n    <contour>\n      <point x=\"191\" y=\"261\" type=\"line\"/>\n      <point x=\"1103\" y=\"1028\" type=\"line\"/>\n      <point x=\"990\" y=\"1242\" type=\"line\"/>\n      <point x=\"78\" y=\"475\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"519\" y=\"61\" type=\"line\"/>\n      <point x=\"1116\" y=\"561\" type=\"line\"/>\n      <point x=\"1002\" y=\"774\" type=\"line\"/>\n      <point x=\"405\" y=\"272\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"712\" type=\"line\"/>\n      <point x=\"759\" y=\"1213\" type=\"line\"/>\n      <point x=\"647\" y=\"1427\" type=\"line\"/>\n      <point x=\"50\" y=\"925\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/delta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"delta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B4\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"605\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"604\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"-20\"/>\n      <point x=\"1101\" y=\"164\"/>\n      <point x=\"1101\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"809\"/>\n      <point x=\"925\" y=\"916\"/>\n      <point x=\"616\" y=\"1000\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"1030\"/>\n      <point x=\"469\" y=\"1077\"/>\n      <point x=\"469\" y=\"1148\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"1229\"/>\n      <point x=\"518\" y=\"1263\"/>\n      <point x=\"634\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"1263\"/>\n      <point x=\"860\" y=\"1236\"/>\n      <point x=\"949\" y=\"1183\" type=\"curve\"/>\n      <point x=\"1051\" y=\"1413\" type=\"line\"/>\n      <point x=\"925\" y=\"1485\"/>\n      <point x=\"787\" y=\"1520\"/>\n      <point x=\"634\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"347\" y=\"1520\"/>\n      <point x=\"183\" y=\"1390\"/>\n      <point x=\"183\" y=\"1161\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"1013\"/>\n      <point x=\"264\" y=\"881\"/>\n      <point x=\"507\" y=\"863\" type=\"curve\"/>\n      <point x=\"449\" y=\"902\" type=\"line\"/>\n      <point x=\"449\" y=\"836\" type=\"line\"/>\n      <point x=\"232\" y=\"823\"/>\n      <point x=\"109\" y=\"681\"/>\n      <point x=\"109\" y=\"446\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"153\"/>\n      <point x=\"293\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"604\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"236\"/>\n      <point x=\"386\" y=\"325\"/>\n      <point x=\"386\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"625\"/>\n      <point x=\"474\" y=\"723\"/>\n      <point x=\"604\" y=\"723\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"736\" y=\"723\"/>\n      <point x=\"824\" y=\"634\"/>\n      <point x=\"824\" y=\"479\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"326\"/>\n      <point x=\"742\" y=\"236\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlFourControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2414\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"four.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlOneControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2411\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"one.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>one.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlThreeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2413\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"three.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2412\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"two.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"diagonalcrosshatchFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A9\"/>\n  <note>\nuni25A9\n</note>\n  <outline>\n    <contour>\n      <point x=\"1003\" y=\"223\" type=\"line\"/>\n      <point x=\"1087\" y=\"317\" type=\"line\"/>\n      <point x=\"223\" y=\"1181\" type=\"line\"/>\n      <point x=\"129\" y=\"1097\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"620\" y=\"321\" type=\"line\"/>\n      <point x=\"798\" y=\"321\" type=\"line\"/>\n      <point x=\"200\" y=\"919\" type=\"line\"/>\n      <point x=\"200\" y=\"741\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"197\" y=\"223\" type=\"line\"/>\n      <point x=\"1071\" y=\"1097\" type=\"line\"/>\n      <point x=\"977\" y=\"1181\" type=\"line\"/>\n      <point x=\"113\" y=\"317\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"402\" y=\"321\" type=\"line\"/>\n      <point x=\"580\" y=\"321\" type=\"line\"/>\n      <point x=\"1000\" y=\"741\" type=\"line\"/>\n      <point x=\"1000\" y=\"919\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"170\" y=\"464\" type=\"line\"/>\n      <point x=\"791\" y=\"1102\" type=\"line\"/>\n      <point x=\"613\" y=\"1102\" type=\"line\"/>\n      <point x=\"170\" y=\"643\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1030\" y=\"464\" type=\"line\"/>\n      <point x=\"1030\" y=\"643\" type=\"line\"/>\n      <point x=\"587\" y=\"1102\" type=\"line\"/>\n      <point x=\"409\" y=\"1102\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/diamondB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"diamondBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2666\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"40\" type=\"line\"/>\n      <point x=\"1124\" y=\"670\" type=\"line\"/>\n      <point x=\"600\" y=\"1300\" type=\"line\"/>\n      <point x=\"76\" y=\"670\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A8\"/>\n  <outline>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dieresiscomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dieresiscomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresiscomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"841\" y=\"1586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"1586\"/>\n      <point x=\"1012\" y=\"1662\"/>\n      <point x=\"1012\" y=\"1757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"1852\"/>\n      <point x=\"936\" y=\"1927\"/>\n      <point x=\"841\" y=\"1927\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"1927\"/>\n      <point x=\"671\" y=\"1852\"/>\n      <point x=\"671\" y=\"1757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1662\"/>\n      <point x=\"747\" y=\"1586\"/>\n    </contour>\n    <contour>\n      <point x=\"359\" y=\"1586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"1586\"/>\n      <point x=\"529\" y=\"1662\"/>\n      <point x=\"529\" y=\"1757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"1852\"/>\n      <point x=\"454\" y=\"1927\"/>\n      <point x=\"359\" y=\"1927\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"1927\"/>\n      <point x=\"188\" y=\"1852\"/>\n      <point x=\"188\" y=\"1757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"188\" y=\"1662\"/>\n      <point x=\"264\" y=\"1586\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dieresiscomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresiscomb\" format=\"2\">\n  <unicode hex=\"0308\"/>\n  <anchor x=\"598\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"824\" y=\"1231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"1231\"/>\n      <point x=\"982\" y=\"1302\"/>\n      <point x=\"982\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"1477\"/>\n      <point x=\"911\" y=\"1546\"/>\n      <point x=\"824\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"1546\"/>\n      <point x=\"667\" y=\"1477\"/>\n      <point x=\"667\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"1302\"/>\n      <point x=\"737\" y=\"1231\"/>\n    </contour>\n    <contour>\n      <point x=\"376\" y=\"1231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"1231\"/>\n      <point x=\"533\" y=\"1302\"/>\n      <point x=\"533\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"1477\"/>\n      <point x=\"463\" y=\"1546\"/>\n      <point x=\"376\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"1546\"/>\n      <point x=\"219\" y=\"1477\"/>\n      <point x=\"219\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"1302\"/>\n      <point x=\"289\" y=\"1231\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0385\"/>\n  <anchor x=\"578\" y=\"1060\" name=\"_top\"/>\n  <outline>\n    <contour>\n      <point x=\"426\" y=\"1248\" type=\"line\"/>\n      <point x=\"693\" y=\"1248\" type=\"line\"/>\n      <point x=\"827\" y=\"1628\" type=\"line\"/>\n      <point x=\"540\" y=\"1628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"250\" y=\"1231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"337\" y=\"1231\"/>\n      <point x=\"407\" y=\"1302\"/>\n      <point x=\"407\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"407\" y=\"1477\"/>\n      <point x=\"337\" y=\"1546\"/>\n      <point x=\"250\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"1546\"/>\n      <point x=\"93\" y=\"1477\"/>\n      <point x=\"93\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"93\" y=\"1302\"/>\n      <point x=\"164\" y=\"1231\"/>\n    </contour>\n    <contour>\n      <point x=\"970\" y=\"1231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1057\" y=\"1231\"/>\n      <point x=\"1127\" y=\"1302\"/>\n      <point x=\"1127\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1127\" y=\"1477\"/>\n      <point x=\"1057\" y=\"1546\"/>\n      <point x=\"970\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"1546\"/>\n      <point x=\"813\" y=\"1477\"/>\n      <point x=\"813\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"1302\"/>\n      <point x=\"883\" y=\"1231\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/divide.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"divide\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F7\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"584\" type=\"line\"/>\n      <point x=\"1100\" y=\"584\" type=\"line\"/>\n      <point x=\"1100\" y=\"834\" type=\"line\"/>\n      <point x=\"100\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"100\"/>\n      <point x=\"780\" y=\"181\"/>\n      <point x=\"780\" y=\"279\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"378\"/>\n      <point x=\"699\" y=\"459\"/>\n      <point x=\"600\" y=\"459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"459\"/>\n      <point x=\"420\" y=\"378\"/>\n      <point x=\"420\" y=\"279\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"181\"/>\n      <point x=\"501\" y=\"100\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"959\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"959\"/>\n      <point x=\"780\" y=\"1040\"/>\n      <point x=\"780\" y=\"1139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1237\"/>\n      <point x=\"699\" y=\"1318\"/>\n      <point x=\"600\" y=\"1318\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"1318\"/>\n      <point x=\"420\" y=\"1237\"/>\n      <point x=\"420\" y=\"1139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"1040\"/>\n      <point x=\"501\" y=\"959\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/divisionslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"divisionslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2215\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"2\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0452\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"275\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"73\" type=\"line\"/>\n      <point x=\"1049\" y=\"73\" type=\"line\"/>\n      <point x=\"1049\" y=\"570\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"818\"/>\n      <point x=\"937\" y=\"960\"/>\n      <point x=\"742\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"585\" y=\"960\"/>\n      <point x=\"504\" y=\"890\"/>\n      <point x=\"494\" y=\"748\" type=\"curve\"/>\n      <point x=\"400\" y=\"748\" type=\"line\"/>\n      <point x=\"462\" y=\"401\" type=\"line\"/>\n      <point x=\"462\" y=\"605\"/>\n      <point x=\"522\" y=\"705\"/>\n      <point x=\"642\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"705\"/>\n      <point x=\"778\" y=\"629\"/>\n      <point x=\"778\" y=\"495\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"191\" y=\"0\" type=\"line\"/>\n      <point x=\"462\" y=\"0\" type=\"line\"/>\n      <point x=\"462\" y=\"1500\" type=\"line\"/>\n      <point x=\"191\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1109\" type=\"line\"/>\n      <point x=\"787\" y=\"1109\" type=\"line\"/>\n      <point x=\"787\" y=\"1358\" type=\"line\"/>\n      <point x=\"0\" y=\"1358\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"497\" y=\"-480\" type=\"line\"/>\n      <point x=\"607\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"-436\"/>\n      <point x=\"1049\" y=\"-307\"/>\n      <point x=\"1049\" y=\"24\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"384\" type=\"line\"/>\n      <point x=\"778\" y=\"384\" type=\"line\"/>\n      <point x=\"778\" y=\"-8\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"-127\"/>\n      <point x=\"732\" y=\"-178\"/>\n      <point x=\"627\" y=\"-191\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"-209\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"487\" y=\"1288\" type=\"line\"/>\n      <point x=\"740\" y=\"1288\" type=\"line\"/>\n      <point x=\"740\" y=\"1740\" type=\"line\"/>\n      <point x=\"487\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"487\" y=\"-320\" type=\"line\"/>\n      <point x=\"740\" y=\"-320\" type=\"line\"/>\n      <point x=\"740\" y=\"131\" type=\"line\"/>\n      <point x=\"487\" y=\"131\" type=\"line\"/>\n    </contour>\n    <component base=\"S\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=S</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=S</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dollar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0024\"/>\n  <outline>\n    <contour>\n      <point x=\"487\" y=\"-320\" type=\"line\"/>\n      <point x=\"740\" y=\"-320\" type=\"line\"/>\n      <point x=\"740\" y=\"1740\" type=\"line\"/>\n      <point x=\"487\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"S\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=S</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=S</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar_greater.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1295\" y=\"189\" type=\"line\"/>\n      <point x=\"2229\" y=\"575\" type=\"line\"/>\n      <point x=\"2229\" y=\"843\" type=\"line\"/>\n      <point x=\"647\" y=\"1486\" type=\"line\"/>\n      <point x=\"647\" y=\"1217\" type=\"line\"/>\n      <point x=\"1912\" y=\"726\" type=\"line\"/>\n      <point x=\"1912\" y=\"692\" type=\"line\"/>\n      <point x=\"1295\" y=\"459\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"544\" y=\"-320\" type=\"line\"/>\n      <point x=\"797\" y=\"-320\" type=\"line\"/>\n      <point x=\"797\" y=\"232\" type=\"line\"/>\n      <point x=\"544\" y=\"232\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"608\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"943\" y=\"-20\"/>\n      <point x=\"1131\" y=\"122\"/>\n      <point x=\"1131\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"533\"/>\n      <point x=\"1018\" y=\"676\"/>\n      <point x=\"818\" y=\"779\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"626\" y=\"878\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"922\"/>\n      <point x=\"493\" y=\"980\"/>\n      <point x=\"493\" y=\"1043\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"1136\"/>\n      <point x=\"562\" y=\"1189\"/>\n      <point x=\"682\" y=\"1189\" type=\"curve\"/>\n      <point x=\"681\" y=\"1440\" type=\"line\"/>\n      <point x=\"380\" y=\"1440\"/>\n      <point x=\"207\" y=\"1298\"/>\n      <point x=\"207\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"207\" y=\"874\"/>\n      <point x=\"322\" y=\"724\"/>\n      <point x=\"524\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"491\"/>\n      <point x=\"845\" y=\"438\"/>\n      <point x=\"845\" y=\"379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"284\"/>\n      <point x=\"766\" y=\"232\"/>\n      <point x=\"624\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"232\"/>\n      <point x=\"350\" y=\"266\"/>\n      <point x=\"205\" y=\"326\" type=\"curve\"/>\n      <point x=\"169\" y=\"58\" type=\"line\"/>\n      <point x=\"289\" y=\"8\"/>\n      <point x=\"447\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"544\" y=\"1189\" type=\"line\"/>\n      <point x=\"797\" y=\"1189\" type=\"line\"/>\n      <point x=\"797\" y=\"1740\" type=\"line\"/>\n      <point x=\"544\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dollar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1295\" y=\"189\" type=\"line\"/>\n      <point x=\"2229\" y=\"575\" type=\"line\"/>\n      <point x=\"2229\" y=\"843\" type=\"line\"/>\n      <point x=\"647\" y=\"1486\" type=\"line\"/>\n      <point x=\"647\" y=\"1217\" type=\"line\"/>\n      <point x=\"1912\" y=\"726\" type=\"line\"/>\n      <point x=\"1912\" y=\"692\" type=\"line\"/>\n      <point x=\"1295\" y=\"459\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"608\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"943\" y=\"-20\"/>\n      <point x=\"1131\" y=\"122\"/>\n      <point x=\"1131\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"533\"/>\n      <point x=\"1018\" y=\"676\"/>\n      <point x=\"818\" y=\"779\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"626\" y=\"878\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"922\"/>\n      <point x=\"493\" y=\"980\"/>\n      <point x=\"493\" y=\"1043\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"1136\"/>\n      <point x=\"562\" y=\"1189\"/>\n      <point x=\"682\" y=\"1189\" type=\"curve\"/>\n      <point x=\"681\" y=\"1440\" type=\"line\"/>\n      <point x=\"380\" y=\"1440\"/>\n      <point x=\"207\" y=\"1298\"/>\n      <point x=\"207\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"207\" y=\"874\"/>\n      <point x=\"322\" y=\"724\"/>\n      <point x=\"524\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"491\"/>\n      <point x=\"845\" y=\"438\"/>\n      <point x=\"845\" y=\"379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"284\"/>\n      <point x=\"766\" y=\"232\"/>\n      <point x=\"624\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"232\"/>\n      <point x=\"350\" y=\"266\"/>\n      <point x=\"205\" y=\"326\" type=\"curve\"/>\n      <point x=\"169\" y=\"58\" type=\"line\"/>\n      <point x=\"289\" y=\"8\"/>\n      <point x=\"447\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"544\" y=\"-320\" type=\"line\"/>\n      <point x=\"797\" y=\"-320\" type=\"line\"/>\n      <point x=\"797\" y=\"1740\" type=\"line\"/>\n      <point x=\"544\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dong.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dong\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AB\"/>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"-370\" type=\"line\"/>\n      <point x=\"1049\" y=\"-370\" type=\"line\"/>\n      <point x=\"1049\" y=\"-121\" type=\"line\"/>\n      <point x=\"149\" y=\"-121\" type=\"line\"/>\n    </contour>\n    <component base=\"dcroat\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dcroat</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dotabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"782\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"542\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1002\" name=\"top\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" yOffset=\"1016\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D9\"/>\n  <outline>\n    <component base=\"dotaccentcomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dotaccentcomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dotaccentcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccentcomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"1572\"/>\n      <point x=\"771\" y=\"1648\"/>\n      <point x=\"771\" y=\"1742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"771\" y=\"1838\"/>\n      <point x=\"694\" y=\"1913\"/>\n      <point x=\"600\" y=\"1913\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"1913\"/>\n      <point x=\"429\" y=\"1838\"/>\n      <point x=\"429\" y=\"1742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"429\" y=\"1648\"/>\n      <point x=\"506\" y=\"1572\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dotaccentcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccentcomb\" format=\"2\">\n  <unicode hex=\"0307\"/>\n  <anchor x=\"602\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"1198\"/>\n      <point x=\"771\" y=\"1275\"/>\n      <point x=\"771\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"771\" y=\"1465\"/>\n      <point x=\"694\" y=\"1539\"/>\n      <point x=\"600\" y=\"1539\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"1539\"/>\n      <point x=\"429\" y=\"1465\"/>\n      <point x=\"429\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"429\" y=\"1275\"/>\n      <point x=\"506\" y=\"1198\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dotbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"599\" y=\"-414\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_dot-ar\" yOffset=\"-782\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dotbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotbelowcomb\" format=\"2\">\n  <unicode hex=\"0323\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"-448\"/>\n      <point x=\"771\" y=\"-372\"/>\n      <point x=\"771\" y=\"-278\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"771\" y=\"-182\"/>\n      <point x=\"694\" y=\"-107\"/>\n      <point x=\"600\" y=\"-107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"-107\"/>\n      <point x=\"429\" y=\"-182\"/>\n      <point x=\"429\" y=\"-278\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"429\" y=\"-372\"/>\n      <point x=\"506\" y=\"-448\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dotcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"596\" y=\"318\" name=\"_center\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" yOffset=\"560\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2801\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"1115\"/>\n      <point x=\"525\" y=\"1193\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1387\"/>\n      <point x=\"447\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"253\" y=\"1465\"/>\n      <point x=\"175\" y=\"1387\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1193\"/>\n      <point x=\"253\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2803\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2807\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1234-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1234567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1234568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1234578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1234678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1235-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1235-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2817\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2837\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2877\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1235678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1235678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2857\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2897\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1236-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1236-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2827\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2867\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots123678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1237-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1237-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2847\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1238-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1238-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2887\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots124-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1245-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1245-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots124567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1245678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1245678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots124568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots124578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1246-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1246-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots124678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1247-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1247-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1248-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1248-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots125-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots125-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2813\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1256-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1256-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2833\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2873\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots125678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots125678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1257-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1257-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2853\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1258-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1258-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2893\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots126-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots126-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2823\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1267-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1267-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2863\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots12678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1268-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1268-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots127-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots127-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2843\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1278-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1278-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots128-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots128-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2883\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2805\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots134-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots134567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots134568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots134578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots134678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28ED\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots135-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots135-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2815\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2835\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2875\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots135678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots135678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2855\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2895\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots136-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots136-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2825\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2865\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots13678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots137-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots137-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2845\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots138-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots138-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2885\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots14-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2809\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots145-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots145-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2819\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2839\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots14567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2879\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots145678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots145678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots14568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2859\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots14578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2899\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots146-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots146-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2829\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2869\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots14678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots147-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots147-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2849\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots148-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots148-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2889\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots15-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots15-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2811\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots156-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots156-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2831\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2871\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots15678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots15678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots157-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots157-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2851\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots158-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots158-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2891\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots16-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots16-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2821\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots167-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots167-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2861\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots1678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots168-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots168-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots17-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots17-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2841\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots178-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots178-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots18-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots18-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2881\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2802\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2806\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots234-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots234567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots234568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots234578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots234678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots235-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots235-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2816\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2836\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2876\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots235678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots235678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2856\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2896\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots236-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots236-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2826\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2866\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots23678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots237-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots237-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2846\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C6\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots238-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots238-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2886\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots24-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots245-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots245-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots24567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots245678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots245678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots24568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots24578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots246-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots246-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots24678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots247-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots247-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots248-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots248-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots25-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots25-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2812\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots256-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots256-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2832\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2872\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots25678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots25678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots257-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots257-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2852\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots258-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots258-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2892\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots26-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots26-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2822\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots267-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots267-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2862\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots2678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots268-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots268-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots27-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots27-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2842\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots278-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots278-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C2\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots28-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots28-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2882\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2804\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots34-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots34567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots34568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots34578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots34678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots35-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots35-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2814\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2834\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2874\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots35678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots35678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2854\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2894\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots36-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots36-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2824\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2864\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots3678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots37-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots37-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2844\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots38-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots38-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2884\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots4-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2808\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots45-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots45-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2818\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2838\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots4567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2878\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots45678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots45678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots4568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2858\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots4578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2898\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots46-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots46-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2828\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2868\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots4678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots47-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots47-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2848\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots48-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots48-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2888\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots5-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots5-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2810\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots56-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots56-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2830\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2870\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots5678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots5678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots57-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots57-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2850\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots58-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots58-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2890\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots6-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots6-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2820\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots67-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots67-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2860\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots68-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots68-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots7-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots7-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2840\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots78-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots78-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dots8-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots8-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2880\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dottedC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dottedCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CC\"/>\n  <note>\nuni25CC\n</note>\n  <outline>\n    <contour>\n      <point x=\"826\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"1011\"/>\n      <point x=\"914\" y=\"1047\"/>\n      <point x=\"914\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"1152\"/>\n      <point x=\"879\" y=\"1187\"/>\n      <point x=\"826\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"1187\"/>\n      <point x=\"738\" y=\"1152\"/>\n      <point x=\"738\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"1047\"/>\n      <point x=\"774\" y=\"1011\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"233\"/>\n      <point x=\"463\" y=\"269\"/>\n      <point x=\"463\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"374\"/>\n      <point x=\"428\" y=\"409\"/>\n      <point x=\"375\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"409\"/>\n      <point x=\"287\" y=\"374\"/>\n      <point x=\"287\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"269\"/>\n      <point x=\"323\" y=\"233\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"398\"/>\n      <point x=\"300\" y=\"434\"/>\n      <point x=\"300\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"539\"/>\n      <point x=\"265\" y=\"574\"/>\n      <point x=\"212\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"574\"/>\n      <point x=\"124\" y=\"539\"/>\n      <point x=\"124\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"434\"/>\n      <point x=\"160\" y=\"398\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"653\" y=\"172\"/>\n      <point x=\"688\" y=\"208\"/>\n      <point x=\"688\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"313\"/>\n      <point x=\"653\" y=\"348\"/>\n      <point x=\"600\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"348\"/>\n      <point x=\"512\" y=\"313\"/>\n      <point x=\"512\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"208\"/>\n      <point x=\"548\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"622\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"203\" y=\"622\"/>\n      <point x=\"238\" y=\"658\"/>\n      <point x=\"238\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"763\"/>\n      <point x=\"203\" y=\"798\"/>\n      <point x=\"150\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"98\" y=\"798\"/>\n      <point x=\"62\" y=\"763\"/>\n      <point x=\"62\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"658\"/>\n      <point x=\"98\" y=\"622\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"847\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"847\"/>\n      <point x=\"300\" y=\"883\"/>\n      <point x=\"300\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"988\"/>\n      <point x=\"265\" y=\"1023\"/>\n      <point x=\"212\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"1023\"/>\n      <point x=\"124\" y=\"988\"/>\n      <point x=\"124\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"883\"/>\n      <point x=\"160\" y=\"847\"/>\n    </contour>\n    <contour>\n      <point x=\"826\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"233\"/>\n      <point x=\"914\" y=\"269\"/>\n      <point x=\"914\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"374\"/>\n      <point x=\"879\" y=\"409\"/>\n      <point x=\"826\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"409\"/>\n      <point x=\"738\" y=\"374\"/>\n      <point x=\"738\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"269\"/>\n      <point x=\"774\" y=\"233\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"1011\"/>\n      <point x=\"463\" y=\"1047\"/>\n      <point x=\"463\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"1152\"/>\n      <point x=\"428\" y=\"1187\"/>\n      <point x=\"375\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"1187\"/>\n      <point x=\"287\" y=\"1152\"/>\n      <point x=\"287\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"1047\"/>\n      <point x=\"323\" y=\"1011\"/>\n    </contour>\n    <contour>\n      <point x=\"989\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1042\" y=\"398\"/>\n      <point x=\"1077\" y=\"434\"/>\n      <point x=\"1077\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"539\"/>\n      <point x=\"1042\" y=\"574\"/>\n      <point x=\"989\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"574\"/>\n      <point x=\"901\" y=\"539\"/>\n      <point x=\"901\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"434\"/>\n      <point x=\"937\" y=\"398\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"622\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1103\" y=\"622\"/>\n      <point x=\"1138\" y=\"658\"/>\n      <point x=\"1138\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"763\"/>\n      <point x=\"1103\" y=\"798\"/>\n      <point x=\"1050\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"998\" y=\"798\"/>\n      <point x=\"962\" y=\"763\"/>\n      <point x=\"962\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"658\"/>\n      <point x=\"998\" y=\"622\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"653\" y=\"1072\"/>\n      <point x=\"688\" y=\"1108\"/>\n      <point x=\"688\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"1213\"/>\n      <point x=\"653\" y=\"1248\"/>\n      <point x=\"600\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"1248\"/>\n      <point x=\"512\" y=\"1213\"/>\n      <point x=\"512\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"1108\"/>\n      <point x=\"548\" y=\"1072\"/>\n    </contour>\n    <contour>\n      <point x=\"989\" y=\"847\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1042\" y=\"847\"/>\n      <point x=\"1077\" y=\"883\"/>\n      <point x=\"1077\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"988\"/>\n      <point x=\"1042\" y=\"1023\"/>\n      <point x=\"989\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"1023\"/>\n      <point x=\"901\" y=\"988\"/>\n      <point x=\"901\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"883\"/>\n      <point x=\"937\" y=\"847\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dottedS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dottedSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1A\"/>\n  <note>\nuni2B1A\n</note>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"1072\"/>\n      <point x=\"1138\" y=\"1112\"/>\n      <point x=\"1138\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"1209\"/>\n      <point x=\"1099\" y=\"1248\"/>\n      <point x=\"1050\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"1248\"/>\n      <point x=\"962\" y=\"1209\"/>\n      <point x=\"962\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"1112\"/>\n      <point x=\"1002\" y=\"1072\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"172\"/>\n      <point x=\"238\" y=\"212\"/>\n      <point x=\"238\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"309\"/>\n      <point x=\"199\" y=\"348\"/>\n      <point x=\"150\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"348\"/>\n      <point x=\"62\" y=\"309\"/>\n      <point x=\"62\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"212\"/>\n      <point x=\"102\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"472\"/>\n      <point x=\"238\" y=\"512\"/>\n      <point x=\"238\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"609\"/>\n      <point x=\"199\" y=\"648\"/>\n      <point x=\"150\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"648\"/>\n      <point x=\"62\" y=\"609\"/>\n      <point x=\"62\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"512\"/>\n      <point x=\"102\" y=\"472\"/>\n    </contour>\n    <contour>\n      <point x=\"450\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"172\"/>\n      <point x=\"538\" y=\"212\"/>\n      <point x=\"538\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"309\"/>\n      <point x=\"499\" y=\"348\"/>\n      <point x=\"450\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"348\"/>\n      <point x=\"362\" y=\"309\"/>\n      <point x=\"362\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"212\"/>\n      <point x=\"402\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"772\"/>\n      <point x=\"238\" y=\"812\"/>\n      <point x=\"238\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"909\"/>\n      <point x=\"199\" y=\"948\"/>\n      <point x=\"150\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"948\"/>\n      <point x=\"62\" y=\"909\"/>\n      <point x=\"62\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"812\"/>\n      <point x=\"102\" y=\"772\"/>\n    </contour>\n    <contour>\n      <point x=\"750\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"172\"/>\n      <point x=\"838\" y=\"212\"/>\n      <point x=\"838\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"309\"/>\n      <point x=\"799\" y=\"348\"/>\n      <point x=\"750\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"348\"/>\n      <point x=\"662\" y=\"309\"/>\n      <point x=\"662\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"212\"/>\n      <point x=\"702\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"1072\"/>\n      <point x=\"238\" y=\"1112\"/>\n      <point x=\"238\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1209\"/>\n      <point x=\"199\" y=\"1248\"/>\n      <point x=\"150\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"1248\"/>\n      <point x=\"62\" y=\"1209\"/>\n      <point x=\"62\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"1112\"/>\n      <point x=\"102\" y=\"1072\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"172\"/>\n      <point x=\"1138\" y=\"212\"/>\n      <point x=\"1138\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"309\"/>\n      <point x=\"1099\" y=\"348\"/>\n      <point x=\"1050\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"348\"/>\n      <point x=\"962\" y=\"309\"/>\n      <point x=\"962\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"212\"/>\n      <point x=\"1002\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"450\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"1072\"/>\n      <point x=\"538\" y=\"1112\"/>\n      <point x=\"538\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1209\"/>\n      <point x=\"499\" y=\"1248\"/>\n      <point x=\"450\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"1248\"/>\n      <point x=\"362\" y=\"1209\"/>\n      <point x=\"362\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"1112\"/>\n      <point x=\"402\" y=\"1072\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"472\"/>\n      <point x=\"1138\" y=\"512\"/>\n      <point x=\"1138\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"609\"/>\n      <point x=\"1099\" y=\"648\"/>\n      <point x=\"1050\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"648\"/>\n      <point x=\"962\" y=\"609\"/>\n      <point x=\"962\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"512\"/>\n      <point x=\"1002\" y=\"472\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"772\"/>\n      <point x=\"1138\" y=\"812\"/>\n      <point x=\"1138\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"909\"/>\n      <point x=\"1099\" y=\"948\"/>\n      <point x=\"1050\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"948\"/>\n      <point x=\"962\" y=\"909\"/>\n      <point x=\"962\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"812\"/>\n      <point x=\"1002\" y=\"772\"/>\n    </contour>\n    <contour>\n      <point x=\"750\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"1072\"/>\n      <point x=\"838\" y=\"1112\"/>\n      <point x=\"838\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"1209\"/>\n      <point x=\"799\" y=\"1248\"/>\n      <point x=\"750\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"1248\"/>\n      <point x=\"662\" y=\"1209\"/>\n      <point x=\"662\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"1112\"/>\n      <point x=\"702\" y=\"1072\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.comb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"doubleverticalbarbelowSymbol-ar.comb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"612\" y=\"-62\" name=\"_bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"650\" y=\"-434\" type=\"line\"/>\n      <point x=\"827\" y=\"-434\" type=\"line\"/>\n      <point x=\"818\" y=\"-77\" type=\"line\"/>\n      <point x=\"640\" y=\"-77\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"408\" y=\"-434\" type=\"line\"/>\n      <point x=\"586\" y=\"-434\" type=\"line\"/>\n      <point x=\"577\" y=\"-77\" type=\"line\"/>\n      <point x=\"399\" y=\"-77\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"doubleverticalbarbelowSymbol-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FBBC\"/>\n  <outline>\n    <component base=\"doubleverticalbarbelowSymbol-ar.comb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/downA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2193\"/>\n  <outline>\n    <contour>\n      <point x=\"731\" y=\"1420\" type=\"line\"/>\n      <point x=\"469\" y=\"1420\" type=\"line\"/>\n      <point x=\"469\" y=\"169\" type=\"line\"/>\n      <point x=\"731\" y=\"169\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1161\" y=\"470\" type=\"line\"/>\n      <point x=\"1006\" y=\"650\" type=\"line\"/>\n      <point x=\"609\" y=\"264\" type=\"line\"/>\n      <point x=\"591\" y=\"264\" type=\"line\"/>\n      <point x=\"194\" y=\"650\" type=\"line\"/>\n      <point x=\"39\" y=\"470\" type=\"line\"/>\n      <point x=\"539\" y=\"-20\" type=\"line\"/>\n      <point x=\"661\" y=\"-20\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/downB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BE\"/>\n  <note>\nuni25BE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"318\" type=\"line\"/>\n      <point x=\"1069\" y=\"1115\" type=\"line\"/>\n      <point x=\"131\" y=\"1115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/downB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BC\"/>\n  <note>\ntriagdn\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"170\" type=\"line\"/>\n      <point x=\"1200\" y=\"1190\" type=\"line\"/>\n      <point x=\"0\" y=\"1190\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/downT_ipL_eftA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downTipLeftArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21B2\"/>\n  <outline>\n    <contour>\n      <point x=\"883\" y=\"388\" type=\"line\"/>\n      <point x=\"1125\" y=\"388\" type=\"line\"/>\n      <point x=\"1125\" y=\"1127\" type=\"line\"/>\n      <point x=\"883\" y=\"1127\" type=\"line\"/>\n    </contour>\n    <component base=\"leftArrow\" yOffset=\"-198\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/downW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BF\"/>\n  <note>\nuni25BF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"318\" type=\"line\"/>\n      <point x=\"1069\" y=\"1115\" type=\"line\"/>\n      <point x=\"131\" y=\"1115\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"517\" y=\"544\" type=\"line\"/>\n      <point x=\"683\" y=\"544\" type=\"line\"/>\n      <point x=\"394\" y=\"1035\" type=\"line\"/>\n      <point x=\"312\" y=\"923\" type=\"line\"/>\n      <point x=\"888\" y=\"923\" type=\"line\"/>\n      <point x=\"806\" y=\"1035\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/downW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BD\"/>\n  <note>\nuni25BD\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"170\" type=\"line\"/>\n      <point x=\"1200\" y=\"1190\" type=\"line\"/>\n      <point x=\"0\" y=\"1190\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"500\" y=\"422\" type=\"line\"/>\n      <point x=\"702\" y=\"423\" type=\"line\"/>\n      <point x=\"253\" y=\"1187\" type=\"line\"/>\n      <point x=\"144\" y=\"990\" type=\"line\"/>\n      <point x=\"1056\" y=\"990\" type=\"line\"/>\n      <point x=\"944\" y=\"1181\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dtail.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dtail\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0256\"/>\n  <anchor x=\"540\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"530\" name=\"center\"/>\n  <anchor x=\"914\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1157\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"495\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"-20\"/>\n      <point x=\"735\" y=\"51\"/>\n      <point x=\"752\" y=\"192\" type=\"curve\"/>\n      <point x=\"850\" y=\"192\" type=\"line\"/>\n      <point x=\"778\" y=\"529\" type=\"line\"/>\n      <point x=\"778\" y=\"323\"/>\n      <point x=\"725\" y=\"235\"/>\n      <point x=\"571\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"235\"/>\n      <point x=\"356\" y=\"334\"/>\n      <point x=\"356\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"717\"/>\n      <point x=\"434\" y=\"825\"/>\n      <point x=\"571\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"825\"/>\n      <point x=\"778\" y=\"734\"/>\n      <point x=\"778\" y=\"529\" type=\"curve\"/>\n      <point x=\"840\" y=\"868\" type=\"line\"/>\n      <point x=\"752\" y=\"868\" type=\"line\"/>\n      <point x=\"728\" y=\"1010\"/>\n      <point x=\"652\" y=\"1080\"/>\n      <point x=\"497\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"1080\"/>\n      <point x=\"79\" y=\"879\"/>\n      <point x=\"79\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"79\" y=\"175\"/>\n      <point x=\"232\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"1303\" y=\"-474\" type=\"line\"/>\n      <point x=\"1321\" y=\"-229\" type=\"line\"/>\n      <point x=\"1243\" y=\"-216\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1108\" y=\"-193\"/>\n      <point x=\"1049\" y=\"-119\"/>\n      <point x=\"1049\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"444\" type=\"line\"/>\n      <point x=\"778\" y=\"444\" type=\"line\"/>\n      <point x=\"778\" y=\"94\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"-284\"/>\n      <point x=\"926\" y=\"-417\"/>\n      <point x=\"1263\" y=\"-468\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"778\" y=\"300\" type=\"line\"/>\n      <point x=\"1049\" y=\"300\" type=\"line\"/>\n      <point x=\"1049\" y=\"1500\" type=\"line\"/>\n      <point x=\"778\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dul-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dul-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"127\" y=\"632\" angle=\"0\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"36\" yOffset=\"482\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dul-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dul-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068E\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"16\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dyeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dyeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotsverticalcenter-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"37\" yOffset=\"-349\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dyeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dyeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0684\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotsverticalcenter-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"113\" yOffset=\"-343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dyeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dyeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dyeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dyeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0455\"/>\n  <outline>\n    <component base=\"s\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/dzhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dzhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045F\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"773\" y=\"0\" type=\"line\"/>\n      <point x=\"1044\" y=\"0\" type=\"line\"/>\n      <point x=\"1044\" y=\"1060\" type=\"line\"/>\n      <point x=\"773\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"473\" y=\"-270\" type=\"line\"/>\n      <point x=\"727\" y=\"-270\" type=\"line\"/>\n      <point x=\"727\" y=\"130\" type=\"line\"/>\n      <point x=\"473\" y=\"130\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"156\" y=\"0\" type=\"line\"/>\n      <point x=\"1044\" y=\"0\" type=\"line\"/>\n      <point x=\"1044\" y=\"249\" type=\"line\"/>\n      <point x=\"156\" y=\"249\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"156\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"1060\" type=\"line\"/>\n      <point x=\"156\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/e-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"twodotsverticalbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-25\" yOffset=\"-389\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/e-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"513\" y=\"-968\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"twodotsverticalbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-25\" yOffset=\"-399\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/e-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D0\"/>\n  <guideline x=\"145\" y=\"-277\" angle=\"0\"/>\n  <anchor x=\"584\" y=\"-916\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"twodotsverticalbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"43\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/e-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beeh-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/e-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beeh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/e-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beeh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0454\"/>\n  <anchor x=\"650\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"650\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"724\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"-20\"/>\n      <point x=\"951\" y=\"-14\"/>\n      <point x=\"1059\" y=\"10\" type=\"curve\"/>\n      <point x=\"1031\" y=\"263\" type=\"line\"/>\n      <point x=\"940\" y=\"247\"/>\n      <point x=\"844\" y=\"237\"/>\n      <point x=\"748\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"237\"/>\n      <point x=\"394\" y=\"343\"/>\n      <point x=\"394\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"722\"/>\n      <point x=\"495\" y=\"823\"/>\n      <point x=\"666\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"823\"/>\n      <point x=\"867\" y=\"771\"/>\n      <point x=\"926\" y=\"679\" type=\"curve\"/>\n      <point x=\"1122\" y=\"835\" type=\"line\"/>\n      <point x=\"1056\" y=\"991\"/>\n      <point x=\"893\" y=\"1080\"/>\n      <point x=\"674\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"1080\"/>\n      <point x=\"119\" y=\"878\"/>\n      <point x=\"119\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"176\"/>\n      <point x=\"338\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"215\" y=\"409\" type=\"line\"/>\n      <point x=\"784\" y=\"409\" type=\"line\"/>\n      <point x=\"784\" y=\"658\" type=\"line\"/>\n      <point x=\"215\" y=\"658\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/e.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0065\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1047\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"684\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"-20\"/>\n      <point x=\"883\" y=\"-16\"/>\n      <point x=\"1019\" y=\"8\" type=\"curve\"/>\n      <point x=\"993\" y=\"264\" type=\"line\"/>\n      <point x=\"896\" y=\"246\"/>\n      <point x=\"804\" y=\"236\"/>\n      <point x=\"708\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"236\"/>\n      <point x=\"375\" y=\"342\"/>\n      <point x=\"375\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"727\"/>\n      <point x=\"457\" y=\"832\"/>\n      <point x=\"598\" y=\"832\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"832\"/>\n      <point x=\"805\" y=\"754\"/>\n      <point x=\"805\" y=\"611\" type=\"curve\"/>\n      <point x=\"287\" y=\"611\" type=\"line\"/>\n      <point x=\"287\" y=\"423\" type=\"line\"/>\n      <point x=\"1065\" y=\"423\" type=\"line\"/>\n      <point x=\"1069\" y=\"466\"/>\n      <point x=\"1071\" y=\"510\"/>\n      <point x=\"1071\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"898\"/>\n      <point x=\"898\" y=\"1080\"/>\n      <point x=\"596\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"1080\"/>\n      <point x=\"109\" y=\"878\"/>\n      <point x=\"109\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"176\"/>\n      <point x=\"317\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E9\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"acutecomb\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ebreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ebreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0115\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ecaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011B\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ecircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EA\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ecircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBF\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"acutecomb\" xOffset=\"419\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ecircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC7\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ecircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC1\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"gravecomb\" xOffset=\"412\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ecircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC3\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"hookabovecomb\" xOffset=\"378\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ecircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC5\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"tildecomb\" xOffset=\"10\" yOffset=\"520\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/edieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EB\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dieresiscomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/edotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0117\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"-2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/edotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB9\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ef-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ef-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0444\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"933\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"-20\"/>\n      <point x=\"1172\" y=\"141\"/>\n      <point x=\"1172\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1172\" y=\"913\"/>\n      <point x=\"1100\" y=\"1080\"/>\n      <point x=\"931\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"819\" y=\"1080\"/>\n      <point x=\"769\" y=\"1013\"/>\n      <point x=\"746\" y=\"878\" type=\"curve\"/>\n      <point x=\"656\" y=\"878\" type=\"line\"/>\n      <point x=\"703\" y=\"596\" type=\"line\"/>\n      <point x=\"703\" y=\"750\"/>\n      <point x=\"736\" y=\"825\"/>\n      <point x=\"804\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"825\"/>\n      <point x=\"902\" y=\"735\"/>\n      <point x=\"902\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"320\"/>\n      <point x=\"872\" y=\"235\"/>\n      <point x=\"802\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"235\"/>\n      <point x=\"703\" y=\"312\"/>\n      <point x=\"703\" y=\"440\" type=\"curve\"/>\n      <point x=\"703\" y=\"456\" type=\"line\"/>\n      <point x=\"646\" y=\"154\" type=\"line\"/>\n      <point x=\"746\" y=\"154\" type=\"line\"/>\n      <point x=\"767\" y=\"39\"/>\n      <point x=\"827\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"267\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"-20\"/>\n      <point x=\"433\" y=\"39\"/>\n      <point x=\"454\" y=\"154\" type=\"curve\"/>\n      <point x=\"554\" y=\"154\" type=\"line\"/>\n      <point x=\"497\" y=\"456\" type=\"line\"/>\n      <point x=\"497\" y=\"440\" type=\"line\"/>\n      <point x=\"497\" y=\"312\"/>\n      <point x=\"466\" y=\"235\"/>\n      <point x=\"399\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"328\" y=\"235\"/>\n      <point x=\"298\" y=\"320\"/>\n      <point x=\"298\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"735\"/>\n      <point x=\"328\" y=\"825\"/>\n      <point x=\"397\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"825\"/>\n      <point x=\"497\" y=\"750\"/>\n      <point x=\"497\" y=\"596\" type=\"curve\"/>\n      <point x=\"544\" y=\"878\" type=\"line\"/>\n      <point x=\"454\" y=\"878\" type=\"line\"/>\n      <point x=\"431\" y=\"1013\"/>\n      <point x=\"381\" y=\"1080\"/>\n      <point x=\"269\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"100\" y=\"1080\"/>\n      <point x=\"28\" y=\"913\"/>\n      <point x=\"28\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"28\" y=\"141\"/>\n      <point x=\"100\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"482\" y=\"-440\" type=\"line\"/>\n      <point x=\"718\" y=\"-440\" type=\"line\"/>\n      <point x=\"718\" y=\"197\" type=\"line\"/>\n      <point x=\"703\" y=\"254\" type=\"line\"/>\n      <point x=\"703\" y=\"807\" type=\"line\"/>\n      <point x=\"718\" y=\"840\" type=\"line\"/>\n      <point x=\"718\" y=\"1500\" type=\"line\"/>\n      <point x=\"482\" y=\"1500\" type=\"line\"/>\n      <point x=\"482\" y=\"840\" type=\"line\"/>\n      <point x=\"497\" y=\"807\" type=\"line\"/>\n      <point x=\"497\" y=\"254\" type=\"line\"/>\n      <point x=\"482\" y=\"197\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ef-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ef-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-440\" type=\"line\"/>\n      <point x=\"733\" y=\"-440\" type=\"line\"/>\n      <point x=\"718\" y=\"87\" type=\"line\"/>\n      <point x=\"690\" y=\"144\" type=\"line\"/>\n      <point x=\"690\" y=\"927\" type=\"line\"/>\n      <point x=\"718\" y=\"960\" type=\"line\"/>\n      <point x=\"733\" y=\"1500\" type=\"line\"/>\n      <point x=\"467\" y=\"1500\" type=\"line\"/>\n      <point x=\"482\" y=\"960\" type=\"line\"/>\n      <point x=\"510\" y=\"927\" type=\"line\"/>\n      <point x=\"510\" y=\"144\" type=\"line\"/>\n      <point x=\"482\" y=\"87\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"-20\"/>\n      <point x=\"1131\" y=\"177\"/>\n      <point x=\"1131\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"883\"/>\n      <point x=\"940\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1080\"/>\n      <point x=\"69\" y=\"883\"/>\n      <point x=\"69\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"69\" y=\"177\"/>\n      <point x=\"260\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"198\"/>\n      <point x=\"346\" y=\"316\"/>\n      <point x=\"346\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"744\"/>\n      <point x=\"436\" y=\"862\"/>\n      <point x=\"600\" y=\"862\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"862\"/>\n      <point x=\"854\" y=\"744\"/>\n      <point x=\"854\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"316\"/>\n      <point x=\"764\" y=\"198\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/egrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"egrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E8\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"gravecomb\" xOffset=\"-45\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBB\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"hookabovecomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eight-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0668\"/>\n  <outline>\n    <component base=\"seven-ar\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1204\" yOffset=\"1430\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eight-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"-10\" type=\"line\"/>\n      <point x=\"522\" y=\"137\"/>\n      <point x=\"554\" y=\"275\"/>\n      <point x=\"578\" y=\"404\" type=\"curve\"/>\n      <point x=\"614\" y=\"404\" type=\"line\"/>\n      <point x=\"620\" y=\"434\"/>\n      <point x=\"626\" y=\"459\"/>\n      <point x=\"631\" y=\"483\" type=\"curve\"/>\n      <point x=\"579\" y=\"480\" type=\"line\"/>\n      <point x=\"600\" y=\"316\"/>\n      <point x=\"644\" y=\"154\"/>\n      <point x=\"703\" y=\"-10\" type=\"curve\"/>\n      <point x=\"903\" y=\"23\" type=\"line\"/>\n      <point x=\"815\" y=\"227\"/>\n      <point x=\"743\" y=\"420\"/>\n      <point x=\"682\" y=\"632\" type=\"curve\"/>\n      <point x=\"492\" y=\"631\" type=\"line\"/>\n      <point x=\"424\" y=\"416\"/>\n      <point x=\"346\" y=\"194\"/>\n      <point x=\"272\" y=\"13\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eight-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eight-arinferior\" yOffset=\"801\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eight-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F8\"/>\n  <outline>\n    <component base=\"eight-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>eight-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>eight-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eight-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eight-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>eight-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eight-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eight-arsuperior\" yOffset=\"21\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eight.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eightsuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0038\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"919\" y=\"-20\"/>\n      <point x=\"1101\" y=\"130\"/>\n      <point x=\"1101\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"628\"/>\n      <point x=\"919\" y=\"764\"/>\n      <point x=\"600\" y=\"764\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"281\" y=\"764\"/>\n      <point x=\"99\" y=\"628\"/>\n      <point x=\"99\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"130\"/>\n      <point x=\"281\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"458\" y=\"232\"/>\n      <point x=\"377\" y=\"303\"/>\n      <point x=\"377\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"553\"/>\n      <point x=\"458\" y=\"625\"/>\n      <point x=\"600\" y=\"625\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"742\" y=\"625\"/>\n      <point x=\"823\" y=\"553\"/>\n      <point x=\"823\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"303\"/>\n      <point x=\"742\" y=\"232\"/>\n    </contour>\n    <contour>\n      <point x=\"434\" y=\"706\" type=\"line\"/>\n      <point x=\"768\" y=\"706\" type=\"line\"/>\n      <point x=\"768\" y=\"808\" type=\"line\"/>\n      <point x=\"434\" y=\"808\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"875\"/>\n      <point x=\"417\" y=\"931\"/>\n      <point x=\"417\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"1131\"/>\n      <point x=\"484\" y=\"1189\"/>\n      <point x=\"600\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"1189\"/>\n      <point x=\"783\" y=\"1131\"/>\n      <point x=\"783\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"931\"/>\n      <point x=\"716\" y=\"875\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"746\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"746\"/>\n      <point x=\"1061\" y=\"868\"/>\n      <point x=\"1061\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"1308\"/>\n      <point x=\"893\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"1440\"/>\n      <point x=\"139\" y=\"1308\"/>\n      <point x=\"139\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"868\"/>\n      <point x=\"307\" y=\"746\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eight.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eightsuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eightinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eightinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2088\"/>\n  <outline>\n    <component base=\"eightsuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eightsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eightsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2078\"/>\n  <outline>\n    <contour>\n      <point x=\"599\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"785\" y=\"793\"/>\n      <point x=\"892\" y=\"861\"/>\n      <point x=\"892\" y=\"978\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"1080\"/>\n      <point x=\"785\" y=\"1137\"/>\n      <point x=\"599\" y=\"1137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"1137\"/>\n      <point x=\"307\" y=\"1080\"/>\n      <point x=\"307\" y=\"978\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"861\"/>\n      <point x=\"414\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"945\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"945\"/>\n      <point x=\"533\" y=\"969\"/>\n      <point x=\"533\" y=\"1012\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"1052\"/>\n      <point x=\"557\" y=\"1076\"/>\n      <point x=\"599\" y=\"1076\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"1076\"/>\n      <point x=\"666\" y=\"1052\"/>\n      <point x=\"666\" y=\"1012\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"969\"/>\n      <point x=\"641\" y=\"945\"/>\n    </contour>\n    <contour>\n      <point x=\"519\" y=\"1117\" type=\"line\"/>\n      <point x=\"681\" y=\"1117\" type=\"line\"/>\n      <point x=\"681\" y=\"1161\" type=\"line\"/>\n      <point x=\"519\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"1194\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"1194\"/>\n      <point x=\"542\" y=\"1212\"/>\n      <point x=\"542\" y=\"1242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"1271\"/>\n      <point x=\"563\" y=\"1288\"/>\n      <point x=\"599\" y=\"1288\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"635\" y=\"1288\"/>\n      <point x=\"657\" y=\"1271\"/>\n      <point x=\"657\" y=\"1242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"1212\"/>\n      <point x=\"635\" y=\"1194\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"1139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"1139\"/>\n      <point x=\"875\" y=\"1193\"/>\n      <point x=\"875\" y=\"1286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"1383\"/>\n      <point x=\"774\" y=\"1439\"/>\n      <point x=\"599\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"1439\"/>\n      <point x=\"324\" y=\"1383\"/>\n      <point x=\"324\" y=\"1286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"1193\"/>\n      <point x=\"425\" y=\"1139\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/el-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"el-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"46\" y=\"0\" type=\"line\"/>\n      <point x=\"398\" y=\"0\"/>\n      <point x=\"505\" y=\"115\"/>\n      <point x=\"505\" y=\"501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"505\" y=\"1060\" type=\"line\"/>\n      <point x=\"239\" y=\"1060\" type=\"line\"/>\n      <point x=\"239\" y=\"494\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"239\" y=\"308\"/>\n      <point x=\"194\" y=\"252\"/>\n      <point x=\"46\" y=\"252\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"784\" y=\"0\" type=\"line\"/>\n      <point x=\"1055\" y=\"0\" type=\"line\"/>\n      <point x=\"1055\" y=\"1060\" type=\"line\"/>\n      <point x=\"784\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"291\" y=\"808\" type=\"line\"/>\n      <point x=\"1018\" y=\"808\" type=\"line\"/>\n      <point x=\"1018\" y=\"1060\" type=\"line\"/>\n      <point x=\"291\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/el-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"el-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"66\" y=\"0\" type=\"line\"/>\n      <point x=\"341\" y=\"0\" type=\"line\"/>\n      <point x=\"595\" y=\"823\" type=\"line\"/>\n      <point x=\"613\" y=\"823\" type=\"line\"/>\n      <point x=\"859\" y=\"0\" type=\"line\"/>\n      <point x=\"1134\" y=\"0\" type=\"line\"/>\n      <point x=\"779\" y=\"1060\" type=\"line\"/>\n      <point x=\"429\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ellipsis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ellipsis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2026\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"-398\"/>\n    <component base=\"period\" xOffset=\"398\"/>\n    <component base=\"period\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/em-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"em-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043C\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"583\" y=\"220\" type=\"line\"/>\n      <point x=\"690\" y=\"220\" type=\"line\"/>\n      <point x=\"801\" y=\"808\" type=\"line\"/>\n      <point x=\"867\" y=\"808\" type=\"line\"/>\n      <point x=\"867\" y=\"1060\" type=\"line\"/>\n      <point x=\"712\" y=\"1060\" type=\"line\"/>\n      <point x=\"608\" y=\"517\" type=\"line\"/>\n      <point x=\"596\" y=\"517\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"365\" y=\"0\" type=\"line\"/>\n      <point x=\"365\" y=\"1060\" type=\"line\"/>\n      <point x=\"111\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"510\" y=\"220\" type=\"line\"/>\n      <point x=\"612\" y=\"220\" type=\"line\"/>\n      <point x=\"600\" y=\"517\" type=\"line\"/>\n      <point x=\"592\" y=\"517\" type=\"line\"/>\n      <point x=\"488\" y=\"1060\" type=\"line\"/>\n      <point x=\"333\" y=\"1060\" type=\"line\"/>\n      <point x=\"333\" y=\"808\" type=\"line\"/>\n      <point x=\"399\" y=\"808\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"835\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"1060\" type=\"line\"/>\n      <point x=\"835\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/emacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"emacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0113\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/emdash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"emdash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2014\"/>\n  <outline>\n    <contour>\n      <point x=\"40\" y=\"584\" type=\"line\"/>\n      <point x=\"1160\" y=\"584\" type=\"line\"/>\n      <point x=\"1160\" y=\"834\" type=\"line\"/>\n      <point x=\"40\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/en-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"en-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043D\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"1060\" type=\"line\"/>\n      <point x=\"778\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"1060\" type=\"line\"/>\n      <point x=\"151\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"330\" y=\"406\" type=\"line\"/>\n      <point x=\"875\" y=\"406\" type=\"line\"/>\n      <point x=\"875\" y=\"655\" type=\"line\"/>\n      <point x=\"330\" y=\"655\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endO_fM_ediumC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfMediumControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2419\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"M.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>M.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfMediumControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"479\" y=\"1234\" type=\"line\"/>\n      <point x=\"479\" y=\"185\" type=\"line\"/>\n      <point x=\"721\" y=\"185\" type=\"line\"/>\n      <point x=\"721\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"439\"/>\n      <point x=\"895\" y=\"558\"/>\n      <point x=\"895\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"855\"/>\n      <point x=\"778\" y=\"977\"/>\n      <point x=\"599\" y=\"977\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"977\"/>\n      <point x=\"303\" y=\"855\"/>\n      <point x=\"303\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"558\"/>\n      <point x=\"420\" y=\"439\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_extC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTextControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2403\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"X.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>X.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTextControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"883\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"883\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"1003\" y=\"186\" type=\"line\"/>\n      <point x=\"1003\" y=\"429\" type=\"line\"/>\n      <point x=\"75\" y=\"429\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionBlockControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2417\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"B.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionBlockControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"883\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"883\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"590\" type=\"line\"/>\n      <point x=\"1003\" y=\"590\" type=\"line\"/>\n      <point x=\"1003\" y=\"833\" type=\"line\"/>\n      <point x=\"75\" y=\"833\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2404\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"495\" y=\"770\" type=\"line\"/>\n      <point x=\"182\" y=\"1196\" type=\"line\"/>\n      <point x=\"25\" y=\"1057\" type=\"line\"/>\n      <point x=\"485\" y=\"436\" type=\"line\"/>\n      <point x=\"703\" y=\"662\" type=\"line\"/>\n      <point x=\"1020\" y=\"235\" type=\"line\"/>\n      <point x=\"1175\" y=\"392\" type=\"line\"/>\n      <point x=\"711\" y=\"1006\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2013\"/>\n  <outline>\n    <contour>\n      <point x=\"70\" y=\"584\" type=\"line\"/>\n      <point x=\"1130\" y=\"584\" type=\"line\"/>\n      <point x=\"1130\" y=\"834\" type=\"line\"/>\n      <point x=\"70\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04A3\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"-270\" type=\"line\"/>\n      <point x=\"1183\" y=\"-270\" type=\"line\"/>\n      <point x=\"1183\" y=\"252\" type=\"line\"/>\n      <point x=\"914\" y=\"252\" type=\"line\"/>\n    </contour>\n    <component base=\"en-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>en-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/endofayah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endofayah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06DD\"/>\n  <outline>\n    <contour>\n      <point x=\"139\" y=\"-103\" type=\"curve\"/>\n      <point x=\"166\" y=\"-70\" type=\"line\"/>\n      <point x=\"95\" y=\"25\"/>\n      <point x=\"57\" y=\"141\"/>\n      <point x=\"57\" y=\"255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"57\" y=\"370\"/>\n      <point x=\"92\" y=\"491\"/>\n      <point x=\"167\" y=\"587\" type=\"curve\"/>\n      <point x=\"139\" y=\"618\" type=\"line\"/>\n      <point x=\"57\" y=\"512\"/>\n      <point x=\"15\" y=\"385\"/>\n      <point x=\"15\" y=\"257\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"15\" y=\"130\"/>\n      <point x=\"57\" y=\"3\"/>\n    </contour>\n    <contour>\n      <point x=\"216\" y=\"556\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"556\"/>\n      <point x=\"308\" y=\"597\"/>\n      <point x=\"308\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"698\"/>\n      <point x=\"267\" y=\"740\"/>\n      <point x=\"216\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"740\"/>\n      <point x=\"124\" y=\"698\"/>\n      <point x=\"124\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"596\"/>\n      <point x=\"167\" y=\"556\"/>\n    </contour>\n    <contour>\n      <point x=\"216\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"181\" y=\"590\"/>\n      <point x=\"159\" y=\"617\"/>\n      <point x=\"159\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"680\"/>\n      <point x=\"184\" y=\"705\"/>\n      <point x=\"215\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"705\"/>\n      <point x=\"273\" y=\"679\"/>\n      <point x=\"273\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"273\" y=\"615\"/>\n      <point x=\"247\" y=\"590\"/>\n    </contour>\n    <contour>\n      <point x=\"926\" y=\"695\" type=\"curve\"/>\n      <point x=\"957\" y=\"721\" type=\"line\"/>\n      <point x=\"852\" y=\"802\"/>\n      <point x=\"726\" y=\"842\"/>\n      <point x=\"600\" y=\"842\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"842\"/>\n      <point x=\"353\" y=\"804\"/>\n      <point x=\"250\" y=\"726\" type=\"curve\"/>\n      <point x=\"279\" y=\"698\" type=\"line\"/>\n      <point x=\"373\" y=\"767\"/>\n      <point x=\"488\" y=\"801\"/>\n      <point x=\"601\" y=\"801\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"801\"/>\n      <point x=\"831\" y=\"766\"/>\n    </contour>\n    <contour>\n      <point x=\"992\" y=\"555\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"555\"/>\n      <point x=\"1084\" y=\"595\"/>\n      <point x=\"1084\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"697\"/>\n      <point x=\"1043\" y=\"739\"/>\n      <point x=\"992\" y=\"739\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"739\"/>\n      <point x=\"900\" y=\"697\"/>\n      <point x=\"900\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"597\"/>\n      <point x=\"942\" y=\"555\"/>\n    </contour>\n    <contour>\n      <point x=\"992\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"590\"/>\n      <point x=\"935\" y=\"614\"/>\n      <point x=\"935\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"678\"/>\n      <point x=\"959\" y=\"705\"/>\n      <point x=\"992\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1023\" y=\"705\"/>\n      <point x=\"1049\" y=\"680\"/>\n      <point x=\"1049\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"616\"/>\n      <point x=\"1026\" y=\"590\"/>\n    </contour>\n    <contour>\n      <point x=\"1063\" y=\"-102\" type=\"line\"/>\n      <point x=\"1145\" y=\"3\"/>\n      <point x=\"1185\" y=\"130\"/>\n      <point x=\"1185\" y=\"257\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1185\" y=\"385\"/>\n      <point x=\"1144\" y=\"512\"/>\n      <point x=\"1062\" y=\"617\" type=\"curve\"/>\n      <point x=\"1035\" y=\"585\" type=\"line\"/>\n      <point x=\"1108\" y=\"490\"/>\n      <point x=\"1144\" y=\"369\"/>\n      <point x=\"1144\" y=\"255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1144\" y=\"141\"/>\n      <point x=\"1107\" y=\"27\"/>\n      <point x=\"1038\" y=\"-68\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"998\" y=\"-227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"-227\"/>\n      <point x=\"1090\" y=\"-186\"/>\n      <point x=\"1090\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"-84\"/>\n      <point x=\"1048\" y=\"-43\"/>\n      <point x=\"998\" y=\"-43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"-43\"/>\n      <point x=\"906\" y=\"-85\"/>\n      <point x=\"906\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"-185\"/>\n      <point x=\"947\" y=\"-227\"/>\n    </contour>\n    <contour>\n      <point x=\"998\" y=\"-192\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"-192\"/>\n      <point x=\"941\" y=\"-166\"/>\n      <point x=\"941\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"-102\"/>\n      <point x=\"966\" y=\"-78\"/>\n      <point x=\"997\" y=\"-78\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1030\" y=\"-78\"/>\n      <point x=\"1055\" y=\"-103\"/>\n      <point x=\"1055\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"-168\"/>\n      <point x=\"1029\" y=\"-192\"/>\n    </contour>\n    <contour>\n      <point x=\"605\" y=\"-329\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"-329\"/>\n      <point x=\"857\" y=\"-289\"/>\n      <point x=\"962\" y=\"-208\" type=\"curve\"/>\n      <point x=\"931\" y=\"-181\" type=\"line\"/>\n      <point x=\"836\" y=\"-252\"/>\n      <point x=\"721\" y=\"-288\"/>\n      <point x=\"607\" y=\"-288\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"-288\"/>\n      <point x=\"373\" y=\"-250\"/>\n      <point x=\"279\" y=\"-180\" type=\"curve\"/>\n      <point x=\"255\" y=\"-212\" type=\"line\"/>\n      <point x=\"358\" y=\"-290\"/>\n      <point x=\"481\" y=\"-329\"/>\n    </contour>\n    <contour>\n      <point x=\"210\" y=\"-227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"-227\"/>\n      <point x=\"303\" y=\"-185\"/>\n      <point x=\"303\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"-85\"/>\n      <point x=\"261\" y=\"-43\"/>\n      <point x=\"211\" y=\"-43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"162\" y=\"-43\"/>\n      <point x=\"119\" y=\"-84\"/>\n      <point x=\"119\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"-186\"/>\n      <point x=\"160\" y=\"-227\"/>\n    </contour>\n    <contour>\n      <point x=\"210\" y=\"-192\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"178\" y=\"-192\"/>\n      <point x=\"154\" y=\"-168\"/>\n      <point x=\"154\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"154\" y=\"-103\"/>\n      <point x=\"178\" y=\"-78\"/>\n      <point x=\"211\" y=\"-78\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"-78\"/>\n      <point x=\"268\" y=\"-102\"/>\n      <point x=\"268\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"-166\"/>\n      <point x=\"244\" y=\"-192\"/>\n    </contour>\n    <contour>\n      <point x=\"293\" y=\"-153\" type=\"line\"/>\n      <point x=\"924\" y=\"-153\" type=\"line\"/>\n      <point x=\"924\" y=\"-113\" type=\"line\"/>\n      <point x=\"293\" y=\"-113\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"293\" y=\"625\" type=\"line\"/>\n      <point x=\"924\" y=\"625\" type=\"line\"/>\n      <point x=\"924\" y=\"665\" type=\"line\"/>\n      <point x=\"293\" y=\"665\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eng.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eng\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014B\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"390\" type=\"line\"/>\n      <point x=\"1049\" y=\"390\" type=\"line\"/>\n      <point x=\"1049\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"938\"/>\n      <point x=\"921\" y=\"1080\"/>\n      <point x=\"697\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"1080\"/>\n      <point x=\"468\" y=\"1010\"/>\n      <point x=\"448\" y=\"868\" type=\"curve\"/>\n      <point x=\"360\" y=\"868\" type=\"line\"/>\n      <point x=\"422\" y=\"529\" type=\"line\"/>\n      <point x=\"422\" y=\"728\"/>\n      <point x=\"491\" y=\"825\"/>\n      <point x=\"626\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"825\"/>\n      <point x=\"778\" y=\"752\"/>\n      <point x=\"778\" y=\"623\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"464\" y=\"-480\" type=\"line\"/>\n      <point x=\"564\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"-429\"/>\n      <point x=\"1049\" y=\"-284\"/>\n      <point x=\"1049\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"444\" type=\"line\"/>\n      <point x=\"778\" y=\"444\" type=\"line\"/>\n      <point x=\"778\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"-119\"/>\n      <point x=\"720\" y=\"-198\"/>\n      <point x=\"584\" y=\"-216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"836\" type=\"line\"/>\n      <point x=\"393\" y=\"1060\" type=\"line\"/>\n      <point x=\"151\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/enquiryC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"enquiryControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2405\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"Q.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>Q.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/enquiryC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"enquiryControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1028\" y=\"219\" type=\"line\"/>\n      <point x=\"1091\" y=\"275\" type=\"line\"/>\n      <point x=\"158\" y=\"1210\" type=\"line\"/>\n      <point x=\"95\" y=\"1152\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"221\" type=\"line\"/>\n      <point x=\"1097\" y=\"1145\" type=\"line\"/>\n      <point x=\"1034\" y=\"1203\" type=\"line\"/>\n      <point x=\"111\" y=\"277\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0119\"/>\n  <anchor x=\"630\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"885\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"-424\"/>\n      <point x=\"954\" y=\"-421\"/>\n      <point x=\"992\" y=\"-415\" type=\"curve\"/>\n      <point x=\"1018\" y=\"-178\" type=\"line\"/>\n      <point x=\"984\" y=\"-186\"/>\n      <point x=\"953\" y=\"-189\"/>\n      <point x=\"928\" y=\"-189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"-189\"/>\n      <point x=\"845\" y=\"-163\"/>\n      <point x=\"845\" y=\"-126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"-54\"/>\n      <point x=\"915\" y=\"-9\"/>\n      <point x=\"1019\" y=\"8\" type=\"curve\"/>\n      <point x=\"999\" y=\"33\" type=\"line\"/>\n      <point x=\"759\" y=\"30\" type=\"line\"/>\n      <point x=\"759\" y=\"-44\" type=\"line\"/>\n      <point x=\"686\" y=\"-67\"/>\n      <point x=\"645\" y=\"-137\"/>\n      <point x=\"645\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"-354\"/>\n      <point x=\"732\" y=\"-424\"/>\n    </contour>\n    <component base=\"e\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>e</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eopen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"025B\"/>\n  <outline>\n    <component base=\"epsilon\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/epsilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"epsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B5\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"626\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"-20\"/>\n      <point x=\"946\" y=\"-1\"/>\n      <point x=\"1057\" y=\"28\" type=\"curve\"/>\n      <point x=\"1002\" y=\"291\" type=\"line\"/>\n      <point x=\"912\" y=\"268\"/>\n      <point x=\"807\" y=\"236\"/>\n      <point x=\"634\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"236\"/>\n      <point x=\"426\" y=\"262\"/>\n      <point x=\"426\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"426\" y=\"376\"/>\n      <point x=\"543\" y=\"406\"/>\n      <point x=\"778\" y=\"406\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"406\" type=\"line\"/>\n      <point x=\"834\" y=\"648\" type=\"line\"/>\n      <point x=\"561\" y=\"524\" type=\"line\"/>\n      <point x=\"286\" y=\"504\"/>\n      <point x=\"149\" y=\"417\"/>\n      <point x=\"149\" y=\"263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"149\" y=\"73\"/>\n      <point x=\"307\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"505\" y=\"431\" type=\"line\"/>\n      <point x=\"810\" y=\"406\" type=\"line\"/>\n      <point x=\"834\" y=\"648\" type=\"line\"/>\n      <point x=\"581\" y=\"655\"/>\n      <point x=\"456\" y=\"688\"/>\n      <point x=\"456\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"799\"/>\n      <point x=\"525\" y=\"824\"/>\n      <point x=\"664\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"824\"/>\n      <point x=\"904\" y=\"809\"/>\n      <point x=\"1002\" y=\"778\" type=\"curve\"/>\n      <point x=\"1067\" y=\"1030\" type=\"line\"/>\n      <point x=\"979\" y=\"1064\"/>\n      <point x=\"839\" y=\"1080\"/>\n      <point x=\"642\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"1080\"/>\n      <point x=\"179\" y=\"997\"/>\n      <point x=\"179\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"179\" y=\"694\"/>\n      <point x=\"287\" y=\"602\"/>\n      <point x=\"505\" y=\"554\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/epsilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"epsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AD\"/>\n  <outline>\n    <component base=\"epsilon\"/>\n    <component base=\"tonos\" xOffset=\"101\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/equal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003D\"/>\n  <outline>\n    <contour>\n      <point x=\"83\" y=\"835\" type=\"line\"/>\n      <point x=\"1117\" y=\"835\" type=\"line\"/>\n      <point x=\"1117\" y=\"1085\" type=\"line\"/>\n      <point x=\"83\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"83\" y=\"333\" type=\"line\"/>\n      <point x=\"1117\" y=\"333\" type=\"line\"/>\n      <point x=\"1117\" y=\"583\" type=\"line\"/>\n      <point x=\"83\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"835\" type=\"line\"/>\n      <point x=\"1117\" y=\"835\" type=\"line\"/>\n      <point x=\"1117\" y=\"1085\" type=\"line\"/>\n      <point x=\"-20\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"333\" type=\"line\"/>\n      <point x=\"1117\" y=\"333\" type=\"line\"/>\n      <point x=\"1117\" y=\"583\" type=\"line\"/>\n      <point x=\"-20\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1290\" y=\"835\" type=\"line\"/>\n      <point x=\"2220\" y=\"835\" type=\"line\"/>\n      <point x=\"2220\" y=\"1085\" type=\"line\"/>\n      <point x=\"1290\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"333\" type=\"line\"/>\n      <point x=\"1110\" y=\"333\" type=\"line\"/>\n      <point x=\"1110\" y=\"583\" type=\"line\"/>\n      <point x=\"180\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"835\" type=\"line\"/>\n      <point x=\"1110\" y=\"835\" type=\"line\"/>\n      <point x=\"1110\" y=\"1085\" type=\"line\"/>\n      <point x=\"180\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1290\" y=\"333\" type=\"line\"/>\n      <point x=\"2220\" y=\"333\" type=\"line\"/>\n      <point x=\"2220\" y=\"583\" type=\"line\"/>\n      <point x=\"1290\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/equal_equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"180\" y=\"998\" type=\"line\"/>\n      <point x=\"3420\" y=\"998\" type=\"line\"/>\n      <point x=\"3420\" y=\"1240\" type=\"line\"/>\n      <point x=\"180\" y=\"1240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"178\" type=\"line\"/>\n      <point x=\"3420\" y=\"178\" type=\"line\"/>\n      <point x=\"3420\" y=\"420\" type=\"line\"/>\n      <point x=\"180\" y=\"420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"588\" type=\"line\"/>\n      <point x=\"3420\" y=\"588\" type=\"line\"/>\n      <point x=\"3420\" y=\"830\" type=\"line\"/>\n      <point x=\"180\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/equal_greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2370\" yOffset=\"-3\"/>\n    <component base=\"greater\" xOffset=\"1240\"/>\n    <component base=\"equal\" xOffset=\"56\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/equal_less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"2374\"/>\n    <component base=\"less\" xOffset=\"1254\"/>\n    <component base=\"equal\" xOffset=\"56\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"835\" type=\"line\"/>\n      <point x=\"1250\" y=\"835\" type=\"line\"/>\n      <point x=\"1250\" y=\"1085\" type=\"line\"/>\n      <point x=\"-50\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"333\" type=\"line\"/>\n      <point x=\"1250\" y=\"333\" type=\"line\"/>\n      <point x=\"1250\" y=\"583\" type=\"line\"/>\n      <point x=\"-50\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"83\" y=\"835\" type=\"line\"/>\n      <point x=\"1220\" y=\"835\" type=\"line\"/>\n      <point x=\"1220\" y=\"1085\" type=\"line\"/>\n      <point x=\"83\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"83\" y=\"333\" type=\"line\"/>\n      <point x=\"1220\" y=\"333\" type=\"line\"/>\n      <point x=\"1220\" y=\"583\" type=\"line\"/>\n      <point x=\"83\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/equivalence.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equivalence\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2261\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"974\" type=\"line\"/>\n      <point x=\"1100\" y=\"974\" type=\"line\"/>\n      <point x=\"1100\" y=\"1224\" type=\"line\"/>\n      <point x=\"100\" y=\"1224\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"194\" type=\"line\"/>\n      <point x=\"1100\" y=\"194\" type=\"line\"/>\n      <point x=\"1100\" y=\"444\" type=\"line\"/>\n      <point x=\"100\" y=\"444\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"584\" type=\"line\"/>\n      <point x=\"1100\" y=\"584\" type=\"line\"/>\n      <point x=\"1100\" y=\"834\" type=\"line\"/>\n      <point x=\"100\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/er-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"er-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0440\"/>\n  <outline>\n    <component base=\"p\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ereversed-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ereversed-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044D\"/>\n  <anchor x=\"550\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"550\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"-20\"/>\n      <point x=\"1081\" y=\"182\"/>\n      <point x=\"1081\" y=\"528\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"884\"/>\n      <point x=\"863\" y=\"1080\"/>\n      <point x=\"478\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"1080\"/>\n      <point x=\"281\" y=\"1074\"/>\n      <point x=\"203\" y=\"1063\" type=\"curve\"/>\n      <point x=\"177\" y=\"802\" type=\"line\"/>\n      <point x=\"273\" y=\"816\"/>\n      <point x=\"365\" y=\"823\"/>\n      <point x=\"454\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"823\"/>\n      <point x=\"831\" y=\"717\"/>\n      <point x=\"831\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"339\"/>\n      <point x=\"721\" y=\"237\"/>\n      <point x=\"534\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"411\" y=\"237\"/>\n      <point x=\"303\" y=\"272\"/>\n      <point x=\"236\" y=\"313\" type=\"curve\"/>\n      <point x=\"115\" y=\"103\" type=\"line\"/>\n      <point x=\"198\" y=\"34\"/>\n      <point x=\"347\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"416\" y=\"409\" type=\"line\"/>\n      <point x=\"950\" y=\"409\" type=\"line\"/>\n      <point x=\"950\" y=\"658\" type=\"line\"/>\n      <point x=\"416\" y=\"658\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/es-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"es-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0441\"/>\n  <outline>\n    <component base=\"c\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/escapeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"escapeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241B\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"C.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/escapeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"escapeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"635\" type=\"line\"/>\n      <point x=\"1091\" y=\"635\" type=\"line\"/>\n      <point x=\"1091\" y=\"785\" type=\"line\"/>\n      <point x=\"109\" y=\"785\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/esh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"esh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0283\"/>\n  <anchor x=\"540\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"900\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"425\" y=\"520\" type=\"line\"/>\n      <point x=\"691\" y=\"520\" type=\"line\"/>\n      <point x=\"691\" y=\"951\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1162\"/>\n      <point x=\"776\" y=\"1268\"/>\n      <point x=\"948\" y=\"1268\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1013\" y=\"1268\"/>\n      <point x=\"1078\" y=\"1264\"/>\n      <point x=\"1169\" y=\"1254\" type=\"curve\"/>\n      <point x=\"1191\" y=\"1500\" type=\"line\"/>\n      <point x=\"1111\" y=\"1514\"/>\n      <point x=\"1040\" y=\"1520\"/>\n      <point x=\"954\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"1520\"/>\n      <point x=\"425\" y=\"1338\"/>\n      <point x=\"425\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"-477\" type=\"line\"/>\n      <point x=\"206\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"-436\"/>\n      <point x=\"691\" y=\"-284\"/>\n      <point x=\"691\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"544\" type=\"line\"/>\n      <point x=\"425\" y=\"544\" type=\"line\"/>\n      <point x=\"425\" y=\"88\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"-109\"/>\n      <point x=\"365\" y=\"-198\"/>\n      <point x=\"226\" y=\"-215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"101\" y=\"-230\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/estimated.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"estimated\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"212E\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"-20\"/>\n      <point x=\"924\" y=\"59\"/>\n      <point x=\"1049\" y=\"248\" type=\"curve\"/>\n      <point x=\"984\" y=\"289\" type=\"line\"/>\n      <point x=\"888\" y=\"132\"/>\n      <point x=\"768\" y=\"50\"/>\n      <point x=\"596\" y=\"50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"50\"/>\n      <point x=\"386\" y=\"89\"/>\n      <point x=\"305\" y=\"167\" type=\"curve\"/>\n      <point x=\"305\" y=\"529\" type=\"line\"/>\n      <point x=\"1120\" y=\"529\" type=\"line\"/>\n      <point x=\"1105\" y=\"855\"/>\n      <point x=\"910\" y=\"1080\"/>\n      <point x=\"596\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"1080\"/>\n      <point x=\"80\" y=\"851\"/>\n      <point x=\"80\" y=\"531\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"222\"/>\n      <point x=\"280\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"305\" y=\"598\" type=\"line\"/>\n      <point x=\"305\" y=\"893\" type=\"line\"/>\n      <point x=\"383\" y=\"972\"/>\n      <point x=\"479\" y=\"1013\"/>\n      <point x=\"592\" y=\"1013\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"1013\"/>\n      <point x=\"808\" y=\"968\"/>\n      <point x=\"886\" y=\"891\" type=\"curve\"/>\n      <point x=\"886\" y=\"598\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B7\"/>\n  <anchor x=\"590\" y=\"-280\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"-460\" type=\"line\"/>\n      <point x=\"1049\" y=\"-460\" type=\"line\"/>\n      <point x=\"1049\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"938\"/>\n      <point x=\"921\" y=\"1080\"/>\n      <point x=\"697\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"1080\"/>\n      <point x=\"468\" y=\"1010\"/>\n      <point x=\"448\" y=\"868\" type=\"curve\"/>\n      <point x=\"360\" y=\"868\" type=\"line\"/>\n      <point x=\"422\" y=\"529\" type=\"line\"/>\n      <point x=\"422\" y=\"728\"/>\n      <point x=\"491\" y=\"825\"/>\n      <point x=\"626\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"825\"/>\n      <point x=\"778\" y=\"752\"/>\n      <point x=\"778\" y=\"623\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"836\" type=\"line\"/>\n      <point x=\"393\" y=\"1060\" type=\"line\"/>\n      <point x=\"151\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/etatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"etatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AE\"/>\n  <outline>\n    <component base=\"eta\"/>\n    <component base=\"tonos\" xOffset=\"51\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eth.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F0\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"817\" y=\"272\" type=\"line\"/>\n      <point x=\"1096\" y=\"559\" type=\"line\"/>\n      <point x=\"1096\" y=\"607\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1096\" y=\"1102\"/>\n      <point x=\"883\" y=\"1373\"/>\n      <point x=\"383\" y=\"1516\" type=\"curve\"/>\n      <point x=\"325\" y=\"1358\" type=\"line\"/>\n      <point x=\"671\" y=\"1234\"/>\n      <point x=\"821\" y=\"1027\"/>\n      <point x=\"819\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"236\"/>\n      <point x=\"373\" y=\"312\"/>\n      <point x=\"373\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"581\"/>\n      <point x=\"457\" y=\"664\"/>\n      <point x=\"599\" y=\"664\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"664\"/>\n      <point x=\"819\" y=\"582\"/>\n      <point x=\"819\" y=\"443\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"819\" y=\"313\"/>\n      <point x=\"737\" y=\"236\"/>\n    </contour>\n    <contour>\n      <point x=\"587\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"-20\"/>\n      <point x=\"1096\" y=\"191\"/>\n      <point x=\"1096\" y=\"559\" type=\"curve\"/>\n      <point x=\"863\" y=\"408\" type=\"line\"/>\n      <point x=\"865\" y=\"708\" type=\"line\"/>\n      <point x=\"784\" y=\"708\" type=\"line\"/>\n      <point x=\"751\" y=\"843\"/>\n      <point x=\"645\" y=\"920\"/>\n      <point x=\"501\" y=\"920\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"920\"/>\n      <point x=\"96\" y=\"746\"/>\n      <point x=\"96\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"96\" y=\"149\"/>\n      <point x=\"274\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"281\" y=\"972\" type=\"line\"/>\n      <point x=\"1107\" y=\"1204\" type=\"line\"/>\n      <point x=\"1055\" y=\"1429\" type=\"line\"/>\n      <point x=\"229\" y=\"1197\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/etilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"etilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBD\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"tildecomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eturned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01DD\"/>\n  <outline>\n    <component base=\"schwa\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/euro.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"euro\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AC\"/>\n  <outline>\n    <contour>\n      <point x=\"761\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"-20\"/>\n      <point x=\"1007\" y=\"2\"/>\n      <point x=\"1124\" y=\"48\" type=\"curve\"/>\n      <point x=\"1078\" y=\"292\" type=\"line\"/>\n      <point x=\"985\" y=\"252\"/>\n      <point x=\"892\" y=\"232\"/>\n      <point x=\"795\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"232\"/>\n      <point x=\"457\" y=\"395\"/>\n      <point x=\"457\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"1020\"/>\n      <point x=\"568\" y=\"1189\"/>\n      <point x=\"738\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"1189\"/>\n      <point x=\"939\" y=\"1145\"/>\n      <point x=\"998\" y=\"1068\" type=\"curve\"/>\n      <point x=\"1149\" y=\"1259\" type=\"line\"/>\n      <point x=\"1074\" y=\"1374\"/>\n      <point x=\"923\" y=\"1440\"/>\n      <point x=\"736\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"382\" y=\"1440\"/>\n      <point x=\"179\" y=\"1174\"/>\n      <point x=\"179\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"179\" y=\"224\"/>\n      <point x=\"374\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"79\" y=\"458\" type=\"line\"/>\n      <point x=\"897\" y=\"458\" type=\"line\"/>\n      <point x=\"897\" y=\"646\" type=\"line\"/>\n      <point x=\"79\" y=\"646\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"79\" y=\"764\" type=\"line\"/>\n      <point x=\"897\" y=\"764\" type=\"line\"/>\n      <point x=\"897\" y=\"952\" type=\"line\"/>\n      <point x=\"79\" y=\"952\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/eurocurrency.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eurocurrency\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A0\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"510\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"510\" type=\"line\"/>\n      <point x=\"628\" y=\"767\" type=\"line\"/>\n      <point x=\"532\" y=\"767\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"411\" y=\"767\"/>\n      <point x=\"340\" y=\"841\"/>\n      <point x=\"340\" y=\"969\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"340\" y=\"1104\"/>\n      <point x=\"411\" y=\"1182\"/>\n      <point x=\"535\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"1182\"/>\n      <point x=\"688\" y=\"1154\"/>\n      <point x=\"730\" y=\"1106\" type=\"curve\"/>\n      <point x=\"863\" y=\"1316\" type=\"line\"/>\n      <point x=\"781\" y=\"1393\"/>\n      <point x=\"692\" y=\"1439\"/>\n      <point x=\"525\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"220\" y=\"1439\"/>\n      <point x=\"45\" y=\"1265\"/>\n      <point x=\"45\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"45\" y=\"675\"/>\n      <point x=\"213\" y=\"510\"/>\n    </contour>\n    <contour>\n      <point x=\"486\" y=\"0\" type=\"line\"/>\n      <point x=\"1096\" y=\"0\" type=\"line\"/>\n      <point x=\"1096\" y=\"251\" type=\"line\"/>\n      <point x=\"486\" y=\"251\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"486\" y=\"0\" type=\"line\"/>\n      <point x=\"737\" y=\"0\" type=\"line\"/>\n      <point x=\"737\" y=\"880\" type=\"line\"/>\n      <point x=\"486\" y=\"880\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"486\" y=\"348\" type=\"line\"/>\n      <point x=\"996\" y=\"348\" type=\"line\"/>\n      <point x=\"996\" y=\"534\" type=\"line\"/>\n      <point x=\"486\" y=\"534\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"486\" y=\"629\" type=\"line\"/>\n      <point x=\"1096\" y=\"629\" type=\"line\"/>\n      <point x=\"1096\" y=\"880\" type=\"line\"/>\n      <point x=\"486\" y=\"880\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclam.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0021\"/>\n  <outline>\n    <contour>\n      <point x=\"479\" y=\"556\" type=\"line\"/>\n      <point x=\"717\" y=\"556\" type=\"line\"/>\n      <point x=\"754\" y=\"1430\" type=\"line\"/>\n      <point x=\"446\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <component base=\"period\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclam_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"240\"/>\n    <component base=\"colon\" xOffset=\"1100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclam_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"667\" y=\"-100\" type=\"line\"/>\n      <point x=\"936\" y=\"-100\" type=\"line\"/>\n      <point x=\"1717\" y=\"1520\" type=\"line\"/>\n      <point x=\"1448\" y=\"1520\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"333\" type=\"line\"/>\n      <point x=\"2220\" y=\"333\" type=\"line\"/>\n      <point x=\"2220\" y=\"583\" type=\"line\"/>\n      <point x=\"180\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"835\" type=\"line\"/>\n      <point x=\"2220\" y=\"835\" type=\"line\"/>\n      <point x=\"2220\" y=\"1085\" type=\"line\"/>\n      <point x=\"180\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclam_equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1316\" y=\"-100\" type=\"line\"/>\n      <point x=\"1584\" y=\"-100\" type=\"line\"/>\n      <point x=\"2365\" y=\"1520\" type=\"line\"/>\n      <point x=\"2096\" y=\"1520\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"195\" type=\"line\"/>\n      <point x=\"3420\" y=\"195\" type=\"line\"/>\n      <point x=\"3420\" y=\"437\" type=\"line\"/>\n      <point x=\"180\" y=\"437\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"589\" type=\"line\"/>\n      <point x=\"3420\" y=\"589\" type=\"line\"/>\n      <point x=\"3420\" y=\"830\" type=\"line\"/>\n      <point x=\"180\" y=\"830\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"981\" type=\"line\"/>\n      <point x=\"3420\" y=\"981\" type=\"line\"/>\n      <point x=\"3420\" y=\"1223\" type=\"line\"/>\n      <point x=\"180\" y=\"1223\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclam_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"983\" y=\"835\" type=\"line\"/>\n      <point x=\"1250\" y=\"835\" type=\"line\"/>\n      <point x=\"1250\" y=\"1085\" type=\"line\"/>\n      <point x=\"983\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"983\" y=\"333\" type=\"line\"/>\n      <point x=\"1250\" y=\"333\" type=\"line\"/>\n      <point x=\"1250\" y=\"583\" type=\"line\"/>\n      <point x=\"983\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"835\" type=\"line\"/>\n      <point x=\"217\" y=\"835\" type=\"line\"/>\n      <point x=\"217\" y=\"1085\" type=\"line\"/>\n      <point x=\"-50\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"333\" type=\"line\"/>\n      <point x=\"217\" y=\"333\" type=\"line\"/>\n      <point x=\"217\" y=\"583\" type=\"line\"/>\n      <point x=\"-50\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"exclam\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclam_exclam.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_exclam.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"140\"/>\n    <component base=\"exclam\" xOffset=\"1060\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>exclam</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>exclam</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclam_exclam_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_exclam_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"100\"/>\n    <component base=\"exclam\" xOffset=\"1200\"/>\n    <component base=\"period\" xOffset=\"2300\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>exclam</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>exclam</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclam_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"240\"/>\n    <component base=\"period\" xOffset=\"1100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclamdouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclamdouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203C\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"-270\"/>\n    <component base=\"exclam\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>exclam</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>exclam</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/exclamdown.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclamdown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A1\"/>\n  <outline>\n    <contour>\n      <point x=\"446\" y=\"-370\" type=\"line\"/>\n      <point x=\"754\" y=\"-370\" type=\"line\"/>\n      <point x=\"717\" y=\"504\" type=\"line\"/>\n      <point x=\"479\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" yScale=\"-1\" yOffset=\"1060\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ezh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ezh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0292\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"541\" y=\"-460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"-460\"/>\n      <point x=\"1078\" y=\"-271\"/>\n      <point x=\"1078\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1078\" y=\"286\"/>\n      <point x=\"894\" y=\"453\"/>\n      <point x=\"572\" y=\"460\" type=\"curve\"/>\n      <point x=\"392\" y=\"460\" type=\"line\"/>\n      <point x=\"400\" y=\"231\" type=\"line\"/>\n      <point x=\"486\" y=\"231\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"231\"/>\n      <point x=\"801\" y=\"155\"/>\n      <point x=\"801\" y=\"19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"-117\"/>\n      <point x=\"710\" y=\"-203\"/>\n      <point x=\"552\" y=\"-203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"-203\"/>\n      <point x=\"314\" y=\"-162\"/>\n      <point x=\"202\" y=\"-66\" type=\"curve\"/>\n      <point x=\"62\" y=\"-281\" type=\"line\"/>\n      <point x=\"182\" y=\"-400\"/>\n      <point x=\"343\" y=\"-460\"/>\n    </contour>\n    <contour>\n      <point x=\"442\" y=\"231\" type=\"line\"/>\n      <point x=\"634\" y=\"409\" type=\"line\"/>\n      <point x=\"1013\" y=\"775\" type=\"line\"/>\n      <point x=\"1013\" y=\"1051\" type=\"line\"/>\n      <point x=\"156\" y=\"1051\" type=\"line\"/>\n      <point x=\"156\" y=\"802\" type=\"line\"/>\n      <point x=\"840\" y=\"802\" type=\"line\"/>\n      <point x=\"749\" y=\"851\" type=\"line\"/>\n      <point x=\"319\" y=\"423\" type=\"line\"/>\n      <point x=\"339\" y=\"231\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/f.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"f\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0066\"/>\n  <anchor x=\"508\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"740\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"643\" y=\"0\" type=\"line\"/>\n      <point x=\"643\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"1170\"/>\n      <point x=\"727\" y=\"1263\"/>\n      <point x=\"898\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"1263\"/>\n      <point x=\"1026\" y=\"1259\"/>\n      <point x=\"1115\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1141\" y=\"1500\" type=\"line\"/>\n      <point x=\"1061\" y=\"1514\"/>\n      <point x=\"990\" y=\"1520\"/>\n      <point x=\"904\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"1520\"/>\n      <point x=\"373\" y=\"1338\"/>\n      <point x=\"373\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"51\" y=\"617\" type=\"line\"/>\n      <point x=\"1065\" y=\"617\" type=\"line\"/>\n      <point x=\"1065\" y=\"849\" type=\"line\"/>\n      <point x=\"51\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fatha-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fatha-ar\" format=\"2\">\n  <unicode hex=\"064E\"/>\n  <anchor x=\"596\" y=\"1264\" name=\"_top\"/>\n  <anchor x=\"593\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <component base=\"_fatha-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fathatan-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fathatan-ar\" format=\"2\">\n  <unicode hex=\"064B\"/>\n  <anchor x=\"596\" y=\"1314\" name=\"_top\"/>\n  <anchor x=\"599\" y=\"1246\" name=\"_top.dot\"/>\n  <anchor x=\"593\" y=\"1711\" name=\"top\"/>\n  <outline>\n    <component base=\"_fatha-ar\"/>\n    <component base=\"_fatha-ar\" yScale=\"0.9999\" yOffset=\"210\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fatha-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-81\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"2\" yOffset=\"347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"242\" yOffset=\"347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0641\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"249\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"164\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"2\" yOffset=\"347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-37\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"209\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A2\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"290\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"113\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-81\" yOffset=\"460\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"2\" yOffset=\"347\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-37\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"242\" yOffset=\"347\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"209\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A3\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"249\" yOffset=\"460\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"290\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"113\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"2\" yOffset=\"347\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-81\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"-457\" y=\"-107\" angle=\"0\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-37\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"2\" yOffset=\"347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"-457\" y=\"-107\" angle=\"0\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"209\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"242\" yOffset=\"347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A4\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"290\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"249\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"113\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"-457\" y=\"-107\" angle=\"0\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"2\" yOffset=\"347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"12\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"562\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"512\" y=\"1252\" name=\"top\"/>\n  <anchor x=\"519\" y=\"1002\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-77\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"-10\"/>\n      <point x=\"559\" y=\"4\"/>\n      <point x=\"678\" y=\"57\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"819\" y=\"120\"/>\n      <point x=\"874\" y=\"265\"/>\n      <point x=\"874\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"773\"/>\n      <point x=\"750\" y=\"984\"/>\n      <point x=\"531\" y=\"984\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"984\"/>\n      <point x=\"214\" y=\"818\"/>\n      <point x=\"214\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"214\" y=\"429\"/>\n      <point x=\"271\" y=\"337\"/>\n      <point x=\"458\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"337\"/>\n      <point x=\"609\" y=\"364\"/>\n      <point x=\"639\" y=\"406\" type=\"curve\"/>\n      <point x=\"708\" y=\"408\" type=\"line\"/>\n      <point x=\"711\" y=\"581\" type=\"line\"/>\n      <point x=\"645\" y=\"560\"/>\n      <point x=\"599\" y=\"548\"/>\n      <point x=\"521\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"548\"/>\n      <point x=\"410\" y=\"553\"/>\n      <point x=\"410\" y=\"610\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"665\"/>\n      <point x=\"450\" y=\"722\"/>\n      <point x=\"522\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"596\" y=\"722\"/>\n      <point x=\"667\" y=\"658\"/>\n      <point x=\"667\" y=\"494\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"391\"/>\n      <point x=\"676\" y=\"324\"/>\n      <point x=\"607\" y=\"304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"279\"/>\n      <point x=\"266\" y=\"285\"/>\n      <point x=\"-57\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-607\" y=\"285\"/>\n      <point x=\"-659\" y=\"345\"/>\n      <point x=\"-659\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-659\" y=\"576\"/>\n      <point x=\"-649\" y=\"637\"/>\n      <point x=\"-632\" y=\"735\" type=\"curve\"/>\n      <point x=\"-860\" y=\"735\" type=\"line\"/>\n      <point x=\"-888\" y=\"639\"/>\n      <point x=\"-904\" y=\"547\"/>\n      <point x=\"-904\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-904\" y=\"175\"/>\n      <point x=\"-795\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"565\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"565\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"576\" y=\"1144\" name=\"top\"/>\n  <anchor x=\"602\" y=\"889\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-77\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"257\" y=\"-10\"/>\n      <point x=\"530\" y=\"17\"/>\n      <point x=\"696\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"188\"/>\n      <point x=\"918\" y=\"306\"/>\n      <point x=\"918\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"713\"/>\n      <point x=\"789\" y=\"861\"/>\n      <point x=\"602\" y=\"861\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"861\"/>\n      <point x=\"268\" y=\"688\"/>\n      <point x=\"268\" y=\"461\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"72\"/>\n      <point x=\"618\" y=\"-10\"/>\n      <point x=\"1185\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-10\"/>\n      <point x=\"1310\" y=\"56\"/>\n      <point x=\"1310\" y=\"140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1310\" y=\"214\"/>\n      <point x=\"1277\" y=\"285\"/>\n      <point x=\"1202\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"285\"/>\n      <point x=\"468\" y=\"314\"/>\n      <point x=\"468\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"540\"/>\n      <point x=\"528\" y=\"579\"/>\n      <point x=\"595\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"579\"/>\n      <point x=\"717\" y=\"536\"/>\n      <point x=\"717\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"398\"/>\n      <point x=\"690\" y=\"348\"/>\n      <point x=\"623\" y=\"324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"291\"/>\n      <point x=\"254\" y=\"285\"/>\n      <point x=\"-57\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-607\" y=\"285\"/>\n      <point x=\"-659\" y=\"345\"/>\n      <point x=\"-659\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-659\" y=\"576\"/>\n      <point x=\"-649\" y=\"637\"/>\n      <point x=\"-632\" y=\"735\" type=\"curve\"/>\n      <point x=\"-860\" y=\"735\" type=\"line\"/>\n      <point x=\"-888\" y=\"639\"/>\n      <point x=\"-904\" y=\"547\"/>\n      <point x=\"-904\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-904\" y=\"175\"/>\n      <point x=\"-795\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"502\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"811\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"840\" y=\"1109\" name=\"top\"/>\n  <anchor x=\"842\" y=\"889\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"469\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"-10\"/>\n      <point x=\"760\" y=\"17\"/>\n      <point x=\"926\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1083\" y=\"188\"/>\n      <point x=\"1148\" y=\"306\"/>\n      <point x=\"1148\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1148\" y=\"713\"/>\n      <point x=\"1019\" y=\"861\"/>\n      <point x=\"832\" y=\"861\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"861\"/>\n      <point x=\"498\" y=\"688\"/>\n      <point x=\"498\" y=\"461\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"72\"/>\n      <point x=\"848\" y=\"-10\"/>\n      <point x=\"1185\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-10\"/>\n      <point x=\"1310\" y=\"26\"/>\n      <point x=\"1310\" y=\"140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1310\" y=\"234\"/>\n      <point x=\"1277\" y=\"285\"/>\n      <point x=\"1202\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"285\"/>\n      <point x=\"698\" y=\"314\"/>\n      <point x=\"698\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"540\"/>\n      <point x=\"758\" y=\"579\"/>\n      <point x=\"825\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"579\"/>\n      <point x=\"947\" y=\"536\"/>\n      <point x=\"947\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"398\"/>\n      <point x=\"920\" y=\"348\"/>\n      <point x=\"853\" y=\"324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"291\"/>\n      <point x=\"693\" y=\"285\"/>\n      <point x=\"529\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"285\"/>\n      <point x=\"258\" y=\"321\"/>\n      <point x=\"258\" y=\"457\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"529\"/>\n      <point x=\"262\" y=\"589\"/>\n      <point x=\"273\" y=\"685\" type=\"curve\"/>\n      <point x=\"45\" y=\"685\" type=\"line\"/>\n      <point x=\"28\" y=\"614\"/>\n      <point x=\"11\" y=\"497\"/>\n      <point x=\"11\" y=\"394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"11\" y=\"95\"/>\n      <point x=\"131\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A1\"/>\n  <anchor x=\"592\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"892\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"842\" y=\"1252\" name=\"top\"/>\n  <anchor x=\"849\" y=\"1002\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"529\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"-10\"/>\n      <point x=\"876\" y=\"4\"/>\n      <point x=\"995\" y=\"57\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1136\" y=\"120\"/>\n      <point x=\"1191\" y=\"265\"/>\n      <point x=\"1191\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1191\" y=\"773\"/>\n      <point x=\"1067\" y=\"984\"/>\n      <point x=\"848\" y=\"984\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"984\"/>\n      <point x=\"531\" y=\"818\"/>\n      <point x=\"531\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"429\"/>\n      <point x=\"588\" y=\"337\"/>\n      <point x=\"775\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"337\"/>\n      <point x=\"926\" y=\"364\"/>\n      <point x=\"956\" y=\"406\" type=\"curve\"/>\n      <point x=\"1025\" y=\"408\" type=\"line\"/>\n      <point x=\"1028\" y=\"581\" type=\"line\"/>\n      <point x=\"962\" y=\"560\"/>\n      <point x=\"916\" y=\"548\"/>\n      <point x=\"838\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"548\"/>\n      <point x=\"727\" y=\"553\"/>\n      <point x=\"727\" y=\"610\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"665\"/>\n      <point x=\"767\" y=\"722\"/>\n      <point x=\"839\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"913\" y=\"722\"/>\n      <point x=\"984\" y=\"658\"/>\n      <point x=\"984\" y=\"494\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"391\"/>\n      <point x=\"993\" y=\"324\"/>\n      <point x=\"924\" y=\"304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"279\"/>\n      <point x=\"682\" y=\"285\"/>\n      <point x=\"529\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"285\"/>\n      <point x=\"258\" y=\"321\"/>\n      <point x=\"258\" y=\"447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"509\"/>\n      <point x=\"267\" y=\"588\"/>\n      <point x=\"283\" y=\"685\" type=\"curve\"/>\n      <point x=\"55\" y=\"685\" type=\"line\"/>\n      <point x=\"34\" y=\"625\"/>\n      <point x=\"11\" y=\"497\"/>\n      <point x=\"11\" y=\"394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"11\" y=\"95\"/>\n      <point x=\"131\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"934\" y=\"-481\" name=\"bottom\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"757\" y=\"1252\" name=\"top\"/>\n  <anchor x=\"764\" y=\"1002\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"677\" y=\"13\" type=\"line\"/>\n      <point x=\"995\" y=\"84\"/>\n      <point x=\"1111\" y=\"173\"/>\n      <point x=\"1111\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"773\"/>\n      <point x=\"987\" y=\"984\"/>\n      <point x=\"768\" y=\"984\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"984\"/>\n      <point x=\"451\" y=\"818\"/>\n      <point x=\"451\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"429\"/>\n      <point x=\"508\" y=\"337\"/>\n      <point x=\"695\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"337\"/>\n      <point x=\"846\" y=\"364\"/>\n      <point x=\"876\" y=\"406\" type=\"curve\"/>\n      <point x=\"945\" y=\"408\" type=\"line\"/>\n      <point x=\"948\" y=\"581\" type=\"line\"/>\n      <point x=\"882\" y=\"560\"/>\n      <point x=\"836\" y=\"548\"/>\n      <point x=\"758\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"548\"/>\n      <point x=\"647\" y=\"553\"/>\n      <point x=\"647\" y=\"610\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"665\"/>\n      <point x=\"687\" y=\"722\"/>\n      <point x=\"759\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"722\"/>\n      <point x=\"904\" y=\"658\"/>\n      <point x=\"904\" y=\"494\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"341\"/>\n      <point x=\"902\" y=\"292\"/>\n      <point x=\"844\" y=\"274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"264\"/>\n      <point x=\"764\" y=\"263\"/>\n      <point x=\"705\" y=\"260\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"615\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"715\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"658\" y=\"1252\" name=\"top\"/>\n  <anchor x=\"665\" y=\"1002\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"-10\" type=\"line\"/>\n      <point x=\"289\" y=\"-10\"/>\n      <point x=\"697\" y=\"4\"/>\n      <point x=\"816\" y=\"57\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"957\" y=\"120\"/>\n      <point x=\"1012\" y=\"265\"/>\n      <point x=\"1012\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"773\"/>\n      <point x=\"888\" y=\"984\"/>\n      <point x=\"669\" y=\"984\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"984\"/>\n      <point x=\"352\" y=\"818\"/>\n      <point x=\"352\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"352\" y=\"429\"/>\n      <point x=\"409\" y=\"337\"/>\n      <point x=\"596\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"337\"/>\n      <point x=\"747\" y=\"364\"/>\n      <point x=\"777\" y=\"406\" type=\"curve\"/>\n      <point x=\"846\" y=\"408\" type=\"line\"/>\n      <point x=\"849\" y=\"581\" type=\"line\"/>\n      <point x=\"783\" y=\"560\"/>\n      <point x=\"737\" y=\"548\"/>\n      <point x=\"659\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"548\"/>\n      <point x=\"548\" y=\"553\"/>\n      <point x=\"548\" y=\"610\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"665\"/>\n      <point x=\"588\" y=\"722\"/>\n      <point x=\"660\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"722\"/>\n      <point x=\"805\" y=\"658\"/>\n      <point x=\"805\" y=\"494\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"391\"/>\n      <point x=\"814\" y=\"324\"/>\n      <point x=\"745\" y=\"304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"279\"/>\n      <point x=\"323\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"585\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"585\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"598\" y=\"1109\" name=\"top\"/>\n  <anchor x=\"602\" y=\"889\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-16\" y=\"-10\" type=\"line\"/>\n      <point x=\"278\" y=\"-10\"/>\n      <point x=\"530\" y=\"17\"/>\n      <point x=\"696\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"188\"/>\n      <point x=\"918\" y=\"306\"/>\n      <point x=\"918\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"713\"/>\n      <point x=\"789\" y=\"861\"/>\n      <point x=\"602\" y=\"861\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"861\"/>\n      <point x=\"268\" y=\"688\"/>\n      <point x=\"268\" y=\"461\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"72\"/>\n      <point x=\"618\" y=\"-10\"/>\n      <point x=\"1185\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-10\"/>\n      <point x=\"1310\" y=\"56\"/>\n      <point x=\"1310\" y=\"140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1310\" y=\"214\"/>\n      <point x=\"1277\" y=\"285\"/>\n      <point x=\"1202\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"285\"/>\n      <point x=\"468\" y=\"314\"/>\n      <point x=\"468\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"540\"/>\n      <point x=\"528\" y=\"579\"/>\n      <point x=\"595\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"579\"/>\n      <point x=\"717\" y=\"536\"/>\n      <point x=\"717\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"398\"/>\n      <point x=\"690\" y=\"348\"/>\n      <point x=\"623\" y=\"324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"291\"/>\n      <point x=\"311\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-38\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-35\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"211\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A5\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"292\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"13\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-15\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-38\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-35\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"211\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0761\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"292\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"115\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-15\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-37\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"209\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0760\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"290\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"113\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB01\"/>\n  <outline>\n    <contour>\n      <point x=\"252\" y=\"0\" type=\"line\"/>\n      <point x=\"522\" y=\"0\" type=\"line\"/>\n      <point x=\"522\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"1170\"/>\n      <point x=\"616\" y=\"1263\"/>\n      <point x=\"807\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"1263\"/>\n      <point x=\"917\" y=\"1259\"/>\n      <point x=\"994\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1020\" y=\"1500\" type=\"line\"/>\n      <point x=\"950\" y=\"1514\"/>\n      <point x=\"888\" y=\"1520\"/>\n      <point x=\"813\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"1520\"/>\n      <point x=\"252\" y=\"1338\"/>\n      <point x=\"252\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"51\" y=\"617\" type=\"line\"/>\n      <point x=\"1049\" y=\"617\" type=\"line\"/>\n      <point x=\"1049\" y=\"849\" type=\"line\"/>\n      <point x=\"51\" y=\"849\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"779\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"849\" type=\"line\"/>\n      <point x=\"779\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fileS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fileSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241C\"/>\n  <outline>\n    <component base=\"F.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/filledR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"filledRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AC\"/>\n  <note>\nfilledrect\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"0\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/finalkaf-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalkaf-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DA\"/>\n  <anchor x=\"362\" y=\"507\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"969\" y=\"706\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"1078\"/>\n      <point x=\"856\" y=\"1200\"/>\n      <point x=\"464\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"220\" y=\"1200\"/>\n      <point x=\"138\" y=\"1234\"/>\n      <point x=\"108\" y=\"1253\" type=\"curve\"/>\n      <point x=\"18\" y=\"1018\" type=\"line\"/>\n      <point x=\"84\" y=\"970\"/>\n      <point x=\"181\" y=\"930\"/>\n      <point x=\"294\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"930\"/>\n      <point x=\"711\" y=\"874\"/>\n      <point x=\"711\" y=\"584\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"-460\" type=\"line\"/>\n      <point x=\"969\" y=\"-460\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/finalkafdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalkafdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB3A\"/>\n  <outline>\n    <component base=\"finalkaf-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-238\" yOffset=\"-37\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/finalmem-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalmem-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DD\"/>\n  <outline>\n    <contour>\n      <point x=\"760\" y=\"0\" type=\"line\"/>\n      <point x=\"1018\" y=\"0\" type=\"line\"/>\n      <point x=\"1018\" y=\"877\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1018\" y=\"1080\"/>\n      <point x=\"905\" y=\"1200\"/>\n      <point x=\"723\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"1200\"/>\n      <point x=\"198\" y=\"1234\"/>\n      <point x=\"168\" y=\"1253\" type=\"curve\"/>\n      <point x=\"78\" y=\"1018\" type=\"line\"/>\n      <point x=\"130\" y=\"980\"/>\n      <point x=\"231\" y=\"930\"/>\n      <point x=\"288\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"930\"/>\n      <point x=\"760\" y=\"874\"/>\n      <point x=\"760\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"240\" y=\"0\" type=\"line\"/>\n      <point x=\"934\" y=\"0\" type=\"line\"/>\n      <point x=\"934\" y=\"270\" type=\"line\"/>\n      <point x=\"240\" y=\"270\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"116\" y=\"0\" type=\"line\"/>\n      <point x=\"374\" y=\"0\" type=\"line\"/>\n      <point x=\"374\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"755\"/>\n      <point x=\"378\" y=\"930\"/>\n      <point x=\"536\" y=\"930\" type=\"curve\"/>\n      <point x=\"268\" y=\"994\" type=\"line\"/>\n      <point x=\"268\" y=\"922\" type=\"line\"/>\n      <point x=\"182\" y=\"893\"/>\n      <point x=\"121\" y=\"804\"/>\n      <point x=\"116\" y=\"665\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/finalnun-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalnun-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DF\"/>\n  <outline>\n    <contour>\n      <point x=\"845\" y=\"-460\" type=\"line\"/>\n      <point x=\"845\" y=\"1200\" type=\"line\"/>\n      <point x=\"582\" y=\"1200\" type=\"line\"/>\n      <point x=\"582\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"844\" y=\"1200\" type=\"line\"/>\n      <point x=\"184\" y=\"1200\" type=\"line\"/>\n      <point x=\"184\" y=\"930\" type=\"line\"/>\n      <point x=\"844\" y=\"930\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/finalpe-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalpe-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E3\"/>\n  <anchor x=\"548\" y=\"785\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"756\" y=\"-460\" type=\"line\"/>\n      <point x=\"1014\" y=\"-460\" type=\"line\"/>\n      <point x=\"1014\" y=\"809\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"1067\"/>\n      <point x=\"870\" y=\"1200\"/>\n      <point x=\"583\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"193\" y=\"1200\" type=\"line\"/>\n      <point x=\"157\" y=\"1066\"/>\n      <point x=\"109\" y=\"684\"/>\n      <point x=\"99\" y=\"438\" type=\"curve\"/>\n      <point x=\"355\" y=\"436\" type=\"line\"/>\n      <point x=\"365\" y=\"603\"/>\n      <point x=\"376\" y=\"775\"/>\n      <point x=\"396\" y=\"930\" type=\"curve\"/>\n      <point x=\"514\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"697\" y=\"930\"/>\n      <point x=\"756\" y=\"873\"/>\n      <point x=\"756\" y=\"638\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"530\" y=\"379\" type=\"line\"/>\n      <point x=\"566\" y=\"643\" type=\"line\"/>\n      <point x=\"155\" y=\"700\" type=\"line\"/>\n      <point x=\"99\" y=\"438\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/finalpedagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalpedagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB43\"/>\n  <outline>\n    <component base=\"finalpe-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-52\" yOffset=\"241\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/finaltsadi-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finaltsadi-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E5\"/>\n  <outline>\n    <contour>\n      <point x=\"477\" y=\"-460\" type=\"line\"/>\n      <point x=\"745\" y=\"-460\" type=\"line\"/>\n      <point x=\"745\" y=\"565\" type=\"line\"/>\n      <point x=\"781\" y=\"402\" type=\"line\"/>\n      <point x=\"414\" y=\"1200\" type=\"line\"/>\n      <point x=\"83\" y=\"1200\" type=\"line\"/>\n      <point x=\"477\" y=\"381\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"574\" y=\"376\" type=\"line\"/>\n      <point x=\"813\" y=\"376\"/>\n      <point x=\"1007\" y=\"418\"/>\n      <point x=\"1026\" y=\"737\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1031\" y=\"821\"/>\n      <point x=\"1037\" y=\"1094\"/>\n      <point x=\"1037\" y=\"1200\" type=\"curve\"/>\n      <point x=\"792\" y=\"1200\" type=\"line\"/>\n      <point x=\"792\" y=\"1094\"/>\n      <point x=\"792\" y=\"905\"/>\n      <point x=\"785\" y=\"799\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"617\"/>\n      <point x=\"741\" y=\"548\"/>\n      <point x=\"605\" y=\"548\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"691\" y=\"929\" type=\"line\"/>\n      <point x=\"958\" y=\"929\" type=\"line\"/>\n      <point x=\"1028\" y=\"1200\" type=\"line\"/>\n      <point x=\"691\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/firsttonechinese.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"firsttonechinese\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C9\"/>\n  <outline>\n    <component base=\"macron\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>macron</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fisheye.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fisheye\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C9\"/>\n  <note>\nuni25C9\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"518\"/>\n      <point x=\"793\" y=\"594\"/>\n      <point x=\"793\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"826\"/>\n      <point x=\"716\" y=\"903\"/>\n      <point x=\"600\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"903\"/>\n      <point x=\"408\" y=\"826\"/>\n      <point x=\"408\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"594\"/>\n      <point x=\"484\" y=\"518\"/>\n    </contour>\n    <component base=\"whiteCircle\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/five-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0665\"/>\n  <outline>\n    <contour>\n      <point x=\"593\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"-10\"/>\n      <point x=\"1050\" y=\"98\"/>\n      <point x=\"1050\" y=\"453\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1050\" y=\"803\"/>\n      <point x=\"906\" y=\"1080\"/>\n      <point x=\"613\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"327\" y=\"1080\"/>\n      <point x=\"150\" y=\"809\"/>\n      <point x=\"150\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"123\"/>\n      <point x=\"300\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"285\"/>\n      <point x=\"396\" y=\"320\"/>\n      <point x=\"396\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"632\"/>\n      <point x=\"455\" y=\"785\"/>\n      <point x=\"607\" y=\"785\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"785\"/>\n      <point x=\"804\" y=\"646\"/>\n      <point x=\"804\" y=\"459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"326\"/>\n      <point x=\"747\" y=\"285\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/five-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"-10\"/>\n      <point x=\"884\" y=\"52\"/>\n      <point x=\"884\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"456\"/>\n      <point x=\"772\" y=\"583\"/>\n      <point x=\"607\" y=\"583\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"583\"/>\n      <point x=\"316\" y=\"454\"/>\n      <point x=\"316\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"66\"/>\n      <point x=\"441\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"597\" y=\"167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"167\"/>\n      <point x=\"512\" y=\"199\"/>\n      <point x=\"512\" y=\"265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"352\"/>\n      <point x=\"540\" y=\"400\"/>\n      <point x=\"602\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"400\"/>\n      <point x=\"688\" y=\"346\"/>\n      <point x=\"688\" y=\"264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"200\"/>\n      <point x=\"661\" y=\"167\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/five-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"five-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/five-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F5\"/>\n  <outline>\n    <contour>\n      <point x=\"371\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"-10\"/>\n      <point x=\"562\" y=\"33\"/>\n      <point x=\"580\" y=\"127\" type=\"curve\"/>\n      <point x=\"600\" y=\"127\" type=\"line\"/>\n      <point x=\"619\" y=\"34\"/>\n      <point x=\"675\" y=\"-10\"/>\n      <point x=\"790\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1023\" y=\"-10\"/>\n      <point x=\"1116\" y=\"158\"/>\n      <point x=\"1116\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"664\"/>\n      <point x=\"922\" y=\"930\"/>\n      <point x=\"543\" y=\"1257\" type=\"curve\"/>\n      <point x=\"355\" y=\"1026\" type=\"line\"/>\n      <point x=\"701\" y=\"707\"/>\n      <point x=\"859\" y=\"521\"/>\n      <point x=\"859\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"319\"/>\n      <point x=\"840\" y=\"285\"/>\n      <point x=\"780\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"285\"/>\n      <point x=\"702\" y=\"312\"/>\n      <point x=\"703\" y=\"459\" type=\"curve\"/>\n      <point x=\"489\" y=\"459\" type=\"line\"/>\n      <point x=\"491\" y=\"308\"/>\n      <point x=\"479\" y=\"285\"/>\n      <point x=\"399\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"352\" y=\"285\"/>\n      <point x=\"324\" y=\"303\"/>\n      <point x=\"324\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"558\"/>\n      <point x=\"502\" y=\"761\"/>\n      <point x=\"691\" y=\"935\" type=\"curve\"/>\n      <point x=\"545\" y=\"1080\" type=\"line\"/>\n      <point x=\"339\" y=\"885\"/>\n      <point x=\"94\" y=\"595\"/>\n      <point x=\"94\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"94\" y=\"115\"/>\n      <point x=\"184\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/five-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"-10\"/>\n      <point x=\"573\" y=\"11\"/>\n      <point x=\"587\" y=\"67\" type=\"curve\"/>\n      <point x=\"600\" y=\"67\" type=\"line\"/>\n      <point x=\"612\" y=\"17\"/>\n      <point x=\"644\" y=\"-10\"/>\n      <point x=\"726\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"-10\"/>\n      <point x=\"906\" y=\"69\"/>\n      <point x=\"906\" y=\"176\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"338\"/>\n      <point x=\"786\" y=\"478\"/>\n      <point x=\"575\" y=\"652\" type=\"curve\"/>\n      <point x=\"450\" y=\"525\" type=\"line\"/>\n      <point x=\"643\" y=\"355\"/>\n      <point x=\"729\" y=\"272\"/>\n      <point x=\"733\" y=\"195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"171\"/>\n      <point x=\"720\" y=\"162\"/>\n      <point x=\"701\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"162\"/>\n      <point x=\"669\" y=\"174\"/>\n      <point x=\"671\" y=\"234\" type=\"curve\"/>\n      <point x=\"537\" y=\"234\" type=\"line\"/>\n      <point x=\"536\" y=\"167\"/>\n      <point x=\"525\" y=\"162\"/>\n      <point x=\"499\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"162\"/>\n      <point x=\"469\" y=\"174\"/>\n      <point x=\"469\" y=\"196\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"267\"/>\n      <point x=\"577\" y=\"364\"/>\n      <point x=\"673\" y=\"467\" type=\"curve\"/>\n      <point x=\"550\" y=\"558\" type=\"line\"/>\n      <point x=\"450\" y=\"454\"/>\n      <point x=\"295\" y=\"316\"/>\n      <point x=\"295\" y=\"167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"50\"/>\n      <point x=\"364\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/five-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"five-persianinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/five.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fivesuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/five.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0035\"/>\n  <outline>\n    <contour>\n      <point x=\"597\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"-20\"/>\n      <point x=\"1111\" y=\"171\"/>\n      <point x=\"1111\" y=\"466\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"746\"/>\n      <point x=\"948\" y=\"926\"/>\n      <point x=\"695\" y=\"926\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"926\"/>\n      <point x=\"503\" y=\"905\"/>\n      <point x=\"431\" y=\"867\" type=\"curve\"/>\n      <point x=\"380\" y=\"618\" type=\"line\"/>\n      <point x=\"451\" y=\"656\"/>\n      <point x=\"527\" y=\"675\"/>\n      <point x=\"609\" y=\"675\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"675\"/>\n      <point x=\"833\" y=\"594\"/>\n      <point x=\"833\" y=\"466\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"324\"/>\n      <point x=\"745\" y=\"232\"/>\n      <point x=\"608\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"232\"/>\n      <point x=\"393\" y=\"305\"/>\n      <point x=\"393\" y=\"431\" type=\"curve\"/>\n      <point x=\"115\" y=\"431\" type=\"line\"/>\n      <point x=\"115\" y=\"145\"/>\n      <point x=\"290\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"201\" y=\"618\" type=\"line\"/>\n      <point x=\"380\" y=\"618\" type=\"line\"/>\n      <point x=\"452\" y=\"804\" type=\"line\"/>\n      <point x=\"486\" y=\"1420\" type=\"line\"/>\n      <point x=\"221\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"334\" y=\"1177\" type=\"line\"/>\n      <point x=\"1021\" y=\"1177\" type=\"line\"/>\n      <point x=\"1021\" y=\"1420\" type=\"line\"/>\n      <point x=\"316\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/five.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fivesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveeighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"710\" y=\"692\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"617\" y=\"814\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"577\" y=\"593\" type=\"line\"/>\n      <point x=\"484\" y=\"715\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <component base=\"fivesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>fivesuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>eightinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fiveeighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveeighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215D\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <component base=\"fivesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>fivesuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>eightinferior</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fiveinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2085\"/>\n  <outline>\n    <component base=\"fivesuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fivesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fivesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2075\"/>\n  <outline>\n    <contour>\n      <point x=\"597\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"793\"/>\n      <point x=\"886\" y=\"873\"/>\n      <point x=\"886\" y=\"1012\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"1125\"/>\n      <point x=\"794\" y=\"1190\"/>\n      <point x=\"632\" y=\"1190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"582\" y=\"1190\"/>\n      <point x=\"532\" y=\"1178\"/>\n      <point x=\"493\" y=\"1158\" type=\"curve\"/>\n      <point x=\"510\" y=\"1021\" type=\"line\"/>\n      <point x=\"536\" y=\"1046\"/>\n      <point x=\"565\" y=\"1057\"/>\n      <point x=\"595\" y=\"1057\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"1057\"/>\n      <point x=\"658\" y=\"1041\"/>\n      <point x=\"658\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"981\"/>\n      <point x=\"636\" y=\"962\"/>\n      <point x=\"598\" y=\"962\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"565\" y=\"962\"/>\n      <point x=\"547\" y=\"971\"/>\n      <point x=\"547\" y=\"987\" type=\"curve\"/>\n      <point x=\"314\" y=\"987\" type=\"line\"/>\n      <point x=\"314\" y=\"864\"/>\n      <point x=\"417\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"340\" y=\"1021\" type=\"line\"/>\n      <point x=\"510\" y=\"1021\" type=\"line\"/>\n      <point x=\"561\" y=\"1139\" type=\"line\"/>\n      <point x=\"575\" y=\"1420\" type=\"line\"/>\n      <point x=\"349\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"477\" y=\"1238\" type=\"line\"/>\n      <point x=\"848\" y=\"1238\" type=\"line\"/>\n      <point x=\"848\" y=\"1420\" type=\"line\"/>\n      <point x=\"469\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB02\"/>\n  <outline>\n    <contour>\n      <point x=\"251\" y=\"0\" type=\"line\"/>\n      <point x=\"521\" y=\"0\" type=\"line\"/>\n      <point x=\"521\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"1170\"/>\n      <point x=\"615\" y=\"1263\"/>\n      <point x=\"806\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"1263\"/>\n      <point x=\"952\" y=\"1259\"/>\n      <point x=\"1053\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1079\" y=\"1500\" type=\"line\"/>\n      <point x=\"989\" y=\"1514\"/>\n      <point x=\"909\" y=\"1520\"/>\n      <point x=\"812\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"1520\"/>\n      <point x=\"251\" y=\"1338\"/>\n      <point x=\"251\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"51\" y=\"617\" type=\"line\"/>\n      <point x=\"687\" y=\"617\" type=\"line\"/>\n      <point x=\"687\" y=\"849\" type=\"line\"/>\n      <point x=\"51\" y=\"849\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"811\" y=\"0\" type=\"line\"/>\n      <point x=\"1081\" y=\"0\" type=\"line\"/>\n      <point x=\"1081\" y=\"1500\" type=\"line\"/>\n      <point x=\"811\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/florin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"florin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0192\"/>\n  <anchor x=\"508\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"740\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"73\" y=\"-477\" type=\"line\"/>\n      <point x=\"168\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"-437\"/>\n      <point x=\"643\" y=\"-284\"/>\n      <point x=\"643\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"384\" type=\"line\"/>\n      <point x=\"371\" y=\"384\" type=\"line\"/>\n      <point x=\"371\" y=\"88\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"371\" y=\"-109\"/>\n      <point x=\"315\" y=\"-200\"/>\n      <point x=\"188\" y=\"-215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"63\" y=\"-230\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"371\" y=\"200\" type=\"line\"/>\n      <point x=\"643\" y=\"200\" type=\"line\"/>\n      <point x=\"643\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"1170\"/>\n      <point x=\"727\" y=\"1263\"/>\n      <point x=\"898\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"1263\"/>\n      <point x=\"1026\" y=\"1259\"/>\n      <point x=\"1115\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1141\" y=\"1500\" type=\"line\"/>\n      <point x=\"1061\" y=\"1514\"/>\n      <point x=\"990\" y=\"1520\"/>\n      <point x=\"904\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"1520\"/>\n      <point x=\"374\" y=\"1338\"/>\n      <point x=\"373\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"51\" y=\"617\" type=\"line\"/>\n      <point x=\"1065\" y=\"617\" type=\"line\"/>\n      <point x=\"1065\" y=\"849\" type=\"line\"/>\n      <point x=\"51\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/footnotemarker-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"footnotemarker-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0602\"/>\n  <outline>\n    <contour>\n      <point x=\"264\" y=\"-279\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1130\" y=\"-279\" type=\"line\"/>\n      <point x=\"1138\" y=\"-89\" type=\"line\"/>\n      <point x=\"263\" y=\"-88\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"-88\"/>\n      <point x=\"167\" y=\"-82\"/>\n      <point x=\"167\" y=\"-66\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"-46\"/>\n      <point x=\"203\" y=\"-28\"/>\n      <point x=\"241\" y=\"-28\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"-28\"/>\n      <point x=\"297\" y=\"-46\"/>\n      <point x=\"297\" y=\"-89\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"-109\"/>\n      <point x=\"291\" y=\"-144\"/>\n      <point x=\"281\" y=\"-187\" type=\"curve\"/>\n      <point x=\"368\" y=\"-199\" type=\"line\"/>\n      <point x=\"382\" y=\"-160\"/>\n      <point x=\"394\" y=\"-97\"/>\n      <point x=\"394\" y=\"-53\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"68\"/>\n      <point x=\"343\" y=\"138\"/>\n      <point x=\"252\" y=\"138\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"145\" y=\"138\"/>\n      <point x=\"52\" y=\"30\"/>\n      <point x=\"52\" y=\"-100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"52\" y=\"-215\"/>\n      <point x=\"120\" y=\"-279\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/formF_eedC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"formFeedControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240C\"/>\n  <outline>\n    <component base=\"F.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"F.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/formF_eedC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"formFeedControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"589\" y=\"599\" type=\"line\"/>\n      <point x=\"611\" y=\"599\" type=\"line\"/>\n      <point x=\"1126\" y=\"1236\" type=\"line\"/>\n      <point x=\"856\" y=\"1236\" type=\"line\"/>\n      <point x=\"779\" y=\"979\" type=\"line\"/>\n      <point x=\"421\" y=\"979\" type=\"line\"/>\n      <point x=\"344\" y=\"1236\" type=\"line\"/>\n      <point x=\"74\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"589\" y=\"180\" type=\"line\"/>\n      <point x=\"611\" y=\"180\" type=\"line\"/>\n      <point x=\"1126\" y=\"817\" type=\"line\"/>\n      <point x=\"856\" y=\"817\" type=\"line\"/>\n      <point x=\"779\" y=\"560\" type=\"line\"/>\n      <point x=\"421\" y=\"560\" type=\"line\"/>\n      <point x=\"344\" y=\"817\" type=\"line\"/>\n      <point x=\"74\" y=\"817\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"426\" type=\"line\"/>\n      <point x=\"731\" y=\"426\" type=\"line\"/>\n      <point x=\"731\" y=\"1235\" type=\"line\"/>\n      <point x=\"469\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0664\"/>\n  <outline>\n    <contour>\n      <point x=\"659\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"-10\"/>\n      <point x=\"940\" y=\"9\"/>\n      <point x=\"1055\" y=\"52\" type=\"curve\"/>\n      <point x=\"1035\" y=\"329\" type=\"line\"/>\n      <point x=\"889\" y=\"297\"/>\n      <point x=\"790\" y=\"285\"/>\n      <point x=\"697\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"285\"/>\n      <point x=\"494\" y=\"313\"/>\n      <point x=\"494\" y=\"376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"494\" y=\"435\"/>\n      <point x=\"536\" y=\"497\"/>\n      <point x=\"917\" y=\"619\" type=\"curve\"/>\n      <point x=\"910\" y=\"869\" type=\"line\"/>\n      <point x=\"571\" y=\"877\"/>\n      <point x=\"528\" y=\"904\"/>\n      <point x=\"528\" y=\"975\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"528\" y=\"1028\"/>\n      <point x=\"574\" y=\"1081\"/>\n      <point x=\"915\" y=\"1174\" type=\"curve\"/>\n      <point x=\"896\" y=\"1439\" type=\"line\"/>\n      <point x=\"411\" y=\"1314\"/>\n      <point x=\"257\" y=\"1166\"/>\n      <point x=\"257\" y=\"978\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"257\" y=\"813\"/>\n      <point x=\"349\" y=\"734\"/>\n      <point x=\"533\" y=\"710\" type=\"curve\"/>\n      <point x=\"533\" y=\"676\" type=\"line\"/>\n      <point x=\"674\" y=\"673\" type=\"line\"/>\n      <point x=\"671\" y=\"743\" type=\"line\"/>\n      <point x=\"341\" y=\"620\"/>\n      <point x=\"215\" y=\"492\"/>\n      <point x=\"215\" y=\"309\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"215\" y=\"111\"/>\n      <point x=\"371\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"626\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"-10\"/>\n      <point x=\"771\" y=\"5\"/>\n      <point x=\"825\" y=\"25\" type=\"curve\"/>\n      <point x=\"816\" y=\"179\" type=\"line\"/>\n      <point x=\"765\" y=\"166\"/>\n      <point x=\"707\" y=\"157\"/>\n      <point x=\"653\" y=\"157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"157\"/>\n      <point x=\"582\" y=\"167\"/>\n      <point x=\"582\" y=\"184\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"582\" y=\"206\"/>\n      <point x=\"598\" y=\"217\"/>\n      <point x=\"747\" y=\"243\" type=\"curve\"/>\n      <point x=\"741\" y=\"405\" type=\"line\"/>\n      <point x=\"612\" y=\"400\"/>\n      <point x=\"588\" y=\"408\"/>\n      <point x=\"588\" y=\"434\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"588\" y=\"454\"/>\n      <point x=\"601\" y=\"469\"/>\n      <point x=\"756\" y=\"490\" type=\"curve\"/>\n      <point x=\"750\" y=\"643\" type=\"line\"/>\n      <point x=\"497\" y=\"605\"/>\n      <point x=\"424\" y=\"539\"/>\n      <point x=\"424\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"363\"/>\n      <point x=\"473\" y=\"327\"/>\n      <point x=\"549\" y=\"315\" type=\"curve\"/>\n      <point x=\"549\" y=\"290\" type=\"line\"/>\n      <point x=\"638\" y=\"276\" type=\"line\"/>\n      <point x=\"637\" y=\"332\" type=\"line\"/>\n      <point x=\"468\" y=\"286\"/>\n      <point x=\"405\" y=\"220\"/>\n      <point x=\"405\" y=\"136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"45\"/>\n      <point x=\"481\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"four-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F4\"/>\n  <outline>\n    <contour>\n      <point x=\"445\" y=\"0\" type=\"curve\"/>\n      <point x=\"705\" y=\"0\" type=\"line\"/>\n      <point x=\"705\" y=\"431\"/>\n      <point x=\"598\" y=\"814\"/>\n      <point x=\"453\" y=\"1127\" type=\"curve\"/>\n      <point x=\"327\" y=\"1058\" type=\"line\"/>\n      <point x=\"382\" y=\"886\"/>\n      <point x=\"539\" y=\"788\"/>\n      <point x=\"805\" y=\"788\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"788\"/>\n      <point x=\"1030\" y=\"807\"/>\n      <point x=\"1117\" y=\"846\" type=\"curve\"/>\n      <point x=\"1105\" y=\"1085\" type=\"line\"/>\n      <point x=\"1015\" y=\"1063\"/>\n      <point x=\"940\" y=\"1049\"/>\n      <point x=\"852\" y=\"1049\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"1049\"/>\n      <point x=\"691\" y=\"1066\"/>\n      <point x=\"691\" y=\"1127\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1194\"/>\n      <point x=\"749\" y=\"1210\"/>\n      <point x=\"851\" y=\"1210\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"1210\"/>\n      <point x=\"1001\" y=\"1197\"/>\n      <point x=\"1067\" y=\"1182\" type=\"curve\"/>\n      <point x=\"1084\" y=\"1392\" type=\"line\"/>\n      <point x=\"1021\" y=\"1420\"/>\n      <point x=\"931\" y=\"1440\"/>\n      <point x=\"830\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"1440\"/>\n      <point x=\"526\" y=\"1349\"/>\n      <point x=\"526\" y=\"1196\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"1131\"/>\n      <point x=\"556\" y=\"1071\"/>\n      <point x=\"601\" y=\"1046\" type=\"curve\"/>\n      <point x=\"597\" y=\"1000\" type=\"line\"/>\n      <point x=\"658\" y=\"974\" type=\"line\"/>\n      <point x=\"661\" y=\"1029\" type=\"line\"/>\n      <point x=\"558\" y=\"1029\"/>\n      <point x=\"519\" y=\"1048\"/>\n      <point x=\"490\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"1174\"/>\n      <point x=\"420\" y=\"1278\"/>\n      <point x=\"358\" y=\"1442\" type=\"curve\"/>\n      <point x=\"98\" y=\"1376\" type=\"line\"/>\n      <point x=\"267\" y=\"947\"/>\n      <point x=\"432\" y=\"453\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-persian.small01.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian.small01\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"620\" y=\"1334\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1661\" name=\"top\"/>\n  <outline>\n    <component base=\"_four-persian.small01\" yOffset=\"566\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_four-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-persian.urdu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian.urdu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"245\" y=\"0\" type=\"curve\"/>\n      <point x=\"543\" y=\"0\" type=\"line\"/>\n      <point x=\"510\" y=\"309\"/>\n      <point x=\"396\" y=\"868\"/>\n      <point x=\"396\" y=\"1026\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"1118\"/>\n      <point x=\"447\" y=\"1149\"/>\n      <point x=\"514\" y=\"1149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"1149\"/>\n      <point x=\"652\" y=\"1109\"/>\n      <point x=\"690\" y=\"881\" type=\"curve\"/>\n      <point x=\"942\" y=\"881\" type=\"line\"/>\n      <point x=\"1006\" y=\"1081\"/>\n      <point x=\"1078\" y=\"1227\"/>\n      <point x=\"1162\" y=\"1352\" type=\"curve\"/>\n      <point x=\"917\" y=\"1440\" type=\"line\"/>\n      <point x=\"866\" y=\"1360\"/>\n      <point x=\"833\" y=\"1261\"/>\n      <point x=\"821\" y=\"1142\" type=\"curve\"/>\n      <point x=\"804\" y=\"1142\" type=\"line\"/>\n      <point x=\"781\" y=\"1348\"/>\n      <point x=\"672\" y=\"1434\"/>\n      <point x=\"494\" y=\"1434\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"1434\"/>\n      <point x=\"94\" y=\"1306\"/>\n      <point x=\"94\" y=\"1044\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"94\" y=\"880\"/>\n      <point x=\"214\" y=\"297\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-persian.urduinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian.urduinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"419\" y=\"-1\" type=\"curve\"/>\n      <point x=\"602\" y=\"-1\" type=\"line\"/>\n      <point x=\"581\" y=\"147\"/>\n      <point x=\"539\" y=\"341\"/>\n      <point x=\"539\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"423\"/>\n      <point x=\"553\" y=\"437\"/>\n      <point x=\"581\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"437\"/>\n      <point x=\"629\" y=\"427\"/>\n      <point x=\"638\" y=\"305\" type=\"curve\"/>\n      <point x=\"815\" y=\"305\" type=\"line\"/>\n      <point x=\"837\" y=\"389\"/>\n      <point x=\"886\" y=\"525\"/>\n      <point x=\"927\" y=\"601\" type=\"curve\"/>\n      <point x=\"754\" y=\"641\" type=\"line\"/>\n      <point x=\"733\" y=\"590\"/>\n      <point x=\"730\" y=\"545\"/>\n      <point x=\"716\" y=\"483\" type=\"curve\"/>\n      <point x=\"705\" y=\"483\" type=\"line\"/>\n      <point x=\"689\" y=\"598\"/>\n      <point x=\"648\" y=\"637\"/>\n      <point x=\"538\" y=\"637\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"415\" y=\"637\"/>\n      <point x=\"342\" y=\"565\"/>\n      <point x=\"342\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"367\"/>\n      <point x=\"400\" y=\"134\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-persian.urdusuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian.urdusuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"four-persian.urduinferior\" yOffset=\"797\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-persianbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persianbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-546\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_four-persian.small01\" xOffset=\"-10\" yOffset=\"-1122\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_four-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-persiancenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persiancenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"616\" y=\"298\" name=\"_center\"/>\n  <outline>\n    <component base=\"_four-persian.small01\" xOffset=\"-10\" yOffset=\"-529\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_four-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"490\" y=\"-1\" type=\"curve\"/>\n      <point x=\"661\" y=\"-1\" type=\"line\"/>\n      <point x=\"651\" y=\"176\"/>\n      <point x=\"621\" y=\"301\"/>\n      <point x=\"569\" y=\"417\" type=\"curve\"/>\n      <point x=\"505\" y=\"401\" type=\"line\"/>\n      <point x=\"539\" y=\"326\"/>\n      <point x=\"597\" y=\"294\"/>\n      <point x=\"712\" y=\"294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"294\"/>\n      <point x=\"821\" y=\"301\"/>\n      <point x=\"868\" y=\"318\" type=\"curve\"/>\n      <point x=\"867\" y=\"455\" type=\"line\"/>\n      <point x=\"817\" y=\"447\"/>\n      <point x=\"783\" y=\"443\"/>\n      <point x=\"746\" y=\"443\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"443\"/>\n      <point x=\"707\" y=\"451\"/>\n      <point x=\"707\" y=\"474\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"494\"/>\n      <point x=\"723\" y=\"501\"/>\n      <point x=\"763\" y=\"501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"501\"/>\n      <point x=\"815\" y=\"499\"/>\n      <point x=\"844\" y=\"495\" type=\"curve\"/>\n      <point x=\"850\" y=\"618\" type=\"line\"/>\n      <point x=\"823\" y=\"629\"/>\n      <point x=\"777\" y=\"639\"/>\n      <point x=\"733\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"639\"/>\n      <point x=\"585\" y=\"594\"/>\n      <point x=\"585\" y=\"512\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"585\" y=\"466\"/>\n      <point x=\"600\" y=\"437\"/>\n      <point x=\"633\" y=\"426\" type=\"curve\"/>\n      <point x=\"632\" y=\"399\" type=\"line\"/>\n      <point x=\"648\" y=\"380\" type=\"line\"/>\n      <point x=\"649\" y=\"414\" type=\"line\"/>\n      <point x=\"603\" y=\"414\"/>\n      <point x=\"582\" y=\"435\"/>\n      <point x=\"564\" y=\"477\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"512\"/>\n      <point x=\"532\" y=\"568\"/>\n      <point x=\"504\" y=\"640\" type=\"curve\"/>\n      <point x=\"347\" y=\"593\" type=\"line\"/>\n      <point x=\"420\" y=\"408\"/>\n      <point x=\"484\" y=\"195\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"four-persianinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"foursuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0034\"/>\n  <outline>\n    <contour>\n      <point x=\"57\" y=\"286\" type=\"line\"/>\n      <point x=\"324\" y=\"286\" type=\"line\"/>\n      <point x=\"501\" y=\"1340\" type=\"line\"/>\n      <point x=\"232\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"57\" y=\"286\" type=\"line\"/>\n      <point x=\"757\" y=\"286\" type=\"line\"/>\n      <point x=\"757\" y=\"527\" type=\"line\"/>\n      <point x=\"214\" y=\"527\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"980\" y=\"286\" type=\"line\"/>\n      <point x=\"1137\" y=\"286\" type=\"line\"/>\n      <point x=\"1137\" y=\"527\" type=\"line\"/>\n      <point x=\"980\" y=\"527\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"737\" y=\"0\" type=\"line\"/>\n      <point x=\"1000\" y=\"0\" type=\"line\"/>\n      <point x=\"1000\" y=\"1420\" type=\"line\"/>\n      <point x=\"737\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"89\" y=\"132\" type=\"line\"/>\n      <point x=\"253\" y=\"132\" type=\"line\"/>\n      <point x=\"425\" y=\"603\" type=\"line\"/>\n      <point x=\"259\" y=\"603\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"89\" y=\"132\" type=\"line\"/>\n      <point x=\"557\" y=\"132\" type=\"line\"/>\n      <point x=\"557\" y=\"267\" type=\"line\"/>\n      <point x=\"192\" y=\"267\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"682\" y=\"132\" type=\"line\"/>\n      <point x=\"787\" y=\"132\" type=\"line\"/>\n      <point x=\"787\" y=\"267\" type=\"line\"/>\n      <point x=\"682\" y=\"267\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"543\" y=\"0\" type=\"line\"/>\n      <point x=\"696\" y=\"0\" type=\"line\"/>\n      <point x=\"696\" y=\"639\" type=\"line\"/>\n      <point x=\"543\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/four.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"foursuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fourdotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourdotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"606\" y=\"1161\" name=\"top\"/>\n  <outline>\n    <component base=\"_fourdotscenter-ar\" xScale=\"0.92\" yScale=\"0.92\" xOffset=\"47\" yOffset=\"516\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fourdotscenter-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fourdotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourdotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"613\" y=\"-606\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_fourdotscenter-ar\" yOffset=\"-686\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fourdotscenter-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fourdotscenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourdotscenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"596\" y=\"348\" name=\"_center\"/>\n  <outline>\n    <component base=\"_fourdotscenter-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fourinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2084\"/>\n  <outline>\n    <component base=\"foursuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/foursuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"foursuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2074\"/>\n  <outline>\n    <contour>\n      <point x=\"311\" y=\"900\" type=\"line\"/>\n      <point x=\"513\" y=\"900\" type=\"line\"/>\n      <point x=\"570\" y=\"1387\" type=\"line\"/>\n      <point x=\"373\" y=\"1387\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"310\" y=\"900\" type=\"line\"/>\n      <point x=\"632\" y=\"900\" type=\"line\"/>\n      <point x=\"632\" y=\"1081\" type=\"line\"/>\n      <point x=\"389\" y=\"1081\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"812\" y=\"900\" type=\"line\"/>\n      <point x=\"890\" y=\"900\" type=\"line\"/>\n      <point x=\"890\" y=\"1081\" type=\"line\"/>\n      <point x=\"812\" y=\"1081\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"623\" y=\"802\" type=\"line\"/>\n      <point x=\"821\" y=\"802\" type=\"line\"/>\n      <point x=\"821\" y=\"1420\" type=\"line\"/>\n      <point x=\"623\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fourthroot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourthroot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0607\"/>\n  <outline>\n    <component base=\"_cuberoot_fourthroot-ar\"/>\n    <component base=\"_fourthroot-ar\" xOffset=\"106\" yOffset=\"-112\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_fourthroot-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>_cuberoot_fourthroot-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_cuberoot_fourthroot-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fraction.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fraction\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2044\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/franc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"franc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A3\"/>\n  <outline>\n    <contour>\n      <point x=\"13\" y=\"199\" type=\"line\"/>\n      <point x=\"695\" y=\"199\" type=\"line\"/>\n      <point x=\"695\" y=\"386\" type=\"line\"/>\n      <point x=\"13\" y=\"386\" type=\"line\"/>\n    </contour>\n    <component base=\"F\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>F</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fullB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2588\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fullB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/fullstop-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullstop-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D4\"/>\n  <outline>\n    <contour>\n      <point x=\"352\" y=\"0\" type=\"line\"/>\n      <point x=\"830\" y=\"0\" type=\"line\"/>\n      <point x=\"848\" y=\"225\" type=\"line\"/>\n      <point x=\"371\" y=\"225\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/g.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"g\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0067\"/>\n  <anchor x=\"540\" y=\"-420\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"182\" y=\"-478\" type=\"line\"/>\n      <point x=\"492\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"-455\"/>\n      <point x=\"1049\" y=\"-284\"/>\n      <point x=\"1049\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"1060\" type=\"line\"/>\n      <point x=\"798\" y=\"1060\" type=\"line\"/>\n      <point x=\"778\" y=\"836\" type=\"line\"/>\n      <point x=\"778\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"-129\"/>\n      <point x=\"698\" y=\"-227\"/>\n      <point x=\"512\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"-242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"495\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"-20\"/>\n      <point x=\"735\" y=\"51\"/>\n      <point x=\"756\" y=\"192\" type=\"curve\"/>\n      <point x=\"850\" y=\"192\" type=\"line\"/>\n      <point x=\"778\" y=\"529\" type=\"line\"/>\n      <point x=\"778\" y=\"323\"/>\n      <point x=\"725\" y=\"235\"/>\n      <point x=\"571\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"235\"/>\n      <point x=\"356\" y=\"334\"/>\n      <point x=\"356\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"717\"/>\n      <point x=\"434\" y=\"825\"/>\n      <point x=\"571\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"825\"/>\n      <point x=\"778\" y=\"734\"/>\n      <point x=\"778\" y=\"529\" type=\"curve\"/>\n      <point x=\"840\" y=\"868\" type=\"line\"/>\n      <point x=\"762\" y=\"868\" type=\"line\"/>\n      <point x=\"737\" y=\"1010\"/>\n      <point x=\"658\" y=\"1080\"/>\n      <point x=\"497\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"1080\"/>\n      <point x=\"79\" y=\"879\"/>\n      <point x=\"79\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"79\" y=\"175\"/>\n      <point x=\"232\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gaf-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gaf-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"807\" y=\"1486\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"gafsarkashabove-ar\" yScale=\"0.9999\" xOffset=\"244\" yOffset=\"-73\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gaf-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gaf-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AF\"/>\n  <anchor x=\"807\" y=\"1486\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"gafsarkashabove-ar\" yScale=\"0.9999\" xOffset=\"244\" yOffset=\"-73\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gaf-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gaf-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"gafsarkashabove-ar\" yScale=\"0.9999\" xOffset=\"23\" yOffset=\"-73\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gaf-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gaf-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"gafsarkashabove-ar\" yScale=\"0.9999\" xOffset=\"28\" yOffset=\"-73\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafI_nvertedstroke-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafInvertedstroke-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"_invertedstroke\" yScale=\"0.9999\" xOffset=\"675\" yOffset=\"-111\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_invertedstroke</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>keheh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>keheh-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafI_nvertedstroke-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafInvertedstroke-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B0\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"_invertedstroke\" yScale=\"0.9999\" xOffset=\"685\" yOffset=\"-111\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_invertedstroke</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>keheh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafI_nvertedstroke-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafInvertedstroke-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"_invertedstroke\" yScale=\"0.9999\" xOffset=\"473\" yOffset=\"-105\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_invertedstroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafI_nvertedstroke-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafInvertedstroke-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"_invertedstroke\" yScale=\"0.9999\" xOffset=\"457\" yOffset=\"-114\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_invertedstroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"807\" y=\"1486\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"444\" yOffset=\"978\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B0\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"807\" y=\"1486\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"444\" yOffset=\"978\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafRing-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"569\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"ringArabic\" xOffset=\"234\" yOffset=\"978\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafRing-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"649\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"ringArabic\" xOffset=\"234\" yOffset=\"978\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafT_hreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafThreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"640\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"260\" yOffset=\"998\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafT_hreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafThreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B4\"/>\n  <guideline x=\"833\" y=\"865\" angle=\"0\"/>\n  <anchor x=\"640\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"260\" yOffset=\"998\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafT_hreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafThreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"422\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"39\" yOffset=\"998\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafT_hreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafThreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"423\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"44\" yOffset=\"998\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafT_wodotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafTwodotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafT_wodotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafTwodotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B2\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafT_wodotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafTwodotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-33\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafT_wodotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafTwodotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gafsarkashabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafsarkashabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"489\" y=\"1080\" name=\"_top\"/>\n  <anchor x=\"410\" y=\"1216\" name=\"_top.dot\"/>\n  <anchor x=\"563\" y=\"1559\" name=\"top\"/>\n  <anchor x=\"464\" y=\"1451\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"229\" y=\"1131\" type=\"line\"/>\n      <point x=\"953\" y=\"1567\" type=\"line\"/>\n      <point x=\"954\" y=\"1749\" type=\"line\"/>\n      <point x=\"230\" y=\"1308\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gamma-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gamma-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0263\"/>\n  <anchor x=\"600\" y=\"-400\" name=\"bottom\"/>\n  <anchor x=\"605\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"426\" y=\"0\" type=\"line\"/>\n      <point x=\"600\" y=\"65\" type=\"line\"/>\n      <point x=\"774\" y=\"0\" type=\"line\"/>\n      <point x=\"1137\" y=\"1060\" type=\"line\"/>\n      <point x=\"861\" y=\"1060\" type=\"line\"/>\n      <point x=\"609\" y=\"238\" type=\"line\"/>\n      <point x=\"591\" y=\"238\" type=\"line\"/>\n      <point x=\"339\" y=\"1060\" type=\"line\"/>\n      <point x=\"63\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-462\" type=\"line\"/>\n      <point x=\"825\" y=\"-462\"/>\n      <point x=\"956\" y=\"-366\"/>\n      <point x=\"956\" y=\"-196\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"956\" y=\"-98\"/>\n      <point x=\"915\" y=\"-26\"/>\n      <point x=\"771\" y=\"111\" type=\"curve\"/>\n      <point x=\"556\" y=\"76\" type=\"line\"/>\n      <point x=\"663\" y=\"-47\"/>\n      <point x=\"696\" y=\"-100\"/>\n      <point x=\"696\" y=\"-152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"-209\"/>\n      <point x=\"662\" y=\"-242\"/>\n      <point x=\"600\" y=\"-242\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-462\" type=\"curve\"/>\n      <point x=\"600\" y=\"-242\" type=\"line\"/>\n      <point x=\"538\" y=\"-242\"/>\n      <point x=\"504\" y=\"-209\"/>\n      <point x=\"504\" y=\"-152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"504\" y=\"-100\"/>\n      <point x=\"537\" y=\"-47\"/>\n      <point x=\"644\" y=\"76\" type=\"curve\"/>\n      <point x=\"429\" y=\"111\" type=\"line\"/>\n      <point x=\"285\" y=\"-26\"/>\n      <point x=\"244\" y=\"-98\"/>\n      <point x=\"244\" y=\"-196\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"-366\"/>\n      <point x=\"375\" y=\"-462\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gamma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gamma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B3\"/>\n  <anchor x=\"590\" y=\"-280\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"354\" y=\"-20\" type=\"line\"/>\n      <point x=\"884\" y=\"-20\"/>\n      <point x=\"1147\" y=\"338\"/>\n      <point x=\"1147\" y=\"1060\" type=\"curve\"/>\n      <point x=\"876\" y=\"1060\" type=\"line\"/>\n      <point x=\"876\" y=\"509\"/>\n      <point x=\"704\" y=\"237\"/>\n      <point x=\"354\" y=\"237\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"259\" y=\"-460\" type=\"curve\"/>\n      <point x=\"530\" y=\"-460\" type=\"line\"/>\n      <point x=\"537\" y=\"-329\"/>\n      <point x=\"540\" y=\"-173\"/>\n      <point x=\"540\" y=\"10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"678\"/>\n      <point x=\"466\" y=\"896\"/>\n      <point x=\"173\" y=\"1100\" type=\"curve\"/>\n      <point x=\"9\" y=\"892\" type=\"line\"/>\n      <point x=\"217\" y=\"736\"/>\n      <point x=\"269\" y=\"558\"/>\n      <point x=\"269\" y=\"10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"269\" y=\"-173\"/>\n      <point x=\"266\" y=\"-329\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gbreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gbreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011F\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"brevecomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E7\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"caroncomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011D\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0123\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"commaturnedabovecomb\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0121\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"-42\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ge-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ge-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0433\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"690\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"259\" y=\"0\" type=\"line\"/>\n      <point x=\"530\" y=\"0\" type=\"line\"/>\n      <point x=\"530\" y=\"1060\" type=\"line\"/>\n      <point x=\"259\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"321\" y=\"808\" type=\"line\"/>\n      <point x=\"1047\" y=\"808\" type=\"line\"/>\n      <point x=\"1047\" y=\"1060\" type=\"line\"/>\n      <point x=\"321\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ge-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ge-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"652\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"-20\"/>\n      <point x=\"941\" y=\"-2\"/>\n      <point x=\"1061\" y=\"39\" type=\"curve\"/>\n      <point x=\"1037\" y=\"289\" type=\"line\"/>\n      <point x=\"884\" y=\"253\"/>\n      <point x=\"772\" y=\"237\"/>\n      <point x=\"655\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"237\"/>\n      <point x=\"416\" y=\"258\"/>\n      <point x=\"416\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"359\"/>\n      <point x=\"458\" y=\"384\"/>\n      <point x=\"572\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"462\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"502\"/>\n      <point x=\"1045\" y=\"585\"/>\n      <point x=\"1045\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1045\" y=\"984\"/>\n      <point x=\"872\" y=\"1080\"/>\n      <point x=\"472\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"1080\"/>\n      <point x=\"281\" y=\"1078\"/>\n      <point x=\"213\" y=\"1072\" type=\"curve\"/>\n      <point x=\"199\" y=\"817\" type=\"line\"/>\n      <point x=\"275\" y=\"822\"/>\n      <point x=\"358\" y=\"823\"/>\n      <point x=\"483\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"823\"/>\n      <point x=\"768\" y=\"800\"/>\n      <point x=\"768\" y=\"743\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"706\"/>\n      <point x=\"733\" y=\"689\"/>\n      <point x=\"644\" y=\"667\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"624\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"574\"/>\n      <point x=\"139\" y=\"492\"/>\n      <point x=\"139\" y=\"298\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"78\"/>\n      <point x=\"294\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/geresh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"geresh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05F3\"/>\n  <outline>\n    <contour>\n      <point x=\"365\" y=\"730\" type=\"line\"/>\n      <point x=\"567\" y=\"730\" type=\"line\"/>\n      <point x=\"919\" y=\"1420\" type=\"line\"/>\n      <point x=\"534\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/germandbls.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"germandbls\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DF\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"658\" y=\"1520\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"818\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1059\" y=\"-20\"/>\n      <point x=\"1181\" y=\"83\"/>\n      <point x=\"1181\" y=\"286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1181\" y=\"389\"/>\n      <point x=\"1114\" y=\"491\"/>\n      <point x=\"997\" y=\"599\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"658\"/>\n      <point x=\"906\" y=\"715\"/>\n      <point x=\"906\" y=\"780\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"856\"/>\n      <point x=\"918\" y=\"904\"/>\n      <point x=\"945\" y=\"946\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1007\" y=\"1041\"/>\n      <point x=\"1046\" y=\"1119\"/>\n      <point x=\"1046\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1046\" y=\"1405\"/>\n      <point x=\"898\" y=\"1520\"/>\n      <point x=\"641\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"1520\"/>\n      <point x=\"193\" y=\"1362\"/>\n      <point x=\"193\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"193\" y=\"0\" type=\"line\"/>\n      <point x=\"463\" y=\"0\" type=\"line\"/>\n      <point x=\"463\" y=\"1038\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"1182\"/>\n      <point x=\"526\" y=\"1263\"/>\n      <point x=\"635\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"1261\"/>\n      <point x=\"769\" y=\"1224\"/>\n      <point x=\"769\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"769\" y=\"1099\"/>\n      <point x=\"728\" y=\"1055\"/>\n      <point x=\"683\" y=\"983\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"915\"/>\n      <point x=\"629\" y=\"849\"/>\n      <point x=\"629\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"677\"/>\n      <point x=\"679\" y=\"577\"/>\n      <point x=\"771\" y=\"489\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"417\"/>\n      <point x=\"904\" y=\"372\"/>\n      <point x=\"904\" y=\"324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"266\"/>\n      <point x=\"875\" y=\"237\"/>\n      <point x=\"818\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"237\"/>\n      <point x=\"693\" y=\"248\"/>\n      <point x=\"590\" y=\"269\" type=\"curve\"/>\n      <point x=\"566\" y=\"10\" type=\"line\"/>\n      <point x=\"634\" y=\"-10\"/>\n      <point x=\"717\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"51\" y=\"607\" type=\"line\"/>\n      <point x=\"368\" y=\"607\" type=\"line\"/>\n      <point x=\"368\" y=\"857\" type=\"line\"/>\n      <point x=\"51\" y=\"857\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gershayim-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gershayim-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05F4\"/>\n  <outline>\n    <component base=\"geresh-hb\" xOffset=\"218\"/>\n    <component base=\"geresh-hb\" xOffset=\"-222\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghain-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"10\" yOffset=\"273\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghain-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063A\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-93\" yOffset=\"456\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghain-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"61\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghain-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"10\" yOffset=\"273\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ghainD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghainDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"10\" yOffset=\"273\"/>\n    <component base=\"dotcenter-ar\" xOffset=\"32\" yOffset=\"-469\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ghainD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghainDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FC\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-93\" yOffset=\"456\"/>\n    <component base=\"dotcenter-ar\" xOffset=\"62\" yOffset=\"-434\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ghainD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghainDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ghain-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"61\" yOffset=\"-14\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ghainD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghainDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ghain-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"9\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ghestroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghestroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0493\"/>\n  <outline>\n    <contour>\n      <point x=\"49\" y=\"336\" type=\"line\"/>\n      <point x=\"765\" y=\"336\" type=\"line\"/>\n      <point x=\"765\" y=\"585\" type=\"line\"/>\n      <point x=\"49\" y=\"585\" type=\"line\"/>\n    </contour>\n    <component base=\"ge-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>ge-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gheupturn-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gheupturn-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0491\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"259\" y=\"0\" type=\"line\"/>\n      <point x=\"530\" y=\"0\" type=\"line\"/>\n      <point x=\"530\" y=\"1060\" type=\"line\"/>\n      <point x=\"259\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"808\" type=\"line\"/>\n      <point x=\"1047\" y=\"808\" type=\"line\"/>\n      <point x=\"1047\" y=\"1060\" type=\"line\"/>\n      <point x=\"338\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"798\" y=\"808\" type=\"line\"/>\n      <point x=\"1067\" y=\"808\" type=\"line\"/>\n      <point x=\"1067\" y=\"1320\" type=\"line\"/>\n      <point x=\"798\" y=\"1320\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gimel-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gimel-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D2\"/>\n  <anchor x=\"392\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"319\" y=\"-18\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-18\"/>\n      <point x=\"871\" y=\"358\"/>\n      <point x=\"871\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"803\" type=\"line\"/>\n      <point x=\"617\" y=\"803\" type=\"line\"/>\n      <point x=\"617\" y=\"748\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"462\"/>\n      <point x=\"570\" y=\"250\"/>\n      <point x=\"344\" y=\"250\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"250\"/>\n      <point x=\"234\" y=\"261\"/>\n      <point x=\"197\" y=\"275\" type=\"curve\"/>\n      <point x=\"156\" y=\"12\" type=\"line\"/>\n      <point x=\"210\" y=\"-11\"/>\n      <point x=\"260\" y=\"-18\"/>\n    </contour>\n    <contour>\n      <point x=\"700\" y=\"0\" type=\"line\"/>\n      <point x=\"943\" y=\"0\" type=\"line\"/>\n      <point x=\"875\" y=\"483\" type=\"line\"/>\n      <point x=\"875\" y=\"1200\" type=\"line\"/>\n      <point x=\"617\" y=\"1200\" type=\"line\"/>\n      <point x=\"617\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"284\" y=\"930\" type=\"line\"/>\n      <point x=\"834\" y=\"930\" type=\"line\"/>\n      <point x=\"834\" y=\"1200\" type=\"line\"/>\n      <point x=\"284\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gimeldagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gimeldagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB32\"/>\n  <outline>\n    <component base=\"gimel-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-208\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0453\"/>\n  <outline>\n    <component base=\"ge-cy\"/>\n    <component base=\"acutecomb\" xOffset=\"151\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/glottalstop.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstop\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0294\"/>\n  <anchor x=\"586\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"436\" y=\"0\" type=\"line\"/>\n      <point x=\"700\" y=\"0\" type=\"line\"/>\n      <point x=\"700\" y=\"341\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"460\"/>\n      <point x=\"730\" y=\"564\"/>\n      <point x=\"814\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"824\"/>\n      <point x=\"1033\" y=\"937\"/>\n      <point x=\"1033\" y=\"1122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"1374\"/>\n      <point x=\"866\" y=\"1520\"/>\n      <point x=\"576\" y=\"1520\" type=\"curve\"/>\n      <point x=\"567\" y=\"1263\" type=\"line\"/>\n      <point x=\"693\" y=\"1263\"/>\n      <point x=\"756\" y=\"1211\"/>\n      <point x=\"756\" y=\"1107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"1008\"/>\n      <point x=\"709\" y=\"938\"/>\n      <point x=\"644\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"711\"/>\n      <point x=\"436\" y=\"577\"/>\n      <point x=\"436\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"247\" y=\"1096\" type=\"line\"/>\n      <point x=\"328\" y=\"1197\"/>\n      <point x=\"449\" y=\"1263\"/>\n      <point x=\"567\" y=\"1263\" type=\"curve\"/>\n      <point x=\"576\" y=\"1520\" type=\"line\"/>\n      <point x=\"377\" y=\"1520\"/>\n      <point x=\"193\" y=\"1426\"/>\n      <point x=\"101\" y=\"1284\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/glottalstopmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstopmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C0\"/>\n  <outline>\n    <contour>\n      <point x=\"424\" y=\"790\" type=\"line\"/>\n      <point x=\"694\" y=\"790\" type=\"line\"/>\n      <point x=\"694\" y=\"859\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"896\"/>\n      <point x=\"699\" y=\"925\"/>\n      <point x=\"739\" y=\"955\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"1065\"/>\n      <point x=\"943\" y=\"1147\"/>\n      <point x=\"943\" y=\"1284\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"943\" y=\"1462\"/>\n      <point x=\"804\" y=\"1568\"/>\n      <point x=\"562\" y=\"1568\" type=\"curve\"/>\n      <point x=\"540\" y=\"1324\" type=\"line\"/>\n      <point x=\"624\" y=\"1324\"/>\n      <point x=\"666\" y=\"1294\"/>\n      <point x=\"666\" y=\"1234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"1174\"/>\n      <point x=\"625\" y=\"1146\"/>\n      <point x=\"542\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"1053\"/>\n      <point x=\"424\" y=\"1012\"/>\n      <point x=\"424\" y=\"927\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"330\" y=\"1261\" type=\"line\"/>\n      <point x=\"379\" y=\"1290\"/>\n      <point x=\"451\" y=\"1324\"/>\n      <point x=\"540\" y=\"1324\" type=\"curve\"/>\n      <point x=\"562\" y=\"1568\" type=\"line\"/>\n      <point x=\"354\" y=\"1568\"/>\n      <point x=\"248\" y=\"1512\"/>\n      <point x=\"188\" y=\"1457\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/glottalstopreversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstopreversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0295\"/>\n  <anchor x=\"614\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"500\" y=\"0\" type=\"line\"/>\n      <point x=\"764\" y=\"0\" type=\"line\"/>\n      <point x=\"764\" y=\"373\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"602\"/>\n      <point x=\"698\" y=\"732\"/>\n      <point x=\"556\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"932\"/>\n      <point x=\"444\" y=\"1002\"/>\n      <point x=\"444\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"1208\"/>\n      <point x=\"507\" y=\"1263\"/>\n      <point x=\"633\" y=\"1263\" type=\"curve\"/>\n      <point x=\"624\" y=\"1520\" type=\"line\"/>\n      <point x=\"334\" y=\"1520\"/>\n      <point x=\"167\" y=\"1374\"/>\n      <point x=\"167\" y=\"1122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"937\"/>\n      <point x=\"248\" y=\"814\"/>\n      <point x=\"386\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"571\"/>\n      <point x=\"500\" y=\"465\"/>\n      <point x=\"500\" y=\"341\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"953\" y=\"1096\" type=\"curve\"/>\n      <point x=\"1099\" y=\"1284\" type=\"line\"/>\n      <point x=\"1007\" y=\"1426\"/>\n      <point x=\"823\" y=\"1520\"/>\n      <point x=\"624\" y=\"1520\" type=\"curve\"/>\n      <point x=\"633\" y=\"1263\" type=\"line\"/>\n      <point x=\"751\" y=\"1263\"/>\n      <point x=\"872\" y=\"1197\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"grave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0060\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1068\" type=\"line\"/>\n      <point x=\"846\" y=\"1068\" type=\"line\"/>\n      <point x=\"609\" y=\"1628\" type=\"line\"/>\n      <point x=\"275\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gravecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravecomb.case\" format=\"2\">\n  <anchor x=\"680\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"680\" y=\"1420\" name=\"_top_viet\"/>\n  <anchor x=\"680\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"544\" y=\"1580\" type=\"line\"/>\n      <point x=\"826\" y=\"1580\" type=\"line\"/>\n      <point x=\"604\" y=\"1855\" type=\"line\"/>\n      <point x=\"241\" y=\"1855\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gravecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravecomb\" format=\"2\">\n  <unicode hex=\"0300\"/>\n  <anchor x=\"645\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"646\" y=\"1060\" name=\"_top_viet\"/>\n  <anchor x=\"645\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"532\" y=\"1248\" type=\"line\"/>\n      <point x=\"799\" y=\"1248\" type=\"line\"/>\n      <point x=\"612\" y=\"1628\" type=\"line\"/>\n      <point x=\"325\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gravetonecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravetonecomb\" format=\"2\">\n  <unicode hex=\"0340\"/>\n  <outline>\n    <component base=\"gravecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>gravecomb</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"383\" y=\"2\" type=\"line\"/>\n      <point x=\"997\" y=\"648\" type=\"line\"/>\n      <point x=\"997\" y=\"770\" type=\"line\"/>\n      <point x=\"383\" y=\"1416\" type=\"line\"/>\n      <point x=\"208\" y=\"1251\" type=\"line\"/>\n      <point x=\"723\" y=\"718\" type=\"line\"/>\n      <point x=\"723\" y=\"700\" type=\"line\"/>\n      <point x=\"208\" y=\"167\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"40\" y=\"197\" type=\"line\"/>\n      <point x=\"1185\" y=\"575\" type=\"line\"/>\n      <point x=\"1185\" y=\"843\" type=\"line\"/>\n      <point x=\"40\" y=\"1221\" type=\"line\"/>\n      <point x=\"40\" y=\"951\" type=\"line\"/>\n      <point x=\"862\" y=\"726\" type=\"line\"/>\n      <point x=\"862\" y=\"692\" type=\"line\"/>\n      <point x=\"40\" y=\"467\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003E\"/>\n  <outline>\n    <contour>\n      <point x=\"113\" y=\"197\" type=\"line\"/>\n      <point x=\"1137\" y=\"575\" type=\"line\"/>\n      <point x=\"1137\" y=\"843\" type=\"line\"/>\n      <point x=\"113\" y=\"1221\" type=\"line\"/>\n      <point x=\"113\" y=\"951\" type=\"line\"/>\n      <point x=\"863\" y=\"718\" type=\"line\"/>\n      <point x=\"863\" y=\"700\" type=\"line\"/>\n      <point x=\"113\" y=\"467\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"484\" type=\"line\"/>\n      <point x=\"1950\" y=\"823\" type=\"line\"/>\n      <point x=\"1950\" y=\"1095\" type=\"line\"/>\n      <point x=\"506\" y=\"1434\" type=\"line\"/>\n      <point x=\"506\" y=\"1164\" type=\"line\"/>\n      <point x=\"1600\" y=\"968\" type=\"line\"/>\n      <point x=\"1600\" y=\"950\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"117\" type=\"line\"/>\n      <point x=\"1950\" y=\"117\" type=\"line\"/>\n      <point x=\"1950\" y=\"367\" type=\"line\"/>\n      <point x=\"506\" y=\"367\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"333\" type=\"line\"/>\n      <point x=\"596\" y=\"333\" type=\"line\"/>\n      <point x=\"856\" y=\"583\" type=\"line\"/>\n      <point x=\"-20\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"835\" type=\"line\"/>\n      <point x=\"833\" y=\"835\" type=\"line\"/>\n      <point x=\"616\" y=\"1085\" type=\"line\"/>\n      <point x=\"-20\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"139\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater.alt\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"312\" y=\"2\" type=\"line\"/>\n      <point x=\"864\" y=\"577\" type=\"line\"/>\n      <point x=\"538\" y=\"583\" type=\"line\"/>\n      <point x=\"142\" y=\"157\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"538\" y=\"333\" type=\"line\"/>\n      <point x=\"1220\" y=\"333\" type=\"line\"/>\n      <point x=\"1220\" y=\"583\" type=\"line\"/>\n      <point x=\"538\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"538\" y=\"835\" type=\"line\"/>\n      <point x=\"829\" y=\"879\" type=\"line\"/>\n      <point x=\"312\" y=\"1412\" type=\"line\"/>\n      <point x=\"142\" y=\"1257\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"538\" y=\"835\" type=\"line\"/>\n      <point x=\"1220\" y=\"835\" type=\"line\"/>\n      <point x=\"1220\" y=\"1085\" type=\"line\"/>\n      <point x=\"538\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1185\" y=\"166\" type=\"line\"/>\n      <point x=\"2160\" y=\"575\" type=\"line\"/>\n      <point x=\"2160\" y=\"843\" type=\"line\"/>\n      <point x=\"1185\" y=\"1252\" type=\"line\"/>\n      <point x=\"1185\" y=\"982\" type=\"line\"/>\n      <point x=\"1885\" y=\"718\" type=\"line\"/>\n      <point x=\"1885\" y=\"700\" type=\"line\"/>\n      <point x=\"1185\" y=\"436\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"166\" type=\"line\"/>\n      <point x=\"1238\" y=\"575\" type=\"line\"/>\n      <point x=\"1238\" y=\"843\" type=\"line\"/>\n      <point x=\"280\" y=\"1252\" type=\"line\"/>\n      <point x=\"280\" y=\"982\" type=\"line\"/>\n      <point x=\"963\" y=\"718\" type=\"line\"/>\n      <point x=\"963\" y=\"700\" type=\"line\"/>\n      <point x=\"280\" y=\"436\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"1140\" yOffset=\"-3\"/>\n    <component base=\"greater\" xOffset=\"26\"/>\n    <component base=\"equal\" xOffset=\"2344\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"333\" type=\"line\"/>\n      <point x=\"996\" y=\"333\" type=\"line\"/>\n      <point x=\"1256\" y=\"583\" type=\"line\"/>\n      <point x=\"-20\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"835\" type=\"line\"/>\n      <point x=\"1233\" y=\"835\" type=\"line\"/>\n      <point x=\"1016\" y=\"1085\" type=\"line\"/>\n      <point x=\"-20\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"539\"/>\n    <component base=\"greater.alt\" xOffset=\"1179\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1352\" y=\"2\" type=\"line\"/>\n      <point x=\"1904\" y=\"577\" type=\"line\"/>\n      <point x=\"1578\" y=\"583\" type=\"line\"/>\n      <point x=\"1182\" y=\"157\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"333\" type=\"line\"/>\n      <point x=\"796\" y=\"333\" type=\"line\"/>\n      <point x=\"1056\" y=\"583\" type=\"line\"/>\n      <point x=\"-50\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"835\" type=\"line\"/>\n      <point x=\"1033\" y=\"835\" type=\"line\"/>\n      <point x=\"816\" y=\"1085\" type=\"line\"/>\n      <point x=\"-50\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1578\" y=\"333\" type=\"line\"/>\n      <point x=\"2449\" y=\"333\" type=\"line\"/>\n      <point x=\"2449\" y=\"583\" type=\"line\"/>\n      <point x=\"1578\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1578\" y=\"835\" type=\"line\"/>\n      <point x=\"1869\" y=\"879\" type=\"line\"/>\n      <point x=\"1352\" y=\"1412\" type=\"line\"/>\n      <point x=\"1182\" y=\"1257\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1578\" y=\"835\" type=\"line\"/>\n      <point x=\"2449\" y=\"835\" type=\"line\"/>\n      <point x=\"2450\" y=\"1085\" type=\"line\"/>\n      <point x=\"1578\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"339\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1378\" y=\"333\" type=\"line\"/>\n      <point x=\"2420\" y=\"333\" type=\"line\"/>\n      <point x=\"2420\" y=\"583\" type=\"line\"/>\n      <point x=\"1378\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1152\" y=\"2\" type=\"line\"/>\n      <point x=\"1704\" y=\"577\" type=\"line\"/>\n      <point x=\"1378\" y=\"583\" type=\"line\"/>\n      <point x=\"982\" y=\"157\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1378\" y=\"835\" type=\"line\"/>\n      <point x=\"1669\" y=\"879\" type=\"line\"/>\n      <point x=\"1152\" y=\"1412\" type=\"line\"/>\n      <point x=\"982\" y=\"1257\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1378\" y=\"835\" type=\"line\"/>\n      <point x=\"2420\" y=\"835\" type=\"line\"/>\n      <point x=\"2420\" y=\"1085\" type=\"line\"/>\n      <point x=\"1378\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"139\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"greater\" xOffset=\"134\"/>\n    <component base=\"greater\" xOffset=\"1200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>greater</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>greater</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>greater</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"584\" type=\"line\"/>\n      <point x=\"1320\" y=\"584\" type=\"line\"/>\n      <point x=\"1320\" y=\"834\" type=\"line\"/>\n      <point x=\"-20\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"543\"/>\n    <component base=\"greater.alt\" xOffset=\"1179\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"584\" type=\"line\"/>\n      <point x=\"1036\" y=\"584\" type=\"line\"/>\n      <point x=\"1036\" y=\"834\" type=\"line\"/>\n      <point x=\"-50\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1661\" y=\"584\" type=\"line\"/>\n      <point x=\"2450\" y=\"584\" type=\"line\"/>\n      <point x=\"2450\" y=\"834\" type=\"line\"/>\n      <point x=\"1661\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"240\"/>\n    <component base=\"greater.alt\" xOffset=\"879\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1583\" y=\"584\" type=\"line\"/>\n      <point x=\"2420\" y=\"584\" type=\"line\"/>\n      <point x=\"2420\" y=\"834\" type=\"line\"/>\n      <point x=\"1583\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"139\"/>\n    <component base=\"greater.alt\" xOffset=\"778\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"584\" type=\"line\"/>\n      <point x=\"947\" y=\"584\" type=\"line\"/>\n      <point x=\"947\" y=\"834\" type=\"line\"/>\n      <point x=\"-20\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"139\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hyphen_middle.seq\"/>\n    <component base=\"greater.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greater_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"680\" y=\"584\" type=\"line\"/>\n      <point x=\"1220\" y=\"584\" type=\"line\"/>\n      <point x=\"1220\" y=\"834\" type=\"line\"/>\n      <point x=\"680\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"-61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/greaterequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greaterequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2265\"/>\n  <outline>\n    <contour>\n      <point x=\"110\" y=\"297\" type=\"line\"/>\n      <point x=\"1101\" y=\"625\" type=\"line\"/>\n      <point x=\"1101\" y=\"893\" type=\"line\"/>\n      <point x=\"110\" y=\"1221\" type=\"line\"/>\n      <point x=\"110\" y=\"951\" type=\"line\"/>\n      <point x=\"783\" y=\"768\" type=\"line\"/>\n      <point x=\"783\" y=\"750\" type=\"line\"/>\n      <point x=\"110\" y=\"567\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"110\" y=\"70\" type=\"line\"/>\n      <point x=\"1100\" y=\"70\" type=\"line\"/>\n      <point x=\"1100\" y=\"315\" type=\"line\"/>\n      <point x=\"110\" y=\"315\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/groupS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"groupSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241D\"/>\n  <outline>\n    <component base=\"G.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>G.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E5\"/>\n  <outline>\n    <contour>\n      <point x=\"44\" y=\"-173\" type=\"line\"/>\n      <point x=\"1156\" y=\"-173\" type=\"line\"/>\n      <point x=\"1156\" y=\"-65\" type=\"line\"/>\n      <point x=\"44\" y=\"-65\" type=\"line\"/>\n    </contour>\n    <component base=\"g\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/guarani.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guarani\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B2\"/>\n  <outline>\n    <contour>\n      <point x=\"518\" y=\"-320\" type=\"line\"/>\n      <point x=\"771\" y=\"-320\" type=\"line\"/>\n      <point x=\"771\" y=\"54\" type=\"line\"/>\n      <point x=\"721\" y=\"121\" type=\"line\"/>\n      <point x=\"721\" y=\"578\" type=\"line\"/>\n      <point x=\"771\" y=\"648\" type=\"line\"/>\n      <point x=\"771\" y=\"1740\" type=\"line\"/>\n      <point x=\"518\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"G\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>G</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gueh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gueh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gueh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gueh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B3\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gueh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gueh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-33\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/gueh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gueh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/guillemetleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guillemetleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AB\"/>\n  <outline>\n    <component base=\"guilsinglleft\" xOffset=\"-230\"/>\n    <component base=\"guilsinglleft\" xOffset=\"265\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/guillemetright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guillemetright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BB\"/>\n  <outline>\n    <component base=\"guilsinglright\" xOffset=\"-265\"/>\n    <component base=\"guilsinglright\" xOffset=\"230\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/guilsinglleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guilsinglleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2039\"/>\n  <outline>\n    <contour>\n      <point x=\"686\" y=\"25\" type=\"line\"/>\n      <point x=\"866\" y=\"180\" type=\"line\"/>\n      <point x=\"544\" y=\"520\" type=\"line\"/>\n      <point x=\"544\" y=\"538\" type=\"line\"/>\n      <point x=\"866\" y=\"874\" type=\"line\"/>\n      <point x=\"686\" y=\"1029\" type=\"line\"/>\n      <point x=\"260\" y=\"590\" type=\"line\"/>\n      <point x=\"260\" y=\"468\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/guilsinglright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guilsinglright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203A\"/>\n  <outline>\n    <contour>\n      <point x=\"514\" y=\"25\" type=\"line\"/>\n      <point x=\"940\" y=\"468\" type=\"line\"/>\n      <point x=\"940\" y=\"590\" type=\"line\"/>\n      <point x=\"514\" y=\"1029\" type=\"line\"/>\n      <point x=\"334\" y=\"874\" type=\"line\"/>\n      <point x=\"656\" y=\"538\" type=\"line\"/>\n      <point x=\"656\" y=\"520\" type=\"line\"/>\n      <point x=\"334\" y=\"180\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/h.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"h\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0068\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"784\" name=\"center\"/>\n  <anchor x=\"288\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"938\"/>\n      <point x=\"921\" y=\"1080\"/>\n      <point x=\"697\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"1080\"/>\n      <point x=\"468\" y=\"1010\"/>\n      <point x=\"448\" y=\"868\" type=\"curve\"/>\n      <point x=\"360\" y=\"868\" type=\"line\"/>\n      <point x=\"422\" y=\"546\" type=\"line\"/>\n      <point x=\"422\" y=\"733\"/>\n      <point x=\"491\" y=\"825\"/>\n      <point x=\"626\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"825\"/>\n      <point x=\"778\" y=\"758\"/>\n      <point x=\"778\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"1500\" type=\"line\"/>\n      <point x=\"151\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0445\"/>\n  <outline>\n    <component base=\"x\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hadescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B3\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"904\" y=\"-270\" type=\"line\"/>\n      <point x=\"1173\" y=\"-270\" type=\"line\"/>\n      <point x=\"1173\" y=\"252\" type=\"line\"/>\n      <point x=\"904\" y=\"252\" type=\"line\"/>\n    </contour>\n    <component base=\"ha-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>ha-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"612\" y=\"-42\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1266\" y=\"-10\"/>\n      <point x=\"1295\" y=\"21\"/>\n      <point x=\"1295\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1295\" y=\"236\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1024\" y=\"285\"/>\n      <point x=\"1016\" y=\"306\"/>\n      <point x=\"1011\" y=\"489\" type=\"curve\"/>\n      <point x=\"813\" y=\"424\" type=\"line\"/>\n      <point x=\"823\" y=\"114\"/>\n      <point x=\"912\" y=\"-10\"/>\n    </contour>\n    <component base=\"hah-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062D\"/>\n  <anchor x=\"523\" y=\"-645\" name=\"bottom\"/>\n  <anchor x=\"688\" y=\"-36\" name=\"center\"/>\n  <anchor x=\"569\" y=\"1184\" name=\"top\"/>\n  <anchor x=\"566\" y=\"924\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"698\" y=\"-659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"-659\"/>\n      <point x=\"1044\" y=\"-620\"/>\n      <point x=\"1154\" y=\"-572\" type=\"curve\"/>\n      <point x=\"1156\" y=\"-318\" type=\"line\"/>\n      <point x=\"1024\" y=\"-342\"/>\n      <point x=\"901\" y=\"-364\"/>\n      <point x=\"758\" y=\"-364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"-364\"/>\n      <point x=\"268\" y=\"-310\"/>\n      <point x=\"268\" y=\"-99\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"191\"/>\n      <point x=\"520\" y=\"320\"/>\n      <point x=\"1153\" y=\"420\" type=\"curve\"/>\n      <point x=\"1156\" y=\"711\" type=\"line\"/>\n      <point x=\"1012\" y=\"708\"/>\n      <point x=\"918\" y=\"713\"/>\n      <point x=\"793\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"806\"/>\n      <point x=\"512\" y=\"886\"/>\n      <point x=\"344\" y=\"886\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"886\"/>\n      <point x=\"141\" y=\"849\"/>\n      <point x=\"62\" y=\"746\" type=\"curve\"/>\n      <point x=\"80\" y=\"513\" type=\"line\"/>\n      <point x=\"150\" y=\"563\"/>\n      <point x=\"252\" y=\"591\"/>\n      <point x=\"346\" y=\"591\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"591\"/>\n      <point x=\"462\" y=\"580\"/>\n      <point x=\"549\" y=\"564\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"543\"/>\n      <point x=\"735\" y=\"543\"/>\n      <point x=\"804\" y=\"542\" type=\"curve\"/>\n      <point x=\"804\" y=\"498\" type=\"line\"/>\n      <point x=\"939\" y=\"490\" type=\"line\"/>\n      <point x=\"936\" y=\"536\" type=\"line\"/>\n      <point x=\"385\" y=\"469\"/>\n      <point x=\"24\" y=\"294\"/>\n      <point x=\"24\" y=\"-149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"24\" y=\"-519\"/>\n      <point x=\"248\" y=\"-659\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hah-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hah-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"682\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"682\" y=\"74\" name=\"bottom.dot\"/>\n  <anchor x=\"569\" y=\"1164\" name=\"top\"/>\n  <anchor x=\"566\" y=\"914\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"253\" y=\"-10\"/>\n      <point x=\"419\" y=\"84\"/>\n      <point x=\"731\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"315\"/>\n      <point x=\"984\" y=\"365\"/>\n      <point x=\"1153\" y=\"390\" type=\"curve\"/>\n      <point x=\"1156\" y=\"681\" type=\"line\"/>\n      <point x=\"1012\" y=\"678\"/>\n      <point x=\"925\" y=\"682\"/>\n      <point x=\"803\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"649\" y=\"781\"/>\n      <point x=\"529\" y=\"886\"/>\n      <point x=\"361\" y=\"886\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"886\"/>\n      <point x=\"181\" y=\"849\"/>\n      <point x=\"102\" y=\"766\" type=\"curve\"/>\n      <point x=\"120\" y=\"533\" type=\"line\"/>\n      <point x=\"190\" y=\"573\"/>\n      <point x=\"262\" y=\"591\"/>\n      <point x=\"336\" y=\"591\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"591\"/>\n      <point x=\"442\" y=\"578\"/>\n      <point x=\"536\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"529\"/>\n      <point x=\"725\" y=\"508\"/>\n      <point x=\"804\" y=\"502\" type=\"curve\"/>\n      <point x=\"804\" y=\"448\" type=\"line\"/>\n      <point x=\"939\" y=\"460\" type=\"line\"/>\n      <point x=\"936\" y=\"523\" type=\"line\"/>\n      <point x=\"823\" y=\"493\"/>\n      <point x=\"729\" y=\"448\"/>\n      <point x=\"592\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"317\"/>\n      <point x=\"189\" y=\"285\"/>\n      <point x=\"3\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-41\" y=\"285\"/>\n      <point x=\"-70\" y=\"255\"/>\n      <point x=\"-70\" y=\"148\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"35\"/>\n      <point x=\"-47\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hah-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hah-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"21\"/>\n      <point x=\"1275\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"196\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1054\" y=\"285\"/>\n      <point x=\"1039\" y=\"296\"/>\n      <point x=\"1031\" y=\"429\" type=\"curve\"/>\n      <point x=\"824\" y=\"364\" type=\"line\"/>\n      <point x=\"844\" y=\"124\"/>\n      <point x=\"882\" y=\"-10\"/>\n    </contour>\n    <component base=\"hah-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahFourbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"four-persiancenter-ar\" xOffset=\"-4\" yOffset=\"-340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahFourbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077C\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"four-persiancenter-ar\" xOffset=\"72\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahFourbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahFourbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-54\" yOffset=\"-180\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0681\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-54\" yOffset=\"-180\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahHamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-54\" yOffset=\"-190\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahHamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-54\" yOffset=\"-190\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotstahcenter-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"73\" yOffset=\"-330\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076F\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotstahcenter-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"125\" yOffset=\"-337\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotstahbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotstahbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotstahbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotstahbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"1\" yOffset=\"523\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0772\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"1\" yOffset=\"523\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"_tahabove\" xOffset=\"1\" yOffset=\"503\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"_tahabove\" xOffset=\"1\" yOffset=\"503\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"tahcenter-ar\" xOffset=\"23\" yOffset=\"-382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076E\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"tahcenter-ar\" xOffset=\"99\" yOffset=\"-376\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"tahbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>hah-ar.init</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tahbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"tahbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tahbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0685\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"threedotsupcenter-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"49\" yOffset=\"-343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0758\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"threedotsupcenter-ar\" xOffset=\"89\" yOffset=\"-356\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"82\" yOffset=\"82\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"82\" yOffset=\"82\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"392\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0757\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"392\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotsverticalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-34\" yOffset=\"362\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0682\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-34\" yOffset=\"362\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotsverticalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-34\" yOffset=\"352\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotsverticalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-34\" yOffset=\"352\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hamza-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hamza-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0621\"/>\n  <anchor x=\"637\" y=\"-71\" name=\"bottom\"/>\n  <anchor x=\"630\" y=\"798\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-41\" type=\"line\"/>\n      <point x=\"973\" y=\"70\" type=\"line\"/>\n      <point x=\"961\" y=\"312\" type=\"line\"/>\n      <point x=\"876\" y=\"302\"/>\n      <point x=\"769\" y=\"288\"/>\n      <point x=\"697\" y=\"288\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"288\"/>\n      <point x=\"540\" y=\"305\"/>\n      <point x=\"540\" y=\"377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"437\"/>\n      <point x=\"591\" y=\"459\"/>\n      <point x=\"710\" y=\"459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"459\"/>\n      <point x=\"826\" y=\"452\"/>\n      <point x=\"881\" y=\"446\" type=\"curve\"/>\n      <point x=\"894\" y=\"676\" type=\"line\"/>\n      <point x=\"835\" y=\"699\"/>\n      <point x=\"769\" y=\"711\"/>\n      <point x=\"690\" y=\"711\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"711\"/>\n      <point x=\"343\" y=\"607\"/>\n      <point x=\"343\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"343\" y=\"322\"/>\n      <point x=\"379\" y=\"258\"/>\n      <point x=\"465\" y=\"228\" type=\"curve\"/>\n      <point x=\"465\" y=\"167\" type=\"line\"/>\n      <point x=\"560\" y=\"148\" type=\"line\"/>\n      <point x=\"566\" y=\"228\" type=\"line\"/>\n      <point x=\"312\" y=\"173\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hamzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hamzaabove-ar\" format=\"2\">\n  <unicode hex=\"0654\"/>\n  <anchor x=\"620\" y=\"1189\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1621\" name=\"top\"/>\n  <outline>\n    <component base=\"_hamzasmall-ar\" xOffset=\"34\" yOffset=\"631\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzasmall-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hamzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hamzabelow-ar\" format=\"2\">\n  <unicode hex=\"0655\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"605\" y=\"0\" name=\"_bottom.dot\"/>\n  <anchor x=\"619\" y=\"-467\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_hamzasmall-ar\" xOffset=\"20\" yOffset=\"-1049\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzasmall-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hardsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hardsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"438\" y=\"0\" type=\"line\"/>\n      <point x=\"741\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"0\"/>\n      <point x=\"1121\" y=\"136\"/>\n      <point x=\"1121\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"611\"/>\n      <point x=\"983\" y=\"747\"/>\n      <point x=\"741\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"747\" type=\"line\"/>\n      <point x=\"418\" y=\"495\" type=\"line\"/>\n      <point x=\"698\" y=\"495\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"495\"/>\n      <point x=\"844\" y=\"454\"/>\n      <point x=\"844\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"293\"/>\n      <point x=\"794\" y=\"252\"/>\n      <point x=\"698\" y=\"252\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"223\" y=\"0\" type=\"line\"/>\n      <point x=\"493\" y=\"0\" type=\"line\"/>\n      <point x=\"493\" y=\"1060\" type=\"line\"/>\n      <point x=\"223\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"808\" type=\"line\"/>\n      <point x=\"353\" y=\"808\" type=\"line\"/>\n      <point x=\"353\" y=\"1060\" type=\"line\"/>\n      <point x=\"0\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hardsign-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hardsign-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"325\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"669\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"-20\"/>\n      <point x=\"1141\" y=\"135\"/>\n      <point x=\"1141\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"668\"/>\n      <point x=\"1014\" y=\"818\"/>\n      <point x=\"792\" y=\"818\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"818\"/>\n      <point x=\"548\" y=\"739\"/>\n      <point x=\"516\" y=\"601\" type=\"curve\"/>\n      <point x=\"485\" y=\"601\" type=\"line\"/>\n      <point x=\"485\" y=\"1060\" type=\"line\"/>\n      <point x=\"0\" y=\"1060\" type=\"line\"/>\n      <point x=\"0\" y=\"808\" type=\"line\"/>\n      <point x=\"215\" y=\"808\" type=\"line\"/>\n      <point x=\"215\" y=\"397\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"215\" y=\"130\"/>\n      <point x=\"379\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"671\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"236\"/>\n      <point x=\"485\" y=\"289\"/>\n      <point x=\"485\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"502\"/>\n      <point x=\"554\" y=\"563\"/>\n      <point x=\"677\" y=\"563\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"563\"/>\n      <point x=\"864\" y=\"505\"/>\n      <point x=\"864\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"297\"/>\n      <point x=\"794\" y=\"236\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0127\"/>\n  <outline>\n    <contour>\n      <point x=\"5\" y=\"1185\" type=\"line\"/>\n      <point x=\"738\" y=\"1185\" type=\"line\"/>\n      <point x=\"738\" y=\"1409\" type=\"line\"/>\n      <point x=\"5\" y=\"1409\" type=\"line\"/>\n    </contour>\n    <component base=\"h\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>h</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021F\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-312\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0125\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-312\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E25\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/he-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"he-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D4\"/>\n  <anchor x=\"598\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"791\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"877\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"1080\"/>\n      <point x=\"936\" y=\"1200\"/>\n      <point x=\"754\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"1200\"/>\n      <point x=\"248\" y=\"1234\"/>\n      <point x=\"218\" y=\"1253\" type=\"curve\"/>\n      <point x=\"128\" y=\"1018\" type=\"line\"/>\n      <point x=\"194\" y=\"970\"/>\n      <point x=\"291\" y=\"930\"/>\n      <point x=\"404\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"742\" y=\"930\"/>\n      <point x=\"791\" y=\"874\"/>\n      <point x=\"791\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"146\" y=\"0\" type=\"line\"/>\n      <point x=\"404\" y=\"0\" type=\"line\"/>\n      <point x=\"404\" y=\"683\" type=\"line\"/>\n      <point x=\"146\" y=\"683\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heartB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heartBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2665\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"60\" type=\"curve\"/>\n      <point x=\"940\" y=\"238\"/>\n      <point x=\"1164\" y=\"567\"/>\n      <point x=\"1164\" y=\"888\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1164\" y=\"1112\"/>\n      <point x=\"1052\" y=\"1260\"/>\n      <point x=\"882\" y=\"1260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"1260\"/>\n      <point x=\"636\" y=\"1144\"/>\n      <point x=\"614\" y=\"969\" type=\"curve\"/>\n      <point x=\"586\" y=\"969\" type=\"line\"/>\n      <point x=\"564\" y=\"1144\"/>\n      <point x=\"458\" y=\"1260\"/>\n      <point x=\"318\" y=\"1260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"1260\"/>\n      <point x=\"36\" y=\"1112\"/>\n      <point x=\"36\" y=\"888\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"36\" y=\"568\"/>\n      <point x=\"260\" y=\"239\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heavyH_orizontalF_ill.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"heavyHorizontalFill\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"heavyHorizontalFill.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heavyleftpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyleftpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2770\"/>\n  <outline>\n    <contour>\n      <point x=\"485\" y=\"0\" type=\"line\"/>\n      <point x=\"953\" y=\"0\" type=\"line\"/>\n      <point x=\"687\" y=\"701\" type=\"line\"/>\n      <point x=\"687\" y=\"719\" type=\"line\"/>\n      <point x=\"953\" y=\"1420\" type=\"line\"/>\n      <point x=\"485\" y=\"1420\" type=\"line\"/>\n      <point x=\"235\" y=\"719\" type=\"line\"/>\n      <point x=\"235\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyleftpointinganglequotationmarkornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276E\"/>\n  <outline>\n    <contour>\n      <point x=\"580\" y=\"0\" type=\"line\"/>\n      <point x=\"1078\" y=\"0\" type=\"line\"/>\n      <point x=\"622\" y=\"701\" type=\"line\"/>\n      <point x=\"622\" y=\"719\" type=\"line\"/>\n      <point x=\"1078\" y=\"1420\" type=\"line\"/>\n      <point x=\"580\" y=\"1420\" type=\"line\"/>\n      <point x=\"140\" y=\"719\" type=\"line\"/>\n      <point x=\"140\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heavyrightpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyrightpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2771\"/>\n  <outline>\n    <contour>\n      <point x=\"220\" y=\"0\" type=\"line\"/>\n      <point x=\"688\" y=\"0\" type=\"line\"/>\n      <point x=\"938\" y=\"701\" type=\"line\"/>\n      <point x=\"938\" y=\"719\" type=\"line\"/>\n      <point x=\"688\" y=\"1420\" type=\"line\"/>\n      <point x=\"220\" y=\"1420\" type=\"line\"/>\n      <point x=\"486\" y=\"719\" type=\"line\"/>\n      <point x=\"486\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyrightpointinganglequotationmarkornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276F\"/>\n  <outline>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"620\" y=\"0\" type=\"line\"/>\n      <point x=\"1060\" y=\"701\" type=\"line\"/>\n      <point x=\"1060\" y=\"719\" type=\"line\"/>\n      <point x=\"620\" y=\"1420\" type=\"line\"/>\n      <point x=\"122\" y=\"1420\" type=\"line\"/>\n      <point x=\"578\" y=\"719\" type=\"line\"/>\n      <point x=\"578\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hedagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hedagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB34\"/>\n  <outline>\n    <component base=\"he-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-2\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"675\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"732\" y=\"1270\" name=\"top\"/>\n  <anchor x=\"729\" y=\"1020\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"574\" y=\"137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"137\"/>\n      <point x=\"742\" y=\"157\"/>\n      <point x=\"772\" y=\"222\" type=\"curve\"/>\n      <point x=\"844\" y=\"222\" type=\"line\"/>\n      <point x=\"834\" y=\"435\" type=\"line\"/>\n      <point x=\"765\" y=\"427\"/>\n      <point x=\"641\" y=\"419\"/>\n      <point x=\"573\" y=\"419\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"419\"/>\n      <point x=\"404\" y=\"431\"/>\n      <point x=\"404\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"550\"/>\n      <point x=\"476\" y=\"583\"/>\n      <point x=\"860\" y=\"644\" type=\"curve\"/>\n      <point x=\"843\" y=\"901\" type=\"line\"/>\n      <point x=\"387\" y=\"803\"/>\n      <point x=\"175\" y=\"695\"/>\n      <point x=\"175\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"232\"/>\n      <point x=\"296\" y=\"137\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1256\" y=\"-10\"/>\n      <point x=\"1275\" y=\"45\"/>\n      <point x=\"1275\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"234\"/>\n      <point x=\"1256\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1050\" y=\"285\"/>\n      <point x=\"1037\" y=\"292\"/>\n      <point x=\"1036\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1032\" y=\"997\" type=\"line\"/>\n      <point x=\"786\" y=\"997\" type=\"line\"/>\n      <point x=\"796\" y=\"286\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"62\"/>\n      <point x=\"876\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0647\"/>\n  <anchor x=\"605\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"592\" y=\"1190\" name=\"top\"/>\n  <anchor x=\"599\" y=\"940\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"585\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"-10\"/>\n      <point x=\"1002\" y=\"125\"/>\n      <point x=\"1002\" y=\"339\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"544\"/>\n      <point x=\"904\" y=\"749\"/>\n      <point x=\"481\" y=\"942\" type=\"curve\"/>\n      <point x=\"345\" y=\"706\" type=\"line\"/>\n      <point x=\"690\" y=\"544\"/>\n      <point x=\"754\" y=\"458\"/>\n      <point x=\"754\" y=\"367\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"304\"/>\n      <point x=\"713\" y=\"285\"/>\n      <point x=\"593\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"471\" y=\"285\"/>\n      <point x=\"443\" y=\"310\"/>\n      <point x=\"443\" y=\"367\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"443\" y=\"431\"/>\n      <point x=\"499\" y=\"519\"/>\n      <point x=\"638\" y=\"598\" type=\"curve\"/>\n      <point x=\"523\" y=\"793\" type=\"line\"/>\n      <point x=\"280\" y=\"606\"/>\n      <point x=\"198\" y=\"433\"/>\n      <point x=\"198\" y=\"304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"198\" y=\"120\"/>\n      <point x=\"296\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"565\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"1040\" name=\"top\"/>\n  <anchor x=\"549\" y=\"930\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"193\" y=\"-10\"/>\n      <point x=\"378\" y=\"20\"/>\n      <point x=\"526\" y=\"100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"183\"/>\n      <point x=\"780\" y=\"270\"/>\n      <point x=\"780\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"595\"/>\n      <point x=\"679\" y=\"781\"/>\n      <point x=\"471\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"781\"/>\n      <point x=\"137\" y=\"641\"/>\n      <point x=\"137\" y=\"432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"120\"/>\n      <point x=\"402\" y=\"-10\"/>\n      <point x=\"729\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"-10\"/>\n      <point x=\"1139\" y=\"164\"/>\n      <point x=\"1139\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1139\" y=\"571\"/>\n      <point x=\"1031\" y=\"757\"/>\n      <point x=\"330\" y=\"924\" type=\"curve\"/>\n      <point x=\"278\" y=\"675\" type=\"line\"/>\n      <point x=\"878\" y=\"535\"/>\n      <point x=\"939\" y=\"449\"/>\n      <point x=\"939\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"939\" y=\"292\"/>\n      <point x=\"876\" y=\"261\"/>\n      <point x=\"767\" y=\"261\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"261\"/>\n      <point x=\"337\" y=\"292\"/>\n      <point x=\"337\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"337\" y=\"523\"/>\n      <point x=\"388\" y=\"579\"/>\n      <point x=\"460\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"579\"/>\n      <point x=\"580\" y=\"533\"/>\n      <point x=\"580\" y=\"455\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"381\"/>\n      <point x=\"555\" y=\"336\"/>\n      <point x=\"485\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"280\"/>\n      <point x=\"179\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-44\" y=\"285\"/>\n      <point x=\"-70\" y=\"224\"/>\n      <point x=\"-70\" y=\"146\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"44\"/>\n      <point x=\"-51\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/heh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"632\" y=\"-509\" name=\"bottom\"/>\n  <anchor x=\"632\" y=\"1170\" name=\"top\"/>\n  <anchor x=\"639\" y=\"920\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"639\" y=\"-495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"837\" y=\"-495\"/>\n      <point x=\"982\" y=\"-388\"/>\n      <point x=\"982\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"-100\"/>\n      <point x=\"929\" y=\"25\"/>\n      <point x=\"831\" y=\"81\" type=\"curve\"/>\n      <point x=\"824\" y=\"35\" type=\"line\"/>\n      <point x=\"923\" y=\"-2\"/>\n      <point x=\"1078\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1268\" y=\"-10\"/>\n      <point x=\"1300\" y=\"39\"/>\n      <point x=\"1300\" y=\"149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1300\" y=\"228\"/>\n      <point x=\"1266\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"285\"/>\n      <point x=\"814\" y=\"239\"/>\n      <point x=\"669\" y=\"248\" type=\"curve\"/>\n      <point x=\"613\" y=\"45\" type=\"line\"/>\n      <point x=\"734\" y=\"-12\"/>\n      <point x=\"761\" y=\"-77\"/>\n      <point x=\"761\" y=\"-120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"-171\"/>\n      <point x=\"721\" y=\"-200\"/>\n      <point x=\"650\" y=\"-200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"-200\"/>\n      <point x=\"457\" y=\"-166\"/>\n      <point x=\"457\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"306\"/>\n      <point x=\"523\" y=\"460\"/>\n      <point x=\"687\" y=\"626\" type=\"curve\"/>\n      <point x=\"629\" y=\"622\" type=\"line\"/>\n      <point x=\"697\" y=\"502\"/>\n      <point x=\"715\" y=\"430\"/>\n      <point x=\"715\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"345\"/>\n      <point x=\"706\" y=\"316\"/>\n      <point x=\"601\" y=\"300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"281\"/>\n      <point x=\"307\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-42\" y=\"285\"/>\n      <point x=\"-70\" y=\"221\"/>\n      <point x=\"-70\" y=\"145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"48\"/>\n      <point x=\"-53\" y=\"-10\"/>\n      <point x=\"-12\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"-10\"/>\n      <point x=\"491\" y=\"-16\"/>\n      <point x=\"669\" y=\"31\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"77\"/>\n      <point x=\"942\" y=\"194\"/>\n      <point x=\"942\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"497\"/>\n      <point x=\"867\" y=\"703\"/>\n      <point x=\"771\" y=\"889\" type=\"curve\"/>\n      <point x=\"591\" y=\"873\" type=\"line\"/>\n      <point x=\"440\" y=\"722\"/>\n      <point x=\"234\" y=\"439\"/>\n      <point x=\"234\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"234\" y=\"-299\"/>\n      <point x=\"369\" y=\"-495\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehA_lefabove-ar.init.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehAlefabove-ar.init.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"19\" yOffset=\"506\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehA_lefabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehAlefabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FCD9\"/>\n  <outline>\n    <component base=\"heh-ar.init\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-71\" yOffset=\"516\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehD_oachashmee-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehDoachashmee-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"632\" y=\"-509\" name=\"bottom\"/>\n  <anchor x=\"639\" y=\"1040\" name=\"top\"/>\n  <anchor x=\"639\" y=\"920\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"639\" y=\"-495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"837\" y=\"-495\"/>\n      <point x=\"982\" y=\"-388\"/>\n      <point x=\"982\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"-100\"/>\n      <point x=\"929\" y=\"25\"/>\n      <point x=\"831\" y=\"81\" type=\"curve\"/>\n      <point x=\"824\" y=\"35\" type=\"line\"/>\n      <point x=\"923\" y=\"-2\"/>\n      <point x=\"1078\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1268\" y=\"-10\"/>\n      <point x=\"1300\" y=\"39\"/>\n      <point x=\"1300\" y=\"149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1300\" y=\"228\"/>\n      <point x=\"1266\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"285\"/>\n      <point x=\"814\" y=\"239\"/>\n      <point x=\"669\" y=\"248\" type=\"curve\"/>\n      <point x=\"613\" y=\"45\" type=\"line\"/>\n      <point x=\"734\" y=\"-12\"/>\n      <point x=\"761\" y=\"-77\"/>\n      <point x=\"761\" y=\"-120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"-171\"/>\n      <point x=\"721\" y=\"-200\"/>\n      <point x=\"650\" y=\"-200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"-200\"/>\n      <point x=\"457\" y=\"-166\"/>\n      <point x=\"457\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"306\"/>\n      <point x=\"523\" y=\"460\"/>\n      <point x=\"687\" y=\"626\" type=\"curve\"/>\n      <point x=\"629\" y=\"622\" type=\"line\"/>\n      <point x=\"697\" y=\"502\"/>\n      <point x=\"715\" y=\"430\"/>\n      <point x=\"715\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"345\"/>\n      <point x=\"706\" y=\"316\"/>\n      <point x=\"601\" y=\"300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"291\"/>\n      <point x=\"470\" y=\"287\"/>\n      <point x=\"380\" y=\"286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"282\" y=\"284\"/>\n      <point x=\"196\" y=\"288\"/>\n      <point x=\"38\" y=\"291\" type=\"curve\"/>\n      <point x=\"16\" y=\"46\" type=\"line\"/>\n      <point x=\"100\" y=\"9\"/>\n      <point x=\"192\" y=\"-10\"/>\n      <point x=\"321\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"-10\"/>\n      <point x=\"559\" y=\"2\"/>\n      <point x=\"669\" y=\"31\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"77\"/>\n      <point x=\"942\" y=\"194\"/>\n      <point x=\"942\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"497\"/>\n      <point x=\"867\" y=\"703\"/>\n      <point x=\"771\" y=\"889\" type=\"curve\"/>\n      <point x=\"591\" y=\"873\" type=\"line\"/>\n      <point x=\"440\" y=\"722\"/>\n      <point x=\"234\" y=\"439\"/>\n      <point x=\"234\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"234\" y=\"-299\"/>\n      <point x=\"369\" y=\"-495\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehD_oachashmee-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehDoachashmee-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BE\"/>\n  <anchor x=\"565\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"1040\" name=\"top\"/>\n  <anchor x=\"549\" y=\"930\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"251\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"-10\"/>\n      <point x=\"455\" y=\"28\"/>\n      <point x=\"556\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"181\"/>\n      <point x=\"810\" y=\"270\"/>\n      <point x=\"810\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"595\"/>\n      <point x=\"709\" y=\"781\"/>\n      <point x=\"501\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"319\" y=\"781\"/>\n      <point x=\"167\" y=\"641\"/>\n      <point x=\"167\" y=\"432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"120\"/>\n      <point x=\"432\" y=\"-10\"/>\n      <point x=\"759\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"-10\"/>\n      <point x=\"1169\" y=\"164\"/>\n      <point x=\"1169\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"571\"/>\n      <point x=\"1061\" y=\"757\"/>\n      <point x=\"360\" y=\"924\" type=\"curve\"/>\n      <point x=\"308\" y=\"675\" type=\"line\"/>\n      <point x=\"908\" y=\"535\"/>\n      <point x=\"969\" y=\"449\"/>\n      <point x=\"969\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"292\"/>\n      <point x=\"906\" y=\"261\"/>\n      <point x=\"797\" y=\"261\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"261\"/>\n      <point x=\"367\" y=\"292\"/>\n      <point x=\"367\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"523\"/>\n      <point x=\"418\" y=\"579\"/>\n      <point x=\"490\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"579\"/>\n      <point x=\"610\" y=\"533\"/>\n      <point x=\"610\" y=\"455\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"610\" y=\"381\"/>\n      <point x=\"585\" y=\"336\"/>\n      <point x=\"515\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"458\" y=\"289\"/>\n      <point x=\"323\" y=\"289\"/>\n      <point x=\"203\" y=\"289\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"158\" y=\"289\"/>\n      <point x=\"95\" y=\"290\"/>\n      <point x=\"28\" y=\"291\" type=\"curve\"/>\n      <point x=\"16\" y=\"46\" type=\"line\"/>\n      <point x=\"100\" y=\"9\"/>\n      <point x=\"162\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehD_oachashmee-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehDoachashmee-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehD_oachashmee-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehDoachashmee-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"109\" yOffset=\"-84\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C0\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-21\" yOffset=\"-164\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehV_invertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehVinvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"39\" yOffset=\"388\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehV_invertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehVinvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FF\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-51\" yOffset=\"398\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehV_invertedabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehVinvertedabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar.init\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-51\" yOffset=\"398\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehV_invertedabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehVinvertedabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar.medi\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"39\" yOffset=\"388\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"678\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"678\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"680\" y=\"965\" name=\"top\"/>\n  <anchor x=\"680\" y=\"715\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1191\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1248\" y=\"-10\"/>\n      <point x=\"1270\" y=\"49\"/>\n      <point x=\"1270\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1270\" y=\"200\"/>\n      <point x=\"1259\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"285\"/>\n      <point x=\"1087\" y=\"308\"/>\n      <point x=\"1000\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"634\"/>\n      <point x=\"814\" y=\"691\"/>\n      <point x=\"705\" y=\"691\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"691\"/>\n      <point x=\"356\" y=\"480\"/>\n      <point x=\"181\" y=\"307\" type=\"curve\"/>\n      <point x=\"271\" y=\"56\" type=\"line\"/>\n      <point x=\"449\" y=\"233\"/>\n      <point x=\"610\" y=\"391\"/>\n      <point x=\"669\" y=\"391\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"391\"/>\n      <point x=\"735\" y=\"354\"/>\n      <point x=\"838\" y=\"193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"31\"/>\n      <point x=\"1015\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C1\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_hehgoalcomma\" xOffset=\"222\" yOffset=\"-21\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_hehgoalcomma</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_hehgoalcomma\" xOffset=\"182\" yOffset=\"-21\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_hehgoalcomma</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"662\" y=\"-509\" name=\"bottom\"/>\n  <anchor x=\"642\" y=\"830\" name=\"top\"/>\n  <anchor x=\"649\" y=\"580\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"677\" y=\"-510\" type=\"curve\"/>\n      <point x=\"909\" y=\"-437\" type=\"line\"/>\n      <point x=\"898\" y=\"-358\"/>\n      <point x=\"887\" y=\"-253\"/>\n      <point x=\"887\" y=\"-157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"-37\"/>\n      <point x=\"914\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"21\"/>\n      <point x=\"1275\" y=\"115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"226\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"285\"/>\n      <point x=\"672\" y=\"189\"/>\n      <point x=\"672\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"-201\"/>\n      <point x=\"685\" y=\"-233\"/>\n      <point x=\"691\" y=\"-298\" type=\"curve\"/>\n      <point x=\"763\" y=\"-261\" type=\"line\"/>\n      <point x=\"587\" y=\"-149\"/>\n      <point x=\"519\" y=\"-95\"/>\n      <point x=\"519\" y=\"120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"519\" y=\"249\"/>\n      <point x=\"539\" y=\"377\"/>\n      <point x=\"562\" y=\"533\" type=\"curve\"/>\n      <point x=\"352\" y=\"533\" type=\"line\"/>\n      <point x=\"285\" y=\"302\"/>\n      <point x=\"270\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\"/>\n      <point x=\"-9\" y=\"-10\" type=\"line\"/>\n      <point x=\"164\" y=\"-10\"/>\n      <point x=\"233\" y=\"15\"/>\n      <point x=\"283\" y=\"95\" type=\"curve\"/>\n      <point x=\"340\" y=\"95\" type=\"line\"/>\n      <point x=\"401\" y=\"172\" type=\"line\"/>\n      <point x=\"326\" y=\"229\" type=\"line\"/>\n      <point x=\"315\" y=\"155\"/>\n      <point x=\"308\" y=\"89\"/>\n      <point x=\"308\" y=\"30\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"-216\"/>\n      <point x=\"461\" y=\"-373\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehgoal-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"60\" yOffset=\"-389\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C2\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-21\" yOffset=\"-164\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"hehgoal-ar.init.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"255\" yOffset=\"-227\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehgoal-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"215\" yOffset=\"-237\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>hehgoal-ar.init</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehgoal-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"29\" yOffset=\"-524\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/het-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"het-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D7\"/>\n  <outline>\n    <contour>\n      <point x=\"1048\" y=\"877\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1080\"/>\n      <point x=\"935\" y=\"1200\"/>\n      <point x=\"753\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"1200\"/>\n      <point x=\"228\" y=\"1234\"/>\n      <point x=\"198\" y=\"1253\" type=\"curve\"/>\n      <point x=\"108\" y=\"1018\" type=\"line\"/>\n      <point x=\"152\" y=\"981\"/>\n      <point x=\"246\" y=\"929\"/>\n      <point x=\"316\" y=\"929\" type=\"curve\"/>\n      <point x=\"641\" y=\"929\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"741\" y=\"929\"/>\n      <point x=\"790\" y=\"873\"/>\n      <point x=\"790\" y=\"753\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"298\" y=\"922\" type=\"line\"/>\n      <point x=\"212\" y=\"893\"/>\n      <point x=\"151\" y=\"804\"/>\n      <point x=\"146\" y=\"665\" type=\"curve\"/>\n      <point x=\"146\" y=\"0\" type=\"line\"/>\n      <point x=\"404\" y=\"0\" type=\"line\"/>\n      <point x=\"404\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"755\"/>\n      <point x=\"408\" y=\"929\"/>\n      <point x=\"566\" y=\"929\" type=\"curve\"/>\n      <point x=\"298\" y=\"994\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamza-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamza-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0674\"/>\n  <anchor x=\"280\" y=\"1240\" name=\"_top\"/>\n  <anchor x=\"282\" y=\"1661\" name=\"top\"/>\n  <outline>\n    <component base=\"_hamzasmall-ar\" xOffset=\"34\" yOffset=\"631\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzasmall-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaA_lef-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaAlef-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"414\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina\"/>\n    <component base=\"highhamza-ar\" xOffset=\"249\" yOffset=\"-49\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alef-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaA_lef-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaAlef-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"551\" y=\"1661\" name=\"top\"/>\n  <outline>\n    <component base=\"highhamza-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"7\" yOffset=\"181\"/>\n    <component base=\"alef-ar.fina.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaA_lef-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaAlef-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0675\"/>\n  <anchor x=\"594\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar\"/>\n    <component base=\"highhamza-ar\" xOffset=\"373\" yOffset=\"-49\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaW_aw-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaWaw-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"573\" y=\"1120\" name=\"top\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"highhamza-ar\" xOffset=\"383\" yOffset=\"-340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaW_aw-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaWaw-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0676\"/>\n  <anchor x=\"573\" y=\"1120\" name=\"top\"/>\n  <outline>\n    <component base=\"waw-ar\" yOffset=\"3\"/>\n    <component base=\"highhamza-ar\" xOffset=\"383\" yOffset=\"-337\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>waw-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-48\" yOffset=\"-757\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-48\" yOffset=\"-757\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0678\"/>\n  <anchor x=\"291\" y=\"656\" name=\"top\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"499\" yOffset=\"-254\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"792\" y=\"1325\" name=\"top\"/>\n  <outline>\n    <component base=\"highhamza-ar\" xOffset=\"532\" yOffset=\"-203\"/>\n    <component base=\"behDotless-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"792\" y=\"1325\" name=\"top\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"highhamza-ar\" xOffset=\"532\" yOffset=\"-213\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"592\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"630\" y=\"1195\" name=\"top\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"highhamza-ar\" xOffset=\"340\" yOffset=\"-341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/holam-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"holam-hb\" format=\"2\">\n  <unicode hex=\"05B9\"/>\n  <anchor x=\"600\" y=\"1200\" name=\"_top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1379\"/>\n      <point x=\"691\" y=\"1419\"/>\n      <point x=\"691\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1519\"/>\n      <point x=\"650\" y=\"1560\"/>\n      <point x=\"600\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1560\"/>\n      <point x=\"509\" y=\"1519\"/>\n      <point x=\"509\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1419\"/>\n      <point x=\"550\" y=\"1379\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/holamhaser-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"holamhaser-hb\" format=\"2\">\n  <unicode hex=\"05BA\"/>\n  <anchor x=\"600\" y=\"1200\" name=\"_top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1379\"/>\n      <point x=\"691\" y=\"1419\"/>\n      <point x=\"691\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1519\"/>\n      <point x=\"650\" y=\"1560\"/>\n      <point x=\"600\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1560\"/>\n      <point x=\"509\" y=\"1519\"/>\n      <point x=\"509\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1419\"/>\n      <point x=\"550\" y=\"1379\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hookabovecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hookabovecomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"_top_viet\"/>\n  <anchor x=\"600\" y=\"1840\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"511\" y=\"1529\" type=\"line\"/>\n      <point x=\"691\" y=\"1529\" type=\"line\"/>\n      <point x=\"691\" y=\"1542\"/>\n      <point x=\"705\" y=\"1548\"/>\n      <point x=\"733\" y=\"1564\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"1617\"/>\n      <point x=\"860\" y=\"1661\"/>\n      <point x=\"860\" y=\"1741\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"1856\"/>\n      <point x=\"777\" y=\"1912\"/>\n      <point x=\"608\" y=\"1912\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"1912\"/>\n      <point x=\"393\" y=\"1885\"/>\n      <point x=\"335\" y=\"1829\" type=\"curve\"/>\n      <point x=\"402\" y=\"1685\" type=\"line\"/>\n      <point x=\"443\" y=\"1714\"/>\n      <point x=\"492\" y=\"1728\"/>\n      <point x=\"550\" y=\"1728\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"1728\"/>\n      <point x=\"615\" y=\"1715\"/>\n      <point x=\"615\" y=\"1694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"1680\"/>\n      <point x=\"608\" y=\"1664\"/>\n      <point x=\"577\" y=\"1645\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"1609\"/>\n      <point x=\"511\" y=\"1579\"/>\n      <point x=\"511\" y=\"1550\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hookabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hookabovecomb\" format=\"2\">\n  <unicode hex=\"0309\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"_top_viet\"/>\n  <anchor x=\"590\" y=\"1618\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"477\" y=\"1248\" type=\"line\"/>\n      <point x=\"682\" y=\"1248\" type=\"line\"/>\n      <point x=\"682\" y=\"1257\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"682\" y=\"1369\"/>\n      <point x=\"825\" y=\"1380\"/>\n      <point x=\"825\" y=\"1516\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"1622\"/>\n      <point x=\"730\" y=\"1692\"/>\n      <point x=\"585\" y=\"1692\" type=\"curve\"/>\n      <point x=\"514\" y=\"1508\" type=\"line\"/>\n      <point x=\"546\" y=\"1508\"/>\n      <point x=\"567\" y=\"1492\"/>\n      <point x=\"567\" y=\"1468\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"1407\"/>\n      <point x=\"477\" y=\"1381\"/>\n      <point x=\"477\" y=\"1284\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"415\" y=\"1473\" type=\"line\"/>\n      <point x=\"440\" y=\"1494\"/>\n      <point x=\"479\" y=\"1508\"/>\n      <point x=\"514\" y=\"1508\" type=\"curve\"/>\n      <point x=\"585\" y=\"1692\" type=\"line\"/>\n      <point x=\"484\" y=\"1692\"/>\n      <point x=\"387\" y=\"1662\"/>\n      <point x=\"339\" y=\"1617\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalB_lackH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalBlackHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B23\"/>\n  <note>\nuni2B23\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"190\" type=\"line\"/>\n      <point x=\"900\" y=\"190\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"900\" y=\"1230\" type=\"line\"/>\n      <point x=\"300\" y=\"1230\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A4\"/>\n  <note>\nuni25A4\n</note>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"743\" type=\"line\"/>\n      <point x=\"1051\" y=\"743\" type=\"line\"/>\n      <point x=\"1051\" y=\"927\" type=\"line\"/>\n      <point x=\"149\" y=\"927\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"493\" type=\"line\"/>\n      <point x=\"1051\" y=\"493\" type=\"line\"/>\n      <point x=\"1051\" y=\"677\" type=\"line\"/>\n      <point x=\"149\" y=\"677\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB76\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-2.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB77\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-3.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB78\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-4.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB79\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-5.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-6.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-7.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalT_abulationC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalTabulationControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2409\"/>\n  <outline>\n    <component base=\"H.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>H.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalTabulationControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"183\" type=\"line\"/>\n      <point x=\"1130\" y=\"698\" type=\"line\"/>\n      <point x=\"1130\" y=\"720\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"985\" type=\"line\"/>\n      <point x=\"623\" y=\"859\" type=\"line\"/>\n      <point x=\"623\" y=\"559\" type=\"line\"/>\n      <point x=\"75\" y=\"432\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"882\" y=\"587\" type=\"line\"/>\n      <point x=\"882\" y=\"830\" type=\"line\"/>\n      <point x=\"75\" y=\"830\" type=\"line\"/>\n      <point x=\"75\" y=\"587\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontalbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2015\"/>\n  <outline>\n    <component base=\"emdash\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>emdash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horizontallineextension.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontallineextension\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"23AF\"/>\n  <outline>\n    <component base=\"boxLightHorizontal\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>boxLightHorizontal</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horncomb.case\" format=\"2\">\n  <anchor x=\"780\" y=\"1420\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"441\" y=\"1188\" type=\"line\"/>\n      <point x=\"501\" y=\"1198\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"1239\"/>\n      <point x=\"865\" y=\"1389\"/>\n      <point x=\"865\" y=\"1653\" type=\"curve\"/>\n      <point x=\"606\" y=\"1653\" type=\"line\"/>\n      <point x=\"606\" y=\"1508\"/>\n      <point x=\"556\" y=\"1422\"/>\n      <point x=\"451\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"391\" y=\"1395\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/horncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horncomb\" format=\"2\">\n  <unicode hex=\"031B\"/>\n  <anchor x=\"630\" y=\"1060\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"381\" y=\"875\" type=\"line\"/>\n      <point x=\"441\" y=\"885\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"930\"/>\n      <point x=\"848\" y=\"1077\"/>\n      <point x=\"848\" y=\"1343\" type=\"curve\"/>\n      <point x=\"578\" y=\"1343\" type=\"line\"/>\n      <point x=\"578\" y=\"1190\"/>\n      <point x=\"513\" y=\"1102\"/>\n      <point x=\"381\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"321\" y=\"1070\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/house.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"house\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2302\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"706\" type=\"line\"/>\n      <point x=\"600\" y=\"1142\" type=\"line\"/>\n      <point x=\"100\" y=\"706\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"340\" y=\"240\" type=\"line\"/>\n      <point x=\"340\" y=\"596.849\" type=\"line\"/>\n      <point x=\"598.398\" y=\"822.172\" type=\"line\"/>\n      <point x=\"860\" y=\"598\" type=\"line\"/>\n      <point x=\"860\" y=\"240\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hryvnia.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hryvnia\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B4\"/>\n  <outline>\n    <contour>\n      <point x=\"646\" y=\"923\" type=\"curve\"/>\n      <point x=\"934\" y=\"934\" type=\"line\"/>\n      <point x=\"934\" y=\"991\" type=\"line\"/>\n      <point x=\"1009\" y=\"1051\"/>\n      <point x=\"1050\" y=\"1123\"/>\n      <point x=\"1050\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1050\" y=\"1355\"/>\n      <point x=\"902\" y=\"1440\"/>\n      <point x=\"644\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"1440\"/>\n      <point x=\"260\" y=\"1375\"/>\n      <point x=\"122\" y=\"1261\" type=\"curve\"/>\n      <point x=\"262\" y=\"1052\" type=\"line\"/>\n      <point x=\"388\" y=\"1136\"/>\n      <point x=\"528\" y=\"1184\"/>\n      <point x=\"648\" y=\"1184\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"1184\"/>\n      <point x=\"772\" y=\"1154\"/>\n      <point x=\"772\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"1031\"/>\n      <point x=\"730\" y=\"973\"/>\n    </contour>\n    <contour>\n      <point x=\"609\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"-20\"/>\n      <point x=\"959\" y=\"8\"/>\n      <point x=\"1088\" y=\"58\" type=\"curve\"/>\n      <point x=\"1062\" y=\"327\" type=\"line\"/>\n      <point x=\"907\" y=\"269\"/>\n      <point x=\"744\" y=\"236\"/>\n      <point x=\"613\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"236\"/>\n      <point x=\"404\" y=\"271\"/>\n      <point x=\"404\" y=\"332\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"374\"/>\n      <point x=\"435\" y=\"412\"/>\n      <point x=\"499\" y=\"447\" type=\"curve\"/>\n      <point x=\"251\" y=\"492\" type=\"line\"/>\n      <point x=\"251\" y=\"399\" type=\"line\"/>\n      <point x=\"168\" y=\"356\"/>\n      <point x=\"126\" y=\"282\"/>\n      <point x=\"126\" y=\"213\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"126\" y=\"65\"/>\n      <point x=\"302\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"53\" y=\"428\" type=\"line\"/>\n      <point x=\"1147\" y=\"428\" type=\"line\"/>\n      <point x=\"1147\" y=\"642\" type=\"line\"/>\n      <point x=\"53\" y=\"642\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"305\" y=\"515\" type=\"line\"/>\n      <point x=\"515\" y=\"515\" type=\"line\"/>\n      <point x=\"866\" y=\"878\" type=\"line\"/>\n      <point x=\"657\" y=\"878\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"53\" y=\"748\" type=\"line\"/>\n      <point x=\"1147\" y=\"748\" type=\"line\"/>\n      <point x=\"1147\" y=\"962\" type=\"line\"/>\n      <point x=\"53\" y=\"962\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DD\"/>\n  <outline>\n    <component base=\"hungarumlautcomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>hungarumlautcomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hungarumlautcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlautcomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"651\" y=\"1580\" type=\"line\"/>\n      <point x=\"934\" y=\"1580\" type=\"line\"/>\n      <point x=\"1134\" y=\"1830\" type=\"line\"/>\n      <point x=\"786\" y=\"1830\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"224\" y=\"1580\" type=\"line\"/>\n      <point x=\"508\" y=\"1580\" type=\"line\"/>\n      <point x=\"699\" y=\"1830\" type=\"line\"/>\n      <point x=\"359\" y=\"1830\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hungarumlautcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlautcomb\" format=\"2\">\n  <unicode hex=\"030B\"/>\n  <anchor x=\"570\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"650\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"597\" y=\"1248\" type=\"line\"/>\n      <point x=\"858\" y=\"1248\" type=\"line\"/>\n      <point x=\"1053\" y=\"1628\" type=\"line\"/>\n      <point x=\"772\" y=\"1628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"217\" y=\"1248\" type=\"line\"/>\n      <point x=\"478\" y=\"1248\" type=\"line\"/>\n      <point x=\"673\" y=\"1628\" type=\"line\"/>\n      <point x=\"392\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002D\"/>\n  <outline>\n    <component base=\"minus\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>minus</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hyphen_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1925\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2130\" y=\"488\"/>\n      <point x=\"2218\" y=\"587\"/>\n      <point x=\"2218\" y=\"818\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2218\" y=\"963\" type=\"line\"/>\n      <point x=\"1955\" y=\"963\" type=\"line\"/>\n      <point x=\"1955\" y=\"858\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1955\" y=\"798\"/>\n      <point x=\"1930\" y=\"772\"/>\n      <point x=\"1870\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1803\" y=\"772\"/>\n      <point x=\"1742\" y=\"812\"/>\n      <point x=\"1677\" y=\"852\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1585\" y=\"907\"/>\n      <point x=\"1502\" y=\"951\"/>\n      <point x=\"1398\" y=\"951\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1171\" y=\"951\"/>\n      <point x=\"1074\" y=\"859\"/>\n      <point x=\"1074\" y=\"644\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1074\" y=\"591\" type=\"line\"/>\n      <point x=\"1340\" y=\"591\" type=\"line\"/>\n      <point x=\"1340\" y=\"604\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1340\" y=\"647\"/>\n      <point x=\"1374\" y=\"666\"/>\n      <point x=\"1453\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1522\" y=\"666\"/>\n      <point x=\"1575\" y=\"623\"/>\n      <point x=\"1651\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1735\" y=\"529\"/>\n      <point x=\"1824\" y=\"488\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"584\" type=\"line\"/>\n      <point x=\"1340\" y=\"584\" type=\"line\"/>\n      <point x=\"1340\" y=\"834\" type=\"line\"/>\n      <point x=\"280\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"584\" type=\"line\"/>\n      <point x=\"1117\" y=\"584\" type=\"line\"/>\n      <point x=\"1117\" y=\"834\" type=\"line\"/>\n      <point x=\"-20\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1330\" y=\"584\" type=\"line\"/>\n      <point x=\"2120\" y=\"584\" type=\"line\"/>\n      <point x=\"2120\" y=\"834\" type=\"line\"/>\n      <point x=\"1330\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"584\" type=\"line\"/>\n      <point x=\"1070\" y=\"584\" type=\"line\"/>\n      <point x=\"1070\" y=\"834\" type=\"line\"/>\n      <point x=\"280\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2527\" y=\"584\" type=\"line\"/>\n      <point x=\"3320\" y=\"584\" type=\"line\"/>\n      <point x=\"3320\" y=\"834\" type=\"line\"/>\n      <point x=\"2527\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"584\" type=\"line\"/>\n      <point x=\"1067\" y=\"584\" type=\"line\"/>\n      <point x=\"1067\" y=\"834\" type=\"line\"/>\n      <point x=\"280\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1397\" y=\"584\" type=\"line\"/>\n      <point x=\"2197\" y=\"584\" type=\"line\"/>\n      <point x=\"2197\" y=\"834\" type=\"line\"/>\n      <point x=\"1397\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"584\" type=\"line\"/>\n      <point x=\"1250\" y=\"584\" type=\"line\"/>\n      <point x=\"1250\" y=\"834\" type=\"line\"/>\n      <point x=\"-50\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"83\" y=\"584\" type=\"line\"/>\n      <point x=\"1220\" y=\"584\" type=\"line\"/>\n      <point x=\"1220\" y=\"834\" type=\"line\"/>\n      <point x=\"83\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/hyphentwo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphentwo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2010\"/>\n  <outline>\n    <component base=\"hyphen\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>hyphen</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"i-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0456\"/>\n  <outline>\n    <component base=\"i\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"i\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0069\"/>\n  <anchor x=\"670\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"653\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"535\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"1000\" type=\"line\"/>\n      <point x=\"535\" y=\"1000\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"250\" type=\"line\"/>\n      <point x=\"143\" y=\"250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"785\" y=\"0\" type=\"line\"/>\n      <point x=\"1119\" y=\"0\" type=\"line\"/>\n      <point x=\"1119\" y=\"250\" type=\"line\"/>\n      <point x=\"785\" y=\"250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"203\" y=\"810\" type=\"line\"/>\n      <point x=\"805\" y=\"810\" type=\"line\"/>\n      <point x=\"805\" y=\"1060\" type=\"line\"/>\n      <point x=\"203\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"658\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"1203\"/>\n      <point x=\"831\" y=\"1273\"/>\n      <point x=\"831\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"1479\"/>\n      <point x=\"761\" y=\"1549\"/>\n      <point x=\"658\" y=\"1549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1549\"/>\n      <point x=\"485\" y=\"1479\"/>\n      <point x=\"485\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"1273\"/>\n      <point x=\"555\" y=\"1203\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ia-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ia-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"477\" y=\"454\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"454\" type=\"line\"/>\n      <point x=\"787\" y=\"581\" type=\"line\"/>\n      <point x=\"565\" y=\"581\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"581\"/>\n      <point x=\"415\" y=\"619\"/>\n      <point x=\"415\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"415\" y=\"769\"/>\n      <point x=\"466\" y=\"808\"/>\n      <point x=\"565\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"807\" y=\"808\" type=\"line\"/>\n      <point x=\"807\" y=\"1060\" type=\"line\"/>\n      <point x=\"557\" y=\"1060\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"1060\"/>\n      <point x=\"138\" y=\"941\"/>\n      <point x=\"138\" y=\"733\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"138\" y=\"556\"/>\n      <point x=\"261\" y=\"454\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"-5\" type=\"line\"/>\n      <point x=\"169\" y=\"-5\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"-5\"/>\n      <point x=\"456\" y=\"32\"/>\n      <point x=\"495\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"219\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"301\"/>\n      <point x=\"574\" y=\"329\"/>\n      <point x=\"734\" y=\"329\" type=\"curve\"/>\n      <point x=\"700\" y=\"425\" type=\"line\"/>\n      <point x=\"510\" y=\"425\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"425\"/>\n      <point x=\"312\" y=\"413\"/>\n      <point x=\"285\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"316\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"245\" y=\"264\"/>\n      <point x=\"213\" y=\"247\"/>\n      <point x=\"159\" y=\"247\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"247\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"510\" y=\"329\" type=\"line\"/>\n      <point x=\"821\" y=\"329\" type=\"line\"/>\n      <point x=\"821\" y=\"581\" type=\"line\"/>\n      <point x=\"510\" y=\"581\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"773\" y=\"0\" type=\"line\"/>\n      <point x=\"1044\" y=\"0\" type=\"line\"/>\n      <point x=\"1044\" y=\"1060\" type=\"line\"/>\n      <point x=\"773\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00ED\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"acutecomb\" xOffset=\"111\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ibreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ibreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012D\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"brevecomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/icircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"icircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EE\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"circumflexcomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/idieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EF\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"dieresiscomb\" xOffset=\"52\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/idotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECB\"/>\n  <outline>\n    <component base=\"i\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/idotless.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idotless\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0131\"/>\n  <anchor x=\"670\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"731\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"650\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"535\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"1060\" type=\"line\"/>\n      <point x=\"535\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"250\" type=\"line\"/>\n      <point x=\"143\" y=\"250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"785\" y=\"0\" type=\"line\"/>\n      <point x=\"1119\" y=\"0\" type=\"line\"/>\n      <point x=\"1119\" y=\"250\" type=\"line\"/>\n      <point x=\"785\" y=\"250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"203\" y=\"810\" type=\"line\"/>\n      <point x=\"805\" y=\"810\" type=\"line\"/>\n      <point x=\"805\" y=\"1060\" type=\"line\"/>\n      <point x=\"203\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ie-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ie-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0435\"/>\n  <outline>\n    <component base=\"e\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iegrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iegrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0450\"/>\n  <outline>\n    <component base=\"ie-cy\"/>\n    <component base=\"gravecomb\" xOffset=\"-45\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/igrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"igrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EC\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"gravecomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ihookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ihookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC9\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"hookabovecomb\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ii-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ii-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0438\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"0\" type=\"line\"/>\n      <point x=\"750\" y=\"620\" type=\"line\"/>\n      <point x=\"843\" y=\"620\" type=\"line\"/>\n      <point x=\"843\" y=\"1060\" type=\"line\"/>\n      <point x=\"773\" y=\"1060\" type=\"line\"/>\n      <point x=\"450\" y=\"440\" type=\"line\"/>\n      <point x=\"350\" y=\"440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"1060\" type=\"line\"/>\n      <point x=\"151\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"778\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"1060\" type=\"line\"/>\n      <point x=\"778\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ii-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ii-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"u\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iigrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iigrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045D\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"gravecomb\" xOffset=\"-45\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iigrave-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iigrave-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ii-cy.loclBGR\"/>\n    <component base=\"gravecomb\" xOffset=\"-65\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iishort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iishort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0439\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"brevecomb-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iishort-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iishort-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ii-cy.loclBGR\"/>\n    <component base=\"brevecomb-cy\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ij.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ij\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0133\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"235\" y=\"-480\" type=\"line\"/>\n      <point x=\"422\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"-440\"/>\n      <point x=\"977\" y=\"-284\"/>\n      <point x=\"977\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"977\" y=\"384\" type=\"line\"/>\n      <point x=\"698\" y=\"384\" type=\"line\"/>\n      <point x=\"698\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"-113\"/>\n      <point x=\"621\" y=\"-192\"/>\n      <point x=\"442\" y=\"-207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"225\" y=\"-225\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"227\" y=\"0\" type=\"line\"/>\n      <point x=\"506\" y=\"0\" type=\"line\"/>\n      <point x=\"506\" y=\"1060\" type=\"line\"/>\n      <point x=\"227\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"698\" y=\"350\" type=\"line\"/>\n      <point x=\"977\" y=\"350\" type=\"line\"/>\n      <point x=\"977\" y=\"1060\" type=\"line\"/>\n      <point x=\"698\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"1203\"/>\n      <point x=\"548\" y=\"1273\"/>\n      <point x=\"548\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"1479\"/>\n      <point x=\"478\" y=\"1549\"/>\n      <point x=\"375\" y=\"1549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"1549\"/>\n      <point x=\"202\" y=\"1479\"/>\n      <point x=\"202\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"202\" y=\"1273\"/>\n      <point x=\"272\" y=\"1203\"/>\n    </contour>\n    <contour>\n      <point x=\"837\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1203\"/>\n      <point x=\"1010\" y=\"1273\"/>\n      <point x=\"1010\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"1479\"/>\n      <point x=\"940\" y=\"1549\"/>\n      <point x=\"837\" y=\"1549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"1549\"/>\n      <point x=\"664\" y=\"1479\"/>\n      <point x=\"664\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"1273\"/>\n      <point x=\"734\" y=\"1203\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ij_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ij_acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"235\" y=\"-480\" type=\"line\"/>\n      <point x=\"422\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"-443\"/>\n      <point x=\"977\" y=\"-284\"/>\n      <point x=\"977\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"977\" y=\"384\" type=\"line\"/>\n      <point x=\"698\" y=\"384\" type=\"line\"/>\n      <point x=\"698\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"-113\"/>\n      <point x=\"621\" y=\"-192\"/>\n      <point x=\"442\" y=\"-207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"225\" y=\"-225\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"227\" y=\"0\" type=\"line\"/>\n      <point x=\"506\" y=\"0\" type=\"line\"/>\n      <point x=\"506\" y=\"1060\" type=\"line\"/>\n      <point x=\"227\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"698\" y=\"350\" type=\"line\"/>\n      <point x=\"977\" y=\"350\" type=\"line\"/>\n      <point x=\"977\" y=\"1060\" type=\"line\"/>\n      <point x=\"698\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <component base=\"acutecomb\" xOffset=\"300\"/>\n    <component base=\"acutecomb\" xOffset=\"-165\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/imacron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"imacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E3\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/imacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"imacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012B\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"macroncomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/increment.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"increment\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2206\"/>\n  <outline>\n    <component base=\"Delta\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/infinity.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"infinity\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221E\"/>\n  <outline>\n    <contour>\n      <point x=\"349\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"344\"/>\n      <point x=\"567\" y=\"422\"/>\n      <point x=\"630\" y=\"600\" type=\"curve\"/>\n      <point x=\"570\" y=\"600\" type=\"line\"/>\n      <point x=\"633\" y=\"422\"/>\n      <point x=\"715\" y=\"344\"/>\n      <point x=\"851\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"344\"/>\n      <point x=\"1140\" y=\"488\"/>\n      <point x=\"1140\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1140\" y=\"931\"/>\n      <point x=\"1025\" y=\"1070\"/>\n      <point x=\"851\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"1070\"/>\n      <point x=\"633\" y=\"992\"/>\n      <point x=\"570\" y=\"813\" type=\"curve\"/>\n      <point x=\"630\" y=\"813\" type=\"line\"/>\n      <point x=\"567\" y=\"992\"/>\n      <point x=\"485\" y=\"1070\"/>\n      <point x=\"349\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1070\"/>\n      <point x=\"60\" y=\"931\"/>\n      <point x=\"60\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"60\" y=\"488\"/>\n      <point x=\"175\" y=\"344\"/>\n    </contour>\n    <contour>\n      <point x=\"424\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"579\"/>\n      <point x=\"316\" y=\"630\"/>\n      <point x=\"316\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"786\"/>\n      <point x=\"359\" y=\"837\"/>\n      <point x=\"424\" y=\"837\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"494\" y=\"837\"/>\n      <point x=\"528\" y=\"770\"/>\n      <point x=\"544\" y=\"670\" type=\"curve\"/>\n      <point x=\"544\" y=\"741\" type=\"line\"/>\n      <point x=\"528\" y=\"646\"/>\n      <point x=\"494\" y=\"579\"/>\n    </contour>\n    <contour>\n      <point x=\"776\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"579\"/>\n      <point x=\"672\" y=\"646\"/>\n      <point x=\"656\" y=\"741\" type=\"curve\"/>\n      <point x=\"656\" y=\"670\" type=\"line\"/>\n      <point x=\"672\" y=\"770\"/>\n      <point x=\"706\" y=\"837\"/>\n      <point x=\"776\" y=\"837\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"837\"/>\n      <point x=\"884\" y=\"786\"/>\n      <point x=\"884\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"630\"/>\n      <point x=\"841\" y=\"579\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/integral.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integral\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"222B\"/>\n  <outline>\n    <contour>\n      <point x=\"467\" y=\"440\" type=\"line\"/>\n      <point x=\"733\" y=\"440\" type=\"line\"/>\n      <point x=\"733\" y=\"971\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"1115\"/>\n      <point x=\"788\" y=\"1188\"/>\n      <point x=\"898\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"1188\"/>\n      <point x=\"1028\" y=\"1184\"/>\n      <point x=\"1119\" y=\"1174\" type=\"curve\"/>\n      <point x=\"1141\" y=\"1420\" type=\"line\"/>\n      <point x=\"1061\" y=\"1434\"/>\n      <point x=\"990\" y=\"1440\"/>\n      <point x=\"904\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"1440\"/>\n      <point x=\"467\" y=\"1291\"/>\n      <point x=\"467\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"-477\" type=\"line\"/>\n      <point x=\"206\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"-433\"/>\n      <point x=\"733\" y=\"-284\"/>\n      <point x=\"733\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"464\" type=\"line\"/>\n      <point x=\"467\" y=\"464\" type=\"line\"/>\n      <point x=\"467\" y=\"88\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"-109\"/>\n      <point x=\"394\" y=\"-194\"/>\n      <point x=\"226\" y=\"-215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"101\" y=\"-230\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/integralbt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integralbt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2321\"/>\n  <outline>\n    <contour>\n      <point x=\"111\" y=\"-477\" type=\"line\"/>\n      <point x=\"206\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"-433\"/>\n      <point x=\"733\" y=\"-284\"/>\n      <point x=\"733\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"2226\" type=\"line\"/>\n      <point x=\"467\" y=\"2226\" type=\"line\"/>\n      <point x=\"467\" y=\"88\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"-109\"/>\n      <point x=\"394\" y=\"-195\"/>\n      <point x=\"226\" y=\"-215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"101\" y=\"-230\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/integraltp.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integraltp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2320\"/>\n  <outline>\n    <contour>\n      <point x=\"467\" y=\"-750\" type=\"line\"/>\n      <point x=\"733\" y=\"-750\" type=\"line\"/>\n      <point x=\"733\" y=\"971\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"1115\"/>\n      <point x=\"788\" y=\"1188\"/>\n      <point x=\"898\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"1188\"/>\n      <point x=\"1028\" y=\"1184\"/>\n      <point x=\"1119\" y=\"1174\" type=\"curve\"/>\n      <point x=\"1141\" y=\"1420\" type=\"line\"/>\n      <point x=\"1061\" y=\"1434\"/>\n      <point x=\"990\" y=\"1440\"/>\n      <point x=\"904\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"1440\"/>\n      <point x=\"467\" y=\"1291\"/>\n      <point x=\"467\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/intersection.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"intersection\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2229\"/>\n  <outline>\n    <contour>\n      <point x=\"119\" y=\"0\" type=\"line\"/>\n      <point x=\"391\" y=\"0\" type=\"line\"/>\n      <point x=\"391\" y=\"590\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"391\" y=\"746\"/>\n      <point x=\"460\" y=\"823\"/>\n      <point x=\"600\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"823\"/>\n      <point x=\"809\" y=\"746\"/>\n      <point x=\"809\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"0\" type=\"line\"/>\n      <point x=\"1081\" y=\"0\" type=\"line\"/>\n      <point x=\"1081\" y=\"590\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"918\"/>\n      <point x=\"921\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"279\" y=\"1080\"/>\n      <point x=\"119\" y=\"918\"/>\n      <point x=\"119\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/inverseB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"inverseBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D8\"/>\n  <note>\ninvbullet\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"400\"/>\n      <point x=\"304\" y=\"518\"/>\n      <point x=\"304\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"874\"/>\n      <point x=\"422\" y=\"992\"/>\n      <point x=\"600\" y=\"992\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"992\"/>\n      <point x=\"896\" y=\"874\"/>\n      <point x=\"896\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"518\"/>\n      <point x=\"778\" y=\"400\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/inverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"inverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D9\"/>\n  <note>\ninvcircle\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"185\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"916\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"393\"/>\n      <point x=\"917\" y=\"519\"/>\n      <point x=\"917\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"901\"/>\n      <point x=\"791\" y=\"1027\"/>\n      <point x=\"600\" y=\"1027\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"1027\"/>\n      <point x=\"283\" y=\"901\"/>\n      <point x=\"283\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"519\"/>\n      <point x=\"409\" y=\"393\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/io-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"io-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0451\"/>\n  <outline>\n    <component base=\"ie-cy\"/>\n    <component base=\"dieresiscomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012F\"/>\n  <anchor x=\"670\" y=\"-424\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"678\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"-424\"/>\n      <point x=\"748\" y=\"-421\"/>\n      <point x=\"785\" y=\"-415\" type=\"curve\"/>\n      <point x=\"811\" y=\"-178\" type=\"line\"/>\n      <point x=\"778\" y=\"-185\"/>\n      <point x=\"747\" y=\"-189\"/>\n      <point x=\"721\" y=\"-189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"-189\"/>\n      <point x=\"638\" y=\"-167\"/>\n      <point x=\"638\" y=\"-126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"-46\"/>\n      <point x=\"702\" y=\"0\"/>\n      <point x=\"812\" y=\"0\" type=\"curve\"/>\n      <point x=\"809\" y=\"32\" type=\"line\"/>\n      <point x=\"552\" y=\"30\" type=\"line\"/>\n      <point x=\"552\" y=\"-41\" type=\"line\"/>\n      <point x=\"479\" y=\"-64\"/>\n      <point x=\"438\" y=\"-133\"/>\n      <point x=\"438\" y=\"-229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"-353\"/>\n      <point x=\"525\" y=\"-424\"/>\n    </contour>\n    <component base=\"i\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>i</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iota-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iota-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0269\"/>\n  <outline>\n    <component base=\"iota\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iota.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iota\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B9\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"536\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"764\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"-20\"/>\n      <point x=\"972\" y=\"-8\"/>\n      <point x=\"1081\" y=\"22\" type=\"curve\"/>\n      <point x=\"1057\" y=\"275\" type=\"line\"/>\n      <point x=\"969\" y=\"249\"/>\n      <point x=\"904\" y=\"237\"/>\n      <point x=\"844\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"237\"/>\n      <point x=\"671\" y=\"309\"/>\n      <point x=\"671\" y=\"477\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1060\" type=\"line\"/>\n      <point x=\"401\" y=\"1060\" type=\"line\"/>\n      <point x=\"401\" y=\"400\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"106\"/>\n      <point x=\"507\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"113\" y=\"811\" type=\"line\"/>\n      <point x=\"448\" y=\"811\" type=\"line\"/>\n      <point x=\"448\" y=\"1060\" type=\"line\"/>\n      <point x=\"113\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iotadieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotadieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CA\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-62\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iotadieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotadieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0390\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"dieresistonos\" xOffset=\"-42\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iotatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AF\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"tonos\" xOffset=\"-3\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/itilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"itilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0129\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"tildecomb\" xOffset=\"60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iu-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044E\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"570\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"792\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"-20\"/>\n      <point x=\"1141\" y=\"141\"/>\n      <point x=\"1141\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"913\"/>\n      <point x=\"1037\" y=\"1080\"/>\n      <point x=\"792\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1080\"/>\n      <point x=\"454\" y=\"913\"/>\n      <point x=\"454\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"141\"/>\n      <point x=\"555\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"93\" y=\"0\" type=\"line\"/>\n      <point x=\"349\" y=\"0\" type=\"line\"/>\n      <point x=\"349\" y=\"1060\" type=\"line\"/>\n      <point x=\"93\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"215\" y=\"403\" type=\"line\"/>\n      <point x=\"513\" y=\"403\" type=\"line\"/>\n      <point x=\"513\" y=\"652\" type=\"line\"/>\n      <point x=\"215\" y=\"652\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"778\" y=\"219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"219\"/>\n      <point x=\"691\" y=\"308\"/>\n      <point x=\"691\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"746\"/>\n      <point x=\"718\" y=\"841\"/>\n      <point x=\"778\" y=\"841\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"841\"/>\n      <point x=\"864\" y=\"746\"/>\n      <point x=\"864\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"308\"/>\n      <point x=\"838\" y=\"219\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/iu-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"779\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1034\" y=\"-20\"/>\n      <point x=\"1141\" y=\"141\"/>\n      <point x=\"1141\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"913\"/>\n      <point x=\"1034\" y=\"1080\"/>\n      <point x=\"779\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"1080\"/>\n      <point x=\"429\" y=\"913\"/>\n      <point x=\"429\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"429\" y=\"141\"/>\n      <point x=\"535\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"93\" y=\"0\" type=\"line\"/>\n      <point x=\"349\" y=\"0\" type=\"line\"/>\n      <point x=\"349\" y=\"1500\" type=\"line\"/>\n      <point x=\"93\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"215\" y=\"403\" type=\"line\"/>\n      <point x=\"513\" y=\"403\" type=\"line\"/>\n      <point x=\"513\" y=\"652\" type=\"line\"/>\n      <point x=\"215\" y=\"652\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"779\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"722\" y=\"236\"/>\n      <point x=\"699\" y=\"320\"/>\n      <point x=\"699\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"734\"/>\n      <point x=\"722\" y=\"824\"/>\n      <point x=\"779\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"837\" y=\"824\"/>\n      <point x=\"864\" y=\"734\"/>\n      <point x=\"864\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"320\"/>\n      <point x=\"837\" y=\"236\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/j.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"j\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006A\"/>\n  <anchor x=\"558\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"798\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"180\" y=\"-480\" type=\"line\"/>\n      <point x=\"350\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"-441\"/>\n      <point x=\"905\" y=\"-284\"/>\n      <point x=\"905\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"384\" type=\"line\"/>\n      <point x=\"634\" y=\"384\" type=\"line\"/>\n      <point x=\"634\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"634\" y=\"-113\"/>\n      <point x=\"555\" y=\"-195\"/>\n      <point x=\"370\" y=\"-207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"170\" y=\"-220\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"264\" y=\"810\" type=\"line\"/>\n      <point x=\"650\" y=\"810\" type=\"line\"/>\n      <point x=\"650\" y=\"1060\" type=\"line\"/>\n      <point x=\"264\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"634\" y=\"350\" type=\"line\"/>\n      <point x=\"905\" y=\"350\" type=\"line\"/>\n      <point x=\"905\" y=\"1060\" type=\"line\"/>\n      <point x=\"634\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"752\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"1203\"/>\n      <point x=\"925\" y=\"1273\"/>\n      <point x=\"925\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"925\" y=\"1479\"/>\n      <point x=\"855\" y=\"1549\"/>\n      <point x=\"752\" y=\"1549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"649\" y=\"1549\"/>\n      <point x=\"579\" y=\"1479\"/>\n      <point x=\"579\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"579\" y=\"1273\"/>\n      <point x=\"649\" y=\"1203\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"acutecomb\" xOffset=\"228\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01F0\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"caroncomb\" xOffset=\"167\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0135\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"circumflexcomb\" xOffset=\"167\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jdotless.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jdotless\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0237\"/>\n  <anchor x=\"558\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"767\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"180\" y=\"-480\" type=\"line\"/>\n      <point x=\"350\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"-441\"/>\n      <point x=\"905\" y=\"-284\"/>\n      <point x=\"905\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"384\" type=\"line\"/>\n      <point x=\"634\" y=\"384\" type=\"line\"/>\n      <point x=\"634\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"634\" y=\"-113\"/>\n      <point x=\"555\" y=\"-195\"/>\n      <point x=\"370\" y=\"-207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"170\" y=\"-220\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"264\" y=\"811\" type=\"line\"/>\n      <point x=\"650\" y=\"811\" type=\"line\"/>\n      <point x=\"650\" y=\"1060\" type=\"line\"/>\n      <point x=\"264\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"634\" y=\"350\" type=\"line\"/>\n      <point x=\"905\" y=\"350\" type=\"line\"/>\n      <point x=\"905\" y=\"1060\" type=\"line\"/>\n      <point x=\"634\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"je-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0458\"/>\n  <outline>\n    <component base=\"j\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeem-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeem-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"dotcenter-ar\" xOffset=\"16\" yOffset=\"-360\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeem-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeem-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062C\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"dotcenter-ar\" xOffset=\"92\" yOffset=\"-354\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeem-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeem-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeem-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeem-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeemTwodotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jeem-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"392\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeemTwodotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A2\"/>\n  <outline>\n    <component base=\"jeem-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"392\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeemTwodotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jeem-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeemTwodotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jeem-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"20\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/jeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0698\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"130\" yOffset=\"143\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/k.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"k\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006B\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"278\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"310\" y=\"377\" type=\"line\"/>\n      <point x=\"480\" y=\"377\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"377\"/>\n      <point x=\"1031\" y=\"601\"/>\n      <point x=\"1089\" y=\"1060\" type=\"curve\"/>\n      <point x=\"810\" y=\"1060\" type=\"line\"/>\n      <point x=\"769\" y=\"748\"/>\n      <point x=\"668\" y=\"634\"/>\n      <point x=\"430\" y=\"634\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"414\" y=\"0\" type=\"line\"/>\n      <point x=\"414\" y=\"1500\" type=\"line\"/>\n      <point x=\"143\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"836\" y=\"0\" type=\"line\"/>\n      <point x=\"1157\" y=\"0\" type=\"line\"/>\n      <point x=\"818\" y=\"598\" type=\"line\"/>\n      <point x=\"576\" y=\"516\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043A\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"536\" y=\"552\" type=\"line\"/>\n      <point x=\"692\" y=\"552\" type=\"line\"/>\n      <point x=\"801\" y=\"552\"/>\n      <point x=\"872\" y=\"596\"/>\n      <point x=\"894\" y=\"674\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"759\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"933\" y=\"795\"/>\n      <point x=\"963\" y=\"813\"/>\n      <point x=\"1010\" y=\"813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"813\" type=\"line\"/>\n      <point x=\"1070\" y=\"1065\" type=\"line\"/>\n      <point x=\"993\" y=\"1065\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"1065\"/>\n      <point x=\"728\" y=\"1009\"/>\n      <point x=\"695\" y=\"895\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"738\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"685\"/>\n      <point x=\"593\" y=\"656\"/>\n      <point x=\"519\" y=\"656\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"141\" y=\"0\" type=\"line\"/>\n      <point x=\"412\" y=\"0\" type=\"line\"/>\n      <point x=\"412\" y=\"1060\" type=\"line\"/>\n      <point x=\"141\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"397\" y=\"404\" type=\"line\"/>\n      <point x=\"681\" y=\"404\" type=\"line\"/>\n      <point x=\"681\" y=\"656\" type=\"line\"/>\n      <point x=\"397\" y=\"656\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1003\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"-5\" type=\"line\"/>\n      <point x=\"1080\" y=\"247\" type=\"line\"/>\n      <point x=\"1030\" y=\"247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"247\"/>\n      <point x=\"953\" y=\"265\"/>\n      <point x=\"941\" y=\"301\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"386\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"464\"/>\n      <point x=\"816\" y=\"508\"/>\n      <point x=\"702\" y=\"508\" type=\"curve\"/>\n      <point x=\"536\" y=\"508\" type=\"line\"/>\n      <point x=\"519\" y=\"404\" type=\"line\"/>\n      <point x=\"594\" y=\"404\"/>\n      <point x=\"639\" y=\"375\"/>\n      <point x=\"651\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"165\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"51\"/>\n      <point x=\"823\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ka-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"239\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"545\" y=\"552\" type=\"line\"/>\n      <point x=\"702\" y=\"552\" type=\"line\"/>\n      <point x=\"811\" y=\"552\"/>\n      <point x=\"882\" y=\"596\"/>\n      <point x=\"904\" y=\"674\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"931\" y=\"759\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"795\"/>\n      <point x=\"973\" y=\"813\"/>\n      <point x=\"1020\" y=\"813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"813\" type=\"line\"/>\n      <point x=\"1080\" y=\"1065\" type=\"line\"/>\n      <point x=\"1003\" y=\"1065\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"1065\"/>\n      <point x=\"738\" y=\"1009\"/>\n      <point x=\"705\" y=\"895\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"738\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"685\"/>\n      <point x=\"603\" y=\"656\"/>\n      <point x=\"529\" y=\"656\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"1500\" type=\"line\"/>\n      <point x=\"151\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"407\" y=\"404\" type=\"line\"/>\n      <point x=\"691\" y=\"404\" type=\"line\"/>\n      <point x=\"691\" y=\"656\" type=\"line\"/>\n      <point x=\"407\" y=\"656\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1013\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"-5\" type=\"line\"/>\n      <point x=\"1090\" y=\"247\" type=\"line\"/>\n      <point x=\"1040\" y=\"247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"993\" y=\"247\"/>\n      <point x=\"962\" y=\"265\"/>\n      <point x=\"951\" y=\"301\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"386\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"464\"/>\n      <point x=\"826\" y=\"508\"/>\n      <point x=\"712\" y=\"508\" type=\"curve\"/>\n      <point x=\"545\" y=\"508\" type=\"line\"/>\n      <point x=\"529\" y=\"404\" type=\"line\"/>\n      <point x=\"604\" y=\"404\"/>\n      <point x=\"649\" y=\"375\"/>\n      <point x=\"661\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"697\" y=\"165\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"51\"/>\n      <point x=\"833\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kadescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"049B\"/>\n  <anchor x=\"590\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"535\" y=\"552\" type=\"line\"/>\n      <point x=\"692\" y=\"552\" type=\"line\"/>\n      <point x=\"801\" y=\"552\"/>\n      <point x=\"872\" y=\"596\"/>\n      <point x=\"894\" y=\"674\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"759\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"932\" y=\"795\"/>\n      <point x=\"963\" y=\"813\"/>\n      <point x=\"1010\" y=\"813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"813\" type=\"line\"/>\n      <point x=\"1070\" y=\"1065\" type=\"line\"/>\n      <point x=\"993\" y=\"1065\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"1065\"/>\n      <point x=\"728\" y=\"1009\"/>\n      <point x=\"695\" y=\"895\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"738\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"685\"/>\n      <point x=\"593\" y=\"656\"/>\n      <point x=\"519\" y=\"656\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"141\" y=\"0\" type=\"line\"/>\n      <point x=\"412\" y=\"0\" type=\"line\"/>\n      <point x=\"412\" y=\"1060\" type=\"line\"/>\n      <point x=\"141\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"397\" y=\"404\" type=\"line\"/>\n      <point x=\"681\" y=\"404\" type=\"line\"/>\n      <point x=\"681\" y=\"656\" type=\"line\"/>\n      <point x=\"397\" y=\"656\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"904\" y=\"-270\" type=\"line\"/>\n      <point x=\"1173\" y=\"-270\" type=\"line\"/>\n      <point x=\"1173\" y=\"247\" type=\"line\"/>\n      <point x=\"904\" y=\"247\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1003\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"-5\" type=\"line\"/>\n      <point x=\"1080\" y=\"247\" type=\"line\"/>\n      <point x=\"1030\" y=\"247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"247\"/>\n      <point x=\"952\" y=\"265\"/>\n      <point x=\"941\" y=\"301\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"386\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"464\"/>\n      <point x=\"816\" y=\"508\"/>\n      <point x=\"702\" y=\"508\" type=\"curve\"/>\n      <point x=\"535\" y=\"508\" type=\"line\"/>\n      <point x=\"519\" y=\"404\" type=\"line\"/>\n      <point x=\"594\" y=\"404\"/>\n      <point x=\"639\" y=\"375\"/>\n      <point x=\"651\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"165\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"51\"/>\n      <point x=\"823\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kaf-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"555\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"534\" y=\"1087\" name=\"top\"/>\n  <anchor x=\"536\" y=\"1055\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"505\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"-10\"/>\n      <point x=\"879\" y=\"25\"/>\n      <point x=\"972\" y=\"131\" type=\"curve\"/>\n      <point x=\"1045\" y=\"131\" type=\"line\"/>\n      <point x=\"1093\" y=\"187\"/>\n      <point x=\"1141\" y=\"310\"/>\n      <point x=\"1139\" y=\"394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"1420\" type=\"line\"/>\n      <point x=\"854\" y=\"1420\" type=\"line\"/>\n      <point x=\"881\" y=\"467\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"317\"/>\n      <point x=\"844\" y=\"285\"/>\n      <point x=\"493\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"285\"/>\n      <point x=\"244\" y=\"324\"/>\n      <point x=\"244\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"482\"/>\n      <point x=\"247\" y=\"530\"/>\n      <point x=\"250\" y=\"572\" type=\"curve\"/>\n      <point x=\"28\" y=\"572\" type=\"line\"/>\n      <point x=\"15\" y=\"518\"/>\n      <point x=\"3\" y=\"426\"/>\n      <point x=\"3\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3\" y=\"114\"/>\n      <point x=\"145\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"502\" y=\"511\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"511\"/>\n      <point x=\"728\" y=\"565\"/>\n      <point x=\"728\" y=\"669\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"715\"/>\n      <point x=\"711\" y=\"751\"/>\n      <point x=\"634\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"820\"/>\n      <point x=\"575\" y=\"825\"/>\n      <point x=\"575\" y=\"837\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"848\"/>\n      <point x=\"606\" y=\"861\"/>\n      <point x=\"716\" y=\"877\" type=\"curve\"/>\n      <point x=\"709\" y=\"1044\" type=\"line\"/>\n      <point x=\"480\" y=\"997\"/>\n      <point x=\"409\" y=\"900\"/>\n      <point x=\"409\" y=\"829\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"780\"/>\n      <point x=\"443\" y=\"740\"/>\n      <point x=\"499\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"676\"/>\n      <point x=\"562\" y=\"673\"/>\n      <point x=\"562\" y=\"658\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"647\"/>\n      <point x=\"544\" y=\"644\"/>\n      <point x=\"496\" y=\"644\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"644\"/>\n      <point x=\"398\" y=\"650\"/>\n      <point x=\"345\" y=\"659\" type=\"curve\"/>\n      <point x=\"350\" y=\"525\" type=\"line\"/>\n      <point x=\"386\" y=\"517\"/>\n      <point x=\"443\" y=\"511\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1139\" y=\"285\"/>\n      <point x=\"1141\" y=\"310\"/>\n      <point x=\"1139\" y=\"394\" type=\"curve\"/>\n      <point x=\"995\" y=\"188\" type=\"line\"/>\n      <point x=\"995\" y=\"42\"/>\n      <point x=\"1075\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kaf-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0643\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"555\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"534\" y=\"1087\" name=\"top\"/>\n  <anchor x=\"536\" y=\"1055\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"505\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"-10\"/>\n      <point x=\"1144\" y=\"131\"/>\n      <point x=\"1139\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"1420\" type=\"line\"/>\n      <point x=\"854\" y=\"1420\" type=\"line\"/>\n      <point x=\"881\" y=\"467\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"317\"/>\n      <point x=\"844\" y=\"285\"/>\n      <point x=\"493\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"285\"/>\n      <point x=\"244\" y=\"324\"/>\n      <point x=\"244\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"482\"/>\n      <point x=\"247\" y=\"530\"/>\n      <point x=\"250\" y=\"572\" type=\"curve\"/>\n      <point x=\"28\" y=\"572\" type=\"line\"/>\n      <point x=\"15\" y=\"518\"/>\n      <point x=\"3\" y=\"426\"/>\n      <point x=\"3\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3\" y=\"114\"/>\n      <point x=\"145\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"502\" y=\"511\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"511\"/>\n      <point x=\"728\" y=\"565\"/>\n      <point x=\"728\" y=\"669\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"715\"/>\n      <point x=\"711\" y=\"751\"/>\n      <point x=\"634\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"820\"/>\n      <point x=\"575\" y=\"825\"/>\n      <point x=\"575\" y=\"837\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"848\"/>\n      <point x=\"606\" y=\"861\"/>\n      <point x=\"716\" y=\"877\" type=\"curve\"/>\n      <point x=\"709\" y=\"1044\" type=\"line\"/>\n      <point x=\"480\" y=\"997\"/>\n      <point x=\"409\" y=\"900\"/>\n      <point x=\"409\" y=\"829\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"780\"/>\n      <point x=\"443\" y=\"740\"/>\n      <point x=\"499\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"676\"/>\n      <point x=\"562\" y=\"673\"/>\n      <point x=\"562\" y=\"658\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"647\"/>\n      <point x=\"544\" y=\"644\"/>\n      <point x=\"496\" y=\"644\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"644\"/>\n      <point x=\"398\" y=\"650\"/>\n      <point x=\"345\" y=\"659\" type=\"curve\"/>\n      <point x=\"350\" y=\"525\" type=\"line\"/>\n      <point x=\"386\" y=\"517\"/>\n      <point x=\"443\" y=\"511\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kaf-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"569\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"569\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"495\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"433\" y=\"1143\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"line\"/>\n      <point x=\"369\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"695\" y=\"-10\"/>\n      <point x=\"857\" y=\"97\"/>\n      <point x=\"857\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"857\" y=\"484\"/>\n      <point x=\"767\" y=\"605\"/>\n      <point x=\"426\" y=\"956\" type=\"curve\"/>\n      <point x=\"378\" y=\"779\" type=\"line\"/>\n      <point x=\"1014\" y=\"1137\" type=\"line\"/>\n      <point x=\"1009\" y=\"1443\" type=\"line\"/>\n      <point x=\"249\" y=\"989\" type=\"line\"/>\n      <point x=\"233\" y=\"783\" type=\"line\"/>\n      <point x=\"501\" y=\"481\"/>\n      <point x=\"580\" y=\"416\"/>\n      <point x=\"580\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"302\"/>\n      <point x=\"553\" y=\"285\"/>\n      <point x=\"377\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"285\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kaf-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"649\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"649\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"438\" y=\"1143\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"973\" y=\"285\"/>\n      <point x=\"883\" y=\"313\"/>\n      <point x=\"815\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"426\" y=\"956\" type=\"line\"/>\n      <point x=\"378\" y=\"779\" type=\"line\"/>\n      <point x=\"1014\" y=\"1137\" type=\"line\"/>\n      <point x=\"1009\" y=\"1443\" type=\"line\"/>\n      <point x=\"249\" y=\"989\" type=\"line\"/>\n      <point x=\"233\" y=\"783\" type=\"line\"/>\n      <point x=\"631\" y=\"208\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"25\"/>\n      <point x=\"853\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"line\"/>\n      <point x=\"329\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"-10\"/>\n      <point x=\"617\" y=\"42\"/>\n      <point x=\"661\" y=\"139\" type=\"curve\"/>\n      <point x=\"724\" y=\"139\" type=\"line\"/>\n      <point x=\"752\" y=\"340\" type=\"line\"/>\n      <point x=\"556\" y=\"370\" type=\"line\"/>\n      <point x=\"554\" y=\"302\"/>\n      <point x=\"523\" y=\"285\"/>\n      <point x=\"337\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"285\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kaf-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DB\"/>\n  <guideline x=\"148\" y=\"806\" angle=\"90\"/>\n  <anchor x=\"442\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"736\" y=\"0\" type=\"line\"/>\n      <point x=\"994\" y=\"0\" type=\"line\"/>\n      <point x=\"994\" y=\"809\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"1067\"/>\n      <point x=\"850\" y=\"1200\"/>\n      <point x=\"563\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"350\" y=\"1200\"/>\n      <point x=\"268\" y=\"1234\"/>\n      <point x=\"238\" y=\"1253\" type=\"curve\"/>\n      <point x=\"148\" y=\"1018\" type=\"line\"/>\n      <point x=\"214\" y=\"970\"/>\n      <point x=\"311\" y=\"930\"/>\n      <point x=\"424\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"930\"/>\n      <point x=\"736\" y=\"874\"/>\n      <point x=\"736\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"0\" type=\"line\"/>\n      <point x=\"994\" y=\"0\" type=\"line\"/>\n      <point x=\"994\" y=\"270\" type=\"line\"/>\n      <point x=\"150\" y=\"270\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-64\" yOffset=\"513\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AC\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-64\" yOffset=\"513\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-167\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-162\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"444\" yOffset=\"978\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>keheh-ar.fina</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AB\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"444\" yOffset=\"978\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafR_ing-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafRing-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"569\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"ringArabic\" xOffset=\"234\" yOffset=\"978\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafR_ing-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafRing-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"649\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"ringArabic\" xOffset=\"234\" yOffset=\"978\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"552\" y=\"-648\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-45\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AE\"/>\n  <anchor x=\"552\" y=\"-648\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-45\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"572\" y=\"-648\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-31\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"652\" y=\"-648\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"49\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"545.9\" y=\"1381.8\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"116\" yOffset=\"683\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077F\"/>\n  <anchor x=\"545.9\" y=\"1381.8\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"116\" yOffset=\"683\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"699\" y=\"687\" angle=\"0\"/>\n  <anchor x=\"419\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"-15\" yOffset=\"750\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"438.9\" y=\"1493.8\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"-10\" yOffset=\"750\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB3B\"/>\n  <outline>\n    <component base=\"kaf-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-158\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"12\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"240\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"4\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"-10\"/>\n      <point x=\"1022\" y=\"-5\"/>\n      <point x=\"1022\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"572\"/>\n      <point x=\"923\" y=\"642\"/>\n      <point x=\"668\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"256\" y=\"642\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"173\" y=\"642\"/>\n      <point x=\"156\" y=\"652\"/>\n      <point x=\"156\" y=\"669\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"156\" y=\"698\"/>\n      <point x=\"285\" y=\"749\"/>\n      <point x=\"569\" y=\"859\" type=\"curve\"/>\n      <point x=\"562\" y=\"1152\" type=\"line\"/>\n      <point x=\"84\" y=\"922\"/>\n      <point x=\"-77\" y=\"772\"/>\n      <point x=\"-77\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-77\" y=\"451\"/>\n      <point x=\"-10\" y=\"370\"/>\n      <point x=\"261\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"370\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"370\"/>\n      <point x=\"818\" y=\"365\"/>\n      <point x=\"818\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"292\"/>\n      <point x=\"690\" y=\"285\"/>\n      <point x=\"25\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-565\" y=\"285\"/>\n      <point x=\"-627\" y=\"315\"/>\n      <point x=\"-627\" y=\"484\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-627\" y=\"536\"/>\n      <point x=\"-621\" y=\"581\"/>\n      <point x=\"-608\" y=\"675\" type=\"curve\"/>\n      <point x=\"-830\" y=\"675\" type=\"line\"/>\n      <point x=\"-857\" y=\"579\"/>\n      <point x=\"-872\" y=\"506\"/>\n      <point x=\"-872\" y=\"414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-872\" y=\"115\"/>\n      <point x=\"-754\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"12\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"240\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-10\"/>\n      <point x=\"1280\" y=\"41\"/>\n      <point x=\"1280\" y=\"146\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1280\" y=\"244\"/>\n      <point x=\"1256\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"285\"/>\n      <point x=\"900\" y=\"290\"/>\n      <point x=\"828\" y=\"305\" type=\"curve\"/>\n      <point x=\"751\" y=\"72\" type=\"line\"/>\n      <point x=\"847\" y=\"72\" type=\"line\"/>\n      <point x=\"877\" y=\"9\"/>\n      <point x=\"975\" y=\"-10\"/>\n    </contour>\n    <component base=\"kafswash-ar.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-10\"/>\n      <point x=\"1280\" y=\"41\"/>\n      <point x=\"1280\" y=\"146\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1280\" y=\"244\"/>\n      <point x=\"1256\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1135\" y=\"285\"/>\n      <point x=\"1080\" y=\"290\"/>\n      <point x=\"1008\" y=\"305\" type=\"curve\"/>\n      <point x=\"931\" y=\"72\" type=\"line\"/>\n      <point x=\"1035\" y=\"72\" type=\"line\"/>\n      <point x=\"1064\" y=\"11\"/>\n      <point x=\"1103\" y=\"-10\"/>\n    </contour>\n    <component base=\"kafswash-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=kafswash-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AA\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"596\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"505\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"993\" y=\"-9\"/>\n      <point x=\"1194\" y=\"113\"/>\n      <point x=\"1194\" y=\"353\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1194\" y=\"552\"/>\n      <point x=\"1105\" y=\"642\"/>\n      <point x=\"870\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"642\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"602\" y=\"642\"/>\n      <point x=\"585\" y=\"652\"/>\n      <point x=\"585\" y=\"669\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"585\" y=\"698\"/>\n      <point x=\"644\" y=\"729\"/>\n      <point x=\"928\" y=\"859\" type=\"curve\"/>\n      <point x=\"921\" y=\"1152\" type=\"line\"/>\n      <point x=\"503\" y=\"922\"/>\n      <point x=\"352\" y=\"772\"/>\n      <point x=\"352\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"352\" y=\"491\"/>\n      <point x=\"399\" y=\"370\"/>\n      <point x=\"690\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"370\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"370\"/>\n      <point x=\"990\" y=\"360\"/>\n      <point x=\"990\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"990\" y=\"301\"/>\n      <point x=\"954\" y=\"285\"/>\n      <point x=\"533\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"285\"/>\n      <point x=\"231\" y=\"330\"/>\n      <point x=\"231\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"231\" y=\"498\"/>\n      <point x=\"236\" y=\"520\"/>\n      <point x=\"239\" y=\"573\" type=\"curve\"/>\n      <point x=\"34\" y=\"573\" type=\"line\"/>\n      <point x=\"22\" y=\"505\"/>\n      <point x=\"13\" y=\"436\"/>\n      <point x=\"13\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"13\" y=\"94\"/>\n      <point x=\"145\" y=\"-11\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"416\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"-10\" type=\"line\"/>\n      <point x=\"336\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"-10\"/>\n      <point x=\"1152\" y=\"103\"/>\n      <point x=\"1152\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1152\" y=\"572\"/>\n      <point x=\"1063\" y=\"642\"/>\n      <point x=\"828\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"642\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"642\"/>\n      <point x=\"286\" y=\"652\"/>\n      <point x=\"286\" y=\"669\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"286\" y=\"698\"/>\n      <point x=\"415\" y=\"749\"/>\n      <point x=\"699\" y=\"859\" type=\"curve\"/>\n      <point x=\"692\" y=\"1152\" type=\"line\"/>\n      <point x=\"214\" y=\"922\"/>\n      <point x=\"53\" y=\"772\"/>\n      <point x=\"53\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"53\" y=\"471\"/>\n      <point x=\"120\" y=\"370\"/>\n      <point x=\"391\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"370\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"370\"/>\n      <point x=\"948\" y=\"361\"/>\n      <point x=\"948\" y=\"332\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"299\"/>\n      <point x=\"912\" y=\"285\"/>\n      <point x=\"364\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-1\" y=\"285\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"446\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"-10\" type=\"line\"/>\n      <point x=\"336\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"-10\"/>\n      <point x=\"1025\" y=\"103\"/>\n      <point x=\"1025\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"562\"/>\n      <point x=\"936\" y=\"642\"/>\n      <point x=\"701\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"642\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"642\"/>\n      <point x=\"416\" y=\"652\"/>\n      <point x=\"416\" y=\"669\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"698\"/>\n      <point x=\"475\" y=\"729\"/>\n      <point x=\"759\" y=\"859\" type=\"curve\"/>\n      <point x=\"752\" y=\"1152\" type=\"line\"/>\n      <point x=\"334\" y=\"922\"/>\n      <point x=\"183\" y=\"772\"/>\n      <point x=\"183\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"491\"/>\n      <point x=\"230\" y=\"370\"/>\n      <point x=\"521\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"370\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"370\"/>\n      <point x=\"821\" y=\"362\"/>\n      <point x=\"821\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"298\"/>\n      <point x=\"785\" y=\"285\"/>\n      <point x=\"364\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-1\" y=\"285\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.medi.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.medi.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"416\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-10\"/>\n      <point x=\"1280\" y=\"41\"/>\n      <point x=\"1280\" y=\"146\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1280\" y=\"244\"/>\n      <point x=\"1256\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"285\"/>\n      <point x=\"1022\" y=\"287\"/>\n      <point x=\"950\" y=\"295\" type=\"curve\"/>\n      <point x=\"873\" y=\"72\" type=\"line\"/>\n      <point x=\"979\" y=\"72\" type=\"line\"/>\n      <point x=\"1018\" y=\"11\"/>\n      <point x=\"1085\" y=\"-10\"/>\n    </contour>\n    <component base=\"kafswash-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>kafswash-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"436\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-10\"/>\n      <point x=\"1280\" y=\"41\"/>\n      <point x=\"1280\" y=\"146\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1280\" y=\"244\"/>\n      <point x=\"1256\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"957\" y=\"285\"/>\n      <point x=\"902\" y=\"290\"/>\n      <point x=\"830\" y=\"305\" type=\"curve\"/>\n      <point x=\"753\" y=\"72\" type=\"line\"/>\n      <point x=\"869\" y=\"72\" type=\"line\"/>\n      <point x=\"899\" y=\"12\"/>\n      <point x=\"925\" y=\"-10\"/>\n    </contour>\n    <component base=\"kafswash-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>kafswash-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kaiS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaiSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03D7\"/>\n  <anchor x=\"590\" y=\"-280\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"392\" y=\"0\" type=\"line\"/>\n      <point x=\"1134\" y=\"911\" type=\"line\"/>\n      <point x=\"935\" y=\"1080\" type=\"line\"/>\n      <point x=\"604\" y=\"679\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"562\"/>\n      <point x=\"454\" y=\"437\"/>\n      <point x=\"450\" y=\"304\" type=\"curve\"/>\n      <point x=\"354\" y=\"304\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"141\" y=\"0\" type=\"line\"/>\n      <point x=\"392\" y=\"0\" type=\"line\"/>\n      <point x=\"412\" y=\"107\" type=\"line\"/>\n      <point x=\"412\" y=\"1060\" type=\"line\"/>\n      <point x=\"141\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"851\" y=\"-395\" type=\"line\"/>\n      <point x=\"1122\" y=\"-395\" type=\"line\"/>\n      <point x=\"1122\" y=\"25\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1122\" y=\"105\"/>\n      <point x=\"1103\" y=\"152\"/>\n      <point x=\"1061\" y=\"210\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"583\" type=\"line\"/>\n      <point x=\"582\" y=\"443\" type=\"line\"/>\n      <point x=\"811\" y=\"129\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"91\"/>\n      <point x=\"851\" y=\"55\"/>\n      <point x=\"851\" y=\"-13\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kappa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kappa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BA\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"606\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"392\" y=\"0\" type=\"line\"/>\n      <point x=\"1134\" y=\"911\" type=\"line\"/>\n      <point x=\"935\" y=\"1080\" type=\"line\"/>\n      <point x=\"604\" y=\"679\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"562\"/>\n      <point x=\"454\" y=\"437\"/>\n      <point x=\"450\" y=\"304\" type=\"curve\"/>\n      <point x=\"354\" y=\"304\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"141\" y=\"0\" type=\"line\"/>\n      <point x=\"392\" y=\"0\" type=\"line\"/>\n      <point x=\"412\" y=\"107\" type=\"line\"/>\n      <point x=\"412\" y=\"1060\" type=\"line\"/>\n      <point x=\"141\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"838\" y=\"0\" type=\"line\"/>\n      <point x=\"1167\" y=\"0\" type=\"line\"/>\n      <point x=\"756\" y=\"608\" type=\"line\"/>\n      <point x=\"532\" y=\"468\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kashida-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kashida-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0640\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"line\"/>\n      <point x=\"1188\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"216\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"285\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kasra-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kasra-ar\" format=\"2\">\n  <unicode hex=\"0650\"/>\n  <anchor x=\"598\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-237\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_fatha-ar\" xOffset=\"3\" yOffset=\"-1568\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fatha-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kasratan-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kasratan-ar\" format=\"2\">\n  <unicode hex=\"064D\"/>\n  <anchor x=\"608\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-497\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_fatha-ar\" yScale=\"0.9999\" yOffset=\"-1799\"/>\n    <component base=\"_fatha-ar\" yScale=\"0.9999\" yOffset=\"-1599\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fatha-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0137\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E33\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/keheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"keheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"555\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"654\" y=\"1143\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1143\" y=\"285\"/>\n      <point x=\"1114\" y=\"300\"/>\n      <point x=\"1035\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"956\" type=\"line\"/>\n      <point x=\"588\" y=\"779\" type=\"line\"/>\n      <point x=\"1224\" y=\"1137\" type=\"line\"/>\n      <point x=\"1219\" y=\"1443\" type=\"line\"/>\n      <point x=\"459\" y=\"989\" type=\"line\"/>\n      <point x=\"443\" y=\"783\" type=\"line\"/>\n      <point x=\"851\" y=\"208\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"985\" y=\"20\"/>\n      <point x=\"1063\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"517\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"-10\"/>\n      <point x=\"829\" y=\"42\"/>\n      <point x=\"881\" y=\"139\" type=\"curve\"/>\n      <point x=\"944\" y=\"139\" type=\"line\"/>\n      <point x=\"972\" y=\"340\" type=\"line\"/>\n      <point x=\"776\" y=\"370\" type=\"line\"/>\n      <point x=\"774\" y=\"302\"/>\n      <point x=\"713\" y=\"285\"/>\n      <point x=\"537\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"285\"/>\n      <point x=\"250\" y=\"314\"/>\n      <point x=\"250\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"482\"/>\n      <point x=\"254\" y=\"562\"/>\n      <point x=\"262\" y=\"632\" type=\"curve\"/>\n      <point x=\"34\" y=\"632\" type=\"line\"/>\n      <point x=\"14\" y=\"561\"/>\n      <point x=\"3\" y=\"466\"/>\n      <point x=\"3\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3\" y=\"124\"/>\n      <point x=\"117\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/keheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"keheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A9\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"555\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"654\" y=\"1143\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"537\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"913\" y=\"-10\"/>\n      <point x=\"1067\" y=\"97\"/>\n      <point x=\"1067\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1067\" y=\"484\"/>\n      <point x=\"977\" y=\"605\"/>\n      <point x=\"636\" y=\"956\" type=\"curve\"/>\n      <point x=\"588\" y=\"779\" type=\"line\"/>\n      <point x=\"1224\" y=\"1137\" type=\"line\"/>\n      <point x=\"1219\" y=\"1443\" type=\"line\"/>\n      <point x=\"459\" y=\"989\" type=\"line\"/>\n      <point x=\"443\" y=\"783\" type=\"line\"/>\n      <point x=\"711\" y=\"481\"/>\n      <point x=\"790\" y=\"416\"/>\n      <point x=\"790\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"302\"/>\n      <point x=\"723\" y=\"285\"/>\n      <point x=\"537\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"285\"/>\n      <point x=\"250\" y=\"314\"/>\n      <point x=\"250\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"482\"/>\n      <point x=\"254\" y=\"562\"/>\n      <point x=\"262\" y=\"632\" type=\"curve\"/>\n      <point x=\"34\" y=\"632\" type=\"line\"/>\n      <point x=\"14\" y=\"561\"/>\n      <point x=\"3\" y=\"466\"/>\n      <point x=\"3\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3\" y=\"124\"/>\n      <point x=\"137\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/keheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"keheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/keheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"keheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"54\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0762\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"54\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-167\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-162\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"612\" y=\"1634\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"206\" yOffset=\"764\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0763\"/>\n  <anchor x=\"612\" y=\"1634\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"206\" yOffset=\"764\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"372\" y=\"1634\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"-15\" yOffset=\"764\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"402\" y=\"1634\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"-10\" yOffset=\"764\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-47\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063C\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-47\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-33\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"47\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0764\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-33\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"625\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"206\" yOffset=\"750\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063B\"/>\n  <anchor x=\"625\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"206\" yOffset=\"750\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"385\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"-15\" yOffset=\"750\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"411\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"-10\" yOffset=\"750\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kgreenlandic.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kgreenlandic\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0138\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"310\" y=\"377\" type=\"line\"/>\n      <point x=\"480\" y=\"377\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"377\"/>\n      <point x=\"1031\" y=\"601\"/>\n      <point x=\"1089\" y=\"1060\" type=\"curve\"/>\n      <point x=\"810\" y=\"1060\" type=\"line\"/>\n      <point x=\"769\" y=\"748\"/>\n      <point x=\"668\" y=\"634\"/>\n      <point x=\"430\" y=\"634\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"414\" y=\"0\" type=\"line\"/>\n      <point x=\"414\" y=\"1060\" type=\"line\"/>\n      <point x=\"143\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"836\" y=\"0\" type=\"line\"/>\n      <point x=\"1157\" y=\"0\" type=\"line\"/>\n      <point x=\"818\" y=\"598\" type=\"line\"/>\n      <point x=\"576\" y=\"516\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"khah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"khah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062E\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"khah-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"khah-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kip.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kip\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AD\"/>\n  <outline>\n    <contour>\n      <point x=\"700\" y=\"551\" type=\"line\"/>\n      <point x=\"1200\" y=\"551\" type=\"line\"/>\n      <point x=\"1200\" y=\"756\" type=\"line\"/>\n      <point x=\"700\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"551\" type=\"line\"/>\n      <point x=\"297\" y=\"551\" type=\"line\"/>\n      <point x=\"297\" y=\"756\" type=\"line\"/>\n      <point x=\"0\" y=\"756\" type=\"line\"/>\n    </contour>\n    <component base=\"K\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>K</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kirghizoe-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kirghizoe-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"_stroke\" yScale=\"0.9\" xOffset=\"-38\" yOffset=\"-400\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_stroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kirghizoe-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kirghizoe-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C5\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"_stroke\" yScale=\"0.9\" xOffset=\"-38\" yOffset=\"-400\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_stroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kirghizyu-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kirghizyu-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kirghizyu-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kirghizyu-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C9\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/kje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045C\"/>\n  <outline>\n    <component base=\"ka-cy\"/>\n    <component base=\"acutecomb\" xOffset=\"41\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/klinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"klinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E35\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/l.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"l\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006C\"/>\n  <anchor x=\"680\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"520\" y=\"784\" name=\"center\"/>\n  <anchor x=\"516\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"970\" y=\"1500\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"758\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"-20\"/>\n      <point x=\"977\" y=\"-8\"/>\n      <point x=\"1091\" y=\"22\" type=\"curve\"/>\n      <point x=\"1060\" y=\"300\" type=\"line\"/>\n      <point x=\"968\" y=\"274\"/>\n      <point x=\"901\" y=\"262\"/>\n      <point x=\"838\" y=\"262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"262\"/>\n      <point x=\"651\" y=\"319\"/>\n      <point x=\"651\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"1500\" type=\"line\"/>\n      <point x=\"381\" y=\"1500\" type=\"line\"/>\n      <point x=\"381\" y=\"442\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"119\"/>\n      <point x=\"491\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"81\" y=\"1251\" type=\"line\"/>\n      <point x=\"399\" y=\"1251\" type=\"line\"/>\n      <point x=\"399\" y=\"1500\" type=\"line\"/>\n      <point x=\"81\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013A\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-5\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1086\" y=\"285\"/>\n      <point x=\"1067\" y=\"311\"/>\n      <point x=\"1065\" y=\"387\" type=\"curve\"/>\n      <point x=\"971\" y=\"188\" type=\"line\"/>\n      <point x=\"991\" y=\"54\"/>\n      <point x=\"1055\" y=\"-10\"/>\n    </contour>\n    <component base=\"lam-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0644\"/>\n  <anchor x=\"562\" y=\"-407\" name=\"bottom\"/>\n  <anchor x=\"563\" y=\"-337\" name=\"bottom.dot\"/>\n  <anchor x=\"917\" y=\"951\" name=\"center\"/>\n  <anchor x=\"904\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"907\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"565\" y=\"-377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"-377\"/>\n      <point x=\"1080\" y=\"-194\"/>\n      <point x=\"1069\" y=\"238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"1420\" type=\"line\"/>\n      <point x=\"764\" y=\"1420\" type=\"line\"/>\n      <point x=\"803\" y=\"151\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"-39\"/>\n      <point x=\"786\" y=\"-92\"/>\n      <point x=\"567\" y=\"-92\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"365\" y=\"-92\"/>\n      <point x=\"305\" y=\"-31\"/>\n      <point x=\"305\" y=\"132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"234\"/>\n      <point x=\"321\" y=\"359\"/>\n      <point x=\"351\" y=\"495\" type=\"curve\"/>\n      <point x=\"123\" y=\"495\" type=\"line\"/>\n      <point x=\"71\" y=\"334\"/>\n      <point x=\"49\" y=\"205\"/>\n      <point x=\"49\" y=\"75\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"49\" y=\"-222\"/>\n      <point x=\"216\" y=\"-377\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"859\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"859\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"847\" y=\"951\" name=\"center\"/>\n  <anchor x=\"831\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"834\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"771\" y=\"-10\"/>\n      <point x=\"995\" y=\"45\"/>\n      <point x=\"987\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"1420\" type=\"line\"/>\n      <point x=\"694\" y=\"1420\" type=\"line\"/>\n      <point x=\"721\" y=\"470\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"329\"/>\n      <point x=\"677\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-40\" y=\"285\"/>\n      <point x=\"-70\" y=\"253\"/>\n      <point x=\"-70\" y=\"145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"33\"/>\n      <point x=\"-51\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"893\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"893\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"922\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"924\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"328\" y=\"130\" type=\"line\"/>\n      <point x=\"499\" y=\"269\"/>\n      <point x=\"728\" y=\"434\"/>\n      <point x=\"890\" y=\"576\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"691\"/>\n      <point x=\"1063\" y=\"759\"/>\n      <point x=\"1056\" y=\"1073\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1420\" type=\"line\"/>\n      <point x=\"782\" y=\"1420\" type=\"line\"/>\n      <point x=\"797\" y=\"1037\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"863\"/>\n      <point x=\"802\" y=\"812\"/>\n      <point x=\"729\" y=\"744\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"581\" y=\"607\"/>\n      <point x=\"382\" y=\"446\"/>\n      <point x=\"170\" y=\"273\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"719\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"719\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"707\" y=\"951\" name=\"center\"/>\n  <anchor x=\"701\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"701\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"481\" y=\"-10\"/>\n      <point x=\"598\" y=\"41\"/>\n      <point x=\"670\" y=\"162\" type=\"curve\"/>\n      <point x=\"751\" y=\"162\" type=\"line\"/>\n      <point x=\"769\" y=\"324\" type=\"line\"/>\n      <point x=\"668\" y=\"248\" type=\"line\"/>\n      <point x=\"706\" y=\"53\"/>\n      <point x=\"905\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"285\"/>\n      <point x=\"859\" y=\"307\"/>\n      <point x=\"856\" y=\"439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"1420\" type=\"line\"/>\n      <point x=\"561\" y=\"1420\" type=\"line\"/>\n      <point x=\"588\" y=\"440\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"309\"/>\n      <point x=\"570\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-40\" y=\"285\"/>\n      <point x=\"-70\" y=\"253\"/>\n      <point x=\"-70\" y=\"145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"33\"/>\n      <point x=\"-51\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"923\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"925\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"960\" y=\"951\" name=\"center\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"945\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"944\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"338\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"-10\"/>\n      <point x=\"858\" y=\"189\"/>\n      <point x=\"891\" y=\"331\" type=\"curve\"/>\n      <point x=\"949\" y=\"333\" type=\"line\"/>\n      <point x=\"1006\" y=\"434\" type=\"line\"/>\n      <point x=\"905\" y=\"438\" type=\"line\"/>\n      <point x=\"922\" y=\"83\"/>\n      <point x=\"972\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"285\"/>\n      <point x=\"1104\" y=\"317\"/>\n      <point x=\"1101\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1072\" y=\"1420\" type=\"line\"/>\n      <point x=\"798\" y=\"1420\" type=\"line\"/>\n      <point x=\"825\" y=\"750\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"481\"/>\n      <point x=\"798\" y=\"394\"/>\n      <point x=\"582\" y=\"332\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"298\"/>\n      <point x=\"291\" y=\"287\"/>\n      <point x=\"72\" y=\"287\" type=\"curve\"/>\n      <point x=\"62\" y=\"39\" type=\"line\"/>\n      <point x=\"141\" y=\"6\"/>\n      <point x=\"240\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"381\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076A\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"_bar\" xScale=\"1.001\" xOffset=\"320\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"311\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"390\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_bar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"171\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"424\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"172\" y=\"548\" angle=\"0\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"307\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B6\"/>\n  <guideline x=\"166\" y=\"551\" angle=\"0\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"307\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"305\" y=\"819\" angle=\"0\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"234\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"305\" y=\"819\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"dotabove-ar\" xOffset=\"324\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"304\" y=\"835\" angle=\"0\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"101\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"304\" y=\"835\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"dotabove-ar\" xOffset=\"344\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"381\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>lam-ar.fina</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A6\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"381\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"311\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"390\" yOffset=\"798\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_doublebar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"171\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar.medi</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam-ar.medi</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"424\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar.medi</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam-ar.medi</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"908\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"367\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B7\"/>\n  <guideline x=\"166\" y=\"592\" angle=\"0\"/>\n  <guideline x=\"166\" y=\"551\" angle=\"0\"/>\n  <anchor x=\"908\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"367\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"838\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"294\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"925\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"384\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"698\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"161\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"945\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"404\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"-1\" yOffset=\"-329\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B8\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"-1\" yOffset=\"-329\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"257\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"293\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"117\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"325\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"307\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B5\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"307\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"vabove-ar\" xOffset=\"234\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"vabove-ar\" xOffset=\"324\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"vabove-ar\" xOffset=\"101\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"vabove-ar\" xOffset=\"344\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alef-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alef-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"293\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"923\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"293\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"945\" y=\"1545\" name=\"top_1\"/>\n  <anchor x=\"274\" y=\"1310\" name=\"top_2\"/>\n  <outline>\n    <contour>\n      <point x=\"338\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"-10\"/>\n      <point x=\"858\" y=\"189\"/>\n      <point x=\"891\" y=\"331\" type=\"curve\"/>\n      <point x=\"949\" y=\"333\" type=\"line\"/>\n      <point x=\"1006\" y=\"434\" type=\"line\"/>\n      <point x=\"905\" y=\"438\" type=\"line\"/>\n      <point x=\"922\" y=\"83\"/>\n      <point x=\"972\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"285\"/>\n      <point x=\"1104\" y=\"317\"/>\n      <point x=\"1101\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1072\" y=\"1420\" type=\"line\"/>\n      <point x=\"798\" y=\"1420\" type=\"line\"/>\n      <point x=\"825\" y=\"750\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"481\"/>\n      <point x=\"798\" y=\"394\"/>\n      <point x=\"582\" y=\"332\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"298\"/>\n      <point x=\"291\" y=\"287\"/>\n      <point x=\"72\" y=\"287\" type=\"curve\"/>\n      <point x=\"62\" y=\"39\" type=\"line\"/>\n      <point x=\"141\" y=\"6\"/>\n      <point x=\"240\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"735\" y=\"219\" type=\"curve\"/>\n      <point x=\"920\" y=\"379\" type=\"line\"/>\n      <point x=\"722\" y=\"700\"/>\n      <point x=\"479\" y=\"1025\"/>\n      <point x=\"243\" y=\"1298\" type=\"curve\"/>\n      <point x=\"36\" y=\"1122\" type=\"line\"/>\n      <point x=\"259\" y=\"858\"/>\n      <point x=\"530\" y=\"536\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alef-ar.fina.short.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alef-ar.fina.short\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"923\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"274\" y=\"1189\" name=\"top.dot\"/>\n  <anchor x=\"945\" y=\"1545\" name=\"top_1\"/>\n  <anchor x=\"274\" y=\"1253\" name=\"top_2\"/>\n  <outline>\n    <contour>\n      <point x=\"338\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"-10\"/>\n      <point x=\"858\" y=\"189\"/>\n      <point x=\"891\" y=\"331\" type=\"curve\"/>\n      <point x=\"949\" y=\"333\" type=\"line\"/>\n      <point x=\"1006\" y=\"434\" type=\"line\"/>\n      <point x=\"905\" y=\"438\" type=\"line\"/>\n      <point x=\"922\" y=\"83\"/>\n      <point x=\"972\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"285\"/>\n      <point x=\"1104\" y=\"317\"/>\n      <point x=\"1101\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1072\" y=\"1420\" type=\"line\"/>\n      <point x=\"798\" y=\"1420\" type=\"line\"/>\n      <point x=\"825\" y=\"750\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"481\"/>\n      <point x=\"798\" y=\"394\"/>\n      <point x=\"582\" y=\"332\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"298\"/>\n      <point x=\"291\" y=\"287\"/>\n      <point x=\"72\" y=\"287\" type=\"curve\"/>\n      <point x=\"62\" y=\"39\" type=\"line\"/>\n      <point x=\"141\" y=\"6\"/>\n      <point x=\"240\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"735\" y=\"219\" type=\"curve\"/>\n      <point x=\"920\" y=\"379\" type=\"line\"/>\n      <point x=\"722\" y=\"660\"/>\n      <point x=\"487\" y=\"943\"/>\n      <point x=\"243\" y=\"1198\" type=\"curve\"/>\n      <point x=\"46\" y=\"1013\" type=\"line\"/>\n      <point x=\"275\" y=\"769\"/>\n      <point x=\"530\" y=\"496\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alef-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alef-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"343\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"893\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"922\" y=\"1545\" name=\"top_1\"/>\n  <anchor x=\"294\" y=\"1317\" name=\"top_2\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-10\"/>\n      <point x=\"1093\" y=\"102\"/>\n      <point x=\"1093\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1093\" y=\"571\"/>\n      <point x=\"764\" y=\"826\"/>\n      <point x=\"244\" y=\"1308\" type=\"curve\"/>\n      <point x=\"51\" y=\"1098\" type=\"line\"/>\n      <point x=\"560\" y=\"621\"/>\n      <point x=\"826\" y=\"415\"/>\n      <point x=\"826\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"290\"/>\n      <point x=\"772\" y=\"285\"/>\n      <point x=\"634\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"285\"/>\n      <point x=\"480\" y=\"289\"/>\n      <point x=\"344\" y=\"300\" type=\"curve\"/>\n      <point x=\"328\" y=\"130\" type=\"line\"/>\n      <point x=\"499\" y=\"269\"/>\n      <point x=\"728\" y=\"434\"/>\n      <point x=\"890\" y=\"576\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"691\"/>\n      <point x=\"1063\" y=\"759\"/>\n      <point x=\"1056\" y=\"1073\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1420\" type=\"line\"/>\n      <point x=\"782\" y=\"1420\" type=\"line\"/>\n      <point x=\"797\" y=\"1037\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"863\"/>\n      <point x=\"803\" y=\"812\"/>\n      <point x=\"729\" y=\"744\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"581\" y=\"607\"/>\n      <point x=\"382\" y=\"446\"/>\n      <point x=\"170\" y=\"273\" type=\"curve\"/>\n      <point x=\"166\" y=\"10\" type=\"line\"/>\n      <point x=\"364\" y=\"-4\"/>\n      <point x=\"474\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alef-ar.short.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alef-ar.short\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"893\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"333\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"294\" y=\"1201\" name=\"top.dot\"/>\n  <anchor x=\"922\" y=\"1545\" name=\"top_1\"/>\n  <anchor x=\"294\" y=\"1265\" name=\"top_2\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-10\"/>\n      <point x=\"1093\" y=\"102\"/>\n      <point x=\"1093\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1093\" y=\"541\"/>\n      <point x=\"744\" y=\"786\"/>\n      <point x=\"224\" y=\"1198\" type=\"curve\"/>\n      <point x=\"51\" y=\"988\" type=\"line\"/>\n      <point x=\"560\" y=\"581\"/>\n      <point x=\"826\" y=\"385\"/>\n      <point x=\"826\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"290\"/>\n      <point x=\"772\" y=\"285\"/>\n      <point x=\"634\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"285\"/>\n      <point x=\"480\" y=\"289\"/>\n      <point x=\"344\" y=\"300\" type=\"curve\"/>\n      <point x=\"328\" y=\"130\" type=\"line\"/>\n      <point x=\"499\" y=\"269\"/>\n      <point x=\"729\" y=\"413\"/>\n      <point x=\"890\" y=\"576\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1024\" y=\"712\"/>\n      <point x=\"1063\" y=\"759\"/>\n      <point x=\"1056\" y=\"1073\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1420\" type=\"line\"/>\n      <point x=\"782\" y=\"1420\" type=\"line\"/>\n      <point x=\"797\" y=\"1037\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"863\"/>\n      <point x=\"800\" y=\"820\"/>\n      <point x=\"726\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"627\"/>\n      <point x=\"382\" y=\"446\"/>\n      <point x=\"170\" y=\"273\" type=\"curve\"/>\n      <point x=\"166\" y=\"10\" type=\"line\"/>\n      <point x=\"364\" y=\"-4\"/>\n      <point x=\"474\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alefH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.fina.short\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-346\" yOffset=\"64\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_2</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alefH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.short\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-326\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_2</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alefH_amzabelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefHamzabelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.fina\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-312\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alefH_amzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefHamzabelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"343\" y=\"-481\" name=\"bottom_2\"/>\n  <outline>\n    <component base=\"lam_alef-ar\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-262\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alefM_adda-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefMadda-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.fina.short\"/>\n    <component base=\"madda-ar\" xOffset=\"-329\" yOffset=\"66\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alefM_adda-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefMadda-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.short\"/>\n    <component base=\"madda-ar\" xOffset=\"-309\" yOffset=\"78\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alefW_asla-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefWasla-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.fina.short\"/>\n    <component base=\"wasla-ar\" xOffset=\"-377\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_alefW_asla-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefWasla-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.short\"/>\n    <component base=\"wasla-ar\" xOffset=\"-357\" yOffset=\"75\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lam_lam_heh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_lam_heh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"2039\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"1540\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"699\" y=\"-141\" name=\"bottom_3\"/>\n  <anchor x=\"2029\" y=\"1310\" name=\"top_1\"/>\n  <anchor x=\"1530\" y=\"1310\" name=\"top_2\"/>\n  <anchor x=\"832\" y=\"1270\" name=\"top_3\"/>\n  <outline>\n    <contour>\n      <point x=\"1229\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1365\" y=\"-9\"/>\n      <point x=\"1459\" y=\"41\"/>\n      <point x=\"1485\" y=\"162\" type=\"curve\"/>\n      <point x=\"1566\" y=\"162\" type=\"line\"/>\n      <point x=\"1584\" y=\"324\" type=\"line\"/>\n      <point x=\"1487\" y=\"248\" type=\"line\"/>\n      <point x=\"1515\" y=\"52\"/>\n      <point x=\"1612\" y=\"-10\"/>\n      <point x=\"1802\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2055\" y=\"-10\"/>\n      <point x=\"2191\" y=\"105\"/>\n      <point x=\"2181\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2158\" y=\"1196\" type=\"line\"/>\n      <point x=\"1884\" y=\"1196\" type=\"line\"/>\n      <point x=\"1911\" y=\"470\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1916\" y=\"329\"/>\n      <point x=\"1901\" y=\"285\"/>\n      <point x=\"1794\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1706\" y=\"285\"/>\n      <point x=\"1674\" y=\"314\"/>\n      <point x=\"1671\" y=\"439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1654\" y=\"1197\" type=\"line\"/>\n      <point x=\"1380\" y=\"1197\" type=\"line\"/>\n      <point x=\"1403\" y=\"430\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1407\" y=\"309\"/>\n      <point x=\"1358\" y=\"285\"/>\n      <point x=\"1272\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1193\" y=\"285\"/>\n      <point x=\"1162\" y=\"307\"/>\n      <point x=\"1161\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"997\" type=\"line\"/>\n      <point x=\"911\" y=\"997\" type=\"line\"/>\n      <point x=\"921\" y=\"286\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"39\"/>\n      <point x=\"1062\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"699\" y=\"137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"137\"/>\n      <point x=\"867\" y=\"157\"/>\n      <point x=\"897\" y=\"222\" type=\"curve\"/>\n      <point x=\"969\" y=\"222\" type=\"line\"/>\n      <point x=\"959\" y=\"435\" type=\"line\"/>\n      <point x=\"890\" y=\"427\"/>\n      <point x=\"766\" y=\"419\"/>\n      <point x=\"698\" y=\"419\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"419\"/>\n      <point x=\"529\" y=\"431\"/>\n      <point x=\"529\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"550\"/>\n      <point x=\"601\" y=\"583\"/>\n      <point x=\"985\" y=\"644\" type=\"curve\"/>\n      <point x=\"968\" y=\"901\" type=\"line\"/>\n      <point x=\"512\" y=\"803\"/>\n      <point x=\"300\" y=\"695\"/>\n      <point x=\"300\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"232\"/>\n      <point x=\"421\" y=\"137\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lambda.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lambda\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BB\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1068\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1115\" y=\"-20\"/>\n      <point x=\"1147\" y=\"-17\"/>\n      <point x=\"1191\" y=\"-8\" type=\"curve\"/>\n      <point x=\"1167\" y=\"236\" type=\"line\"/>\n      <point x=\"1137\" y=\"230\"/>\n      <point x=\"1118\" y=\"228\"/>\n      <point x=\"1096\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1024\" y=\"228\"/>\n      <point x=\"971\" y=\"267\"/>\n      <point x=\"948\" y=\"349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"1260\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"1460\"/>\n      <point x=\"516\" y=\"1520\"/>\n      <point x=\"328\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"281\" y=\"1520\"/>\n      <point x=\"249\" y=\"1517\"/>\n      <point x=\"205\" y=\"1508\" type=\"curve\"/>\n      <point x=\"229\" y=\"1264\" type=\"line\"/>\n      <point x=\"259\" y=\"1270\"/>\n      <point x=\"276\" y=\"1272\"/>\n      <point x=\"300\" y=\"1272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"368\" y=\"1272\"/>\n      <point x=\"415\" y=\"1250\"/>\n      <point x=\"438\" y=\"1168\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"251\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"43\"/>\n      <point x=\"877\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"357\" y=\"0\" type=\"line\"/>\n      <point x=\"510\" y=\"398\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"490\"/>\n      <point x=\"561\" y=\"603\"/>\n      <point x=\"535\" y=\"718\" type=\"curve\"/>\n      <point x=\"670\" y=\"759\" type=\"line\"/>\n      <point x=\"484\" y=\"1050\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lambdastroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lambdastroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019B\"/>\n  <outline>\n    <contour>\n      <point x=\"96\" y=\"822\" type=\"line\"/>\n      <point x=\"1082\" y=\"1124\" type=\"line\"/>\n      <point x=\"1030\" y=\"1349\" type=\"line\"/>\n      <point x=\"44\" y=\"1047\" type=\"line\"/>\n    </contour>\n    <component base=\"lambda\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lamed-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamed-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DC\"/>\n  <anchor x=\"372\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"992\" y=\"1200\" type=\"line\"/>\n      <point x=\"120\" y=\"1200\" type=\"line\"/>\n      <point x=\"120\" y=\"930\" type=\"line\"/>\n      <point x=\"992\" y=\"930\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"378\" y=\"1106\" type=\"line\"/>\n      <point x=\"378\" y=\"1500\" type=\"line\"/>\n      <point x=\"120\" y=\"1500\" type=\"line\"/>\n      <point x=\"120\" y=\"1106\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"734\" y=\"1200\" type=\"line\"/>\n      <point x=\"734\" y=\"752\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"437\"/>\n      <point x=\"704\" y=\"320\"/>\n      <point x=\"391\" y=\"249\" type=\"curve\"/>\n      <point x=\"450\" y=\"-19\" type=\"line\"/>\n      <point x=\"844\" y=\"56\"/>\n      <point x=\"992\" y=\"257\"/>\n      <point x=\"992\" y=\"652\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lameddagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lameddagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB3C\"/>\n  <outline>\n    <component base=\"lamed-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-228\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"largeCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EF\"/>\n  <note>\nuni25EF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"110\"/>\n      <point x=\"1200\" y=\"350\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1070\"/>\n      <point x=\"960\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1310\"/>\n      <point x=\"0\" y=\"1070\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"350\"/>\n      <point x=\"240\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"343\"/>\n      <point x=\"233\" y=\"490\"/>\n      <point x=\"233\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"930\"/>\n      <point x=\"380\" y=\"1077\"/>\n      <point x=\"600\" y=\"1077\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"1077\"/>\n      <point x=\"967\" y=\"930\"/>\n      <point x=\"967\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"967\" y=\"490\"/>\n      <point x=\"820\" y=\"343\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"332\"/>\r\n      <point x=\"800\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"602\"/>\r\n      <point x=\"800\" y=\"61\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"234\"/>\r\n      <point x=\"800\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"472\"/>\r\n      <point x=\"800\" y=\"-4\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"560\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"560\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE20\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE20.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE20.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE21.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE21\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE21.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE21.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE22.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE22\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE22.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE22.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"1144\"/>\r\n      <point x=\"800\" y=\"332\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"948\"/>\r\n      <point x=\"800\" y=\"234\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"640\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"640\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE27.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE27\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE27.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE27.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE28.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE28\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE28.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE28.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE29.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE29\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE29.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE29.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1685\"/>\r\n      <point x=\"1000\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"602\"/>\r\n      <point x=\"800\" y=\"61\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"332\"/>\r\n      <point x=\"800\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"602\"/>\r\n      <point x=\"400\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1424\"/>\r\n      <point x=\"1000\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"472\"/>\r\n      <point x=\"800\" y=\"-4\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"234\"/>\r\n      <point x=\"800\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"472\"/>\r\n      <point x=\"400\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1144\"/>\r\n      <point x=\"900\" y=\"1437\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"986\"/>\r\n      <point x=\"600\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1144\"/>\r\n      <point x=\"900\" y=\"760\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"309\"/>\r\n      <point x=\"600\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"948\"/>\r\n      <point x=\"900\" y=\"1206\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"810\"/>\r\n      <point x=\"600\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"948\"/>\r\n      <point x=\"900\" y=\"610\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"214\"/>\r\n      <point x=\"600\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE30.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE30\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2000\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE30.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE30.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1702\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE31.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE31\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-255\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE31.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE31.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-282\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE32.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE32\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE32.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE32.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE33.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE33\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"800\" y=\"873\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"800\" y=\"873\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE33.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE33.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"800\" y=\"710\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"800\" y=\"710\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"648\"/>\r\n      <point x=\"800\" y=\"1324\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"1098\"/>\r\n      <point x=\"800\" y=\"422\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"511\"/>\r\n      <point x=\"800\" y=\"1107\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"908\"/>\r\n      <point x=\"800\" y=\"313\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE37.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE37\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"1144\"/>\r\n      <point x=\"400\" y=\"1685\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"1144\"/>\r\n      <point x=\"800\" y=\"332\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE37.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE37.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"948\"/>\r\n      <point x=\"400\" y=\"1424\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"948\"/>\r\n      <point x=\"800\" y=\"234\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE38.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE38\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE38.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE38.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE39.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE39\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE39.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE39.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1685\"/>\r\n      <point x=\"1000\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"602\"/>\r\n      <point x=\"400\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1424\"/>\r\n      <point x=\"1000\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"472\"/>\r\n      <point x=\"400\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"560\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"560\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE40.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE40\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE40.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE40.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE41.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE41\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"647\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE41.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE41.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"600\" y=\"908\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"512\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE42.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE42\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE42.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE42.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE43.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE43\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"1144\"/>\r\n      <point x=\"400\" y=\"1685\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE43.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE43.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"948\"/>\r\n      <point x=\"400\" y=\"1424\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE44.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE44\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE44.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE44.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE45\"/>\r\n  <outline>\r\n    <component base=\"largeType-1CE43\"/>\r\n    <contour>\r\n      <point x=\"200\" y=\"1009\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"500\" y=\"602\"/>\r\n      <point x=\"500\" y=\"602\"/>\r\n      <point x=\"700\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"600\" y=\"61\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <component base=\"largeType-1CE43.stypo\"/>\r\n    <contour>\r\n      <point x=\"200\" y=\"829\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"500\" y=\"472\"/>\r\n      <point x=\"500\" y=\"472\"/>\r\n      <point x=\"700\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-4\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"640\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"640\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE49.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE49\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE49.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE49.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE50.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE50\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE50.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE50.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lari.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lari\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BE\"/>\n  <outline>\n    <contour>\n      <point x=\"330\" y=\"208\" type=\"line\"/>\n      <point x=\"760\" y=\"251\" type=\"line\"/>\n      <point x=\"503\" y=\"251\"/>\n      <point x=\"334\" y=\"449\"/>\n      <point x=\"334\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"1028\"/>\n      <point x=\"437\" y=\"1188\"/>\n      <point x=\"615\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"1188\"/>\n      <point x=\"877\" y=\"1075\"/>\n      <point x=\"877\" y=\"880\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"708\" type=\"line\"/>\n      <point x=\"1141\" y=\"708\" type=\"line\"/>\n      <point x=\"1141\" y=\"880\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"1236\"/>\n      <point x=\"950\" y=\"1440\"/>\n      <point x=\"615\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"1440\"/>\n      <point x=\"59\" y=\"1189\"/>\n      <point x=\"59\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"485\"/>\n      <point x=\"167\" y=\"329\"/>\n      <point x=\"330\" y=\"294\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"69\" y=\"0\" type=\"line\"/>\n      <point x=\"1123\" y=\"0\" type=\"line\"/>\n      <point x=\"1123\" y=\"251\" type=\"line\"/>\n      <point x=\"69\" y=\"251\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"429\" y=\"708\" type=\"line\"/>\n      <point x=\"579\" y=\"708\" type=\"line\"/>\n      <point x=\"579\" y=\"1568\" type=\"line\"/>\n      <point x=\"429\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"708\" type=\"line\"/>\n      <point x=\"796\" y=\"708\" type=\"line\"/>\n      <point x=\"796\" y=\"1568\" type=\"line\"/>\n      <point x=\"647\" y=\"1568\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/layerinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>lib</key>\n    <dict>\n      <key>com.schriftgestaltung.layerId</key>\n      <string>8E053A5E-67DA-4970-A6F5-068DBFE5AD21</string>\n      <key>com.schriftgestaltung.layerOrderInGlyph..notdef</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.AE</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.AEacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abreveacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevedotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevegrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevehookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevetilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Adieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Adotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Agrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ahookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alpha</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alpha-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alphatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Amacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aringacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Asmall</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Astroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Atilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.B</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.B.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Be-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Beta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.C</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.C.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.CR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Che-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Chedescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Chi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cstroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.D</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.D.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dafrican</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dcroat</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.De-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.De-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Delta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dze-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dzhe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ebreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ef-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ef-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Egrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ehookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.El-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.El-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Em-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Emacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.En-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Endescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eng</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eopen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Epsilon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Epsilontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Er-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ereversed</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ereversed-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Es-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Esh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Etatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eth</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Etilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ezh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.F</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.F.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Fhook</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.G</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.G.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gamma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gammaafrican</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gbreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ge-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Germandbls</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ghestroke-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gheupturn-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gsmall</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gstroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.H</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.H.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hadescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hardsign-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.IJ</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.IJ_acute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ia-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ibreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Icircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ie-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iegrave-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Igrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ihookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ii-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iigrave-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iishort-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Imacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Imacron-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Io-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iota</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotaafrican</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotadieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ismall</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Itilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iu-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.J</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Jacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Jcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Je-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.K</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.K.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ka-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kadescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.KaiSymbol</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kappa</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Klinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.L</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.L.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.LIG</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lambda</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ldot</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ldotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Llinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lmiddletilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lsmall</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.M</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.M.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Mu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.N</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.N.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ncaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ncommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nhookleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nlinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.OE</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Obarred-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Obreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Odieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Odotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ograve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohm</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohornacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorndotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorngrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohornhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacronacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacrongrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omega</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omegatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omicron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omicrontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oopen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oslashacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Otilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.P</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.P.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Palochka-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Pe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Phi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Pi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Psi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Q</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Q.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.R</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.R.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Racute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rho</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.S</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.S.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Schwa</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Schwa-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Shcha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Shha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sigma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Softsign-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.T</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.T.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tau</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tdiagonalstroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Te-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Theta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Thorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tlinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tse-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tshe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ubreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ucircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Udieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Udotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ugrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhornacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorndotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorngrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhornhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Umacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Umacron-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilonafrican</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilondieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ushort-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ustraight-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ustraightstroke-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Utilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.V</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.V.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ve-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Vhook</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Vturned</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.W</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wdieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.X</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.X.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Xi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Y</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Y.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ycircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ydieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ydotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yeru-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ygrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yi-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ymacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ytilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Z</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ze-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zeta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zhe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zhedescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alef-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alef-ar.fina.short.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefFathatan-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefHamzaabove-ar.fina.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefHamzabelow-ar.fina.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefMadda-ar.fina.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefThreeabove-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefTwoabove-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefWasla-ar.fina.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefWavyhamzaabove-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefWavyhamzabelow-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._bar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._cuberoot_fourthroot-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._damma-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._dot-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._dotVInvertedabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._dotVabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._dots.horz.below</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._doublebar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._fatha-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._four-persian.small01</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._fourdotscenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._fourthroot-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._hamzasmall-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._hamzawavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._hehgoalcomma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._highhamzaAlef-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._invertedstroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._onedotstah</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._ringArabic</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._stroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._tahabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._tahabovesmall</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._threedots-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._twodotshorizontal-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._twodotstah</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._twodotsverticalabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._vabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._vbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._vinvertedbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._yehRohingya-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._yehRohingya-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.a</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.a-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abreveacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevedotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevegrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevehookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevetilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.case.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutetonecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.adieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.adotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ae</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ae-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ae-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aeacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.afghani-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.agrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ahookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ain-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ain-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ain-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ain-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.short</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefpatah-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefqamats-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.allah-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alpha</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alpha-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alphatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.amacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ampersand</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ampersand_ampersand.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.anoteleia</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.apostrophemod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.approxequal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aringacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciicircum</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciicircum_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_at.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asteriskArt-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_parenright.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.at</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.atilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ayin-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.b</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash_backslash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backspaceControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backspaceControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.baht</key>\n      <integer>4</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_braceright.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bracketright.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_underscore_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.be-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.be-cy.loclSRB</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bellControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bellControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bet-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.betdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bitcoin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackHexagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackHorizontalEllipse</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackInWhiteDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackLargeCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackLargeSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumDownTriangleCentred</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumLeftTriangleCentred</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumLozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumRightTriangleCentred</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumUpTriangleCentred</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackParallelogram</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackPentagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallLozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmilingFace</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerticalEllipse</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerticalRect</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerysmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blank</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blank-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blankSymbol</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDown.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUp</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUp.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceleft_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceright_numbersign.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketleft_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketright_numbersign.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.breve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brokenbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bulletoperator</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bullseye</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.c</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cancelControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cancelControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.careof</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caroncomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caroncomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedillacomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.che-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.checkmark</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chedescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflexcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflexcomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.clubBlackSuit</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon.center</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_slash_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colonsign</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colontriangularmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.comma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.comma-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaabovecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaaboverightcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaaccentcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaturnedabovecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaturnedmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.copyright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.crosshatchFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cuberoot-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.currency</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.d</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dagger</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.daggerdbl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dahal-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dahal-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dal-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dal-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalDotbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalDotbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalDotbelowTah-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalDotbelowTah-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalFourdots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalFourdots-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalRing-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalRing-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalThreedotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalThreedotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalThreedotsdown-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalThreedotsdown-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalTwodotsverticalbelowTahabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalTwodotsverticalbelowTahabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalVinvertedabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalVinvertedabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalVinvertedbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalVinvertedbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalet-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.daletdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.damma-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dammatan-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dashdownArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dateseparator-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcaron.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcroat</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ddahal-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ddahal-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ddal-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ddal-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.de-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.de-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.decimalseparator-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.degree</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deleteControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deleteFormTwoControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.delta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlFourControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlOneControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlThreeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlTwoControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.diagonalcrosshatchFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.diamondBlackSuit</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresiscomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresiscomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresistonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.divide</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.divisionslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dollar</key>\n      <integer>4</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dollar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dong</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotbelowcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotcenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12345-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12345678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12346-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12347-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12348-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1235-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12356-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1235678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12357-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12358-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1236-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12367-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12368-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1237-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12378-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1238-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1245-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1245678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1246-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1247-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1248-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots125-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1256-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots125678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1257-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1258-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots126-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1267-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1268-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots127-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1278-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots128-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1345-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1345678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1346-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1347-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1348-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots135-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1356-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots135678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1357-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1358-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots136-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1367-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1368-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots137-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1378-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots138-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots145-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots145678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots146-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots147-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots148-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots15-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots156-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots15678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots157-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots158-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots16-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots167-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots168-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots17-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots178-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots18-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2345-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2345678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2346-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2347-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2348-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots235-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2356-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots235678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2357-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2358-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots236-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2367-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2368-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots237-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2378-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots238-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots245-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots245678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots246-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots247-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots248-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots25-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots256-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots25678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots257-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots258-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots26-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots267-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots268-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots27-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots278-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots28-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots345-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots345678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots346-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots347-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots348-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots35-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots356-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots35678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots357-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots358-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots36-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots367-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots368-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots37-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots378-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots38-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots45-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots45678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots46-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots47-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots48-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots5-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots56-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots5678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots57-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots58-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots6-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots67-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots68-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots7-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots78-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots8-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dottedCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dottedSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.doubleverticalbarbelowSymbol-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.doubleverticalbarbelowSymbol-ar.comb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downBlackSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downTipLeftArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downWhiteSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downWhiteTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dtail</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dul-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dul-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dyeh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dze-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dzhe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ebreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ef-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ef-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.egrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ehookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eightinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eightsuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.el-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.el-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ellipsis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.em-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.emacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.emdash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.en-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTextControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTextControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endofayah-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eng</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.enquiryControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.enquiryControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eopen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.epsilon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.epsilontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_equal_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_greater_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_less_less.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equivalence</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.er-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ereversed-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.es-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.escapeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.escapeControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.esh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.estimated</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.etatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eth</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.etilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eturned</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.euro</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eurocurrency</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_exclam.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_exclam_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclamdouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclamdown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ezh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.f</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fatha-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fathatan-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fileSeparatorControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.filledRect</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalkaf-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalkafdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalmem-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalnun-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalpe-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalpedagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finaltsadi-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.firsttonechinese</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fisheye</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fiveeighths</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fiveinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fivesuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.florin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.footnotemarker-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.formFeedControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.formFeedControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian.small01</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian.urdu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian.urduinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian.urdusuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persianbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persiancenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourdotsabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourdotsbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourdotscenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.foursuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourthroot-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fraction</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.franc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullstop-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.g</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gaf-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gaf-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gaf-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gaf-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafRing-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafsarkashabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gamma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gamma-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gbreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ge-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ge-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.geresh-hb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.germandbls</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gershayim-hb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghain-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghain-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghain-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghain-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghestroke-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gheupturn-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gimel-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gimeldagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstop</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstopmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstopreversed</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.grave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravetonecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater.center</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greaterequal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.groupSeparatorControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gstroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guarani</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gueh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gueh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gueh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gueh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guillemetleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guillemetright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guilsinglleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guilsinglright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.h</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hadescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hah-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hah-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hah-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hah-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hamza-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hamzaabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hamzabelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hardsign-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hardsign-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.he-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heartBlackSuit</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglebracketornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglequotationmarkornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglebracketornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglequotationmarkornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hedagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehAlefabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehAlefabove-ar.init.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehHamzaabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehHamzaabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.het-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamza-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaWaw-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaWaw-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.holam-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.holamhaser-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hookabovecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hookabovecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalBlackHexagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontallineextension</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horncomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horncomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.house</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hryvnia</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_asciitilde.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphentwo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.i</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.i-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ia-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ibreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.icircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idotless</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ie-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iegrave-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.igrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ihookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ii-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ii-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iigrave-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iigrave-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iishort-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iishort-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ij</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ij_acute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.imacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.imacron-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.increment</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.infinity</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integral</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integralbt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integraltp</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.intersection</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.inverseBullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.inverseWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.io-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iota</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iota-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotadieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotadieresistonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.itilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.j</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jdotless</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.je-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeem-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeem-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeem-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeem-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.k</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kadescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafRing-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.medi.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaiSymbol</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kappa</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kashida-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kasra-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kasratan-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.keheh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.keheh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.keheh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.keheh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kgreenlandic</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.khah-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.khah-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.khah-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.khah-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kip</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kirghizoe-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kirghizoe-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kirghizyu-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kirghizyu-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.klinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.l</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.init.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.medi.rlig</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.init.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.medi.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.init.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.medi.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.init.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.medi.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.init.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.medi.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.init.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.medi.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.init.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.medi.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.fina.short</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.short</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzaabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzaabove-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzabelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzabelow-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefMadda-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefMadda-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefWasla-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefWasla-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_lam_heh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lambda</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lambdastroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamed-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lameddagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.largeCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lari</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbelt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldot</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackPointer</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftRightArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhitePointer</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhiteSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhiteTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less.center</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_asciitilde.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asterisk_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_bar_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_dollar.liga</key>\n      <integer>4</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_dollar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_exclam_hyphen_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_less.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_plus.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_plus_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_slash_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lessequal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineFeedControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineFeedControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineseparator</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lira</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.liraTurkish</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.literSign</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.llinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lmiddletilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.logicalnot</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.logicalnotReversed</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.longs</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlackWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfInverseWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftHalfWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftQuadrantWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightDiagonalHalfBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightQuadrantWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowernumeral-greek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowlinecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.m</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macronbelowcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macroncomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macroncomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.madda-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.manat</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.maqaf-hb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mars</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumBlackSmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumleftpointinganglebracketornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumrightpointinganglebracketornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meem-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meem-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meem-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meem-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemStopabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mem-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.memdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.micro</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.minus</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.minute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.misraComma-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.multiply</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.n</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.naira</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.napostrophe</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nbspace</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ncaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ncommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.newlineControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ng-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ng-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ng-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ng-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nhookleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nineinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ninesuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nlinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nonbreakinghyphen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunnaabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.note-musical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notedbl-musical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notequal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notidentical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nullControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.number-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbermark-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_braceleft.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_bracketleft.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_exclam.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_parenleft.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_question.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore_parenleft.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numeral-greek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numero</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nun-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nundagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nyeh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.o</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.o-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.obarred-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.obreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.odieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.odotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oe</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oe-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oe-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ogonekcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ograve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohornacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorndotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorngrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohornhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacronacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacrongrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omega</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omegatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omicron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omicrontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onedotenleader</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oneeighth</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onehalf</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oneinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onequarter</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onesuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oopen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ordfeminine</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ordmasculine</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.orthogonal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oslashacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.otilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.overline</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.p</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pagenumber-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.palochka-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.paragraph</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenright-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.partialdiff</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.paseq-hb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.patah-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pedagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent_percent.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_less.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_question.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.periodcentered</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perispomenicomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perthousand</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perthousand-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peseta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peso</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.phi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_plus.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_plus_plus.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plusminus</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.prescription</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.product</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.psi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.published</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.punctuationspace</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.q</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qamats-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qamatsqatan-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qof-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qofdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_question.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_question_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.questiondown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.questiongreek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedbl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblbase</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quoteleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotereversed</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quoteright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotesinglbase</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotesingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.r</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.racute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.radical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ratio</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ray-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.recordSeparatorControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.registered</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehAlefabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehAlefabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehDotbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehDotbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehDotbelowdotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehDotbelowdotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehFourdots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehFourdots-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehHamzaabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehHamzaabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehLoop-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehLoop-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehRing-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehRing-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehStroke-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehStroke-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodots-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodotshorizontalaboveTahabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodotshorizontalaboveTahabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodotsverticalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodotsverticalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehVbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehVbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehVinvertedabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehVinvertedabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehv-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehv-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.replacementCharacter</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.resh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reshdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.returnsymbol</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reversedRotatedFloralHeartBullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rho</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackPointer</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhitePointer</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhiteSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhiteTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringArabic</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringbelowcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringcomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rotatedFloralHeartBullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rreh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rreh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ruble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rupee</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rupeeIndian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.s</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.samekh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.samekhdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.samvat-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.schwa</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.schwa-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.second</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.section</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotsverticalabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotsverticalabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon_semicolon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persian.urdu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persian.urduinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persian.urdusuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seveneighths</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seveninferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sevensuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sha-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadda-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadedark</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadedark.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadelight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadelight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shademedium</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shademedium.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shcha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shcha-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheqel</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftInControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftInControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftOutControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftOutControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shin-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shindagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shindageshshindot-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shindageshsindot-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shindot-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shinshindot-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shinsindot-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sigma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sigmafinal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sindhiampersand-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sindhipostpositionmen-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sindot-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sixinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sixsuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_backslash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softhyphen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softsign-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softsign-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.space</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.spaceControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.spadeBlackSuit</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfTextControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfTextControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sterling</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.strictlyequivalentto</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteFormTwoControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sukun-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.summation</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sunWithRays</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.t</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tah-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tah-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tah-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tah-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahcenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tau</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tav-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tavdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.te-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.te-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehMarbuta-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehMarbuta-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehMarbutagoal-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehMarbutagoal-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehabove-ar.small</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tesh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tet-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tetdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thal-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thal-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thalAlefabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thalAlefabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thetamod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thousandseparator-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-persian.small01</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsdownabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsdownbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsdowncenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsupabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsupabove-ar.v2</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsupbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsupcenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threeeighths</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threeinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threequarters</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threesuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tildecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tildecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tonos.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfBlackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topRightHalfWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.trademark</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tsadi-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tsadidagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tse-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tse-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tshe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tugrik</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-persian.small01</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalabove-ar.v2</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalcenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotstahbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotstahcenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotsverticalabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotsverticalbelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotsverticalcenter-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twoinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twosuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uHamzaabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uHamzaabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ubreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ucircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.udieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.udotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ugrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhornacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorndotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorngrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhornhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.umacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.umacron-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_underscore.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscoredbl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B3</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B3.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B3.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B3.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B4</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B4.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B4.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B4.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B9.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uniFBC0</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.unitSeparatorControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upBlackSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDashArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDownArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDownbaseArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upLeftHalfBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upRightHalfBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangleWithDot</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlackWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfInverseWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftDiagonalHalfBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftQuadrantWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightQuadrantWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperlefttolowerrightFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperrighttolowerleftFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilon-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilondieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilondieresistonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ushort-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ustraight-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ustraightstroke-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.utilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.v</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vav-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vavdagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vavholam-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vectorOrCrossProduct</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.venus</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verseComma-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalBisectingLineWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalFillCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vhook</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vinvertedabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vturned</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.w</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.w_w_w.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wasla-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wavyhamzaabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wavyhamzabelow-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.waw-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.waw-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawDotcenter-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawDotcenter-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawHamzaabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawHamzaabove-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawStraight-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawThreeAbove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawThreeAbove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawTwoabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawTwoabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawTwodots-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawTwodots-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawring-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawring-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wdieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteBullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteHexagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteHorizontalEllipse</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteInBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLargeSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLowerLeftQuadrantSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLowerRightQuadrantSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteMediumDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteMediumLozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteParallelogram</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whitePentagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteRect</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteRoundedCornersSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmallLozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmilingFace</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteUpperLeftQuadrantSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteUpperRightQuadrantSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerticalEllipse</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerticalRect</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerysmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.won</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.x</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.x.multiply</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.xi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.y</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ycircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ydieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ydotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.year-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.fina.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.init.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar.isol</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTail-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTail-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTail-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.fina.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarree-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarree-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeHamzaabove-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeHamzaabove-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.init</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.init.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.medi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeru-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ygrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yi-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ymacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ymod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yod-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yoddagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ytilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yu-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yu-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.z</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zah-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zah-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zah-ar.init</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zah-ar.medi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zain-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zain-ar.fina</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zainVInvertedabove-ar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zainVInvertedabove-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zayin-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zayindagesh-hb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-ar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-arinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-arsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-persian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-persianinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-persiansuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.zero</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zeroinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zerosuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zeta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhe-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhedescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zmod</key>\n      <integer>2</integer>\n    </dict>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019A\"/>\n  <outline>\n    <contour>\n      <point x=\"88\" y=\"641\" type=\"line\"/>\n      <point x=\"944\" y=\"641\" type=\"line\"/>\n      <point x=\"944\" y=\"883\" type=\"line\"/>\n      <point x=\"88\" y=\"883\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lbelt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbelt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026C\"/>\n  <outline>\n    <contour>\n      <point x=\"340\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"492\" type=\"line\"/>\n      <point x=\"954\" y=\"732\" type=\"line\"/>\n      <point x=\"340\" y=\"732\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"281\" y=\"732\"/>\n      <point x=\"247\" y=\"764\"/>\n      <point x=\"247\" y=\"818\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"247\" y=\"883\"/>\n      <point x=\"277\" y=\"919\"/>\n      <point x=\"330\" y=\"919\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"919\"/>\n      <point x=\"381\" y=\"906\"/>\n      <point x=\"381\" y=\"877\" type=\"curve\"/>\n      <point x=\"408\" y=\"1040\" type=\"line\"/>\n      <point x=\"363\" y=\"1040\" type=\"line\"/>\n      <point x=\"351\" y=\"1103\"/>\n      <point x=\"311\" y=\"1134\"/>\n      <point x=\"230\" y=\"1134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"81\" y=\"1134\"/>\n      <point x=\"-5\" y=\"1022\"/>\n      <point x=\"-5\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-5\" y=\"611\"/>\n      <point x=\"121\" y=\"492\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013E\"/>\n  <outline>\n    <contour>\n      <point x=\"755\" y=\"1188\" type=\"line\"/>\n      <point x=\"1002\" y=\"1188\" type=\"line\"/>\n      <point x=\"1092\" y=\"1568\" type=\"line\"/>\n      <point x=\"805\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>l</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013C\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ldot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0140\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"periodcentered\" xOffset=\"366\" yOffset=\"300\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>l</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>periodcentered</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ldotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E37\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7C\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndUpperOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7D\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"150\" y=\"1888\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndUpperOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"150\" y=\"1602\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2190\"/>\n  <outline>\n    <contour>\n      <point x=\"1100\" y=\"584\" type=\"line\"/>\n      <point x=\"1100\" y=\"834\" type=\"line\"/>\n      <point x=\"253\" y=\"834\" type=\"line\"/>\n      <point x=\"253\" y=\"584\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"148\" type=\"line\"/>\n      <point x=\"734\" y=\"303\" type=\"line\"/>\n      <point x=\"348\" y=\"700\" type=\"line\"/>\n      <point x=\"348\" y=\"718\" type=\"line\"/>\n      <point x=\"734\" y=\"1115\" type=\"line\"/>\n      <point x=\"554\" y=\"1270\" type=\"line\"/>\n      <point x=\"64\" y=\"770\" type=\"line\"/>\n      <point x=\"64\" y=\"648\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftB_lackP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackPointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C4\"/>\n  <note>\ntriaglf\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"350\" type=\"line\"/>\n      <point x=\"1080\" y=\"1070\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C2\"/>\n  <note>\nuni25C2\n</note>\n  <outline>\n    <contour>\n      <point x=\"1005\" y=\"241\" type=\"line\"/>\n      <point x=\"1005\" y=\"1179\" type=\"line\"/>\n      <point x=\"208\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C0\"/>\n  <note>\nuni25C0\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"110\" type=\"line\"/>\n      <point x=\"1080\" y=\"1310\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258C\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D6\"/>\n  <note>\nuni25D6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\"/>\n      <point x=\"600\" y=\"1235\" type=\"line\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B16\"/>\n  <note>\nuni2B16\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteDiamond</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E7\"/>\n  <note>\nuni25E7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"235\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n      <point x=\"115\" y=\"1185\" type=\"line\"/>\n      <point x=\"115\" y=\"235\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D0\"/>\n  <note>\nuni25D0\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"261\" type=\"line\"/>\n      <point x=\"600\" y=\"1114\" type=\"line\"/>\n      <point x=\"302\" y=\"1114\" type=\"line\"/>\n      <point x=\"142\" y=\"704\" type=\"line\"/>\n      <point x=\"349\" y=\"291\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258F\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftO_neT_hirdB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneThirdBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBCF\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneThirdBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftR_ightA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftRightArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2194\"/>\n  <outline>\n    <contour>\n      <point x=\"826\" y=\"168\" type=\"line\"/>\n      <point x=\"1136\" y=\"648\" type=\"line\"/>\n      <point x=\"1136\" y=\"770\" type=\"line\"/>\n      <point x=\"826\" y=\"1250\" type=\"line\"/>\n      <point x=\"626\" y=\"1125\" type=\"line\"/>\n      <point x=\"912\" y=\"718\" type=\"line\"/>\n      <point x=\"912\" y=\"700\" type=\"line\"/>\n      <point x=\"626\" y=\"293\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"374\" y=\"168\" type=\"line\"/>\n      <point x=\"574\" y=\"293\" type=\"line\"/>\n      <point x=\"288\" y=\"700\" type=\"line\"/>\n      <point x=\"288\" y=\"718\" type=\"line\"/>\n      <point x=\"574\" y=\"1125\" type=\"line\"/>\n      <point x=\"374\" y=\"1250\" type=\"line\"/>\n      <point x=\"64\" y=\"770\" type=\"line\"/>\n      <point x=\"64\" y=\"648\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"253\" y=\"584\" type=\"line\"/>\n      <point x=\"947\" y=\"584\" type=\"line\"/>\n      <point x=\"947\" y=\"834\" type=\"line\"/>\n      <point x=\"253\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2589\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258D\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftT_woT_hirdsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftTwoThirdsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBCE\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftTwoThirdsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftW_hiteP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhitePointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C5\"/>\n  <note>\nuni25C5\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"350\" type=\"line\"/>\n      <point x=\"1080\" y=\"1070\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"880\" y=\"478\" type=\"line\"/>\n      <point x=\"1008\" y=\"571\" type=\"line\"/>\n      <point x=\"345\" y=\"787\" type=\"line\"/>\n      <point x=\"345\" y=\"633\" type=\"line\"/>\n      <point x=\"1008\" y=\"849\" type=\"line\"/>\n      <point x=\"880\" y=\"942\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C3\"/>\n  <note>\nuni25C3\n</note>\n  <outline>\n    <contour>\n      <point x=\"1005\" y=\"241\" type=\"line\"/>\n      <point x=\"1005\" y=\"1179\" type=\"line\"/>\n      <point x=\"208\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"813\" y=\"422\" type=\"line\"/>\n      <point x=\"925\" y=\"504\" type=\"line\"/>\n      <point x=\"434\" y=\"793\" type=\"line\"/>\n      <point x=\"434\" y=\"627\" type=\"line\"/>\n      <point x=\"925\" y=\"916\" type=\"line\"/>\n      <point x=\"813\" y=\"998\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/leftW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C1\"/>\n  <note>\nuni25C1\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"110\" type=\"line\"/>\n      <point x=\"1080\" y=\"1310\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"880\" y=\"253\" type=\"line\"/>\n      <point x=\"1076\" y=\"363\" type=\"line\"/>\n      <point x=\"313\" y=\"812\" type=\"line\"/>\n      <point x=\"312\" y=\"610\" type=\"line\"/>\n      <point x=\"1072\" y=\"1055\" type=\"line\"/>\n      <point x=\"880\" y=\"1164\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"817\" y=\"2\" type=\"line\"/>\n      <point x=\"992\" y=\"167\" type=\"line\"/>\n      <point x=\"477\" y=\"700\" type=\"line\"/>\n      <point x=\"477\" y=\"718\" type=\"line\"/>\n      <point x=\"992\" y=\"1251\" type=\"line\"/>\n      <point x=\"817\" y=\"1416\" type=\"line\"/>\n      <point x=\"203\" y=\"770\" type=\"line\"/>\n      <point x=\"203\" y=\"648\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1160\" y=\"197\" type=\"line\"/>\n      <point x=\"1160\" y=\"467\" type=\"line\"/>\n      <point x=\"338\" y=\"692\" type=\"line\"/>\n      <point x=\"338\" y=\"726\" type=\"line\"/>\n      <point x=\"1160\" y=\"951\" type=\"line\"/>\n      <point x=\"1160\" y=\"1221\" type=\"line\"/>\n      <point x=\"15\" y=\"843\" type=\"line\"/>\n      <point x=\"15\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003C\"/>\n  <outline>\n    <contour>\n      <point x=\"1087\" y=\"197\" type=\"line\"/>\n      <point x=\"1087\" y=\"467\" type=\"line\"/>\n      <point x=\"331\" y=\"700\" type=\"line\"/>\n      <point x=\"331\" y=\"718\" type=\"line\"/>\n      <point x=\"1087\" y=\"951\" type=\"line\"/>\n      <point x=\"1087\" y=\"1221\" type=\"line\"/>\n      <point x=\"63\" y=\"843\" type=\"line\"/>\n      <point x=\"63\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1913\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2119\" y=\"482\"/>\n      <point x=\"2217\" y=\"606\"/>\n      <point x=\"2217\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2217\" y=\"963\" type=\"line\"/>\n      <point x=\"1953\" y=\"963\" type=\"line\"/>\n      <point x=\"1953\" y=\"880\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1953\" y=\"803\"/>\n      <point x=\"1919\" y=\"766\"/>\n      <point x=\"1853\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1779\" y=\"766\"/>\n      <point x=\"1710\" y=\"814\"/>\n      <point x=\"1656\" y=\"851\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1570\" y=\"911\"/>\n      <point x=\"1504\" y=\"946\"/>\n      <point x=\"1413\" y=\"946\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1229\" y=\"946\"/>\n      <point x=\"1116\" y=\"801\"/>\n      <point x=\"900\" y=\"801\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"801\"/>\n      <point x=\"621\" y=\"827\"/>\n      <point x=\"455\" y=\"827\" type=\"curve\"/>\n      <point x=\"455\" y=\"597\" type=\"line\"/>\n      <point x=\"609\" y=\"597\"/>\n      <point x=\"746\" y=\"550\"/>\n      <point x=\"900\" y=\"550\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1094\" y=\"550\"/>\n      <point x=\"1198\" y=\"687\"/>\n      <point x=\"1357\" y=\"687\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1442\" y=\"687\"/>\n      <point x=\"1509\" y=\"629\"/>\n      <point x=\"1587\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1683\" y=\"528\"/>\n      <point x=\"1790\" y=\"482\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"37\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_asciitilde_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2000\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2095\" y=\"482\"/>\n      <point x=\"2204\" y=\"539\"/>\n      <point x=\"2309\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2391\" y=\"637\"/>\n      <point x=\"2479\" y=\"667\"/>\n      <point x=\"2552\" y=\"667\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2626\" y=\"667\"/>\n      <point x=\"2692\" y=\"625\"/>\n      <point x=\"2763\" y=\"589\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2862\" y=\"540\"/>\n      <point x=\"2963\" y=\"482\"/>\n      <point x=\"3080\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3309\" y=\"482\"/>\n      <point x=\"3417\" y=\"606\"/>\n      <point x=\"3417\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3417\" y=\"963\" type=\"line\"/>\n      <point x=\"3156\" y=\"963\" type=\"line\"/>\n      <point x=\"3156\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"3156\" y=\"820\"/>\n      <point x=\"3121\" y=\"766\"/>\n      <point x=\"3053\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2969\" y=\"766\"/>\n      <point x=\"2899\" y=\"823\"/>\n      <point x=\"2816\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2746\" y=\"901\"/>\n      <point x=\"2658\" y=\"926\"/>\n      <point x=\"2567\" y=\"926\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2464\" y=\"926\"/>\n      <point x=\"2344\" y=\"882\"/>\n      <point x=\"2235\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2153\" y=\"781\"/>\n      <point x=\"2072\" y=\"741\"/>\n      <point x=\"1998\" y=\"741\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1914\" y=\"741\"/>\n      <point x=\"1850\" y=\"772\"/>\n      <point x=\"1787\" y=\"807\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1696\" y=\"856\"/>\n      <point x=\"1605\" y=\"906\"/>\n      <point x=\"1472\" y=\"906\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1256\" y=\"906\"/>\n      <point x=\"1172\" y=\"803\"/>\n      <point x=\"950\" y=\"803\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"726\" y=\"803\"/>\n      <point x=\"658\" y=\"821\"/>\n      <point x=\"465\" y=\"821\" type=\"curve\"/>\n      <point x=\"465\" y=\"600\" type=\"line\"/>\n      <point x=\"658\" y=\"600\"/>\n      <point x=\"726\" y=\"563\"/>\n      <point x=\"952\" y=\"563\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1171\" y=\"563\"/>\n      <point x=\"1256\" y=\"647\"/>\n      <point x=\"1466\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1564\" y=\"647\"/>\n      <point x=\"1637\" y=\"608\"/>\n      <point x=\"1714\" y=\"567\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1794\" y=\"523\"/>\n      <point x=\"1880\" y=\"482\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"37\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"asciitilde\" xOffset=\"1210\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>greater</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>asciitilde</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"131\"/>\n    <component base=\"asterisk\" xOffset=\"1133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_asterisk_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asterisk_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"asterisk\" xOffset=\"1210\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>greater</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1859\" y=\"-10\" type=\"line\"/>\n      <point x=\"1859\" y=\"1430\" type=\"line\"/>\n      <point x=\"355\" y=\"843\" type=\"line\"/>\n      <point x=\"355\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1592\" y=\"303\" type=\"line\"/>\n      <point x=\"1673\" y=\"360\" type=\"line\"/>\n      <point x=\"705\" y=\"692\" type=\"line\"/>\n      <point x=\"705\" y=\"726\" type=\"line\"/>\n      <point x=\"1673\" y=\"1059\" type=\"line\"/>\n      <point x=\"1592\" y=\"1116\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2000\" y=\"-10\" type=\"line\"/>\n      <point x=\"2000\" y=\"1430\" type=\"line\"/>\n      <point x=\"496\" y=\"843\" type=\"line\"/>\n      <point x=\"496\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1733\" y=\"303\" type=\"line\"/>\n      <point x=\"1814\" y=\"360\" type=\"line\"/>\n      <point x=\"846\" y=\"692\" type=\"line\"/>\n      <point x=\"846\" y=\"726\" type=\"line\"/>\n      <point x=\"1814\" y=\"1059\" type=\"line\"/>\n      <point x=\"1733\" y=\"1116\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"2240\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_bar_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2000\" y=\"-10\" type=\"line\"/>\n      <point x=\"2000\" y=\"1430\" type=\"line\"/>\n      <point x=\"496\" y=\"843\" type=\"line\"/>\n      <point x=\"496\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1733\" y=\"303\" type=\"line\"/>\n      <point x=\"1814\" y=\"360\" type=\"line\"/>\n      <point x=\"846\" y=\"692\" type=\"line\"/>\n      <point x=\"846\" y=\"726\" type=\"line\"/>\n      <point x=\"1814\" y=\"1059\" type=\"line\"/>\n      <point x=\"1733\" y=\"1116\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"2244\"/>\n    <component base=\"bar\" xOffset=\"3244\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"bar\" xOffset=\"1210\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>greater</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>bar</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1756\" y=\"-56\" type=\"line\"/>\n      <point x=\"1761\" y=\"211\" type=\"line\"/>\n      <point x=\"486\" y=\"692\" type=\"line\"/>\n      <point x=\"486\" y=\"726\" type=\"line\"/>\n      <point x=\"1108\" y=\"961\" type=\"line\"/>\n      <point x=\"1108\" y=\"1231\" type=\"line\"/>\n      <point x=\"171\" y=\"843\" type=\"line\"/>\n      <point x=\"171\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1604\" y=\"-320\" type=\"line\"/>\n      <point x=\"1857\" y=\"-320\" type=\"line\"/>\n      <point x=\"1857\" y=\"233\" type=\"line\"/>\n      <point x=\"1604\" y=\"233\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1668\" y=\"-20\" type=\"line\"/>\n      <point x=\"2003\" y=\"-20\"/>\n      <point x=\"2191\" y=\"122\"/>\n      <point x=\"2191\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2191\" y=\"533\"/>\n      <point x=\"2078\" y=\"676\"/>\n      <point x=\"1878\" y=\"779\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1686\" y=\"878\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1601\" y=\"922\"/>\n      <point x=\"1553\" y=\"980\"/>\n      <point x=\"1553\" y=\"1043\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1553\" y=\"1135\"/>\n      <point x=\"1622\" y=\"1187\"/>\n      <point x=\"1743\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1827\" y=\"1187\"/>\n      <point x=\"1922\" y=\"1136\"/>\n      <point x=\"2004\" y=\"1047\" type=\"curve\"/>\n      <point x=\"2190\" y=\"1254\" type=\"line\"/>\n      <point x=\"2080\" y=\"1373\"/>\n      <point x=\"1916\" y=\"1440\"/>\n      <point x=\"1742\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1440\" y=\"1440\"/>\n      <point x=\"1267\" y=\"1298\"/>\n      <point x=\"1267\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1267\" y=\"874\"/>\n      <point x=\"1383\" y=\"724\"/>\n      <point x=\"1584\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1788\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1862\" y=\"491\"/>\n      <point x=\"1905\" y=\"438\"/>\n      <point x=\"1905\" y=\"379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1905\" y=\"285\"/>\n      <point x=\"1826\" y=\"233\"/>\n      <point x=\"1684\" y=\"233\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1604\" y=\"1291\" type=\"line\"/>\n      <point x=\"1857\" y=\"1291\" type=\"line\"/>\n      <point x=\"1857\" y=\"1740\" type=\"line\"/>\n      <point x=\"1604\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_dollar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1756\" y=\"-56\" type=\"line\"/>\n      <point x=\"1761\" y=\"211\" type=\"line\"/>\n      <point x=\"486\" y=\"692\" type=\"line\"/>\n      <point x=\"486\" y=\"726\" type=\"line\"/>\n      <point x=\"1108\" y=\"961\" type=\"line\"/>\n      <point x=\"1108\" y=\"1231\" type=\"line\"/>\n      <point x=\"171\" y=\"843\" type=\"line\"/>\n      <point x=\"171\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1668\" y=\"-20\" type=\"line\"/>\n      <point x=\"2003\" y=\"-20\"/>\n      <point x=\"2191\" y=\"122\"/>\n      <point x=\"2191\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2191\" y=\"533\"/>\n      <point x=\"2078\" y=\"676\"/>\n      <point x=\"1878\" y=\"779\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1686\" y=\"878\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1601\" y=\"922\"/>\n      <point x=\"1553\" y=\"980\"/>\n      <point x=\"1553\" y=\"1043\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1553\" y=\"1135\"/>\n      <point x=\"1622\" y=\"1187\"/>\n      <point x=\"1743\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1827\" y=\"1187\"/>\n      <point x=\"1922\" y=\"1136\"/>\n      <point x=\"2004\" y=\"1047\" type=\"curve\"/>\n      <point x=\"2190\" y=\"1254\" type=\"line\"/>\n      <point x=\"2080\" y=\"1373\"/>\n      <point x=\"1916\" y=\"1440\"/>\n      <point x=\"1742\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1440\" y=\"1440\"/>\n      <point x=\"1267\" y=\"1298\"/>\n      <point x=\"1267\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1267\" y=\"874\"/>\n      <point x=\"1383\" y=\"724\"/>\n      <point x=\"1584\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1788\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1862\" y=\"491\"/>\n      <point x=\"1905\" y=\"438\"/>\n      <point x=\"1905\" y=\"379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1905\" y=\"285\"/>\n      <point x=\"1826\" y=\"233\"/>\n      <point x=\"1684\" y=\"233\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1604\" y=\"-320\" type=\"line\"/>\n      <point x=\"1857\" y=\"-320\" type=\"line\"/>\n      <point x=\"1857\" y=\"1740\" type=\"line\"/>\n      <point x=\"1604\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar_greater.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1825\" y=\"-56\" type=\"line\"/>\n      <point x=\"1830\" y=\"211\" type=\"line\"/>\n      <point x=\"555\" y=\"692\" type=\"line\"/>\n      <point x=\"555\" y=\"726\" type=\"line\"/>\n      <point x=\"1177\" y=\"961\" type=\"line\"/>\n      <point x=\"1177\" y=\"1231\" type=\"line\"/>\n      <point x=\"240\" y=\"843\" type=\"line\"/>\n      <point x=\"240\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1674\" y=\"-320\" type=\"line\"/>\n      <point x=\"1927\" y=\"-320\" type=\"line\"/>\n      <point x=\"1927\" y=\"230\" type=\"line\"/>\n      <point x=\"1674\" y=\"230\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1738\" y=\"-22\" type=\"line\"/>\n      <point x=\"2073\" y=\"-22\"/>\n      <point x=\"2260\" y=\"120\"/>\n      <point x=\"2260\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2260\" y=\"533\"/>\n      <point x=\"2147\" y=\"676\"/>\n      <point x=\"1947\" y=\"779\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1755\" y=\"878\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1670\" y=\"922\"/>\n      <point x=\"1623\" y=\"980\"/>\n      <point x=\"1623\" y=\"1043\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1623\" y=\"1136\"/>\n      <point x=\"1692\" y=\"1189\"/>\n      <point x=\"1812\" y=\"1189\" type=\"curve\"/>\n      <point x=\"1812\" y=\"1440\" type=\"line\"/>\n      <point x=\"1509\" y=\"1440\"/>\n      <point x=\"1337\" y=\"1298\"/>\n      <point x=\"1337\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1337\" y=\"874\"/>\n      <point x=\"1452\" y=\"724\"/>\n      <point x=\"1654\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1858\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1932\" y=\"491\"/>\n      <point x=\"1975\" y=\"438\"/>\n      <point x=\"1975\" y=\"379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1975\" y=\"283\"/>\n      <point x=\"1895\" y=\"230\"/>\n      <point x=\"1754\" y=\"230\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1674\" y=\"1189\" type=\"line\"/>\n      <point x=\"1927\" y=\"1189\" type=\"line\"/>\n      <point x=\"1927\" y=\"1740\" type=\"line\"/>\n      <point x=\"1674\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2426\" y=\"189\" type=\"line\"/>\n      <point x=\"3360\" y=\"575\" type=\"line\"/>\n      <point x=\"3360\" y=\"843\" type=\"line\"/>\n      <point x=\"1850\" y=\"1458\" type=\"line\"/>\n      <point x=\"1850\" y=\"1189\" type=\"line\"/>\n      <point x=\"3043\" y=\"726\" type=\"line\"/>\n      <point x=\"3043\" y=\"692\" type=\"line\"/>\n      <point x=\"2426\" y=\"459\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_dollar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1825\" y=\"-56\" type=\"line\"/>\n      <point x=\"1830\" y=\"211\" type=\"line\"/>\n      <point x=\"555\" y=\"692\" type=\"line\"/>\n      <point x=\"555\" y=\"726\" type=\"line\"/>\n      <point x=\"1177\" y=\"961\" type=\"line\"/>\n      <point x=\"1177\" y=\"1231\" type=\"line\"/>\n      <point x=\"240\" y=\"843\" type=\"line\"/>\n      <point x=\"240\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1738\" y=\"-22\" type=\"line\"/>\n      <point x=\"2073\" y=\"-22\"/>\n      <point x=\"2260\" y=\"120\"/>\n      <point x=\"2260\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2260\" y=\"533\"/>\n      <point x=\"2147\" y=\"676\"/>\n      <point x=\"1947\" y=\"779\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1755\" y=\"878\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1670\" y=\"922\"/>\n      <point x=\"1623\" y=\"980\"/>\n      <point x=\"1623\" y=\"1043\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1623\" y=\"1136\"/>\n      <point x=\"1692\" y=\"1189\"/>\n      <point x=\"1812\" y=\"1189\" type=\"curve\"/>\n      <point x=\"1811\" y=\"1440\" type=\"line\"/>\n      <point x=\"1509\" y=\"1440\"/>\n      <point x=\"1337\" y=\"1298\"/>\n      <point x=\"1337\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1337\" y=\"874\"/>\n      <point x=\"1452\" y=\"724\"/>\n      <point x=\"1654\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1858\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1932\" y=\"491\"/>\n      <point x=\"1975\" y=\"438\"/>\n      <point x=\"1975\" y=\"379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1975\" y=\"283\"/>\n      <point x=\"1895\" y=\"230\"/>\n      <point x=\"1754\" y=\"230\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1674\" y=\"-320\" type=\"line\"/>\n      <point x=\"1927\" y=\"-320\" type=\"line\"/>\n      <point x=\"1927\" y=\"1740\" type=\"line\"/>\n      <point x=\"1674\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2426\" y=\"189\" type=\"line\"/>\n      <point x=\"3360\" y=\"575\" type=\"line\"/>\n      <point x=\"3360\" y=\"843\" type=\"line\"/>\n      <point x=\"1850\" y=\"1458\" type=\"line\"/>\n      <point x=\"1850\" y=\"1189\" type=\"line\"/>\n      <point x=\"3043\" y=\"726\" type=\"line\"/>\n      <point x=\"3043\" y=\"692\" type=\"line\"/>\n      <point x=\"2426\" y=\"459\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1950\" y=\"484\" type=\"line\"/>\n      <point x=\"1950\" y=\"754\" type=\"line\"/>\n      <point x=\"856\" y=\"950\" type=\"line\"/>\n      <point x=\"856\" y=\"968\" type=\"line\"/>\n      <point x=\"1950\" y=\"1164\" type=\"line\"/>\n      <point x=\"1950\" y=\"1434\" type=\"line\"/>\n      <point x=\"506\" y=\"1095\" type=\"line\"/>\n      <point x=\"506\" y=\"823\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"117\" type=\"line\"/>\n      <point x=\"1950\" y=\"117\" type=\"line\"/>\n      <point x=\"1950\" y=\"367\" type=\"line\"/>\n      <point x=\"506\" y=\"367\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"333\" type=\"line\"/>\n      <point x=\"662\" y=\"333\" type=\"line\"/>\n      <point x=\"662\" y=\"583\" type=\"line\"/>\n      <point x=\"-20\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"835\" type=\"line\"/>\n      <point x=\"662\" y=\"835\" type=\"line\"/>\n      <point x=\"662\" y=\"1085\" type=\"line\"/>\n      <point x=\"-20\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"888\" y=\"2\" type=\"line\"/>\n      <point x=\"1058\" y=\"157\" type=\"line\"/>\n      <point x=\"662\" y=\"583\" type=\"line\"/>\n      <point x=\"336\" y=\"577\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"328\" y=\"835\" type=\"line\"/>\n      <point x=\"662\" y=\"835\" type=\"line\"/>\n      <point x=\"1058\" y=\"1257\" type=\"line\"/>\n      <point x=\"888\" y=\"1412\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"equal_middle.seq\" xScale=\"-1\" xOffset=\"1200\"/>\n    <component base=\"less.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1220\" y=\"333\" type=\"line\"/>\n      <point x=\"1220\" y=\"583\" type=\"line\"/>\n      <point x=\"304\" y=\"583\" type=\"line\"/>\n      <point x=\"564\" y=\"333\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1220\" y=\"835\" type=\"line\"/>\n      <point x=\"1220\" y=\"1085\" type=\"line\"/>\n      <point x=\"544\" y=\"1085\" type=\"line\"/>\n      <point x=\"327\" y=\"835\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-179\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_exclam_hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"441\" y=\"584\" type=\"line\"/>\n      <point x=\"1598\" y=\"584\" type=\"line\"/>\n      <point x=\"1598\" y=\"834\" type=\"line\"/>\n      <point x=\"441\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2318\" y=\"584\" type=\"line\"/>\n      <point x=\"4520\" y=\"584\" type=\"line\"/>\n      <point x=\"4520\" y=\"834\" type=\"line\"/>\n      <point x=\"2318\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"37\"/>\n    <component base=\"exclam\" xOffset=\"1360\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>exclam</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1210\" y=\"197\" type=\"line\"/>\n      <point x=\"2234\" y=\"575\" type=\"line\"/>\n      <point x=\"2234\" y=\"843\" type=\"line\"/>\n      <point x=\"1210\" y=\"1221\" type=\"line\"/>\n      <point x=\"186\" y=\"843\" type=\"line\"/>\n      <point x=\"186\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1210\" y=\"467\" type=\"line\"/>\n      <point x=\"454\" y=\"700\" type=\"line\"/>\n      <point x=\"454\" y=\"718\" type=\"line\"/>\n      <point x=\"1210\" y=\"951\" type=\"line\"/>\n      <point x=\"1960\" y=\"718\" type=\"line\"/>\n      <point x=\"1960\" y=\"700\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"520\" y=\"584\" type=\"line\"/>\n      <point x=\"520\" y=\"834\" type=\"line\"/>\n      <point x=\"-20\" y=\"834\" type=\"line\"/>\n      <point x=\"-20\" y=\"584\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hyphen_middle.seq\" xScale=\"-1\" xOffset=\"1200\"/>\n    <component base=\"less.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1220\" y=\"584\" type=\"line\"/>\n      <point x=\"1220\" y=\"834\" type=\"line\"/>\n      <point x=\"253\" y=\"834\" type=\"line\"/>\n      <point x=\"253\" y=\"584\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-139\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1218\" y=\"164\" type=\"line\"/>\n      <point x=\"1218\" y=\"434\" type=\"line\"/>\n      <point x=\"515\" y=\"700\" type=\"line\"/>\n      <point x=\"515\" y=\"718\" type=\"line\"/>\n      <point x=\"1218\" y=\"984\" type=\"line\"/>\n      <point x=\"1218\" y=\"1254\" type=\"line\"/>\n      <point x=\"240\" y=\"843\" type=\"line\"/>\n      <point x=\"240\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2120\" y=\"164\" type=\"line\"/>\n      <point x=\"2120\" y=\"434\" type=\"line\"/>\n      <point x=\"1437\" y=\"700\" type=\"line\"/>\n      <point x=\"1437\" y=\"718\" type=\"line\"/>\n      <point x=\"2120\" y=\"984\" type=\"line\"/>\n      <point x=\"2120\" y=\"1254\" type=\"line\"/>\n      <point x=\"1162\" y=\"843\" type=\"line\"/>\n      <point x=\"1162\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_less_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"equal\" xOffset=\"2344\"/>\n    <component base=\"less\" xOffset=\"1159\"/>\n    <component base=\"less\" xOffset=\"31\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_less_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"333\" type=\"line\"/>\n      <point x=\"1022\" y=\"333\" type=\"line\"/>\n      <point x=\"1022\" y=\"583\" type=\"line\"/>\n      <point x=\"-20\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"835\" type=\"line\"/>\n      <point x=\"1022\" y=\"835\" type=\"line\"/>\n      <point x=\"1022\" y=\"1085\" type=\"line\"/>\n      <point x=\"-20\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1248\" y=\"2\" type=\"line\"/>\n      <point x=\"1418\" y=\"157\" type=\"line\"/>\n      <point x=\"1022\" y=\"583\" type=\"line\"/>\n      <point x=\"696\" y=\"577\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"688\" y=\"835\" type=\"line\"/>\n      <point x=\"1022\" y=\"835\" type=\"line\"/>\n      <point x=\"1418\" y=\"1257\" type=\"line\"/>\n      <point x=\"1248\" y=\"1412\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"1061\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_less_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"835\" type=\"line\"/>\n      <point x=\"822\" y=\"835\" type=\"line\"/>\n      <point x=\"822\" y=\"1085\" type=\"line\"/>\n      <point x=\"-50\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"333\" type=\"line\"/>\n      <point x=\"822\" y=\"333\" type=\"line\"/>\n      <point x=\"822\" y=\"583\" type=\"line\"/>\n      <point x=\"-50\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1367\" y=\"835\" type=\"line\"/>\n      <point x=\"2450\" y=\"835\" type=\"line\"/>\n      <point x=\"2450\" y=\"1085\" type=\"line\"/>\n      <point x=\"1584\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1604\" y=\"333\" type=\"line\"/>\n      <point x=\"2450\" y=\"333\" type=\"line\"/>\n      <point x=\"2450\" y=\"583\" type=\"line\"/>\n      <point x=\"1344\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"488\" y=\"835\" type=\"line\"/>\n      <point x=\"822\" y=\"835\" type=\"line\"/>\n      <point x=\"1218\" y=\"1257\" type=\"line\"/>\n      <point x=\"1048\" y=\"1412\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1048\" y=\"2\" type=\"line\"/>\n      <point x=\"1218\" y=\"157\" type=\"line\"/>\n      <point x=\"822\" y=\"583\" type=\"line\"/>\n      <point x=\"496\" y=\"577\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"861\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_less_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2420\" y=\"333\" type=\"line\"/>\n      <point x=\"2420\" y=\"583\" type=\"line\"/>\n      <point x=\"1144\" y=\"583\" type=\"line\"/>\n      <point x=\"1404\" y=\"333\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2420\" y=\"835\" type=\"line\"/>\n      <point x=\"2420\" y=\"1085\" type=\"line\"/>\n      <point x=\"1384\" y=\"1085\" type=\"line\"/>\n      <point x=\"1167\" y=\"835\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"21\"/>\n    <component base=\"less.alt\" xOffset=\"661\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_less_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"584\" type=\"line\"/>\n      <point x=\"820\" y=\"584\" type=\"line\"/>\n      <point x=\"820\" y=\"834\" type=\"line\"/>\n      <point x=\"-20\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"421\"/>\n    <component base=\"less.alt\" xOffset=\"1061\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_less_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1394\" y=\"584\" type=\"line\"/>\n      <point x=\"2450\" y=\"584\" type=\"line\"/>\n      <point x=\"2450\" y=\"834\" type=\"line\"/>\n      <point x=\"1394\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"584\" type=\"line\"/>\n      <point x=\"769\" y=\"584\" type=\"line\"/>\n      <point x=\"769\" y=\"834\" type=\"line\"/>\n      <point x=\"-50\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"311\"/>\n    <component base=\"less.alt\" xOffset=\"951\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_less_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1030\" y=\"584\" type=\"line\"/>\n      <point x=\"2420\" y=\"584\" type=\"line\"/>\n      <point x=\"2420\" y=\"834\" type=\"line\"/>\n      <point x=\"1030\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"21\"/>\n    <component base=\"less.alt\" xOffset=\"661\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"2266\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"less\" xOffset=\"1220\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"81\"/>\n    <component base=\"plus\" xOffset=\"1152\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_plus_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_plus_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"plus\" xOffset=\"1210\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>greater</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1554\" y=\"39\" type=\"line\"/>\n      <point x=\"1559\" y=\"306\" type=\"line\"/>\n      <point x=\"555\" y=\"692\" type=\"line\"/>\n      <point x=\"555\" y=\"726\" type=\"line\"/>\n      <point x=\"1217\" y=\"961\" type=\"line\"/>\n      <point x=\"1217\" y=\"1231\" type=\"line\"/>\n      <point x=\"240\" y=\"843\" type=\"line\"/>\n      <point x=\"240\" y=\"575\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"1144\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/less_slash_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_slash_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2386\" y=\"189\" type=\"line\"/>\n      <point x=\"3360\" y=\"575\" type=\"line\"/>\n      <point x=\"3360\" y=\"843\" type=\"line\"/>\n      <point x=\"2031\" y=\"1389\" type=\"line\"/>\n      <point x=\"2031\" y=\"1120\" type=\"line\"/>\n      <point x=\"3043\" y=\"726\" type=\"line\"/>\n      <point x=\"3043\" y=\"692\" type=\"line\"/>\n      <point x=\"2386\" y=\"459\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1553\" y=\"39\" type=\"line\"/>\n      <point x=\"1558\" y=\"306\" type=\"line\"/>\n      <point x=\"555\" y=\"692\" type=\"line\"/>\n      <point x=\"555\" y=\"726\" type=\"line\"/>\n      <point x=\"1217\" y=\"961\" type=\"line\"/>\n      <point x=\"1217\" y=\"1231\" type=\"line\"/>\n      <point x=\"240\" y=\"843\" type=\"line\"/>\n      <point x=\"240\" y=\"575\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"1210\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lessequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lessequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2264\"/>\n  <outline>\n    <contour>\n      <point x=\"1091\" y=\"297\" type=\"line\"/>\n      <point x=\"1091\" y=\"567\" type=\"line\"/>\n      <point x=\"417\" y=\"750\" type=\"line\"/>\n      <point x=\"417\" y=\"768\" type=\"line\"/>\n      <point x=\"1091\" y=\"951\" type=\"line\"/>\n      <point x=\"1091\" y=\"1221\" type=\"line\"/>\n      <point x=\"99\" y=\"893\" type=\"line\"/>\n      <point x=\"99\" y=\"625\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"70\" type=\"line\"/>\n      <point x=\"1091\" y=\"70\" type=\"line\"/>\n      <point x=\"1091\" y=\"315\" type=\"line\"/>\n      <point x=\"100\" y=\"315\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lineF_eedC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineFeedControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240A\"/>\n  <outline>\n    <component base=\"L.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"F.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lineF_eedC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineFeedControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"992\" type=\"line\"/>\n      <point x=\"1125\" y=\"992\" type=\"line\"/>\n      <point x=\"1125\" y=\"1234\" type=\"line\"/>\n      <point x=\"75\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"430\" type=\"line\"/>\n      <point x=\"75\" y=\"430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"590\" type=\"line\"/>\n      <point x=\"1125\" y=\"590\" type=\"line\"/>\n      <point x=\"1125\" y=\"832\" type=\"line\"/>\n      <point x=\"75\" y=\"832\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lineseparator.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineseparator\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2028\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lira.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lira\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A4\"/>\n  <outline>\n    <contour>\n      <point x=\"115\" y=\"0\" type=\"line\"/>\n      <point x=\"444\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"243\" type=\"line\"/>\n      <point x=\"503\" y=\"376\"/>\n      <point x=\"556\" y=\"494\"/>\n      <point x=\"556\" y=\"627\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"973\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"1111\"/>\n      <point x=\"636\" y=\"1187\"/>\n      <point x=\"752\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"1187\"/>\n      <point x=\"889\" y=\"1140\"/>\n      <point x=\"930\" y=\"1057\" type=\"curve\"/>\n      <point x=\"1132\" y=\"1213\" type=\"line\"/>\n      <point x=\"1068\" y=\"1357\"/>\n      <point x=\"928\" y=\"1440\"/>\n      <point x=\"743\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"1440\"/>\n      <point x=\"275\" y=\"1294\"/>\n      <point x=\"275\" y=\"1036\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"275\" y=\"627\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"275\" y=\"494\"/>\n      <point x=\"223\" y=\"377\"/>\n      <point x=\"115\" y=\"243\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"1113\" y=\"0\" type=\"line\"/>\n      <point x=\"1113\" y=\"243\" type=\"line\"/>\n      <point x=\"192\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"92\" y=\"438\" type=\"line\"/>\n      <point x=\"897\" y=\"438\" type=\"line\"/>\n      <point x=\"897\" y=\"626\" type=\"line\"/>\n      <point x=\"92\" y=\"626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"92\" y=\"714\" type=\"line\"/>\n      <point x=\"897\" y=\"714\" type=\"line\"/>\n      <point x=\"897\" y=\"902\" type=\"line\"/>\n      <point x=\"92\" y=\"902\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/liraT_urkish.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"liraTurkish\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BA\"/>\n  <outline>\n    <contour>\n      <point x=\"688\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"-20\"/>\n      <point x=\"990\" y=\"19\"/>\n      <point x=\"1141\" y=\"112\" type=\"curve\"/>\n      <point x=\"1057\" y=\"341\" type=\"line\"/>\n      <point x=\"940\" y=\"269\"/>\n      <point x=\"834\" y=\"233\"/>\n      <point x=\"738\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"233\"/>\n      <point x=\"567\" y=\"305\"/>\n      <point x=\"567\" y=\"473\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"1420\" type=\"line\"/>\n      <point x=\"303\" y=\"1420\" type=\"line\"/>\n      <point x=\"303\" y=\"400\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"106\"/>\n      <point x=\"416\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"103\" y=\"403\" type=\"line\"/>\n      <point x=\"998\" y=\"553\" type=\"line\"/>\n      <point x=\"998\" y=\"776\" type=\"line\"/>\n      <point x=\"103\" y=\"626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"103\" y=\"783\" type=\"line\"/>\n      <point x=\"998\" y=\"933\" type=\"line\"/>\n      <point x=\"998\" y=\"1156\" type=\"line\"/>\n      <point x=\"103\" y=\"1006\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/literS_ign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"literSign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2113\"/>\n  <outline>\n    <contour>\n      <point x=\"997\" y=\"0\" type=\"curve\"/>\n      <point x=\"1027\" y=\"252\" type=\"line\"/>\n      <point x=\"697\" y=\"252\"/>\n      <point x=\"503\" y=\"448\"/>\n      <point x=\"503\" y=\"783\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"503\" y=\"1041\"/>\n      <point x=\"577\" y=\"1189\"/>\n      <point x=\"705\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1189\"/>\n      <point x=\"824\" y=\"1116\"/>\n      <point x=\"824\" y=\"989\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"696\"/>\n      <point x=\"531\" y=\"528\"/>\n      <point x=\"20\" y=\"528\" type=\"curve\"/>\n      <point x=\"20\" y=\"277\" type=\"line\"/>\n      <point x=\"707\" y=\"277\"/>\n      <point x=\"1101\" y=\"549\"/>\n      <point x=\"1101\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"1288\"/>\n      <point x=\"957\" y=\"1440\"/>\n      <point x=\"705\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1440\"/>\n      <point x=\"226\" y=\"1201\"/>\n      <point x=\"226\" y=\"783\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"290\"/>\n      <point x=\"511\" y=\"0\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0459\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"46\" y=\"0\" type=\"line\"/>\n      <point x=\"343\" y=\"0\"/>\n      <point x=\"433\" y=\"79\"/>\n      <point x=\"433\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"1060\" type=\"line\"/>\n      <point x=\"167\" y=\"1060\" type=\"line\"/>\n      <point x=\"167\" y=\"381\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"281\"/>\n      <point x=\"139\" y=\"252\"/>\n      <point x=\"46\" y=\"252\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"550\" y=\"0\" type=\"line\"/>\n      <point x=\"776\" y=\"0\" type=\"line\"/>\n      <point x=\"776\" y=\"1060\" type=\"line\"/>\n      <point x=\"550\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"669\" y=\"0\" type=\"line\"/>\n      <point x=\"824\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"0\"/>\n      <point x=\"1188\" y=\"136\"/>\n      <point x=\"1188\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1188\" y=\"611\"/>\n      <point x=\"1055\" y=\"747\"/>\n      <point x=\"824\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"747\" type=\"line\"/>\n      <point x=\"666\" y=\"495\" type=\"line\"/>\n      <point x=\"815\" y=\"495\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"495\"/>\n      <point x=\"921\" y=\"454\"/>\n      <point x=\"921\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"293\"/>\n      <point x=\"885\" y=\"252\"/>\n      <point x=\"815\" y=\"252\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"209\" y=\"886\" type=\"line\"/>\n      <point x=\"726\" y=\"886\" type=\"line\"/>\n      <point x=\"726\" y=\"1060\" type=\"line\"/>\n      <point x=\"209\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/llinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"llinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E3B\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lmiddletilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lmiddletilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026B\"/>\n  <outline>\n    <contour>\n      <point x=\"51\" y=\"562\" type=\"line\"/>\n      <point x=\"284\" y=\"562\" type=\"line\"/>\n      <point x=\"284\" y=\"647\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"695\"/>\n      <point x=\"305\" y=\"716\"/>\n      <point x=\"355\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"411\" y=\"716\"/>\n      <point x=\"457\" y=\"695\"/>\n      <point x=\"518\" y=\"661\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"587\" y=\"622\"/>\n      <point x=\"662\" y=\"590\"/>\n      <point x=\"747\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"590\"/>\n      <point x=\"979\" y=\"669\"/>\n      <point x=\"979\" y=\"854\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"970\" type=\"line\"/>\n      <point x=\"747\" y=\"970\" type=\"line\"/>\n      <point x=\"747\" y=\"886\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"838\"/>\n      <point x=\"730\" y=\"817\"/>\n      <point x=\"686\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"817\"/>\n      <point x=\"590\" y=\"842\"/>\n      <point x=\"539\" y=\"872\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"916\"/>\n      <point x=\"394\" y=\"943\"/>\n      <point x=\"307\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"129\" y=\"943\"/>\n      <point x=\"51\" y=\"864\"/>\n      <point x=\"51\" y=\"679\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/logicalnot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"logicalnot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AC\"/>\n  <outline>\n    <contour>\n      <point x=\"83\" y=\"689\" type=\"line\"/>\n      <point x=\"1117\" y=\"689\" type=\"line\"/>\n      <point x=\"1117\" y=\"931\" type=\"line\"/>\n      <point x=\"83\" y=\"931\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"855\" y=\"350\" type=\"line\"/>\n      <point x=\"1117\" y=\"350\" type=\"line\"/>\n      <point x=\"1117\" y=\"817\" type=\"line\"/>\n      <point x=\"855\" y=\"817\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/logicalnotR_eversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"logicalnotReversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2310\"/>\n  <outline>\n    <contour>\n      <point x=\"83\" y=\"689\" type=\"line\"/>\n      <point x=\"1117\" y=\"689\" type=\"line\"/>\n      <point x=\"1117\" y=\"931\" type=\"line\"/>\n      <point x=\"83\" y=\"931\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"83\" y=\"350\" type=\"line\"/>\n      <point x=\"347\" y=\"350\" type=\"line\"/>\n      <point x=\"347\" y=\"817\" type=\"line\"/>\n      <point x=\"83\" y=\"817\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/longs.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"longs\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017F\"/>\n  <anchor x=\"548\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"780\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"433\" y=\"0\" type=\"line\"/>\n      <point x=\"703\" y=\"0\" type=\"line\"/>\n      <point x=\"703\" y=\"972\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"1167\"/>\n      <point x=\"777\" y=\"1263\"/>\n      <point x=\"928\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"987\" y=\"1263\"/>\n      <point x=\"1046\" y=\"1259\"/>\n      <point x=\"1129\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1181\" y=\"1500\" type=\"line\"/>\n      <point x=\"1098\" y=\"1514\"/>\n      <point x=\"1024\" y=\"1520\"/>\n      <point x=\"934\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"1520\"/>\n      <point x=\"433\" y=\"1338\"/>\n      <point x=\"433\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"51\" y=\"607\" type=\"line\"/>\n      <point x=\"608\" y=\"607\" type=\"line\"/>\n      <point x=\"608\" y=\"858\" type=\"line\"/>\n      <point x=\"51\" y=\"858\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2585\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E1\"/>\n  <note>\nuni25E1\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"917\" y=\"710\" type=\"line\"/>\n      <point x=\"917\" y=\"519\"/>\n      <point x=\"791\" y=\"393\"/>\n      <point x=\"600\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"393\"/>\n      <point x=\"283\" y=\"519\"/>\n      <point x=\"283\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D2\"/>\n  <note>\nuni25D2\n</note>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"252\" type=\"line\"/>\n      <point x=\"1015\" y=\"412\" type=\"line\"/>\n      <point x=\"1015\" y=\"710\" type=\"line\"/>\n      <point x=\"181\" y=\"710\" type=\"line\"/>\n      <point x=\"181\" y=\"459\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2584\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfInverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DB\"/>\n  <note>\nuni25DB\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"185\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"393\"/>\n      <point x=\"917\" y=\"519\"/>\n      <point x=\"917\" y=\"710\" type=\"curve\"/>\n      <point x=\"283\" y=\"710\" type=\"line\"/>\n      <point x=\"283\" y=\"519\"/>\n      <point x=\"409\" y=\"393\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B12\"/>\n  <note>\nuni2B12\n</note>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"1195\" type=\"line\"/>\n      <point x=\"125\" y=\"1195\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DF\"/>\n  <note>\nuni25DF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\"/>\n      <point x=\"600\" y=\"393\" type=\"line\"/>\n      <point x=\"409\" y=\"393\"/>\n      <point x=\"283\" y=\"519\"/>\n      <point x=\"283\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E3\"/>\n  <note>\nuni25E3\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2596\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B14\"/>\n  <note>\nuni2B14\n</note>\n  <outline>\n    <contour>\n      <point x=\"111\" y=\"1209\" type=\"line\"/>\n      <point x=\"1090\" y=\"221\" type=\"line\"/>\n      <point x=\"1090\" y=\"1209\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F5\"/>\n  <note>\nuni25F5\n</note>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"263\" type=\"line\"/>\n      <point x=\"692\" y=\"263\" type=\"line\"/>\n      <point x=\"692\" y=\"802\" type=\"line\"/>\n      <point x=\"162\" y=\"802\" type=\"line\"/>\n      <point x=\"162\" y=\"618\" type=\"line\"/>\n      <point x=\"508\" y=\"618\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FA\"/>\n  <note>\nuni25FA\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"913\" type=\"line\"/>\n      <point x=\"753\" y=\"261\" type=\"line\"/>\n      <point x=\"844\" y=\"402\" type=\"line\"/>\n      <point x=\"144\" y=\"402\" type=\"line\"/>\n      <point x=\"292\" y=\"254\" type=\"line\"/>\n      <point x=\"292\" y=\"954\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2581\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2582\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DE\"/>\n  <note>\nuni25DE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"line\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"917\" y=\"710\" type=\"line\"/>\n      <point x=\"917\" y=\"519\"/>\n      <point x=\"791\" y=\"393\"/>\n      <point x=\"600\" y=\"393\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E2\"/>\n  <note>\nuni25E2\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2597\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightDiagonalHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EA\"/>\n  <note>\nuni25EA\n</note>\n  <outline>\n    <contour>\n      <point x=\"1099\" y=\"1199\" type=\"line\"/>\n      <point x=\"111\" y=\"220\" type=\"line\"/>\n      <point x=\"1099\" y=\"220\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F6\"/>\n  <note>\nuni25F6\n</note>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"263\" type=\"line\"/>\n      <point x=\"692\" y=\"263\" type=\"line\"/>\n      <point x=\"692\" y=\"618\" type=\"line\"/>\n      <point x=\"1058\" y=\"618\" type=\"line\"/>\n      <point x=\"1058\" y=\"802\" type=\"line\"/>\n      <point x=\"508\" y=\"802\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FF\"/>\n  <note>\nuni25FF\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1099\" y=\"913\" type=\"line\"/>\n      <point x=\"908\" y=\"954\" type=\"line\"/>\n      <point x=\"908\" y=\"254\" type=\"line\"/>\n      <point x=\"1056\" y=\"402\" type=\"line\"/>\n      <point x=\"356\" y=\"402\" type=\"line\"/>\n      <point x=\"447\" y=\"261\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2587\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2583\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2586\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowernumeral-greek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowernumeral-greek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0375\"/>\n  <outline>\n    <component base=\"comma\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>comma</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lowlinecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowlinecomb\" format=\"2\">\n  <unicode hex=\"0332\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"-459\" type=\"line\"/>\n      <point x=\"1250\" y=\"-459\" type=\"line\"/>\n      <point x=\"1250\" y=\"-208\" type=\"line\"/>\n      <point x=\"-50\" y=\"-208\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CA\"/>\n  <outline>\n    <contour>\n      <point x=\"454\" y=\"0\" type=\"line\"/>\n      <point x=\"736\" y=\"0\" type=\"line\"/>\n      <point x=\"1120\" y=\"710\" type=\"line\"/>\n      <point x=\"736\" y=\"1420\" type=\"line\"/>\n      <point x=\"454\" y=\"1420\" type=\"line\"/>\n      <point x=\"80\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"230\" type=\"line\"/>\n      <point x=\"353\" y=\"710\" type=\"line\"/>\n      <point x=\"595\" y=\"1190\" type=\"line\"/>\n      <point x=\"847\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/lslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0142\"/>\n  <outline>\n    <contour>\n      <point x=\"128\" y=\"438\" type=\"line\"/>\n      <point x=\"934\" y=\"808\" type=\"line\"/>\n      <point x=\"934\" y=\"1077\" type=\"line\"/>\n      <point x=\"128\" y=\"707\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>l</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/m.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"m\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006D\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"839\" y=\"0\" type=\"line\"/>\n      <point x=\"1105\" y=\"0\" type=\"line\"/>\n      <point x=\"1105\" y=\"830\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1105\" y=\"1006\"/>\n      <point x=\"1042\" y=\"1080\"/>\n      <point x=\"899\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"1080\"/>\n      <point x=\"733\" y=\"1023\"/>\n      <point x=\"721\" y=\"928\" type=\"curve\"/>\n      <point x=\"631\" y=\"928\" type=\"line\"/>\n      <point x=\"703\" y=\"709\" type=\"line\"/>\n      <point x=\"703\" y=\"789\"/>\n      <point x=\"727\" y=\"828\"/>\n      <point x=\"775\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"828\"/>\n      <point x=\"839\" y=\"792\"/>\n      <point x=\"839\" y=\"718\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"0\" type=\"line\"/>\n      <point x=\"362\" y=\"0\" type=\"line\"/>\n      <point x=\"362\" y=\"836\" type=\"line\"/>\n      <point x=\"338\" y=\"1060\" type=\"line\"/>\n      <point x=\"95\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"502\" y=\"0\" type=\"line\"/>\n      <point x=\"703\" y=\"0\" type=\"line\"/>\n      <point x=\"703\" y=\"850\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"1004\"/>\n      <point x=\"640\" y=\"1080\"/>\n      <point x=\"537\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"1080\"/>\n      <point x=\"390\" y=\"1026\"/>\n      <point x=\"376\" y=\"928\" type=\"curve\"/>\n      <point x=\"300\" y=\"928\" type=\"line\"/>\n      <point x=\"362\" y=\"709\" type=\"line\"/>\n      <point x=\"362\" y=\"789\"/>\n      <point x=\"387\" y=\"828\"/>\n      <point x=\"438\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"828\"/>\n      <point x=\"502\" y=\"798\"/>\n      <point x=\"502\" y=\"738\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AF\"/>\n  <outline>\n    <component base=\"macroncomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>macroncomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/macronbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macronbelowcomb\" format=\"2\">\n  <unicode hex=\"0331\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"170\" y=\"-459\" type=\"line\"/>\n      <point x=\"1030\" y=\"-459\" type=\"line\"/>\n      <point x=\"1030\" y=\"-208\" type=\"line\"/>\n      <point x=\"170\" y=\"-208\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/macroncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macroncomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1761\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"213\" y=\"1563\" type=\"line\"/>\n      <point x=\"987\" y=\"1563\" type=\"line\"/>\n      <point x=\"987\" y=\"1801\" type=\"line\"/>\n      <point x=\"213\" y=\"1801\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/macroncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macroncomb\" format=\"2\">\n  <unicode hex=\"0304\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1459\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"170\" y=\"1248\" type=\"line\"/>\n      <point x=\"1030\" y=\"1248\" type=\"line\"/>\n      <point x=\"1030\" y=\"1499\" type=\"line\"/>\n      <point x=\"170\" y=\"1499\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/madda-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"madda-ar\" format=\"2\">\n  <unicode hex=\"0653\"/>\n  <anchor x=\"603\" y=\"1140\" name=\"_top\"/>\n  <anchor x=\"603\" y=\"1123\" name=\"_top.dot\"/>\n  <anchor x=\"603\" y=\"1485\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"680\" y=\"1175\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"1175\"/>\n      <point x=\"844\" y=\"1209\"/>\n      <point x=\"913\" y=\"1272\" type=\"curve\"/>\n      <point x=\"903\" y=\"1423\" type=\"line\"/>\n      <point x=\"829\" y=\"1378\"/>\n      <point x=\"766\" y=\"1342\"/>\n      <point x=\"691\" y=\"1342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"598\" y=\"1342\"/>\n      <point x=\"537\" y=\"1409\"/>\n      <point x=\"446\" y=\"1409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"389\" y=\"1409\"/>\n      <point x=\"345\" y=\"1381\"/>\n      <point x=\"290\" y=\"1320\" type=\"curve\"/>\n      <point x=\"299\" y=\"1181\" type=\"line\"/>\n      <point x=\"352\" y=\"1219\"/>\n      <point x=\"379\" y=\"1242\"/>\n      <point x=\"428\" y=\"1242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"1242\"/>\n      <point x=\"571\" y=\"1175\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/manat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"manat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BC\"/>\n  <outline>\n    <contour>\n      <point x=\"59\" y=\"0\" type=\"line\"/>\n      <point x=\"324\" y=\"0\" type=\"line\"/>\n      <point x=\"324\" y=\"540\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"784\"/>\n      <point x=\"417\" y=\"905\"/>\n      <point x=\"600\" y=\"905\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"905\"/>\n      <point x=\"876\" y=\"784\"/>\n      <point x=\"876\" y=\"540\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"0\" type=\"line\"/>\n      <point x=\"1141\" y=\"0\" type=\"line\"/>\n      <point x=\"1141\" y=\"540\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"952\"/>\n      <point x=\"959\" y=\"1157\"/>\n      <point x=\"600\" y=\"1157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"241\" y=\"1157\"/>\n      <point x=\"59\" y=\"952\"/>\n      <point x=\"59\" y=\"540\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"498\" y=\"0\" type=\"line\"/>\n      <point x=\"702\" y=\"0\" type=\"line\"/>\n      <point x=\"702\" y=\"1420\" type=\"line\"/>\n      <point x=\"498\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/maqaf-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"maqaf-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05BE\"/>\n  <outline>\n    <contour>\n      <point x=\"965\" y=\"1200\" type=\"line\"/>\n      <point x=\"235\" y=\"1200\" type=\"line\"/>\n      <point x=\"235\" y=\"929\" type=\"line\"/>\n      <point x=\"965\" y=\"929\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/mars.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mars\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2642\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"-20\"/>\n      <point x=\"921\" y=\"162\"/>\n      <point x=\"921\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"785\"/>\n      <point x=\"756\" y=\"960\"/>\n      <point x=\"470\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"960\"/>\n      <point x=\"19\" y=\"785\"/>\n      <point x=\"19\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"19\" y=\"162\"/>\n      <point x=\"184\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"233\"/>\n      <point x=\"298\" y=\"322\"/>\n      <point x=\"298\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"625\"/>\n      <point x=\"360\" y=\"708\"/>\n      <point x=\"470\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"708\"/>\n      <point x=\"642\" y=\"625\"/>\n      <point x=\"642\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"322\"/>\n      <point x=\"580\" y=\"233\"/>\n    </contour>\n    <contour>\n      <point x=\"654\" y=\"717\" type=\"line\"/>\n      <point x=\"1132\" y=\"1207\" type=\"line\"/>\n      <point x=\"928\" y=\"1347\" type=\"line\"/>\n      <point x=\"471\" y=\"901\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"940\" y=\"747\" type=\"line\"/>\n      <point x=\"1170\" y=\"747\" type=\"line\"/>\n      <point x=\"1170\" y=\"1410\" type=\"line\"/>\n      <point x=\"990\" y=\"1410\" type=\"line\"/>\n      <point x=\"943\" y=\"1068\" type=\"line\"/>\n      <point x=\"1000\" y=\"1020\" type=\"line\"/>\n      <point x=\"953\" y=\"935\"/>\n      <point x=\"940\" y=\"879\"/>\n      <point x=\"940\" y=\"833\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"507\" y=\"1180\" type=\"line\"/>\n      <point x=\"593\" y=\"1180\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"1180\"/>\n      <point x=\"694\" y=\"1191\"/>\n      <point x=\"756\" y=\"1231\" type=\"curve\"/>\n      <point x=\"811\" y=\"1184\" type=\"line\"/>\n      <point x=\"1170\" y=\"1230\" type=\"line\"/>\n      <point x=\"1170\" y=\"1410\" type=\"line\"/>\n      <point x=\"507\" y=\"1410\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/mediumB_lackS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumBlackSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FE\"/>\n  <note>\nuni25FE\n</note>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/mediumB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FC\"/>\n  <note>\nuni25FC\n</note>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"1160\" type=\"line\"/>\n      <point x=\"150\" y=\"1160\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/mediumW_hiteS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumWhiteSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FD\"/>\n  <note>\nuni25FD\n</note>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/mediumW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FB\"/>\n  <note>\nuni25FB\n</note>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"1160\" type=\"line\"/>\n      <point x=\"150\" y=\"1160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"333\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"977\" type=\"line\"/>\n      <point x=\"867\" y=\"977\" type=\"line\"/>\n      <point x=\"867\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/mediumleftpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumleftpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276C\"/>\n  <outline>\n    <contour>\n      <point x=\"684\" y=\"0\" type=\"line\"/>\n      <point x=\"1002\" y=\"0\" type=\"line\"/>\n      <point x=\"519\" y=\"701\" type=\"line\"/>\n      <point x=\"519\" y=\"719\" type=\"line\"/>\n      <point x=\"1002\" y=\"1420\" type=\"line\"/>\n      <point x=\"684\" y=\"1420\" type=\"line\"/>\n      <point x=\"201\" y=\"719\" type=\"line\"/>\n      <point x=\"201\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/mediumrightpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumrightpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276D\"/>\n  <outline>\n    <contour>\n      <point x=\"198\" y=\"0\" type=\"line\"/>\n      <point x=\"516\" y=\"0\" type=\"line\"/>\n      <point x=\"999\" y=\"701\" type=\"line\"/>\n      <point x=\"999\" y=\"719\" type=\"line\"/>\n      <point x=\"516\" y=\"1420\" type=\"line\"/>\n      <point x=\"198\" y=\"1420\" type=\"line\"/>\n      <point x=\"681\" y=\"719\" type=\"line\"/>\n      <point x=\"681\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meem-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meem-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"702\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"702\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"646\" y=\"1104\" name=\"top\"/>\n  <anchor x=\"643\" y=\"804\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"-654\" type=\"line\"/>\n      <point x=\"369\" y=\"-654\" type=\"line\"/>\n      <point x=\"363\" y=\"-172\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"-47\"/>\n      <point x=\"401\" y=\"-10\"/>\n      <point x=\"488\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"-10\"/>\n      <point x=\"724\" y=\"-11\"/>\n      <point x=\"887\" y=\"-14\" type=\"curve\"/>\n      <point x=\"902\" y=\"86\" type=\"line\"/>\n      <point x=\"993\" y=\"86\" type=\"line\"/>\n      <point x=\"967\" y=\"274\" type=\"line\"/>\n      <point x=\"843\" y=\"278\"/>\n      <point x=\"610\" y=\"285\"/>\n      <point x=\"466\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"221\" y=\"285\"/>\n      <point x=\"113\" y=\"140\"/>\n      <point x=\"117\" y=\"-123\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"21\"/>\n      <point x=\"1275\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"236\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1096\" y=\"285\"/>\n      <point x=\"1055\" y=\"300\"/>\n      <point x=\"988\" y=\"428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"659\"/>\n      <point x=\"769\" y=\"759\"/>\n      <point x=\"637\" y=\"759\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"759\"/>\n      <point x=\"334\" y=\"515\"/>\n      <point x=\"260\" y=\"137\" type=\"curve\"/>\n      <point x=\"449\" y=\"119\" type=\"line\"/>\n      <point x=\"504\" y=\"362\"/>\n      <point x=\"550\" y=\"487\"/>\n      <point x=\"619\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"487\"/>\n      <point x=\"724\" y=\"428\"/>\n      <point x=\"795\" y=\"293\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"84\"/>\n      <point x=\"961\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meem-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meem-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0645\"/>\n  <anchor x=\"702\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"702\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"646\" y=\"1104\" name=\"top\"/>\n  <anchor x=\"643\" y=\"804\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"-654\" type=\"line\"/>\n      <point x=\"369\" y=\"-654\" type=\"line\"/>\n      <point x=\"363\" y=\"-172\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"-47\"/>\n      <point x=\"401\" y=\"-10\"/>\n      <point x=\"488\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"-10\"/>\n      <point x=\"849\" y=\"-11\"/>\n      <point x=\"1012\" y=\"-14\" type=\"curve\"/>\n      <point x=\"1083\" y=\"217\" type=\"line\"/>\n      <point x=\"921\" y=\"621\"/>\n      <point x=\"801\" y=\"759\"/>\n      <point x=\"637\" y=\"759\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"759\"/>\n      <point x=\"334\" y=\"515\"/>\n      <point x=\"260\" y=\"137\" type=\"curve\"/>\n      <point x=\"449\" y=\"119\" type=\"line\"/>\n      <point x=\"504\" y=\"362\"/>\n      <point x=\"550\" y=\"487\"/>\n      <point x=\"619\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"487\"/>\n      <point x=\"752\" y=\"369\"/>\n      <point x=\"851\" y=\"147\" type=\"curve\"/>\n      <point x=\"927\" y=\"280\" type=\"line\"/>\n      <point x=\"802\" y=\"282\"/>\n      <point x=\"610\" y=\"285\"/>\n      <point x=\"466\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"221\" y=\"285\"/>\n      <point x=\"113\" y=\"140\"/>\n      <point x=\"117\" y=\"-123\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meem-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meem-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"683\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"683\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"688\" y=\"1104\" name=\"top\"/>\n  <anchor x=\"685\" y=\"804\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-18\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"-10\"/>\n      <point x=\"293\" y=\"46\"/>\n      <point x=\"468\" y=\"283\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"431\"/>\n      <point x=\"624\" y=\"474\"/>\n      <point x=\"690\" y=\"474\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"474\"/>\n      <point x=\"823\" y=\"405\"/>\n      <point x=\"823\" y=\"347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"306\"/>\n      <point x=\"785\" y=\"285\"/>\n      <point x=\"712\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"596\" y=\"285\"/>\n      <point x=\"528\" y=\"302\"/>\n      <point x=\"435\" y=\"379\" type=\"curve\"/>\n      <point x=\"321\" y=\"138\" type=\"line\"/>\n      <point x=\"380\" y=\"137\" type=\"line\"/>\n      <point x=\"430\" y=\"27\"/>\n      <point x=\"546\" y=\"-10\"/>\n      <point x=\"699\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-10\"/>\n      <point x=\"1028\" y=\"72\"/>\n      <point x=\"1028\" y=\"281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"511\"/>\n      <point x=\"871\" y=\"748\"/>\n      <point x=\"694\" y=\"748\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"748\"/>\n      <point x=\"479\" y=\"677\"/>\n      <point x=\"318\" y=\"469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"191\" y=\"305\"/>\n      <point x=\"152\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"285\"/>\n      <point x=\"-70\" y=\"201\"/>\n      <point x=\"-70\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"46\"/>\n      <point x=\"-54\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meem-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meem-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"622\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"622\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"626\" y=\"1104\" name=\"top\"/>\n  <anchor x=\"623\" y=\"804\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-18\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"133\" y=\"-10\"/>\n      <point x=\"212\" y=\"24\"/>\n      <point x=\"261\" y=\"141\" type=\"curve\"/>\n      <point x=\"299\" y=\"141\" type=\"line\"/>\n      <point x=\"307\" y=\"155\"/>\n      <point x=\"314\" y=\"170\"/>\n      <point x=\"321\" y=\"186\" type=\"curve\"/>\n      <point x=\"270\" y=\"225\" type=\"line\"/>\n      <point x=\"270\" y=\"86\"/>\n      <point x=\"336\" y=\"-10\"/>\n      <point x=\"582\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"-10\"/>\n      <point x=\"852\" y=\"32\"/>\n      <point x=\"883\" y=\"122\" type=\"curve\"/>\n      <point x=\"941\" y=\"122\" type=\"line\"/>\n      <point x=\"882\" y=\"330\" type=\"line\"/>\n      <point x=\"784\" y=\"292\"/>\n      <point x=\"712\" y=\"285\"/>\n      <point x=\"605\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"285\"/>\n      <point x=\"461\" y=\"308\"/>\n      <point x=\"461\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"401\"/>\n      <point x=\"520\" y=\"475\"/>\n      <point x=\"599\" y=\"475\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"475\"/>\n      <point x=\"712\" y=\"441\"/>\n      <point x=\"780\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"108\"/>\n      <point x=\"961\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"21\"/>\n      <point x=\"1275\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"236\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"285\"/>\n      <point x=\"1054\" y=\"305\"/>\n      <point x=\"967\" y=\"442\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"653\"/>\n      <point x=\"744\" y=\"748\"/>\n      <point x=\"614\" y=\"748\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"748\"/>\n      <point x=\"386\" y=\"624\"/>\n      <point x=\"228\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"188\" y=\"298\"/>\n      <point x=\"143\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"285\"/>\n      <point x=\"-70\" y=\"171\"/>\n      <point x=\"-70\" y=\"115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"26\"/>\n      <point x=\"-54\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"254\" y=\"551\" angle=\"0\"/>\n  <outline>\n    <component base=\"meem-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"43\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0765\"/>\n  <outline>\n    <component base=\"meem-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"43\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"85\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"23\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"100\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0766\"/>\n  <outline>\n    <component base=\"meem-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"100\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"81\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemS_topabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemStopabove-ar\" format=\"2\">\n  <unicode hex=\"06E2\"/>\n  <anchor x=\"601\" y=\"1244\" name=\"_top\"/>\n  <anchor x=\"616\" y=\"994\" name=\"_top.dot\"/>\n  <anchor x=\"621\" y=\"1510\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1008\" type=\"curve\"/>\n      <point x=\"586\" y=\"1008\" type=\"line\"/>\n      <point x=\"585\" y=\"1054\"/>\n      <point x=\"583\" y=\"1115\"/>\n      <point x=\"583\" y=\"1145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"1185\"/>\n      <point x=\"599\" y=\"1200\"/>\n      <point x=\"638\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"1200\"/>\n      <point x=\"732\" y=\"1197\"/>\n      <point x=\"767\" y=\"1194\" type=\"curve\"/>\n      <point x=\"799\" y=\"1302\" type=\"line\"/>\n      <point x=\"758\" y=\"1415\"/>\n      <point x=\"703\" y=\"1475\"/>\n      <point x=\"645\" y=\"1475\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"587\" y=\"1475\"/>\n      <point x=\"543\" y=\"1396\"/>\n      <point x=\"515\" y=\"1269\" type=\"curve\"/>\n      <point x=\"596\" y=\"1266\" type=\"line\"/>\n      <point x=\"610\" y=\"1330\"/>\n      <point x=\"617\" y=\"1358\"/>\n      <point x=\"638\" y=\"1358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1358\"/>\n      <point x=\"671\" y=\"1334\"/>\n      <point x=\"693\" y=\"1280\" type=\"curve\"/>\n      <point x=\"716\" y=\"1313\" type=\"line\"/>\n      <point x=\"690\" y=\"1314\"/>\n      <point x=\"631\" y=\"1318\"/>\n      <point x=\"591\" y=\"1318\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"1318\"/>\n      <point x=\"467\" y=\"1266\"/>\n      <point x=\"467\" y=\"1170\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"1119\"/>\n      <point x=\"469\" y=\"1055\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"254\" y=\"551\" angle=\"0\"/>\n  <outline>\n    <component base=\"meem-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"43\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A7\"/>\n  <guideline x=\"468\" y=\"567\" angle=\"0\"/>\n  <outline>\n    <component base=\"meem-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"43\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"254\" y=\"551\" angle=\"0\"/>\n  <outline>\n    <component base=\"meem-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"85\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/meemT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"254\" y=\"551\" angle=\"0\"/>\n  <outline>\n    <component base=\"meem-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"23\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/mem-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mem-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DE\"/>\n  <guideline x=\"124\" y=\"683\" angle=\"90\"/>\n  <anchor x=\"636\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"107\" y=\"0\" type=\"line\"/>\n      <point x=\"388\" y=\"0\" type=\"line\"/>\n      <point x=\"453\" y=\"712\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"871\"/>\n      <point x=\"531\" y=\"936\"/>\n      <point x=\"654\" y=\"936\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"936\"/>\n      <point x=\"817\" y=\"840\"/>\n      <point x=\"817\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"446\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"326\"/>\n      <point x=\"768\" y=\"270\"/>\n      <point x=\"673\" y=\"270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"523\" y=\"270\" type=\"line\"/>\n      <point x=\"523\" y=\"0\" type=\"line\"/>\n      <point x=\"781\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"965\" y=\"0\"/>\n      <point x=\"1076\" y=\"123\"/>\n      <point x=\"1076\" y=\"329\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1076\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1076\" y=\"1064\"/>\n      <point x=\"934\" y=\"1206\"/>\n      <point x=\"686\" y=\"1206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"452\" y=\"1206\"/>\n      <point x=\"370\" y=\"1075\"/>\n      <point x=\"329\" y=\"977\" type=\"curve\"/>\n      <point x=\"317\" y=\"977\" type=\"line\"/>\n      <point x=\"208\" y=\"925\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"196\" y=\"642\" type=\"line\"/>\n      <point x=\"321\" y=\"968\" type=\"line\"/>\n      <point x=\"244\" y=\"1200\" type=\"line\"/>\n      <point x=\"2\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/memdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"memdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB3E\"/>\n  <outline>\n    <component base=\"mem-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"36\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/micro.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"micro\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B5\"/>\n  <outline>\n    <component base=\"mu\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/minus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"minus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2212\"/>\n  <outline>\n    <contour>\n      <point x=\"83\" y=\"584\" type=\"line\"/>\n      <point x=\"1117\" y=\"584\" type=\"line\"/>\n      <point x=\"1117\" y=\"834\" type=\"line\"/>\n      <point x=\"83\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/minute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"minute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2032\"/>\n  <outline>\n    <contour>\n      <point x=\"417\" y=\"780\" type=\"line\"/>\n      <point x=\"647\" y=\"780\" type=\"line\"/>\n      <point x=\"837\" y=\"1420\" type=\"line\"/>\n      <point x=\"535\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/misraC_omma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"misraComma-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060F\"/>\n  <outline>\n    <contour>\n      <point x=\"247\" y=\"-717\" type=\"line\"/>\n      <point x=\"446\" y=\"-356\"/>\n      <point x=\"619\" y=\"-209\"/>\n      <point x=\"808\" y=\"-209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"-209\"/>\n      <point x=\"923\" y=\"-244\"/>\n      <point x=\"923\" y=\"-281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"923\" y=\"-328\"/>\n      <point x=\"861\" y=\"-354\"/>\n      <point x=\"668\" y=\"-354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"-354\"/>\n      <point x=\"298\" y=\"-310\"/>\n      <point x=\"298\" y=\"-179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"-49\"/>\n      <point x=\"383\" y=\"90\"/>\n      <point x=\"926\" y=\"203\" type=\"curve\"/>\n      <point x=\"907\" y=\"483\" type=\"line\"/>\n      <point x=\"762\" y=\"456\"/>\n      <point x=\"677\" y=\"443\"/>\n      <point x=\"604\" y=\"443\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"443\"/>\n      <point x=\"393\" y=\"470\"/>\n      <point x=\"393\" y=\"571\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"662\"/>\n      <point x=\"450\" y=\"700\"/>\n      <point x=\"587\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"700\"/>\n      <point x=\"744\" y=\"688\"/>\n      <point x=\"825\" y=\"670\" type=\"curve\"/>\n      <point x=\"842\" y=\"913\" type=\"line\"/>\n      <point x=\"750\" y=\"949\"/>\n      <point x=\"656\" y=\"974\"/>\n      <point x=\"543\" y=\"974\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"974\"/>\n      <point x=\"136\" y=\"807\"/>\n      <point x=\"136\" y=\"578\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"412\"/>\n      <point x=\"199\" y=\"314\"/>\n      <point x=\"372\" y=\"273\" type=\"curve\"/>\n      <point x=\"372\" y=\"237\" type=\"line\"/>\n      <point x=\"440\" y=\"235\" type=\"line\"/>\n      <point x=\"432\" y=\"285\" type=\"line\"/>\n      <point x=\"203\" y=\"179\"/>\n      <point x=\"44\" y=\"14\"/>\n      <point x=\"44\" y=\"-219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"44\" y=\"-539\"/>\n      <point x=\"298\" y=\"-649\"/>\n      <point x=\"628\" y=\"-649\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"-649\"/>\n      <point x=\"1173\" y=\"-460\"/>\n      <point x=\"1173\" y=\"-248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1173\" y=\"-58\"/>\n      <point x=\"1048\" y=\"76\"/>\n      <point x=\"824\" y=\"76\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"527\" y=\"76\"/>\n      <point x=\"266\" y=\"-133\"/>\n      <point x=\"43\" y=\"-593\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/mu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BC\"/>\n  <anchor x=\"595\" y=\"-280\" name=\"bottom\"/>\n  <anchor x=\"581\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"561\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"-20\"/>\n      <point x=\"724\" y=\"54\"/>\n      <point x=\"729\" y=\"204\" type=\"curve\"/>\n      <point x=\"799\" y=\"204\" type=\"line\"/>\n      <point x=\"753\" y=\"540\" type=\"line\"/>\n      <point x=\"753\" y=\"324\"/>\n      <point x=\"688\" y=\"240\"/>\n      <point x=\"561\" y=\"240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"240\"/>\n      <point x=\"405\" y=\"326\"/>\n      <point x=\"405\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"1060\" type=\"line\"/>\n      <point x=\"134\" y=\"1060\" type=\"line\"/>\n      <point x=\"134\" y=\"360\" type=\"line\"/>\n      <point x=\"341\" y=\"204\" type=\"line\"/>\n      <point x=\"406\" y=\"204\" type=\"line\"/>\n      <point x=\"411\" y=\"54\"/>\n      <point x=\"462\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"134\" y=\"-460\" type=\"line\"/>\n      <point x=\"415\" y=\"-460\" type=\"line\"/>\n      <point x=\"377\" y=\"237\" type=\"line\"/>\n      <point x=\"134\" y=\"430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"771\" y=\"-10\" type=\"line\"/>\n      <point x=\"1170\" y=\"0\" type=\"line\"/>\n      <point x=\"1170\" y=\"220\" type=\"line\"/>\n      <point x=\"1024\" y=\"242\" type=\"line\"/>\n      <point x=\"1024\" y=\"480\" type=\"line\"/>\n      <point x=\"753\" y=\"480\" type=\"line\"/>\n      <point x=\"753\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"753\" y=\"300\" type=\"line\"/>\n      <point x=\"1024\" y=\"360\" type=\"line\"/>\n      <point x=\"1024\" y=\"1060\" type=\"line\"/>\n      <point x=\"753\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/multiply.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"multiply\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D7\"/>\n  <outline>\n    <contour>\n      <point x=\"299\" y=\"188\" type=\"line\"/>\n      <point x=\"121\" y=\"359\" type=\"line\"/>\n      <point x=\"901\" y=\"1188\" type=\"line\"/>\n      <point x=\"1079\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"901\" y=\"188\" type=\"line\"/>\n      <point x=\"121\" y=\"1015\" type=\"line\"/>\n      <point x=\"299\" y=\"1188\" type=\"line\"/>\n      <point x=\"1079\" y=\"359\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/n.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"n\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006E\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"938\"/>\n      <point x=\"921\" y=\"1080\"/>\n      <point x=\"697\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"1080\"/>\n      <point x=\"468\" y=\"1010\"/>\n      <point x=\"448\" y=\"868\" type=\"curve\"/>\n      <point x=\"360\" y=\"868\" type=\"line\"/>\n      <point x=\"422\" y=\"529\" type=\"line\"/>\n      <point x=\"422\" y=\"726\"/>\n      <point x=\"491\" y=\"823\"/>\n      <point x=\"626\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"823\"/>\n      <point x=\"778\" y=\"751\"/>\n      <point x=\"778\" y=\"623\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"836\" type=\"line\"/>\n      <point x=\"393\" y=\"1060\" type=\"line\"/>\n      <point x=\"151\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0144\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"acutecomb\" xOffset=\"51\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/naira.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"naira\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A6\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"599\" type=\"line\"/>\n      <point x=\"1200\" y=\"599\" type=\"line\"/>\n      <point x=\"1200\" y=\"821\" type=\"line\"/>\n      <point x=\"0\" y=\"821\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/napostrophe.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"napostrophe\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0149\"/>\n  <outline>\n    <contour>\n      <point x=\"199\" y=\"1110\" type=\"line\"/>\n      <point x=\"259\" y=\"1171\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"1272\"/>\n      <point x=\"405\" y=\"1368\"/>\n      <point x=\"405\" y=\"1458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"1643\"/>\n      <point x=\"302\" y=\"1740\"/>\n      <point x=\"101\" y=\"1740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"16\" y=\"1740\" type=\"line\"/>\n      <point x=\"16\" y=\"1495\" type=\"line\"/>\n      <point x=\"81\" y=\"1495\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"126\" y=\"1495\"/>\n      <point x=\"150\" y=\"1476\"/>\n      <point x=\"150\" y=\"1438\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"1402\"/>\n      <point x=\"118\" y=\"1373\"/>\n      <point x=\"73\" y=\"1327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"23\" y=\"1276\" type=\"line\"/>\n    </contour>\n    <component base=\"n\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>n</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nbspace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nbspace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A0\"/>\n  <outline>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ncaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ncaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0148\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"caroncomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ncommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ncommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0146\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"negativeAcknowledgeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2415\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"K.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>K.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"negativeAcknowledgeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"535\" type=\"line\"/>\n      <point x=\"1125\" y=\"775\" type=\"line\"/>\n      <point x=\"459\" y=\"1020\" type=\"line\"/>\n      <point x=\"459\" y=\"780\" type=\"line\"/>\n    </contour>\n    <component base=\"acknowledgeControl.ss20\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/newlineC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"newlineControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2424\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ng-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ng-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"537\" y=\"1531\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"116\" yOffset=\"676\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ng-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ng-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AD\"/>\n  <anchor x=\"537\" y=\"1531\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"116\" yOffset=\"676\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ng-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ng-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"330\" y=\"1654\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"-15\" yOffset=\"764\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ng-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ng-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"350\" y=\"1654\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"-10\" yOffset=\"764\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ngoeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ngoeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"653\" y=\"1729\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"260\" yOffset=\"984\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ngoeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ngoeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B1\"/>\n  <anchor x=\"653\" y=\"1729\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"260\" yOffset=\"984\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ngoeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ngoeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"433\" y=\"1729\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"39\" yOffset=\"984\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ngoeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ngoeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"453\" y=\"1729\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"44\" yOffset=\"984\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nhookleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nhookleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0272\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"938\"/>\n      <point x=\"921\" y=\"1080\"/>\n      <point x=\"697\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"1080\"/>\n      <point x=\"468\" y=\"1010\"/>\n      <point x=\"448\" y=\"868\" type=\"curve\"/>\n      <point x=\"360\" y=\"868\" type=\"line\"/>\n      <point x=\"422\" y=\"529\" type=\"line\"/>\n      <point x=\"422\" y=\"728\"/>\n      <point x=\"491\" y=\"825\"/>\n      <point x=\"626\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"825\"/>\n      <point x=\"778\" y=\"752\"/>\n      <point x=\"778\" y=\"623\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"-103\" y=\"-474\" type=\"line\"/>\n      <point x=\"-63\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"-417\"/>\n      <point x=\"422\" y=\"-284\"/>\n      <point x=\"422\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"444\" type=\"line\"/>\n      <point x=\"151\" y=\"444\" type=\"line\"/>\n      <point x=\"151\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"-119\"/>\n      <point x=\"92\" y=\"-193\"/>\n      <point x=\"-43\" y=\"-216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-121\" y=\"-229\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"288\" type=\"line\"/>\n      <point x=\"422\" y=\"288\" type=\"line\"/>\n      <point x=\"422\" y=\"836\" type=\"line\"/>\n      <point x=\"393\" y=\"1060\" type=\"line\"/>\n      <point x=\"151\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nine-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0669\"/>\n  <outline>\n    <contour>\n      <point x=\"853\" y=\"-10\" type=\"curve\"/>\n      <point x=\"1117\" y=\"0\" type=\"line\"/>\n      <point x=\"1081\" y=\"293\"/>\n      <point x=\"1050\" y=\"486\"/>\n      <point x=\"1009\" y=\"775\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1263\"/>\n      <point x=\"825\" y=\"1440\"/>\n      <point x=\"558\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"1440\"/>\n      <point x=\"135\" y=\"1230\"/>\n      <point x=\"135\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"135\" y=\"677\"/>\n      <point x=\"246\" y=\"552\"/>\n      <point x=\"494\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"624\" y=\"555\"/>\n      <point x=\"700\" y=\"599\"/>\n      <point x=\"726\" y=\"666\" type=\"curve\"/>\n      <point x=\"823\" y=\"666\" type=\"line\"/>\n      <point x=\"819\" y=\"915\" type=\"line\"/>\n      <point x=\"697\" y=\"869\"/>\n      <point x=\"653\" y=\"852\"/>\n      <point x=\"561\" y=\"852\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"421\" y=\"852\"/>\n      <point x=\"392\" y=\"880\"/>\n      <point x=\"392\" y=\"964\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"392\" y=\"1067\"/>\n      <point x=\"452\" y=\"1145\"/>\n      <point x=\"537\" y=\"1145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"1145\"/>\n      <point x=\"703\" y=\"1091\"/>\n      <point x=\"735\" y=\"827\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"541\"/>\n      <point x=\"812\" y=\"260\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nine-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"711\" y=\"-1\" type=\"curve\"/>\n      <point x=\"872\" y=\"0\" type=\"line\"/>\n      <point x=\"856\" y=\"134\"/>\n      <point x=\"844\" y=\"216\"/>\n      <point x=\"825\" y=\"345\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"565\"/>\n      <point x=\"731\" y=\"638\"/>\n      <point x=\"594\" y=\"638\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"458\" y=\"638\"/>\n      <point x=\"374\" y=\"529\"/>\n      <point x=\"374\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"250\"/>\n      <point x=\"440\" y=\"202\"/>\n      <point x=\"545\" y=\"202\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"202\"/>\n      <point x=\"650\" y=\"234\"/>\n      <point x=\"661\" y=\"273\" type=\"curve\"/>\n      <point x=\"697\" y=\"275\" type=\"line\"/>\n      <point x=\"690\" y=\"376\" type=\"line\"/>\n      <point x=\"636\" y=\"359\"/>\n      <point x=\"618\" y=\"356\"/>\n      <point x=\"591\" y=\"356\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"356\"/>\n      <point x=\"532\" y=\"370\"/>\n      <point x=\"532\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"456\"/>\n      <point x=\"552\" y=\"488\"/>\n      <point x=\"590\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"623\" y=\"488\"/>\n      <point x=\"644\" y=\"462\"/>\n      <point x=\"657\" y=\"368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"245\"/>\n      <point x=\"694\" y=\"109\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nine-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"nine-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nine-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F9\"/>\n  <outline>\n    <component base=\"nine-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>nine-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>nine-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nine-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"nine-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>nine-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nine-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"nine-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>nine-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nine.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ninesuperior\" yOffset=\"-814\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0039\"/>\n  <outline>\n    <contour>\n      <point x=\"487\" y=\"506\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"506\"/>\n      <point x=\"756\" y=\"590\"/>\n      <point x=\"792\" y=\"738\" type=\"curve\"/>\n      <point x=\"874\" y=\"738\" type=\"line\"/>\n      <point x=\"1099\" y=\"920\" type=\"line\"/>\n      <point x=\"1099\" y=\"1238\"/>\n      <point x=\"914\" y=\"1426\"/>\n      <point x=\"600\" y=\"1426\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"1426\"/>\n      <point x=\"99\" y=\"1254\"/>\n      <point x=\"99\" y=\"958\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"670\"/>\n      <point x=\"239\" y=\"506\"/>\n    </contour>\n    <contour>\n      <point x=\"229\" y=\"-20\" type=\"line\"/>\n      <point x=\"816\" y=\"8\"/>\n      <point x=\"1099\" y=\"287\"/>\n      <point x=\"1099\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"920\" type=\"line\"/>\n      <point x=\"818\" y=\"822\" type=\"line\"/>\n      <point x=\"818\" y=\"740\" type=\"line\"/>\n      <point x=\"818\" y=\"416\"/>\n      <point x=\"619\" y=\"249\"/>\n      <point x=\"209\" y=\"232\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"594\" y=\"757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"757\"/>\n      <point x=\"378\" y=\"829\"/>\n      <point x=\"378\" y=\"958\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"1096\"/>\n      <point x=\"458\" y=\"1174\"/>\n      <point x=\"598\" y=\"1174\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"1174\"/>\n      <point x=\"820\" y=\"1099\"/>\n      <point x=\"820\" y=\"971\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"835\"/>\n      <point x=\"738\" y=\"757\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nine.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ninesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nineinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nineinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2089\"/>\n  <outline>\n    <component base=\"ninesuperior\" yOffset=\"-814\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ninesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ninesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2079\"/>\n  <outline>\n    <contour>\n      <point x=\"383\" y=\"794\" type=\"line\"/>\n      <point x=\"742\" y=\"805\"/>\n      <point x=\"895\" y=\"914\"/>\n      <point x=\"895\" y=\"1156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"1177\" type=\"line\"/>\n      <point x=\"751\" y=\"1274\" type=\"line\"/>\n      <point x=\"668\" y=\"1129\" type=\"line\"/>\n      <point x=\"668\" y=\"1027\"/>\n      <point x=\"581\" y=\"981\"/>\n      <point x=\"375\" y=\"977\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"478\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"1040\"/>\n      <point x=\"624\" y=\"1072\"/>\n      <point x=\"643\" y=\"1128\" type=\"curve\"/>\n      <point x=\"691\" y=\"1128\" type=\"line\"/>\n      <point x=\"754\" y=\"1264\" type=\"line\"/>\n      <point x=\"895\" y=\"1177\" type=\"line\"/>\n      <point x=\"895\" y=\"1357\"/>\n      <point x=\"800\" y=\"1440\"/>\n      <point x=\"593\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"1440\"/>\n      <point x=\"305\" y=\"1358\"/>\n      <point x=\"305\" y=\"1217\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"1104\"/>\n      <point x=\"367\" y=\"1040\"/>\n    </contour>\n    <contour>\n      <point x=\"598\" y=\"1183\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1183\"/>\n      <point x=\"531\" y=\"1201\"/>\n      <point x=\"531\" y=\"1232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"1266\"/>\n      <point x=\"555\" y=\"1285\"/>\n      <point x=\"598\" y=\"1285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"1285\"/>\n      <point x=\"669\" y=\"1268\"/>\n      <point x=\"669\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"1202\"/>\n      <point x=\"643\" y=\"1183\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"719\" y=\"0\" type=\"line\"/>\n      <point x=\"824\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"0\"/>\n      <point x=\"1188\" y=\"133\"/>\n      <point x=\"1188\" y=\"366\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1188\" y=\"590\"/>\n      <point x=\"1055\" y=\"717\"/>\n      <point x=\"824\" y=\"717\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"717\" type=\"line\"/>\n      <point x=\"699\" y=\"481\" type=\"line\"/>\n      <point x=\"806\" y=\"481\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"481\"/>\n      <point x=\"921\" y=\"439\"/>\n      <point x=\"921\" y=\"366\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"293\"/>\n      <point x=\"880\" y=\"252\"/>\n      <point x=\"806\" y=\"252\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"71\" y=\"0\" type=\"line\"/>\n      <point x=\"342\" y=\"0\" type=\"line\"/>\n      <point x=\"342\" y=\"1060\" type=\"line\"/>\n      <point x=\"71\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"481\" type=\"line\"/>\n      <point x=\"601\" y=\"481\" type=\"line\"/>\n      <point x=\"601\" y=\"717\" type=\"line\"/>\n      <point x=\"150\" y=\"717\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"499\" y=\"0\" type=\"line\"/>\n      <point x=\"733\" y=\"0\" type=\"line\"/>\n      <point x=\"733\" y=\"580\" type=\"line\"/>\n      <point x=\"766\" y=\"630\" type=\"line\"/>\n      <point x=\"766\" y=\"1060\" type=\"line\"/>\n      <point x=\"499\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nlinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E49\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"207F\"/>\n  <outline>\n    <contour>\n      <point x=\"662\" y=\"790\" type=\"line\"/>\n      <point x=\"922\" y=\"790\" type=\"line\"/>\n      <point x=\"922\" y=\"1256\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"922\" y=\"1372\"/>\n      <point x=\"857\" y=\"1440\"/>\n      <point x=\"747\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"1440\"/>\n      <point x=\"595\" y=\"1388\"/>\n      <point x=\"578\" y=\"1296\" type=\"curve\"/>\n      <point x=\"504\" y=\"1296\" type=\"line\"/>\n      <point x=\"541\" y=\"1179\" type=\"line\"/>\n      <point x=\"541\" y=\"1228\"/>\n      <point x=\"562\" y=\"1252\"/>\n      <point x=\"604\" y=\"1252\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"1252\"/>\n      <point x=\"662\" y=\"1230\"/>\n      <point x=\"662\" y=\"1185\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"279\" y=\"790\" type=\"line\"/>\n      <point x=\"541\" y=\"790\" type=\"line\"/>\n      <point x=\"541\" y=\"1293\" type=\"line\"/>\n      <point x=\"529\" y=\"1420\" type=\"line\"/>\n      <point x=\"279\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nonbreakinghyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nonbreakinghyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2011\"/>\n  <outline>\n    <component base=\"hyphentwo\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>hyphentwo</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-38\" yOffset=\"7\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0646\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"4\" yOffset=\"11\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"335\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"235\" yOffset=\"325\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"30\" yOffset=\"213\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08BD\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"437\" y=\"613\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"335\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"437\" y=\"613\" angle=\"0\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"235\" yOffset=\"325\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"30\" yOffset=\"213\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-49\" yOffset=\"-345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B9\"/>\n  <outline>\n    <component base=\"noon-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-9\" yOffset=\"-345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"-48\" yOffset=\"-432\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BC\"/>\n  <outline>\n    <component base=\"noon-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"-8\" yOffset=\"-432\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"437\" y=\"613\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"yehKashmiri-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"335\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"437\" y=\"613\" angle=\"0\"/>\n  <outline>\n    <component base=\"yehKashmiri-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"235\" yOffset=\"325\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yehKashmiri-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"30\" yOffset=\"213\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"_onedotstah\" xOffset=\"-35\" yOffset=\"37\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0768\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"_onedotstah\" xOffset=\"4\" yOffset=\"21\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_onedotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_onedotstah\" xOffset=\"275\" yOffset=\"345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_onedotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_onedotstah\" xOffset=\"235\" yOffset=\"335\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_onedotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_onedotstah\" xOffset=\"30\" yOffset=\"223\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_onedotstah</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-38\" yOffset=\"7\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BD\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"4\" yOffset=\"11\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"212\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"172\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"peh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-49\" yOffset=\"-345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0767\"/>\n  <outline>\n    <component base=\"noon-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-9\" yOffset=\"-345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"335\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"235\" yOffset=\"325\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"30\" yOffset=\"213\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"_dotVabove\" xOffset=\"-38\" yOffset=\"-13\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0769\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"_dotVabove\" xOffset=\"4\" yOffset=\"-9\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_dotVabove\" xOffset=\"275\" yOffset=\"315\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_dotVabove\" xOffset=\"235\" yOffset=\"305\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_dotVabove\" xOffset=\"30\" yOffset=\"193\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonabove-ar\" format=\"2\">\n  <unicode hex=\"06E8\"/>\n  <anchor x=\"601\" y=\"1330\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1080\" name=\"_top.dot\"/>\n  <anchor x=\"591\" y=\"1635\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"589\" y=\"1124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"736\" y=\"1124\"/>\n      <point x=\"797\" y=\"1190\"/>\n      <point x=\"797\" y=\"1305\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"1366\"/>\n      <point x=\"785\" y=\"1424\"/>\n      <point x=\"776\" y=\"1471\" type=\"curve\"/>\n      <point x=\"652\" y=\"1462\" type=\"line\"/>\n      <point x=\"660\" y=\"1409\"/>\n      <point x=\"669\" y=\"1370\"/>\n      <point x=\"669\" y=\"1312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"1270\"/>\n      <point x=\"646\" y=\"1258\"/>\n      <point x=\"595\" y=\"1258\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"1258\"/>\n      <point x=\"529\" y=\"1272\"/>\n      <point x=\"529\" y=\"1315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"1352\"/>\n      <point x=\"537\" y=\"1405\"/>\n      <point x=\"542\" y=\"1444\" type=\"curve\"/>\n      <point x=\"425\" y=\"1446\" type=\"line\"/>\n      <point x=\"413\" y=\"1399\"/>\n      <point x=\"404\" y=\"1354\"/>\n      <point x=\"404\" y=\"1295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"1183\"/>\n      <point x=\"466\" y=\"1124\"/>\n    </contour>\n    <contour>\n      <point x=\"597\" y=\"1467\" type=\"line\"/>\n      <point x=\"679\" y=\"1551\" type=\"line\"/>\n      <point x=\"589\" y=\"1631\" type=\"line\"/>\n      <point x=\"510\" y=\"1550\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"552\" y=\"-417\" name=\"bottom\"/>\n  <anchor x=\"553\" y=\"-347\" name=\"bottom.dot\"/>\n  <anchor x=\"565\" y=\"799\" name=\"top\"/>\n  <anchor x=\"562\" y=\"549\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"545\" y=\"-383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"-383\"/>\n      <point x=\"1059\" y=\"-297\"/>\n      <point x=\"1059\" y=\"136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1059\" y=\"210\"/>\n      <point x=\"1053\" y=\"302\"/>\n      <point x=\"1042\" y=\"392\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1035\" y=\"446\"/>\n      <point x=\"1026\" y=\"523\"/>\n      <point x=\"1016\" y=\"589\" type=\"curve\"/>\n      <point x=\"784\" y=\"564\" type=\"line\"/>\n      <point x=\"807\" y=\"384\"/>\n      <point x=\"822\" y=\"232\"/>\n      <point x=\"822\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"-56\"/>\n      <point x=\"780\" y=\"-98\"/>\n      <point x=\"566\" y=\"-98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"-98\"/>\n      <point x=\"316\" y=\"-60\"/>\n      <point x=\"316\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"226\"/>\n      <point x=\"333\" y=\"356\"/>\n      <point x=\"355\" y=\"495\" type=\"curve\"/>\n      <point x=\"127\" y=\"495\" type=\"line\"/>\n      <point x=\"92\" y=\"353\"/>\n      <point x=\"69\" y=\"209\"/>\n      <point x=\"69\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"69\" y=\"-238\"/>\n      <point x=\"209\" y=\"-383\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1067\" y=\"285\"/>\n      <point x=\"1053\" y=\"302\"/>\n      <point x=\"1042\" y=\"392\" type=\"curve\"/>\n      <point x=\"950\" y=\"188\" type=\"line\"/>\n      <point x=\"970\" y=\"54\"/>\n      <point x=\"1055\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BA\"/>\n  <anchor x=\"592\" y=\"-417\" name=\"bottom\"/>\n  <anchor x=\"593\" y=\"-347\" name=\"bottom.dot\"/>\n  <anchor x=\"607\" y=\"803\" name=\"top\"/>\n  <anchor x=\"604\" y=\"553\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"605\" y=\"-383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"-383\"/>\n      <point x=\"1119\" y=\"-247\"/>\n      <point x=\"1119\" y=\"136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1119\" y=\"246\"/>\n      <point x=\"1106\" y=\"387\"/>\n      <point x=\"1076\" y=\"589\" type=\"curve\"/>\n      <point x=\"834\" y=\"564\" type=\"line\"/>\n      <point x=\"857\" y=\"384\"/>\n      <point x=\"872\" y=\"232\"/>\n      <point x=\"872\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"-36\"/>\n      <point x=\"830\" y=\"-98\"/>\n      <point x=\"626\" y=\"-98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"-98\"/>\n      <point x=\"316\" y=\"-50\"/>\n      <point x=\"316\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"226\"/>\n      <point x=\"333\" y=\"356\"/>\n      <point x=\"355\" y=\"495\" type=\"curve\"/>\n      <point x=\"127\" y=\"495\" type=\"line\"/>\n      <point x=\"92\" y=\"353\"/>\n      <point x=\"69\" y=\"209\"/>\n      <point x=\"69\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"69\" y=\"-268\"/>\n      <point x=\"229\" y=\"-383\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/noonghunnaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunnaabove-ar\" format=\"2\">\n  <unicode hex=\"0658\"/>\n  <anchor x=\"601\" y=\"1074\" name=\"_top\"/>\n  <anchor x=\"601\" y=\"1016\" name=\"_top.dot\"/>\n  <anchor x=\"589\" y=\"1465\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"589\" y=\"1124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"736\" y=\"1124\"/>\n      <point x=\"797\" y=\"1190\"/>\n      <point x=\"797\" y=\"1305\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"1366\"/>\n      <point x=\"785\" y=\"1424\"/>\n      <point x=\"776\" y=\"1471\" type=\"curve\"/>\n      <point x=\"652\" y=\"1462\" type=\"line\"/>\n      <point x=\"660\" y=\"1409\"/>\n      <point x=\"669\" y=\"1370\"/>\n      <point x=\"669\" y=\"1312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"1270\"/>\n      <point x=\"646\" y=\"1258\"/>\n      <point x=\"595\" y=\"1258\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"1258\"/>\n      <point x=\"529\" y=\"1272\"/>\n      <point x=\"529\" y=\"1315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"1352\"/>\n      <point x=\"537\" y=\"1405\"/>\n      <point x=\"542\" y=\"1444\" type=\"curve\"/>\n      <point x=\"425\" y=\"1446\" type=\"line\"/>\n      <point x=\"413\" y=\"1399\"/>\n      <point x=\"404\" y=\"1354\"/>\n      <point x=\"404\" y=\"1295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"1183\"/>\n      <point x=\"466\" y=\"1124\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/note-musical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"note-musical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"266A\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"614\" type=\"line\"/>\n      <point x=\"1048\" y=\"743\"/>\n      <point x=\"1113\" y=\"875\"/>\n      <point x=\"1113\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1113\" y=\"1285\"/>\n      <point x=\"901\" y=\"1420\"/>\n      <point x=\"472\" y=\"1420\" type=\"curve\"/>\n      <point x=\"522\" y=\"1066\" type=\"line\"/>\n      <point x=\"760\" y=\"1066\"/>\n      <point x=\"876\" y=\"1014\"/>\n      <point x=\"876\" y=\"910\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"829\"/>\n      <point x=\"847\" y=\"759\"/>\n      <point x=\"788\" y=\"701\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"373\" y=\"-17\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"537\" y=\"-17\"/>\n      <point x=\"644\" y=\"75\"/>\n      <point x=\"644\" y=\"213\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"346\"/>\n      <point x=\"545\" y=\"435\"/>\n      <point x=\"393\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"435\"/>\n      <point x=\"123\" y=\"347\"/>\n      <point x=\"123\" y=\"208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"123\" y=\"70\"/>\n      <point x=\"220\" y=\"-17\"/>\n    </contour>\n    <contour>\n      <point x=\"472\" y=\"210\" type=\"line\"/>\n      <point x=\"644\" y=\"213\" type=\"line\"/>\n      <point x=\"644\" y=\"1370\" type=\"line\"/>\n      <point x=\"472\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/notedbl-musical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notedbl-musical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"266B\"/>\n  <outline>\n    <contour>\n      <point x=\"333\" y=\"1017\" type=\"line\"/>\n      <point x=\"1120\" y=\"1097\" type=\"line\"/>\n      <point x=\"1120\" y=\"1460\" type=\"line\"/>\n      <point x=\"324\" y=\"1380\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"233\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"-20\"/>\n      <point x=\"480\" y=\"67\"/>\n      <point x=\"480\" y=\"217\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"355\"/>\n      <point x=\"390\" y=\"435\"/>\n      <point x=\"237\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"435\"/>\n      <point x=\"-12\" y=\"350\"/>\n      <point x=\"-12\" y=\"207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-12\" y=\"64\"/>\n      <point x=\"79\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"217\" type=\"line\"/>\n      <point x=\"480\" y=\"217\" type=\"line\"/>\n      <point x=\"480\" y=\"1330\" type=\"line\"/>\n      <point x=\"324\" y=\"1380\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"873\" y=\"98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"98\"/>\n      <point x=\"1120\" y=\"185\"/>\n      <point x=\"1120\" y=\"335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"473\"/>\n      <point x=\"1030\" y=\"553\"/>\n      <point x=\"877\" y=\"553\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"553\"/>\n      <point x=\"628\" y=\"468\"/>\n      <point x=\"628\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"182\"/>\n      <point x=\"719\" y=\"98\"/>\n    </contour>\n    <contour>\n      <point x=\"948\" y=\"335\" type=\"line\"/>\n      <point x=\"1120\" y=\"335\" type=\"line\"/>\n      <point x=\"1120\" y=\"1410\" type=\"line\"/>\n      <point x=\"948\" y=\"1285\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/notequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2260\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"377\" y=\"0\" type=\"line\"/>\n      <point x=\"1091\" y=\"1420\" type=\"line\"/>\n      <point x=\"823\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"equal\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/notidentical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notidentical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2262\"/>\n  <outline>\n    <contour>\n      <point x=\"142\" y=\"0\" type=\"line\"/>\n      <point x=\"411\" y=\"0\" type=\"line\"/>\n      <point x=\"1058\" y=\"1420\" type=\"line\"/>\n      <point x=\"789\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"equivalence\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F1\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BD\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"586\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"411\" y=\"0\" type=\"line\"/>\n      <point x=\"778\" y=\"0\" type=\"line\"/>\n      <point x=\"1137\" y=\"1060\" type=\"line\"/>\n      <point x=\"861\" y=\"1060\" type=\"line\"/>\n      <point x=\"612\" y=\"238\" type=\"line\"/>\n      <point x=\"578\" y=\"238\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"411\" y=\"0\" type=\"line\"/>\n      <point x=\"626\" y=\"79\" type=\"line\"/>\n      <point x=\"491\" y=\"610\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"415\" y=\"910\"/>\n      <point x=\"302\" y=\"1016\"/>\n      <point x=\"128\" y=\"1080\" type=\"curve\"/>\n      <point x=\"-11\" y=\"863\" type=\"line\"/>\n      <point x=\"116\" y=\"820\"/>\n      <point x=\"215\" y=\"677\"/>\n      <point x=\"298\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nullC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nullControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2400\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"U.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>U.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/number-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"number-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0600\"/>\n  <outline>\n    <contour>\n      <point x=\"43\" y=\"-278\" type=\"line\"/>\n      <point x=\"870\" y=\"-278\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"993\" y=\"-278\"/>\n      <point x=\"1100\" y=\"-259\"/>\n      <point x=\"1151\" y=\"-242\" type=\"curve\"/>\n      <point x=\"1142\" y=\"-88\" type=\"line\"/>\n      <point x=\"1102\" y=\"-94\"/>\n      <point x=\"1056\" y=\"-102\"/>\n      <point x=\"1020\" y=\"-102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"-102\"/>\n      <point x=\"946\" y=\"-97\"/>\n      <point x=\"946\" y=\"-71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-42\"/>\n      <point x=\"965\" y=\"-36\"/>\n      <point x=\"1014\" y=\"-36\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1044\" y=\"-36\"/>\n      <point x=\"1084\" y=\"-41\"/>\n      <point x=\"1113\" y=\"-44\" type=\"curve\"/>\n      <point x=\"1121\" y=\"103\" type=\"line\"/>\n      <point x=\"1094\" y=\"115\"/>\n      <point x=\"1032\" y=\"122\"/>\n      <point x=\"997\" y=\"122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"122\"/>\n      <point x=\"827\" y=\"80\"/>\n      <point x=\"827\" y=\"-14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"-55\"/>\n      <point x=\"846\" y=\"-70\"/>\n      <point x=\"865\" y=\"-79\" type=\"curve\"/>\n      <point x=\"865\" y=\"-112\" type=\"line\"/>\n      <point x=\"899\" y=\"-88\" type=\"line\"/>\n      <point x=\"36\" y=\"-88\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbermark-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbermark-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0605\"/>\n  <outline>\n    <contour>\n      <point x=\"64\" y=\"425\" type=\"line\"/>\n      <point x=\"137\" y=\"483\"/>\n      <point x=\"191\" y=\"536\"/>\n      <point x=\"259\" y=\"536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"536\"/>\n      <point x=\"466\" y=\"436\"/>\n      <point x=\"702\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"436\"/>\n      <point x=\"1054\" y=\"490\"/>\n      <point x=\"1173\" y=\"546\" type=\"curve\"/>\n      <point x=\"1162\" y=\"762\" type=\"line\"/>\n      <point x=\"1043\" y=\"713\"/>\n      <point x=\"893\" y=\"656\"/>\n      <point x=\"712\" y=\"656\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"656\"/>\n      <point x=\"380\" y=\"767\"/>\n      <point x=\"245\" y=\"767\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"155\" y=\"767\"/>\n      <point x=\"70\" y=\"683\"/>\n      <point x=\"14\" y=\"615\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0023\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"0\" type=\"line\"/>\n      <point x=\"871\" y=\"0\" type=\"line\"/>\n      <point x=\"991\" y=\"1420\" type=\"line\"/>\n      <point x=\"748\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"83\" y=\"310\" type=\"line\"/>\n      <point x=\"1117\" y=\"310\" type=\"line\"/>\n      <point x=\"1117\" y=\"558\" type=\"line\"/>\n      <point x=\"83\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"209\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"0\" type=\"line\"/>\n      <point x=\"572\" y=\"1420\" type=\"line\"/>\n      <point x=\"329\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"83\" y=\"862\" type=\"line\"/>\n      <point x=\"1117\" y=\"862\" type=\"line\"/>\n      <point x=\"1117\" y=\"1110\" type=\"line\"/>\n      <point x=\"83\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_braceleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_braceleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"402\" y=\"0\" type=\"line\"/>\n      <point x=\"645\" y=\"0\" type=\"line\"/>\n      <point x=\"765\" y=\"1420\" type=\"line\"/>\n      <point x=\"522\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"260\" y=\"310\" type=\"line\"/>\n      <point x=\"1810\" y=\"310\" type=\"line\"/>\n      <point x=\"1810\" y=\"558\" type=\"line\"/>\n      <point x=\"260\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"838\" y=\"0\" type=\"line\"/>\n      <point x=\"1081\" y=\"0\" type=\"line\"/>\n      <point x=\"1201\" y=\"1420\" type=\"line\"/>\n      <point x=\"958\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"260\" y=\"862\" type=\"line\"/>\n      <point x=\"1810\" y=\"862\" type=\"line\"/>\n      <point x=\"1810\" y=\"1110\" type=\"line\"/>\n      <point x=\"260\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2032\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2118\" y=\"-214\"/>\n      <point x=\"2171\" y=\"-206\"/>\n      <point x=\"2219\" y=\"-194\" type=\"curve\"/>\n      <point x=\"2195\" y=\"47\" type=\"line\"/>\n      <point x=\"2157\" y=\"41\"/>\n      <point x=\"2121\" y=\"37\"/>\n      <point x=\"2092\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2011\" y=\"37\"/>\n      <point x=\"1942\" y=\"103\"/>\n      <point x=\"1967\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1984\" y=\"310\"/>\n      <point x=\"2043\" y=\"393\"/>\n      <point x=\"2043\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2043\" y=\"608\"/>\n      <point x=\"1931\" y=\"682\"/>\n      <point x=\"1741\" y=\"685\" type=\"curve\"/>\n      <point x=\"1741\" y=\"727\" type=\"line\"/>\n      <point x=\"1931\" y=\"730\"/>\n      <point x=\"2043\" y=\"807\"/>\n      <point x=\"2043\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2043\" y=\"1033\"/>\n      <point x=\"1988\" y=\"1119\"/>\n      <point x=\"1967\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1939\" y=\"1315\"/>\n      <point x=\"2011\" y=\"1375\"/>\n      <point x=\"2092\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2121\" y=\"1375\"/>\n      <point x=\"2157\" y=\"1371\"/>\n      <point x=\"2195\" y=\"1365\" type=\"curve\"/>\n      <point x=\"2219\" y=\"1606\" type=\"line\"/>\n      <point x=\"2171\" y=\"1618\"/>\n      <point x=\"2118\" y=\"1626\"/>\n      <point x=\"2032\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1815\" y=\"1626\"/>\n      <point x=\"1650\" y=\"1499\"/>\n      <point x=\"1690\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1707\" y=\"1179\"/>\n      <point x=\"1772\" y=\"1090\"/>\n      <point x=\"1772\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1772\" y=\"843\"/>\n      <point x=\"1647\" y=\"772\"/>\n      <point x=\"1445\" y=\"772\" type=\"curve\"/>\n      <point x=\"1445\" y=\"640\" type=\"line\"/>\n      <point x=\"1648\" y=\"640\"/>\n      <point x=\"1772\" y=\"579\"/>\n      <point x=\"1772\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1772\" y=\"344\"/>\n      <point x=\"1706\" y=\"251\"/>\n      <point x=\"1690\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1650\" y=\"-78\"/>\n      <point x=\"1815\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_bracketleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_bracketleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"842\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"0\" type=\"line\"/>\n      <point x=\"1204\" y=\"1420\" type=\"line\"/>\n      <point x=\"962\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"406\" y=\"0\" type=\"line\"/>\n      <point x=\"648\" y=\"0\" type=\"line\"/>\n      <point x=\"768\" y=\"1420\" type=\"line\"/>\n      <point x=\"526\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"310\" type=\"line\"/>\n      <point x=\"1607\" y=\"310\" type=\"line\"/>\n      <point x=\"1607\" y=\"558\" type=\"line\"/>\n      <point x=\"263\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"862\" type=\"line\"/>\n      <point x=\"1607\" y=\"862\" type=\"line\"/>\n      <point x=\"1607\" y=\"1110\" type=\"line\"/>\n      <point x=\"263\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <component base=\"bracketleft\" xOffset=\"1164\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>bracketleft</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n    <component base=\"colon\" xOffset=\"1222\" yOffset=\"180\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>numbersign</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"0\" type=\"line\"/>\n      <point x=\"871\" y=\"0\" type=\"line\"/>\n      <point x=\"991\" y=\"1420\" type=\"line\"/>\n      <point x=\"748\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"310\" type=\"line\"/>\n      <point x=\"1117\" y=\"310\" type=\"line\"/>\n      <point x=\"1117\" y=\"558\" type=\"line\"/>\n      <point x=\"-20\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"209\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"0\" type=\"line\"/>\n      <point x=\"572\" y=\"1420\" type=\"line\"/>\n      <point x=\"329\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"862\" type=\"line\"/>\n      <point x=\"1117\" y=\"862\" type=\"line\"/>\n      <point x=\"1117\" y=\"1110\" type=\"line\"/>\n      <point x=\"-20\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1360\" y=\"860\" type=\"line\"/>\n      <point x=\"2120\" y=\"860\" type=\"line\"/>\n      <point x=\"2120\" y=\"1110\" type=\"line\"/>\n      <point x=\"1360\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1360\" y=\"310\" type=\"line\"/>\n      <point x=\"2120\" y=\"310\" type=\"line\"/>\n      <point x=\"2120\" y=\"560\" type=\"line\"/>\n      <point x=\"1360\" y=\"560\" type=\"line\"/>\n    </contour>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>numbersign</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_exclam.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_exclam.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n    <component base=\"exclam\" xOffset=\"1222\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>numbersign</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>exclam</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"0\" type=\"line\"/>\n      <point x=\"871\" y=\"0\" type=\"line\"/>\n      <point x=\"991\" y=\"1420\" type=\"line\"/>\n      <point x=\"748\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"310\" type=\"line\"/>\n      <point x=\"1220\" y=\"310\" type=\"line\"/>\n      <point x=\"1220\" y=\"558\" type=\"line\"/>\n      <point x=\"-20\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"209\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"0\" type=\"line\"/>\n      <point x=\"572\" y=\"1420\" type=\"line\"/>\n      <point x=\"329\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"862\" type=\"line\"/>\n      <point x=\"1220\" y=\"862\" type=\"line\"/>\n      <point x=\"1220\" y=\"1110\" type=\"line\"/>\n      <point x=\"-20\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_parenleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_parenleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"842\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"0\" type=\"line\"/>\n      <point x=\"1204\" y=\"1420\" type=\"line\"/>\n      <point x=\"962\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"406\" y=\"0\" type=\"line\"/>\n      <point x=\"648\" y=\"0\" type=\"line\"/>\n      <point x=\"768\" y=\"1420\" type=\"line\"/>\n      <point x=\"526\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"310\" type=\"line\"/>\n      <point x=\"1620\" y=\"310\" type=\"line\"/>\n      <point x=\"1620\" y=\"558\" type=\"line\"/>\n      <point x=\"263\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"862\" type=\"line\"/>\n      <point x=\"1620\" y=\"862\" type=\"line\"/>\n      <point x=\"1620\" y=\"1110\" type=\"line\"/>\n      <point x=\"263\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <component base=\"parenleft\" xOffset=\"1180\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>parenleft</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1583\" y=\"489\" type=\"line\"/>\n      <point x=\"1845\" y=\"489\" type=\"line\"/>\n      <point x=\"1845\" y=\"526\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1845\" y=\"608\"/>\n      <point x=\"1874\" y=\"662\"/>\n      <point x=\"1940\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2100\" y=\"807\"/>\n      <point x=\"2179\" y=\"942\"/>\n      <point x=\"2179\" y=\"1104\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2179\" y=\"1317\"/>\n      <point x=\"2022\" y=\"1440\"/>\n      <point x=\"1750\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1525\" y=\"1440\"/>\n      <point x=\"1251\" y=\"1352\"/>\n      <point x=\"1251\" y=\"1063\" type=\"curve\"/>\n      <point x=\"1496\" y=\"1006\" type=\"line\"/>\n      <point x=\"1496\" y=\"1131\"/>\n      <point x=\"1634\" y=\"1188\"/>\n      <point x=\"1732\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1834\" y=\"1188\"/>\n      <point x=\"1892\" y=\"1144\"/>\n      <point x=\"1892\" y=\"1069\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1892\" y=\"999\"/>\n      <point x=\"1852\" y=\"935\"/>\n      <point x=\"1780\" y=\"887\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1647\" y=\"799\"/>\n      <point x=\"1583\" y=\"710\"/>\n      <point x=\"1583\" y=\"573\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"310\" type=\"line\"/>\n      <point x=\"1297\" y=\"310\" type=\"line\"/>\n      <point x=\"1297\" y=\"558\" type=\"line\"/>\n      <point x=\"263\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"389\" y=\"0\" type=\"line\"/>\n      <point x=\"632\" y=\"0\" type=\"line\"/>\n      <point x=\"752\" y=\"1420\" type=\"line\"/>\n      <point x=\"509\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"808\" y=\"0\" type=\"line\"/>\n      <point x=\"1051\" y=\"0\" type=\"line\"/>\n      <point x=\"1171\" y=\"1420\" type=\"line\"/>\n      <point x=\"928\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"862\" type=\"line\"/>\n      <point x=\"1496\" y=\"862\" type=\"line\"/>\n      <point x=\"1496\" y=\"1110\" type=\"line\"/>\n      <point x=\"263\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"1118\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"0\" type=\"line\"/>\n      <point x=\"871\" y=\"0\" type=\"line\"/>\n      <point x=\"991\" y=\"1420\" type=\"line\"/>\n      <point x=\"748\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"83\" y=\"310\" type=\"line\"/>\n      <point x=\"1220\" y=\"310\" type=\"line\"/>\n      <point x=\"1220\" y=\"558\" type=\"line\"/>\n      <point x=\"83\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"209\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"0\" type=\"line\"/>\n      <point x=\"572\" y=\"1420\" type=\"line\"/>\n      <point x=\"329\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"83\" y=\"862\" type=\"line\"/>\n      <point x=\"1220\" y=\"862\" type=\"line\"/>\n      <point x=\"1220\" y=\"1110\" type=\"line\"/>\n      <point x=\"83\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_underscore.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_underscore.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"788\" y=\"-241\" type=\"line\"/>\n      <point x=\"1031\" y=\"-241\" type=\"line\"/>\n      <point x=\"1171\" y=\"1420\" type=\"line\"/>\n      <point x=\"928\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"310\" type=\"line\"/>\n      <point x=\"1297\" y=\"310\" type=\"line\"/>\n      <point x=\"1297\" y=\"558\" type=\"line\"/>\n      <point x=\"263\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"389\" y=\"0\" type=\"line\"/>\n      <point x=\"632\" y=\"0\" type=\"line\"/>\n      <point x=\"752\" y=\"1420\" type=\"line\"/>\n      <point x=\"509\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"900\" y=\"-241\" type=\"line\"/>\n      <point x=\"2160\" y=\"-241\" type=\"line\"/>\n      <point x=\"2160\" y=\"0\" type=\"line\"/>\n      <point x=\"902\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"862\" type=\"line\"/>\n      <point x=\"1297\" y=\"862\" type=\"line\"/>\n      <point x=\"1297\" y=\"1110\" type=\"line\"/>\n      <point x=\"263\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numbersign_underscore_parenleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_underscore_parenleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"3395\" y=\"-241\" type=\"line\"/>\n      <point x=\"3395\" y=\"4\" type=\"line\"/>\n      <point x=\"3350\" y=\"4\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"3066\" y=\"4\"/>\n      <point x=\"2906\" y=\"265\"/>\n      <point x=\"2906\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2906\" y=\"1130\"/>\n      <point x=\"3066\" y=\"1369\"/>\n      <point x=\"3350\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3395\" y=\"1369\" type=\"line\"/>\n      <point x=\"3395\" y=\"1620\" type=\"line\"/>\n      <point x=\"3330\" y=\"1620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2886\" y=\"1620\"/>\n      <point x=\"2630\" y=\"1291\"/>\n      <point x=\"2630\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2630\" y=\"284\"/>\n      <point x=\"2755\" y=\"37\"/>\n      <point x=\"2945\" y=\"37\" type=\"curve\"/>\n      <point x=\"2945\" y=\"-53\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"310\" type=\"line\"/>\n      <point x=\"1297\" y=\"310\" type=\"line\"/>\n      <point x=\"1297\" y=\"558\" type=\"line\"/>\n      <point x=\"263\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"389\" y=\"0\" type=\"line\"/>\n      <point x=\"632\" y=\"0\" type=\"line\"/>\n      <point x=\"752\" y=\"1420\" type=\"line\"/>\n      <point x=\"509\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"788\" y=\"-241\" type=\"line\"/>\n      <point x=\"1031\" y=\"-241\" type=\"line\"/>\n      <point x=\"1171\" y=\"1420\" type=\"line\"/>\n      <point x=\"928\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"862\" type=\"line\"/>\n      <point x=\"1297\" y=\"862\" type=\"line\"/>\n      <point x=\"1297\" y=\"1110\" type=\"line\"/>\n      <point x=\"263\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"900\" y=\"-241\" type=\"line\"/>\n      <point x=\"3395\" y=\"-241\" type=\"line\"/>\n      <point x=\"3157\" y=\"0\" type=\"line\"/>\n      <point x=\"902\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numeral-greek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numeral-greek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0374\"/>\n  <outline>\n    <component base=\"quoteright\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>quoteright</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/numero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2116\"/>\n  <outline>\n    <contour>\n      <point x=\"844\" y=\"220\" type=\"curve\"/>\n      <point x=\"1036\" y=\"220\"/>\n      <point x=\"1163\" y=\"344\"/>\n      <point x=\"1163\" y=\"532\" type=\"curve\"/>\n      <point x=\"1163\" y=\"722\"/>\n      <point x=\"1036\" y=\"846\"/>\n      <point x=\"844\" y=\"846\" type=\"curve\"/>\n      <point x=\"650\" y=\"846\"/>\n      <point x=\"523\" y=\"722\"/>\n      <point x=\"523\" y=\"532\" type=\"curve\"/>\n      <point x=\"523\" y=\"344\"/>\n      <point x=\"650\" y=\"220\"/>\n    </contour>\n    <contour>\n      <point x=\"523\" y=\"0\" type=\"line\"/>\n      <point x=\"1163\" y=\"0\" type=\"line\"/>\n      <point x=\"1163\" y=\"180\" type=\"line\"/>\n      <point x=\"523\" y=\"180\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"31\" y=\"840\" type=\"line\"/>\n      <point x=\"237\" y=\"840\" type=\"line\"/>\n      <point x=\"237\" y=\"1420\" type=\"line\"/>\n      <point x=\"31\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"844\" y=\"413\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"413\"/>\n      <point x=\"751\" y=\"461\"/>\n      <point x=\"751\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"751\" y=\"605\"/>\n      <point x=\"787\" y=\"653\"/>\n      <point x=\"844\" y=\"653\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"653\"/>\n      <point x=\"935\" y=\"605\"/>\n      <point x=\"935\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"461\"/>\n      <point x=\"899\" y=\"413\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"840\" type=\"line\"/>\n      <point x=\"453\" y=\"840\" type=\"line\"/>\n      <point x=\"453\" y=\"1040\" type=\"line\"/>\n      <point x=\"395\" y=\"1040\" type=\"line\"/>\n      <point x=\"322\" y=\"1420\" type=\"line\"/>\n      <point x=\"165\" y=\"1420\" type=\"line\"/>\n      <point x=\"165\" y=\"1220\" type=\"line\"/>\n      <point x=\"265\" y=\"1220\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"423\" y=\"840\" type=\"line\"/>\n      <point x=\"629\" y=\"840\" type=\"line\"/>\n      <point x=\"629\" y=\"1420\" type=\"line\"/>\n      <point x=\"423\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nun-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nun-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E0\"/>\n  <anchor x=\"442\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"142\" y=\"0\" type=\"line\"/>\n      <point x=\"640\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"0\"/>\n      <point x=\"935\" y=\"123\"/>\n      <point x=\"935\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"1200\" type=\"line\"/>\n      <point x=\"677\" y=\"1200\" type=\"line\"/>\n      <point x=\"677\" y=\"446\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"326\"/>\n      <point x=\"628\" y=\"270\"/>\n      <point x=\"528\" y=\"270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"270\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"347\" y=\"930\" type=\"line\"/>\n      <point x=\"894\" y=\"930\" type=\"line\"/>\n      <point x=\"894\" y=\"1200\" type=\"line\"/>\n      <point x=\"347\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nundagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nundagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB40\"/>\n  <outline>\n    <component base=\"nun-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-158\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nyeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nyeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotshorizontalcenter-ar\" xOffset=\"13\" yOffset=\"-362\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nyeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nyeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0683\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotshorizontalcenter-ar\" xOffset=\"89\" yOffset=\"-356\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nyeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nyeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/nyeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nyeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/o-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"o-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043E\"/>\n  <outline>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/o.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"o\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"530\" name=\"center\"/>\n  <anchor x=\"600\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <anchor x=\"1017\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"-20\"/>\n      <point x=\"1081\" y=\"180\"/>\n      <point x=\"1081\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"880\"/>\n      <point x=\"905\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"1080\"/>\n      <point x=\"119\" y=\"880\"/>\n      <point x=\"119\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"180\"/>\n      <point x=\"295\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"471\" y=\"237\"/>\n      <point x=\"396\" y=\"343\"/>\n      <point x=\"396\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"718\"/>\n      <point x=\"471\" y=\"823\"/>\n      <point x=\"600\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"823\"/>\n      <point x=\"804\" y=\"718\"/>\n      <point x=\"804\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"343\"/>\n      <point x=\"730\" y=\"237\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F3\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"acutecomb\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/obarred-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"obarred-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E9\"/>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"449\" type=\"line\"/>\n      <point x=\"1001\" y=\"449\" type=\"line\"/>\n      <point x=\"1001\" y=\"611\" type=\"line\"/>\n      <point x=\"230\" y=\"611\" type=\"line\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>o</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/obreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"obreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014F\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ocircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F4\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ocircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED1\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"acutecomb\" xOffset=\"419\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ocircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED9\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ocircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED3\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"gravecomb\" xOffset=\"402\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ocircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED5\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"hookabovecomb\" xOffset=\"378\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ocircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED7\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"tildecomb\" xOffset=\"10\" yOffset=\"520\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/odieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"odieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F6\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dieresiscomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/odotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"odotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECD\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oe-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oe-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oe-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oe-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C6\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oe.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oe\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0153\"/>\n  <anchor x=\"610\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"610\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"356\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"566\" y=\"-20\"/>\n      <point x=\"668\" y=\"162\"/>\n      <point x=\"668\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"668\" y=\"898\"/>\n      <point x=\"566\" y=\"1080\"/>\n      <point x=\"356\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"120\" y=\"1080\"/>\n      <point x=\"3\" y=\"898\"/>\n      <point x=\"3\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3\" y=\"162\"/>\n      <point x=\"120\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"377\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"228\"/>\n      <point x=\"260\" y=\"328\"/>\n      <point x=\"260\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"732\"/>\n      <point x=\"298\" y=\"823\"/>\n      <point x=\"377\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"823\"/>\n      <point x=\"483\" y=\"732\"/>\n      <point x=\"483\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"328\"/>\n      <point x=\"449\" y=\"228\"/>\n    </contour>\n    <contour>\n      <point x=\"962\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"-20\"/>\n      <point x=\"1091\" y=\"-13\"/>\n      <point x=\"1149\" y=\"-2\" type=\"curve\"/>\n      <point x=\"1123\" y=\"247\" type=\"line\"/>\n      <point x=\"1078\" y=\"239\"/>\n      <point x=\"1028\" y=\"234\"/>\n      <point x=\"986\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"234\"/>\n      <point x=\"727\" y=\"347\"/>\n      <point x=\"727\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"740\"/>\n      <point x=\"761\" y=\"824\"/>\n      <point x=\"838\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"824\"/>\n      <point x=\"934\" y=\"761\"/>\n      <point x=\"934\" y=\"611\" type=\"curve\"/>\n      <point x=\"684\" y=\"611\" type=\"line\"/>\n      <point x=\"684\" y=\"423\" type=\"line\"/>\n      <point x=\"1185\" y=\"423\" type=\"line\"/>\n      <point x=\"1189\" y=\"467\"/>\n      <point x=\"1191\" y=\"522\"/>\n      <point x=\"1191\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1191\" y=\"895\"/>\n      <point x=\"1080\" y=\"1080\"/>\n      <point x=\"886\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"1080\"/>\n      <point x=\"573\" y=\"880\"/>\n      <point x=\"573\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"181\"/>\n      <point x=\"715\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DB\"/>\n  <outline>\n    <component base=\"ogonekcomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>ogonekcomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ogonekcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ogonekcomb\" format=\"2\">\n  <unicode hex=\"0328\"/>\n  <anchor x=\"675\" y=\"10\" name=\"_ogonek\"/>\n  <anchor x=\"560\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"615\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"-424\"/>\n      <point x=\"685\" y=\"-421\"/>\n      <point x=\"722\" y=\"-415\" type=\"curve\"/>\n      <point x=\"740\" y=\"-195\" type=\"line\"/>\n      <point x=\"710\" y=\"-202\"/>\n      <point x=\"681\" y=\"-206\"/>\n      <point x=\"658\" y=\"-206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"600\" y=\"-206\"/>\n      <point x=\"567\" y=\"-177\"/>\n      <point x=\"567\" y=\"-126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"-46\"/>\n      <point x=\"634\" y=\"0\"/>\n      <point x=\"749\" y=\"0\" type=\"curve\"/>\n      <point x=\"749\" y=\"32\" type=\"line\"/>\n      <point x=\"493\" y=\"30\" type=\"line\"/>\n      <point x=\"493\" y=\"-32\" type=\"line\"/>\n      <point x=\"413\" y=\"-55\"/>\n      <point x=\"367\" y=\"-122\"/>\n      <point x=\"367\" y=\"-215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"-348\"/>\n      <point x=\"457\" y=\"-424\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ograve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ograve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F2\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"gravecomb\" xOffset=\"-45\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ohookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECF\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"hookabovecomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ohorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A1\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"horncomb\" xOffset=\"387\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ohornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDB\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"acutecomb\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ohorndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE3\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ohorngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDD\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"gravecomb\" xOffset=\"-45\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ohornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDF\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"hookabovecomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ohorntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE1\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"tildecomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ohungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0151\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"hungarumlautcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/omacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014D\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/omacronacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacronacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E53\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n    <component base=\"acutecomb\" xOffset=\"61\" yOffset=\"399\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/omacrongrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacrongrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E51\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n    <component base=\"gravecomb\" xOffset=\"-45\" yOffset=\"399\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/omega.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omega\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C9\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"852\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"-20\"/>\n      <point x=\"1099\" y=\"103\"/>\n      <point x=\"1099\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"1060\" type=\"line\"/>\n      <point x=\"828\" y=\"1060\" type=\"line\"/>\n      <point x=\"828\" y=\"320\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"266\"/>\n      <point x=\"806\" y=\"235\"/>\n      <point x=\"765\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"235\"/>\n      <point x=\"701\" y=\"260\"/>\n      <point x=\"701\" y=\"327\" type=\"curve\"/>\n      <point x=\"701\" y=\"396\" type=\"line\"/>\n      <point x=\"604\" y=\"361\" type=\"line\"/>\n      <point x=\"619\" y=\"94\"/>\n      <point x=\"700\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"326\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"-20\"/>\n      <point x=\"569\" y=\"94\"/>\n      <point x=\"584\" y=\"361\" type=\"curve\"/>\n      <point x=\"487\" y=\"396\" type=\"line\"/>\n      <point x=\"487\" y=\"327\" type=\"line\"/>\n      <point x=\"487\" y=\"260\"/>\n      <point x=\"465\" y=\"235\"/>\n      <point x=\"424\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"382\" y=\"235\"/>\n      <point x=\"360\" y=\"266\"/>\n      <point x=\"360\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"1060\" type=\"line\"/>\n      <point x=\"89\" y=\"1060\" type=\"line\"/>\n      <point x=\"89\" y=\"320\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"89\" y=\"103\"/>\n      <point x=\"172\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"487\" y=\"357\" type=\"line\"/>\n      <point x=\"701\" y=\"357\" type=\"line\"/>\n      <point x=\"701\" y=\"860\" type=\"line\"/>\n      <point x=\"487\" y=\"860\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/omegatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omegatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CE\"/>\n  <outline>\n    <component base=\"omega\"/>\n    <component base=\"tonos\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/omicron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omicron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BF\"/>\n  <outline>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/omicrontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omicrontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CC\"/>\n  <outline>\n    <component base=\"omicron\"/>\n    <component base=\"tonos\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0661\"/>\n  <outline>\n    <contour>\n      <point x=\"579\" y=\"0\" type=\"curve\"/>\n      <point x=\"847\" y=\"0\" type=\"line\"/>\n      <point x=\"868\" y=\"560\"/>\n      <point x=\"808\" y=\"1020\"/>\n      <point x=\"582\" y=\"1442\" type=\"curve\"/>\n      <point x=\"307\" y=\"1374\" type=\"line\"/>\n      <point x=\"519\" y=\"967\"/>\n      <point x=\"587\" y=\"520\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"731\" y=\"-1\" type=\"line\"/>\n      <point x=\"744\" y=\"217\"/>\n      <point x=\"718\" y=\"443\"/>\n      <point x=\"653\" y=\"638\" type=\"curve\"/>\n      <point x=\"477\" y=\"605\" type=\"line\"/>\n      <point x=\"532\" y=\"413\"/>\n      <point x=\"558\" y=\"206\"/>\n      <point x=\"555\" y=\"0\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"one-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F1\"/>\n  <outline>\n    <component base=\"one-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"one-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>one-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"one-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>one-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"onesuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0031\"/>\n  <outline>\n    <contour>\n      <point x=\"498\" y=\"0\" type=\"line\"/>\n      <point x=\"762\" y=\"0\" type=\"line\"/>\n      <point x=\"762\" y=\"1420\" type=\"line\"/>\n      <point x=\"498\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"153\" y=\"0\" type=\"line\"/>\n      <point x=\"518\" y=\"0\" type=\"line\"/>\n      <point x=\"518\" y=\"234\" type=\"line\"/>\n      <point x=\"153\" y=\"234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"742\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"234\" type=\"line\"/>\n      <point x=\"742\" y=\"234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"173\" y=\"1048\" type=\"line\"/>\n      <point x=\"498\" y=\"1164\" type=\"line\"/>\n      <point x=\"498\" y=\"1420\" type=\"line\"/>\n      <point x=\"173\" y=\"1300\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"361\" y=\"0\" type=\"line\"/>\n      <point x=\"521\" y=\"0\" type=\"line\"/>\n      <point x=\"521\" y=\"639\" type=\"line\"/>\n      <point x=\"361\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"116\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"135\" type=\"line\"/>\n      <point x=\"116\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"507\" y=\"0\" type=\"line\"/>\n      <point x=\"739\" y=\"0\" type=\"line\"/>\n      <point x=\"739\" y=\"135\" type=\"line\"/>\n      <point x=\"507\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"130\" y=\"438\" type=\"line\"/>\n      <point x=\"361\" y=\"490\" type=\"line\"/>\n      <point x=\"361\" y=\"639\" type=\"line\"/>\n      <point x=\"130\" y=\"585\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/one.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"onesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/onedotenleader.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onedotenleader\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2024\"/>\n  <outline>\n    <component base=\"period\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneeighth.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"577\" y=\"593\" type=\"line\"/>\n      <point x=\"484\" y=\"715\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"710\" y=\"692\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"617\" y=\"814\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>onesuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>eightinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oneeighth.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneeighth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215B\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>onesuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>eightinferior</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onehalf.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"577\" y=\"593\" type=\"line\"/>\n      <point x=\"484\" y=\"715\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"710\" y=\"692\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"617\" y=\"814\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"twoinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>onesuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twoinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/onehalf.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onehalf\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BD\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"twoinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>onesuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twoinferior</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oneinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2081\"/>\n  <outline>\n    <component base=\"onesuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onequarter.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"577\" y=\"593\" type=\"line\"/>\n      <point x=\"484\" y=\"715\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"710\" y=\"692\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"617\" y=\"814\" type=\"line\"/>\n    </contour>\n    <component base=\"foursuperior\" xOffset=\"240\" yOffset=\"-802\"/>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>foursuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>onesuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/onequarter.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onequarter\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BC\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <component base=\"foursuperior\" xOffset=\"240\" yOffset=\"-802\"/>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>foursuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>onesuperior</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/onesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B9\"/>\n  <outline>\n    <contour>\n      <point x=\"515\" y=\"802\" type=\"line\"/>\n      <point x=\"721\" y=\"802\" type=\"line\"/>\n      <point x=\"721\" y=\"1420\" type=\"line\"/>\n      <point x=\"515\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"802\" type=\"line\"/>\n      <point x=\"523\" y=\"802\" type=\"line\"/>\n      <point x=\"523\" y=\"1009\" type=\"line\"/>\n      <point x=\"324\" y=\"1009\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"712\" y=\"802\" type=\"line\"/>\n      <point x=\"876\" y=\"802\" type=\"line\"/>\n      <point x=\"876\" y=\"1009\" type=\"line\"/>\n      <point x=\"712\" y=\"1009\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"333\" y=\"1155\" type=\"line\"/>\n      <point x=\"515\" y=\"1206\" type=\"line\"/>\n      <point x=\"515\" y=\"1420\" type=\"line\"/>\n      <point x=\"333\" y=\"1367\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01EB\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"665\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"-424\"/>\n      <point x=\"734\" y=\"-421\"/>\n      <point x=\"772\" y=\"-415\" type=\"curve\"/>\n      <point x=\"798\" y=\"-178\" type=\"line\"/>\n      <point x=\"764\" y=\"-186\"/>\n      <point x=\"733\" y=\"-189\"/>\n      <point x=\"708\" y=\"-189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"652\" y=\"-189\"/>\n      <point x=\"625\" y=\"-163\"/>\n      <point x=\"625\" y=\"-126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"625\" y=\"-60\"/>\n      <point x=\"683\" y=\"-26\"/>\n      <point x=\"786\" y=\"10\" type=\"curve\"/>\n      <point x=\"776\" y=\"33\" type=\"line\"/>\n      <point x=\"539\" y=\"30\" type=\"line\"/>\n      <point x=\"539\" y=\"-44\" type=\"line\"/>\n      <point x=\"466\" y=\"-67\"/>\n      <point x=\"425\" y=\"-137\"/>\n      <point x=\"425\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"-354\"/>\n      <point x=\"512\" y=\"-424\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>o</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oopen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0254\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"501\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"-20\"/>\n      <point x=\"1081\" y=\"182\"/>\n      <point x=\"1081\" y=\"528\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"884\"/>\n      <point x=\"870\" y=\"1080\"/>\n      <point x=\"498\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"1080\"/>\n      <point x=\"271\" y=\"1068\"/>\n      <point x=\"163\" y=\"1033\" type=\"curve\"/>\n      <point x=\"206\" y=\"788\" type=\"line\"/>\n      <point x=\"311\" y=\"814\"/>\n      <point x=\"382\" y=\"823\"/>\n      <point x=\"474\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"823\"/>\n      <point x=\"804\" y=\"717\"/>\n      <point x=\"804\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"339\"/>\n      <point x=\"695\" y=\"237\"/>\n      <point x=\"509\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"392\" y=\"237\"/>\n      <point x=\"304\" y=\"272\"/>\n      <point x=\"244\" y=\"313\" type=\"curve\"/>\n      <point x=\"115\" y=\"103\" type=\"line\"/>\n      <point x=\"193\" y=\"34\"/>\n      <point x=\"332\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ordfeminine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ordfeminine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AA\"/>\n  <outline>\n    <contour>\n      <point x=\"635\" y=\"779\" type=\"line\"/>\n      <point x=\"951\" y=\"785\" type=\"line\"/>\n      <point x=\"951\" y=\"955\" type=\"line\"/>\n      <point x=\"844\" y=\"968\" type=\"line\"/>\n      <point x=\"844\" y=\"1159\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"1341\"/>\n      <point x=\"726\" y=\"1438\"/>\n      <point x=\"474\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"1440\" type=\"line\"/>\n      <point x=\"284\" y=\"1261\" type=\"line\"/>\n      <point x=\"486\" y=\"1261\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"1261\"/>\n      <point x=\"619\" y=\"1230\"/>\n      <point x=\"619\" y=\"1178\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"619\" y=\"963\" type=\"line\"/>\n      <point x=\"627\" y=\"964\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"408\" y=\"771\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"771\"/>\n      <point x=\"569\" y=\"821\"/>\n      <point x=\"598\" y=\"921\" type=\"curve\"/>\n      <point x=\"569\" y=\"914\" type=\"line\"/>\n      <point x=\"647\" y=\"914\" type=\"line\"/>\n      <point x=\"619\" y=\"1078\" type=\"line\"/>\n      <point x=\"619\" y=\"1039\" type=\"line\"/>\n      <point x=\"619\" y=\"989\"/>\n      <point x=\"577\" y=\"934\"/>\n      <point x=\"493\" y=\"934\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"934\"/>\n      <point x=\"425\" y=\"953\"/>\n      <point x=\"425\" y=\"987\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"1024\"/>\n      <point x=\"455\" y=\"1042\"/>\n      <point x=\"513\" y=\"1042\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"1042\"/>\n      <point x=\"601\" y=\"1042\"/>\n      <point x=\"645\" y=\"1024\" type=\"curve\"/>\n      <point x=\"671\" y=\"1157\" type=\"line\"/>\n      <point x=\"606\" y=\"1175\"/>\n      <point x=\"548\" y=\"1183\"/>\n      <point x=\"459\" y=\"1183\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"299\" y=\"1183\"/>\n      <point x=\"207\" y=\"1105\"/>\n      <point x=\"207\" y=\"966\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"207\" y=\"841\"/>\n      <point x=\"281\" y=\"771\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ordmasculine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ordmasculine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BA\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"816\" y=\"770\"/>\n      <point x=\"959\" y=\"903\"/>\n      <point x=\"959\" y=\"1105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"1307\"/>\n      <point x=\"816\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"384\" y=\"1440\"/>\n      <point x=\"241\" y=\"1307\"/>\n      <point x=\"241\" y=\"1105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"241\" y=\"903\"/>\n      <point x=\"384\" y=\"770\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"970\"/>\n      <point x=\"493\" y=\"1024\"/>\n      <point x=\"493\" y=\"1105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"1186\"/>\n      <point x=\"535\" y=\"1240\"/>\n      <point x=\"600\" y=\"1240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"1240\"/>\n      <point x=\"707\" y=\"1186\"/>\n      <point x=\"707\" y=\"1105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"1024\"/>\n      <point x=\"665\" y=\"970\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/orthogonal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"orthogonal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221F\"/>\n  <outline>\n    <contour>\n      <point x=\"83\" y=\"0\" type=\"line\"/>\n      <point x=\"347\" y=\"0\" type=\"line\"/>\n      <point x=\"347\" y=\"1060\" type=\"line\"/>\n      <point x=\"83\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"83\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"0\" type=\"line\"/>\n      <point x=\"1117\" y=\"249\" type=\"line\"/>\n      <point x=\"83\" y=\"249\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F8\"/>\n  <outline>\n    <contour>\n      <point x=\"301\" y=\"-134\" type=\"line\"/>\n      <point x=\"1036\" y=\"1116\" type=\"line\"/>\n      <point x=\"896\" y=\"1198\" type=\"line\"/>\n      <point x=\"171\" y=\"-42\" type=\"line\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>o</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/oslashacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oslashacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FF\"/>\n  <outline>\n    <component base=\"oslash\"/>\n    <component base=\"acutecomb\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/otilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"otilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F5\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"tildecomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/overline.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"overline\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203E\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"1568\" type=\"line\"/>\n      <point x=\"1100\" y=\"1568\" type=\"line\"/>\n      <point x=\"1100\" y=\"1817\" type=\"line\"/>\n      <point x=\"100\" y=\"1817\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"p\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0070\"/>\n  <anchor x=\"650\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"650\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"151\" y=\"-460\" type=\"line\"/>\n      <point x=\"422\" y=\"-460\" type=\"line\"/>\n      <point x=\"422\" y=\"836\" type=\"line\"/>\n      <point x=\"402\" y=\"1060\" type=\"line\"/>\n      <point x=\"151\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"705\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"-20\"/>\n      <point x=\"1121\" y=\"175\"/>\n      <point x=\"1121\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"879\"/>\n      <point x=\"968\" y=\"1080\"/>\n      <point x=\"703\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"1080\"/>\n      <point x=\"463\" y=\"1010\"/>\n      <point x=\"438\" y=\"868\" type=\"curve\"/>\n      <point x=\"360\" y=\"868\" type=\"line\"/>\n      <point x=\"422\" y=\"529\" type=\"line\"/>\n      <point x=\"422\" y=\"734\"/>\n      <point x=\"491\" y=\"825\"/>\n      <point x=\"629\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"825\"/>\n      <point x=\"844\" y=\"717\"/>\n      <point x=\"844\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"334\"/>\n      <point x=\"770\" y=\"235\"/>\n      <point x=\"629\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"235\"/>\n      <point x=\"422\" y=\"323\"/>\n      <point x=\"422\" y=\"529\" type=\"curve\"/>\n      <point x=\"350\" y=\"192\" type=\"line\"/>\n      <point x=\"444\" y=\"192\" type=\"line\"/>\n      <point x=\"465\" y=\"51\"/>\n      <point x=\"557\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pagenumber-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pagenumber-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0603\"/>\n  <outline>\n    <contour>\n      <point x=\"811\" y=\"-282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1034\" y=\"-282\"/>\n      <point x=\"1177\" y=\"-224\"/>\n      <point x=\"1177\" y=\"-69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1177\" y=\"88\"/>\n      <point x=\"1080\" y=\"210\"/>\n      <point x=\"971\" y=\"210\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"210\"/>\n      <point x=\"757\" y=\"26\"/>\n      <point x=\"660\" y=\"-151\" type=\"curve\"/>\n      <point x=\"801\" y=\"-173\" type=\"line\"/>\n      <point x=\"867\" y=\"-40\"/>\n      <point x=\"899\" y=\"12\"/>\n      <point x=\"947\" y=\"12\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"989\" y=\"12\"/>\n      <point x=\"1019\" y=\"-25\"/>\n      <point x=\"1019\" y=\"-60\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1019\" y=\"-81\"/>\n      <point x=\"995\" y=\"-88\"/>\n      <point x=\"803\" y=\"-88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"-88\"/>\n      <point x=\"671\" y=\"-87\"/>\n      <point x=\"669\" y=\"-69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"-52\"/>\n      <point x=\"667\" y=\"-24\"/>\n      <point x=\"666\" y=\"0\" type=\"curve\"/>\n      <point x=\"530\" y=\"0\" type=\"line\"/>\n      <point x=\"529\" y=\"-43\"/>\n      <point x=\"529\" y=\"-49\"/>\n      <point x=\"527\" y=\"-67\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"-84\"/>\n      <point x=\"519\" y=\"-89\"/>\n      <point x=\"457\" y=\"-89\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"-89\" type=\"line\"/>\n      <point x=\"33\" y=\"-279\" type=\"line\"/>\n      <point x=\"443\" y=\"-279\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"-279\"/>\n      <point x=\"570\" y=\"-268\"/>\n      <point x=\"586\" y=\"-205\" type=\"curve\"/>\n      <point x=\"599\" y=\"-205\" type=\"line\"/>\n      <point x=\"607\" y=\"-265\"/>\n      <point x=\"678\" y=\"-282\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/palochka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"palochka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04CF\"/>\n  <outline>\n    <component base=\"idotless\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/paragraph.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"paragraph\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B6\"/>\n  <outline>\n    <contour>\n      <point x=\"512\" y=\"540\" type=\"curve\"/>\n      <point x=\"524\" y=\"1420\" type=\"line\"/>\n      <point x=\"200\" y=\"1420\"/>\n      <point x=\"19\" y=\"1255\"/>\n      <point x=\"19\" y=\"972\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"19\" y=\"693\"/>\n      <point x=\"198\" y=\"540\"/>\n    </contour>\n    <contour>\n      <point x=\"422\" y=\"0\" type=\"line\"/>\n      <point x=\"685\" y=\"0\" type=\"line\"/>\n      <point x=\"685\" y=\"1286\" type=\"line\"/>\n      <point x=\"422\" y=\"1286\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"812\" y=\"0\" type=\"line\"/>\n      <point x=\"1075\" y=\"0\" type=\"line\"/>\n      <point x=\"1075\" y=\"1420\" type=\"line\"/>\n      <point x=\"812\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"504\" y=\"1177\" type=\"line\"/>\n      <point x=\"1177\" y=\"1177\" type=\"line\"/>\n      <point x=\"1177\" y=\"1420\" type=\"line\"/>\n      <point x=\"507\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/parenleft-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FD3E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"394\" type=\"line\"/>\n      <point x=\"652\" y=\"394\" type=\"line\"/>\n      <point x=\"578\" y=\"605\" type=\"line\"/>\n      <point x=\"740\" y=\"455\" type=\"line\"/>\n      <point x=\"824\" y=\"622\" type=\"line\"/>\n      <point x=\"615\" y=\"683\" type=\"line\"/>\n      <point x=\"823\" y=\"743\" type=\"line\"/>\n      <point x=\"738\" y=\"910\" type=\"line\"/>\n      <point x=\"576\" y=\"759\" type=\"line\"/>\n      <point x=\"653\" y=\"968\" type=\"line\"/>\n      <point x=\"462\" y=\"968\" type=\"line\"/>\n      <point x=\"481\" y=\"760\" type=\"line\"/>\n      <point x=\"323\" y=\"909\" type=\"line\"/>\n      <point x=\"238\" y=\"742\" type=\"line\"/>\n      <point x=\"437\" y=\"683\" type=\"line\"/>\n      <point x=\"241\" y=\"620\" type=\"line\"/>\n      <point x=\"324\" y=\"457\" type=\"line\"/>\n      <point x=\"480\" y=\"605\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"719\" y=\"-217\" type=\"curve\"/>\n      <point x=\"888\" y=\"-217\" type=\"line\"/>\n      <point x=\"776\" y=\"-57\"/>\n      <point x=\"693\" y=\"175\"/>\n      <point x=\"673\" y=\"323\" type=\"curve\"/>\n      <point x=\"473\" y=\"323\" type=\"line\"/>\n      <point x=\"502\" y=\"164\"/>\n      <point x=\"607\" y=\"-77\"/>\n    </contour>\n    <contour>\n      <point x=\"530\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"647\"/>\n      <point x=\"493\" y=\"664\"/>\n      <point x=\"493\" y=\"684\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"704\"/>\n      <point x=\"510\" y=\"721\"/>\n      <point x=\"530\" y=\"721\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"721\"/>\n      <point x=\"567\" y=\"704\"/>\n      <point x=\"567\" y=\"684\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"664\"/>\n      <point x=\"550\" y=\"647\"/>\n    </contour>\n    <contour>\n      <point x=\"473\" y=\"1047\" type=\"curve\"/>\n      <point x=\"673\" y=\"1047\" type=\"line\"/>\n      <point x=\"693\" y=\"1195\"/>\n      <point x=\"776\" y=\"1427\"/>\n      <point x=\"888\" y=\"1587\" type=\"curve\"/>\n      <point x=\"719\" y=\"1587\" type=\"line\"/>\n      <point x=\"607\" y=\"1447\"/>\n      <point x=\"502\" y=\"1206\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/parenleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0028\"/>\n  <outline>\n    <contour>\n      <point x=\"970\" y=\"-200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"-200\" type=\"line\"/>\n      <point x=\"1014\" y=\"51\" type=\"line\"/>\n      <point x=\"970\" y=\"51\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"51\"/>\n      <point x=\"526\" y=\"294\"/>\n      <point x=\"526\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"1130\"/>\n      <point x=\"686\" y=\"1369\"/>\n      <point x=\"970\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"1369\" type=\"line\"/>\n      <point x=\"1014\" y=\"1620\" type=\"line\"/>\n      <point x=\"970\" y=\"1620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"1620\"/>\n      <point x=\"249\" y=\"1291\"/>\n      <point x=\"249\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"249\" y=\"133\"/>\n      <point x=\"512\" y=\"-200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/parenleft_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1102\" y=\"-200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1146\" y=\"-200\" type=\"line\"/>\n      <point x=\"1146\" y=\"51\" type=\"line\"/>\n      <point x=\"1102\" y=\"51\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"51\"/>\n      <point x=\"558\" y=\"294\"/>\n      <point x=\"558\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"1130\"/>\n      <point x=\"754\" y=\"1369\"/>\n      <point x=\"1102\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1146\" y=\"1369\" type=\"line\"/>\n      <point x=\"1146\" y=\"1620\" type=\"line\"/>\n      <point x=\"1102\" y=\"1620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"1620\"/>\n      <point x=\"281\" y=\"1291\"/>\n      <point x=\"281\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"281\" y=\"133\"/>\n      <point x=\"580\" y=\"-200\"/>\n    </contour>\n    <component base=\"asterisk\" xOffset=\"1100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/parenright-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenright-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FD3F\"/>\n  <outline>\n    <component base=\"parenleft-ar\" xScale=\"-1\" xOffset=\"1200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>parenleft-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/parenright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0029\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"-200\" type=\"line\"/>\n      <point x=\"229\" y=\"-200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"-200\"/>\n      <point x=\"950\" y=\"133\"/>\n      <point x=\"950\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"1291\"/>\n      <point x=\"687\" y=\"1620\"/>\n      <point x=\"229\" y=\"1620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"186\" y=\"1620\" type=\"line\"/>\n      <point x=\"186\" y=\"1369\" type=\"line\"/>\n      <point x=\"229\" y=\"1369\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"514\" y=\"1369\"/>\n      <point x=\"673\" y=\"1130\"/>\n      <point x=\"673\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"294\"/>\n      <point x=\"514\" y=\"51\"/>\n      <point x=\"229\" y=\"51\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"186\" y=\"51\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/partialdiff.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"partialdiff\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2202\"/>\n  <outline>\n    <contour>\n      <point x=\"612\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"926\" y=\"-20\"/>\n      <point x=\"1111\" y=\"168\"/>\n      <point x=\"1111\" y=\"486\" type=\"curve\"/>\n      <point x=\"886\" y=\"668\" type=\"line\"/>\n      <point x=\"804\" y=\"668\" type=\"line\"/>\n      <point x=\"768\" y=\"816\"/>\n      <point x=\"655\" y=\"900\"/>\n      <point x=\"499\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"900\"/>\n      <point x=\"111\" y=\"736\"/>\n      <point x=\"111\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"111\" y=\"152\"/>\n      <point x=\"292\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"610\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"232\"/>\n      <point x=\"390\" y=\"310\"/>\n      <point x=\"390\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"577\"/>\n      <point x=\"467\" y=\"649\"/>\n      <point x=\"606\" y=\"649\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"649\"/>\n      <point x=\"832\" y=\"571\"/>\n      <point x=\"832\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"307\"/>\n      <point x=\"750\" y=\"232\"/>\n    </contour>\n    <contour>\n      <point x=\"1111\" y=\"486\" type=\"line\"/>\n      <point x=\"1111\" y=\"581\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"1119\"/>\n      <point x=\"828\" y=\"1398\"/>\n      <point x=\"241\" y=\"1426\" type=\"curve\"/>\n      <point x=\"221\" y=\"1174\" type=\"line\"/>\n      <point x=\"631\" y=\"1157\"/>\n      <point x=\"830\" y=\"990\"/>\n      <point x=\"830\" y=\"666\" type=\"curve\"/>\n      <point x=\"830\" y=\"584\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/paseq-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"paseq-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05C0\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"1500\" type=\"line\"/>\n      <point x=\"469\" y=\"1500\" type=\"line\"/>\n      <point x=\"469\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/patah-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"patah-hb\" format=\"2\">\n  <unicode hex=\"05B7\"/>\n  <anchor x=\"599\" y=\"0\" name=\"_bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"817\" y=\"-142\" type=\"line\"/>\n      <point x=\"383\" y=\"-142\" type=\"line\"/>\n      <point x=\"383\" y=\"-321\" type=\"line\"/>\n      <point x=\"817\" y=\"-321\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"1060\" type=\"line\"/>\n      <point x=\"778\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"0\" type=\"line\"/>\n      <point x=\"422\" y=\"1060\" type=\"line\"/>\n      <point x=\"151\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"162\" y=\"808\" type=\"line\"/>\n      <point x=\"1044\" y=\"808\" type=\"line\"/>\n      <point x=\"1044\" y=\"1060\" type=\"line\"/>\n      <point x=\"162\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pe-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"n\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pe-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E4\"/>\n  <anchor x=\"659\" y=\"415\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"1034\" y=\"270\" type=\"line\"/>\n      <point x=\"140\" y=\"270\" type=\"line\"/>\n      <point x=\"140\" y=\"0\" type=\"line\"/>\n      <point x=\"1034\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"596\" y=\"743\" type=\"line\"/>\n      <point x=\"185\" y=\"800\" type=\"line\"/>\n      <point x=\"129\" y=\"538\" type=\"line\"/>\n      <point x=\"560\" y=\"479\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1034\" y=\"809\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1034\" y=\"1067\"/>\n      <point x=\"890\" y=\"1200\"/>\n      <point x=\"603\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"223\" y=\"1200\" type=\"line\"/>\n      <point x=\"187\" y=\"1066\"/>\n      <point x=\"139\" y=\"784\"/>\n      <point x=\"129\" y=\"538\" type=\"curve\"/>\n      <point x=\"385\" y=\"536\" type=\"line\"/>\n      <point x=\"394\" y=\"689\"/>\n      <point x=\"406\" y=\"813\"/>\n      <point x=\"426\" y=\"930\" type=\"curve\"/>\n      <point x=\"534\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"930\"/>\n      <point x=\"776\" y=\"873\"/>\n      <point x=\"776\" y=\"638\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"0\" type=\"line\"/>\n      <point x=\"1034\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pedagesh-hb.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pedagesh-hb.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"660\" y=\"334\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"334\"/>\n      <point x=\"741\" y=\"371\"/>\n      <point x=\"741\" y=\"416\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"741\" y=\"461\"/>\n      <point x=\"705\" y=\"496\"/>\n      <point x=\"660\" y=\"496\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"497\"/>\n      <point x=\"577\" y=\"461\"/>\n      <point x=\"577\" y=\"416\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"371\"/>\n      <point x=\"615\" y=\"334\"/>\n    </contour>\n    <component base=\"pe-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pedagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pedagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB44\"/>\n  <outline>\n    <contour>\n      <point x=\"650\" y=\"724\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"695\" y=\"724\"/>\n      <point x=\"731\" y=\"761\"/>\n      <point x=\"731\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"851\"/>\n      <point x=\"695\" y=\"886\"/>\n      <point x=\"650\" y=\"886\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"887\"/>\n      <point x=\"567\" y=\"851\"/>\n      <point x=\"567\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"761\"/>\n      <point x=\"605\" y=\"724\"/>\n    </contour>\n    <component base=\"pe-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-618\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-708\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-20\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067E\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-20\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"212\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"170\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-10\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-626\" yOffset=\"-369\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-618\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-716\" yOffset=\"-369\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-708\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-26\" yOffset=\"-369\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-18\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B7\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-26\" yOffset=\"-369\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-18\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"259\" yOffset=\"-117\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"212\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"219\" yOffset=\"-127\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"172\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"14\" yOffset=\"-239\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-8\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-81\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"2\" yOffset=\"357\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"242\" yOffset=\"357\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A6\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"249\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"164\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"65\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"2\" yOffset=\"357\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/percent-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066A\"/>\n  <outline>\n    <contour>\n      <point x=\"363\" y=\"-20\" type=\"line\"/>\n      <point x=\"1040\" y=\"1370\" type=\"line\"/>\n      <point x=\"820\" y=\"1440\" type=\"line\"/>\n      <point x=\"143\" y=\"50\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"886\" y=\"-10\" type=\"line\"/>\n      <point x=\"1127\" y=\"234\" type=\"line\"/>\n      <point x=\"858\" y=\"497\" type=\"line\"/>\n      <point x=\"623\" y=\"246\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"340\" y=\"933\" type=\"line\"/>\n      <point x=\"581\" y=\"1177\" type=\"line\"/>\n      <point x=\"312\" y=\"1440\" type=\"line\"/>\n      <point x=\"77\" y=\"1189\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/percent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0025\"/>\n  <outline>\n    <contour>\n      <point x=\"180\" y=\"306\" type=\"line\"/>\n      <point x=\"1135\" y=\"951\" type=\"line\"/>\n      <point x=\"1018\" y=\"1106\" type=\"line\"/>\n      <point x=\"63\" y=\"467\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"860\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"-20\"/>\n      <point x=\"1180\" y=\"108\"/>\n      <point x=\"1180\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1180\" y=\"498\"/>\n      <point x=\"1053\" y=\"626\"/>\n      <point x=\"860\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"626\"/>\n      <point x=\"538\" y=\"498\"/>\n      <point x=\"538\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"108\"/>\n      <point x=\"665\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"860\" y=\"193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"193\"/>\n      <point x=\"760\" y=\"237\"/>\n      <point x=\"760\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"369\"/>\n      <point x=\"799\" y=\"413\"/>\n      <point x=\"860\" y=\"413\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"919\" y=\"413\"/>\n      <point x=\"958\" y=\"369\"/>\n      <point x=\"958\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"958\" y=\"237\"/>\n      <point x=\"919\" y=\"193\"/>\n    </contour>\n    <contour>\n      <point x=\"354\" y=\"794\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"794\"/>\n      <point x=\"674\" y=\"922\"/>\n      <point x=\"674\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"1313\"/>\n      <point x=\"547\" y=\"1440\"/>\n      <point x=\"354\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"1440\"/>\n      <point x=\"32\" y=\"1312\"/>\n      <point x=\"32\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"32\" y=\"922\"/>\n      <point x=\"159\" y=\"794\"/>\n    </contour>\n    <contour>\n      <point x=\"354\" y=\"1007\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"1007\"/>\n      <point x=\"254\" y=\"1051\"/>\n      <point x=\"254\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1183\"/>\n      <point x=\"293\" y=\"1227\"/>\n      <point x=\"354\" y=\"1227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"413\" y=\"1227\"/>\n      <point x=\"452\" y=\"1183\"/>\n      <point x=\"452\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"452\" y=\"1051\"/>\n      <point x=\"413\" y=\"1007\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/percent_percent.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent_percent.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"263\" y=\"306\" type=\"line\"/>\n      <point x=\"1339\" y=\"1035\" type=\"line\"/>\n      <point x=\"1222\" y=\"1189\" type=\"line\"/>\n      <point x=\"146\" y=\"465\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"942\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1135\" y=\"-20\"/>\n      <point x=\"1263\" y=\"108\"/>\n      <point x=\"1263\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1263\" y=\"498\"/>\n      <point x=\"1135\" y=\"626\"/>\n      <point x=\"942\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"626\"/>\n      <point x=\"620\" y=\"498\"/>\n      <point x=\"620\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"620\" y=\"108\"/>\n      <point x=\"747\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"942\" y=\"194\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"194\"/>\n      <point x=\"844\" y=\"238\"/>\n      <point x=\"844\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"369\"/>\n      <point x=\"882\" y=\"412\"/>\n      <point x=\"942\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1001\" y=\"412\"/>\n      <point x=\"1039\" y=\"369\"/>\n      <point x=\"1039\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1039\" y=\"238\"/>\n      <point x=\"1001\" y=\"194\"/>\n    </contour>\n    <contour>\n      <point x=\"436\" y=\"794\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"794\"/>\n      <point x=\"757\" y=\"922\"/>\n      <point x=\"757\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"1313\"/>\n      <point x=\"629\" y=\"1440\"/>\n      <point x=\"436\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"241\" y=\"1440\"/>\n      <point x=\"114\" y=\"1312\"/>\n      <point x=\"114\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"114\" y=\"922\"/>\n      <point x=\"241\" y=\"794\"/>\n    </contour>\n    <contour>\n      <point x=\"436\" y=\"1008\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"376\" y=\"1008\"/>\n      <point x=\"338\" y=\"1052\"/>\n      <point x=\"338\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"1183\"/>\n      <point x=\"376\" y=\"1227\"/>\n      <point x=\"436\" y=\"1227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"1227\"/>\n      <point x=\"533\" y=\"1183\"/>\n      <point x=\"533\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"1052\"/>\n      <point x=\"495\" y=\"1008\"/>\n    </contour>\n    <contour>\n      <point x=\"1982\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2175\" y=\"-20\"/>\n      <point x=\"2302\" y=\"108\"/>\n      <point x=\"2302\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2302\" y=\"498\"/>\n      <point x=\"2175\" y=\"626\"/>\n      <point x=\"1982\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1787\" y=\"626\"/>\n      <point x=\"1659\" y=\"498\"/>\n      <point x=\"1659\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1659\" y=\"108\"/>\n      <point x=\"1787\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"1982\" y=\"194\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1921\" y=\"194\"/>\n      <point x=\"1883\" y=\"238\"/>\n      <point x=\"1883\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1883\" y=\"369\"/>\n      <point x=\"1921\" y=\"412\"/>\n      <point x=\"1982\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2040\" y=\"412\"/>\n      <point x=\"2078\" y=\"369\"/>\n      <point x=\"2078\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2078\" y=\"238\"/>\n      <point x=\"2040\" y=\"194\"/>\n    </contour>\n    <contour>\n      <point x=\"1206\" y=\"241\" type=\"line\"/>\n      <point x=\"2257\" y=\"953\" type=\"line\"/>\n      <point x=\"2140\" y=\"1106\" type=\"line\"/>\n      <point x=\"1089\" y=\"400\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1476\" y=\"794\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1669\" y=\"794\"/>\n      <point x=\"1796\" y=\"922\"/>\n      <point x=\"1796\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1796\" y=\"1313\"/>\n      <point x=\"1669\" y=\"1440\"/>\n      <point x=\"1476\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1281\" y=\"1440\"/>\n      <point x=\"1153\" y=\"1312\"/>\n      <point x=\"1153\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1153\" y=\"922\"/>\n      <point x=\"1281\" y=\"794\"/>\n    </contour>\n    <contour>\n      <point x=\"1476\" y=\"1008\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1415\" y=\"1008\"/>\n      <point x=\"1377\" y=\"1052\"/>\n      <point x=\"1377\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1377\" y=\"1183\"/>\n      <point x=\"1415\" y=\"1227\"/>\n      <point x=\"1476\" y=\"1227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1534\" y=\"1227\"/>\n      <point x=\"1572\" y=\"1183\"/>\n      <point x=\"1572\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1572\" y=\"1052\"/>\n      <point x=\"1534\" y=\"1008\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/period.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002E\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"-20\"/>\n      <point x=\"782\" y=\"62\"/>\n      <point x=\"782\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"263\"/>\n      <point x=\"701\" y=\"344\"/>\n      <point x=\"600\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"344\"/>\n      <point x=\"418\" y=\"263\"/>\n      <point x=\"418\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"62\"/>\n      <point x=\"499\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/period_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1100\" y=\"835\" type=\"line\"/>\n      <point x=\"2120\" y=\"835\" type=\"line\"/>\n      <point x=\"2120\" y=\"1085\" type=\"line\"/>\n      <point x=\"1100\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"333\" type=\"line\"/>\n      <point x=\"2120\" y=\"333\" type=\"line\"/>\n      <point x=\"2120\" y=\"583\" type=\"line\"/>\n      <point x=\"1100\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-60\" yOffset=\"548\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/period_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1020\" y=\"584\" type=\"line\"/>\n      <point x=\"2120\" y=\"584\" type=\"line\"/>\n      <point x=\"2120\" y=\"834\" type=\"line\"/>\n      <point x=\"1020\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-60\" yOffset=\"548\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/period_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"140\"/>\n    <component base=\"period\" xOffset=\"1060\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/period_period_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1900\" y=\"835\" type=\"line\"/>\n      <point x=\"3320\" y=\"835\" type=\"line\"/>\n      <point x=\"3320\" y=\"1085\" type=\"line\"/>\n      <point x=\"1900\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1900\" y=\"333\" type=\"line\"/>\n      <point x=\"3320\" y=\"333\" type=\"line\"/>\n      <point x=\"3320\" y=\"583\" type=\"line\"/>\n      <point x=\"1900\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-120\"/>\n    <component base=\"period\" xOffset=\"650\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/period_period_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"3320\" y=\"197\" type=\"line\"/>\n      <point x=\"3320\" y=\"467\" type=\"line\"/>\n      <point x=\"2502\" y=\"692\" type=\"line\"/>\n      <point x=\"2502\" y=\"726\" type=\"line\"/>\n      <point x=\"3320\" y=\"951\" type=\"line\"/>\n      <point x=\"3320\" y=\"1221\" type=\"line\"/>\n      <point x=\"2182\" y=\"843\" type=\"line\"/>\n      <point x=\"2182\" y=\"575\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-60\" yOffset=\"545\"/>\n    <component base=\"period\" xOffset=\"838\" yOffset=\"545\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/period_period_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"400\"/>\n    <component base=\"period\" xOffset=\"1200\"/>\n    <component base=\"period\" xOffset=\"2000\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/period_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"100\"/>\n    <component base=\"question\" xOffset=\"960\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>question</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/periodcentered.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"periodcentered\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B7\"/>\n  <outline>\n    <component base=\"period\" yOffset=\"549\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/perispomenicomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"perispomenicomb\" format=\"2\">\n  <unicode hex=\"0342\"/>\n  <outline>\n    <component base=\"tildecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>tildecomb</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/perthousand-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"perthousand-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0609\"/>\n  <outline>\n    <contour>\n      <point x=\"243\" y=\"-20\" type=\"line\"/>\n      <point x=\"990\" y=\"1370\" type=\"line\"/>\n      <point x=\"770\" y=\"1440\" type=\"line\"/>\n      <point x=\"23\" y=\"50\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"635\" y=\"-10\" type=\"line\"/>\n      <point x=\"811\" y=\"168\" type=\"line\"/>\n      <point x=\"615\" y=\"360\" type=\"line\"/>\n      <point x=\"443\" y=\"177\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"285\" y=\"1039\" type=\"line\"/>\n      <point x=\"475\" y=\"1232\" type=\"line\"/>\n      <point x=\"263\" y=\"1440\" type=\"line\"/>\n      <point x=\"77\" y=\"1242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1009\" y=\"-10\" type=\"line\"/>\n      <point x=\"1186\" y=\"168\" type=\"line\"/>\n      <point x=\"989\" y=\"360\" type=\"line\"/>\n      <point x=\"818\" y=\"177\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/perthousand.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"perthousand\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2030\"/>\n  <outline>\n    <contour>\n      <point x=\"130\" y=\"289\" type=\"line\"/>\n      <point x=\"1085\" y=\"968\" type=\"line\"/>\n      <point x=\"968\" y=\"1123\" type=\"line\"/>\n      <point x=\"13\" y=\"450\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"534\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"681\" y=\"-20\"/>\n      <point x=\"778\" y=\"80\"/>\n      <point x=\"778\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"383\"/>\n      <point x=\"681\" y=\"483\"/>\n      <point x=\"534\" y=\"483\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"483\"/>\n      <point x=\"288\" y=\"383\"/>\n      <point x=\"288\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"288\" y=\"80\"/>\n      <point x=\"386\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"534\" y=\"157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"157\"/>\n      <point x=\"475\" y=\"187\"/>\n      <point x=\"475\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"276\"/>\n      <point x=\"498\" y=\"306\"/>\n      <point x=\"534\" y=\"306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"569\" y=\"306\"/>\n      <point x=\"592\" y=\"276\"/>\n      <point x=\"592\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"187\"/>\n      <point x=\"569\" y=\"157\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"794\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"794\"/>\n      <point x=\"658\" y=\"922\"/>\n      <point x=\"658\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"1313\"/>\n      <point x=\"531\" y=\"1440\"/>\n      <point x=\"338\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"143\" y=\"1440\"/>\n      <point x=\"15\" y=\"1312\"/>\n      <point x=\"15\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"15\" y=\"922\"/>\n      <point x=\"143\" y=\"794\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"1007\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"277\" y=\"1007\"/>\n      <point x=\"238\" y=\"1051\"/>\n      <point x=\"238\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1183\"/>\n      <point x=\"277\" y=\"1227\"/>\n      <point x=\"338\" y=\"1227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"397\" y=\"1227\"/>\n      <point x=\"435\" y=\"1183\"/>\n      <point x=\"435\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"435\" y=\"1051\"/>\n      <point x=\"397\" y=\"1007\"/>\n    </contour>\n    <contour>\n      <point x=\"969\" y=\"286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"286\"/>\n      <point x=\"1214\" y=\"386\"/>\n      <point x=\"1214\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1214\" y=\"689\"/>\n      <point x=\"1116\" y=\"789\"/>\n      <point x=\"969\" y=\"789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"789\"/>\n      <point x=\"724\" y=\"689\"/>\n      <point x=\"724\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"386\"/>\n      <point x=\"821\" y=\"286\"/>\n    </contour>\n    <contour>\n      <point x=\"969\" y=\"463\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"933\" y=\"463\"/>\n      <point x=\"910\" y=\"493\"/>\n      <point x=\"910\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"582\"/>\n      <point x=\"933\" y=\"612\"/>\n      <point x=\"969\" y=\"612\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"612\"/>\n      <point x=\"1027\" y=\"582\"/>\n      <point x=\"1027\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"493\"/>\n      <point x=\"1004\" y=\"463\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peseta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peseta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A7\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"809\" type=\"line\"/>\n      <point x=\"1200\" y=\"809\" type=\"line\"/>\n      <point x=\"1200\" y=\"1031\" type=\"line\"/>\n      <point x=\"0\" y=\"1031\" type=\"line\"/>\n    </contour>\n    <component base=\"P\" xOffset=\"-20\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>P</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/peso.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peso\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B1\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"956\" type=\"line\"/>\n      <point x=\"1200\" y=\"956\" type=\"line\"/>\n      <point x=\"1200\" y=\"1119\" type=\"line\"/>\n      <point x=\"0\" y=\"1119\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"719\" type=\"line\"/>\n      <point x=\"1200\" y=\"719\" type=\"line\"/>\n      <point x=\"1200\" y=\"882\" type=\"line\"/>\n      <point x=\"0\" y=\"882\" type=\"line\"/>\n    </contour>\n    <component base=\"P\" xOffset=\"-20\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>P</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/phi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"phi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C6\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"-20\"/>\n      <point x=\"1131\" y=\"177\"/>\n      <point x=\"1131\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"883\"/>\n      <point x=\"940\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1080\"/>\n      <point x=\"69\" y=\"883\"/>\n      <point x=\"69\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"69\" y=\"177\"/>\n      <point x=\"260\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"465\" y=\"-460\" type=\"line\"/>\n      <point x=\"735\" y=\"-460\" type=\"line\"/>\n      <point x=\"735\" y=\"125\" type=\"line\"/>\n      <point x=\"465\" y=\"125\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"198\"/>\n      <point x=\"346\" y=\"316\"/>\n      <point x=\"346\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"744\"/>\n      <point x=\"436\" y=\"862\"/>\n      <point x=\"600\" y=\"862\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"862\"/>\n      <point x=\"854\" y=\"744\"/>\n      <point x=\"854\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"316\"/>\n      <point x=\"764\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"511\" y=\"102\" type=\"line\"/>\n      <point x=\"689\" y=\"102\" type=\"line\"/>\n      <point x=\"689\" y=\"973\" type=\"line\"/>\n      <point x=\"511\" y=\"973\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"465\" y=\"915\" type=\"line\"/>\n      <point x=\"735\" y=\"915\" type=\"line\"/>\n      <point x=\"735\" y=\"1500\" type=\"line\"/>\n      <point x=\"465\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/pi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C0\"/>\n  <anchor x=\"580\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"566\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"978\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"-20\"/>\n      <point x=\"1085\" y=\"-17\"/>\n      <point x=\"1141\" y=\"-8\" type=\"curve\"/>\n      <point x=\"1117\" y=\"245\" type=\"line\"/>\n      <point x=\"1084\" y=\"240\"/>\n      <point x=\"1061\" y=\"237\"/>\n      <point x=\"1038\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"237\"/>\n      <point x=\"945\" y=\"282\"/>\n      <point x=\"945\" y=\"387\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"945\" y=\"1060\" type=\"line\"/>\n      <point x=\"675\" y=\"1060\" type=\"line\"/>\n      <point x=\"675\" y=\"310\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"79\"/>\n      <point x=\"765\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"205\" y=\"0\" type=\"line\"/>\n      <point x=\"475\" y=\"0\" type=\"line\"/>\n      <point x=\"475\" y=\"1060\" type=\"line\"/>\n      <point x=\"205\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"53\" y=\"808\" type=\"line\"/>\n      <point x=\"1127\" y=\"808\" type=\"line\"/>\n      <point x=\"1127\" y=\"1060\" type=\"line\"/>\n      <point x=\"53\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/plus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002B\"/>\n  <outline>\n    <contour>\n      <point x=\"466\" y=\"190\" type=\"line\"/>\n      <point x=\"734\" y=\"190\" type=\"line\"/>\n      <point x=\"734\" y=\"1228\" type=\"line\"/>\n      <point x=\"466\" y=\"1228\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"584\" type=\"line\"/>\n      <point x=\"1100\" y=\"584\" type=\"line\"/>\n      <point x=\"1100\" y=\"834\" type=\"line\"/>\n      <point x=\"100\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/plus_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"plus\" xOffset=\"72\"/>\n    <component base=\"greater\" xOffset=\"1068\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>greater</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/plus_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"plus\" xOffset=\"140\"/>\n    <component base=\"plus\" xOffset=\"1060\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/plus_plus_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus_plus_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1861\" y=\"588\" type=\"line\"/>\n      <point x=\"2746\" y=\"588\" type=\"line\"/>\n      <point x=\"2746\" y=\"831\" type=\"line\"/>\n      <point x=\"1861\" y=\"831\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"861\" y=\"588\" type=\"line\"/>\n      <point x=\"1746\" y=\"588\" type=\"line\"/>\n      <point x=\"1746\" y=\"831\" type=\"line\"/>\n      <point x=\"861\" y=\"831\" type=\"line\"/>\n    </contour>\n    <component base=\"plus\" xOffset=\"180\"/>\n    <component base=\"plus\" xOffset=\"2220\"/>\n    <component base=\"plus\" xOffset=\"1200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/plusminus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plusminus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B1\"/>\n  <outline>\n    <contour>\n      <point x=\"469\" y=\"246\" type=\"line\"/>\n      <point x=\"731\" y=\"246\" type=\"line\"/>\n      <point x=\"731\" y=\"1224\" type=\"line\"/>\n      <point x=\"469\" y=\"1224\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"651\" type=\"line\"/>\n      <point x=\"1100\" y=\"651\" type=\"line\"/>\n      <point x=\"1100\" y=\"901\" type=\"line\"/>\n      <point x=\"100\" y=\"901\" type=\"line\"/>\n    </contour>\n    <component base=\"minus\" yOffset=\"-430\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>minus</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/prescription.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"prescription\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"211E\"/>\n  <outline>\n    <contour>\n      <point x=\"938\" y=\"-260\" type=\"line\"/>\n      <point x=\"1253\" y=\"-260\" type=\"line\"/>\n      <point x=\"634\" y=\"668\" type=\"line\"/>\n      <point x=\"356\" y=\"668\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"103\" y=\"0\" type=\"line\"/>\n      <point x=\"367\" y=\"0\" type=\"line\"/>\n      <point x=\"367\" y=\"1420\" type=\"line\"/>\n      <point x=\"103\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"416\" y=\"-257\" type=\"line\"/>\n      <point x=\"686\" y=\"-257\" type=\"line\"/>\n      <point x=\"1273\" y=\"497\" type=\"line\"/>\n      <point x=\"1003\" y=\"497\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"353\" y=\"520\" type=\"line\"/>\n      <point x=\"608\" y=\"520\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"913\" y=\"520\"/>\n      <point x=\"1087\" y=\"692\"/>\n      <point x=\"1087\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"1264\"/>\n      <point x=\"913\" y=\"1420\"/>\n      <point x=\"608\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"1420\" type=\"line\"/>\n      <point x=\"357\" y=\"1177\" type=\"line\"/>\n      <point x=\"608\" y=\"1177\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"1177\"/>\n      <point x=\"802\" y=\"1102\"/>\n      <point x=\"802\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"839\"/>\n      <point x=\"730\" y=\"763\"/>\n      <point x=\"608\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"763\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/product.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"product\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"220F\"/>\n  <outline>\n    <contour>\n      <point x=\"743\" y=\"-200\" type=\"line\"/>\n      <point x=\"1009\" y=\"-200\" type=\"line\"/>\n      <point x=\"1009\" y=\"1420\" type=\"line\"/>\n      <point x=\"743\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"191\" y=\"-200\" type=\"line\"/>\n      <point x=\"457\" y=\"-200\" type=\"line\"/>\n      <point x=\"457\" y=\"1420\" type=\"line\"/>\n      <point x=\"191\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"63\" y=\"1168\" type=\"line\"/>\n      <point x=\"1137\" y=\"1168\" type=\"line\"/>\n      <point x=\"1137\" y=\"1420\" type=\"line\"/>\n      <point x=\"63\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/psi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"psi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C8\"/>\n  <anchor x=\"600\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"-20\"/>\n      <point x=\"1111\" y=\"162\"/>\n      <point x=\"1111\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"1060\" type=\"line\"/>\n      <point x=\"842\" y=\"1060\" type=\"line\"/>\n      <point x=\"842\" y=\"530\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"333\"/>\n      <point x=\"762\" y=\"235\"/>\n      <point x=\"600\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"235\"/>\n      <point x=\"358\" y=\"333\"/>\n      <point x=\"358\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"1060\" type=\"line\"/>\n      <point x=\"89\" y=\"1060\" type=\"line\"/>\n      <point x=\"89\" y=\"530\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"89\" y=\"162\"/>\n      <point x=\"259\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"465\" y=\"-460\" type=\"line\"/>\n      <point x=\"735\" y=\"-460\" type=\"line\"/>\n      <point x=\"735\" y=\"125\" type=\"line\"/>\n      <point x=\"465\" y=\"125\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"501\" y=\"172\" type=\"line\"/>\n      <point x=\"699\" y=\"172\" type=\"line\"/>\n      <point x=\"729\" y=\"1500\" type=\"line\"/>\n      <point x=\"471\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/published.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"published\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2117\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"15\"/>\n      <point x=\"1191\" y=\"263\"/>\n      <point x=\"1191\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1191\" y=\"1146\"/>\n      <point x=\"976\" y=\"1405\"/>\n      <point x=\"600\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"1405\"/>\n      <point x=\"9\" y=\"1146\"/>\n      <point x=\"9\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"9\" y=\"263\"/>\n      <point x=\"224\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"365\" y=\"396\" type=\"line\"/>\n      <point x=\"566\" y=\"396\" type=\"line\"/>\n      <point x=\"566\" y=\"1030\" type=\"line\"/>\n      <point x=\"365\" y=\"1030\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"370\" y=\"227\"/>\n      <point x=\"238\" y=\"398\"/>\n      <point x=\"238\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1011\"/>\n      <point x=\"370\" y=\"1193\"/>\n      <point x=\"600\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"1193\"/>\n      <point x=\"962\" y=\"1011\"/>\n      <point x=\"962\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"398\"/>\n      <point x=\"830\" y=\"227\"/>\n    </contour>\n    <contour>\n      <point x=\"511\" y=\"543\" type=\"line\"/>\n      <point x=\"656\" y=\"543\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"543\"/>\n      <point x=\"898\" y=\"635\"/>\n      <point x=\"898\" y=\"788\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"945\"/>\n      <point x=\"810\" y=\"1030\"/>\n      <point x=\"656\" y=\"1030\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"507\" y=\"1030\" type=\"line\"/>\n      <point x=\"507\" y=\"858\" type=\"line\"/>\n      <point x=\"638\" y=\"858\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"858\"/>\n      <point x=\"705\" y=\"832\"/>\n      <point x=\"705\" y=\"787\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"741\"/>\n      <point x=\"680\" y=\"715\"/>\n      <point x=\"638\" y=\"715\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"511\" y=\"715\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/punctuationspace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"punctuationspace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2008\"/>\n  <outline>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>period</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/q.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"q\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0071\"/>\n  <anchor x=\"552\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"485\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"-20\"/>\n      <point x=\"729\" y=\"42\"/>\n      <point x=\"752\" y=\"164\" type=\"curve\"/>\n      <point x=\"850\" y=\"164\" type=\"line\"/>\n      <point x=\"778\" y=\"539\" type=\"line\"/>\n      <point x=\"778\" y=\"482\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"317\"/>\n      <point x=\"708\" y=\"235\"/>\n      <point x=\"565\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"235\"/>\n      <point x=\"356\" y=\"331\"/>\n      <point x=\"356\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"714\"/>\n      <point x=\"432\" y=\"825\"/>\n      <point x=\"565\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"825\"/>\n      <point x=\"778\" y=\"733\"/>\n      <point x=\"778\" y=\"544\" type=\"curve\"/>\n      <point x=\"840\" y=\"868\" type=\"line\"/>\n      <point x=\"752\" y=\"868\" type=\"line\"/>\n      <point x=\"727\" y=\"1010\"/>\n      <point x=\"648\" y=\"1080\"/>\n      <point x=\"487\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"1080\"/>\n      <point x=\"79\" y=\"876\"/>\n      <point x=\"79\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"79\" y=\"172\"/>\n      <point x=\"228\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"778\" y=\"-460\" type=\"line\"/>\n      <point x=\"1049\" y=\"-460\" type=\"line\"/>\n      <point x=\"1049\" y=\"1060\" type=\"line\"/>\n      <point x=\"798\" y=\"1060\" type=\"line\"/>\n      <point x=\"778\" y=\"836\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"211\" yOffset=\"224\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0642\"/>\n  <outline>\n    <component base=\"qafDotless-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"213\" yOffset=\"224\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"164\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"65\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"2\" yOffset=\"357\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08BC\"/>\n  <outline>\n    <component base=\"qafDotless-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"164\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"211\" yOffset=\"214\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A7\"/>\n  <outline>\n    <component base=\"qafDotless-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"213\" yOffset=\"214\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"164\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"feh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-24\" yOffset=\"-427\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"211\" yOffset=\"224\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A5\"/>\n  <outline>\n    <component base=\"qaf-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-24\" yOffset=\"-427\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qaf-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"13\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qaf-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"577\" y=\"-509\" name=\"bottom\"/>\n  <anchor x=\"578\" y=\"-429\" name=\"bottom.dot\"/>\n  <anchor x=\"804\" y=\"1006\" name=\"top\"/>\n  <anchor x=\"811\" y=\"756\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"517\" y=\"-462\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"995\" y=\"-462\"/>\n      <point x=\"1169\" y=\"-328\"/>\n      <point x=\"1169\" y=\"129\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"481\"/>\n      <point x=\"1042\" y=\"712\"/>\n      <point x=\"823\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"712\"/>\n      <point x=\"489\" y=\"526\"/>\n      <point x=\"489\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"97\"/>\n      <point x=\"556\" y=\"-10\"/>\n      <point x=\"743\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1185\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-10\"/>\n      <point x=\"1310\" y=\"56\"/>\n      <point x=\"1310\" y=\"140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1310\" y=\"214\"/>\n      <point x=\"1277\" y=\"285\"/>\n      <point x=\"1202\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"285\" type=\"line\"/>\n      <point x=\"924\" y=\"284\"/>\n      <point x=\"870\" y=\"282\"/>\n      <point x=\"815\" y=\"281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"279\"/>\n      <point x=\"685\" y=\"293\"/>\n      <point x=\"685\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"391\"/>\n      <point x=\"728\" y=\"450\"/>\n      <point x=\"806\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"450\"/>\n      <point x=\"962\" y=\"346\"/>\n      <point x=\"962\" y=\"182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"62\"/>\n      <point x=\"962\" y=\"-51\"/>\n      <point x=\"912\" y=\"-102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"-165\"/>\n      <point x=\"720\" y=\"-167\"/>\n      <point x=\"567\" y=\"-167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"-167\"/>\n      <point x=\"264\" y=\"-111\"/>\n      <point x=\"264\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"207\"/>\n      <point x=\"276\" y=\"296\"/>\n      <point x=\"289\" y=\"393\" type=\"curve\"/>\n      <point x=\"61\" y=\"393\" type=\"line\"/>\n      <point x=\"40\" y=\"323\"/>\n      <point x=\"17\" y=\"175\"/>\n      <point x=\"17\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"17\" y=\"-227\"/>\n      <point x=\"89\" y=\"-462\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066F\"/>\n  <anchor x=\"577\" y=\"-509\" name=\"bottom\"/>\n  <anchor x=\"578\" y=\"-429\" name=\"bottom.dot\"/>\n  <anchor x=\"806\" y=\"1006\" name=\"top\"/>\n  <anchor x=\"813\" y=\"756\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"497\" y=\"-462\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"989\" y=\"-462\"/>\n      <point x=\"1169\" y=\"-337\"/>\n      <point x=\"1169\" y=\"129\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"481\"/>\n      <point x=\"1042\" y=\"712\"/>\n      <point x=\"823\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"712\"/>\n      <point x=\"489\" y=\"526\"/>\n      <point x=\"489\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"107\"/>\n      <point x=\"536\" y=\"-20\"/>\n      <point x=\"743\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"-20\"/>\n      <point x=\"905\" y=\"1\"/>\n      <point x=\"935\" y=\"44\" type=\"curve\"/>\n      <point x=\"1004\" y=\"46\" type=\"line\"/>\n      <point x=\"1007\" y=\"259\" type=\"line\"/>\n      <point x=\"941\" y=\"238\"/>\n      <point x=\"884\" y=\"226\"/>\n      <point x=\"806\" y=\"226\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"226\"/>\n      <point x=\"685\" y=\"242\"/>\n      <point x=\"685\" y=\"309\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"387\"/>\n      <point x=\"734\" y=\"450\"/>\n      <point x=\"809\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"450\"/>\n      <point x=\"962\" y=\"346\"/>\n      <point x=\"962\" y=\"182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"79\"/>\n      <point x=\"981\" y=\"-42\"/>\n      <point x=\"912\" y=\"-102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"846\" y=\"-160\"/>\n      <point x=\"720\" y=\"-167\"/>\n      <point x=\"567\" y=\"-167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"-167\"/>\n      <point x=\"264\" y=\"-111\"/>\n      <point x=\"264\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"207\"/>\n      <point x=\"273\" y=\"296\"/>\n      <point x=\"291\" y=\"393\" type=\"curve\"/>\n      <point x=\"61\" y=\"393\" type=\"line\"/>\n      <point x=\"38\" y=\"313\"/>\n      <point x=\"17\" y=\"175\"/>\n      <point x=\"17\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"17\" y=\"-227\"/>\n      <point x=\"99\" y=\"-462\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"211\" yOffset=\"214\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A8\"/>\n  <outline>\n    <component base=\"qafDotless-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"213\" yOffset=\"214\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"veh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qafT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"veh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qamats-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qamats-hb\" format=\"2\">\n  <unicode hex=\"05B8\"/>\n  <anchor x=\"599\" y=\"0\" name=\"_bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"817\" y=\"-142\" type=\"line\"/>\n      <point x=\"383\" y=\"-142\" type=\"line\"/>\n      <point x=\"383\" y=\"-321\" type=\"line\"/>\n      <point x=\"817\" y=\"-321\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"682\" y=\"-478\" type=\"line\"/>\n      <point x=\"682\" y=\"-195\" type=\"line\"/>\n      <point x=\"520\" y=\"-195\" type=\"line\"/>\n      <point x=\"520\" y=\"-478\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qamatsqatan-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qamatsqatan-hb\" format=\"2\">\n  <unicode hex=\"05C7\"/>\n  <outline>\n    <component base=\"qamats-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qof-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qof-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E7\"/>\n  <anchor x=\"599\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"1052\" y=\"1200\" type=\"line\"/>\n      <point x=\"160\" y=\"1200\" type=\"line\"/>\n      <point x=\"160\" y=\"930\" type=\"line\"/>\n      <point x=\"1052\" y=\"930\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"418\" y=\"-460\" type=\"line\"/>\n      <point x=\"418\" y=\"683\" type=\"line\"/>\n      <point x=\"160\" y=\"683\" type=\"line\"/>\n      <point x=\"160\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"794\" y=\"1200\" type=\"line\"/>\n      <point x=\"794\" y=\"752\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"437\"/>\n      <point x=\"794\" y=\"301\"/>\n      <point x=\"531\" y=\"249\" type=\"curve\"/>\n      <point x=\"590\" y=\"-19\" type=\"line\"/>\n      <point x=\"984\" y=\"56\"/>\n      <point x=\"1052\" y=\"257\"/>\n      <point x=\"1052\" y=\"652\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1052\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/qofdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qofdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB47\"/>\n  <outline>\n    <component base=\"qof-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-1\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/question-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"061F\"/>\n  <outline>\n    <contour>\n      <point x=\"588\" y=\"426\" type=\"curve\"/>\n      <point x=\"820\" y=\"426\" type=\"line\"/>\n      <point x=\"837\" y=\"483\"/>\n      <point x=\"842\" y=\"517\"/>\n      <point x=\"842\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"653\"/>\n      <point x=\"819\" y=\"739\"/>\n      <point x=\"673\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"964\"/>\n      <point x=\"528\" y=\"1006\"/>\n      <point x=\"528\" y=\"1068\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"528\" y=\"1136\"/>\n      <point x=\"586\" y=\"1181\"/>\n      <point x=\"699\" y=\"1181\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"1181\"/>\n      <point x=\"895\" y=\"1160\"/>\n      <point x=\"994\" y=\"1119\" type=\"curve\"/>\n      <point x=\"1021\" y=\"1340\" type=\"line\"/>\n      <point x=\"945\" y=\"1402\"/>\n      <point x=\"822\" y=\"1440\"/>\n      <point x=\"678\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"1440\"/>\n      <point x=\"243\" y=\"1286\"/>\n      <point x=\"243\" y=\"1079\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"243\" y=\"914\"/>\n      <point x=\"323\" y=\"835\"/>\n      <point x=\"450\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"581\" y=\"614\"/>\n      <point x=\"591\" y=\"552\"/>\n      <point x=\"591\" y=\"493\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"591\" y=\"465\"/>\n      <point x=\"590\" y=\"451\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"80\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/question.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003F\"/>\n  <outline>\n    <contour>\n      <point x=\"427\" y=\"489\" type=\"line\"/>\n      <point x=\"689\" y=\"489\" type=\"line\"/>\n      <point x=\"689\" y=\"526\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"608\"/>\n      <point x=\"718\" y=\"662\"/>\n      <point x=\"784\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"807\"/>\n      <point x=\"1023\" y=\"941\"/>\n      <point x=\"1023\" y=\"1102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1023\" y=\"1316\"/>\n      <point x=\"867\" y=\"1440\"/>\n      <point x=\"596\" y=\"1440\" type=\"curve\"/>\n      <point x=\"577\" y=\"1188\" type=\"line\"/>\n      <point x=\"679\" y=\"1188\"/>\n      <point x=\"736\" y=\"1144\"/>\n      <point x=\"736\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"736\" y=\"998\"/>\n      <point x=\"696\" y=\"934\"/>\n      <point x=\"624\" y=\"887\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"799\"/>\n      <point x=\"427\" y=\"710\"/>\n      <point x=\"427\" y=\"573\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"237\" y=\"1016\" type=\"line\"/>\n      <point x=\"322\" y=\"1120\"/>\n      <point x=\"452\" y=\"1188\"/>\n      <point x=\"577\" y=\"1188\" type=\"curve\"/>\n      <point x=\"596\" y=\"1440\" type=\"line\"/>\n      <point x=\"384\" y=\"1440\"/>\n      <point x=\"189\" y=\"1346\"/>\n      <point x=\"91\" y=\"1204\" type=\"curve\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-38\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/question_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"question\" xOffset=\"240\"/>\n    <component base=\"colon\" xOffset=\"1100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>question</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>colon</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/question_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1102\" y=\"333\" type=\"line\"/>\n      <point x=\"2120\" y=\"333\" type=\"line\"/>\n      <point x=\"2120\" y=\"583\" type=\"line\"/>\n      <point x=\"1102\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1139\" y=\"835\" type=\"curve\"/>\n      <point x=\"2120\" y=\"835\" type=\"line\"/>\n      <point x=\"2120\" y=\"1085\" type=\"line\"/>\n      <point x=\"1220\" y=\"1085\" type=\"line\"/>\n      <point x=\"1216\" y=\"1007\"/>\n      <point x=\"1185\" y=\"908\"/>\n    </contour>\n    <component base=\"question\" xOffset=\"42\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>question</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/question_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"question\" xOffset=\"240\"/>\n    <component base=\"period\" xOffset=\"1100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>question</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/question_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"question\" xOffset=\"106\"/>\n    <component base=\"question\" xOffset=\"1090\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>question</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>question</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/question_question_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_question_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2131\" y=\"333\" type=\"line\"/>\n      <point x=\"3109\" y=\"333\" type=\"line\"/>\n      <point x=\"3109\" y=\"583\" type=\"line\"/>\n      <point x=\"2131\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2168\" y=\"835\" type=\"curve\"/>\n      <point x=\"3109\" y=\"835\" type=\"line\"/>\n      <point x=\"3109\" y=\"1085\" type=\"line\"/>\n      <point x=\"2249\" y=\"1085\" type=\"line\"/>\n      <point x=\"2245\" y=\"1007\"/>\n      <point x=\"2214\" y=\"908\"/>\n    </contour>\n    <component base=\"question\" xOffset=\"86\"/>\n    <component base=\"question\" xOffset=\"1071\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>question</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/questiondown.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"questiondown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BF\"/>\n  <outline>\n    <contour>\n      <point x=\"604\" y=\"-380\" type=\"curve\"/>\n      <point x=\"623\" y=\"-128\" type=\"line\"/>\n      <point x=\"522\" y=\"-128\"/>\n      <point x=\"464\" y=\"-84\"/>\n      <point x=\"464\" y=\"-7\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"62\"/>\n      <point x=\"504\" y=\"126\"/>\n      <point x=\"576\" y=\"173\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"261\"/>\n      <point x=\"773\" y=\"350\"/>\n      <point x=\"773\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"571\" type=\"line\"/>\n      <point x=\"511\" y=\"571\" type=\"line\"/>\n      <point x=\"511\" y=\"535\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"511\" y=\"452\"/>\n      <point x=\"482\" y=\"398\"/>\n      <point x=\"416\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"256\" y=\"253\"/>\n      <point x=\"177\" y=\"119\"/>\n      <point x=\"177\" y=\"-42\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"177\" y=\"-256\"/>\n      <point x=\"333\" y=\"-380\"/>\n    </contour>\n    <contour>\n      <point x=\"604\" y=\"-380\" type=\"line\"/>\n      <point x=\"816\" y=\"-380\"/>\n      <point x=\"1011\" y=\"-286\"/>\n      <point x=\"1109\" y=\"-144\" type=\"curve\"/>\n      <point x=\"963\" y=\"45\" type=\"line\"/>\n      <point x=\"878\" y=\"-60\"/>\n      <point x=\"748\" y=\"-128\"/>\n      <point x=\"623\" y=\"-128\" type=\"curve\"/>\n    </contour>\n    <component base=\"period\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1238\" yOffset=\"1060\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/questiongreek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"questiongreek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"037E\"/>\n  <outline>\n    <component base=\"semicolon\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>semicolon</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/quotedbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0022\"/>\n  <outline>\n    <component base=\"quotesingle\" xOffset=\"-233\"/>\n    <component base=\"quotesingle\" xOffset=\"237\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>quotesingle</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>quotesingle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/quotedblbase.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedblbase\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201E\"/>\n  <outline>\n    <component base=\"quotedblright\" yOffset=\"-1165\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/quotedblleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedblleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201C\"/>\n  <outline>\n    <component base=\"quoteleft\" xOffset=\"-218\"/>\n    <component base=\"quoteleft\" xOffset=\"302\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>quoteleft</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>quoteleft</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/quotedblright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedblright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201D\"/>\n  <outline>\n    <component base=\"quoteright\" xOffset=\"272\"/>\n    <component base=\"quoteright\" xOffset=\"-248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>quoteright</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>quoteright</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/quoteleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quoteleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2018\"/>\n  <outline>\n    <contour>\n      <point x=\"685\" y=\"645\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"645\" type=\"line\"/>\n      <point x=\"780\" y=\"905\" type=\"line\"/>\n      <point x=\"715\" y=\"905\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"905\"/>\n      <point x=\"592\" y=\"937\"/>\n      <point x=\"592\" y=\"1007\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"1052\"/>\n      <point x=\"611\" y=\"1095\"/>\n      <point x=\"657\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"1268\" type=\"line\"/>\n      <point x=\"595\" y=\"1440\" type=\"line\"/>\n      <point x=\"496\" y=\"1339\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"1229\"/>\n      <point x=\"336\" y=\"1121\"/>\n      <point x=\"336\" y=\"987\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"752\"/>\n      <point x=\"446\" y=\"645\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/quotereversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotereversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201B\"/>\n  <outline>\n    <contour>\n      <point x=\"649\" y=\"625\" type=\"line\"/>\n      <point x=\"831\" y=\"797\" type=\"line\"/>\n      <point x=\"711\" y=\"922\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"970\"/>\n      <point x=\"646\" y=\"1013\"/>\n      <point x=\"646\" y=\"1058\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"1128\"/>\n      <point x=\"685\" y=\"1160\"/>\n      <point x=\"769\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"1160\" type=\"line\"/>\n      <point x=\"834\" y=\"1420\" type=\"line\"/>\n      <point x=\"739\" y=\"1420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"1420\"/>\n      <point x=\"390\" y=\"1313\"/>\n      <point x=\"390\" y=\"1078\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"944\"/>\n      <point x=\"442\" y=\"836\"/>\n      <point x=\"550\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/quoteright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quoteright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2019\"/>\n  <outline>\n    <contour>\n      <point x=\"551\" y=\"625\" type=\"line\"/>\n      <point x=\"650\" y=\"726\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"836\"/>\n      <point x=\"810\" y=\"944\"/>\n      <point x=\"810\" y=\"1078\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"1313\"/>\n      <point x=\"700\" y=\"1420\"/>\n      <point x=\"461\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"366\" y=\"1420\" type=\"line\"/>\n      <point x=\"366\" y=\"1160\" type=\"line\"/>\n      <point x=\"431\" y=\"1160\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"1160\"/>\n      <point x=\"554\" y=\"1128\"/>\n      <point x=\"554\" y=\"1058\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"554\" y=\"1013\"/>\n      <point x=\"535\" y=\"970\"/>\n      <point x=\"489\" y=\"922\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"369\" y=\"797\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/quotesinglbase.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotesinglbase\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201A\"/>\n  <outline>\n    <component base=\"quoteright\" yOffset=\"-1165\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>quoteright</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/quotesingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotesingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0027\"/>\n  <outline>\n    <contour>\n      <point x=\"479\" y=\"780\" type=\"line\"/>\n      <point x=\"721\" y=\"780\" type=\"line\"/>\n      <point x=\"758\" y=\"1420\" type=\"line\"/>\n      <point x=\"442\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/r.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"r\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0072\"/>\n  <anchor x=\"430\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"557\" y=\"456\" type=\"line\"/>\n      <point x=\"557\" y=\"692\"/>\n      <point x=\"622\" y=\"825\"/>\n      <point x=\"754\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"825\"/>\n      <point x=\"899\" y=\"774\"/>\n      <point x=\"899\" y=\"649\" type=\"curve\"/>\n      <point x=\"1169\" y=\"649\" type=\"line\"/>\n      <point x=\"1169\" y=\"927\"/>\n      <point x=\"1058\" y=\"1080\"/>\n      <point x=\"857\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"1080\"/>\n      <point x=\"597\" y=\"995\"/>\n      <point x=\"586\" y=\"821\" type=\"curve\"/>\n      <point x=\"495\" y=\"821\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"63\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"232\" type=\"line\"/>\n      <point x=\"63\" y=\"232\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"287\" y=\"0\" type=\"line\"/>\n      <point x=\"557\" y=\"0\" type=\"line\"/>\n      <point x=\"557\" y=\"756\" type=\"line\"/>\n      <point x=\"517\" y=\"1060\" type=\"line\"/>\n      <point x=\"287\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"103\" y=\"828\" type=\"line\"/>\n      <point x=\"523\" y=\"828\" type=\"line\"/>\n      <point x=\"503\" y=\"1060\" type=\"line\"/>\n      <point x=\"103\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/racute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"racute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0155\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"acutecomb\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/radical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"radical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221A\"/>\n  <outline>\n    <contour>\n      <point x=\"224\" y=\"-200\" type=\"line\"/>\n      <point x=\"584\" y=\"-200\" type=\"line\"/>\n      <point x=\"926\" y=\"1420\" type=\"line\"/>\n      <point x=\"663\" y=\"1420\" type=\"line\"/>\n      <point x=\"411\" y=\"80\" type=\"line\"/>\n      <point x=\"384\" y=\"80\" type=\"line\"/>\n      <point x=\"317\" y=\"401\" type=\"line\"/>\n      <point x=\"61\" y=\"401\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"680\" y=\"1177\" type=\"line\"/>\n      <point x=\"1147\" y=\"1177\" type=\"line\"/>\n      <point x=\"1147\" y=\"1420\" type=\"line\"/>\n      <point x=\"680\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ratio.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ratio\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2236\"/>\n  <outline>\n    <component base=\"colon\" yOffset=\"160\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ray-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ray-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0608\"/>\n  <outline>\n    <contour>\n      <point x=\"517\" y=\"-462\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"995\" y=\"-462\"/>\n      <point x=\"1169\" y=\"-328\"/>\n      <point x=\"1169\" y=\"129\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"481\"/>\n      <point x=\"1042\" y=\"712\"/>\n      <point x=\"823\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"712\"/>\n      <point x=\"489\" y=\"526\"/>\n      <point x=\"489\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"97\"/>\n      <point x=\"556\" y=\"-10\"/>\n      <point x=\"743\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1185\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-10\"/>\n      <point x=\"1310\" y=\"56\"/>\n      <point x=\"1310\" y=\"140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1310\" y=\"214\"/>\n      <point x=\"1277\" y=\"285\"/>\n      <point x=\"1202\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"285\" type=\"line\"/>\n      <point x=\"924\" y=\"284\"/>\n      <point x=\"870\" y=\"282\"/>\n      <point x=\"815\" y=\"281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"279\"/>\n      <point x=\"685\" y=\"293\"/>\n      <point x=\"685\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"391\"/>\n      <point x=\"728\" y=\"450\"/>\n      <point x=\"806\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"450\"/>\n      <point x=\"962\" y=\"346\"/>\n      <point x=\"962\" y=\"182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"49\"/>\n      <point x=\"961\" y=\"-52\"/>\n      <point x=\"912\" y=\"-102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"-165\"/>\n      <point x=\"720\" y=\"-167\"/>\n      <point x=\"567\" y=\"-167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"-167\"/>\n      <point x=\"264\" y=\"-111\"/>\n      <point x=\"264\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"194\"/>\n      <point x=\"274\" y=\"277\"/>\n      <point x=\"287\" y=\"360\" type=\"curve\"/>\n      <point x=\"98\" y=\"424\" type=\"line\"/>\n      <point x=\"-180\" y=\"335\" type=\"line\"/>\n      <point x=\"-133\" y=\"86\" type=\"line\"/>\n      <point x=\"107\" y=\"160\" type=\"line\"/>\n      <point x=\"39\" y=\"270\" type=\"line\"/>\n      <point x=\"27\" y=\"210\"/>\n      <point x=\"17\" y=\"118\"/>\n      <point x=\"17\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"17\" y=\"-237\"/>\n      <point x=\"89\" y=\"-462\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0159\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0157\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"-170\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E5B\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-170\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/recordS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"recordSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241E\"/>\n  <outline>\n    <component base=\"R.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>R.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/registered.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"registered\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AE\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"15\"/>\n      <point x=\"1191\" y=\"263\"/>\n      <point x=\"1191\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1191\" y=\"1146\"/>\n      <point x=\"976\" y=\"1405\"/>\n      <point x=\"600\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"1405\"/>\n      <point x=\"9\" y=\"1146\"/>\n      <point x=\"9\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"9\" y=\"263\"/>\n      <point x=\"224\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"365\" y=\"396\" type=\"line\"/>\n      <point x=\"566\" y=\"396\" type=\"line\"/>\n      <point x=\"566\" y=\"1030\" type=\"line\"/>\n      <point x=\"365\" y=\"1030\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"688\" y=\"396\" type=\"line\"/>\n      <point x=\"900\" y=\"396\" type=\"line\"/>\n      <point x=\"778\" y=\"652\" type=\"line\"/>\n      <point x=\"599\" y=\"625\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"370\" y=\"227\"/>\n      <point x=\"238\" y=\"398\"/>\n      <point x=\"238\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1011\"/>\n      <point x=\"370\" y=\"1193\"/>\n      <point x=\"600\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"1193\"/>\n      <point x=\"962\" y=\"1011\"/>\n      <point x=\"962\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"398\"/>\n      <point x=\"830\" y=\"227\"/>\n    </contour>\n    <contour>\n      <point x=\"527\" y=\"583\" type=\"line\"/>\n      <point x=\"631\" y=\"583\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"785\" y=\"583\"/>\n      <point x=\"873\" y=\"665\"/>\n      <point x=\"873\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"948\"/>\n      <point x=\"785\" y=\"1030\"/>\n      <point x=\"631\" y=\"1030\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"507\" y=\"1030\" type=\"line\"/>\n      <point x=\"507\" y=\"867\" type=\"line\"/>\n      <point x=\"615\" y=\"867\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"867\"/>\n      <point x=\"682\" y=\"845\"/>\n      <point x=\"682\" y=\"807\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"682\" y=\"769\"/>\n      <point x=\"657\" y=\"747\"/>\n      <point x=\"615\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"527\" y=\"747\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/reh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"reh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"354\" y=\"-545\" name=\"bottom\"/>\n  <anchor x=\"354\" y=\"-460\" name=\"bottom.dot\"/>\n  <anchor x=\"620\" y=\"955\" name=\"top\"/>\n  <anchor x=\"620\" y=\"705\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"913\" y=\"148\" type=\"curve\"/>\n      <point x=\"808\" y=\"119\" type=\"line\"/>\n      <point x=\"919\" y=\"8\"/>\n      <point x=\"992\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"980\" y=\"285\"/>\n      <point x=\"936\" y=\"297\"/>\n      <point x=\"892\" y=\"365\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"439\"/>\n      <point x=\"818\" y=\"505\"/>\n      <point x=\"727\" y=\"700\" type=\"curve\"/>\n      <point x=\"484\" y=\"585\" type=\"line\"/>\n      <point x=\"582\" y=\"382\"/>\n      <point x=\"650\" y=\"227\"/>\n      <point x=\"650\" y=\"100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"-108\"/>\n      <point x=\"486\" y=\"-211\"/>\n      <point x=\"230\" y=\"-211\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"140\" y=\"-211\"/>\n      <point x=\"102\" y=\"-206\"/>\n      <point x=\"26\" y=\"-199\" type=\"curve\"/>\n      <point x=\"13\" y=\"-465\" type=\"line\"/>\n      <point x=\"87\" y=\"-483\"/>\n      <point x=\"143\" y=\"-491\"/>\n      <point x=\"250\" y=\"-491\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"639\" y=\"-491\"/>\n      <point x=\"913\" y=\"-305\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/reh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"reh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0631\"/>\n  <anchor x=\"487\" y=\"-545\" name=\"bottom\"/>\n  <anchor x=\"487\" y=\"-460\" name=\"bottom.dot\"/>\n  <anchor x=\"730\" y=\"935\" name=\"top\"/>\n  <anchor x=\"730\" y=\"685\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"382\" y=\"-491\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"771\" y=\"-491\"/>\n      <point x=\"1049\" y=\"-304\"/>\n      <point x=\"1049\" y=\"78\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"258\"/>\n      <point x=\"975\" y=\"462\"/>\n      <point x=\"847\" y=\"677\" type=\"curve\"/>\n      <point x=\"614\" y=\"554\" type=\"line\"/>\n      <point x=\"723\" y=\"351\"/>\n      <point x=\"781\" y=\"205\"/>\n      <point x=\"781\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"-128\"/>\n      <point x=\"618\" y=\"-211\"/>\n      <point x=\"362\" y=\"-211\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"-211\"/>\n      <point x=\"234\" y=\"-206\"/>\n      <point x=\"158\" y=\"-199\" type=\"curve\"/>\n      <point x=\"145\" y=\"-465\" type=\"line\"/>\n      <point x=\"219\" y=\"-483\"/>\n      <point x=\"275\" y=\"-491\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehA_lefabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehAlefabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-1\" yOffset=\"428\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehA_lefabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehAlefabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FC5C\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"alefabove-ar\" xOffset=\"109\" yOffset=\"408\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"352\" y=\"-838\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xScale=\"1.001\" xOffset=\"-249\" yOffset=\"-458\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0694\"/>\n  <anchor x=\"492\" y=\"-838\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"dotbelow-ar\" xScale=\"1.001\" xOffset=\"-116\" yOffset=\"-458\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehD_otbelowdotabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehDotbelowdotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"352\" y=\"-838\" name=\"bottom\"/>\n  <anchor x=\"620\" y=\"905\" name=\"top\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-244\" yOffset=\"-609\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-224\" yOffset=\"-458\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehD_otbelowdotabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehDotbelowdotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0696\"/>\n  <anchor x=\"492\" y=\"-838\" name=\"bottom\"/>\n  <anchor x=\"730\" y=\"905\" name=\"top\"/>\n  <outline>\n    <component base=\"reh-ar\" xOffset=\"16\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-94\" yOffset=\"-609\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-75\" yOffset=\"-458\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>reh-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehF_ourdots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehFourdots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"20\" yOffset=\"173\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehF_ourdots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehFourdots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0699\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"130\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" yOffset=\"-399\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076C\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"110\" yOffset=\"-419\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehL_oop-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehLoop-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"507\" y=\"-585\" name=\"bottom\"/>\n  <anchor x=\"700\" y=\"905\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1053\" y=\"148\" type=\"curve\"/>\n      <point x=\"888\" y=\"119\" type=\"line\"/>\n      <point x=\"999\" y=\"8\"/>\n      <point x=\"1072\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"285\"/>\n      <point x=\"1029\" y=\"297\"/>\n      <point x=\"985\" y=\"365\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"439\"/>\n      <point x=\"908\" y=\"505\"/>\n      <point x=\"817\" y=\"700\" type=\"curve\"/>\n      <point x=\"574\" y=\"585\" type=\"line\"/>\n      <point x=\"682\" y=\"382\"/>\n      <point x=\"780\" y=\"187\"/>\n      <point x=\"780\" y=\"60\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"-118\"/>\n      <point x=\"718\" y=\"-231\"/>\n      <point x=\"422\" y=\"-231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"-231\"/>\n      <point x=\"267\" y=\"-207\"/>\n      <point x=\"267\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"-51\"/>\n      <point x=\"298\" y=\"5\"/>\n      <point x=\"355\" y=\"5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"5\"/>\n      <point x=\"449\" y=\"-56\"/>\n      <point x=\"449\" y=\"-179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"-332\"/>\n      <point x=\"422\" y=\"-454\"/>\n      <point x=\"395\" y=\"-606\" type=\"curve\"/>\n      <point x=\"584\" y=\"-603\" type=\"line\"/>\n      <point x=\"625\" y=\"-445\"/>\n      <point x=\"649\" y=\"-342\"/>\n      <point x=\"649\" y=\"-158\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"649\" y=\"116\"/>\n      <point x=\"536\" y=\"259\"/>\n      <point x=\"374\" y=\"259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"201\" y=\"259\"/>\n      <point x=\"72\" y=\"81\"/>\n      <point x=\"72\" y=\"-130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"72\" y=\"-393\"/>\n      <point x=\"207\" y=\"-491\"/>\n      <point x=\"462\" y=\"-491\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"-491\"/>\n      <point x=\"1053\" y=\"-284\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehL_oop-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehLoop-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AA\"/>\n  <anchor x=\"517\" y=\"-585\" name=\"bottom\"/>\n  <anchor x=\"760\" y=\"905\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"395\" y=\"-606\" type=\"curve\"/>\n      <point x=\"584\" y=\"-603\" type=\"line\"/>\n      <point x=\"625\" y=\"-445\"/>\n      <point x=\"649\" y=\"-342\"/>\n      <point x=\"649\" y=\"-158\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"649\" y=\"116\"/>\n      <point x=\"536\" y=\"259\"/>\n      <point x=\"374\" y=\"259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"201\" y=\"259\"/>\n      <point x=\"72\" y=\"81\"/>\n      <point x=\"72\" y=\"-130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"72\" y=\"-393\"/>\n      <point x=\"207\" y=\"-491\"/>\n      <point x=\"462\" y=\"-491\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"851\" y=\"-491\"/>\n      <point x=\"1079\" y=\"-304\"/>\n      <point x=\"1079\" y=\"78\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"258\"/>\n      <point x=\"1005\" y=\"462\"/>\n      <point x=\"877\" y=\"677\" type=\"curve\"/>\n      <point x=\"644\" y=\"554\" type=\"line\"/>\n      <point x=\"753\" y=\"351\"/>\n      <point x=\"811\" y=\"205\"/>\n      <point x=\"811\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"-148\"/>\n      <point x=\"718\" y=\"-231\"/>\n      <point x=\"422\" y=\"-231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"-231\"/>\n      <point x=\"267\" y=\"-207\"/>\n      <point x=\"267\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"-51\"/>\n      <point x=\"298\" y=\"5\"/>\n      <point x=\"355\" y=\"5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"5\"/>\n      <point x=\"449\" y=\"-56\"/>\n      <point x=\"449\" y=\"-179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"-332\"/>\n      <point x=\"422\" y=\"-454\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"497\" y=\"-645\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_ringArabic\" xOffset=\"31\" yOffset=\"-480\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_ringArabic</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0693\"/>\n  <anchor x=\"497\" y=\"-645\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_ringArabic\" xOffset=\"109\" yOffset=\"-480\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehS_troke-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehStroke-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_stroke\" xOffset=\"-125\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_stroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehS_troke-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehStroke-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075B\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_stroke\" xOffset=\"-2\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_stroke</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=reh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"20\" yOffset=\"173\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0697\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"130\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodotshorizontalaboveTahabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_twodotstah\" xOffset=\"20\" yOffset=\"188\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>reh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodotshorizontalaboveTahabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0771\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_twodotstah\" xOffset=\"130\" yOffset=\"168\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>reh-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodotsverticalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodotsverticalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"20\" yOffset=\"143\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076B\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"130\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehV_below-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehVbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"352\" y=\"-838\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_vbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-188\" yOffset=\"-458\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehV_below-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehVbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0695\"/>\n  <anchor x=\"492\" y=\"-838\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_vbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-55\" yOffset=\"-458\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehV_invertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehVinvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"20\" yOffset=\"173\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehV_invertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehVinvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06EF\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"130\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehv-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehv-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"20\" yOffset=\"173\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rehv-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehv-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0692\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"130\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/replacementC_haracter.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"replacementCharacter\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FFFD\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1160\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"40\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"355\"/>\n      <point x=\"521\" y=\"390\"/>\n      <point x=\"521\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"479\"/>\n      <point x=\"556\" y=\"514\"/>\n      <point x=\"600\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"514\"/>\n      <point x=\"680\" y=\"479\"/>\n      <point x=\"680\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"390\"/>\n      <point x=\"645\" y=\"355\"/>\n    </contour>\n    <contour>\n      <point x=\"544\" y=\"575\" type=\"line\"/>\n      <point x=\"544\" y=\"606\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"663\"/>\n      <point x=\"561\" y=\"706\"/>\n      <point x=\"610\" y=\"748\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"779\"/>\n      <point x=\"666\" y=\"792\"/>\n      <point x=\"666\" y=\"816\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"847\"/>\n      <point x=\"647\" y=\"861\"/>\n      <point x=\"604\" y=\"861\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"861\"/>\n      <point x=\"503\" y=\"847\"/>\n      <point x=\"450\" y=\"817\" type=\"curve\"/>\n      <point x=\"402\" y=\"917\" type=\"line\"/>\n      <point x=\"456\" y=\"955\"/>\n      <point x=\"520\" y=\"973\"/>\n      <point x=\"606\" y=\"973\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"973\"/>\n      <point x=\"788\" y=\"927\"/>\n      <point x=\"788\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"775\"/>\n      <point x=\"768\" y=\"741\"/>\n      <point x=\"728\" y=\"709\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"660\"/>\n      <point x=\"659\" y=\"631\"/>\n      <point x=\"659\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/resh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"resh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E8\"/>\n  <anchor x=\"402\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"969\" y=\"707\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"1079\"/>\n      <point x=\"856\" y=\"1200\"/>\n      <point x=\"464\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"220\" y=\"1200\"/>\n      <point x=\"138\" y=\"1234\"/>\n      <point x=\"108\" y=\"1253\" type=\"curve\"/>\n      <point x=\"18\" y=\"1018\" type=\"line\"/>\n      <point x=\"84\" y=\"970\"/>\n      <point x=\"181\" y=\"930\"/>\n      <point x=\"294\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"427\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"930\"/>\n      <point x=\"711\" y=\"874\"/>\n      <point x=\"711\" y=\"584\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"0\" type=\"line\"/>\n      <point x=\"969\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/reshdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"reshdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB48\"/>\n  <outline>\n    <component base=\"resh-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-198\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/returnsymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"returnsymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"23CE\"/>\n  <outline>\n    <contour>\n      <point x=\"923\" y=\"328\" type=\"line\"/>\n      <point x=\"1165\" y=\"328\" type=\"line\"/>\n      <point x=\"1165\" y=\"1167\" type=\"line\"/>\n      <point x=\"923\" y=\"1167\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"917\" type=\"line\"/>\n      <point x=\"1100\" y=\"1167\" type=\"line\"/>\n      <point x=\"774\" y=\"1167\" type=\"line\"/>\n      <point x=\"774\" y=\"917\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"326\" type=\"line\"/>\n      <point x=\"1050\" y=\"576\" type=\"line\"/>\n      <point x=\"203\" y=\"576\" type=\"line\"/>\n      <point x=\"203\" y=\"326\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"504\" y=\"-110\" type=\"line\"/>\n      <point x=\"684\" y=\"45\" type=\"line\"/>\n      <point x=\"298\" y=\"442\" type=\"line\"/>\n      <point x=\"298\" y=\"460\" type=\"line\"/>\n      <point x=\"684\" y=\"857\" type=\"line\"/>\n      <point x=\"504\" y=\"1012\" type=\"line\"/>\n      <point x=\"14\" y=\"512\" type=\"line\"/>\n      <point x=\"14\" y=\"390\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/reversedR_otatedF_loralH_eartB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"reversedRotatedFloralHeartBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2619\"/>\n  <outline>\n    <contour>\n      <point x=\"1003\" y=\"446\" type=\"curve\"/>\n      <point x=\"1200\" y=\"573\" type=\"line\"/>\n      <point x=\"1114\" y=\"756\"/>\n      <point x=\"963\" y=\"870\"/>\n      <point x=\"710\" y=\"952\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"1021\"/>\n      <point x=\"366\" y=\"1113\"/>\n      <point x=\"295\" y=\"1267\" type=\"curve\"/>\n      <point x=\"98\" y=\"1160\" type=\"line\"/>\n      <point x=\"173\" y=\"978\"/>\n      <point x=\"326\" y=\"860\"/>\n      <point x=\"588\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"683\"/>\n      <point x=\"969\" y=\"583\"/>\n    </contour>\n    <contour>\n      <point x=\"412\" y=\"8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"8\"/>\n      <point x=\"895\" y=\"171\"/>\n      <point x=\"895\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"543\"/>\n      <point x=\"815\" y=\"625\"/>\n      <point x=\"694\" y=\"625\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"625\"/>\n      <point x=\"539\" y=\"533\"/>\n      <point x=\"496\" y=\"424\" type=\"curve\"/>\n      <point x=\"444\" y=\"438\" type=\"line\"/>\n      <point x=\"453\" y=\"467\"/>\n      <point x=\"489\" y=\"536\"/>\n      <point x=\"489\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"715\"/>\n      <point x=\"408\" y=\"786\"/>\n      <point x=\"286\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"786\"/>\n      <point x=\"87\" y=\"713\"/>\n      <point x=\"87\" y=\"587\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"87\" y=\"461\"/>\n      <point x=\"214\" y=\"449\"/>\n      <point x=\"214\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"214\" y=\"330\"/>\n      <point x=\"194\" y=\"313\"/>\n      <point x=\"165\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"144\" y=\"313\"/>\n      <point x=\"125\" y=\"324\"/>\n      <point x=\"86\" y=\"349\" type=\"curve\"/>\n      <point x=\"0\" y=\"153\" type=\"line\"/>\n      <point x=\"97\" y=\"61\"/>\n      <point x=\"216\" y=\"8\"/>\n    </contour>\n    <contour>\n      <point x=\"723\" y=\"831\" type=\"line\"/>\n      <point x=\"763\" y=\"977\"/>\n      <point x=\"824\" y=\"1049\"/>\n      <point x=\"910\" y=\"1049\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"967\" y=\"1049\"/>\n      <point x=\"1027\" y=\"1023\"/>\n      <point x=\"1073\" y=\"971\" type=\"curve\"/>\n      <point x=\"1194\" y=\"1140\" type=\"line\"/>\n      <point x=\"1125\" y=\"1228\"/>\n      <point x=\"1024\" y=\"1272\"/>\n      <point x=\"906\" y=\"1272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"1272\"/>\n      <point x=\"602\" y=\"1148\"/>\n      <point x=\"510\" y=\"899\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rho.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rho\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C1\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"636\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"720\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"-20\"/>\n      <point x=\"1121\" y=\"172\"/>\n      <point x=\"1121\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"894\"/>\n      <point x=\"960\" y=\"1080\"/>\n      <point x=\"636\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"327\" y=\"1080\"/>\n      <point x=\"151\" y=\"898\"/>\n      <point x=\"151\" y=\"580\" type=\"curve\"/>\n      <point x=\"422\" y=\"571\" type=\"line\"/>\n      <point x=\"422\" y=\"732\"/>\n      <point x=\"496\" y=\"825\"/>\n      <point x=\"628\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"771\" y=\"825\"/>\n      <point x=\"844\" y=\"724\"/>\n      <point x=\"844\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"331\"/>\n      <point x=\"768\" y=\"235\"/>\n      <point x=\"623\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"235\"/>\n      <point x=\"422\" y=\"307\"/>\n      <point x=\"422\" y=\"481\" type=\"curve\"/>\n      <point x=\"337\" y=\"194\" type=\"line\"/>\n      <point x=\"445\" y=\"194\" type=\"line\"/>\n      <point x=\"462\" y=\"52\"/>\n      <point x=\"564\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"-460\" type=\"line\"/>\n      <point x=\"422\" y=\"-460\" type=\"line\"/>\n      <point x=\"422\" y=\"580\" type=\"line\"/>\n      <point x=\"151\" y=\"580\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7F\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n      <point x=\"1050\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n      <point x=\"1050\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndUpperOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndUpperOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2192\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"584\" type=\"line\"/>\n      <point x=\"947\" y=\"584\" type=\"line\"/>\n      <point x=\"947\" y=\"834\" type=\"line\"/>\n      <point x=\"100\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"646\" y=\"148\" type=\"line\"/>\n      <point x=\"1136\" y=\"648\" type=\"line\"/>\n      <point x=\"1136\" y=\"770\" type=\"line\"/>\n      <point x=\"646\" y=\"1270\" type=\"line\"/>\n      <point x=\"466\" y=\"1115\" type=\"line\"/>\n      <point x=\"852\" y=\"718\" type=\"line\"/>\n      <point x=\"852\" y=\"700\" type=\"line\"/>\n      <point x=\"466\" y=\"303\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightB_lackP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlackPointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BA\"/>\n  <note>\ntriagrt\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"350\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1070\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B8\"/>\n  <note>\nuni25B8\n</note>\n  <outline>\n    <contour>\n      <point x=\"195\" y=\"241\" type=\"line\"/>\n      <point x=\"992\" y=\"710\" type=\"line\"/>\n      <point x=\"195\" y=\"1179\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B6\"/>\n  <note>\nuni25B6\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"110\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2590\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB89\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D7\"/>\n  <note>\nuni25D7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"line\"/>\n      <point x=\"915\" y=\"185\"/>\n      <point x=\"1125\" y=\"395\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1025\"/>\n      <point x=\"915\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B17\"/>\n  <note>\nuni2B17\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E8\"/>\n  <note>\nuni25E8\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"235\" type=\"line\"/>\n      <point x=\"1085\" y=\"235\" type=\"line\"/>\n      <point x=\"1085\" y=\"1185\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D1\"/>\n  <note>\nuni25D1\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"291\" type=\"line\"/>\n      <point x=\"851\" y=\"291\" type=\"line\"/>\n      <point x=\"1058\" y=\"704\" type=\"line\"/>\n      <point x=\"898\" y=\"1125\" type=\"line\"/>\n      <point x=\"600\" y=\"1125\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2595\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB87\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB8B\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB88\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB8A\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightW_hiteP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightWhitePointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BB\"/>\n  <note>\nuni25BB\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"350\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1070\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"320\" y=\"481\" type=\"line\"/>\n      <point x=\"320\" y=\"939\" type=\"line\"/>\n      <point x=\"192\" y=\"849\" type=\"line\"/>\n      <point x=\"847\" y=\"635\" type=\"line\"/>\n      <point x=\"847\" y=\"785\" type=\"line\"/>\n      <point x=\"192\" y=\"571\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B9\"/>\n  <note>\nuni25B9\n</note>\n  <outline>\n    <contour>\n      <point x=\"195\" y=\"241\" type=\"line\"/>\n      <point x=\"992\" y=\"710\" type=\"line\"/>\n      <point x=\"195\" y=\"1179\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"387\" y=\"422\" type=\"line\"/>\n      <point x=\"387\" y=\"998\" type=\"line\"/>\n      <point x=\"275\" y=\"916\" type=\"line\"/>\n      <point x=\"766\" y=\"627\" type=\"line\"/>\n      <point x=\"766\" y=\"793\" type=\"line\"/>\n      <point x=\"275\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rightW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B7\"/>\n  <note>\nuni25B7\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"110\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"320\" y=\"253\" type=\"line\"/>\n      <point x=\"320\" y=\"1164\" type=\"line\"/>\n      <point x=\"128\" y=\"1055\" type=\"line\"/>\n      <point x=\"888\" y=\"610\" type=\"line\"/>\n      <point x=\"887\" y=\"812\" type=\"line\"/>\n      <point x=\"124\" y=\"363\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DA\"/>\n  <outline>\n    <component base=\"ringcomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>ringcomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ringA_rabic.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringArabic\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-47\" name=\"_bottom\"/>\n  <anchor x=\"601\" y=\"85\" name=\"_bottom.dot\"/>\n  <anchor x=\"831\" y=\"58\" name=\"_center\"/>\n  <anchor x=\"601\" y=\"-209\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_ringArabic\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ringbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringbelowcomb\" format=\"2\">\n  <unicode hex=\"0325\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <component base=\"ringcomb\" yOffset=\"-1690\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ringcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringcomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"1480\"/>\n      <point x=\"888\" y=\"1558\"/>\n      <point x=\"888\" y=\"1694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"1830\"/>\n      <point x=\"783\" y=\"1908\"/>\n      <point x=\"600\" y=\"1908\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"1908\"/>\n      <point x=\"312\" y=\"1830\"/>\n      <point x=\"312\" y=\"1694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"312\" y=\"1558\"/>\n      <point x=\"417\" y=\"1480\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"1629\"/>\n      <point x=\"521\" y=\"1652\"/>\n      <point x=\"521\" y=\"1694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"1736\"/>\n      <point x=\"549\" y=\"1760\"/>\n      <point x=\"600\" y=\"1760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"1760\"/>\n      <point x=\"679\" y=\"1736\"/>\n      <point x=\"679\" y=\"1694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"1652\"/>\n      <point x=\"651\" y=\"1629\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ringcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringcomb\" format=\"2\">\n  <unicode hex=\"030A\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"1190\"/>\n      <point x=\"880\" y=\"1272\"/>\n      <point x=\"880\" y=\"1414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"1556\"/>\n      <point x=\"778\" y=\"1638\"/>\n      <point x=\"600\" y=\"1638\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"1638\"/>\n      <point x=\"320\" y=\"1556\"/>\n      <point x=\"320\" y=\"1414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"1272\"/>\n      <point x=\"422\" y=\"1190\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1339\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"554\" y=\"1339\"/>\n      <point x=\"529\" y=\"1366\"/>\n      <point x=\"529\" y=\"1414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"1461\"/>\n      <point x=\"554\" y=\"1489\"/>\n      <point x=\"600\" y=\"1489\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"1489\"/>\n      <point x=\"671\" y=\"1461\"/>\n      <point x=\"671\" y=\"1414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1366\"/>\n      <point x=\"646\" y=\"1339\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"-3\" yOffset=\"138\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BB\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"39\" yOffset=\"142\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"tteh-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tteh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tteh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rotatedF_loralH_eartB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rotatedFloralHeartBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2767\"/>\n  <outline>\n    <contour>\n      <point x=\"197\" y=\"446\" type=\"line\"/>\n      <point x=\"231\" y=\"583\"/>\n      <point x=\"361\" y=\"683\"/>\n      <point x=\"612\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"860\"/>\n      <point x=\"1027\" y=\"978\"/>\n      <point x=\"1102\" y=\"1160\" type=\"curve\"/>\n      <point x=\"905\" y=\"1267\" type=\"line\"/>\n      <point x=\"834\" y=\"1113\"/>\n      <point x=\"703\" y=\"1021\"/>\n      <point x=\"490\" y=\"952\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"870\"/>\n      <point x=\"86\" y=\"756\"/>\n      <point x=\"0\" y=\"573\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"788\" y=\"8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"8\"/>\n      <point x=\"1103\" y=\"61\"/>\n      <point x=\"1200\" y=\"153\" type=\"curve\"/>\n      <point x=\"1114\" y=\"349\" type=\"line\"/>\n      <point x=\"1076\" y=\"324\"/>\n      <point x=\"1056\" y=\"313\"/>\n      <point x=\"1035\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"313\"/>\n      <point x=\"986\" y=\"330\"/>\n      <point x=\"986\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"986\" y=\"449\"/>\n      <point x=\"1113\" y=\"461\"/>\n      <point x=\"1113\" y=\"587\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1113\" y=\"713\"/>\n      <point x=\"1040\" y=\"786\"/>\n      <point x=\"914\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"786\"/>\n      <point x=\"711\" y=\"715\"/>\n      <point x=\"711\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"536\"/>\n      <point x=\"747\" y=\"467\"/>\n      <point x=\"756\" y=\"438\" type=\"curve\"/>\n      <point x=\"704\" y=\"424\" type=\"line\"/>\n      <point x=\"661\" y=\"533\"/>\n      <point x=\"628\" y=\"625\"/>\n      <point x=\"506\" y=\"625\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"625\"/>\n      <point x=\"305\" y=\"543\"/>\n      <point x=\"305\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"171\"/>\n      <point x=\"497\" y=\"8\"/>\n    </contour>\n    <contour>\n      <point x=\"477\" y=\"831\" type=\"curve\"/>\n      <point x=\"690\" y=\"899\" type=\"line\"/>\n      <point x=\"598\" y=\"1148\"/>\n      <point x=\"469\" y=\"1272\"/>\n      <point x=\"294\" y=\"1272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"176\" y=\"1272\"/>\n      <point x=\"75\" y=\"1228\"/>\n      <point x=\"6\" y=\"1140\" type=\"curve\"/>\n      <point x=\"127\" y=\"971\" type=\"line\"/>\n      <point x=\"173\" y=\"1023\"/>\n      <point x=\"233\" y=\"1049\"/>\n      <point x=\"290\" y=\"1049\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"376\" y=\"1049\"/>\n      <point x=\"437\" y=\"977\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rreh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rreh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"52\" yOffset=\"294\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rreh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rreh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0691\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"162\" yOffset=\"274\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ruble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ruble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BD\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"111\" type=\"line\"/>\n      <point x=\"788\" y=\"111\" type=\"line\"/>\n      <point x=\"788\" y=\"316\" type=\"line\"/>\n      <point x=\"0\" y=\"316\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"407\" type=\"line\"/>\n      <point x=\"437\" y=\"407\" type=\"line\"/>\n      <point x=\"437\" y=\"647\" type=\"line\"/>\n      <point x=\"0\" y=\"647\" type=\"line\"/>\n    </contour>\n    <component base=\"P\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>P</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rupee.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rupee\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A8\"/>\n  <outline>\n    <contour>\n      <point x=\"878\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"-20\"/>\n      <point x=\"1191\" y=\"72\"/>\n      <point x=\"1191\" y=\"259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1191\" y=\"353\"/>\n      <point x=\"1138\" y=\"471\"/>\n      <point x=\"1068\" y=\"571\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"996\" y=\"672\"/>\n      <point x=\"950\" y=\"725\"/>\n      <point x=\"950\" y=\"765\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"805\"/>\n      <point x=\"976\" y=\"823\"/>\n      <point x=\"1025\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"823\"/>\n      <point x=\"1080\" y=\"818\"/>\n      <point x=\"1121\" y=\"809\" type=\"curve\"/>\n      <point x=\"1143\" y=\"1060\" type=\"line\"/>\n      <point x=\"1088\" y=\"1073\"/>\n      <point x=\"1027\" y=\"1080\"/>\n      <point x=\"956\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"1080\"/>\n      <point x=\"692\" y=\"992\"/>\n      <point x=\"692\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"697\"/>\n      <point x=\"728\" y=\"611\"/>\n      <point x=\"813\" y=\"494\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"394\"/>\n      <point x=\"932\" y=\"332\"/>\n      <point x=\"932\" y=\"295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"932\" y=\"256\"/>\n      <point x=\"906\" y=\"237\"/>\n      <point x=\"853\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"237\"/>\n      <point x=\"774\" y=\"246\"/>\n      <point x=\"700\" y=\"263\" type=\"curve\"/>\n      <point x=\"676\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"-13\"/>\n      <point x=\"798\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"412\" y=\"0\" type=\"line\"/>\n      <point x=\"657\" y=\"0\" type=\"line\"/>\n      <point x=\"557\" y=\"668\" type=\"line\"/>\n      <point x=\"332\" y=\"668\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"63\" y=\"0\" type=\"line\"/>\n      <point x=\"315\" y=\"0\" type=\"line\"/>\n      <point x=\"315\" y=\"1420\" type=\"line\"/>\n      <point x=\"63\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"259\" y=\"507\" type=\"line\"/>\n      <point x=\"341\" y=\"507\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"507\"/>\n      <point x=\"673\" y=\"683\"/>\n      <point x=\"673\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"1264\"/>\n      <point x=\"556\" y=\"1420\"/>\n      <point x=\"341\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"239\" y=\"1420\" type=\"line\"/>\n      <point x=\"239\" y=\"1179\" type=\"line\"/>\n      <point x=\"341\" y=\"1179\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"415\" y=\"1179\"/>\n      <point x=\"453\" y=\"1104\"/>\n      <point x=\"453\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"829\"/>\n      <point x=\"415\" y=\"747\"/>\n      <point x=\"341\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"259\" y=\"747\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/rupeeI_ndian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rupeeIndian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B9\"/>\n  <outline>\n    <contour>\n      <point x=\"115\" y=\"481\" type=\"line\"/>\n      <point x=\"476\" y=\"481\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"481\"/>\n      <point x=\"955\" y=\"640\"/>\n      <point x=\"955\" y=\"917\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"955\" y=\"1047\"/>\n      <point x=\"886\" y=\"1131\"/>\n      <point x=\"766\" y=\"1148\" type=\"curve\"/>\n      <point x=\"766\" y=\"1215\" type=\"line\"/>\n      <point x=\"115\" y=\"1177\" type=\"line\"/>\n      <point x=\"476\" y=\"1177\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"1177\"/>\n      <point x=\"678\" y=\"1096\"/>\n      <point x=\"678\" y=\"953\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"806\"/>\n      <point x=\"603\" y=\"724\"/>\n      <point x=\"476\" y=\"724\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"115\" y=\"724\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"720\" y=\"0\" type=\"line\"/>\n      <point x=\"1027\" y=\"0\" type=\"line\"/>\n      <point x=\"649\" y=\"668\" type=\"line\"/>\n      <point x=\"362\" y=\"668\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"834\" type=\"line\"/>\n      <point x=\"1085\" y=\"834\" type=\"line\"/>\n      <point x=\"1085\" y=\"1068\" type=\"line\"/>\n      <point x=\"115\" y=\"1068\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"1177\" type=\"line\"/>\n      <point x=\"1077\" y=\"1177\" type=\"line\"/>\n      <point x=\"1077\" y=\"1420\" type=\"line\"/>\n      <point x=\"115\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/s.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"s\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0073\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"630\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"518\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"-20\"/>\n      <point x=\"1061\" y=\"89\"/>\n      <point x=\"1061\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"464\"/>\n      <point x=\"971\" y=\"555\"/>\n      <point x=\"789\" y=\"605\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"687\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"699\"/>\n      <point x=\"432\" y=\"714\"/>\n      <point x=\"432\" y=\"748\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"801\"/>\n      <point x=\"521\" y=\"823\"/>\n      <point x=\"730\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"823\"/>\n      <point x=\"882\" y=\"819\"/>\n      <point x=\"1004\" y=\"809\" type=\"curve\"/>\n      <point x=\"1033\" y=\"1060\" type=\"line\"/>\n      <point x=\"924\" y=\"1073\"/>\n      <point x=\"826\" y=\"1080\"/>\n      <point x=\"736\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"345\" y=\"1080\"/>\n      <point x=\"155\" y=\"970\"/>\n      <point x=\"155\" y=\"742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"155\" y=\"599\"/>\n      <point x=\"226\" y=\"518\"/>\n      <point x=\"368\" y=\"477\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"377\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"364\"/>\n      <point x=\"776\" y=\"347\"/>\n      <point x=\"776\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"260\"/>\n      <point x=\"699\" y=\"237\"/>\n      <point x=\"518\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"237\"/>\n      <point x=\"339\" y=\"248\"/>\n      <point x=\"171\" y=\"269\" type=\"curve\"/>\n      <point x=\"139\" y=\"10\" type=\"line\"/>\n      <point x=\"233\" y=\"-10\"/>\n      <point x=\"356\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015B\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"acutecomb\" xOffset=\"91\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"482\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"482\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"-290\" y=\"1075\" name=\"top\"/>\n  <anchor x=\"620\" y=\"915\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-378\" y=\"-383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-109\" y=\"-383\"/>\n      <point x=\"136\" y=\"-297\"/>\n      <point x=\"136\" y=\"136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"246\"/>\n      <point x=\"133\" y=\"373\"/>\n      <point x=\"113\" y=\"575\" type=\"curve\"/>\n      <point x=\"-119\" y=\"564\" type=\"line\"/>\n      <point x=\"-106\" y=\"404\"/>\n      <point x=\"-101\" y=\"232\"/>\n      <point x=\"-101\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-101\" y=\"-56\"/>\n      <point x=\"-143\" y=\"-98\"/>\n      <point x=\"-357\" y=\"-98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-625\" y=\"-98\"/>\n      <point x=\"-667\" y=\"-50\"/>\n      <point x=\"-667\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-667\" y=\"226\"/>\n      <point x=\"-651\" y=\"356\"/>\n      <point x=\"-625\" y=\"495\" type=\"curve\"/>\n      <point x=\"-856\" y=\"495\" type=\"line\"/>\n      <point x=\"-894\" y=\"353\"/>\n      <point x=\"-914\" y=\"179\"/>\n      <point x=\"-914\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-914\" y=\"-268\"/>\n      <point x=\"-754\" y=\"-383\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-10\"/>\n      <point x=\"1078\" y=\"128\"/>\n      <point x=\"1078\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1078\" y=\"664\"/>\n      <point x=\"916\" y=\"888\"/>\n      <point x=\"723\" y=\"888\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"565\" y=\"888\"/>\n      <point x=\"377\" y=\"698\"/>\n      <point x=\"150\" y=\"235\" type=\"curve\"/>\n      <point x=\"359\" y=\"152\" type=\"line\"/>\n      <point x=\"483\" y=\"433\"/>\n      <point x=\"608\" y=\"602\"/>\n      <point x=\"684\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"602\"/>\n      <point x=\"823\" y=\"496\"/>\n      <point x=\"823\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"318\"/>\n      <point x=\"792\" y=\"285\"/>\n      <point x=\"527\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"285\"/>\n      <point x=\"191\" y=\"295\"/>\n      <point x=\"112\" y=\"306\" type=\"curve\"/>\n      <point x=\"73\" y=\"22\" type=\"line\"/>\n      <point x=\"196\" y=\"-2\"/>\n      <point x=\"333\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1056\" y=\"285\"/>\n      <point x=\"940\" y=\"287\"/>\n      <point x=\"862\" y=\"295\" type=\"curve\"/>\n      <point x=\"786\" y=\"76\" type=\"line\"/>\n      <point x=\"962\" y=\"72\" type=\"line\"/>\n      <point x=\"995\" y=\"18\"/>\n      <point x=\"1041\" y=\"-10\"/>\n    </contour>\n    <component base=\"sad-ar.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"822\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"822\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"540\" y=\"1075\" name=\"top\"/>\n  <anchor x=\"880\" y=\"915\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1261\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1134\" y=\"285\"/>\n      <point x=\"1101\" y=\"286\"/>\n      <point x=\"1061\" y=\"289\" type=\"curve\"/>\n      <point x=\"1022\" y=\"74\" type=\"line\"/>\n      <point x=\"1109\" y=\"72\" type=\"line\"/>\n      <point x=\"1122\" y=\"18\"/>\n      <point x=\"1141\" y=\"-10\"/>\n    </contour>\n    <component base=\"sad-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0635\"/>\n  <anchor x=\"822\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"822\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"540\" y=\"1075\" name=\"top\"/>\n  <anchor x=\"880\" y=\"915\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"806\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"-6\"/>\n      <point x=\"1196\" y=\"78\"/>\n      <point x=\"1196\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1196\" y=\"674\"/>\n      <point x=\"1088\" y=\"888\"/>\n      <point x=\"945\" y=\"888\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"888\"/>\n      <point x=\"693\" y=\"708\"/>\n      <point x=\"536\" y=\"235\" type=\"curve\"/>\n      <point x=\"702\" y=\"152\" type=\"line\"/>\n      <point x=\"796\" y=\"453\"/>\n      <point x=\"868\" y=\"602\"/>\n      <point x=\"916\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"602\"/>\n      <point x=\"989\" y=\"506\"/>\n      <point x=\"989\" y=\"408\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"989\" y=\"308\"/>\n      <point x=\"962\" y=\"285\"/>\n      <point x=\"867\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"285\"/>\n      <point x=\"601\" y=\"295\"/>\n      <point x=\"522\" y=\"306\" type=\"curve\"/>\n      <point x=\"483\" y=\"22\" type=\"line\"/>\n      <point x=\"606\" y=\"-2\"/>\n      <point x=\"673\" y=\"-12\"/>\n    </contour>\n    <contour>\n      <point x=\"270\" y=\"-383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"439\" y=\"-383\"/>\n      <point x=\"546\" y=\"-277\"/>\n      <point x=\"546\" y=\"136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"246\"/>\n      <point x=\"543\" y=\"333\"/>\n      <point x=\"523\" y=\"535\" type=\"curve\"/>\n      <point x=\"339\" y=\"524\" type=\"line\"/>\n      <point x=\"352\" y=\"364\"/>\n      <point x=\"357\" y=\"242\"/>\n      <point x=\"357\" y=\"136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"-56\"/>\n      <point x=\"335\" y=\"-98\"/>\n      <point x=\"276\" y=\"-98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"-98\"/>\n      <point x=\"201\" y=\"-70\"/>\n      <point x=\"201\" y=\"114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"201\" y=\"206\"/>\n      <point x=\"204\" y=\"323\"/>\n      <point x=\"215\" y=\"452\" type=\"curve\"/>\n      <point x=\"34\" y=\"452\" type=\"line\"/>\n      <point x=\"16\" y=\"320\"/>\n      <point x=\"4\" y=\"179\"/>\n      <point x=\"4\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"4\" y=\"-268\"/>\n      <point x=\"104\" y=\"-383\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"652\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"652\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"779\" y=\"1165\" name=\"top\"/>\n  <anchor x=\"780\" y=\"905\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1047\" y=\"-10\"/>\n      <point x=\"1158\" y=\"128\"/>\n      <point x=\"1158\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1158\" y=\"664\"/>\n      <point x=\"996\" y=\"888\"/>\n      <point x=\"803\" y=\"888\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"888\"/>\n      <point x=\"457\" y=\"698\"/>\n      <point x=\"230\" y=\"235\" type=\"curve\"/>\n      <point x=\"439\" y=\"152\" type=\"line\"/>\n      <point x=\"563\" y=\"433\"/>\n      <point x=\"688\" y=\"602\"/>\n      <point x=\"764\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"602\"/>\n      <point x=\"903\" y=\"496\"/>\n      <point x=\"903\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"318\"/>\n      <point x=\"872\" y=\"285\"/>\n      <point x=\"607\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"285\"/>\n      <point x=\"261\" y=\"292\"/>\n      <point x=\"178\" y=\"301\" type=\"curve\"/>\n      <point x=\"140\" y=\"95\" type=\"line\"/>\n      <point x=\"210\" y=\"95\" type=\"line\"/>\n      <point x=\"257\" y=\"18\"/>\n      <point x=\"332\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"-18\" y=\"-10\" type=\"line\"/>\n      <point x=\"182\" y=\"-10\"/>\n      <point x=\"241\" y=\"124\"/>\n      <point x=\"246\" y=\"509\" type=\"curve\"/>\n      <point x=\"80\" y=\"508\" type=\"line\"/>\n      <point x=\"69\" y=\"298\"/>\n      <point x=\"66\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1126\" y=\"285\"/>\n      <point x=\"1072\" y=\"286\"/>\n      <point x=\"1000\" y=\"291\" type=\"curve\"/>\n      <point x=\"935\" y=\"75\" type=\"line\"/>\n      <point x=\"1046\" y=\"72\" type=\"line\"/>\n      <point x=\"1079\" y=\"8\"/>\n      <point x=\"1111\" y=\"-10\"/>\n    </contour>\n    <component base=\"sad-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"20\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"20\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"280\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069E\"/>\n  <outline>\n    <component base=\"sad-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"280\" yOffset=\"373\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"180\" yOffset=\"363\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"180\" yOffset=\"363\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-118\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-118\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"220\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AF\"/>\n  <outline>\n    <component base=\"sad-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"220\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"50\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"50\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"959\" y=\"569\" angle=\"0\"/>\n  <outline>\n    <component base=\"sad-ar.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-120\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"1149\" y=\"569\" angle=\"0\"/>\n  <outline>\n    <component base=\"sad-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-120\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"1149\" y=\"569\" angle=\"0\"/>\n  <outline>\n    <component base=\"sad-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069D\"/>\n  <guideline x=\"959\" y=\"569\" angle=\"0\"/>\n  <outline>\n    <component base=\"sad-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/samekh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"samekh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E1\"/>\n  <anchor x=\"611\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"610\" y=\"-19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"-19\"/>\n      <point x=\"1054\" y=\"187\"/>\n      <point x=\"1054\" y=\"527\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1054\" y=\"799\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1054\" y=\"1063\"/>\n      <point x=\"914\" y=\"1200\"/>\n      <point x=\"623\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"350\" y=\"1200\"/>\n      <point x=\"268\" y=\"1234\"/>\n      <point x=\"238\" y=\"1253\" type=\"curve\"/>\n      <point x=\"148\" y=\"1018\" type=\"line\"/>\n      <point x=\"197\" y=\"983\"/>\n      <point x=\"262\" y=\"951\"/>\n      <point x=\"338\" y=\"937\" type=\"curve\"/>\n      <point x=\"338\" y=\"922\" type=\"line\"/>\n      <point x=\"248\" y=\"892\"/>\n      <point x=\"183\" y=\"796\"/>\n      <point x=\"183\" y=\"646\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"172\"/>\n      <point x=\"306\" y=\"-19\"/>\n    </contour>\n    <contour>\n      <point x=\"610\" y=\"250\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"250\"/>\n      <point x=\"442\" y=\"403\"/>\n      <point x=\"442\" y=\"512\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"753\"/>\n      <point x=\"452\" y=\"930\"/>\n      <point x=\"600\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"610\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"930\"/>\n      <point x=\"796\" y=\"880\"/>\n      <point x=\"796\" y=\"680\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"512\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"403\"/>\n      <point x=\"738\" y=\"250\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/samekhdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"samekhdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB41\"/>\n  <outline>\n    <component base=\"samekh-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"11\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/samvat-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"samvat-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0604\"/>\n  <outline>\n    <contour>\n      <point x=\"564\" y=\"-10\" type=\"curve\"/>\n      <point x=\"564\" y=\"199\" type=\"line\"/>\n      <point x=\"473\" y=\"202\"/>\n      <point x=\"456\" y=\"210\"/>\n      <point x=\"456\" y=\"254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"284\"/>\n      <point x=\"473\" y=\"307\"/>\n      <point x=\"507\" y=\"307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"307\"/>\n      <point x=\"567\" y=\"281\"/>\n      <point x=\"589\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"117\"/>\n      <point x=\"681\" y=\"83\"/>\n      <point x=\"754\" y=\"83\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"807\" y=\"83\"/>\n      <point x=\"845\" y=\"101\"/>\n      <point x=\"869\" y=\"162\" type=\"curve\"/>\n      <point x=\"895\" y=\"162\" type=\"line\"/>\n      <point x=\"917\" y=\"186\"/>\n      <point x=\"931\" y=\"209\"/>\n      <point x=\"935\" y=\"250\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"316\"/>\n      <point x=\"942\" y=\"429\"/>\n      <point x=\"939\" y=\"506\" type=\"curve\"/>\n      <point x=\"798\" y=\"503\" type=\"line\"/>\n      <point x=\"798\" y=\"425\"/>\n      <point x=\"796\" y=\"376\"/>\n      <point x=\"793\" y=\"339\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"303\"/>\n      <point x=\"782\" y=\"289\"/>\n      <point x=\"757\" y=\"289\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"289\"/>\n      <point x=\"720\" y=\"314\"/>\n      <point x=\"696\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"465\"/>\n      <point x=\"602\" y=\"508\"/>\n      <point x=\"514\" y=\"508\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"508\"/>\n      <point x=\"324\" y=\"437\"/>\n      <point x=\"324\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"260\"/>\n      <point x=\"352\" y=\"222\"/>\n      <point x=\"391\" y=\"209\" type=\"curve\"/>\n      <point x=\"391\" y=\"181\" type=\"line\"/>\n      <point x=\"419\" y=\"152\" type=\"line\"/>\n      <point x=\"435\" y=\"197\" type=\"line\"/>\n      <point x=\"341\" y=\"199\"/>\n      <point x=\"180\" y=\"200\"/>\n      <point x=\"23\" y=\"200\" type=\"curve\"/>\n      <point x=\"23\" y=\"-8\" type=\"line\"/>\n      <point x=\"184\" y=\"-9\"/>\n      <point x=\"412\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"997\" y=\"83\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"83\"/>\n      <point x=\"1161\" y=\"198\"/>\n      <point x=\"1161\" y=\"307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1161\" y=\"368\"/>\n      <point x=\"1157\" y=\"446\"/>\n      <point x=\"1144\" y=\"530\" type=\"curve\"/>\n      <point x=\"1002\" y=\"517\" type=\"line\"/>\n      <point x=\"1010\" y=\"445\"/>\n      <point x=\"1014\" y=\"402\"/>\n      <point x=\"1014\" y=\"359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"304\"/>\n      <point x=\"1008\" y=\"289\"/>\n      <point x=\"974\" y=\"289\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"945\" y=\"289\"/>\n      <point x=\"929\" y=\"296\"/>\n      <point x=\"899\" y=\"305\" type=\"curve\"/>\n      <point x=\"877\" y=\"176\" type=\"line\"/>\n      <point x=\"898\" y=\"107\"/>\n      <point x=\"941\" y=\"83\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/scaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0161\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"caroncomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/scedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015F\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"cedillacomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/schwa-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"schwa-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04D9\"/>\n  <outline>\n    <component base=\"schwa\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/schwa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"schwa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0259\"/>\n  <anchor x=\"594\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"594\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"-20\"/>\n      <point x=\"1081\" y=\"182\"/>\n      <point x=\"1081\" y=\"528\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"884\"/>\n      <point x=\"873\" y=\"1080\"/>\n      <point x=\"506\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"1080\"/>\n      <point x=\"307\" y=\"1076\"/>\n      <point x=\"171\" y=\"1049\" type=\"curve\"/>\n      <point x=\"197\" y=\"794\" type=\"line\"/>\n      <point x=\"294\" y=\"813\"/>\n      <point x=\"386\" y=\"824\"/>\n      <point x=\"482\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"695\" y=\"824\"/>\n      <point x=\"815\" y=\"718\"/>\n      <point x=\"815\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"333\"/>\n      <point x=\"733\" y=\"228\"/>\n      <point x=\"592\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"228\"/>\n      <point x=\"385\" y=\"306\"/>\n      <point x=\"385\" y=\"449\" type=\"curve\"/>\n      <point x=\"903\" y=\"449\" type=\"line\"/>\n      <point x=\"903\" y=\"637\" type=\"line\"/>\n      <point x=\"125\" y=\"637\" type=\"line\"/>\n      <point x=\"121\" y=\"595\"/>\n      <point x=\"119\" y=\"551\"/>\n      <point x=\"119\" y=\"501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"162\"/>\n      <point x=\"293\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/scircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015D\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/scommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0219\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E63\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/second.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"second\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2033\"/>\n  <outline>\n    <contour>\n      <point x=\"605\" y=\"780\" type=\"line\"/>\n      <point x=\"836\" y=\"780\" type=\"line\"/>\n      <point x=\"1026\" y=\"1420\" type=\"line\"/>\n      <point x=\"724\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"205\" y=\"780\" type=\"line\"/>\n      <point x=\"436\" y=\"780\" type=\"line\"/>\n      <point x=\"626\" y=\"1420\" type=\"line\"/>\n      <point x=\"324\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/section.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"section\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A7\"/>\n  <outline>\n    <contour>\n      <point x=\"1148\" y=\"682\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1148\" y=\"876\"/>\n      <point x=\"1036\" y=\"989\"/>\n      <point x=\"809\" y=\"1057\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"1165\"/>\n      <point x=\"431\" y=\"1176\"/>\n      <point x=\"431\" y=\"1223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"1288\"/>\n      <point x=\"506\" y=\"1316\"/>\n      <point x=\"687\" y=\"1316\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"1316\"/>\n      <point x=\"853\" y=\"1312\"/>\n      <point x=\"968\" y=\"1302\" type=\"curve\"/>\n      <point x=\"990\" y=\"1548\" type=\"line\"/>\n      <point x=\"890\" y=\"1562\"/>\n      <point x=\"801\" y=\"1568\"/>\n      <point x=\"693\" y=\"1568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"1568\"/>\n      <point x=\"152\" y=\"1470\"/>\n      <point x=\"152\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"1088\"/>\n      <point x=\"220\" y=\"1033\"/>\n      <point x=\"464\" y=\"958\" type=\"curve\"/>\n      <point x=\"464\" y=\"927\" type=\"line\"/>\n      <point x=\"175\" y=\"928\"/>\n      <point x=\"52\" y=\"829\"/>\n      <point x=\"52\" y=\"633\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"52\" y=\"446\"/>\n      <point x=\"157\" y=\"339\"/>\n      <point x=\"373\" y=\"287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"210\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"195\"/>\n      <point x=\"769\" y=\"176\"/>\n      <point x=\"769\" y=\"127\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"769\" y=\"61\"/>\n      <point x=\"696\" y=\"33\"/>\n      <point x=\"525\" y=\"33\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"33\"/>\n      <point x=\"317\" y=\"43\"/>\n      <point x=\"170\" y=\"65\" type=\"curve\"/>\n      <point x=\"146\" y=\"-190\" type=\"line\"/>\n      <point x=\"245\" y=\"-212\"/>\n      <point x=\"358\" y=\"-220\"/>\n      <point x=\"525\" y=\"-220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"-220\"/>\n      <point x=\"1048\" y=\"-122\"/>\n      <point x=\"1048\" y=\"106\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"244\"/>\n      <point x=\"976\" y=\"311\"/>\n      <point x=\"822\" y=\"367\" type=\"curve\"/>\n      <point x=\"822\" y=\"403\" type=\"line\"/>\n      <point x=\"1050\" y=\"405\"/>\n      <point x=\"1148\" y=\"490\"/>\n    </contour>\n    <contour>\n      <point x=\"331\" y=\"668\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"780\"/>\n      <point x=\"412\" y=\"826\"/>\n      <point x=\"607\" y=\"826\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"826\"/>\n      <point x=\"869\" y=\"794\"/>\n      <point x=\"869\" y=\"670\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"565\"/>\n      <point x=\"796\" y=\"520\"/>\n      <point x=\"625\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"520\"/>\n      <point x=\"331\" y=\"550\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"422\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"422\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"401\" y=\"945\" name=\"top\"/>\n  <anchor x=\"401\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-378\" y=\"-383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-109\" y=\"-383\"/>\n      <point x=\"136\" y=\"-297\"/>\n      <point x=\"136\" y=\"136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"246\"/>\n      <point x=\"133\" y=\"403\"/>\n      <point x=\"113\" y=\"605\" type=\"curve\"/>\n      <point x=\"-119\" y=\"594\" type=\"line\"/>\n      <point x=\"-106\" y=\"434\"/>\n      <point x=\"-101\" y=\"232\"/>\n      <point x=\"-101\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-101\" y=\"-56\"/>\n      <point x=\"-143\" y=\"-98\"/>\n      <point x=\"-357\" y=\"-98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-625\" y=\"-98\"/>\n      <point x=\"-667\" y=\"-50\"/>\n      <point x=\"-667\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-667\" y=\"226\"/>\n      <point x=\"-651\" y=\"356\"/>\n      <point x=\"-625\" y=\"495\" type=\"curve\"/>\n      <point x=\"-856\" y=\"495\" type=\"line\"/>\n      <point x=\"-894\" y=\"353\"/>\n      <point x=\"-914\" y=\"179\"/>\n      <point x=\"-914\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-914\" y=\"-268\"/>\n      <point x=\"-754\" y=\"-383\"/>\n    </contour>\n    <contour>\n      <point x=\"195\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"-10\"/>\n      <point x=\"335\" y=\"16\"/>\n      <point x=\"370\" y=\"84\" type=\"curve\"/>\n      <point x=\"410\" y=\"84\" type=\"line\"/>\n      <point x=\"438\" y=\"128\"/>\n      <point x=\"485\" y=\"190\"/>\n      <point x=\"491\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"385\"/>\n      <point x=\"503\" y=\"503\"/>\n      <point x=\"503\" y=\"622\" type=\"curve\"/>\n      <point x=\"307\" y=\"618\" type=\"line\"/>\n      <point x=\"304\" y=\"531\"/>\n      <point x=\"301\" y=\"445\"/>\n      <point x=\"298\" y=\"358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"296\"/>\n      <point x=\"280\" y=\"275\"/>\n      <point x=\"229\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"275\"/>\n      <point x=\"119\" y=\"283\"/>\n      <point x=\"35\" y=\"332\" type=\"curve\"/>\n      <point x=\"-55\" y=\"120\" type=\"line\"/>\n      <point x=\"28\" y=\"23\"/>\n      <point x=\"78\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"603\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"-10\"/>\n      <point x=\"874\" y=\"93\"/>\n      <point x=\"874\" y=\"294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"408\"/>\n      <point x=\"857\" y=\"538\"/>\n      <point x=\"830\" y=\"673\" type=\"curve\"/>\n      <point x=\"615\" y=\"642\" type=\"line\"/>\n      <point x=\"633\" y=\"521\"/>\n      <point x=\"647\" y=\"430\"/>\n      <point x=\"647\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"300\"/>\n      <point x=\"622\" y=\"275\"/>\n      <point x=\"565\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"275\"/>\n      <point x=\"467\" y=\"297\"/>\n      <point x=\"402\" y=\"330\" type=\"curve\"/>\n      <point x=\"345\" y=\"143\" type=\"line\"/>\n      <point x=\"416\" y=\"37\"/>\n      <point x=\"488\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"422\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"422\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"401\" y=\"945\" name=\"top\"/>\n  <anchor x=\"401\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-378\" y=\"-383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-109\" y=\"-383\"/>\n      <point x=\"136\" y=\"-297\"/>\n      <point x=\"136\" y=\"136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"246\"/>\n      <point x=\"133\" y=\"403\"/>\n      <point x=\"113\" y=\"605\" type=\"curve\"/>\n      <point x=\"-119\" y=\"594\" type=\"line\"/>\n      <point x=\"-106\" y=\"434\"/>\n      <point x=\"-101\" y=\"232\"/>\n      <point x=\"-101\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-101\" y=\"-56\"/>\n      <point x=\"-143\" y=\"-98\"/>\n      <point x=\"-357\" y=\"-98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-625\" y=\"-98\"/>\n      <point x=\"-667\" y=\"-50\"/>\n      <point x=\"-667\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-667\" y=\"226\"/>\n      <point x=\"-654\" y=\"346\"/>\n      <point x=\"-628\" y=\"495\" type=\"curve\"/>\n      <point x=\"-856\" y=\"495\" type=\"line\"/>\n      <point x=\"-894\" y=\"343\"/>\n      <point x=\"-914\" y=\"179\"/>\n      <point x=\"-914\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-914\" y=\"-268\"/>\n      <point x=\"-754\" y=\"-383\"/>\n    </contour>\n    <contour>\n      <point x=\"195\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"-10\"/>\n      <point x=\"325\" y=\"16\"/>\n      <point x=\"360\" y=\"84\" type=\"curve\"/>\n      <point x=\"400\" y=\"84\" type=\"line\"/>\n      <point x=\"428\" y=\"128\"/>\n      <point x=\"485\" y=\"190\"/>\n      <point x=\"491\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"385\"/>\n      <point x=\"503\" y=\"503\"/>\n      <point x=\"503\" y=\"622\" type=\"curve\"/>\n      <point x=\"307\" y=\"618\" type=\"line\"/>\n      <point x=\"304\" y=\"531\"/>\n      <point x=\"301\" y=\"445\"/>\n      <point x=\"298\" y=\"358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"296\"/>\n      <point x=\"280\" y=\"275\"/>\n      <point x=\"229\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"275\"/>\n      <point x=\"119\" y=\"283\"/>\n      <point x=\"35\" y=\"332\" type=\"curve\"/>\n      <point x=\"-55\" y=\"120\" type=\"line\"/>\n      <point x=\"28\" y=\"23\"/>\n      <point x=\"78\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"-10\"/>\n      <point x=\"707\" y=\"14\"/>\n      <point x=\"744\" y=\"78\" type=\"curve\"/>\n      <point x=\"796\" y=\"78\" type=\"line\"/>\n      <point x=\"847\" y=\"164\"/>\n      <point x=\"874\" y=\"297\"/>\n      <point x=\"874\" y=\"376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"480\"/>\n      <point x=\"873\" y=\"532\"/>\n      <point x=\"869\" y=\"649\" type=\"curve\"/>\n      <point x=\"656\" y=\"635\" type=\"line\"/>\n      <point x=\"655\" y=\"527\"/>\n      <point x=\"657\" y=\"430\"/>\n      <point x=\"657\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"300\"/>\n      <point x=\"642\" y=\"275\"/>\n      <point x=\"582\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"511\" y=\"275\"/>\n      <point x=\"467\" y=\"298\"/>\n      <point x=\"403\" y=\"330\" type=\"curve\"/>\n      <point x=\"341\" y=\"143\" type=\"line\"/>\n      <point x=\"402\" y=\"33\"/>\n      <point x=\"465\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"285\"/>\n      <point x=\"874\" y=\"297\"/>\n      <point x=\"874\" y=\"376\" type=\"curve\"/>\n      <point x=\"732\" y=\"158\" type=\"line\"/>\n      <point x=\"770\" y=\"22\"/>\n      <point x=\"812\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"885\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"791\" y=\"945\" name=\"top\"/>\n  <anchor x=\"791\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"302\" y=\"-383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"-383\"/>\n      <point x=\"606\" y=\"-317\"/>\n      <point x=\"606\" y=\"106\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"216\"/>\n      <point x=\"603\" y=\"403\"/>\n      <point x=\"583\" y=\"605\" type=\"curve\"/>\n      <point x=\"371\" y=\"594\" type=\"line\"/>\n      <point x=\"384\" y=\"434\"/>\n      <point x=\"389\" y=\"232\"/>\n      <point x=\"389\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"389\" y=\"-56\"/>\n      <point x=\"369\" y=\"-98\"/>\n      <point x=\"305\" y=\"-98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"-98\"/>\n      <point x=\"233\" y=\"-60\"/>\n      <point x=\"233\" y=\"74\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"166\"/>\n      <point x=\"236\" y=\"343\"/>\n      <point x=\"245\" y=\"452\" type=\"curve\"/>\n      <point x=\"54\" y=\"452\" type=\"line\"/>\n      <point x=\"36\" y=\"320\"/>\n      <point x=\"26\" y=\"179\"/>\n      <point x=\"26\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"26\" y=\"-298\"/>\n      <point x=\"136\" y=\"-383\"/>\n    </contour>\n    <contour>\n      <point x=\"602\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"-10\"/>\n      <point x=\"707\" y=\"16\"/>\n      <point x=\"732\" y=\"72\" type=\"curve\"/>\n      <point x=\"811\" y=\"72\" type=\"line\"/>\n      <point x=\"843\" y=\"115\"/>\n      <point x=\"869\" y=\"178\"/>\n      <point x=\"875\" y=\"264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"373\"/>\n      <point x=\"879\" y=\"502\"/>\n      <point x=\"880\" y=\"622\" type=\"curve\"/>\n      <point x=\"700\" y=\"618\" type=\"line\"/>\n      <point x=\"699\" y=\"531\"/>\n      <point x=\"699\" y=\"445\"/>\n      <point x=\"696\" y=\"358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"286\"/>\n      <point x=\"685\" y=\"275\"/>\n      <point x=\"634\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"275\"/>\n      <point x=\"519\" y=\"296\"/>\n      <point x=\"465\" y=\"332\" type=\"curve\"/>\n      <point x=\"425\" y=\"100\" type=\"line\"/>\n      <point x=\"468\" y=\"23\"/>\n      <point x=\"535\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"892\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-10\"/>\n      <point x=\"998\" y=\"16\"/>\n      <point x=\"1027\" y=\"78\" type=\"curve\"/>\n      <point x=\"1079\" y=\"78\" type=\"line\"/>\n      <point x=\"1130\" y=\"164\"/>\n      <point x=\"1157\" y=\"297\"/>\n      <point x=\"1157\" y=\"336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"440\"/>\n      <point x=\"1156\" y=\"532\"/>\n      <point x=\"1152\" y=\"649\" type=\"curve\"/>\n      <point x=\"967\" y=\"637\" type=\"line\"/>\n      <point x=\"966\" y=\"529\"/>\n      <point x=\"967\" y=\"430\"/>\n      <point x=\"967\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"967\" y=\"300\"/>\n      <point x=\"966\" y=\"275\"/>\n      <point x=\"916\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"275\"/>\n      <point x=\"862\" y=\"287\"/>\n      <point x=\"797\" y=\"320\" type=\"curve\"/>\n      <point x=\"716\" y=\"123\" type=\"line\"/>\n      <point x=\"777\" y=\"20\"/>\n      <point x=\"813\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1246\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1168\" y=\"285\"/>\n      <point x=\"1157\" y=\"297\"/>\n      <point x=\"1157\" y=\"336\" type=\"curve\"/>\n      <point x=\"1019\" y=\"148\" type=\"line\"/>\n      <point x=\"1057\" y=\"22\"/>\n      <point x=\"1102\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0633\"/>\n  <anchor x=\"865\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"865\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"791\" y=\"945\" name=\"top\"/>\n  <anchor x=\"791\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"302\" y=\"-383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"-383\"/>\n      <point x=\"606\" y=\"-317\"/>\n      <point x=\"606\" y=\"106\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"216\"/>\n      <point x=\"603\" y=\"403\"/>\n      <point x=\"583\" y=\"605\" type=\"curve\"/>\n      <point x=\"371\" y=\"594\" type=\"line\"/>\n      <point x=\"384\" y=\"434\"/>\n      <point x=\"389\" y=\"232\"/>\n      <point x=\"389\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"389\" y=\"-56\"/>\n      <point x=\"369\" y=\"-98\"/>\n      <point x=\"305\" y=\"-98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"-98\"/>\n      <point x=\"233\" y=\"-60\"/>\n      <point x=\"233\" y=\"74\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"166\"/>\n      <point x=\"237\" y=\"323\"/>\n      <point x=\"245\" y=\"452\" type=\"curve\"/>\n      <point x=\"54\" y=\"452\" type=\"line\"/>\n      <point x=\"36\" y=\"320\"/>\n      <point x=\"26\" y=\"179\"/>\n      <point x=\"26\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"26\" y=\"-298\"/>\n      <point x=\"136\" y=\"-383\"/>\n    </contour>\n    <contour>\n      <point x=\"612\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"-10\"/>\n      <point x=\"712\" y=\"16\"/>\n      <point x=\"737\" y=\"72\" type=\"curve\"/>\n      <point x=\"816\" y=\"72\" type=\"line\"/>\n      <point x=\"841\" y=\"115\"/>\n      <point x=\"872\" y=\"178\"/>\n      <point x=\"876\" y=\"264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"373\"/>\n      <point x=\"880\" y=\"502\"/>\n      <point x=\"880\" y=\"622\" type=\"curve\"/>\n      <point x=\"700\" y=\"618\" type=\"line\"/>\n      <point x=\"699\" y=\"531\"/>\n      <point x=\"698\" y=\"445\"/>\n      <point x=\"697\" y=\"358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"290\"/>\n      <point x=\"687\" y=\"275\"/>\n      <point x=\"636\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"275\"/>\n      <point x=\"519\" y=\"286\"/>\n      <point x=\"465\" y=\"312\" type=\"curve\"/>\n      <point x=\"425\" y=\"80\" type=\"line\"/>\n      <point x=\"468\" y=\"13\"/>\n      <point x=\"545\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"933\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"-10\"/>\n      <point x=\"1174\" y=\"93\"/>\n      <point x=\"1174\" y=\"294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1174\" y=\"408\"/>\n      <point x=\"1167\" y=\"515\"/>\n      <point x=\"1160\" y=\"650\" type=\"curve\"/>\n      <point x=\"965\" y=\"636\" type=\"line\"/>\n      <point x=\"971\" y=\"519\"/>\n      <point x=\"973\" y=\"430\"/>\n      <point x=\"973\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"973\" y=\"297\"/>\n      <point x=\"962\" y=\"275\"/>\n      <point x=\"915\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"275\"/>\n      <point x=\"817\" y=\"297\"/>\n      <point x=\"752\" y=\"330\" type=\"curve\"/>\n      <point x=\"705\" y=\"143\" type=\"line\"/>\n      <point x=\"776\" y=\"37\"/>\n      <point x=\"838\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"632\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"632\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"650\" y=\"945\" name=\"top\"/>\n  <anchor x=\"650\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"line\"/>\n      <point x=\"99\" y=\"-10\"/>\n      <point x=\"167\" y=\"11\"/>\n      <point x=\"217\" y=\"84\" type=\"curve\"/>\n      <point x=\"294\" y=\"84\" type=\"line\"/>\n      <point x=\"330\" y=\"121\"/>\n      <point x=\"367\" y=\"192\"/>\n      <point x=\"374\" y=\"256\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"371\"/>\n      <point x=\"394\" y=\"486\"/>\n      <point x=\"400\" y=\"601\" type=\"curve\"/>\n      <point x=\"182\" y=\"597\" type=\"line\"/>\n      <point x=\"174\" y=\"517\"/>\n      <point x=\"166\" y=\"437\"/>\n      <point x=\"158\" y=\"357\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"153\" y=\"304\"/>\n      <point x=\"123\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"445\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"518\" y=\"-10\"/>\n      <point x=\"585\" y=\"16\"/>\n      <point x=\"620\" y=\"84\" type=\"curve\"/>\n      <point x=\"660\" y=\"84\" type=\"line\"/>\n      <point x=\"688\" y=\"128\"/>\n      <point x=\"735\" y=\"190\"/>\n      <point x=\"741\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"385\"/>\n      <point x=\"753\" y=\"503\"/>\n      <point x=\"753\" y=\"622\" type=\"curve\"/>\n      <point x=\"567\" y=\"618\" type=\"line\"/>\n      <point x=\"564\" y=\"531\"/>\n      <point x=\"561\" y=\"445\"/>\n      <point x=\"558\" y=\"358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"296\"/>\n      <point x=\"540\" y=\"275\"/>\n      <point x=\"489\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"426\" y=\"275\"/>\n      <point x=\"369\" y=\"293\"/>\n      <point x=\"285\" y=\"342\" type=\"curve\"/>\n      <point x=\"185\" y=\"150\" type=\"line\"/>\n      <point x=\"278\" y=\"23\"/>\n      <point x=\"328\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"853\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1031\" y=\"-10\"/>\n      <point x=\"1124\" y=\"93\"/>\n      <point x=\"1124\" y=\"294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1124\" y=\"408\"/>\n      <point x=\"1107\" y=\"538\"/>\n      <point x=\"1080\" y=\"673\" type=\"curve\"/>\n      <point x=\"865\" y=\"642\" type=\"line\"/>\n      <point x=\"883\" y=\"521\"/>\n      <point x=\"897\" y=\"430\"/>\n      <point x=\"897\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"897\" y=\"300\"/>\n      <point x=\"872\" y=\"275\"/>\n      <point x=\"815\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"275\"/>\n      <point x=\"717\" y=\"297\"/>\n      <point x=\"652\" y=\"330\" type=\"curve\"/>\n      <point x=\"595\" y=\"143\" type=\"line\"/>\n      <point x=\"666\" y=\"37\"/>\n      <point x=\"738\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"632\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"632\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"650\" y=\"945\" name=\"top\"/>\n  <anchor x=\"650\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"432\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"504\" y=\"-10\"/>\n      <point x=\"562\" y=\"16\"/>\n      <point x=\"587\" y=\"72\" type=\"curve\"/>\n      <point x=\"666\" y=\"72\" type=\"line\"/>\n      <point x=\"698\" y=\"115\"/>\n      <point x=\"730\" y=\"178\"/>\n      <point x=\"736\" y=\"264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"373\"/>\n      <point x=\"744\" y=\"502\"/>\n      <point x=\"746\" y=\"622\" type=\"curve\"/>\n      <point x=\"560\" y=\"618\" type=\"line\"/>\n      <point x=\"556\" y=\"531\"/>\n      <point x=\"551\" y=\"445\"/>\n      <point x=\"547\" y=\"358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"286\"/>\n      <point x=\"520\" y=\"275\"/>\n      <point x=\"469\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"275\"/>\n      <point x=\"369\" y=\"296\"/>\n      <point x=\"285\" y=\"342\" type=\"curve\"/>\n      <point x=\"175\" y=\"150\" type=\"line\"/>\n      <point x=\"248\" y=\"43\"/>\n      <point x=\"325\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"-12\" y=\"-10\" type=\"line\"/>\n      <point x=\"88\" y=\"-10\"/>\n      <point x=\"183\" y=\"14\"/>\n      <point x=\"220\" y=\"72\" type=\"curve\"/>\n      <point x=\"284\" y=\"72\" type=\"line\"/>\n      <point x=\"332\" y=\"113\"/>\n      <point x=\"366\" y=\"176\"/>\n      <point x=\"374\" y=\"256\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"371\"/>\n      <point x=\"394\" y=\"486\"/>\n      <point x=\"400\" y=\"601\" type=\"curve\"/>\n      <point x=\"182\" y=\"597\" type=\"line\"/>\n      <point x=\"174\" y=\"514\"/>\n      <point x=\"166\" y=\"430\"/>\n      <point x=\"158\" y=\"347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"153\" y=\"294\"/>\n      <point x=\"140\" y=\"285\"/>\n      <point x=\"0\" y=\"285\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"813\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"-10\"/>\n      <point x=\"950\" y=\"16\"/>\n      <point x=\"987\" y=\"78\" type=\"curve\"/>\n      <point x=\"1039\" y=\"78\" type=\"line\"/>\n      <point x=\"1090\" y=\"164\"/>\n      <point x=\"1117\" y=\"297\"/>\n      <point x=\"1117\" y=\"346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"450\"/>\n      <point x=\"1116\" y=\"532\"/>\n      <point x=\"1112\" y=\"649\" type=\"curve\"/>\n      <point x=\"899\" y=\"635\" type=\"line\"/>\n      <point x=\"898\" y=\"527\"/>\n      <point x=\"900\" y=\"430\"/>\n      <point x=\"900\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"300\"/>\n      <point x=\"885\" y=\"275\"/>\n      <point x=\"825\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"275\"/>\n      <point x=\"717\" y=\"297\"/>\n      <point x=\"652\" y=\"330\" type=\"curve\"/>\n      <point x=\"571\" y=\"123\" type=\"line\"/>\n      <point x=\"632\" y=\"30\"/>\n      <point x=\"698\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1126\" y=\"285\"/>\n      <point x=\"1117\" y=\"297\"/>\n      <point x=\"1117\" y=\"346\" type=\"curve\"/>\n      <point x=\"979\" y=\"148\" type=\"line\"/>\n      <point x=\"1017\" y=\"32\"/>\n      <point x=\"1072\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-199\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-180\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-180\" yOffset=\"-24\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-199\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"283\" yOffset=\"-24\"/>\n    <component base=\"dotabove-ar\" xOffset=\"191\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069A\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"191\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"263\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"30\" yOffset=\"-24\"/>\n    <component base=\"dotabove-ar\" xOffset=\"50\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"30\" yOffset=\"-24\"/>\n    <component base=\"dotabove-ar\" xOffset=\"50\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"four-persian.small01\" xOffset=\"-219\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"four-persian.small01\" xOffset=\"-219\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"four-persian.small01\" xOffset=\"171\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077D\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"four-persian.small01\" xOffset=\"171\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"four-persian.small01\" xOffset=\"30\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.init</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"four-persian.small01\" xOffset=\"30\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.medi</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.medi</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-199\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-199\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"191\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075C\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"191\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"632\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"50\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"50\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"_twodotstah\" xOffset=\"-199\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"_twodotstah\" xOffset=\"-199\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"_twodotstah\" xOffset=\"191\" yOffset=\"178\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0770\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"_twodotstah\" xOffset=\"191\" yOffset=\"178\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"_twodotstah\" xOffset=\"50\" yOffset=\"178\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"_twodotstah\" xOffset=\"50\" yOffset=\"178\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.medi</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.medi</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-178\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-178\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"283\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069B\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"263\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"30\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"30\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-199\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-178\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-199\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-178\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"191\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"285\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069C\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"191\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"263\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"50\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"32\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"50\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"32\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"191\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076D\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"191\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"50\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"50\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotsverticalabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotsverticalabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-199\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotsverticalabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotsverticalabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-199\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-199\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-199\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"191\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077E\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"191\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"50\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"50\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit0.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit0\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF0\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit1\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF1\"/>\n  <outline>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF2\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF3\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF4\"/>\n  <outline>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF5\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF6\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF7\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit8\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF8\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit9.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit9\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF9\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/semicolon-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"semicolon-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"061B\"/>\n  <outline>\n    <component base=\"period\"/>\n    <component base=\"comma-ar\" yOffset=\"509\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/semicolon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"semicolon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003B\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"716\"/>\n      <point x=\"782\" y=\"798\"/>\n      <point x=\"782\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"999\"/>\n      <point x=\"701\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"1080\"/>\n      <point x=\"418\" y=\"999\"/>\n      <point x=\"418\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"798\"/>\n      <point x=\"499\" y=\"716\"/>\n    </contour>\n    <component base=\"comma\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>comma</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/semicolon_semicolon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"semicolon_semicolon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"semicolon\" xOffset=\"166\"/>\n    <component base=\"semicolon\" xOffset=\"1084\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>semicolon</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>semicolon</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0667\"/>\n  <outline>\n    <contour>\n      <point x=\"475\" y=\"0\" type=\"curve\"/>\n      <point x=\"734\" y=\"0\" type=\"line\"/>\n      <point x=\"868\" y=\"484\"/>\n      <point x=\"1055\" y=\"1078\"/>\n      <point x=\"1166\" y=\"1401\" type=\"curve\"/>\n      <point x=\"885\" y=\"1440\" type=\"line\"/>\n      <point x=\"808\" y=\"1194\"/>\n      <point x=\"664\" y=\"670\"/>\n      <point x=\"592\" y=\"229\" type=\"curve\"/>\n      <point x=\"668\" y=\"229\" type=\"line\"/>\n      <point x=\"635\" y=\"406\" type=\"line\"/>\n      <point x=\"600\" y=\"406\" type=\"line\"/>\n      <point x=\"527\" y=\"735\"/>\n      <point x=\"430\" y=\"1093\"/>\n      <point x=\"313\" y=\"1440\" type=\"curve\"/>\n      <point x=\"34\" y=\"1389\" type=\"line\"/>\n      <point x=\"176\" y=\"1006\"/>\n      <point x=\"369\" y=\"364\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eight-arinferior\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1151\" yOffset=\"632\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>eight-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seven-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F7\"/>\n  <outline>\n    <component base=\"seven-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seven-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seven-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven-persian.urdu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persian.urdu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"668\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"-10\"/>\n      <point x=\"961\" y=\"6\"/>\n      <point x=\"1088\" y=\"31\" type=\"curve\"/>\n      <point x=\"1092\" y=\"315\" type=\"line\"/>\n      <point x=\"971\" y=\"300\"/>\n      <point x=\"843\" y=\"285\"/>\n      <point x=\"720\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"285\"/>\n      <point x=\"422\" y=\"324\"/>\n      <point x=\"422\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"558\"/>\n      <point x=\"634\" y=\"878\"/>\n      <point x=\"916\" y=\"1280\" type=\"curve\"/>\n      <point x=\"659\" y=\"1440\" type=\"line\"/>\n      <point x=\"360\" y=\"1007\"/>\n      <point x=\"120\" y=\"581\"/>\n      <point x=\"120\" y=\"347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"120\" y=\"150\"/>\n      <point x=\"261\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven-persian.urduinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persian.urduinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"-10\"/>\n      <point x=\"779\" y=\"-2\"/>\n      <point x=\"850\" y=\"7\" type=\"curve\"/>\n      <point x=\"856\" y=\"191\" type=\"line\"/>\n      <point x=\"781\" y=\"184\"/>\n      <point x=\"703\" y=\"177\"/>\n      <point x=\"636\" y=\"177\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"559\" y=\"177\"/>\n      <point x=\"535\" y=\"186\"/>\n      <point x=\"535\" y=\"218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"276\"/>\n      <point x=\"635\" y=\"440\"/>\n      <point x=\"722\" y=\"601\" type=\"curve\"/>\n      <point x=\"536\" y=\"640\" type=\"line\"/>\n      <point x=\"453\" y=\"507\"/>\n      <point x=\"327\" y=\"287\"/>\n      <point x=\"327\" y=\"154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"327\" y=\"25\"/>\n      <point x=\"433\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven-persian.urdusuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persian.urdusuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seven-persian.urduinferior\" yOffset=\"800\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seven-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>seven-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seven-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>seven-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sevensuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0037\"/>\n  <outline>\n    <contour>\n      <point x=\"447\" y=\"0\" type=\"line\"/>\n      <point x=\"716\" y=\"0\" type=\"line\"/>\n      <point x=\"1171\" y=\"1420\" type=\"line\"/>\n      <point x=\"885\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"872\" type=\"line\"/>\n      <point x=\"360\" y=\"872\" type=\"line\"/>\n      <point x=\"360\" y=\"1390\" type=\"line\"/>\n      <point x=\"95\" y=\"1390\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"1177\" type=\"line\"/>\n      <point x=\"1012\" y=\"1177\" type=\"line\"/>\n      <point x=\"1171\" y=\"1420\" type=\"line\"/>\n      <point x=\"95\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seven.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sevensuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seveneighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seveneighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"577\" y=\"593\" type=\"line\"/>\n      <point x=\"484\" y=\"715\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"710\" y=\"692\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"617\" y=\"814\" type=\"line\"/>\n    </contour>\n    <component base=\"sevensuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>sevensuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>eightinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seveneighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seveneighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215E\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <component base=\"sevensuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>sevensuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>eightinferior</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/seveninferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seveninferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2087\"/>\n  <outline>\n    <component base=\"sevensuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sevensuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sevensuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2077\"/>\n  <outline>\n    <contour>\n      <point x=\"539\" y=\"802\" type=\"line\"/>\n      <point x=\"765\" y=\"802\" type=\"line\"/>\n      <point x=\"916\" y=\"1420\" type=\"line\"/>\n      <point x=\"689\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"1125\" type=\"line\"/>\n      <point x=\"543\" y=\"1125\" type=\"line\"/>\n      <point x=\"543\" y=\"1406\" type=\"line\"/>\n      <point x=\"337\" y=\"1406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"1230\" type=\"line\"/>\n      <point x=\"836\" y=\"1230\" type=\"line\"/>\n      <point x=\"916\" y=\"1420\" type=\"line\"/>\n      <point x=\"337\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0448\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"834\" y=\"0\" type=\"line\"/>\n      <point x=\"1105\" y=\"0\" type=\"line\"/>\n      <point x=\"1105\" y=\"1060\" type=\"line\"/>\n      <point x=\"834\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"137\" y=\"0\" type=\"line\"/>\n      <point x=\"1068\" y=\"0\" type=\"line\"/>\n      <point x=\"1068\" y=\"250\" type=\"line\"/>\n      <point x=\"137\" y=\"250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"0\" type=\"line\"/>\n      <point x=\"366\" y=\"0\" type=\"line\"/>\n      <point x=\"366\" y=\"1060\" type=\"line\"/>\n      <point x=\"95\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"492\" y=\"0\" type=\"line\"/>\n      <point x=\"706\" y=\"0\" type=\"line\"/>\n      <point x=\"706\" y=\"1060\" type=\"line\"/>\n      <point x=\"492\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sha-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sha-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"333\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"421\" y=\"-20\"/>\n      <point x=\"485\" y=\"39\"/>\n      <point x=\"506\" y=\"144\" type=\"curve\"/>\n      <point x=\"530\" y=\"144\" type=\"line\"/>\n      <point x=\"548\" y=\"31\"/>\n      <point x=\"601\" y=\"-20\"/>\n      <point x=\"676\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"-20\"/>\n      <point x=\"797\" y=\"31\"/>\n      <point x=\"815\" y=\"144\" type=\"curve\"/>\n      <point x=\"841\" y=\"144\" type=\"line\"/>\n      <point x=\"852\" y=\"-10\" type=\"line\"/>\n      <point x=\"1105\" y=\"-4\" type=\"line\"/>\n      <point x=\"1105\" y=\"1060\" type=\"line\"/>\n      <point x=\"834\" y=\"1060\" type=\"line\"/>\n      <point x=\"834\" y=\"328\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"266\"/>\n      <point x=\"814\" y=\"235\"/>\n      <point x=\"772\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"235\"/>\n      <point x=\"698\" y=\"266\"/>\n      <point x=\"698\" y=\"328\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"1060\" type=\"line\"/>\n      <point x=\"502\" y=\"1060\" type=\"line\"/>\n      <point x=\"502\" y=\"330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"263\"/>\n      <point x=\"476\" y=\"235\"/>\n      <point x=\"430\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"235\"/>\n      <point x=\"366\" y=\"269\"/>\n      <point x=\"366\" y=\"328\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"366\" y=\"1060\" type=\"line\"/>\n      <point x=\"95\" y=\"1060\" type=\"line\"/>\n      <point x=\"95\" y=\"278\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"95\" y=\"88\"/>\n      <point x=\"179\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shadda-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadda-ar\" format=\"2\">\n  <unicode hex=\"0651\"/>\n  <anchor x=\"611\" y=\"1092\" name=\"_top\"/>\n  <anchor x=\"592\" y=\"1485\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"485\" y=\"1136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1136\"/>\n      <point x=\"623\" y=\"1184\"/>\n      <point x=\"623\" y=\"1293\" type=\"curve\"/>\n      <point x=\"592\" y=\"1298\" type=\"line\"/>\n      <point x=\"592\" y=\"1214\"/>\n      <point x=\"645\" y=\"1190\"/>\n      <point x=\"697\" y=\"1190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"1190\"/>\n      <point x=\"844\" y=\"1261\"/>\n      <point x=\"844\" y=\"1371\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"1416\"/>\n      <point x=\"837\" y=\"1480\"/>\n      <point x=\"827\" y=\"1523\" type=\"curve\"/>\n      <point x=\"711\" y=\"1491\" type=\"line\"/>\n      <point x=\"714\" y=\"1453\"/>\n      <point x=\"716\" y=\"1425\"/>\n      <point x=\"716\" y=\"1387\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"1350\"/>\n      <point x=\"706\" y=\"1340\"/>\n      <point x=\"686\" y=\"1340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"1340\"/>\n      <point x=\"660\" y=\"1349\"/>\n      <point x=\"660\" y=\"1374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"1473\" type=\"line\"/>\n      <point x=\"543\" y=\"1449\" type=\"line\"/>\n      <point x=\"541\" y=\"1375\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"1309\"/>\n      <point x=\"529\" y=\"1292\"/>\n      <point x=\"502\" y=\"1292\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"1292\"/>\n      <point x=\"476\" y=\"1307\"/>\n      <point x=\"476\" y=\"1336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"1363\"/>\n      <point x=\"479\" y=\"1393\"/>\n      <point x=\"480\" y=\"1426\" type=\"curve\"/>\n      <point x=\"367\" y=\"1403\" type=\"line\"/>\n      <point x=\"360\" y=\"1367\"/>\n      <point x=\"358\" y=\"1330\"/>\n      <point x=\"358\" y=\"1305\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"1211\"/>\n      <point x=\"382\" y=\"1136\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shadedark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadedark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2593\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"926\" type=\"line\"/>\n      <point x=\"1200\" y=\"2126\" type=\"line\"/>\n      <point x=\"1200\" y=\"2166\" type=\"line\"/>\n      <point x=\"0\" y=\"966\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-480\" type=\"line\"/>\n      <point x=\"94\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"-480\" type=\"line\"/>\n      <point x=\"194\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"526\" type=\"line\"/>\n      <point x=\"1200\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"254\" y=\"-480\" type=\"line\"/>\n      <point x=\"294\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"354\" y=\"-480\" type=\"line\"/>\n      <point x=\"394\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"326\" type=\"line\"/>\n      <point x=\"1200\" y=\"366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"-480\" type=\"line\"/>\n      <point x=\"494\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"-480\" type=\"line\"/>\n      <point x=\"594\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"126\" type=\"line\"/>\n      <point x=\"1200\" y=\"166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"654\" y=\"-480\" type=\"line\"/>\n      <point x=\"694\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"754\" y=\"-480\" type=\"line\"/>\n      <point x=\"794\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-74\" type=\"line\"/>\n      <point x=\"1200\" y=\"-34\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"-480\" type=\"line\"/>\n      <point x=\"894\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"954\" y=\"-480\" type=\"line\"/>\n      <point x=\"994\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-274\" type=\"line\"/>\n      <point x=\"1200\" y=\"-234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1054\" y=\"-480\" type=\"line\"/>\n      <point x=\"1094\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1154\" y=\"-480\" type=\"line\"/>\n      <point x=\"1194\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-474\" type=\"line\"/>\n      <point x=\"1200\" y=\"-434\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-474\" type=\"line\"/>\n      <point x=\"1200\" y=\"726\" type=\"line\"/>\n      <point x=\"1200\" y=\"766\" type=\"line\"/>\n      <point x=\"0\" y=\"-434\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"866\" type=\"line\"/>\n      <point x=\"0\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-274\" type=\"line\"/>\n      <point x=\"1200\" y=\"926\" type=\"line\"/>\n      <point x=\"1200\" y=\"966\" type=\"line\"/>\n      <point x=\"0\" y=\"-234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"1066\" type=\"line\"/>\n      <point x=\"0\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-74\" type=\"line\"/>\n      <point x=\"1200\" y=\"1126\" type=\"line\"/>\n      <point x=\"1200\" y=\"1166\" type=\"line\"/>\n      <point x=\"0\" y=\"-34\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"1226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1266\" type=\"line\"/>\n      <point x=\"0\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"126\" type=\"line\"/>\n      <point x=\"1200\" y=\"1326\" type=\"line\"/>\n      <point x=\"1200\" y=\"1366\" type=\"line\"/>\n      <point x=\"0\" y=\"166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1466\" type=\"line\"/>\n      <point x=\"0\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"326\" type=\"line\"/>\n      <point x=\"1200\" y=\"1526\" type=\"line\"/>\n      <point x=\"1200\" y=\"1566\" type=\"line\"/>\n      <point x=\"0\" y=\"366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1666\" type=\"line\"/>\n      <point x=\"0\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"526\" type=\"line\"/>\n      <point x=\"1200\" y=\"1726\" type=\"line\"/>\n      <point x=\"1200\" y=\"1766\" type=\"line\"/>\n      <point x=\"0\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1826\" type=\"line\"/>\n      <point x=\"1200\" y=\"1866\" type=\"line\"/>\n      <point x=\"0\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"726\" type=\"line\"/>\n      <point x=\"1200\" y=\"1926\" type=\"line\"/>\n      <point x=\"1200\" y=\"1966\" type=\"line\"/>\n      <point x=\"0\" y=\"766\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"2026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2066\" type=\"line\"/>\n      <point x=\"0\" y=\"866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"2126\" type=\"line\"/>\n      <point x=\"100\" y=\"2226\" type=\"line\"/>\n      <point x=\"60\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"2026\" type=\"line\"/>\n      <point x=\"200\" y=\"2226\" type=\"line\"/>\n      <point x=\"160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2066\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1926\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"260\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1966\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1826\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"360\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1726\" type=\"line\"/>\n      <point x=\"500\" y=\"2226\" type=\"line\"/>\n      <point x=\"460\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1766\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1626\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"560\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1526\" type=\"line\"/>\n      <point x=\"700\" y=\"2226\" type=\"line\"/>\n      <point x=\"660\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1426\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"760\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1326\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"860\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1226\" type=\"line\"/>\n      <point x=\"1000\" y=\"2226\" type=\"line\"/>\n      <point x=\"960\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1126\" type=\"line\"/>\n      <point x=\"1100\" y=\"2226\" type=\"line\"/>\n      <point x=\"1060\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1066\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shadedark.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadedark.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"600\" type=\"line\"/>\n      <point x=\"1200\" y=\"1800\" type=\"line\"/>\n      <point x=\"1200\" y=\"1840\" type=\"line\"/>\n      <point x=\"0\" y=\"640\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"80\" y=\"-480\" type=\"line\"/>\n      <point x=\"120\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"600\" type=\"line\"/>\n      <point x=\"1200\" y=\"640\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"-480\" type=\"line\"/>\n      <point x=\"220\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"-480\" type=\"line\"/>\n      <point x=\"320\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"400\" type=\"line\"/>\n      <point x=\"1200\" y=\"440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"-480\" type=\"line\"/>\n      <point x=\"420\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"480\" y=\"-480\" type=\"line\"/>\n      <point x=\"520\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"200\" type=\"line\"/>\n      <point x=\"1200\" y=\"240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"-480\" type=\"line\"/>\n      <point x=\"620\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"680\" y=\"-480\" type=\"line\"/>\n      <point x=\"720\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"0\" type=\"line\"/>\n      <point x=\"1200\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"-480\" type=\"line\"/>\n      <point x=\"820\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"880\" y=\"-480\" type=\"line\"/>\n      <point x=\"920\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-200\" type=\"line\"/>\n      <point x=\"1200\" y=\"-160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"980\" y=\"-480\" type=\"line\"/>\n      <point x=\"1020\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1080\" y=\"-480\" type=\"line\"/>\n      <point x=\"1120\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-400\" type=\"line\"/>\n      <point x=\"1200\" y=\"-360\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1180\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"740\" type=\"line\"/>\n      <point x=\"0\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-400\" type=\"line\"/>\n      <point x=\"1200\" y=\"800\" type=\"line\"/>\n      <point x=\"1200\" y=\"840\" type=\"line\"/>\n      <point x=\"0\" y=\"-360\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"900\" type=\"line\"/>\n      <point x=\"1200\" y=\"940\" type=\"line\"/>\n      <point x=\"0\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-200\" type=\"line\"/>\n      <point x=\"1200\" y=\"1000\" type=\"line\"/>\n      <point x=\"1200\" y=\"1040\" type=\"line\"/>\n      <point x=\"0\" y=\"-160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1140\" type=\"line\"/>\n      <point x=\"0\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"0\" type=\"line\"/>\n      <point x=\"1200\" y=\"1200\" type=\"line\"/>\n      <point x=\"1200\" y=\"1240\" type=\"line\"/>\n      <point x=\"0\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1340\" type=\"line\"/>\n      <point x=\"0\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"200\" type=\"line\"/>\n      <point x=\"1200\" y=\"1400\" type=\"line\"/>\n      <point x=\"1200\" y=\"1440\" type=\"line\"/>\n      <point x=\"0\" y=\"240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1540\" type=\"line\"/>\n      <point x=\"0\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"400\" type=\"line\"/>\n      <point x=\"1200\" y=\"1600\" type=\"line\"/>\n      <point x=\"1200\" y=\"1640\" type=\"line\"/>\n      <point x=\"0\" y=\"440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1740\" type=\"line\"/>\n      <point x=\"0\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1800\" type=\"line\"/>\n      <point x=\"100\" y=\"1900\" type=\"line\"/>\n      <point x=\"60\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1840\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1700\" type=\"line\"/>\n      <point x=\"200\" y=\"1900\" type=\"line\"/>\n      <point x=\"160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1600\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"260\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1640\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1500\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"360\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1400\" type=\"line\"/>\n      <point x=\"500\" y=\"1900\" type=\"line\"/>\n      <point x=\"460\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1300\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"560\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1200\" type=\"line\"/>\n      <point x=\"700\" y=\"1900\" type=\"line\"/>\n      <point x=\"660\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1100\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"760\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1000\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"860\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1040\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"900\" type=\"line\"/>\n      <point x=\"1000\" y=\"1900\" type=\"line\"/>\n      <point x=\"960\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"940\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"800\" type=\"line\"/>\n      <point x=\"1100\" y=\"1900\" type=\"line\"/>\n      <point x=\"1060\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"840\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shadelight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadelight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2591\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1826\" type=\"line\"/>\n      <point x=\"1200\" y=\"1866\" type=\"line\"/>\n      <point x=\"0\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-480\" type=\"line\"/>\n      <point x=\"94\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"-480\" type=\"line\"/>\n      <point x=\"494\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"-480\" type=\"line\"/>\n      <point x=\"894\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"1066\" type=\"line\"/>\n      <point x=\"0\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1466\" type=\"line\"/>\n      <point x=\"0\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1826\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"360\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1426\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"760\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1066\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shadelight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadelight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1540\" type=\"line\"/>\n      <point x=\"0\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"-480\" type=\"line\"/>\n      <point x=\"420\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"-480\" type=\"line\"/>\n      <point x=\"820\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1180\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"740\" type=\"line\"/>\n      <point x=\"0\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1140\" type=\"line\"/>\n      <point x=\"0\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1500\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"360\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1100\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"760\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shademedium.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shademedium\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2592\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"2026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2066\" type=\"line\"/>\n      <point x=\"0\" y=\"866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-480\" type=\"line\"/>\n      <point x=\"94\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"254\" y=\"-480\" type=\"line\"/>\n      <point x=\"294\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"-480\" type=\"line\"/>\n      <point x=\"494\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"654\" y=\"-480\" type=\"line\"/>\n      <point x=\"694\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"-480\" type=\"line\"/>\n      <point x=\"894\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1054\" y=\"-480\" type=\"line\"/>\n      <point x=\"1094\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"866\" type=\"line\"/>\n      <point x=\"0\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"1066\" type=\"line\"/>\n      <point x=\"0\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"1226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1266\" type=\"line\"/>\n      <point x=\"0\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1466\" type=\"line\"/>\n      <point x=\"0\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1666\" type=\"line\"/>\n      <point x=\"0\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1826\" type=\"line\"/>\n      <point x=\"1200\" y=\"1866\" type=\"line\"/>\n      <point x=\"0\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"2026\" type=\"line\"/>\n      <point x=\"200\" y=\"2226\" type=\"line\"/>\n      <point x=\"160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2066\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1826\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"360\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1626\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"560\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1426\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"760\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1226\" type=\"line\"/>\n      <point x=\"1000\" y=\"2226\" type=\"line\"/>\n      <point x=\"960\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1066\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shademedium.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shademedium.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1740\" type=\"line\"/>\n      <point x=\"0\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"-480\" type=\"line\"/>\n      <point x=\"220\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"-480\" type=\"line\"/>\n      <point x=\"420\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"-480\" type=\"line\"/>\n      <point x=\"620\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"-480\" type=\"line\"/>\n      <point x=\"820\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"980\" y=\"-480\" type=\"line\"/>\n      <point x=\"1020\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1180\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"740\" type=\"line\"/>\n      <point x=\"0\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"900\" type=\"line\"/>\n      <point x=\"1200\" y=\"940\" type=\"line\"/>\n      <point x=\"0\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1140\" type=\"line\"/>\n      <point x=\"0\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1340\" type=\"line\"/>\n      <point x=\"0\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1540\" type=\"line\"/>\n      <point x=\"0\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1700\" type=\"line\"/>\n      <point x=\"200\" y=\"1900\" type=\"line\"/>\n      <point x=\"160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1500\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"360\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1300\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"560\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1100\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"760\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"900\" type=\"line\"/>\n      <point x=\"1000\" y=\"1900\" type=\"line\"/>\n      <point x=\"960\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"940\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shcha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shcha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0449\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"814\" y=\"0\" type=\"line\"/>\n      <point x=\"1085\" y=\"0\" type=\"line\"/>\n      <point x=\"1085\" y=\"1060\" type=\"line\"/>\n      <point x=\"814\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"0\" type=\"line\"/>\n      <point x=\"1051\" y=\"0\" type=\"line\"/>\n      <point x=\"1051\" y=\"250\" type=\"line\"/>\n      <point x=\"154\" y=\"250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"0\" type=\"line\"/>\n      <point x=\"366\" y=\"0\" type=\"line\"/>\n      <point x=\"366\" y=\"1060\" type=\"line\"/>\n      <point x=\"95\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"958\" y=\"-270\" type=\"line\"/>\n      <point x=\"1175\" y=\"-270\" type=\"line\"/>\n      <point x=\"1175\" y=\"250\" type=\"line\"/>\n      <point x=\"958\" y=\"250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"492\" y=\"0\" type=\"line\"/>\n      <point x=\"687\" y=\"0\" type=\"line\"/>\n      <point x=\"687\" y=\"1060\" type=\"line\"/>\n      <point x=\"492\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shcha-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shcha-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"922\" y=\"-270\" type=\"line\"/>\n      <point x=\"1190\" y=\"-270\" type=\"line\"/>\n      <point x=\"1190\" y=\"252\" type=\"line\"/>\n      <point x=\"922\" y=\"252\" type=\"line\"/>\n    </contour>\n    <component base=\"sha-cy.loclBGR\" xOffset=\"-30\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>sha-cy.loclBGR</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-199\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-199\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"191\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0634\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"191\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"50\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"50\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-199\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-180\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-199\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-180\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"191\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"283\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FA\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"191\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"263\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"50\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"30\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"50\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"30\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sheqel.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheqel\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AA\"/>\n  <outline>\n    <contour>\n      <point x=\"613\" y=\"-19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1030\" y=\"-19\"/>\n      <point x=\"1137\" y=\"219\"/>\n      <point x=\"1137\" y=\"589\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1137\" y=\"1200\" type=\"line\"/>\n      <point x=\"869\" y=\"1200\" type=\"line\"/>\n      <point x=\"869\" y=\"499\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"276\"/>\n      <point x=\"795\" y=\"251\"/>\n      <point x=\"659\" y=\"251\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"251\"/>\n      <point x=\"549\" y=\"259\"/>\n      <point x=\"501\" y=\"271\" type=\"curve\"/>\n      <point x=\"423\" y=\"0\" type=\"line\"/>\n      <point x=\"501\" y=\"-16\"/>\n      <point x=\"550\" y=\"-19\"/>\n    </contour>\n    <contour>\n      <point x=\"87\" y=\"0\" type=\"line\"/>\n      <point x=\"345\" y=\"0\" type=\"line\"/>\n      <point x=\"345\" y=\"736\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"345\" y=\"839\"/>\n      <point x=\"345\" y=\"929\"/>\n      <point x=\"477\" y=\"929\" type=\"curve\"/>\n      <point x=\"239\" y=\"994\" type=\"line\"/>\n      <point x=\"239\" y=\"922\" type=\"line\"/>\n      <point x=\"153\" y=\"893\"/>\n      <point x=\"92\" y=\"804\"/>\n      <point x=\"87\" y=\"665\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"421\" y=\"1\" type=\"line\"/>\n      <point x=\"579\" y=\"-1\" type=\"line\"/>\n      <point x=\"579\" y=\"816\" type=\"line\"/>\n      <point x=\"421\" y=\"816\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"648\" y=\"359\" type=\"line\"/>\n      <point x=\"797\" y=\"359\" type=\"line\"/>\n      <point x=\"797\" y=\"947\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"1110\"/>\n      <point x=\"714\" y=\"1200\"/>\n      <point x=\"585\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"1200\"/>\n      <point x=\"169\" y=\"1234\"/>\n      <point x=\"139\" y=\"1253\" type=\"curve\"/>\n      <point x=\"49\" y=\"1018\" type=\"line\"/>\n      <point x=\"99\" y=\"981\"/>\n      <point x=\"187\" y=\"944\"/>\n      <point x=\"257\" y=\"929\" type=\"curve\"/>\n      <point x=\"517\" y=\"929\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"929\"/>\n      <point x=\"648\" y=\"831\"/>\n      <point x=\"648\" y=\"735\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04BB\"/>\n  <outline>\n    <component base=\"h\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shiftI_nC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftInControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240F\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"I.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>I.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shiftI_nC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftInControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"570\"/>\n      <point x=\"740\" y=\"626\"/>\n      <point x=\"740\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"794\"/>\n      <point x=\"684\" y=\"850\"/>\n      <point x=\"600\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"850\"/>\n      <point x=\"460\" y=\"794\"/>\n      <point x=\"460\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"626\"/>\n      <point x=\"516\" y=\"570\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shiftO_utC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftOutControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240E\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"O.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>O.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shiftO_utC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftOutControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"934\" y=\"309\" type=\"line\"/>\n      <point x=\"997\" y=\"365\" type=\"line\"/>\n      <point x=\"246\" y=\"1086\" type=\"line\"/>\n      <point x=\"183\" y=\"1028\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"266\" y=\"309\" type=\"line\"/>\n      <point x=\"1009\" y=\"1021\" type=\"line\"/>\n      <point x=\"946\" y=\"1079\" type=\"line\"/>\n      <point x=\"203\" y=\"365\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shin-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shin-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E9\"/>\n  <anchor x=\"628\" y=\"393\" name=\"center\"/>\n  <anchor x=\"262\" y=\"1200\" name=\"topleft\"/>\n  <anchor x=\"930\" y=\"1201\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"410\" y=\"-19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"-19\"/>\n      <point x=\"1064\" y=\"219\"/>\n      <point x=\"1064\" y=\"589\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1064\" y=\"1200\" type=\"line\"/>\n      <point x=\"806\" y=\"1200\" type=\"line\"/>\n      <point x=\"806\" y=\"589\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"366\"/>\n      <point x=\"702\" y=\"251\"/>\n      <point x=\"476\" y=\"251\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"251\"/>\n      <point x=\"206\" y=\"263\"/>\n      <point x=\"180\" y=\"271\" type=\"curve\"/>\n      <point x=\"130\" y=\"0\" type=\"line\"/>\n      <point x=\"208\" y=\"-11\"/>\n      <point x=\"335\" y=\"-19\"/>\n    </contour>\n    <contour>\n      <point x=\"386\" y=\"-1\" type=\"line\"/>\n      <point x=\"386\" y=\"1200\" type=\"line\"/>\n      <point x=\"128\" y=\"1200\" type=\"line\"/>\n      <point x=\"128\" y=\"1\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"496\" y=\"473\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"473\"/>\n      <point x=\"698\" y=\"568\"/>\n      <point x=\"698\" y=\"809\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"1200\" type=\"line\"/>\n      <point x=\"495\" y=\"1200\" type=\"line\"/>\n      <point x=\"495\" y=\"818\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"680\"/>\n      <point x=\"476\" y=\"624\"/>\n      <point x=\"437\" y=\"624\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"624\"/>\n      <point x=\"388\" y=\"633\"/>\n      <point x=\"372\" y=\"652\" type=\"curve\"/>\n      <point x=\"333\" y=\"563\" type=\"line\"/>\n      <point x=\"361\" y=\"520\"/>\n      <point x=\"414\" y=\"473\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shindagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shindagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB49\"/>\n  <anchor x=\"628\" y=\"393.2\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"629\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"321\"/>\n      <point x=\"702\" y=\"353\"/>\n      <point x=\"702\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"433\"/>\n      <point x=\"668\" y=\"466\"/>\n      <point x=\"628\" y=\"466\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"588\" y=\"466\"/>\n      <point x=\"556\" y=\"433\"/>\n      <point x=\"556\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"353\"/>\n      <point x=\"589\" y=\"321\"/>\n    </contour>\n    <component base=\"shin-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shindageshshindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shindageshshindot-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2C\"/>\n  <anchor x=\"628\" y=\"393.2\" name=\"_center\"/>\n  <anchor x=\"628\" y=\"393\" name=\"center\"/>\n  <anchor x=\"262\" y=\"1200\" name=\"topleft\"/>\n  <anchor x=\"930\" y=\"1201\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"629\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"321\"/>\n      <point x=\"702\" y=\"353\"/>\n      <point x=\"702\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"433\"/>\n      <point x=\"668\" y=\"466\"/>\n      <point x=\"628\" y=\"466\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"588\" y=\"466\"/>\n      <point x=\"556\" y=\"433\"/>\n      <point x=\"556\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"353\"/>\n      <point x=\"589\" y=\"321\"/>\n    </contour>\n    <component base=\"shinshindot-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shindageshsindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shindageshsindot-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2D\"/>\n  <anchor x=\"628\" y=\"393.2\" name=\"_center\"/>\n  <anchor x=\"628\" y=\"393\" name=\"center\"/>\n  <anchor x=\"262\" y=\"1200\" name=\"topleft\"/>\n  <anchor x=\"930\" y=\"1201\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"629\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"321\"/>\n      <point x=\"702\" y=\"353\"/>\n      <point x=\"702\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"433\"/>\n      <point x=\"668\" y=\"466\"/>\n      <point x=\"628\" y=\"466\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"588\" y=\"466\"/>\n      <point x=\"556\" y=\"433\"/>\n      <point x=\"556\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"353\"/>\n      <point x=\"589\" y=\"321\"/>\n    </contour>\n    <component base=\"shinsindot-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shindot-hb\" format=\"2\">\n  <unicode hex=\"05C1\"/>\n  <anchor x=\"600\" y=\"1200\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1379\"/>\n      <point x=\"691\" y=\"1419\"/>\n      <point x=\"691\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1519\"/>\n      <point x=\"650\" y=\"1560\"/>\n      <point x=\"600\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1560\"/>\n      <point x=\"509\" y=\"1519\"/>\n      <point x=\"509\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1419\"/>\n      <point x=\"550\" y=\"1379\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shinshindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shinshindot-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2A\"/>\n  <outline>\n    <component base=\"shin-hb\"/>\n    <component base=\"shindot-hb\" xOffset=\"330\" yOffset=\"1\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/shinsindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shinsindot-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2B\"/>\n  <outline>\n    <component base=\"shin-hb\"/>\n    <component base=\"sindot-hb\" xOffset=\"-338\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sigma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sigma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C3\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"566\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"565\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"846\" y=\"-20\"/>\n      <point x=\"1031\" y=\"152\"/>\n      <point x=\"1031\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1031\" y=\"592\"/>\n      <point x=\"927\" y=\"739\"/>\n      <point x=\"789\" y=\"763\" type=\"curve\"/>\n      <point x=\"789\" y=\"997\" type=\"line\"/>\n      <point x=\"565\" y=\"1060\" type=\"line\"/>\n      <point x=\"263\" y=\"1060\"/>\n      <point x=\"89\" y=\"863\"/>\n      <point x=\"89\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"89\" y=\"176\"/>\n      <point x=\"263\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"565\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"237\"/>\n      <point x=\"366\" y=\"339\"/>\n      <point x=\"366\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"366\" y=\"701\"/>\n      <point x=\"438\" y=\"803\"/>\n      <point x=\"565\" y=\"803\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"803\"/>\n      <point x=\"754\" y=\"701\"/>\n      <point x=\"754\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"339\"/>\n      <point x=\"685\" y=\"237\"/>\n    </contour>\n    <contour>\n      <point x=\"565\" y=\"803\" type=\"line\"/>\n      <point x=\"1130\" y=\"803\" type=\"line\"/>\n      <point x=\"1130\" y=\"1060\" type=\"line\"/>\n      <point x=\"565\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sigmafinal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sigmafinal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C2\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"666\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"680\" y=\"-480\" type=\"line\"/>\n      <point x=\"905\" y=\"-421\"/>\n      <point x=\"1035\" y=\"-274\"/>\n      <point x=\"1035\" y=\"-76\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1035\" y=\"120\"/>\n      <point x=\"930\" y=\"234\"/>\n      <point x=\"746\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"237\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"237\"/>\n      <point x=\"396\" y=\"343\"/>\n      <point x=\"396\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"722\"/>\n      <point x=\"496\" y=\"823\"/>\n      <point x=\"666\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"823\"/>\n      <point x=\"871\" y=\"771\"/>\n      <point x=\"926\" y=\"679\" type=\"curve\"/>\n      <point x=\"1114\" y=\"860\" type=\"line\"/>\n      <point x=\"1048\" y=\"1000\"/>\n      <point x=\"888\" y=\"1080\"/>\n      <point x=\"674\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"1080\"/>\n      <point x=\"119\" y=\"878\"/>\n      <point x=\"119\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"176\"/>\n      <point x=\"294\" y=\"-20\"/>\n      <point x=\"602\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"-20\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"722\" y=\"-21\"/>\n      <point x=\"750\" y=\"-51\"/>\n      <point x=\"750\" y=\"-101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"-161\"/>\n      <point x=\"690\" y=\"-212\"/>\n      <point x=\"585\" y=\"-242\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sindhiampersand-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sindhiampersand-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FD\"/>\n  <outline>\n    <component base=\"hamza-ar\"/>\n    <component base=\"doubleverticalbarbelowSymbol-ar.comb\" xOffset=\"25\" yOffset=\"-9\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hamza-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hamza-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sindhipostpositionmen-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sindhipostpositionmen-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FE\"/>\n  <outline>\n    <component base=\"meem-ar\"/>\n    <component base=\"doubleverticalbarbelowSymbol-ar.comb\" xOffset=\"90\" yOffset=\"-79\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=meem-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=meem-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sindot-hb\" format=\"2\">\n  <unicode hex=\"05C2\"/>\n  <anchor x=\"600\" y=\"1200\" name=\"_topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1379\"/>\n      <point x=\"691\" y=\"1419\"/>\n      <point x=\"691\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1519\"/>\n      <point x=\"650\" y=\"1560\"/>\n      <point x=\"600\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1560\"/>\n      <point x=\"509\" y=\"1519\"/>\n      <point x=\"509\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1419\"/>\n      <point x=\"550\" y=\"1379\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/six-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0666\"/>\n  <outline>\n    <contour>\n      <point x=\"757\" y=\"0\" type=\"curve\"/>\n      <point x=\"1037\" y=\"0\" type=\"line\"/>\n      <point x=\"969\" y=\"394\"/>\n      <point x=\"892\" y=\"940\"/>\n      <point x=\"862\" y=\"1420\" type=\"curve\"/>\n      <point x=\"629\" y=\"1408\"/>\n      <point x=\"312\" y=\"1408\"/>\n      <point x=\"109\" y=\"1420\" type=\"curve\"/>\n      <point x=\"109\" y=\"1133\" type=\"line\"/>\n      <point x=\"327\" y=\"1112\"/>\n      <point x=\"567\" y=\"1117\"/>\n      <point x=\"772\" y=\"1133\" type=\"curve\"/>\n      <point x=\"611\" y=\"1276\" type=\"line\"/>\n      <point x=\"626\" y=\"913\"/>\n      <point x=\"696\" y=\"395\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/six-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"704\" y=\"-6\" type=\"curve\"/>\n      <point x=\"894\" y=\"4\" type=\"line\"/>\n      <point x=\"870\" y=\"169\"/>\n      <point x=\"852\" y=\"410\"/>\n      <point x=\"840\" y=\"631\" type=\"curve\"/>\n      <point x=\"732\" y=\"630\"/>\n      <point x=\"506\" y=\"630\"/>\n      <point x=\"411\" y=\"633\" type=\"curve\"/>\n      <point x=\"409\" y=\"451\" type=\"line\"/>\n      <point x=\"532\" y=\"449\"/>\n      <point x=\"667\" y=\"449\"/>\n      <point x=\"764\" y=\"452\" type=\"curve\"/>\n      <point x=\"661\" y=\"576\" type=\"line\"/>\n      <point x=\"665\" y=\"389\"/>\n      <point x=\"686\" y=\"163\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/six-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"six-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/six-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F6\"/>\n  <outline>\n    <contour>\n      <point x=\"355\" y=\"-10\" type=\"line\"/>\n      <point x=\"458\" y=\"236\"/>\n      <point x=\"684\" y=\"526\"/>\n      <point x=\"1103\" y=\"680\" type=\"curve\"/>\n      <point x=\"1066\" y=\"985\" type=\"line\"/>\n      <point x=\"971\" y=\"960\"/>\n      <point x=\"852\" y=\"938\"/>\n      <point x=\"759\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"938\"/>\n      <point x=\"547\" y=\"961\"/>\n      <point x=\"547\" y=\"1049\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"1125\"/>\n      <point x=\"622\" y=\"1154\"/>\n      <point x=\"771\" y=\"1154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"1154\"/>\n      <point x=\"934\" y=\"1142\"/>\n      <point x=\"983\" y=\"1133\" type=\"curve\"/>\n      <point x=\"996\" y=\"1387\" type=\"line\"/>\n      <point x=\"928\" y=\"1417\"/>\n      <point x=\"828\" y=\"1439\"/>\n      <point x=\"726\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"1439\"/>\n      <point x=\"298\" y=\"1291\"/>\n      <point x=\"298\" y=\"1055\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"787\"/>\n      <point x=\"458\" y=\"696\"/>\n      <point x=\"634\" y=\"696\" type=\"curve\"/>\n      <point x=\"634\" y=\"644\" type=\"line\"/>\n      <point x=\"823\" y=\"660\" type=\"line\"/>\n      <point x=\"807\" y=\"740\" type=\"line\"/>\n      <point x=\"391\" y=\"619\"/>\n      <point x=\"214\" y=\"377\"/>\n      <point x=\"127\" y=\"141\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/six-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"552\" y=\"-6\" type=\"line\"/>\n      <point x=\"613\" y=\"103\"/>\n      <point x=\"666\" y=\"173\"/>\n      <point x=\"871\" y=\"236\" type=\"curve\"/>\n      <point x=\"845\" y=\"409\" type=\"line\"/>\n      <point x=\"794\" y=\"395\"/>\n      <point x=\"734\" y=\"382\"/>\n      <point x=\"694\" y=\"382\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"382\"/>\n      <point x=\"627\" y=\"396\"/>\n      <point x=\"627\" y=\"431\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"462\"/>\n      <point x=\"647\" y=\"476\"/>\n      <point x=\"718\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"476\"/>\n      <point x=\"782\" y=\"472\"/>\n      <point x=\"811\" y=\"468\" type=\"curve\"/>\n      <point x=\"817\" y=\"615\" type=\"line\"/>\n      <point x=\"775\" y=\"629\"/>\n      <point x=\"734\" y=\"637\"/>\n      <point x=\"680\" y=\"637\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"637\"/>\n      <point x=\"466\" y=\"566\"/>\n      <point x=\"466\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"350\"/>\n      <point x=\"504\" y=\"290\"/>\n      <point x=\"584\" y=\"287\" type=\"curve\"/>\n      <point x=\"587\" y=\"258\" type=\"line\"/>\n      <point x=\"733\" y=\"281\" type=\"line\"/>\n      <point x=\"732\" y=\"335\" type=\"line\"/>\n      <point x=\"544\" y=\"288\"/>\n      <point x=\"447\" y=\"170\"/>\n      <point x=\"406\" y=\"60\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/six-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"six-persianinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/six.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sixsuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/six.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0036\"/>\n  <outline>\n    <contour>\n      <point x=\"610\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"-20\"/>\n      <point x=\"1111\" y=\"152\"/>\n      <point x=\"1111\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"736\"/>\n      <point x=\"971\" y=\"900\"/>\n      <point x=\"723\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"900\"/>\n      <point x=\"454\" y=\"816\"/>\n      <point x=\"418\" y=\"668\" type=\"curve\"/>\n      <point x=\"336\" y=\"668\" type=\"line\"/>\n      <point x=\"111\" y=\"486\" type=\"line\"/>\n      <point x=\"111\" y=\"168\"/>\n      <point x=\"296\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"612\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"232\"/>\n      <point x=\"390\" y=\"307\"/>\n      <point x=\"390\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"571\"/>\n      <point x=\"472\" y=\"649\"/>\n      <point x=\"616\" y=\"649\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"649\"/>\n      <point x=\"832\" y=\"577\"/>\n      <point x=\"832\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"310\"/>\n      <point x=\"752\" y=\"232\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"486\" type=\"line\"/>\n      <point x=\"392\" y=\"584\" type=\"line\"/>\n      <point x=\"392\" y=\"666\" type=\"line\"/>\n      <point x=\"392\" y=\"990\"/>\n      <point x=\"591\" y=\"1157\"/>\n      <point x=\"1001\" y=\"1174\" type=\"curve\"/>\n      <point x=\"981\" y=\"1426\" type=\"line\"/>\n      <point x=\"394\" y=\"1398\"/>\n      <point x=\"111\" y=\"1119\"/>\n      <point x=\"111\" y=\"581\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/six.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sixsuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sixinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sixinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2086\"/>\n  <outline>\n    <component base=\"sixsuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sixsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sixsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2076\"/>\n  <outline>\n    <contour>\n      <point x=\"449\" y=\"959\" type=\"line\"/>\n      <point x=\"532\" y=\"1104\" type=\"line\"/>\n      <point x=\"532\" y=\"1207\"/>\n      <point x=\"619\" y=\"1253\"/>\n      <point x=\"825\" y=\"1257\" type=\"curve\"/>\n      <point x=\"817\" y=\"1440\" type=\"line\"/>\n      <point x=\"458\" y=\"1429\"/>\n      <point x=\"305\" y=\"1320\"/>\n      <point x=\"305\" y=\"1077\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"1056\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"607\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"793\"/>\n      <point x=\"895\" y=\"875\"/>\n      <point x=\"895\" y=\"1016\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"1129\"/>\n      <point x=\"833\" y=\"1193\"/>\n      <point x=\"722\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"1193\"/>\n      <point x=\"576\" y=\"1161\"/>\n      <point x=\"557\" y=\"1105\" type=\"curve\"/>\n      <point x=\"509\" y=\"1105\" type=\"line\"/>\n      <point x=\"446\" y=\"969\" type=\"line\"/>\n      <point x=\"305\" y=\"1056\" type=\"line\"/>\n      <point x=\"305\" y=\"876\"/>\n      <point x=\"400\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"602\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"948\"/>\n      <point x=\"531\" y=\"965\"/>\n      <point x=\"531\" y=\"998\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"1031\"/>\n      <point x=\"557\" y=\"1050\"/>\n      <point x=\"602\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"1050\"/>\n      <point x=\"669\" y=\"1032\"/>\n      <point x=\"669\" y=\"1001\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"967\"/>\n      <point x=\"645\" y=\"948\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002F\"/>\n  <outline>\n    <contour>\n      <point x=\"80\" y=\"-190\" type=\"line\"/>\n      <point x=\"355\" y=\"-190\" type=\"line\"/>\n      <point x=\"1130\" y=\"1610\" type=\"line\"/>\n      <point x=\"855\" y=\"1610\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"120\"/>\n    <component base=\"asterisk\" xOffset=\"1142\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>asterisk</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_backslash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_backslash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"backslash\" xOffset=\"1050\"/>\n    <component base=\"slash\" xOffset=\"150\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"835\" type=\"line\"/>\n      <point x=\"671\" y=\"835\" type=\"line\"/>\n      <point x=\"778\" y=\"1085\" type=\"line\"/>\n      <point x=\"-20\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"333\" type=\"line\"/>\n      <point x=\"446\" y=\"333\" type=\"line\"/>\n      <point x=\"553\" y=\"583\" type=\"line\"/>\n      <point x=\"-20\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"422\" y=\"333\" type=\"line\"/>\n      <point x=\"1219\" y=\"333\" type=\"line\"/>\n      <point x=\"1219\" y=\"583\" type=\"line\"/>\n      <point x=\"529\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"835\" type=\"line\"/>\n      <point x=\"1219\" y=\"835\" type=\"line\"/>\n      <point x=\"1219\" y=\"1085\" type=\"line\"/>\n      <point x=\"754\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1248\" y=\"197\" type=\"line\"/>\n      <point x=\"2205\" y=\"575\" type=\"line\"/>\n      <point x=\"2205\" y=\"843\" type=\"line\"/>\n      <point x=\"960\" y=\"1348\" type=\"line\"/>\n      <point x=\"960\" y=\"1079\" type=\"line\"/>\n      <point x=\"1889\" y=\"726\" type=\"line\"/>\n      <point x=\"1889\" y=\"692\" type=\"line\"/>\n      <point x=\"1248\" y=\"467\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"120\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"200\"/>\n    <component base=\"slash\" xOffset=\"1082\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_slash_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"835\" type=\"line\"/>\n      <point x=\"940\" y=\"835\" type=\"line\"/>\n      <point x=\"1048\" y=\"1085\" type=\"line\"/>\n      <point x=\"-20\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"333\" type=\"line\"/>\n      <point x=\"714\" y=\"333\" type=\"line\"/>\n      <point x=\"821\" y=\"583\" type=\"line\"/>\n      <point x=\"-20\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"270\"/>\n    <component base=\"slash\" xOffset=\"952\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_slash_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1376\" y=\"333\" type=\"line\"/>\n      <point x=\"2450\" y=\"333\" type=\"line\"/>\n      <point x=\"2450\" y=\"583\" type=\"line\"/>\n      <point x=\"1484\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"333\" type=\"line\"/>\n      <point x=\"680\" y=\"333\" type=\"line\"/>\n      <point x=\"786\" y=\"583\" type=\"line\"/>\n      <point x=\"-50\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"835\" type=\"line\"/>\n      <point x=\"903\" y=\"835\" type=\"line\"/>\n      <point x=\"1009\" y=\"1085\" type=\"line\"/>\n      <point x=\"-50\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1602\" y=\"835\" type=\"line\"/>\n      <point x=\"2450\" y=\"835\" type=\"line\"/>\n      <point x=\"2450\" y=\"1085\" type=\"line\"/>\n      <point x=\"1709\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"250\"/>\n    <component base=\"slash\" xOffset=\"932\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_slash_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2420\" y=\"583\" type=\"line\"/>\n      <point x=\"1370\" y=\"583\" type=\"line\"/>\n      <point x=\"1262\" y=\"333\" type=\"line\"/>\n      <point x=\"2420\" y=\"333\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2420\" y=\"1085\" type=\"line\"/>\n      <point x=\"1596\" y=\"1085\" type=\"line\"/>\n      <point x=\"1489\" y=\"835\" type=\"line\"/>\n      <point x=\"2420\" y=\"835\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"134\"/>\n    <component base=\"slash\" xOffset=\"816\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/slash_slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"2260\"/>\n    <component base=\"slash\" xOffset=\"250\"/>\n    <component base=\"slash\" xOffset=\"1270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/softhyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"softhyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AD\"/>\n  <outline>\n    <component base=\"hyphen\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>hyphen</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/softsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"softsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044C\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"428\" y=\"0\" type=\"line\"/>\n      <point x=\"744\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"0\"/>\n      <point x=\"1121\" y=\"136\"/>\n      <point x=\"1121\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"611\"/>\n      <point x=\"984\" y=\"747\"/>\n      <point x=\"744\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"747\" type=\"line\"/>\n      <point x=\"408\" y=\"495\" type=\"line\"/>\n      <point x=\"701\" y=\"495\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"495\"/>\n      <point x=\"844\" y=\"454\"/>\n      <point x=\"844\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"293\"/>\n      <point x=\"796\" y=\"252\"/>\n      <point x=\"701\" y=\"252\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"171\" y=\"0\" type=\"line\"/>\n      <point x=\"442\" y=\"0\" type=\"line\"/>\n      <point x=\"442\" y=\"1060\" type=\"line\"/>\n      <point x=\"171\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/softsign-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"softsign-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"230\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"618\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"938\" y=\"-20\"/>\n      <point x=\"1121\" y=\"135\"/>\n      <point x=\"1121\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"668\"/>\n      <point x=\"986\" y=\"818\"/>\n      <point x=\"749\" y=\"818\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"588\" y=\"818\"/>\n      <point x=\"470\" y=\"739\"/>\n      <point x=\"432\" y=\"601\" type=\"curve\"/>\n      <point x=\"402\" y=\"601\" type=\"line\"/>\n      <point x=\"402\" y=\"1060\" type=\"line\"/>\n      <point x=\"131\" y=\"1060\" type=\"line\"/>\n      <point x=\"131\" y=\"397\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"133\" y=\"130\"/>\n      <point x=\"307\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"620\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"236\"/>\n      <point x=\"402\" y=\"289\"/>\n      <point x=\"402\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"502\"/>\n      <point x=\"483\" y=\"563\"/>\n      <point x=\"626\" y=\"563\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"563\"/>\n      <point x=\"844\" y=\"505\"/>\n      <point x=\"844\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"297\"/>\n      <point x=\"762\" y=\"236\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/space.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"space\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0020\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/spaceC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"spaceControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2420\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"P.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>P.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/spadeB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"spadeBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2660\"/>\n  <outline>\n    <contour>\n      <point x=\"277\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"162\"/>\n      <point x=\"471\" y=\"236\"/>\n      <point x=\"471\" y=\"363\" type=\"curve\"/>\n      <point x=\"749\" y=\"363\" type=\"line\"/>\n      <point x=\"749\" y=\"236\"/>\n      <point x=\"817\" y=\"162\"/>\n      <point x=\"933\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1068\" y=\"162\"/>\n      <point x=\"1144\" y=\"265\"/>\n      <point x=\"1144\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1144\" y=\"793\"/>\n      <point x=\"954\" y=\"1080\"/>\n      <point x=\"610\" y=\"1280\" type=\"curve\"/>\n      <point x=\"261\" y=\"1083\"/>\n      <point x=\"56\" y=\"796\"/>\n      <point x=\"56\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"56\" y=\"265\"/>\n      <point x=\"137\" y=\"162\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"60\" type=\"line\"/>\n      <point x=\"714\" y=\"60\" type=\"line\"/>\n      <point x=\"714\" y=\"1060\" type=\"line\"/>\n      <point x=\"506\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/startO_fH_eadingC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfHeadingControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2401\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"H.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>H.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/startO_fH_eadingC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfHeadingControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"317\" y=\"1236\" type=\"line\"/>\n      <point x=\"75\" y=\"1236\" type=\"line\"/>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"317\" y=\"186\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"197\" y=\"1236\" type=\"line\"/>\n      <point x=\"197\" y=\"993\" type=\"line\"/>\n      <point x=\"1125\" y=\"993\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/startO_fT_extC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfTextControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2402\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"X.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>X.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/startO_fT_extC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfTextControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"429\" type=\"line\"/>\n      <point x=\"75\" y=\"429\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"479\" y=\"186\" type=\"line\"/>\n      <point x=\"721\" y=\"186\" type=\"line\"/>\n      <point x=\"721\" y=\"1236\" type=\"line\"/>\n      <point x=\"479\" y=\"1236\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sterling.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sterling\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A3\"/>\n  <outline>\n    <contour>\n      <point x=\"115\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"243\" type=\"line\"/>\n      <point x=\"503\" y=\"376\"/>\n      <point x=\"556\" y=\"494\"/>\n      <point x=\"556\" y=\"627\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"973\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"1111\"/>\n      <point x=\"636\" y=\"1187\"/>\n      <point x=\"752\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"1187\"/>\n      <point x=\"889\" y=\"1140\"/>\n      <point x=\"930\" y=\"1057\" type=\"curve\"/>\n      <point x=\"1132\" y=\"1213\" type=\"line\"/>\n      <point x=\"1068\" y=\"1357\"/>\n      <point x=\"928\" y=\"1440\"/>\n      <point x=\"743\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"1440\"/>\n      <point x=\"275\" y=\"1294\"/>\n      <point x=\"275\" y=\"1036\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"275\" y=\"627\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"275\" y=\"494\"/>\n      <point x=\"223\" y=\"377\"/>\n      <point x=\"115\" y=\"243\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"1113\" y=\"0\" type=\"line\"/>\n      <point x=\"1113\" y=\"243\" type=\"line\"/>\n      <point x=\"192\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"533\" type=\"line\"/>\n      <point x=\"897\" y=\"533\" type=\"line\"/>\n      <point x=\"897\" y=\"767\" type=\"line\"/>\n      <point x=\"109\" y=\"767\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/strictlyequivalentto.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"strictlyequivalentto\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2263\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"1088\" type=\"line\"/>\n      <point x=\"1100\" y=\"1088\" type=\"line\"/>\n      <point x=\"1100\" y=\"1320\" type=\"line\"/>\n      <point x=\"100\" y=\"1320\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"108\" type=\"line\"/>\n      <point x=\"1100\" y=\"108\" type=\"line\"/>\n      <point x=\"1100\" y=\"340\" type=\"line\"/>\n      <point x=\"100\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"434\" type=\"line\"/>\n      <point x=\"1100\" y=\"434\" type=\"line\"/>\n      <point x=\"1100\" y=\"667\" type=\"line\"/>\n      <point x=\"100\" y=\"667\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"761\" type=\"line\"/>\n      <point x=\"1100\" y=\"761\" type=\"line\"/>\n      <point x=\"1100\" y=\"994\" type=\"line\"/>\n      <point x=\"100\" y=\"994\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/substituteC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"substituteControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241A\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"B.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/substituteC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"substituteControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"747\" y=\"604\" type=\"line\"/>\n      <point x=\"747\" y=\"625\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"740\"/>\n      <point x=\"663\" y=\"818\"/>\n      <point x=\"500\" y=\"868\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"884\"/>\n      <point x=\"428\" y=\"900\"/>\n      <point x=\"428\" y=\"923\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"969\"/>\n      <point x=\"469\" y=\"990\"/>\n      <point x=\"560\" y=\"990\" type=\"curve\"/>\n      <point x=\"558\" y=\"1240\" type=\"line\"/>\n      <point x=\"277\" y=\"1240\"/>\n      <point x=\"148\" y=\"1152\"/>\n      <point x=\"148\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"856\"/>\n      <point x=\"200\" y=\"770\"/>\n      <point x=\"310\" y=\"733\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"692\"/>\n      <point x=\"485\" y=\"657\"/>\n      <point x=\"485\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"604\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"920\" y=\"912\" type=\"curve\"/>\n      <point x=\"1038\" y=\"1128\" type=\"line\"/>\n      <point x=\"933\" y=\"1205\"/>\n      <point x=\"782\" y=\"1240\"/>\n      <point x=\"558\" y=\"1240\" type=\"curve\"/>\n      <point x=\"560\" y=\"990\" type=\"line\"/>\n      <point x=\"705\" y=\"990\"/>\n      <point x=\"818\" y=\"965\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"18\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/substituteF_ormT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"substituteFormTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2426\"/>\n  <outline>\n    <contour>\n      <point x=\"753\" y=\"489\" type=\"line\"/>\n      <point x=\"753\" y=\"573\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"710\"/>\n      <point x=\"689\" y=\"799\"/>\n      <point x=\"556\" y=\"887\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"934\"/>\n      <point x=\"444\" y=\"998\"/>\n      <point x=\"444\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"1144\"/>\n      <point x=\"501\" y=\"1188\"/>\n      <point x=\"603\" y=\"1188\" type=\"curve\"/>\n      <point x=\"584\" y=\"1440\" type=\"line\"/>\n      <point x=\"313\" y=\"1440\"/>\n      <point x=\"157\" y=\"1316\"/>\n      <point x=\"157\" y=\"1102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"157\" y=\"941\"/>\n      <point x=\"236\" y=\"807\"/>\n      <point x=\"396\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"662\"/>\n      <point x=\"491\" y=\"608\"/>\n      <point x=\"491\" y=\"526\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"489\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"943\" y=\"1016\" type=\"curve\"/>\n      <point x=\"1089\" y=\"1204\" type=\"line\"/>\n      <point x=\"991\" y=\"1346\"/>\n      <point x=\"796\" y=\"1440\"/>\n      <point x=\"584\" y=\"1440\" type=\"curve\"/>\n      <point x=\"603\" y=\"1188\" type=\"line\"/>\n      <point x=\"728\" y=\"1188\"/>\n      <point x=\"858\" y=\"1120\"/>\n    </contour>\n    <component base=\"period\" xScale=\"-1\" xOffset=\"1218\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sukun-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sukun-ar\" format=\"2\">\n  <unicode hex=\"0652\"/>\n  <anchor x=\"601\" y=\"1054\" name=\"_top\"/>\n  <anchor x=\"593\" y=\"1487\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"601\" y=\"1123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"1123\"/>\n      <point x=\"789\" y=\"1185\"/>\n      <point x=\"789\" y=\"1301\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"1426\"/>\n      <point x=\"694\" y=\"1499\"/>\n      <point x=\"605\" y=\"1499\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"1499\"/>\n      <point x=\"415\" y=\"1402\"/>\n      <point x=\"415\" y=\"1297\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"415\" y=\"1185\"/>\n      <point x=\"488\" y=\"1123\"/>\n    </contour>\n    <contour>\n      <point x=\"597\" y=\"1253\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"1253\"/>\n      <point x=\"537\" y=\"1271\"/>\n      <point x=\"537\" y=\"1305\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"537\" y=\"1340\"/>\n      <point x=\"562\" y=\"1372\"/>\n      <point x=\"599\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"633\" y=\"1372\"/>\n      <point x=\"660\" y=\"1345\"/>\n      <point x=\"660\" y=\"1306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"1268\"/>\n      <point x=\"632\" y=\"1253\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/summation.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"summation\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2211\"/>\n  <outline>\n    <contour>\n      <point x=\"354\" y=\"-81\" type=\"line\"/>\n      <point x=\"864\" y=\"613\" type=\"line\"/>\n      <point x=\"370\" y=\"1309\" type=\"line\"/>\n      <point x=\"133\" y=\"1177\" type=\"line\"/>\n      <point x=\"534\" y=\"613\" type=\"line\"/>\n      <point x=\"133\" y=\"41\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"133\" y=\"-200\" type=\"line\"/>\n      <point x=\"1103\" y=\"-200\" type=\"line\"/>\n      <point x=\"1103\" y=\"41\" type=\"line\"/>\n      <point x=\"133\" y=\"41\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"133\" y=\"1177\" type=\"line\"/>\n      <point x=\"1083\" y=\"1177\" type=\"line\"/>\n      <point x=\"1083\" y=\"1420\" type=\"line\"/>\n      <point x=\"133\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/sunW_ithR_ays.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sunWithRays\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263C\"/>\n  <outline>\n    <contour>\n      <point x=\"599\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"355\"/>\n      <point x=\"971\" y=\"496\"/>\n      <point x=\"971\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"924\"/>\n      <point x=\"823\" y=\"1065\"/>\n      <point x=\"599\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"1065\"/>\n      <point x=\"227\" y=\"924\"/>\n      <point x=\"227\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"496\"/>\n      <point x=\"375\" y=\"355\"/>\n    </contour>\n    <contour>\n      <point x=\"253\" y=\"228\" type=\"line\"/>\n      <point x=\"461\" y=\"436\" type=\"line\"/>\n      <point x=\"328\" y=\"569\" type=\"line\"/>\n      <point x=\"119\" y=\"361\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"507\" y=\"122\" type=\"line\"/>\n      <point x=\"695\" y=\"123\" type=\"line\"/>\n      <point x=\"695\" y=\"418\" type=\"line\"/>\n      <point x=\"507\" y=\"418\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"13\" y=\"615\" type=\"line\"/>\n      <point x=\"309\" y=\"615\" type=\"line\"/>\n      <point x=\"309\" y=\"803\" type=\"line\"/>\n      <point x=\"12\" y=\"803\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"555\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"555\"/>\n      <point x=\"436\" y=\"616\"/>\n      <point x=\"436\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"804\"/>\n      <point x=\"500\" y=\"865\"/>\n      <point x=\"599\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"865\"/>\n      <point x=\"762\" y=\"804\"/>\n      <point x=\"762\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"616\"/>\n      <point x=\"698\" y=\"555\"/>\n    </contour>\n    <contour>\n      <point x=\"328\" y=\"849\" type=\"line\"/>\n      <point x=\"461\" y=\"982\" type=\"line\"/>\n      <point x=\"252\" y=\"1191\" type=\"line\"/>\n      <point x=\"119\" y=\"1057\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"949\" y=\"227\" type=\"line\"/>\n      <point x=\"1082\" y=\"361\" type=\"line\"/>\n      <point x=\"871\" y=\"571\" type=\"line\"/>\n      <point x=\"738\" y=\"439\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"889\" y=\"615\" type=\"line\"/>\n      <point x=\"1188\" y=\"615\" type=\"line\"/>\n      <point x=\"1188\" y=\"803\" type=\"line\"/>\n      <point x=\"889\" y=\"803\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"507\" y=\"998\" type=\"line\"/>\n      <point x=\"695\" y=\"998\" type=\"line\"/>\n      <point x=\"695\" y=\"1297\" type=\"line\"/>\n      <point x=\"507\" y=\"1297\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"871\" y=\"847\" type=\"line\"/>\n      <point x=\"1082\" y=\"1057\" type=\"line\"/>\n      <point x=\"949\" y=\"1191\" type=\"line\"/>\n      <point x=\"738\" y=\"979\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/synchronousI_dleC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"synchronousIdleControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2416\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"Y.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>Y.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/synchronousI_dleC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"synchronousIdleControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"267\" y=\"185\" type=\"line\"/>\n      <point x=\"509\" y=\"185\" type=\"line\"/>\n      <point x=\"509\" y=\"1236\" type=\"line\"/>\n      <point x=\"267\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"306\" y=\"185\" type=\"line\"/>\n      <point x=\"306\" y=\"429\" type=\"line\"/>\n      <point x=\"75\" y=\"429\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"933\" y=\"185\" type=\"line\"/>\n      <point x=\"933\" y=\"1236\" type=\"line\"/>\n      <point x=\"691\" y=\"1236\" type=\"line\"/>\n      <point x=\"691\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"429\" type=\"line\"/>\n      <point x=\"834\" y=\"429\" type=\"line\"/>\n      <point x=\"834\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"305\" y=\"992\" type=\"line\"/>\n      <point x=\"836\" y=\"992\" type=\"line\"/>\n      <point x=\"836\" y=\"1236\" type=\"line\"/>\n      <point x=\"305\" y=\"1236\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/t.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"t\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0074\"/>\n  <anchor x=\"665\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"442\" y=\"570\" name=\"center\"/>\n  <anchor x=\"832\" y=\"1180\" name=\"top\"/>\n  <anchor x=\"1080\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"825\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"-20\"/>\n      <point x=\"999\" y=\"-12\"/>\n      <point x=\"1087\" y=\"4\" type=\"curve\"/>\n      <point x=\"1063\" y=\"257\" type=\"line\"/>\n      <point x=\"973\" y=\"245\"/>\n      <point x=\"906\" y=\"237\"/>\n      <point x=\"845\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"237\"/>\n      <point x=\"577\" y=\"306\"/>\n      <point x=\"577\" y=\"468\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"580\" type=\"line\"/>\n      <point x=\"307\" y=\"580\" type=\"line\"/>\n      <point x=\"307\" y=\"442\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"119\"/>\n      <point x=\"459\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"307\" y=\"517\" type=\"line\"/>\n      <point x=\"577\" y=\"517\" type=\"line\"/>\n      <point x=\"577\" y=\"1380\" type=\"line\"/>\n      <point x=\"307\" y=\"1380\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"53\" y=\"811\" type=\"line\"/>\n      <point x=\"1047\" y=\"811\" type=\"line\"/>\n      <point x=\"1047\" y=\"1060\" type=\"line\"/>\n      <point x=\"53\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1126\" y=\"285\"/>\n      <point x=\"1038\" y=\"286\"/>\n      <point x=\"966\" y=\"291\" type=\"curve\"/>\n      <point x=\"901\" y=\"75\" type=\"line\"/>\n      <point x=\"1012\" y=\"72\" type=\"line\"/>\n      <point x=\"1045\" y=\"18\"/>\n      <point x=\"1091\" y=\"-10\"/>\n    </contour>\n    <component base=\"tah-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0637\"/>\n  <anchor x=\"552\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"759\" y=\"1135\" name=\"top\"/>\n  <anchor x=\"760\" y=\"885\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"977\" y=\"-10\"/>\n      <point x=\"1168\" y=\"118\"/>\n      <point x=\"1168\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1168\" y=\"644\"/>\n      <point x=\"1008\" y=\"888\"/>\n      <point x=\"776\" y=\"888\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"888\"/>\n      <point x=\"407\" y=\"698\"/>\n      <point x=\"130\" y=\"265\" type=\"curve\"/>\n      <point x=\"343\" y=\"182\" type=\"line\"/>\n      <point x=\"506\" y=\"473\"/>\n      <point x=\"638\" y=\"602\"/>\n      <point x=\"747\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"602\"/>\n      <point x=\"923\" y=\"486\"/>\n      <point x=\"923\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"923\" y=\"318\"/>\n      <point x=\"874\" y=\"285\"/>\n      <point x=\"497\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"337\" y=\"285\"/>\n      <point x=\"178\" y=\"295\"/>\n      <point x=\"18\" y=\"305\" type=\"curve\"/>\n      <point x=\"10\" y=\"40\" type=\"line\"/>\n      <point x=\"155\" y=\"0\"/>\n      <point x=\"341\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"175\" y=\"188\" type=\"line\"/>\n      <point x=\"452\" y=\"585\" type=\"line\"/>\n      <point x=\"375\" y=\"637\" type=\"line\"/>\n      <point x=\"410\" y=\"707\"/>\n      <point x=\"427\" y=\"780\"/>\n      <point x=\"426\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"1420\" type=\"line\"/>\n      <point x=\"158\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tah-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tah-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"552\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"759\" y=\"1135\" name=\"top\"/>\n  <anchor x=\"760\" y=\"885\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-18\" y=\"-10\" type=\"line\"/>\n      <point x=\"506\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"977\" y=\"-10\"/>\n      <point x=\"1168\" y=\"118\"/>\n      <point x=\"1168\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1168\" y=\"644\"/>\n      <point x=\"1008\" y=\"888\"/>\n      <point x=\"776\" y=\"888\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"596\" y=\"888\"/>\n      <point x=\"407\" y=\"698\"/>\n      <point x=\"130\" y=\"265\" type=\"curve\"/>\n      <point x=\"343\" y=\"182\" type=\"line\"/>\n      <point x=\"506\" y=\"473\"/>\n      <point x=\"638\" y=\"602\"/>\n      <point x=\"747\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"602\"/>\n      <point x=\"923\" y=\"486\"/>\n      <point x=\"923\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"923\" y=\"318\"/>\n      <point x=\"874\" y=\"285\"/>\n      <point x=\"497\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"285\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"175\" y=\"188\" type=\"line\"/>\n      <point x=\"452\" y=\"585\" type=\"line\"/>\n      <point x=\"375\" y=\"637\" type=\"line\"/>\n      <point x=\"410\" y=\"707\"/>\n      <point x=\"427\" y=\"780\"/>\n      <point x=\"426\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"1420\" type=\"line\"/>\n      <point x=\"158\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tah-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tah-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-10\"/>\n      <point x=\"1275\" y=\"41\"/>\n      <point x=\"1275\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"246\"/>\n      <point x=\"1251\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1126\" y=\"285\"/>\n      <point x=\"1038\" y=\"286\"/>\n      <point x=\"966\" y=\"291\" type=\"curve\"/>\n      <point x=\"901\" y=\"75\" type=\"line\"/>\n      <point x=\"1012\" y=\"72\" type=\"line\"/>\n      <point x=\"1045\" y=\"18\"/>\n      <point x=\"1091\" y=\"-10\"/>\n    </contour>\n    <component base=\"tah-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahT_hreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahThreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahT_hreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahThreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069F\"/>\n  <outline>\n    <component base=\"tah-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahT_hreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahThreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahT_hreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahThreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahT_wodotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahTwodotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"160\" yOffset=\"353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahT_wodotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahTwodotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A3\"/>\n  <outline>\n    <component base=\"tah-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"160\" yOffset=\"353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahT_wodotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahTwodotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"160\" yOffset=\"353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahT_wodotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahTwodotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"160\" yOffset=\"353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-496\" name=\"bottom\"/>\n  <outline>\n    <component base=\"tahcenter-ar\" xOffset=\"12\" yOffset=\"-604\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tahcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"589\" y=\"340\" name=\"_center\"/>\n  <outline>\n    <component base=\"_tahabove\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"103\" yOffset=\"-402\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tau.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tau\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C4\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"576\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"744\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"-20\"/>\n      <point x=\"958\" y=\"-8\"/>\n      <point x=\"1061\" y=\"22\" type=\"curve\"/>\n      <point x=\"1037\" y=\"275\" type=\"line\"/>\n      <point x=\"956\" y=\"249\"/>\n      <point x=\"879\" y=\"237\"/>\n      <point x=\"824\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"237\"/>\n      <point x=\"651\" y=\"309\"/>\n      <point x=\"651\" y=\"477\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"1060\" type=\"line\"/>\n      <point x=\"381\" y=\"1060\" type=\"line\"/>\n      <point x=\"381\" y=\"400\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"106\"/>\n      <point x=\"487\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"93\" y=\"808\" type=\"line\"/>\n      <point x=\"1067\" y=\"808\" type=\"line\"/>\n      <point x=\"1067\" y=\"1060\" type=\"line\"/>\n      <point x=\"93\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tav-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tav-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05EA\"/>\n  <anchor x=\"636\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"1093\" y=\"0\" type=\"line\"/>\n      <point x=\"1093\" y=\"1200\" type=\"line\"/>\n      <point x=\"835\" y=\"1200\" type=\"line\"/>\n      <point x=\"835\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"923\" type=\"line\"/>\n      <point x=\"246\" y=\"884\"/>\n      <point x=\"184\" y=\"823\"/>\n      <point x=\"184\" y=\"616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"442\" y=\"0\" type=\"line\"/>\n      <point x=\"442\" y=\"597\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"819\"/>\n      <point x=\"456\" y=\"931\"/>\n      <point x=\"636\" y=\"931\" type=\"curve\"/>\n      <point x=\"336\" y=\"995\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1092\" y=\"1200\" type=\"line\"/>\n      <point x=\"163\" y=\"1200\" type=\"line\"/>\n      <point x=\"163\" y=\"959\" type=\"line\"/>\n      <point x=\"366\" y=\"930\" type=\"line\"/>\n      <point x=\"1092\" y=\"930\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"370\" y=\"270\" type=\"line\"/>\n      <point x=\"26\" y=\"270\" type=\"line\"/>\n      <point x=\"26\" y=\"0\" type=\"line\"/>\n      <point x=\"370\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tavdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tavdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB4A\"/>\n  <outline>\n    <component base=\"tav-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"36\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0167\"/>\n  <outline>\n    <contour>\n      <point x=\"53\" y=\"421\" type=\"line\"/>\n      <point x=\"1047\" y=\"421\" type=\"line\"/>\n      <point x=\"1047\" y=\"670\" type=\"line\"/>\n      <point x=\"53\" y=\"670\" type=\"line\"/>\n    </contour>\n    <component base=\"t\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>t</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0165\"/>\n  <outline>\n    <contour>\n      <point x=\"709\" y=\"1228\" type=\"line\"/>\n      <point x=\"948\" y=\"1228\" type=\"line\"/>\n      <point x=\"1029\" y=\"1608\" type=\"line\"/>\n      <point x=\"751\" y=\"1608\" type=\"line\"/>\n    </contour>\n    <component base=\"t\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>t</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0163\"/>\n  <outline>\n    <component base=\"t\"/>\n    <component base=\"cedillacomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"threedotsdowncenter-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"73\" yOffset=\"-303\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0686\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"threedotsdowncenter-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"125\" yOffset=\"-309\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"82\" yOffset=\"82\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"82\" yOffset=\"82\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tchehD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tchehDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tcheh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tchehD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tchehDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BF\"/>\n  <outline>\n    <component base=\"tcheh-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"382\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>tcheh-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>tcheh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tchehD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tchehDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tcheh-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tchehD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tchehDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tcheh-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcheheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"fourdotscenter-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"52\" yOffset=\"-369\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcheheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0687\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"fourdotscenter-ar\" xOffset=\"92\" yOffset=\"-384\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcheheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcheheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021B\"/>\n  <outline>\n    <component base=\"t\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"65\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/te-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"te-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0442\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"465\" y=\"0\" type=\"line\"/>\n      <point x=\"735\" y=\"0\" type=\"line\"/>\n      <point x=\"735\" y=\"1060\" type=\"line\"/>\n      <point x=\"465\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"73\" y=\"808\" type=\"line\"/>\n      <point x=\"1127\" y=\"808\" type=\"line\"/>\n      <point x=\"1127\" y=\"1060\" type=\"line\"/>\n      <point x=\"73\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/te-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"te-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"m\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062A\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"275\" yOffset=\"345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"235\" yOffset=\"335\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"30\" yOffset=\"223\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehM_arbuta-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehMarbuta-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"129\" yOffset=\"488\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehM_arbuta-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehMarbuta-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0629\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-1\" yOffset=\"408\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehM_arbutagoal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehMarbutagoal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehgoal-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"80\" yOffset=\"183\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehM_arbutagoal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehMarbutagoal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C3\"/>\n  <outline>\n    <component base=\"tehMarbuta-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n    <component base=\"ringArabic\" xOffset=\"-598\" yOffset=\"-57\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n    <component base=\"ringArabic\" xOffset=\"-598\" yOffset=\"-57\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n    <component base=\"ringArabic\" xOffset=\"-16\" yOffset=\"-57\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067C\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n    <component base=\"ringArabic\" xOffset=\"-16\" yOffset=\"-57\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"275\" yOffset=\"345\"/>\n    <component base=\"ringArabic\" xOffset=\"134\" yOffset=\"-44\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"235\" yOffset=\"335\"/>\n    <component base=\"ringArabic\" xOffset=\"134\" yOffset=\"-17\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"30\" yOffset=\"223\"/>\n    <component base=\"ringArabic\" xOffset=\"-246\" yOffset=\"-57\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"-610\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"-700\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B8\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"275\" yOffset=\"345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"235\" yOffset=\"335\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"30\" yOffset=\"223\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"-610\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"-700\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"-10\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067D\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"-10\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"275\" yOffset=\"355\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"235\" yOffset=\"345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"30\" yOffset=\"233\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0753\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"275\" yOffset=\"345\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"212\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"235\" yOffset=\"335\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"30\" yOffset=\"223\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tehabove-ar.small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehabove-ar.small\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"762\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"589\" y=\"1021\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"582\" y=\"589\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"589\"/>\n      <point x=\"857\" y=\"641\"/>\n      <point x=\"857\" y=\"769\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"857\" y=\"811\"/>\n      <point x=\"846\" y=\"853\"/>\n      <point x=\"837\" y=\"884\" type=\"curve\"/>\n      <point x=\"722\" y=\"868\" type=\"line\"/>\n      <point x=\"726\" y=\"834\"/>\n      <point x=\"730\" y=\"807\"/>\n      <point x=\"730\" y=\"783\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"752\"/>\n      <point x=\"718\" y=\"731\"/>\n      <point x=\"587\" y=\"731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"731\"/>\n      <point x=\"466\" y=\"743\"/>\n      <point x=\"466\" y=\"784\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"806\"/>\n      <point x=\"468\" y=\"830\"/>\n      <point x=\"470\" y=\"848\" type=\"curve\"/>\n      <point x=\"360\" y=\"852\" type=\"line\"/>\n      <point x=\"347\" y=\"819\"/>\n      <point x=\"343\" y=\"782\"/>\n      <point x=\"343\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"343\" y=\"642\"/>\n      <point x=\"417\" y=\"589\"/>\n    </contour>\n    <contour>\n      <point x=\"545\" y=\"845\" type=\"line\"/>\n      <point x=\"621\" y=\"924\" type=\"line\"/>\n      <point x=\"537\" y=\"1000\" type=\"line\"/>\n      <point x=\"462\" y=\"922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"648\" y=\"845\" type=\"line\"/>\n      <point x=\"725\" y=\"924\" type=\"line\"/>\n      <point x=\"640\" y=\"1000\" type=\"line\"/>\n      <point x=\"565\" y=\"922\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067F\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"275\" yOffset=\"345\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"235\" yOffset=\"335\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"30\" yOffset=\"223\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B8\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"1057\" type=\"line\"/>\n      <point x=\"468\" y=\"1057\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"63\" y=\"813\" type=\"line\"/>\n      <point x=\"1137\" y=\"813\" type=\"line\"/>\n      <point x=\"1137\" y=\"1057\" type=\"line\"/>\n      <point x=\"63\" y=\"1057\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"63\" y=\"1177\" type=\"line\"/>\n      <point x=\"1137\" y=\"1177\" type=\"line\"/>\n      <point x=\"1137\" y=\"1420\" type=\"line\"/>\n      <point x=\"63\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tesh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tesh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02A7\"/>\n  <anchor x=\"610\" y=\"-420\" name=\"bottom\"/>\n  <anchor x=\"610\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"520\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"-20\"/>\n      <point x=\"611\" y=\"-15\"/>\n      <point x=\"657\" y=\"-6\" type=\"curve\"/>\n      <point x=\"633\" y=\"272\" type=\"line\"/>\n      <point x=\"595\" y=\"266\"/>\n      <point x=\"567\" y=\"262\"/>\n      <point x=\"540\" y=\"262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"262\"/>\n      <point x=\"458\" y=\"283\"/>\n      <point x=\"458\" y=\"332\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"458\" y=\"500\" type=\"line\"/>\n      <point x=\"188\" y=\"500\" type=\"line\"/>\n      <point x=\"188\" y=\"280\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"188\" y=\"70\"/>\n      <point x=\"287\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"188\" y=\"420\" type=\"line\"/>\n      <point x=\"458\" y=\"420\" type=\"line\"/>\n      <point x=\"458\" y=\"1380\" type=\"line\"/>\n      <point x=\"188\" y=\"1380\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"10\" y=\"811\" type=\"line\"/>\n      <point x=\"880\" y=\"811\" type=\"line\"/>\n      <point x=\"880\" y=\"1060\" type=\"line\"/>\n      <point x=\"10\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"733\" y=\"360\" type=\"line\"/>\n      <point x=\"1003\" y=\"360\" type=\"line\"/>\n      <point x=\"1003\" y=\"1003\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"1117\"/>\n      <point x=\"1049\" y=\"1183\"/>\n      <point x=\"1128\" y=\"1183\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1160\" y=\"1183\"/>\n      <point x=\"1198\" y=\"1180\"/>\n      <point x=\"1229\" y=\"1174\" type=\"curve\"/>\n      <point x=\"1251\" y=\"1425\" type=\"line\"/>\n      <point x=\"1205\" y=\"1435\"/>\n      <point x=\"1148\" y=\"1440\"/>\n      <point x=\"1094\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"1440\"/>\n      <point x=\"733\" y=\"1314\"/>\n      <point x=\"733\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"388\" y=\"-477\" type=\"line\"/>\n      <point x=\"476\" y=\"-471\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"-446\"/>\n      <point x=\"1003\" y=\"-302\"/>\n      <point x=\"1003\" y=\"14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"384\" type=\"line\"/>\n      <point x=\"733\" y=\"384\" type=\"line\"/>\n      <point x=\"733\" y=\"7\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"-119\"/>\n      <point x=\"662\" y=\"-177\"/>\n      <point x=\"496\" y=\"-194\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"-206\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tet-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tet-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D8\"/>\n  <guideline x=\"1174\" y=\"929\" angle=\"180\"/>\n  <anchor x=\"592\" y=\"517\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-20\"/>\n      <point x=\"1073\" y=\"238\"/>\n      <point x=\"1073\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1073\" y=\"768\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1073\" y=\"1020\"/>\n      <point x=\"914\" y=\"1200\"/>\n      <point x=\"591\" y=\"1200\" type=\"curve\"/>\n      <point x=\"564\" y=\"1109\"/>\n      <point x=\"532\" y=\"939\"/>\n      <point x=\"503\" y=\"731\" type=\"curve\"/>\n      <point x=\"703\" y=\"731\" type=\"line\"/>\n      <point x=\"729\" y=\"861\"/>\n      <point x=\"731\" y=\"880\"/>\n      <point x=\"743\" y=\"929\" type=\"curve\"/>\n      <point x=\"758\" y=\"929\"/>\n      <point x=\"805\" y=\"897\"/>\n      <point x=\"805\" y=\"709\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"608\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"385\"/>\n      <point x=\"752\" y=\"270\"/>\n      <point x=\"510\" y=\"270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"270\"/>\n      <point x=\"360\" y=\"273\"/>\n      <point x=\"239\" y=\"290\" type=\"curve\"/>\n      <point x=\"134\" y=\"0\" type=\"line\"/>\n      <point x=\"212\" y=\"-16\"/>\n      <point x=\"365\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"134\" y=\"0\" type=\"line\"/>\n      <point x=\"402\" y=\"0\" type=\"line\"/>\n      <point x=\"402\" y=\"1200\" type=\"line\"/>\n      <point x=\"134\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tetdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tetdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB38\"/>\n  <outline>\n    <component base=\"tet-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-8\" yOffset=\"-27\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/thal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"36\" yOffset=\"482\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/thal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0630\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"16\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/thalA_lefabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thalAlefabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"thal-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"16\" yOffset=\"957\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>thal-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/thalA_lefabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thalAlefabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FC5B\"/>\n  <outline>\n    <component base=\"thal-ar\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-4\" yOffset=\"967\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-610\" yOffset=\"83\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-700\" yOffset=\"83\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062B\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"275\" yOffset=\"335\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"235\" yOffset=\"325\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"30\" yOffset=\"213\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/theta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B8\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"-20\"/>\n      <point x=\"1081\" y=\"210\"/>\n      <point x=\"1081\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"1290\"/>\n      <point x=\"937\" y=\"1520\"/>\n      <point x=\"600\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"263\" y=\"1520\"/>\n      <point x=\"119\" y=\"1290\"/>\n      <point x=\"119\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"210\"/>\n      <point x=\"263\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"236\"/>\n      <point x=\"394\" y=\"389\"/>\n      <point x=\"394\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"1111\"/>\n      <point x=\"456\" y=\"1264\"/>\n      <point x=\"600\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"1264\"/>\n      <point x=\"806\" y=\"1111\"/>\n      <point x=\"806\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"389\"/>\n      <point x=\"744\" y=\"236\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"627\" type=\"line\"/>\n      <point x=\"1033\" y=\"627\" type=\"line\"/>\n      <point x=\"1033\" y=\"879\" type=\"line\"/>\n      <point x=\"192\" y=\"879\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/thetamod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thetamod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1DBF\"/>\n  <outline>\n    <contour>\n      <point x=\"326\" y=\"1122\" type=\"line\"/>\n      <point x=\"892\" y=\"1122\" type=\"line\"/>\n      <point x=\"892\" y=\"1216\" type=\"line\"/>\n      <point x=\"326\" y=\"1216\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"770\"/>\n      <point x=\"959\" y=\"915\"/>\n      <point x=\"959\" y=\"1169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"1423\"/>\n      <point x=\"828\" y=\"1568\"/>\n      <point x=\"600\" y=\"1568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"1568\"/>\n      <point x=\"241\" y=\"1423\"/>\n      <point x=\"241\" y=\"1169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"241\" y=\"915\"/>\n      <point x=\"372\" y=\"770\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"519\" y=\"970\"/>\n      <point x=\"473\" y=\"1042\"/>\n      <point x=\"473\" y=\"1169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"1296\"/>\n      <point x=\"519\" y=\"1368\"/>\n      <point x=\"600\" y=\"1368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"681\" y=\"1368\"/>\n      <point x=\"727\" y=\"1296\"/>\n      <point x=\"727\" y=\"1169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"1042\"/>\n      <point x=\"681\" y=\"970\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/thorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FE\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"236\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"151\" y=\"-460\" type=\"line\"/>\n      <point x=\"422\" y=\"-460\" type=\"line\"/>\n      <point x=\"422\" y=\"1500\" type=\"line\"/>\n      <point x=\"151\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"705\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"-20\"/>\n      <point x=\"1121\" y=\"175\"/>\n      <point x=\"1121\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"879\"/>\n      <point x=\"968\" y=\"1080\"/>\n      <point x=\"703\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"1080\"/>\n      <point x=\"468\" y=\"1010\"/>\n      <point x=\"444\" y=\"868\" type=\"curve\"/>\n      <point x=\"360\" y=\"868\" type=\"line\"/>\n      <point x=\"422\" y=\"529\" type=\"line\"/>\n      <point x=\"422\" y=\"734\"/>\n      <point x=\"491\" y=\"825\"/>\n      <point x=\"629\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"825\"/>\n      <point x=\"844\" y=\"717\"/>\n      <point x=\"844\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"334\"/>\n      <point x=\"770\" y=\"235\"/>\n      <point x=\"629\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"235\"/>\n      <point x=\"422\" y=\"323\"/>\n      <point x=\"422\" y=\"529\" type=\"curve\"/>\n      <point x=\"350\" y=\"192\" type=\"line\"/>\n      <point x=\"444\" y=\"192\" type=\"line\"/>\n      <point x=\"465\" y=\"51\"/>\n      <point x=\"557\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/thousandseparator-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thousandseparator-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066C\"/>\n  <outline>\n    <contour>\n      <point x=\"542\" y=\"-318\" type=\"line\"/>\n      <point x=\"711\" y=\"-196\"/>\n      <point x=\"814\" y=\"-13\"/>\n      <point x=\"814\" y=\"287\" type=\"curve\"/>\n      <point x=\"543\" y=\"287\" type=\"line\"/>\n      <point x=\"547\" y=\"74\"/>\n      <point x=\"516\" y=\"-73\"/>\n      <point x=\"411\" y=\"-215\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0663\"/>\n  <outline>\n    <contour>\n      <point x=\"355\" y=\"0\" type=\"curve\"/>\n      <point x=\"615\" y=\"0\" type=\"line\"/>\n      <point x=\"615\" y=\"501\"/>\n      <point x=\"523\" y=\"788\"/>\n      <point x=\"407\" y=\"1094\" type=\"curve\"/>\n      <point x=\"271\" y=\"1047\" type=\"line\"/>\n      <point x=\"326\" y=\"916\"/>\n      <point x=\"399\" y=\"877\"/>\n      <point x=\"485\" y=\"877\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"877\"/>\n      <point x=\"636\" y=\"905\"/>\n      <point x=\"662\" y=\"1004\" type=\"curve\"/>\n      <point x=\"699\" y=\"1004\" type=\"line\"/>\n      <point x=\"709\" y=\"1032\"/>\n      <point x=\"715\" y=\"1065\"/>\n      <point x=\"717\" y=\"1104\" type=\"curve\"/>\n      <point x=\"665\" y=\"1100\" type=\"line\"/>\n      <point x=\"680\" y=\"907\"/>\n      <point x=\"796\" y=\"877\"/>\n      <point x=\"900\" y=\"877\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1067\" y=\"877\"/>\n      <point x=\"1147\" y=\"1007\"/>\n      <point x=\"1147\" y=\"1282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1147\" y=\"1326\"/>\n      <point x=\"1144\" y=\"1371\"/>\n      <point x=\"1139\" y=\"1420\" type=\"curve\"/>\n      <point x=\"922\" y=\"1420\" type=\"line\"/>\n      <point x=\"926\" y=\"1368\"/>\n      <point x=\"928\" y=\"1326\"/>\n      <point x=\"928\" y=\"1289\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"1174\"/>\n      <point x=\"916\" y=\"1149\"/>\n      <point x=\"857\" y=\"1149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"1149\"/>\n      <point x=\"796\" y=\"1170\"/>\n      <point x=\"793\" y=\"1213\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"1263\"/>\n      <point x=\"790\" y=\"1297\"/>\n      <point x=\"790\" y=\"1420\" type=\"curve\"/>\n      <point x=\"563\" y=\"1420\" type=\"line\"/>\n      <point x=\"561\" y=\"1295\"/>\n      <point x=\"562\" y=\"1242\"/>\n      <point x=\"547\" y=\"1197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"1159\"/>\n      <point x=\"498\" y=\"1149\"/>\n      <point x=\"466\" y=\"1149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"1149\"/>\n      <point x=\"413\" y=\"1162\"/>\n      <point x=\"396\" y=\"1197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"1245\"/>\n      <point x=\"358\" y=\"1286\"/>\n      <point x=\"306\" y=\"1440\" type=\"curve\"/>\n      <point x=\"46\" y=\"1374\" type=\"line\"/>\n      <point x=\"218\" y=\"934\"/>\n      <point x=\"352\" y=\"504\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"411\" y=\"-1\" type=\"curve\"/>\n      <point x=\"589\" y=\"-1\" type=\"line\"/>\n      <point x=\"588\" y=\"154\"/>\n      <point x=\"565\" y=\"319\"/>\n      <point x=\"523\" y=\"447\" type=\"curve\"/>\n      <point x=\"431\" y=\"409\" type=\"line\"/>\n      <point x=\"449\" y=\"353\"/>\n      <point x=\"480\" y=\"308\"/>\n      <point x=\"546\" y=\"308\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"308\"/>\n      <point x=\"633\" y=\"320\"/>\n      <point x=\"644\" y=\"371\" type=\"curve\"/>\n      <point x=\"660\" y=\"372\" type=\"line\"/>\n      <point x=\"675\" y=\"330\"/>\n      <point x=\"704\" y=\"308\"/>\n      <point x=\"757\" y=\"308\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"308\"/>\n      <point x=\"899\" y=\"381\"/>\n      <point x=\"899\" y=\"501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"547\"/>\n      <point x=\"892\" y=\"591\"/>\n      <point x=\"883\" y=\"632\" type=\"curve\"/>\n      <point x=\"746\" y=\"632\" type=\"line\"/>\n      <point x=\"751\" y=\"579\"/>\n      <point x=\"753\" y=\"562\"/>\n      <point x=\"753\" y=\"536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"502\"/>\n      <point x=\"750\" y=\"491\"/>\n      <point x=\"728\" y=\"491\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"491\"/>\n      <point x=\"705\" y=\"500\"/>\n      <point x=\"702\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"560\"/>\n      <point x=\"699\" y=\"596\"/>\n      <point x=\"696\" y=\"632\" type=\"curve\"/>\n      <point x=\"551\" y=\"632\" type=\"line\"/>\n      <point x=\"553\" y=\"581\"/>\n      <point x=\"555\" y=\"554\"/>\n      <point x=\"553\" y=\"526\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"501\"/>\n      <point x=\"545\" y=\"491\"/>\n      <point x=\"529\" y=\"491\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"491\"/>\n      <point x=\"506\" y=\"508\"/>\n      <point x=\"494\" y=\"551\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"641\" type=\"line\"/>\n      <point x=\"291\" y=\"605\" type=\"line\"/>\n      <point x=\"354\" y=\"415\"/>\n      <point x=\"404\" y=\"165\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"three-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F3\"/>\n  <outline>\n    <component base=\"three-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three-persian.small01.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-persian.small01\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"580\" y=\"1334\" name=\"_top\"/>\n  <anchor x=\"580\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1641\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"481\" y=\"1163\" type=\"curve\"/>\n      <point x=\"613\" y=\"1163\" type=\"line\"/>\n      <point x=\"614\" y=\"1267\"/>\n      <point x=\"598\" y=\"1368\"/>\n      <point x=\"570\" y=\"1455\" type=\"curve\"/>\n      <point x=\"514\" y=\"1412\" type=\"line\"/>\n      <point x=\"532\" y=\"1379\"/>\n      <point x=\"538\" y=\"1359\"/>\n      <point x=\"589\" y=\"1359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"1359\"/>\n      <point x=\"643\" y=\"1371\"/>\n      <point x=\"652\" y=\"1409\" type=\"curve\"/>\n      <point x=\"662\" y=\"1409\" type=\"line\"/>\n      <point x=\"671\" y=\"1373\"/>\n      <point x=\"696\" y=\"1359\"/>\n      <point x=\"736\" y=\"1359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"1359\"/>\n      <point x=\"833\" y=\"1403\"/>\n      <point x=\"833\" y=\"1489\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"1527\"/>\n      <point x=\"828\" y=\"1560\"/>\n      <point x=\"822\" y=\"1587\" type=\"curve\"/>\n      <point x=\"722\" y=\"1587\" type=\"line\"/>\n      <point x=\"725\" y=\"1552\"/>\n      <point x=\"727\" y=\"1539\"/>\n      <point x=\"727\" y=\"1525\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"1498\"/>\n      <point x=\"722\" y=\"1495\"/>\n      <point x=\"710\" y=\"1495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1495\"/>\n      <point x=\"693\" y=\"1501\"/>\n      <point x=\"691\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"1541\"/>\n      <point x=\"689\" y=\"1563\"/>\n      <point x=\"687\" y=\"1587\" type=\"curve\"/>\n      <point x=\"593\" y=\"1587\" type=\"line\"/>\n      <point x=\"594\" y=\"1553\"/>\n      <point x=\"595\" y=\"1539\"/>\n      <point x=\"594\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"1501\"/>\n      <point x=\"587\" y=\"1495\"/>\n      <point x=\"575\" y=\"1495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"1495\"/>\n      <point x=\"560\" y=\"1502\"/>\n      <point x=\"552\" y=\"1530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"1594\" type=\"line\"/>\n      <point x=\"400\" y=\"1556\" type=\"line\"/>\n      <point x=\"443\" y=\"1428\"/>\n      <point x=\"476\" y=\"1274\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"three-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"three-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"threesuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0033\"/>\n  <outline>\n    <contour>\n      <point x=\"514\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"-20\"/>\n      <point x=\"1061\" y=\"126\"/>\n      <point x=\"1061\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"594\"/>\n      <point x=\"891\" y=\"720\"/>\n      <point x=\"645\" y=\"723\" type=\"curve\"/>\n      <point x=\"356\" y=\"830\" type=\"line\"/>\n      <point x=\"380\" y=\"600\" type=\"line\"/>\n      <point x=\"412\" y=\"600\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"648\" y=\"600\"/>\n      <point x=\"783\" y=\"531\"/>\n      <point x=\"783\" y=\"408\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"296\"/>\n      <point x=\"682\" y=\"232\"/>\n      <point x=\"506\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"343\" y=\"232\"/>\n      <point x=\"244\" y=\"264\"/>\n      <point x=\"158\" y=\"287\" type=\"curve\"/>\n      <point x=\"133\" y=\"28\" type=\"line\"/>\n      <point x=\"232\" y=\"-1\"/>\n      <point x=\"360\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"600\" type=\"line\"/>\n      <point x=\"701\" y=\"650\" type=\"line\"/>\n      <point x=\"701\" y=\"753\" type=\"line\"/>\n      <point x=\"897\" y=\"803\"/>\n      <point x=\"1031\" y=\"943\"/>\n      <point x=\"1031\" y=\"1122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1031\" y=\"1326\"/>\n      <point x=\"878\" y=\"1440\"/>\n      <point x=\"608\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"1440\"/>\n      <point x=\"236\" y=\"1388\"/>\n      <point x=\"108\" y=\"1266\" type=\"curve\"/>\n      <point x=\"246\" y=\"1062\" type=\"line\"/>\n      <point x=\"361\" y=\"1146\"/>\n      <point x=\"497\" y=\"1189\"/>\n      <point x=\"604\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"1189\"/>\n      <point x=\"753\" y=\"1146\"/>\n      <point x=\"753\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"952\"/>\n      <point x=\"636\" y=\"865\"/>\n      <point x=\"356\" y=\"830\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"360\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"598\" y=\"-9\"/>\n      <point x=\"734\" y=\"56\"/>\n      <point x=\"734\" y=\"169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"266\"/>\n      <point x=\"629\" y=\"327\"/>\n      <point x=\"467\" y=\"323\" type=\"curve\"/>\n      <point x=\"249\" y=\"359\" type=\"line\"/>\n      <point x=\"267\" y=\"276\" type=\"line\"/>\n      <point x=\"289\" y=\"276\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"276\"/>\n      <point x=\"572\" y=\"252\"/>\n      <point x=\"572\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"152\"/>\n      <point x=\"491\" y=\"126\"/>\n      <point x=\"354\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"126\"/>\n      <point x=\"178\" y=\"143\"/>\n      <point x=\"121\" y=\"155\" type=\"curve\"/>\n      <point x=\"102\" y=\"13\" type=\"line\"/>\n      <point x=\"171\" y=\"-1\"/>\n      <point x=\"260\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"267\" y=\"276\" type=\"line\"/>\n      <point x=\"469\" y=\"276\" type=\"line\"/>\n      <point x=\"469\" y=\"343\" type=\"line\"/>\n      <point x=\"614\" y=\"365\"/>\n      <point x=\"713\" y=\"428\"/>\n      <point x=\"713\" y=\"505\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"597\"/>\n      <point x=\"602\" y=\"648\"/>\n      <point x=\"405\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"648\"/>\n      <point x=\"170\" y=\"635\"/>\n      <point x=\"85\" y=\"600\" type=\"curve\"/>\n      <point x=\"126\" y=\"474\" type=\"line\"/>\n      <point x=\"208\" y=\"498\"/>\n      <point x=\"309\" y=\"513\"/>\n      <point x=\"390\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"494\" y=\"513\"/>\n      <point x=\"551\" y=\"493\"/>\n      <point x=\"551\" y=\"462\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"410\"/>\n      <point x=\"469\" y=\"377\"/>\n      <point x=\"249\" y=\"359\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/three.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"threesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"061E\"/>\n  <outline>\n    <component base=\"threedotsupabove-ar\" xScale=\"1.5\" yScale=\"1.5\" xOffset=\"-300\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threedotsdownabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsdownabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"522\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1212\" name=\"top\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yScale=\"-1\" yOffset=\"1530\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threedotsdownbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsdownbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-137\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-8\" name=\"_bottom.dot\"/>\n  <anchor x=\"602\" y=\"-628\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yScale=\"-1\" yOffset=\"313\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threedotsdowncenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsdowncenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"290\" name=\"_center\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yScale=\"-1\" yOffset=\"948\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threedotsupabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsupabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"542\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1182\" name=\"top\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threedotsupabove-ar.v2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsupabove-ar.v2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"640\" y=\"542\" name=\"_top.dot\"/>\n  <anchor x=\"543\" y=\"1232\" name=\"top\"/>\n  <outline>\n    <component base=\"dotabove-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-96\" yOffset=\"-36\"/>\n    <component base=\"dotabove-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"184\" yOffset=\"122\"/>\n    <component base=\"dotabove-ar\" xScale=\"0.92\" yScale=\"0.92\" xOffset=\"-8\" yOffset=\"356\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-8\" name=\"_bottom.dot\"/>\n  <anchor x=\"612\" y=\"-618\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yOffset=\"-1018\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threedotsupcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsupcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yOffset=\"-328\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threeeighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threeeighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"577\" y=\"593\" type=\"line\"/>\n      <point x=\"484\" y=\"715\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"710\" y=\"692\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"617\" y=\"814\" type=\"line\"/>\n    </contour>\n    <component base=\"threesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>threesuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>eightinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threeeighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threeeighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215C\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <component base=\"threesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>threesuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>eightinferior</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threeinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threeinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2083\"/>\n  <outline>\n    <component base=\"threesuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threequarters.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threequarters.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"577\" y=\"593\" type=\"line\"/>\n      <point x=\"484\" y=\"715\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"710\" y=\"692\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"617\" y=\"814\" type=\"line\"/>\n    </contour>\n    <component base=\"foursuperior\" xOffset=\"240\" yOffset=\"-802\"/>\n    <component base=\"threesuperior\" xOffset=\"-240\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>foursuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threesuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threequarters.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threequarters\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BE\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"269\" type=\"line\"/>\n      <point x=\"1121\" y=\"969\" type=\"line\"/>\n      <point x=\"989\" y=\"1143\" type=\"line\"/>\n      <point x=\"79\" y=\"449\" type=\"line\"/>\n    </contour>\n    <component base=\"foursuperior\" xOffset=\"240\" yOffset=\"-802\"/>\n    <component base=\"threesuperior\" xOffset=\"-240\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>foursuperior</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threesuperior</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/threesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B3\"/>\n  <outline>\n    <contour>\n      <point x=\"562\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"759\" y=\"795\"/>\n      <point x=\"872\" y=\"858\"/>\n      <point x=\"872\" y=\"971\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"1061\"/>\n      <point x=\"788\" y=\"1104\"/>\n      <point x=\"664\" y=\"1123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"458\" y=\"1155\" type=\"line\"/>\n      <point x=\"458\" y=\"1042\" type=\"line\"/>\n      <point x=\"555\" y=\"1042\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"1042\"/>\n      <point x=\"632\" y=\"1033\"/>\n      <point x=\"632\" y=\"1015\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"986\"/>\n      <point x=\"601\" y=\"969\"/>\n      <point x=\"548\" y=\"969\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"969\"/>\n      <point x=\"414\" y=\"982\"/>\n      <point x=\"368\" y=\"990\" type=\"curve\"/>\n      <point x=\"327\" y=\"819\" type=\"line\"/>\n      <point x=\"389\" y=\"802\"/>\n      <point x=\"468\" y=\"792\"/>\n    </contour>\n    <contour>\n      <point x=\"458\" y=\"1042\" type=\"line\"/>\n      <point x=\"689\" y=\"1089\" type=\"line\"/>\n      <point x=\"689\" y=\"1153\" type=\"line\"/>\n      <point x=\"788\" y=\"1172\"/>\n      <point x=\"855\" y=\"1229\"/>\n      <point x=\"855\" y=\"1302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"1391\"/>\n      <point x=\"757\" y=\"1440\"/>\n      <point x=\"582\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"1440\"/>\n      <point x=\"410\" y=\"1431\"/>\n      <point x=\"339\" y=\"1410\" type=\"curve\"/>\n      <point x=\"360\" y=\"1236\" type=\"line\"/>\n      <point x=\"416\" y=\"1255\"/>\n      <point x=\"478\" y=\"1265\"/>\n      <point x=\"552\" y=\"1265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"1265\"/>\n      <point x=\"614\" y=\"1253\"/>\n      <point x=\"614\" y=\"1233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"614\" y=\"1213\"/>\n      <point x=\"565\" y=\"1197\"/>\n      <point x=\"448\" y=\"1192\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DC\"/>\n  <outline>\n    <component base=\"tildecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>tildecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tildecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tildecomb.case\" format=\"2\">\n  <anchor x=\"590\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1840\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"198\" y=\"1566\" type=\"line\"/>\n      <point x=\"456\" y=\"1566\" type=\"line\"/>\n      <point x=\"456\" y=\"1626\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"1666\"/>\n      <point x=\"473\" y=\"1683\"/>\n      <point x=\"513\" y=\"1683\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"1683\"/>\n      <point x=\"567\" y=\"1672\"/>\n      <point x=\"621\" y=\"1647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1614\"/>\n      <point x=\"745\" y=\"1600\"/>\n      <point x=\"797\" y=\"1600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1600\"/>\n      <point x=\"1002\" y=\"1681\"/>\n      <point x=\"1002\" y=\"1865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"1915\" type=\"line\"/>\n      <point x=\"745\" y=\"1915\" type=\"line\"/>\n      <point x=\"745\" y=\"1863\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"745\" y=\"1830\"/>\n      <point x=\"734\" y=\"1816\"/>\n      <point x=\"712\" y=\"1816\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"1816\"/>\n      <point x=\"652\" y=\"1829\"/>\n      <point x=\"580\" y=\"1859\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1881\"/>\n      <point x=\"478\" y=\"1891\"/>\n      <point x=\"425\" y=\"1891\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"1891\"/>\n      <point x=\"198\" y=\"1807\"/>\n      <point x=\"198\" y=\"1616\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tildecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tildecomb\" format=\"2\">\n  <unicode hex=\"0303\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"590\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"198\" y=\"1256\" type=\"line\"/>\n      <point x=\"456\" y=\"1256\" type=\"line\"/>\n      <point x=\"456\" y=\"1298\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"1354\"/>\n      <point x=\"481\" y=\"1372\"/>\n      <point x=\"530\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"1372\"/>\n      <point x=\"593\" y=\"1354\"/>\n      <point x=\"636\" y=\"1330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"1303\"/>\n      <point x=\"739\" y=\"1280\"/>\n      <point x=\"807\" y=\"1280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"932\" y=\"1280\"/>\n      <point x=\"987\" y=\"1360\"/>\n      <point x=\"987\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"987\" y=\"1617\" type=\"line\"/>\n      <point x=\"740\" y=\"1617\" type=\"line\"/>\n      <point x=\"740\" y=\"1556\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"1516\"/>\n      <point x=\"722\" y=\"1496\"/>\n      <point x=\"686\" y=\"1496\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"649\" y=\"1496\"/>\n      <point x=\"630\" y=\"1512\"/>\n      <point x=\"590\" y=\"1535\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"1570\"/>\n      <point x=\"494\" y=\"1588\"/>\n      <point x=\"433\" y=\"1588\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"277\" y=\"1588\"/>\n      <point x=\"198\" y=\"1491\"/>\n      <point x=\"198\" y=\"1296\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tonos.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tonos.case\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tonos\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>tonos</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0384\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/topH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BCA\"/>\n  <note>\nuni2BCA\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/topH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B18\"/>\n  <note>\nuni2B18\n</note>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/topH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B13\"/>\n  <note>\nuni2B13\n</note>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"125\" y=\"225\" type=\"line\"/>\n      <point x=\"1075\" y=\"225\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/topR_ightH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topRightHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B15\"/>\n  <note>\nuni2B15\n</note>\n  <outline>\n    <contour>\n      <point x=\"1089\" y=\"211\" type=\"line\"/>\n      <point x=\"110\" y=\"1199\" type=\"line\"/>\n      <point x=\"110\" y=\"211\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/trademark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"trademark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2122\"/>\n  <outline>\n    <contour>\n      <point x=\"162\" y=\"774\" type=\"line\"/>\n      <point x=\"346\" y=\"774\" type=\"line\"/>\n      <point x=\"346\" y=\"1420\" type=\"line\"/>\n      <point x=\"162\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"12\" y=\"1238\" type=\"line\"/>\n      <point x=\"499\" y=\"1238\" type=\"line\"/>\n      <point x=\"499\" y=\"1420\" type=\"line\"/>\n      <point x=\"12\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"840\" y=\"982\" type=\"line\"/>\n      <point x=\"925\" y=\"982\" type=\"line\"/>\n      <point x=\"971\" y=\"1198\" type=\"line\"/>\n      <point x=\"1010\" y=\"1198\" type=\"line\"/>\n      <point x=\"1010\" y=\"1420\" type=\"line\"/>\n      <point x=\"905\" y=\"1420\" type=\"line\"/>\n      <point x=\"862\" y=\"1235\" type=\"line\"/>\n      <point x=\"856\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"537\" y=\"774\" type=\"line\"/>\n      <point x=\"712\" y=\"774\" type=\"line\"/>\n      <point x=\"712\" y=\"1420\" type=\"line\"/>\n      <point x=\"537\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"790\" y=\"982\" type=\"line\"/>\n      <point x=\"868\" y=\"982\" type=\"line\"/>\n      <point x=\"858\" y=\"1235\" type=\"line\"/>\n      <point x=\"854\" y=\"1235\" type=\"line\"/>\n      <point x=\"810\" y=\"1420\" type=\"line\"/>\n      <point x=\"695\" y=\"1420\" type=\"line\"/>\n      <point x=\"695\" y=\"1198\" type=\"line\"/>\n      <point x=\"735\" y=\"1198\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"993\" y=\"774\" type=\"line\"/>\n      <point x=\"1160\" y=\"774\" type=\"line\"/>\n      <point x=\"1160\" y=\"1420\" type=\"line\"/>\n      <point x=\"993\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tsadi-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tsadi-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E6\"/>\n  <anchor x=\"330\" y=\"467\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"844\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"270\" type=\"line\"/>\n      <point x=\"414\" y=\"1200\" type=\"line\"/>\n      <point x=\"83\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"112\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"270\" type=\"line\"/>\n      <point x=\"112\" y=\"270\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"574\" y=\"496\" type=\"line\"/>\n      <point x=\"813\" y=\"496\"/>\n      <point x=\"1007\" y=\"538\"/>\n      <point x=\"1026\" y=\"857\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1031\" y=\"941\"/>\n      <point x=\"1037\" y=\"1094\"/>\n      <point x=\"1037\" y=\"1200\" type=\"curve\"/>\n      <point x=\"792\" y=\"1200\" type=\"line\"/>\n      <point x=\"792\" y=\"1094\"/>\n      <point x=\"792\" y=\"975\"/>\n      <point x=\"785\" y=\"869\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"687\"/>\n      <point x=\"741\" y=\"618\"/>\n      <point x=\"605\" y=\"618\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"691\" y=\"930\" type=\"line\"/>\n      <point x=\"958\" y=\"930\" type=\"line\"/>\n      <point x=\"1028\" y=\"1200\" type=\"line\"/>\n      <point x=\"691\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tsadidagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tsadidagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB46\"/>\n  <outline>\n    <component base=\"tsadi-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-270\" yOffset=\"-77\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tse-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tse-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0446\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"740\" y=\"0\" type=\"line\"/>\n      <point x=\"1011\" y=\"0\" type=\"line\"/>\n      <point x=\"1011\" y=\"1060\" type=\"line\"/>\n      <point x=\"740\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"185\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"252\" type=\"line\"/>\n      <point x=\"185\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"1060\" type=\"line\"/>\n      <point x=\"123\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"878\" y=\"-270\" type=\"line\"/>\n      <point x=\"1147\" y=\"-270\" type=\"line\"/>\n      <point x=\"1147\" y=\"252\" type=\"line\"/>\n      <point x=\"878\" y=\"252\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tse-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tse-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"896\" y=\"-270\" type=\"line\"/>\n      <point x=\"1165\" y=\"-270\" type=\"line\"/>\n      <point x=\"1165\" y=\"252\" type=\"line\"/>\n      <point x=\"896\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"446\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"-20\"/>\n      <point x=\"687\" y=\"60\"/>\n      <point x=\"721\" y=\"204\" type=\"curve\"/>\n      <point x=\"802\" y=\"204\" type=\"line\"/>\n      <point x=\"748\" y=\"557\" type=\"line\"/>\n      <point x=\"748\" y=\"326\"/>\n      <point x=\"683\" y=\"237\"/>\n      <point x=\"556\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"458\" y=\"237\"/>\n      <point x=\"400\" y=\"305\"/>\n      <point x=\"400\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1060\" type=\"line\"/>\n      <point x=\"129\" y=\"1060\" type=\"line\"/>\n      <point x=\"129\" y=\"360\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"129\" y=\"118\"/>\n      <point x=\"244\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"766\" y=\"-10\" type=\"line\"/>\n      <point x=\"1165\" y=\"0\" type=\"line\"/>\n      <point x=\"1165\" y=\"203\" type=\"line\"/>\n      <point x=\"1019\" y=\"215\" type=\"line\"/>\n      <point x=\"1019\" y=\"430\" type=\"line\"/>\n      <point x=\"748\" y=\"430\" type=\"line\"/>\n      <point x=\"748\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"748\" y=\"300\" type=\"line\"/>\n      <point x=\"1019\" y=\"360\" type=\"line\"/>\n      <point x=\"1019\" y=\"1060\" type=\"line\"/>\n      <point x=\"748\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tshe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tshe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"275\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"570\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"818\"/>\n      <point x=\"937\" y=\"960\"/>\n      <point x=\"742\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"585\" y=\"960\"/>\n      <point x=\"504\" y=\"890\"/>\n      <point x=\"494\" y=\"748\" type=\"curve\"/>\n      <point x=\"400\" y=\"748\" type=\"line\"/>\n      <point x=\"462\" y=\"401\" type=\"line\"/>\n      <point x=\"462\" y=\"605\"/>\n      <point x=\"522\" y=\"705\"/>\n      <point x=\"642\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"705\"/>\n      <point x=\"778\" y=\"629\"/>\n      <point x=\"778\" y=\"495\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"191\" y=\"0\" type=\"line\"/>\n      <point x=\"462\" y=\"0\" type=\"line\"/>\n      <point x=\"462\" y=\"1500\" type=\"line\"/>\n      <point x=\"191\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1109\" type=\"line\"/>\n      <point x=\"787\" y=\"1109\" type=\"line\"/>\n      <point x=\"787\" y=\"1358\" type=\"line\"/>\n      <point x=\"0\" y=\"1358\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"_tahabove\" xOffset=\"-578\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"_tahabove\" xOffset=\"-668\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"22\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0679\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"22\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_tahabove\" xOffset=\"304\" yOffset=\"496\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_tahabove\" xOffset=\"264\" yOffset=\"456\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_tahabove\" xOffset=\"62\" yOffset=\"344\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-610\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-700\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-10\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067A\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-10\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"275\" yOffset=\"315\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"235\" yOffset=\"305\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"30\" yOffset=\"193\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/tugrik.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tugrik\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AE\"/>\n  <outline>\n    <contour>\n      <point x=\"144\" y=\"629\" type=\"line\"/>\n      <point x=\"1056\" y=\"779\" type=\"line\"/>\n      <point x=\"1056\" y=\"1011\" type=\"line\"/>\n      <point x=\"144\" y=\"861\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"144\" y=\"274\" type=\"line\"/>\n      <point x=\"1056\" y=\"424\" type=\"line\"/>\n      <point x=\"1056\" y=\"656\" type=\"line\"/>\n      <point x=\"144\" y=\"506\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>T</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0662\"/>\n  <outline>\n    <contour>\n      <point x=\"465\" y=\"0\" type=\"curve\"/>\n      <point x=\"727\" y=\"0\" type=\"line\"/>\n      <point x=\"727\" y=\"431\"/>\n      <point x=\"626\" y=\"814\"/>\n      <point x=\"501\" y=\"1097\" type=\"curve\"/>\n      <point x=\"407\" y=\"1047\" type=\"line\"/>\n      <point x=\"443\" y=\"962\"/>\n      <point x=\"508\" y=\"877\"/>\n      <point x=\"685\" y=\"877\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"877\"/>\n      <point x=\"1079\" y=\"973\"/>\n      <point x=\"1079\" y=\"1282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"1336\"/>\n      <point x=\"1076\" y=\"1382\"/>\n      <point x=\"1072\" y=\"1420\" type=\"curve\"/>\n      <point x=\"831\" y=\"1420\" type=\"line\"/>\n      <point x=\"835\" y=\"1379\"/>\n      <point x=\"838\" y=\"1357\"/>\n      <point x=\"838\" y=\"1304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"1187\"/>\n      <point x=\"790\" y=\"1149\"/>\n      <point x=\"657\" y=\"1149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"1149\"/>\n      <point x=\"509\" y=\"1179\"/>\n      <point x=\"474\" y=\"1251\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"452\" y=\"1296\"/>\n      <point x=\"445\" y=\"1316\"/>\n      <point x=\"398\" y=\"1442\" type=\"curve\"/>\n      <point x=\"118\" y=\"1374\" type=\"line\"/>\n      <point x=\"307\" y=\"945\"/>\n      <point x=\"472\" y=\"453\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"481\" y=\"-1\" type=\"curve\"/>\n      <point x=\"661\" y=\"-1\" type=\"line\"/>\n      <point x=\"661\" y=\"188\"/>\n      <point x=\"623\" y=\"357\"/>\n      <point x=\"559\" y=\"495\" type=\"curve\"/>\n      <point x=\"494\" y=\"399\" type=\"line\"/>\n      <point x=\"519\" y=\"341\"/>\n      <point x=\"587\" y=\"309\"/>\n      <point x=\"636\" y=\"309\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"309\"/>\n      <point x=\"847\" y=\"407\"/>\n      <point x=\"852\" y=\"632\" type=\"curve\"/>\n      <point x=\"690\" y=\"632\" type=\"line\"/>\n      <point x=\"685\" y=\"518\"/>\n      <point x=\"669\" y=\"490\"/>\n      <point x=\"614\" y=\"490\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"490\"/>\n      <point x=\"577\" y=\"496\"/>\n      <point x=\"564\" y=\"516\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"542\"/>\n      <point x=\"539\" y=\"572\"/>\n      <point x=\"512\" y=\"640\" type=\"curve\"/>\n      <point x=\"333\" y=\"604\" type=\"line\"/>\n      <point x=\"416\" y=\"415\"/>\n      <point x=\"485\" y=\"198\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"two-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F2\"/>\n  <outline>\n    <component base=\"two-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two-persian.small01.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-persian.small01\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"620\" y=\"1334\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1641\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"535\" y=\"1163\" type=\"curve\"/>\n      <point x=\"674\" y=\"1163\" type=\"line\"/>\n      <point x=\"668\" y=\"1284\"/>\n      <point x=\"648\" y=\"1358\"/>\n      <point x=\"598\" y=\"1503\" type=\"curve\"/>\n      <point x=\"570\" y=\"1383\" type=\"line\"/>\n      <point x=\"594\" y=\"1366\"/>\n      <point x=\"611\" y=\"1359\"/>\n      <point x=\"659\" y=\"1359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"1359\"/>\n      <point x=\"806\" y=\"1422\"/>\n      <point x=\"806\" y=\"1586\" type=\"curve\"/>\n      <point x=\"684\" y=\"1586\" type=\"line\"/>\n      <point x=\"680\" y=\"1504\"/>\n      <point x=\"665\" y=\"1495\"/>\n      <point x=\"636\" y=\"1495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"619\" y=\"1495\"/>\n      <point x=\"608\" y=\"1504\"/>\n      <point x=\"599\" y=\"1523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"1544\"/>\n      <point x=\"584\" y=\"1561\"/>\n      <point x=\"572\" y=\"1594\" type=\"curve\"/>\n      <point x=\"435\" y=\"1542\" type=\"line\"/>\n      <point x=\"479\" y=\"1417\"/>\n      <point x=\"524\" y=\"1293\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"two-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"two-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"twosuperior\" yOffset=\"-803\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0032\"/>\n  <outline>\n    <contour>\n      <point x=\"135\" y=\"0\" type=\"line\"/>\n      <point x=\"556\" y=\"0\" type=\"line\"/>\n      <point x=\"556\" y=\"272\" type=\"line\"/>\n      <point x=\"877\" y=\"499\"/>\n      <point x=\"1033\" y=\"744\"/>\n      <point x=\"1033\" y=\"1012\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"1298\"/>\n      <point x=\"879\" y=\"1440\"/>\n      <point x=\"568\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"369\" y=\"1440\"/>\n      <point x=\"171\" y=\"1343\"/>\n      <point x=\"73\" y=\"1196\" type=\"curve\"/>\n      <point x=\"227\" y=\"1017\" type=\"line\"/>\n      <point x=\"316\" y=\"1121\"/>\n      <point x=\"450\" y=\"1189\"/>\n      <point x=\"564\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"1189\"/>\n      <point x=\"756\" y=\"1124\"/>\n      <point x=\"756\" y=\"995\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"738\"/>\n      <point x=\"552\" y=\"495\"/>\n      <point x=\"135\" y=\"272\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"1093\" y=\"0\" type=\"line\"/>\n      <point x=\"1093\" y=\"234\" type=\"line\"/>\n      <point x=\"195\" y=\"234\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"117\" y=\"0\" type=\"line\"/>\n      <point x=\"357\" y=\"0\" type=\"line\"/>\n      <point x=\"357\" y=\"157\" type=\"line\"/>\n      <point x=\"608\" y=\"236\"/>\n      <point x=\"727\" y=\"352\"/>\n      <point x=\"727\" y=\"449\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"588\"/>\n      <point x=\"624\" y=\"648\"/>\n      <point x=\"411\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"648\"/>\n      <point x=\"182\" y=\"626\"/>\n      <point x=\"74\" y=\"581\" type=\"curve\"/>\n      <point x=\"127\" y=\"460\" type=\"line\"/>\n      <point x=\"212\" y=\"495\"/>\n      <point x=\"305\" y=\"513\"/>\n      <point x=\"408\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"513\"/>\n      <point x=\"568\" y=\"487\"/>\n      <point x=\"568\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"568\" y=\"324\"/>\n      <point x=\"420\" y=\"234\"/>\n      <point x=\"117\" y=\"150\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"159\" y=\"0\" type=\"line\"/>\n      <point x=\"769\" y=\"0\" type=\"line\"/>\n      <point x=\"769\" y=\"135\" type=\"line\"/>\n      <point x=\"159\" y=\"135\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/two.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"twosuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"611\" y=\"992\" name=\"top\"/>\n  <outline>\n    <component base=\"_twodotshorizontal-ar\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_twodotshorizontal-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twodotshorizontalabove-ar.v2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotshorizontalabove-ar.v2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"640\" y=\"562\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"962\" name=\"top\"/>\n  <outline>\n    <component base=\"dotabove-ar\" xOffset=\"-120\" yOffset=\"-65\"/>\n    <component base=\"dotabove-ar\" xOffset=\"183\" yOffset=\"102\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twodotshorizontalbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotshorizontalbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-406\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"149\" yOffset=\"-763\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-101\" yOffset=\"-763\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twodotshorizontalcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotshorizontalcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"149\" yOffset=\"-195\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-101\" yOffset=\"-195\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twodotstahbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotstahbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"601\" y=\"-618\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_tahabovesmall\" yOffset=\"-714\"/>\n    <component base=\"_dot-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"272\" yOffset=\"-907\"/>\n    <component base=\"_dot-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"85\" yOffset=\"-907\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabovesmall</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twodotstahcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotstahcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"_tahabovesmall\" yOffset=\"-50\"/>\n    <component base=\"_dot-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"272\" yOffset=\"-243\"/>\n    <component base=\"_dot-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"85\" yOffset=\"-243\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabovesmall</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"562\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1172\" name=\"top\"/>\n  <outline>\n    <component base=\"_twodotsverticalabove-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twodotsverticalbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotsverticalbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-626\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_twodotsverticalabove-ar\" yOffset=\"-1233\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twodotsverticalcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotsverticalcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"21\" yOffset=\"698\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"18\" yOffset=\"413\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twoinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twoinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2082\"/>\n  <outline>\n    <component base=\"twosuperior\" yOffset=\"-803\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/twosuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twosuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B2\"/>\n  <outline>\n    <contour>\n      <point x=\"337\" y=\"802\" type=\"line\"/>\n      <point x=\"675\" y=\"802\" type=\"line\"/>\n      <point x=\"675\" y=\"1047\" type=\"line\"/>\n      <point x=\"804\" y=\"1114\"/>\n      <point x=\"861\" y=\"1179\"/>\n      <point x=\"861\" y=\"1259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"1368\"/>\n      <point x=\"759\" y=\"1440\"/>\n      <point x=\"603\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"1440\"/>\n      <point x=\"379\" y=\"1419\"/>\n      <point x=\"312\" y=\"1380\" type=\"curve\"/>\n      <point x=\"378\" y=\"1192\" type=\"line\"/>\n      <point x=\"430\" y=\"1217\"/>\n      <point x=\"485\" y=\"1230\"/>\n      <point x=\"532\" y=\"1230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"1230\"/>\n      <point x=\"601\" y=\"1216\"/>\n      <point x=\"601\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"1130\"/>\n      <point x=\"514\" y=\"1075\"/>\n      <point x=\"337\" y=\"1026\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"363\" y=\"802\" type=\"line\"/>\n      <point x=\"887\" y=\"802\" type=\"line\"/>\n      <point x=\"887\" y=\"1009\" type=\"line\"/>\n      <point x=\"363\" y=\"1009\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/u-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"_damma-ar\" xOffset=\"63\" yOffset=\"-329\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/u-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C7\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"_damma-ar\" xOffset=\"63\" yOffset=\"-329\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/u-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0443\"/>\n  <outline>\n    <component base=\"y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0075\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1070\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"top\"/>\n  <anchor x=\"1110\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"446\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"-20\"/>\n      <point x=\"687\" y=\"60\"/>\n      <point x=\"720\" y=\"204\" type=\"curve\"/>\n      <point x=\"802\" y=\"204\" type=\"line\"/>\n      <point x=\"748\" y=\"557\" type=\"line\"/>\n      <point x=\"748\" y=\"326\"/>\n      <point x=\"683\" y=\"237\"/>\n      <point x=\"556\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"458\" y=\"237\"/>\n      <point x=\"400\" y=\"305\"/>\n      <point x=\"400\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1060\" type=\"line\"/>\n      <point x=\"129\" y=\"1060\" type=\"line\"/>\n      <point x=\"129\" y=\"360\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"129\" y=\"118\"/>\n      <point x=\"244\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"766\" y=\"-10\" type=\"line\"/>\n      <point x=\"1165\" y=\"0\" type=\"line\"/>\n      <point x=\"1165\" y=\"220\" type=\"line\"/>\n      <point x=\"1019\" y=\"242\" type=\"line\"/>\n      <point x=\"1019\" y=\"430\" type=\"line\"/>\n      <point x=\"748\" y=\"430\" type=\"line\"/>\n      <point x=\"748\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"748\" y=\"300\" type=\"line\"/>\n      <point x=\"1019\" y=\"360\" type=\"line\"/>\n      <point x=\"1019\" y=\"1060\" type=\"line\"/>\n      <point x=\"748\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"696\" y=\"1289\" name=\"top\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"352\" yOffset=\"-239\"/>\n    <component base=\"_damma-ar\" xOffset=\"-130\" yOffset=\"-359\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>waw-ar.fina</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_damma-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0677\"/>\n  <anchor x=\"696\" y=\"1289\" name=\"top\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"hamzaabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"352\" yOffset=\"-239\"/>\n    <component base=\"_damma-ar\" xOffset=\"-130\" yOffset=\"-359\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>waw-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_damma-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FA\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"acutecomb\" xOffset=\"41\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ubreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ubreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016D\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ucircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ucircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FB\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/udieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"udieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FC\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-18\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/udotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"udotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE5\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ugrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ugrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F9\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"gravecomb\" xOffset=\"-65\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE7\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uhorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B0\"/>\n  <outline>\n    <contour>\n      <point x=\"841\" y=\"833\" type=\"line\"/>\n      <point x=\"881\" y=\"843\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1127\" y=\"904\"/>\n      <point x=\"1228\" y=\"1063\"/>\n      <point x=\"1228\" y=\"1343\" type=\"curve\"/>\n      <point x=\"958\" y=\"1343\" type=\"line\"/>\n      <point x=\"958\" y=\"1183\"/>\n      <point x=\"915\" y=\"1067\"/>\n      <point x=\"806\" y=\"1062\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <component base=\"u\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>u</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uhornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE9\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"acutecomb\" xOffset=\"41\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uhorndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF1\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uhorngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEB\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"gravecomb\" xOffset=\"-65\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uhornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EED\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uhorntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEF\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"tildecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uhungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0171\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"hungarumlautcomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/umacron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"umacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04EF\"/>\n  <outline>\n    <component base=\"u-cy\"/>\n    <component base=\"macroncomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/umacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"umacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016B\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"macroncomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/underscore.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005F\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"-250\" type=\"line\"/>\n      <point x=\"1100\" y=\"-250\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/underscore_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"-250\" type=\"line\"/>\n      <point x=\"1100\" y=\"-250\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"-20\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/underscore_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"-250\" type=\"line\"/>\n      <point x=\"1250\" y=\"-250\" type=\"line\"/>\n      <point x=\"1250\" y=\"0\" type=\"line\"/>\n      <point x=\"-50\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/underscore_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"-250\" type=\"line\"/>\n      <point x=\"1220\" y=\"-250\" type=\"line\"/>\n      <point x=\"1220\" y=\"0\" type=\"line\"/>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/underscore_underscore.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_underscore.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"280\" y=\"-250\" type=\"line\"/>\n      <point x=\"2120\" y=\"-250\" type=\"line\"/>\n      <point x=\"2120\" y=\"0\" type=\"line\"/>\n      <point x=\"280\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/underscoredbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscoredbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2017\"/>\n  <outline>\n    <component base=\"underscore\"/>\n    <component base=\"underscore\" yOffset=\"-346\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>underscore</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>underscore</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uni08B_3.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B3.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"threedotsdowncenter-ar\" xScale=\"0.6\" yScale=\"0.6\" xOffset=\"269\" yOffset=\"-325\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uni08B_3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B3\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"threedotsdowncenter-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"239\" yOffset=\"-319\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uni08B_3.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B3.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"61\" yOffset=\"6\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uni08B_3.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B3.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"9\" yOffset=\"-4\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uni08B_4.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B4.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uni08B_4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B4\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uni08B_4.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B4.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-33\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uni08B_4.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B4.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uni08B_9.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B9.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"noonabove-ar\" xOffset=\"20\" yOffset=\"-375\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uniF_B_C_0.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uniFBC0\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FBC0\"/>\n  <outline>\n    <component base=\"_tahabove\" xOffset=\"33\" yOffset=\"77\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/unitS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"unitSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241F\"/>\n  <outline>\n    <component base=\"U.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>U.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0173\"/>\n  <anchor x=\"560\" y=\"-424\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1020\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"-424\"/>\n      <point x=\"1090\" y=\"-421\"/>\n      <point x=\"1127\" y=\"-415\" type=\"curve\"/>\n      <point x=\"1153\" y=\"-178\" type=\"line\"/>\n      <point x=\"1120\" y=\"-185\"/>\n      <point x=\"1088\" y=\"-189\"/>\n      <point x=\"1063\" y=\"-189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"-189\"/>\n      <point x=\"980\" y=\"-167\"/>\n      <point x=\"980\" y=\"-126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"980\" y=\"-46\"/>\n      <point x=\"1044\" y=\"0\"/>\n      <point x=\"1154\" y=\"0\" type=\"curve\"/>\n      <point x=\"1134\" y=\"32\" type=\"line\"/>\n      <point x=\"894\" y=\"30\" type=\"line\"/>\n      <point x=\"894\" y=\"-43\" type=\"line\"/>\n      <point x=\"821\" y=\"-66\"/>\n      <point x=\"780\" y=\"-135\"/>\n      <point x=\"780\" y=\"-229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"-353\"/>\n      <point x=\"867\" y=\"-424\"/>\n    </contour>\n    <component base=\"u\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>u</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2191\"/>\n  <outline>\n    <contour>\n      <point x=\"731\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"1251\" type=\"line\"/>\n      <point x=\"469\" y=\"1251\" type=\"line\"/>\n      <point x=\"469\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1161\" y=\"950\" type=\"line\"/>\n      <point x=\"661\" y=\"1440\" type=\"line\"/>\n      <point x=\"539\" y=\"1440\" type=\"line\"/>\n      <point x=\"39\" y=\"950\" type=\"line\"/>\n      <point x=\"194\" y=\"770\" type=\"line\"/>\n      <point x=\"591\" y=\"1156\" type=\"line\"/>\n      <point x=\"609\" y=\"1156\" type=\"line\"/>\n      <point x=\"1006\" y=\"770\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B4\"/>\n  <note>\nuni25B4\n</note>\n  <outline>\n    <contour>\n      <point x=\"131\" y=\"305\" type=\"line\"/>\n      <point x=\"1069\" y=\"305\" type=\"line\"/>\n      <point x=\"600\" y=\"1102\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B2\"/>\n  <note>\ntriagup\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"230\" type=\"line\"/>\n      <point x=\"1200\" y=\"230\" type=\"line\"/>\n      <point x=\"600\" y=\"1250\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upD_ashA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upDashArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21E1\"/>\n  <outline>\n    <contour>\n      <point x=\"469\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"219\" type=\"line\"/>\n      <point x=\"469\" y=\"219\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"287\" type=\"line\"/>\n      <point x=\"731\" y=\"287\" type=\"line\"/>\n      <point x=\"731\" y=\"503\" type=\"line\"/>\n      <point x=\"469\" y=\"503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"571\" type=\"line\"/>\n      <point x=\"731\" y=\"571\" type=\"line\"/>\n      <point x=\"731\" y=\"778\" type=\"line\"/>\n      <point x=\"469\" y=\"778\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"846\" type=\"line\"/>\n      <point x=\"731\" y=\"846\" type=\"line\"/>\n      <point x=\"731\" y=\"1192\" type=\"line\"/>\n      <point x=\"469\" y=\"1192\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"770\" type=\"line\"/>\n      <point x=\"591\" y=\"1156\" type=\"line\"/>\n      <point x=\"609\" y=\"1156\" type=\"line\"/>\n      <point x=\"1006\" y=\"770\" type=\"line\"/>\n      <point x=\"1161\" y=\"950\" type=\"line\"/>\n      <point x=\"661\" y=\"1440\" type=\"line\"/>\n      <point x=\"539\" y=\"1440\" type=\"line\"/>\n      <point x=\"39\" y=\"950\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upD_ownA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upDownArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2195\"/>\n  <outline>\n    <contour>\n      <point x=\"194\" y=\"770\" type=\"line\"/>\n      <point x=\"591\" y=\"1156\" type=\"line\"/>\n      <point x=\"609\" y=\"1156\" type=\"line\"/>\n      <point x=\"1006\" y=\"770\" type=\"line\"/>\n      <point x=\"1161\" y=\"950\" type=\"line\"/>\n      <point x=\"661\" y=\"1440\" type=\"line\"/>\n      <point x=\"539\" y=\"1440\" type=\"line\"/>\n      <point x=\"39\" y=\"950\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"539\" y=\"-20\" type=\"line\"/>\n      <point x=\"661\" y=\"-20\" type=\"line\"/>\n      <point x=\"1161\" y=\"470\" type=\"line\"/>\n      <point x=\"1006\" y=\"650\" type=\"line\"/>\n      <point x=\"609\" y=\"264\" type=\"line\"/>\n      <point x=\"591\" y=\"264\" type=\"line\"/>\n      <point x=\"194\" y=\"650\" type=\"line\"/>\n      <point x=\"39\" y=\"470\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"169\" type=\"line\"/>\n      <point x=\"731\" y=\"169\" type=\"line\"/>\n      <point x=\"731\" y=\"1280\" type=\"line\"/>\n      <point x=\"469\" y=\"1280\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upD_ownbaseA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upDownbaseArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21A8\"/>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"-243\" type=\"line\"/>\n      <point x=\"1080\" y=\"-243\" type=\"line\"/>\n      <point x=\"1080\" y=\"0\" type=\"line\"/>\n      <point x=\"120\" y=\"0\" type=\"line\"/>\n    </contour>\n    <component base=\"upDownArrow\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>upDownArrow</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upL_eftH_alfB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upLeftHalfBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25ED\"/>\n  <note>\nuni25ED\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"280\" type=\"line\"/>\n      <point x=\"600\" y=\"1104\" type=\"line\"/>\n      <point x=\"110\" y=\"280\" type=\"line\"/>\n    </contour>\n    <component base=\"upWhiteTriangle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>upWhiteTriangle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upR_ightH_alfB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upRightHalfBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EE\"/>\n  <note>\nuni25EE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"280\" type=\"line\"/>\n      <point x=\"1090\" y=\"280\" type=\"line\"/>\n      <point x=\"600\" y=\"1104\" type=\"line\"/>\n    </contour>\n    <component base=\"upWhiteTriangle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B5\"/>\n  <note>\nuni25B5\n</note>\n  <outline>\n    <contour>\n      <point x=\"131\" y=\"305\" type=\"line\"/>\n      <point x=\"1069\" y=\"305\" type=\"line\"/>\n      <point x=\"600\" y=\"1102\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"394\" y=\"385\" type=\"line\"/>\n      <point x=\"683\" y=\"876\" type=\"line\"/>\n      <point x=\"517\" y=\"876\" type=\"line\"/>\n      <point x=\"806\" y=\"385\" type=\"line\"/>\n      <point x=\"888\" y=\"497\" type=\"line\"/>\n      <point x=\"312\" y=\"497\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B3\"/>\n  <note>\nuni25B3\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"230\" type=\"line\"/>\n      <point x=\"1200\" y=\"230\" type=\"line\"/>\n      <point x=\"600\" y=\"1250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"253\" y=\"250\" type=\"line\"/>\n      <point x=\"702\" y=\"1013\" type=\"line\"/>\n      <point x=\"500\" y=\"1015\" type=\"line\"/>\n      <point x=\"944\" y=\"256\" type=\"line\"/>\n      <point x=\"1056\" y=\"447\" type=\"line\"/>\n      <point x=\"144\" y=\"447\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upW_hiteT_riangleW_ithD_ot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upWhiteTriangleWithDot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EC\"/>\n  <note>\nuni25EC\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"515\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"515\"/>\n      <point x=\"675\" y=\"549\"/>\n      <point x=\"675\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"631\"/>\n      <point x=\"641\" y=\"665\"/>\n      <point x=\"600\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"559\" y=\"665\"/>\n      <point x=\"525\" y=\"631\"/>\n      <point x=\"525\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"549\"/>\n      <point x=\"559\" y=\"515\"/>\n    </contour>\n    <component base=\"upWhiteTriangle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>upWhiteTriangle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB80\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperFiveEighthsBlock\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\r\n      <point x=\"0\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperFiveEighthsBlock.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\r\n      <point x=\"0\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E0\"/>\n  <note>\nuni25E0\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"283\" y=\"710\" type=\"line\"/>\n      <point x=\"283\" y=\"901\"/>\n      <point x=\"409\" y=\"1027\"/>\n      <point x=\"600\" y=\"1027\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"1027\"/>\n      <point x=\"917\" y=\"901\"/>\n      <point x=\"917\" y=\"710\" type=\"curve\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D3\"/>\n  <note>\nuni25D3\n</note>\n  <outline>\n    <contour>\n      <point x=\"181\" y=\"710\" type=\"line\"/>\n      <point x=\"1015\" y=\"710\" type=\"line\"/>\n      <point x=\"1015\" y=\"1008\" type=\"line\"/>\n      <point x=\"594\" y=\"1168\" type=\"line\"/>\n      <point x=\"181\" y=\"961\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2580\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfI_nverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfInverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DA\"/>\n  <note>\nuni25DA\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"283\" y=\"710\" type=\"curve\"/>\n      <point x=\"917\" y=\"710\" type=\"line\"/>\n      <point x=\"917\" y=\"901\"/>\n      <point x=\"791\" y=\"1027\"/>\n      <point x=\"600\" y=\"1027\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"1027\"/>\n      <point x=\"283\" y=\"901\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerLeftAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2599\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerLeftAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259C\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DC\"/>\n  <note>\nuni25DC\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"283\" y=\"710\" type=\"line\"/>\n      <point x=\"283\" y=\"901\"/>\n      <point x=\"409\" y=\"1027\"/>\n      <point x=\"600\" y=\"1027\" type=\"curve\"/>\n      <point x=\"600\" y=\"1235\" type=\"line\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E4\"/>\n  <note>\nuni25E4\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2598\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftD_iagonalH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftDiagonalHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E9\"/>\n  <note>\nuni25E9\n</note>\n  <outline>\n    <contour>\n      <point x=\"101\" y=\"221\" type=\"line\"/>\n      <point x=\"1089\" y=\"1200\" type=\"line\"/>\n      <point x=\"101\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F4\"/>\n  <note>\nuni25F4\n</note>\n  <outline>\n    <contour>\n      <point x=\"153\" y=\"618\" type=\"line\"/>\n      <point x=\"692\" y=\"618\" type=\"line\"/>\n      <point x=\"692\" y=\"1148\" type=\"line\"/>\n      <point x=\"508\" y=\"1148\" type=\"line\"/>\n      <point x=\"508\" y=\"802\" type=\"line\"/>\n      <point x=\"153\" y=\"802\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F8\"/>\n  <note>\nuni25F8\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"507\" type=\"line\"/>\n      <point x=\"292\" y=\"466\" type=\"line\"/>\n      <point x=\"292\" y=\"1166\" type=\"line\"/>\n      <point x=\"144\" y=\"1018\" type=\"line\"/>\n      <point x=\"844\" y=\"1018\" type=\"line\"/>\n      <point x=\"753\" y=\"1159\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D5\"/>\n  <note>\nuni25D5\n</note>\n  <outline>\n    <contour>\n      <point x=\"431\" y=\"225\" type=\"line\"/>\n      <point x=\"875\" y=\"276\" type=\"line\"/>\n      <point x=\"1072\" y=\"561\" type=\"line\"/>\n      <point x=\"1072\" y=\"901\" type=\"line\"/>\n      <point x=\"780\" y=\"1185\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"125\" y=\"534\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2594\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259F\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DD\"/>\n  <note>\nuni25DD\n</note>\n  <outline>\n    <contour>\n      <point x=\"917\" y=\"710\" type=\"curve\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\"/>\n      <point x=\"600\" y=\"1027\" type=\"line\"/>\n      <point x=\"791\" y=\"1027\"/>\n      <point x=\"917\" y=\"901\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D4\"/>\n  <note>\nuni25D4\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n      <point x=\"959\" y=\"1080\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E5\"/>\n  <note>\nuni25E5\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259D\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F7\"/>\n  <note>\nuni25F7\n</note>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"618\" type=\"line\"/>\n      <point x=\"1058\" y=\"618\" type=\"line\"/>\n      <point x=\"1058\" y=\"802\" type=\"line\"/>\n      <point x=\"692\" y=\"802\" type=\"line\"/>\n      <point x=\"692\" y=\"1157\" type=\"line\"/>\n      <point x=\"508\" y=\"1157\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F9\"/>\n  <note>\nuni25F9\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1099\" y=\"507\" type=\"line\"/>\n      <point x=\"447\" y=\"1159\" type=\"line\"/>\n      <point x=\"356\" y=\"1018\" type=\"line\"/>\n      <point x=\"1056\" y=\"1018\" type=\"line\"/>\n      <point x=\"908\" y=\"1166\" type=\"line\"/>\n      <point x=\"908\" y=\"466\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperSevenEighthsBlock\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperSevenEighthsBlock.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperThreeEighthsBlock\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperThreeEighthsBlock.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperlefttolowerrightF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperlefttolowerrightFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A7\"/>\n  <note>\nuni25A7\n</note>\n  <outline>\n    <contour>\n      <point x=\"129\" y=\"1063\" type=\"line\"/>\n      <point x=\"969\" y=\"223\" type=\"line\"/>\n      <point x=\"1087\" y=\"351\" type=\"line\"/>\n      <point x=\"257\" y=\"1181\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"183\" y=\"682\" type=\"line\"/>\n      <point x=\"586\" y=\"279\" type=\"line\"/>\n      <point x=\"815\" y=\"279\" type=\"line\"/>\n      <point x=\"183\" y=\"911\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"409\" y=\"1127\" type=\"line\"/>\n      <point x=\"1063\" y=\"472\" type=\"line\"/>\n      <point x=\"1063\" y=\"718\" type=\"line\"/>\n      <point x=\"637\" y=\"1127\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upperrighttolowerleftF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperrighttolowerleftFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A8\"/>\n  <note>\nuni25A8\n</note>\n  <outline>\n    <contour>\n      <point x=\"1084\" y=\"1063\" type=\"line\"/>\n      <point x=\"957\" y=\"1181\" type=\"line\"/>\n      <point x=\"126\" y=\"351\" type=\"line\"/>\n      <point x=\"244\" y=\"223\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1030\" y=\"682\" type=\"line\"/>\n      <point x=\"1030\" y=\"911\" type=\"line\"/>\n      <point x=\"398\" y=\"279\" type=\"line\"/>\n      <point x=\"627\" y=\"279\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"805\" y=\"1127\" type=\"line\"/>\n      <point x=\"576\" y=\"1127\" type=\"line\"/>\n      <point x=\"150\" y=\"718\" type=\"line\"/>\n      <point x=\"150\" y=\"472\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upsilon-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilon-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"028A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1059\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"317\" y=\"860\" type=\"line\"/>\n      <point x=\"317\" y=\"778\" type=\"line\"/>\n      <point x=\"145\" y=\"718\"/>\n      <point x=\"59\" y=\"597\"/>\n      <point x=\"59\" y=\"413\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"144\"/>\n      <point x=\"260\" y=\"-15\"/>\n      <point x=\"600\" y=\"-15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"-15\"/>\n      <point x=\"1141\" y=\"144\"/>\n      <point x=\"1141\" y=\"413\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"598\"/>\n      <point x=\"1063\" y=\"718\"/>\n      <point x=\"907\" y=\"774\" type=\"curve\"/>\n      <point x=\"907\" y=\"854\" type=\"line\"/>\n      <point x=\"661\" y=\"810\" type=\"line\"/>\n      <point x=\"797\" y=\"780\"/>\n      <point x=\"864\" y=\"672\"/>\n      <point x=\"864\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"332\"/>\n      <point x=\"766\" y=\"242\"/>\n      <point x=\"600\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"434\" y=\"242\"/>\n      <point x=\"336\" y=\"332\"/>\n      <point x=\"336\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"669\"/>\n      <point x=\"411\" y=\"777\"/>\n      <point x=\"563\" y=\"810\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"87\" y=\"1059\" type=\"line\"/>\n      <point x=\"87\" y=\"810\" type=\"line\"/>\n      <point x=\"563\" y=\"810\" type=\"line\"/>\n      <point x=\"563\" y=\"1059\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"661\" y=\"1059\" type=\"line\"/>\n      <point x=\"661\" y=\"810\" type=\"line\"/>\n      <point x=\"1113\" y=\"810\" type=\"line\"/>\n      <point x=\"1113\" y=\"1059\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upsilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C5\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"640\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"-20\"/>\n      <point x=\"1061\" y=\"122\"/>\n      <point x=\"1061\" y=\"410\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"1060\" type=\"line\"/>\n      <point x=\"790\" y=\"1060\" type=\"line\"/>\n      <point x=\"790\" y=\"418\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"298\"/>\n      <point x=\"741\" y=\"237\"/>\n      <point x=\"640\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"237\"/>\n      <point x=\"489\" y=\"298\"/>\n      <point x=\"489\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"780\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"986\"/>\n      <point x=\"414\" y=\"1060\"/>\n      <point x=\"205\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"5\" y=\"1060\" type=\"line\"/>\n      <point x=\"5\" y=\"808\" type=\"line\"/>\n      <point x=\"106\" y=\"808\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"188\" y=\"808\"/>\n      <point x=\"218\" y=\"771\"/>\n      <point x=\"218\" y=\"668\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"218\" y=\"410\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"218\" y=\"122\"/>\n      <point x=\"359\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upsilondieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilondieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CB\"/>\n  <outline>\n    <component base=\"upsilon\"/>\n    <component base=\"dieresiscomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upsilondieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilondieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B0\"/>\n  <outline>\n    <component base=\"upsilon\"/>\n    <component base=\"dieresistonos\" xOffset=\"22\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/upsilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CD\"/>\n  <outline>\n    <component base=\"upsilon\"/>\n    <component base=\"tonos\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/uring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016F\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"ringcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ushort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ushort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045E\"/>\n  <outline>\n    <component base=\"u-cy\"/>\n    <component base=\"brevecomb-cy\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ustraight-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ustraight-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04AF\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"1137\" y=\"1060\" type=\"line\"/>\n      <point x=\"861\" y=\"1060\" type=\"line\"/>\n      <point x=\"569\" y=\"243\" type=\"line\"/>\n      <point x=\"631\" y=\"243\" type=\"line\"/>\n      <point x=\"339\" y=\"1060\" type=\"line\"/>\n      <point x=\"63\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"465\" y=\"-460\" type=\"line\"/>\n      <point x=\"735\" y=\"-460\" type=\"line\"/>\n      <point x=\"735\" y=\"96\" type=\"line\"/>\n      <point x=\"465\" y=\"96\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ustraightstroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ustraightstroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B1\"/>\n  <outline>\n    <contour>\n      <point x=\"198\" y=\"-249\" type=\"line\"/>\n      <point x=\"1003\" y=\"-249\" type=\"line\"/>\n      <point x=\"1003\" y=\"0\" type=\"line\"/>\n      <point x=\"198\" y=\"0\" type=\"line\"/>\n    </contour>\n    <component base=\"ustraight-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>ustraight-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/utilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"utilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0169\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"tildecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/v.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"v\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0076\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"605\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"426\" y=\"0\" type=\"line\"/>\n      <point x=\"774\" y=\"0\" type=\"line\"/>\n      <point x=\"1137\" y=\"1060\" type=\"line\"/>\n      <point x=\"861\" y=\"1060\" type=\"line\"/>\n      <point x=\"609\" y=\"238\" type=\"line\"/>\n      <point x=\"591\" y=\"238\" type=\"line\"/>\n      <point x=\"339\" y=\"1060\" type=\"line\"/>\n      <point x=\"63\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/vabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vabove-ar\" format=\"2\">\n  <unicode hex=\"065A\"/>\n  <anchor x=\"601\" y=\"782\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"962\" name=\"top\"/>\n  <outline>\n    <component base=\"_vabove\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/vav-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vav-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D5\"/>\n  <anchor x=\"362\" y=\"607\" name=\"center\"/>\n  <anchor x=\"510\" y=\"1200\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"583\" y=\"0\" type=\"line\"/>\n      <point x=\"846\" y=\"0\" type=\"line\"/>\n      <point x=\"846\" y=\"1200\" type=\"line\"/>\n      <point x=\"583\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"930\" type=\"line\"/>\n      <point x=\"844\" y=\"930\" type=\"line\"/>\n      <point x=\"844\" y=\"1200\" type=\"line\"/>\n      <point x=\"174\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/vavdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vavdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB35\"/>\n  <outline>\n    <component base=\"vav-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-238\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/vavholam-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vavholam-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB4B\"/>\n  <outline>\n    <component base=\"vav-hb\"/>\n    <component base=\"holam-hb\" xOffset=\"-90\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ve-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"70\" yOffset=\"228\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ve-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CB\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"70\" yOffset=\"228\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ve-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0432\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"418\" y=\"0\" type=\"line\"/>\n      <point x=\"774\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"0\"/>\n      <point x=\"1111\" y=\"102\"/>\n      <point x=\"1111\" y=\"280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"441\"/>\n      <point x=\"980\" y=\"533\"/>\n      <point x=\"752\" y=\"533\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"533\" type=\"line\"/>\n      <point x=\"356\" y=\"453\" type=\"line\"/>\n      <point x=\"700\" y=\"453\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"453\"/>\n      <point x=\"834\" y=\"422\"/>\n      <point x=\"834\" y=\"359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"291\"/>\n      <point x=\"789\" y=\"257\"/>\n      <point x=\"703\" y=\"257\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"257\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"161\" y=\"0\" type=\"line\"/>\n      <point x=\"432\" y=\"0\" type=\"line\"/>\n      <point x=\"432\" y=\"1060\" type=\"line\"/>\n      <point x=\"161\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"308\" y=\"498\" type=\"line\"/>\n      <point x=\"747\" y=\"498\" type=\"line\"/>\n      <point x=\"747\" y=\"596\" type=\"line\"/>\n      <point x=\"308\" y=\"596\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"356\" y=\"567\" type=\"line\"/>\n      <point x=\"734\" y=\"567\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"567\"/>\n      <point x=\"1071\" y=\"644\"/>\n      <point x=\"1071\" y=\"780\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"958\"/>\n      <point x=\"940\" y=\"1060\"/>\n      <point x=\"712\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"1060\" type=\"line\"/>\n      <point x=\"418\" y=\"803\" type=\"line\"/>\n      <point x=\"694\" y=\"803\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"759\" y=\"803\"/>\n      <point x=\"794\" y=\"777\"/>\n      <point x=\"794\" y=\"725\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"673\"/>\n      <point x=\"760\" y=\"647\"/>\n      <point x=\"696\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"647\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ve-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1440\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"604\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"-20\"/>\n      <point x=\"1081\" y=\"133\"/>\n      <point x=\"1081\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"592\"/>\n      <point x=\"974\" y=\"719\"/>\n      <point x=\"786\" y=\"724\" type=\"curve\"/>\n      <point x=\"786\" y=\"763\" type=\"line\"/>\n      <point x=\"949\" y=\"788\"/>\n      <point x=\"1041\" y=\"889\"/>\n      <point x=\"1041\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"1308\"/>\n      <point x=\"881\" y=\"1440\"/>\n      <point x=\"602\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"1440\"/>\n      <point x=\"133\" y=\"1256\"/>\n      <point x=\"133\" y=\"923\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"133\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"133\" y=\"106\"/>\n      <point x=\"273\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"610\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"237\"/>\n      <point x=\"404\" y=\"294\"/>\n      <point x=\"404\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"920\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"1083\"/>\n      <point x=\"471\" y=\"1183\"/>\n      <point x=\"606\" y=\"1183\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"1183\"/>\n      <point x=\"764\" y=\"1136\"/>\n      <point x=\"764\" y=\"1043\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"923\"/>\n      <point x=\"702\" y=\"866\"/>\n      <point x=\"596\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"866\" type=\"line\"/>\n      <point x=\"298\" y=\"614\" type=\"line\"/>\n      <point x=\"602\" y=\"614\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"614\"/>\n      <point x=\"804\" y=\"539\"/>\n      <point x=\"804\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"309\"/>\n      <point x=\"733\" y=\"237\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/vectorO_rC_rossP_roduct.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vectorOrCrossProduct\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2A2F\"/>\n  <outline>\n    <component base=\"multiply\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>multiply</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-81\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"2\" yOffset=\"347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"242\" yOffset=\"347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A4\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"249\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"164\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"2\" yOffset=\"347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/venus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"venus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2640\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"520\"/>\n      <point x=\"1081\" y=\"691\"/>\n      <point x=\"1081\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"1276\"/>\n      <point x=\"905\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"1440\"/>\n      <point x=\"119\" y=\"1276\"/>\n      <point x=\"119\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"691\"/>\n      <point x=\"295\" y=\"520\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"157\" type=\"line\"/>\n      <point x=\"1040\" y=\"157\" type=\"line\"/>\n      <point x=\"1040\" y=\"397\" type=\"line\"/>\n      <point x=\"165\" y=\"397\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"580\" type=\"line\"/>\n      <point x=\"468\" y=\"580\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"773\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"773\"/>\n      <point x=\"396\" y=\"851\"/>\n      <point x=\"396\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"1116\"/>\n      <point x=\"470\" y=\"1188\"/>\n      <point x=\"600\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"1188\"/>\n      <point x=\"804\" y=\"1116\"/>\n      <point x=\"804\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"851\"/>\n      <point x=\"730\" y=\"773\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verseC_omma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verseComma-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060E\"/>\n  <outline>\n    <contour>\n      <point x=\"505\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"-10\"/>\n      <point x=\"1012\" y=\"-3\"/>\n      <point x=\"1158\" y=\"14\" type=\"curve\"/>\n      <point x=\"1159\" y=\"224\" type=\"line\"/>\n      <point x=\"1016\" y=\"213\"/>\n      <point x=\"732\" y=\"200\"/>\n      <point x=\"504\" y=\"200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"200\"/>\n      <point x=\"245\" y=\"217\"/>\n      <point x=\"245\" y=\"270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"245\" y=\"321\"/>\n      <point x=\"286\" y=\"356\"/>\n      <point x=\"343\" y=\"356\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"356\"/>\n      <point x=\"437\" y=\"328\"/>\n      <point x=\"437\" y=\"245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"172\"/>\n      <point x=\"429\" y=\"134\"/>\n      <point x=\"418\" y=\"63\" type=\"curve\"/>\n      <point x=\"599\" y=\"49\" type=\"line\"/>\n      <point x=\"615\" y=\"117\"/>\n      <point x=\"626\" y=\"202\"/>\n      <point x=\"626\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"626\" y=\"462\"/>\n      <point x=\"551\" y=\"581\"/>\n      <point x=\"360\" y=\"581\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"173\" y=\"581\"/>\n      <point x=\"44\" y=\"425\"/>\n      <point x=\"44\" y=\"265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"44\" y=\"73\"/>\n      <point x=\"154\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalB_isectingL_ineW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalBisectingLineWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EB\"/>\n  <note>\nuni25EB\n</note>\n  <outline>\n    <contour>\n      <point x=\"708\" y=\"219\" type=\"line\"/>\n      <point x=\"708\" y=\"1201\" type=\"line\"/>\n      <point x=\"492\" y=\"1201\" type=\"line\"/>\n      <point x=\"492\" y=\"219\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalF_illC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalFillCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CD\"/>\n  <note>\nuni25CD\n</note>\n  <outline>\n    <contour>\n      <point x=\"395\" y=\"274\" type=\"line\"/>\n      <point x=\"562\" y=\"274\" type=\"line\"/>\n      <point x=\"562\" y=\"1168\" type=\"line\"/>\n      <point x=\"395\" y=\"1169\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"638\" y=\"274\" type=\"line\"/>\n      <point x=\"804\" y=\"274\" type=\"line\"/>\n      <point x=\"804\" y=\"1168\" type=\"line\"/>\n      <point x=\"638\" y=\"1169\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A5\"/>\n  <note>\nuni25A5\n</note>\n  <outline>\n    <contour>\n      <point x=\"567\" y=\"259\" type=\"line\"/>\n      <point x=\"567\" y=\"1161\" type=\"line\"/>\n      <point x=\"383\" y=\"1161\" type=\"line\"/>\n      <point x=\"383\" y=\"259\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"817\" y=\"259\" type=\"line\"/>\n      <point x=\"817\" y=\"1161\" type=\"line\"/>\n      <point x=\"633\" y=\"1161\" type=\"line\"/>\n      <point x=\"633\" y=\"259\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" xScale=\"0\" xyScale=\"1\" yxScale=\"-1\" yScale=\"0\" xOffset=\"1310\" yOffset=\"110\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB70\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-2.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB71\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-3.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB72\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-4.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB73\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-5.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB74\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-6.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB75\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-7.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalT_abulationC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalTabulationControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240B\"/>\n  <outline>\n    <component base=\"V.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>V.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/verticalT_abulationC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalTabulationControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"589\" y=\"180\" type=\"line\"/>\n      <point x=\"611\" y=\"180\" type=\"line\"/>\n      <point x=\"1126\" y=\"1234\" type=\"line\"/>\n      <point x=\"876\" y=\"1234\" type=\"line\"/>\n      <point x=\"749\" y=\"687\" type=\"line\"/>\n      <point x=\"451\" y=\"687\" type=\"line\"/>\n      <point x=\"324\" y=\"1234\" type=\"line\"/>\n      <point x=\"74\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"518\" type=\"line\"/>\n      <point x=\"731\" y=\"518\" type=\"line\"/>\n      <point x=\"731\" y=\"1234\" type=\"line\"/>\n      <point x=\"469\" y=\"1234\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/vhook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"028B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"610\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"913\" y=\"-20\"/>\n      <point x=\"1071\" y=\"141\"/>\n      <point x=\"1071\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"780\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"986\"/>\n      <point x=\"996\" y=\"1060\"/>\n      <point x=\"787\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"587\" y=\"1060\" type=\"line\"/>\n      <point x=\"587\" y=\"808\" type=\"line\"/>\n      <point x=\"688\" y=\"808\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"808\"/>\n      <point x=\"800\" y=\"771\"/>\n      <point x=\"800\" y=\"668\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"458\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"313\"/>\n      <point x=\"735\" y=\"237\"/>\n      <point x=\"610\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"237\"/>\n      <point x=\"400\" y=\"313\"/>\n      <point x=\"400\" y=\"458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1060\" type=\"line\"/>\n      <point x=\"129\" y=\"1060\" type=\"line\"/>\n      <point x=\"129\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"129\" y=\"141\"/>\n      <point x=\"294\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/vinvertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vinvertedabove-ar\" format=\"2\">\n  <unicode hex=\"065B\"/>\n  <anchor x=\"601\" y=\"782\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"962\" name=\"top\"/>\n  <outline>\n    <component base=\"_vabove\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1491\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_vabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/vturned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"028C\"/>\n  <outline>\n    <component base=\"el-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/w.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"w\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0077\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"703\" y=\"0\" type=\"line\"/>\n      <point x=\"1047\" y=\"0\" type=\"line\"/>\n      <point x=\"1147\" y=\"1060\" type=\"line\"/>\n      <point x=\"891\" y=\"1060\" type=\"line\"/>\n      <point x=\"826\" y=\"252\" type=\"line\"/>\n      <point x=\"808\" y=\"252\" type=\"line\"/>\n      <point x=\"687\" y=\"1060\" type=\"line\"/>\n      <point x=\"493\" y=\"1060\" type=\"line\"/>\n      <point x=\"580\" y=\"799\" type=\"line\"/>\n      <point x=\"596\" y=\"799\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"123\" y=\"0\" type=\"line\"/>\n      <point x=\"477\" y=\"0\" type=\"line\"/>\n      <point x=\"584\" y=\"799\" type=\"line\"/>\n      <point x=\"598\" y=\"799\" type=\"line\"/>\n      <point x=\"687\" y=\"1060\" type=\"line\"/>\n      <point x=\"493\" y=\"1060\" type=\"line\"/>\n      <point x=\"372\" y=\"252\" type=\"line\"/>\n      <point x=\"354\" y=\"252\" type=\"line\"/>\n      <point x=\"316\" y=\"1060\" type=\"line\"/>\n      <point x=\"53\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/w_w_w.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"w_w_w.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"3076\" y=\"0\" type=\"line\"/>\n      <point x=\"3453\" y=\"0\" type=\"line\"/>\n      <point x=\"3547\" y=\"1060\" type=\"line\"/>\n      <point x=\"3293\" y=\"1060\" type=\"line\"/>\n      <point x=\"3230\" y=\"252\" type=\"line\"/>\n      <point x=\"3210\" y=\"252\" type=\"line\"/>\n      <point x=\"3076\" y=\"940\" type=\"line\"/>\n      <point x=\"2823\" y=\"940\" type=\"line\"/>\n      <point x=\"2905\" y=\"682\" type=\"line\"/>\n      <point x=\"2955\" y=\"682\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"147\" y=\"0\" type=\"line\"/>\n      <point x=\"516\" y=\"0\" type=\"line\"/>\n      <point x=\"645\" y=\"682\" type=\"line\"/>\n      <point x=\"691\" y=\"682\" type=\"line\"/>\n      <point x=\"777\" y=\"940\" type=\"line\"/>\n      <point x=\"524\" y=\"940\" type=\"line\"/>\n      <point x=\"390\" y=\"252\" type=\"line\"/>\n      <point x=\"370\" y=\"252\" type=\"line\"/>\n      <point x=\"307\" y=\"1060\" type=\"line\"/>\n      <point x=\"53\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"0\" type=\"line\"/>\n      <point x=\"936\" y=\"0\" type=\"line\"/>\n      <point x=\"936\" y=\"252\" type=\"line\"/>\n      <point x=\"916\" y=\"252\" type=\"line\"/>\n      <point x=\"777\" y=\"940\" type=\"line\"/>\n      <point x=\"524\" y=\"940\" type=\"line\"/>\n      <point x=\"607\" y=\"682\" type=\"line\"/>\n      <point x=\"657\" y=\"682\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"916\" y=\"0\" type=\"line\"/>\n      <point x=\"1065\" y=\"0\" type=\"line\"/>\n      <point x=\"1210\" y=\"682\" type=\"line\"/>\n      <point x=\"1240\" y=\"682\" type=\"line\"/>\n      <point x=\"1343\" y=\"940\" type=\"line\"/>\n      <point x=\"1089\" y=\"940\" type=\"line\"/>\n      <point x=\"936\" y=\"252\" type=\"line\"/>\n      <point x=\"916\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1349\" y=\"0\" type=\"line\"/>\n      <point x=\"1506\" y=\"0\" type=\"line\"/>\n      <point x=\"1506\" y=\"252\" type=\"line\"/>\n      <point x=\"1486\" y=\"252\" type=\"line\"/>\n      <point x=\"1343\" y=\"940\" type=\"line\"/>\n      <point x=\"1089\" y=\"940\" type=\"line\"/>\n      <point x=\"1172\" y=\"682\" type=\"line\"/>\n      <point x=\"1222\" y=\"682\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1486\" y=\"0\" type=\"line\"/>\n      <point x=\"1643\" y=\"0\" type=\"line\"/>\n      <point x=\"1794\" y=\"682\" type=\"line\"/>\n      <point x=\"1824\" y=\"682\" type=\"line\"/>\n      <point x=\"1927\" y=\"940\" type=\"line\"/>\n      <point x=\"1673\" y=\"940\" type=\"line\"/>\n      <point x=\"1506\" y=\"252\" type=\"line\"/>\n      <point x=\"1486\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1957\" y=\"0\" type=\"line\"/>\n      <point x=\"2114\" y=\"0\" type=\"line\"/>\n      <point x=\"2114\" y=\"252\" type=\"line\"/>\n      <point x=\"2094\" y=\"252\" type=\"line\"/>\n      <point x=\"1927\" y=\"940\" type=\"line\"/>\n      <point x=\"1673\" y=\"940\" type=\"line\"/>\n      <point x=\"1756\" y=\"682\" type=\"line\"/>\n      <point x=\"1806\" y=\"682\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2094\" y=\"0\" type=\"line\"/>\n      <point x=\"2251\" y=\"0\" type=\"line\"/>\n      <point x=\"2378\" y=\"682\" type=\"line\"/>\n      <point x=\"2408\" y=\"682\" type=\"line\"/>\n      <point x=\"2511\" y=\"940\" type=\"line\"/>\n      <point x=\"2257\" y=\"940\" type=\"line\"/>\n      <point x=\"2114\" y=\"252\" type=\"line\"/>\n      <point x=\"2094\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2527\" y=\"0\" type=\"line\"/>\n      <point x=\"2684\" y=\"0\" type=\"line\"/>\n      <point x=\"2684\" y=\"252\" type=\"line\"/>\n      <point x=\"2664\" y=\"252\" type=\"line\"/>\n      <point x=\"2511\" y=\"940\" type=\"line\"/>\n      <point x=\"2257\" y=\"940\" type=\"line\"/>\n      <point x=\"2340\" y=\"682\" type=\"line\"/>\n      <point x=\"2390\" y=\"682\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2664\" y=\"0\" type=\"line\"/>\n      <point x=\"2820\" y=\"0\" type=\"line\"/>\n      <point x=\"2943\" y=\"682\" type=\"line\"/>\n      <point x=\"2973\" y=\"682\" type=\"line\"/>\n      <point x=\"3076\" y=\"940\" type=\"line\"/>\n      <point x=\"2823\" y=\"940\" type=\"line\"/>\n      <point x=\"2684\" y=\"252\" type=\"line\"/>\n      <point x=\"2664\" y=\"252\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E83\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"acutecomb\" xOffset=\"51\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wasla-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wasla-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"655\" y=\"1194\" name=\"_top\"/>\n  <anchor x=\"651\" y=\"1126\" name=\"_top.dot\"/>\n  <anchor x=\"630\" y=\"1577\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"705\" y=\"1168\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"1168\"/>\n      <point x=\"946\" y=\"1232\"/>\n      <point x=\"946\" y=\"1366\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1481\"/>\n      <point x=\"864\" y=\"1567\"/>\n      <point x=\"757\" y=\"1567\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1567\"/>\n      <point x=\"561\" y=\"1470\"/>\n      <point x=\"475\" y=\"1321\" type=\"curve\"/>\n      <point x=\"575\" y=\"1258\" type=\"line\"/>\n      <point x=\"631\" y=\"1361\"/>\n      <point x=\"686\" y=\"1418\"/>\n      <point x=\"739\" y=\"1418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"1418\"/>\n      <point x=\"808\" y=\"1388\"/>\n      <point x=\"808\" y=\"1359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"1329\"/>\n      <point x=\"782\" y=\"1319\"/>\n      <point x=\"725\" y=\"1319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"1319\"/>\n      <point x=\"538\" y=\"1377\"/>\n      <point x=\"444\" y=\"1377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"1377\"/>\n      <point x=\"331\" y=\"1345\"/>\n      <point x=\"293\" y=\"1304\" type=\"curve\"/>\n      <point x=\"300\" y=\"1172\" type=\"line\"/>\n      <point x=\"351\" y=\"1203\"/>\n      <point x=\"395\" y=\"1223\"/>\n      <point x=\"454\" y=\"1223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"523\" y=\"1223\"/>\n      <point x=\"596\" y=\"1168\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wavyhamzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wavyhamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"620\" y=\"1189\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1621\" name=\"top\"/>\n  <outline>\n    <component base=\"_hamzawavy\" xOffset=\"21\" yOffset=\"635\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzawavy</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wavyhamzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wavyhamzabelow-ar\" format=\"2\">\n  <unicode hex=\"065F\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"605\" y=\"0\" name=\"_bottom.dot\"/>\n  <anchor x=\"552\" y=\"-497\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_hamzawavy\" xOffset=\"-32\" yOffset=\"-1037\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzawavy</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/waw-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"waw-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"487\" y=\"-565\" name=\"bottom\"/>\n  <anchor x=\"487\" y=\"-470\" name=\"bottom.dot\"/>\n  <anchor x=\"663\" y=\"900\" name=\"top\"/>\n  <anchor x=\"670\" y=\"770\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"426\" y=\"-490\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"-490\"/>\n      <point x=\"1041\" y=\"-251\"/>\n      <point x=\"1041\" y=\"157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"502\"/>\n      <point x=\"916\" y=\"728\"/>\n      <point x=\"680\" y=\"728\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"728\"/>\n      <point x=\"341\" y=\"529\"/>\n      <point x=\"341\" y=\"307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"98\"/>\n      <point x=\"416\" y=\"-10\"/>\n      <point x=\"649\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1190\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-10\"/>\n      <point x=\"1285\" y=\"51\"/>\n      <point x=\"1285\" y=\"138\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1285\" y=\"222\"/>\n      <point x=\"1261\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"284\" type=\"line\"/>\n      <point x=\"866\" y=\"280\"/>\n      <point x=\"786\" y=\"282\"/>\n      <point x=\"693\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"282\"/>\n      <point x=\"537\" y=\"300\"/>\n      <point x=\"537\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"537\" y=\"408\"/>\n      <point x=\"580\" y=\"456\"/>\n      <point x=\"660\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"456\"/>\n      <point x=\"835\" y=\"383\"/>\n      <point x=\"835\" y=\"144\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"-153\"/>\n      <point x=\"700\" y=\"-228\"/>\n      <point x=\"408\" y=\"-228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"-228\"/>\n      <point x=\"253\" y=\"-218\"/>\n      <point x=\"175\" y=\"-202\" type=\"curve\"/>\n      <point x=\"160\" y=\"-444\" type=\"line\"/>\n      <point x=\"229\" y=\"-473\"/>\n      <point x=\"331\" y=\"-490\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/waw-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"waw-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0648\"/>\n  <anchor x=\"487\" y=\"-565\" name=\"bottom\"/>\n  <anchor x=\"487\" y=\"-470\" name=\"bottom.dot\"/>\n  <anchor x=\"663\" y=\"900\" name=\"top\"/>\n  <anchor x=\"670\" y=\"770\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"426\" y=\"-490\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"-490\"/>\n      <point x=\"1041\" y=\"-301\"/>\n      <point x=\"1041\" y=\"147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"522\"/>\n      <point x=\"916\" y=\"728\"/>\n      <point x=\"680\" y=\"728\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"728\"/>\n      <point x=\"341\" y=\"529\"/>\n      <point x=\"341\" y=\"307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"98\"/>\n      <point x=\"406\" y=\"-10\"/>\n      <point x=\"629\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"-10\"/>\n      <point x=\"775\" y=\"15\"/>\n      <point x=\"798\" y=\"55\" type=\"curve\"/>\n      <point x=\"915\" y=\"55\" type=\"line\"/>\n      <point x=\"928\" y=\"294\" type=\"line\"/>\n      <point x=\"823\" y=\"269\"/>\n      <point x=\"761\" y=\"253\"/>\n      <point x=\"673\" y=\"253\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"253\"/>\n      <point x=\"537\" y=\"280\"/>\n      <point x=\"537\" y=\"334\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"537\" y=\"405\"/>\n      <point x=\"583\" y=\"456\"/>\n      <point x=\"665\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"456\"/>\n      <point x=\"835\" y=\"395\"/>\n      <point x=\"835\" y=\"144\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"-153\"/>\n      <point x=\"680\" y=\"-228\"/>\n      <point x=\"408\" y=\"-228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"-228\"/>\n      <point x=\"253\" y=\"-218\"/>\n      <point x=\"175\" y=\"-202\" type=\"curve\"/>\n      <point x=\"160\" y=\"-444\" type=\"line\"/>\n      <point x=\"229\" y=\"-473\"/>\n      <point x=\"331\" y=\"-490\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"70\" yOffset=\"228\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CF\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"70\" yOffset=\"228\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawD_otcenter-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawDotcenter-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"dotcenter-ar\" xScale=\"0.84\" yScale=\"0.84\" xOffset=\"-214\" yOffset=\"-306\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotcenter-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawD_otcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawDotcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AB\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"dotcenter-ar\" xScale=\"0.84\" yScale=\"0.84\" xOffset=\"-214\" yOffset=\"-306\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotcenter-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"50\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0624\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"50\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawS_traight-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawStraight-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B1\"/>\n  <outline>\n    <contour>\n      <point x=\"923\" y=\"-480\" type=\"line\"/>\n      <point x=\"959\" y=\"-388\"/>\n      <point x=\"1041\" y=\"-157\"/>\n      <point x=\"1041\" y=\"157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"502\"/>\n      <point x=\"916\" y=\"728\"/>\n      <point x=\"680\" y=\"728\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"728\"/>\n      <point x=\"341\" y=\"529\"/>\n      <point x=\"341\" y=\"307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"98\"/>\n      <point x=\"416\" y=\"-10\"/>\n      <point x=\"649\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1190\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-10\"/>\n      <point x=\"1285\" y=\"51\"/>\n      <point x=\"1285\" y=\"138\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1285\" y=\"222\"/>\n      <point x=\"1261\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"284\" type=\"line\"/>\n      <point x=\"866\" y=\"280\"/>\n      <point x=\"786\" y=\"282\"/>\n      <point x=\"693\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"282\"/>\n      <point x=\"537\" y=\"300\"/>\n      <point x=\"537\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"537\" y=\"408\"/>\n      <point x=\"580\" y=\"456\"/>\n      <point x=\"660\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"456\"/>\n      <point x=\"835\" y=\"383\"/>\n      <point x=\"835\" y=\"144\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"-79\"/>\n      <point x=\"730\" y=\"-287\"/>\n      <point x=\"651\" y=\"-445\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawT_hreeA_bove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawThreeAbove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"three-persian.small01\" xOffset=\"90\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawT_hreeA_bove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawThreeAbove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0779\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"three-persian.small01\" xOffset=\"90\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawT_woabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawTwoabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"two-persian.small01\" xOffset=\"50\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawT_woabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawTwoabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0778\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"two-persian.small01\" xOffset=\"50\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawT_wodots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawTwodots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawT_wodots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawTwodots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CA\"/>\n  <guideline x=\"183\" y=\"507\" angle=\"0\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawring-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawring-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"487\" y=\"-565\" name=\"bottom\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"ringArabic\" xScale=\"0.92\" yScale=\"0.92\" xOffset=\"-162\" yOffset=\"-177\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wawring-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawring-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C4\"/>\n  <anchor x=\"487\" y=\"-565\" name=\"bottom\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"ringArabic\" xScale=\"0.92\" yScale=\"0.92\" xOffset=\"-162\" yOffset=\"-177\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0175\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wdieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wdieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E85\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-8\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E81\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"gravecomb\" xOffset=\"-55\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E6\"/>\n  <note>\nopenbullet\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"414\"/>\n      <point x=\"896\" y=\"532\"/>\n      <point x=\"896\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"888\"/>\n      <point x=\"778\" y=\"1006\"/>\n      <point x=\"600\" y=\"1006\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"1006\"/>\n      <point x=\"304\" y=\"888\"/>\n      <point x=\"304\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"532\"/>\n      <point x=\"422\" y=\"414\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"606\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"537\" y=\"606\"/>\n      <point x=\"496\" y=\"647\"/>\n      <point x=\"496\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"773\"/>\n      <point x=\"537\" y=\"814\"/>\n      <point x=\"600\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"663\" y=\"814\"/>\n      <point x=\"704\" y=\"773\"/>\n      <point x=\"704\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"647\"/>\n      <point x=\"663\" y=\"606\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CB\"/>\n  <note>\ncircle\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"185\"/>\n      <point x=\"1125\" y=\"395\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1025\"/>\n      <point x=\"915\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"1235\"/>\n      <point x=\"75\" y=\"1025\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"395\"/>\n      <point x=\"285\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"418\"/>\n      <point x=\"308\" y=\"535\"/>\n      <point x=\"308\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"885\"/>\n      <point x=\"425\" y=\"1002\"/>\n      <point x=\"600\" y=\"1002\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"1002\"/>\n      <point x=\"892\" y=\"885\"/>\n      <point x=\"892\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"535\"/>\n      <point x=\"775\" y=\"418\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C7\"/>\n  <note>\nuni25C7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"397\" type=\"line\"/>\n      <point x=\"287\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1023\" type=\"line\"/>\n      <point x=\"913\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B21\"/>\n  <note>\nuni2B21\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1120\" y=\"410\" type=\"line\"/>\n      <point x=\"1120\" y=\"1010\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"80\" y=\"1010\" type=\"line\"/>\n      <point x=\"80\" y=\"410\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"670\" y=\"317\" type=\"line\"/>\n      <point x=\"160\" y=\"613\" type=\"line\"/>\n      <point x=\"305\" y=\"416\" type=\"line\"/>\n      <point x=\"305\" y=\"1004\" type=\"line\"/>\n      <point x=\"160\" y=\"807\" type=\"line\"/>\n      <point x=\"670\" y=\"1103\" type=\"line\"/>\n      <point x=\"530\" y=\"1103\" type=\"line\"/>\n      <point x=\"1040\" y=\"807\" type=\"line\"/>\n      <point x=\"895\" y=\"1004\" type=\"line\"/>\n      <point x=\"895\" y=\"416\" type=\"line\"/>\n      <point x=\"1040\" y=\"613\" type=\"line\"/>\n      <point x=\"530\" y=\"317\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteH_orizontalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteHorizontalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2D\"/>\n  <note>\nuni2B2D\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"395\"/>\n      <point x=\"1125\" y=\"520\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"900\"/>\n      <point x=\"916\" y=\"1025\"/>\n      <point x=\"600\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1025\"/>\n      <point x=\"75\" y=\"900\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"520\"/>\n      <point x=\"284\" y=\"395\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"578\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"578\"/>\n      <point x=\"300\" y=\"631\"/>\n      <point x=\"300\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"789\"/>\n      <point x=\"419\" y=\"842\"/>\n      <point x=\"600\" y=\"842\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"842\"/>\n      <point x=\"900\" y=\"789\"/>\n      <point x=\"900\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"631\"/>\n      <point x=\"781\" y=\"578\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteI_nB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteInBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A3\"/>\n  <note>\nuni25A3\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteL_argeS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteLargeSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1C\"/>\n  <note>\nuni2B1C\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteL_owerL_eftQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteLowerLeftQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F1\"/>\n  <note>\nuni25F1\n</note>\n  <outline>\n    <contour>\n      <point x=\"130\" y=\"802\" type=\"line\"/>\n      <point x=\"130\" y=\"618\" type=\"line\"/>\n      <point x=\"509\" y=\"618\" type=\"line\"/>\n      <point x=\"509\" y=\"239\" type=\"line\"/>\n      <point x=\"693\" y=\"239\" type=\"line\"/>\n      <point x=\"693\" y=\"802\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteL_owerR_ightQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteLowerRightQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F2\"/>\n  <note>\nuni25F2\n</note>\n  <outline>\n    <contour>\n      <point x=\"1070\" y=\"802\" type=\"line\"/>\n      <point x=\"507\" y=\"802\" type=\"line\"/>\n      <point x=\"507\" y=\"239\" type=\"line\"/>\n      <point x=\"691\" y=\"239\" type=\"line\"/>\n      <point x=\"691\" y=\"618\" type=\"line\"/>\n      <point x=\"1070\" y=\"618\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteM_ediumD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteMediumDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B26\"/>\n  <note>\nuni2B26\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"322\" type=\"line\"/>\n      <point x=\"988\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\n      <point x=\"212\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"682\" y=\"502\" type=\"line\"/>\n      <point x=\"392\" y=\"792\" type=\"line\"/>\n      <point x=\"392\" y=\"628\" type=\"line\"/>\n      <point x=\"682\" y=\"918\" type=\"line\"/>\n      <point x=\"518\" y=\"918\" type=\"line\"/>\n      <point x=\"808\" y=\"628\" type=\"line\"/>\n      <point x=\"808\" y=\"792\" type=\"line\"/>\n      <point x=\"518\" y=\"502\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteM_ediumL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteMediumLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B28\"/>\n  <note>\nuni2B28\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"256\" type=\"line\"/>\n      <point x=\"873\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1164\" type=\"line\"/>\n      <point x=\"328\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"659\" y=\"486\" type=\"line\"/>\n      <point x=\"477\" y=\"787\" type=\"line\"/>\n      <point x=\"477\" y=\"633\" type=\"line\"/>\n      <point x=\"659\" y=\"934\" type=\"line\"/>\n      <point x=\"541\" y=\"934\" type=\"line\"/>\n      <point x=\"723\" y=\"633\" type=\"line\"/>\n      <point x=\"723\" y=\"787\" type=\"line\"/>\n      <point x=\"541\" y=\"486\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteP_arallelogram.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteParallelogram\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B1\"/>\n  <note>\nuni25B1\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1030\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"170\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"234\" y=\"482\" type=\"line\"/>\n      <point x=\"363\" y=\"938\" type=\"line\"/>\n      <point x=\"202\" y=\"802\" type=\"line\"/>\n      <point x=\"1083\" y=\"802\" type=\"line\"/>\n      <point x=\"966\" y=\"938\" type=\"line\"/>\n      <point x=\"837\" y=\"482\" type=\"line\"/>\n      <point x=\"998\" y=\"618\" type=\"line\"/>\n      <point x=\"117\" y=\"618\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteP_entagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whitePentagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B20\"/>\n  <note>\nuni2B20\n</note>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"168\" type=\"line\"/>\n      <point x=\"970\" y=\"168\" type=\"line\"/>\n      <point x=\"1200\" y=\"874\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"874\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"364\" y=\"368\" type=\"line\"/>\n      <point x=\"226\" y=\"800\" type=\"line\"/>\n      <point x=\"600\" y=\"1075\" type=\"line\"/>\n      <point x=\"974\" y=\"800\" type=\"line\"/>\n      <point x=\"836\" y=\"368\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AD\"/>\n  <note>\nuni25AD\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"0\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"208\" y=\"618\" type=\"line\"/>\n      <point x=\"208\" y=\"802\" type=\"line\"/>\n      <point x=\"992\" y=\"802\" type=\"line\"/>\n      <point x=\"992\" y=\"618\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteR_oundedC_ornersS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteRoundedCornersSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A2\"/>\n  <note>\nuni25A2\n</note>\n  <outline>\n    <contour>\n      <point x=\"331\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"185\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"185\"/>\n      <point x=\"1125\" y=\"288\"/>\n      <point x=\"1125\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"979\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1132\"/>\n      <point x=\"1022\" y=\"1235\"/>\n      <point x=\"869\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"1235\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"178\" y=\"1235\"/>\n      <point x=\"75\" y=\"1132\"/>\n      <point x=\"75\" y=\"979\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"441\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"288\"/>\n      <point x=\"178\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"388\" y=\"393\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"393\"/>\n      <point x=\"283\" y=\"434\"/>\n      <point x=\"283\" y=\"498\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"922\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"986\"/>\n      <point x=\"324\" y=\"1027\"/>\n      <point x=\"388\" y=\"1027\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"1027\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"1027\"/>\n      <point x=\"917\" y=\"986\"/>\n      <point x=\"917\" y=\"922\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"498\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"434\"/>\n      <point x=\"876\" y=\"393\"/>\n      <point x=\"812\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteS_mallL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSmallLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2B\"/>\n  <note>\nuni2B2B\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"402\" type=\"line\"/>\n      <point x=\"785\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1019\" type=\"line\"/>\n      <point x=\"415\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"621\" type=\"line\"/>\n      <point x=\"557\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"799\" type=\"line\"/>\n      <point x=\"644\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AB\"/>\n  <note>\nH18551\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"1010\" type=\"line\"/>\n      <point x=\"300\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"483\" y=\"593\" type=\"line\"/>\n      <point x=\"483\" y=\"827\" type=\"line\"/>\n      <point x=\"717\" y=\"827\" type=\"line\"/>\n      <point x=\"717\" y=\"593\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteS_milingF_ace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSmilingFace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263A\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"337\"/>\n      <point x=\"925\" y=\"435\"/>\n      <point x=\"925\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"925\" y=\"634\"/>\n      <point x=\"905\" y=\"651\"/>\n      <point x=\"859\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"651\"/>\n      <point x=\"486\" y=\"651\"/>\n      <point x=\"353\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"651\"/>\n      <point x=\"287\" y=\"631\"/>\n      <point x=\"287\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"435\"/>\n      <point x=\"409\" y=\"337\"/>\n    </contour>\n    <contour>\n      <point x=\"407\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"722\"/>\n      <point x=\"549\" y=\"779\"/>\n      <point x=\"549\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"951\"/>\n      <point x=\"492\" y=\"1008\"/>\n      <point x=\"407\" y=\"1008\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"321\" y=\"1008\"/>\n      <point x=\"264\" y=\"951\"/>\n      <point x=\"264\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"779\"/>\n      <point x=\"321\" y=\"722\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"277\"/>\n      <point x=\"167\" y=\"449\"/>\n      <point x=\"167\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"971\"/>\n      <point x=\"339\" y=\"1143\"/>\n      <point x=\"600\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"1143\"/>\n      <point x=\"1033\" y=\"971\"/>\n      <point x=\"1033\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"449\"/>\n      <point x=\"861\" y=\"277\"/>\n    </contour>\n    <contour>\n      <point x=\"793\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"722\"/>\n      <point x=\"936\" y=\"779\"/>\n      <point x=\"936\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"951\"/>\n      <point x=\"879\" y=\"1008\"/>\n      <point x=\"793\" y=\"1008\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"708\" y=\"1008\"/>\n      <point x=\"651\" y=\"951\"/>\n      <point x=\"651\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"779\"/>\n      <point x=\"708\" y=\"722\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A1\"/>\n  <note>\nH22073\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"317\" y=\"427\" type=\"line\"/>\n      <point x=\"317\" y=\"993\" type=\"line\"/>\n      <point x=\"883\" y=\"993\" type=\"line\"/>\n      <point x=\"883\" y=\"427\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteU_pperL_eftQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteUpperLeftQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F0\"/>\n  <note>\nuni25F0\n</note>\n  <outline>\n    <contour>\n      <point x=\"130\" y=\"618\" type=\"line\"/>\n      <point x=\"693\" y=\"618\" type=\"line\"/>\n      <point x=\"693\" y=\"1181\" type=\"line\"/>\n      <point x=\"509\" y=\"1181\" type=\"line\"/>\n      <point x=\"509\" y=\"802\" type=\"line\"/>\n      <point x=\"130\" y=\"802\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteU_pperR_ightQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteUpperRightQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F3\"/>\n  <note>\nuni25F3\n</note>\n  <outline>\n    <contour>\n      <point x=\"1070\" y=\"618\" type=\"line\"/>\n      <point x=\"1070\" y=\"802\" type=\"line\"/>\n      <point x=\"691\" y=\"802\" type=\"line\"/>\n      <point x=\"691\" y=\"1181\" type=\"line\"/>\n      <point x=\"507\" y=\"1181\" type=\"line\"/>\n      <point x=\"507\" y=\"618\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteV_erticalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteVerticalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2F\"/>\n  <note>\nuni2B2F\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"185\"/>\n      <point x=\"915\" y=\"394\"/>\n      <point x=\"915\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"1026\"/>\n      <point x=\"790\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1235\"/>\n      <point x=\"285\" y=\"1026\"/>\n      <point x=\"285\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"394\"/>\n      <point x=\"410\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"402\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"402\"/>\n      <point x=\"485\" y=\"524\"/>\n      <point x=\"485\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"896\"/>\n      <point x=\"531\" y=\"1018\"/>\n      <point x=\"600\" y=\"1018\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"1018\"/>\n      <point x=\"715\" y=\"896\"/>\n      <point x=\"715\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"524\"/>\n      <point x=\"669\" y=\"402\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteV_erticalR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteVerticalRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AF\"/>\n  <note>\nuni25AF\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"1310\" type=\"line\"/>\n      <point x=\"300\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"318\" type=\"line\"/>\n      <point x=\"508\" y=\"1102\" type=\"line\"/>\n      <point x=\"692\" y=\"1102\" type=\"line\"/>\n      <point x=\"692\" y=\"318\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/whiteV_erysmallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteVerysmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1E\"/>\n  <note>\nuni2B1E\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"542\" y=\"652\" type=\"line\"/>\n      <point x=\"542\" y=\"768\" type=\"line\"/>\n      <point x=\"658\" y=\"768\" type=\"line\"/>\n      <point x=\"658\" y=\"652\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/wmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02B7\"/>\n  <outline>\n    <contour>\n      <point x=\"659\" y=\"790\" type=\"line\"/>\n      <point x=\"908\" y=\"790\" type=\"line\"/>\n      <point x=\"1017\" y=\"1420\" type=\"line\"/>\n      <point x=\"802\" y=\"1420\" type=\"line\"/>\n      <point x=\"738\" y=\"1045\" type=\"line\"/>\n      <point x=\"704\" y=\"1045\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"539\" y=\"1420\" type=\"line\"/>\n      <point x=\"571\" y=\"1160\" type=\"line\"/>\n      <point x=\"612\" y=\"1160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"272\" y=\"790\" type=\"line\"/>\n      <point x=\"525\" y=\"790\" type=\"line\"/>\n      <point x=\"574\" y=\"1160\" type=\"line\"/>\n      <point x=\"612\" y=\"1160\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"539\" y=\"1420\" type=\"line\"/>\n      <point x=\"482\" y=\"1045\" type=\"line\"/>\n      <point x=\"448\" y=\"1045\" type=\"line\"/>\n      <point x=\"384\" y=\"1420\" type=\"line\"/>\n      <point x=\"159\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/won.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"won\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A9\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"388\" type=\"line\"/>\n      <point x=\"1200\" y=\"388\" type=\"line\"/>\n      <point x=\"1200\" y=\"609\" type=\"line\"/>\n      <point x=\"0\" y=\"609\" type=\"line\"/>\n    </contour>\n    <component base=\"W\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>W</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/x.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"x\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0078\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"81\" y=\"0\" type=\"line\"/>\n      <point x=\"404\" y=\"0\" type=\"line\"/>\n      <point x=\"664\" y=\"450\" type=\"line\"/>\n      <point x=\"1119\" y=\"1060\" type=\"line\"/>\n      <point x=\"796\" y=\"1060\" type=\"line\"/>\n      <point x=\"520\" y=\"592\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"796\" y=\"0\" type=\"line\"/>\n      <point x=\"1119\" y=\"0\" type=\"line\"/>\n      <point x=\"680\" y=\"592\" type=\"line\"/>\n      <point x=\"404\" y=\"1060\" type=\"line\"/>\n      <point x=\"81\" y=\"1060\" type=\"line\"/>\n      <point x=\"524\" y=\"450\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/x.multiply.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"x.multiply\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"multiply\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>multiply</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/xi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"xi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BE\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"610\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"614\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"-20\" type=\"line\"/>\n      <point x=\"776\" y=\"237\" type=\"line\"/>\n      <point x=\"681\" y=\"237\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"505\" y=\"237\"/>\n      <point x=\"416\" y=\"291\"/>\n      <point x=\"416\" y=\"402\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"542\"/>\n      <point x=\"532\" y=\"612\"/>\n      <point x=\"765\" y=\"612\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"612\" type=\"line\"/>\n      <point x=\"1011\" y=\"869\" type=\"line\"/>\n      <point x=\"588\" y=\"741\" type=\"line\"/>\n      <point x=\"264\" y=\"699\"/>\n      <point x=\"139\" y=\"568\"/>\n      <point x=\"139\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"101\"/>\n      <point x=\"297\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"740\" y=\"-480\" type=\"line\"/>\n      <point x=\"974\" y=\"-419\"/>\n      <point x=\"1089\" y=\"-289\"/>\n      <point x=\"1089\" y=\"-84\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1089\" y=\"119\"/>\n      <point x=\"975\" y=\"237\"/>\n      <point x=\"776\" y=\"237\" type=\"curve\"/>\n      <point x=\"730\" y=\"-20\" type=\"line\"/>\n      <point x=\"782\" y=\"-20\"/>\n      <point x=\"812\" y=\"-47\"/>\n      <point x=\"812\" y=\"-93\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"-160\"/>\n      <point x=\"748\" y=\"-209\"/>\n      <point x=\"640\" y=\"-242\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"562\" y=\"612\" type=\"line\"/>\n      <point x=\"997\" y=\"612\" type=\"line\"/>\n      <point x=\"1011\" y=\"869\" type=\"line\"/>\n      <point x=\"633\" y=\"869\"/>\n      <point x=\"446\" y=\"927\"/>\n      <point x=\"446\" y=\"1045\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1182\"/>\n      <point x=\"592\" y=\"1250\"/>\n      <point x=\"884\" y=\"1250\" type=\"curve\"/>\n      <point x=\"432\" y=\"1300\" type=\"line\"/>\n      <point x=\"432\" y=\"1211\" type=\"line\"/>\n      <point x=\"257\" y=\"1186\"/>\n      <point x=\"169\" y=\"1121\"/>\n      <point x=\"169\" y=\"1000\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"862\"/>\n      <point x=\"275\" y=\"787\"/>\n      <point x=\"562\" y=\"772\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"125\" y=\"1249\" type=\"line\"/>\n      <point x=\"1063\" y=\"1249\" type=\"line\"/>\n      <point x=\"1063\" y=\"1500\" type=\"line\"/>\n      <point x=\"125\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/y.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"y\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0079\"/>\n  <anchor x=\"945\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"615\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"58\" y=\"-480\" type=\"line\"/>\n      <point x=\"255\" y=\"-460\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"-430\"/>\n      <point x=\"713\" y=\"-288\"/>\n      <point x=\"834\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1132\" y=\"1060\" type=\"line\"/>\n      <point x=\"845\" y=\"1060\" type=\"line\"/>\n      <point x=\"589\" y=\"144\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"518\" y=\"-106\"/>\n      <point x=\"419\" y=\"-204\"/>\n      <point x=\"231\" y=\"-225\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"48\" y=\"-245\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"394\" y=\"0\" type=\"line\"/>\n      <point x=\"636\" y=\"0\" type=\"line\"/>\n      <point x=\"636\" y=\"230\" type=\"line\"/>\n      <point x=\"588\" y=\"230\" type=\"line\"/>\n      <point x=\"325\" y=\"1060\" type=\"line\"/>\n      <point x=\"38\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FD\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"acutecomb\" xOffset=\"76\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ycircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ycircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0177\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"circumflexcomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ydieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ydieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FF\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"dieresiscomb\" xOffset=\"17\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ydotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ydotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF5\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"345\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/year-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"year-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0601\"/>\n  <outline>\n    <contour>\n      <point x=\"145\" y=\"-384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"194\" y=\"-384\"/>\n      <point x=\"226\" y=\"-373\"/>\n      <point x=\"252\" y=\"-323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"-277\"/>\n      <point x=\"281\" y=\"-262\"/>\n      <point x=\"301\" y=\"-262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"332\" y=\"-262\"/>\n      <point x=\"343\" y=\"-334\"/>\n      <point x=\"410\" y=\"-334\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"-334\"/>\n      <point x=\"465\" y=\"-320\"/>\n      <point x=\"491\" y=\"-278\" type=\"curve\"/>\n      <point x=\"985\" y=\"-278\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"-278\"/>\n      <point x=\"1020\" y=\"-285\"/>\n      <point x=\"1020\" y=\"-304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1020\" y=\"-321\"/>\n      <point x=\"1019\" y=\"-323\"/>\n      <point x=\"1015\" y=\"-347\" type=\"curve\"/>\n      <point x=\"1150\" y=\"-351\" type=\"line\"/>\n      <point x=\"1166\" y=\"-295\"/>\n      <point x=\"1170\" y=\"-264\"/>\n      <point x=\"1170\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1170\" y=\"-142\"/>\n      <point x=\"1119\" y=\"-88\"/>\n      <point x=\"1030\" y=\"-88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"-88\" type=\"line\"/>\n      <point x=\"451\" y=\"-131\"/>\n      <point x=\"444\" y=\"-144\"/>\n      <point x=\"421\" y=\"-144\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"-144\"/>\n      <point x=\"351\" y=\"-72\"/>\n      <point x=\"300\" y=\"-72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"-72\"/>\n      <point x=\"220\" y=\"-115\"/>\n      <point x=\"195\" y=\"-163\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"185\" y=\"-182\"/>\n      <point x=\"177\" y=\"-194\"/>\n      <point x=\"163\" y=\"-194\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"-194\"/>\n      <point x=\"147\" y=\"-191\"/>\n      <point x=\"147\" y=\"-172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"147\" y=\"-148\"/>\n      <point x=\"149\" y=\"-132\"/>\n      <point x=\"152\" y=\"-111\" type=\"curve\"/>\n      <point x=\"41\" y=\"-110\" type=\"line\"/>\n      <point x=\"32\" y=\"-141\"/>\n      <point x=\"24\" y=\"-194\"/>\n      <point x=\"25\" y=\"-247\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"27\" y=\"-337\"/>\n      <point x=\"73\" y=\"-384\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-85\" yOffset=\"-389\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-85\" yOffset=\"-399\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"064A\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-17\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alefMaksura-ar.fina.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CC\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"-85\" yOffset=\"-341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"-85\" yOffset=\"-399\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0777\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"-17\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-446\" yOffset=\"-774\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-446\" yOffset=\"-774\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0626\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-436\" yOffset=\"-664\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"255\" yOffset=\"-227\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"215\" yOffset=\"-237\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"10\" yOffset=\"-349\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"ringArabic\" xOffset=\"-31\" yOffset=\"-618\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"-31\" yOffset=\"-618\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0620\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"16\" yOffset=\"-561\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alefMaksura-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"ringArabic\" xOffset=\"134\" yOffset=\"-47\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"ringArabic\" xOffset=\"134\" yOffset=\"3\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"ringArabic\" xOffset=\"-246\" yOffset=\"-37\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehR_ohingya-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehRohingya-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"243\" y=\"-198\" angle=\"90\"/>\n  <outline>\n    <component base=\"yehRohingya-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehR_ohingya-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehRohingya-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AC\"/>\n  <guideline x=\"243\" y=\"-198\" angle=\"90\"/>\n  <outline>\n    <component base=\"_yehRohingya-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"249\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehR_ohingya-ar.isol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehRohingya-ar.isol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"_yehRohingya-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"209\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_ail-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTail-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"517\" y=\"-458\" name=\"bottom\"/>\n  <anchor x=\"517\" y=\"-391\" name=\"bottom.dot\"/>\n  <anchor x=\"411\" y=\"476\" name=\"top\"/>\n  <anchor x=\"174\" y=\"330\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"497\" y=\"-420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"-420\"/>\n      <point x=\"1157\" y=\"-224\"/>\n      <point x=\"1157\" y=\"-30\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"121\"/>\n      <point x=\"1053\" y=\"186\"/>\n      <point x=\"705\" y=\"260\" type=\"curve\"/>\n      <point x=\"677\" y=\"13\" type=\"line\"/>\n      <point x=\"862\" y=\"-5\"/>\n      <point x=\"931\" y=\"-18\"/>\n      <point x=\"931\" y=\"-46\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"931\" y=\"-87\"/>\n      <point x=\"842\" y=\"-125\"/>\n      <point x=\"524\" y=\"-125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"-125\"/>\n      <point x=\"265\" y=\"-80\"/>\n      <point x=\"265\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"118\"/>\n      <point x=\"277\" y=\"177\"/>\n      <point x=\"292\" y=\"274\" type=\"curve\"/>\n      <point x=\"98\" y=\"341\" type=\"line\"/>\n      <point x=\"-180\" y=\"252\" type=\"line\"/>\n      <point x=\"-133\" y=\"3\" type=\"line\"/>\n      <point x=\"107\" y=\"77\" type=\"line\"/>\n      <point x=\"42\" y=\"182\" type=\"line\"/>\n      <point x=\"30\" y=\"119\"/>\n      <point x=\"20\" y=\"45\"/>\n      <point x=\"20\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"-245\"/>\n      <point x=\"137\" y=\"-420\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_ail-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTail-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"517\" y=\"-458\" name=\"bottom\"/>\n  <anchor x=\"517\" y=\"-391\" name=\"bottom.dot\"/>\n  <anchor x=\"411\" y=\"476\" name=\"top\"/>\n  <anchor x=\"174\" y=\"330\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"497\" y=\"-420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"-420\"/>\n      <point x=\"1157\" y=\"-244\"/>\n      <point x=\"1157\" y=\"-50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"11\"/>\n      <point x=\"1132\" y=\"58\"/>\n      <point x=\"1086\" y=\"89\" type=\"curve\"/>\n      <point x=\"1053\" y=\"3\" type=\"line\"/>\n      <point x=\"1085\" y=\"-4\"/>\n      <point x=\"1136\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1263\" y=\"-10\"/>\n      <point x=\"1302\" y=\"49\"/>\n      <point x=\"1302\" y=\"137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1302\" y=\"218\"/>\n      <point x=\"1272\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1097\" y=\"285\"/>\n      <point x=\"920\" y=\"287\"/>\n      <point x=\"798\" y=\"295\" type=\"curve\"/>\n      <point x=\"763\" y=\"21\" type=\"line\"/>\n      <point x=\"908\" y=\"6\"/>\n      <point x=\"931\" y=\"2\"/>\n      <point x=\"931\" y=\"-26\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"931\" y=\"-67\"/>\n      <point x=\"862\" y=\"-125\"/>\n      <point x=\"524\" y=\"-125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"-125\"/>\n      <point x=\"265\" y=\"-80\"/>\n      <point x=\"265\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"118\"/>\n      <point x=\"277\" y=\"177\"/>\n      <point x=\"292\" y=\"274\" type=\"curve\"/>\n      <point x=\"98\" y=\"341\" type=\"line\"/>\n      <point x=\"-180\" y=\"252\" type=\"line\"/>\n      <point x=\"-133\" y=\"3\" type=\"line\"/>\n      <point x=\"107\" y=\"77\" type=\"line\"/>\n      <point x=\"42\" y=\"182\" type=\"line\"/>\n      <point x=\"30\" y=\"119\"/>\n      <point x=\"20\" y=\"45\"/>\n      <point x=\"20\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"-245\"/>\n      <point x=\"137\" y=\"-420\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_ail-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTail-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CD\"/>\n  <anchor x=\"585\" y=\"-399\" name=\"bottom\"/>\n  <anchor x=\"585\" y=\"-326\" name=\"bottom.dot\"/>\n  <anchor x=\"291\" y=\"656\" name=\"top\"/>\n  <anchor x=\"184\" y=\"440\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"541\" y=\"-366\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"957\" y=\"-366\"/>\n      <point x=\"1152\" y=\"-173\"/>\n      <point x=\"1152\" y=\"65\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1152\" y=\"181\"/>\n      <point x=\"1112\" y=\"256\"/>\n      <point x=\"899\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"360\"/>\n      <point x=\"721\" y=\"371\"/>\n      <point x=\"721\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"469\"/>\n      <point x=\"795\" y=\"538\"/>\n      <point x=\"925\" y=\"538\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"538\"/>\n      <point x=\"1059\" y=\"516\"/>\n      <point x=\"1106\" y=\"491\" type=\"curve\"/>\n      <point x=\"1147\" y=\"769\" type=\"line\"/>\n      <point x=\"1093\" y=\"807\"/>\n      <point x=\"1030\" y=\"833\"/>\n      <point x=\"938\" y=\"833\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"833\"/>\n      <point x=\"469\" y=\"567\"/>\n      <point x=\"469\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"209\"/>\n      <point x=\"511\" y=\"138\"/>\n      <point x=\"724\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"41\"/>\n      <point x=\"900\" y=\"33\"/>\n      <point x=\"900\" y=\"-1\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-41\"/>\n      <point x=\"799\" y=\"-71\"/>\n      <point x=\"601\" y=\"-71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"-71\"/>\n      <point x=\"269\" y=\"-26\"/>\n      <point x=\"269\" y=\"127\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"269\" y=\"198\"/>\n      <point x=\"276\" y=\"285\"/>\n      <point x=\"287\" y=\"360\" type=\"curve\"/>\n      <point x=\"98\" y=\"424\" type=\"line\"/>\n      <point x=\"-180\" y=\"335\" type=\"line\"/>\n      <point x=\"-133\" y=\"86\" type=\"line\"/>\n      <point x=\"107\" y=\"160\" type=\"line\"/>\n      <point x=\"39\" y=\"270\" type=\"line\"/>\n      <point x=\"30\" y=\"203\"/>\n      <point x=\"24\" y=\"123\"/>\n      <point x=\"24\" y=\"67\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"24\" y=\"-235\"/>\n      <point x=\"180\" y=\"-366\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-406\" yOffset=\"-774\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-406\" yOffset=\"-774\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0776\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-396\" yOffset=\"-664\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"295\" yOffset=\"-227\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"252\" yOffset=\"-217\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"50\" yOffset=\"-349\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-260\" yOffset=\"-229\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-260\" yOffset=\"-229\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063F\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-371\" yOffset=\"-114\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"275\" yOffset=\"335\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"235\" yOffset=\"325\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"30\" yOffset=\"213\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-23\" yOffset=\"-384\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"515\" y=\"-966\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-23\" yOffset=\"-394\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D1\"/>\n  <anchor x=\"585\" y=\"-918\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"45\" yOffset=\"-329\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"212\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"172\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-8\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-446\" yOffset=\"-774\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-446\" yOffset=\"-774\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0775\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-436\" yOffset=\"-664\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"255\" yOffset=\"-227\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"215\" yOffset=\"-237\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"10\" yOffset=\"-349\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-260\" yOffset=\"-219\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-260\" yOffset=\"-219\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063E\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-371\" yOffset=\"-104\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"275\" yOffset=\"345\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"235\" yOffset=\"335\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"30\" yOffset=\"223\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-316\" yOffset=\"-211\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A9\"/>\n  <outline>\n    <component base=\"yeh-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-282\" yOffset=\"-106\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"335\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"235\" yOffset=\"325\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"30\" yOffset=\"213\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-446\" yOffset=\"-774\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A8\"/>\n  <outline>\n    <component base=\"yeh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-436\" yOffset=\"-664\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"255\" yOffset=\"-227\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"215\" yOffset=\"-237\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"10\" yOffset=\"-349\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"168\" y=\"877\" name=\"top\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-85\" yOffset=\"-389\"/>\n    <component base=\"noonabove-ar\" xOffset=\"-426\" yOffset=\"-750\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"168\" y=\"877\" name=\"top\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-85\" yOffset=\"-399\"/>\n    <component base=\"noonabove-ar\" xOffset=\"-426\" yOffset=\"-750\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08BA\"/>\n  <anchor x=\"187\" y=\"988\" name=\"top\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-17\" yOffset=\"-334\"/>\n    <component base=\"noonabove-ar\" xOffset=\"-416\" yOffset=\"-640\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"noonabove-ar\" xOffset=\"275\" yOffset=\"-203\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n    <component base=\"noonabove-ar\" xOffset=\"235\" yOffset=\"-213\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"noonabove-ar\" xOffset=\"30\" yOffset=\"-325\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"-250\" yOffset=\"-135\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"-250\" yOffset=\"-135\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CE\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"-307\" yOffset=\"-22\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"275\" yOffset=\"345\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"vabove-ar\" xOffset=\"235\" yOffset=\"335\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"vabove-ar\" xOffset=\"30\" yOffset=\"223\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-249\" yOffset=\"-124\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-249\" yOffset=\"-124\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063D\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-316\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"275\" yOffset=\"345\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"235\" yOffset=\"335\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"30\" yOffset=\"223\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarree-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarree-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"578\" y=\"-381\" name=\"bottom\"/>\n  <anchor x=\"350\" y=\"516\" name=\"top\"/>\n  <anchor x=\"359\" y=\"266\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"578\" y=\"-391\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"-391\"/>\n      <point x=\"946\" y=\"-381\"/>\n      <point x=\"1095\" y=\"-365\" type=\"curve\"/>\n      <point x=\"1111\" y=\"-112\" type=\"line\"/>\n      <point x=\"963\" y=\"-121\"/>\n      <point x=\"801\" y=\"-129\"/>\n      <point x=\"591\" y=\"-129\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"-129\"/>\n      <point x=\"345\" y=\"-116\"/>\n      <point x=\"345\" y=\"-88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"345\" y=\"-52\"/>\n      <point x=\"395\" y=\"-10\"/>\n      <point x=\"591\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"-10\"/>\n      <point x=\"1072\" y=\"-10\"/>\n      <point x=\"1188\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"-10\"/>\n      <point x=\"1300\" y=\"32\"/>\n      <point x=\"1300\" y=\"140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1300\" y=\"203\"/>\n      <point x=\"1276\" y=\"285\"/>\n      <point x=\"1200\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1095\" y=\"285\"/>\n      <point x=\"771\" y=\"285\"/>\n      <point x=\"657\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"285\"/>\n      <point x=\"105\" y=\"106\"/>\n      <point x=\"105\" y=\"-146\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"105\" y=\"-328\"/>\n      <point x=\"274\" y=\"-391\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarree-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarree-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D2\"/>\n  <anchor x=\"572\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"562\" y=\"1030\" name=\"top\"/>\n  <anchor x=\"569\" y=\"780\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"601\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"-10\"/>\n      <point x=\"1034\" y=\"9\"/>\n      <point x=\"1155\" y=\"30\" type=\"curve\"/>\n      <point x=\"1172\" y=\"313\" type=\"line\"/>\n      <point x=\"1059\" y=\"300\"/>\n      <point x=\"880\" y=\"285\"/>\n      <point x=\"605\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"285\"/>\n      <point x=\"285\" y=\"286\"/>\n      <point x=\"286\" y=\"305\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"321\"/>\n      <point x=\"316\" y=\"324\"/>\n      <point x=\"372\" y=\"366\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"438\"/>\n      <point x=\"502\" y=\"475\"/>\n      <point x=\"539\" y=\"475\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"475\"/>\n      <point x=\"583\" y=\"450\"/>\n      <point x=\"621\" y=\"394\" type=\"curve\"/>\n      <point x=\"813\" y=\"533\" type=\"line\"/>\n      <point x=\"720\" y=\"700\"/>\n      <point x=\"658\" y=\"760\"/>\n      <point x=\"571\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"760\"/>\n      <point x=\"366\" y=\"635\"/>\n      <point x=\"228\" y=\"529\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"48\" y=\"391\"/>\n      <point x=\"9\" y=\"359\"/>\n      <point x=\"9\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"9\" y=\"76\"/>\n      <point x=\"202\" y=\"-10\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yehbarree-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-261\" yOffset=\"-838\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D3\"/>\n  <outline>\n    <component base=\"yehbarree-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-51\" yOffset=\"-324\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yehbarree-ar.fina\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-266\" yOffset=\"-870\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077B\"/>\n  <outline>\n    <component base=\"yehbarree-ar\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-381\" yOffset=\"-587\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"295\" yOffset=\"-227\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"261\" yOffset=\"-261\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"50\" yOffset=\"-349\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yehbarree-ar.fina\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-261\" yOffset=\"-838\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077A\"/>\n  <outline>\n    <component base=\"yehbarree-ar\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-415\" yOffset=\"-567\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"255\" yOffset=\"-227\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"170\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"212\" yOffset=\"-217\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"10\" yOffset=\"-349\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A5\"/>\n  <outline>\n    <contour>\n      <point x=\"144\" y=\"459\" type=\"line\"/>\n      <point x=\"1056\" y=\"459\" type=\"line\"/>\n      <point x=\"1056\" y=\"681\" type=\"line\"/>\n      <point x=\"144\" y=\"681\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"144\" y=\"133\" type=\"line\"/>\n      <point x=\"1056\" y=\"133\" type=\"line\"/>\n      <point x=\"1056\" y=\"354\" type=\"line\"/>\n      <point x=\"144\" y=\"354\" type=\"line\"/>\n    </contour>\n    <component base=\"Y\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>Y</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yeru-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeru-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"182\" y=\"0\" type=\"line\"/>\n      <point x=\"406\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"0\"/>\n      <point x=\"770\" y=\"136\"/>\n      <point x=\"770\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"611\"/>\n      <point x=\"637\" y=\"747\"/>\n      <point x=\"406\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"162\" y=\"747\" type=\"line\"/>\n      <point x=\"162\" y=\"499\" type=\"line\"/>\n      <point x=\"395\" y=\"499\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"499\"/>\n      <point x=\"505\" y=\"456\"/>\n      <point x=\"505\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"505\" y=\"291\"/>\n      <point x=\"468\" y=\"248\"/>\n      <point x=\"395\" y=\"248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"182\" y=\"248\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"0\" type=\"line\"/>\n      <point x=\"366\" y=\"0\" type=\"line\"/>\n      <point x=\"366\" y=\"1060\" type=\"line\"/>\n      <point x=\"95\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"834\" y=\"0\" type=\"line\"/>\n      <point x=\"1105\" y=\"0\" type=\"line\"/>\n      <point x=\"1105\" y=\"1060\" type=\"line\"/>\n      <point x=\"834\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ygrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ygrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF3\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"gravecomb\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF7\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"hookabovecomb\" xOffset=\"35\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yi-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yi-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0457\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"dieresiscomb\" xOffset=\"52\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ymacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ymacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0233\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"macroncomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ymod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ymod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02B8\"/>\n  <outline>\n    <contour>\n      <point x=\"249\" y=\"504\" type=\"line\"/>\n      <point x=\"427\" y=\"504\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"683\" y=\"504\"/>\n      <point x=\"777\" y=\"636\"/>\n      <point x=\"833\" y=\"846\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"985\" y=\"1420\" type=\"line\"/>\n      <point x=\"725\" y=\"1420\" type=\"line\"/>\n      <point x=\"607\" y=\"875\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"585\" y=\"771\"/>\n      <point x=\"539\" y=\"716\"/>\n      <point x=\"421\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"249\" y=\"716\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"417\" y=\"790\" type=\"line\"/>\n      <point x=\"652\" y=\"790\" type=\"line\"/>\n      <point x=\"649\" y=\"982\" type=\"line\"/>\n      <point x=\"596\" y=\"982\" type=\"line\"/>\n      <point x=\"496\" y=\"1420\" type=\"line\"/>\n      <point x=\"236\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yod-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yod-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D9\"/>\n  <anchor x=\"342\" y=\"647\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"807\" y=\"394\" type=\"line\"/>\n      <point x=\"878\" y=\"513\"/>\n      <point x=\"894\" y=\"693\"/>\n      <point x=\"894\" y=\"848\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"1200\" type=\"line\"/>\n      <point x=\"638\" y=\"1200\" type=\"line\"/>\n      <point x=\"638\" y=\"848\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"693\"/>\n      <point x=\"626\" y=\"575\"/>\n      <point x=\"574\" y=\"460\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"170\" y=\"929\" type=\"line\"/>\n      <point x=\"894\" y=\"929\" type=\"line\"/>\n      <point x=\"894\" y=\"1200\" type=\"line\"/>\n      <point x=\"170\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yoddagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yoddagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB39\"/>\n  <outline>\n    <component base=\"yod-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-258\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ytilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ytilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF9\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"tildecomb\" xOffset=\"25\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yu-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yu-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"50\" yOffset=\"356\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/yu-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yu-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C8\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"alefabove-ar\" xOffset=\"50\" yOffset=\"356\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/z.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"z\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"530\" name=\"center\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"111\" type=\"line\"/>\n      <point x=\"1016\" y=\"827\" type=\"line\"/>\n      <point x=\"820\" y=\"945\" type=\"line\"/>\n      <point x=\"164\" y=\"233\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"233\" type=\"line\"/>\n      <point x=\"164\" y=\"233\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"827\" type=\"line\"/>\n      <point x=\"1016\" y=\"827\" type=\"line\"/>\n      <point x=\"1016\" y=\"1060\" type=\"line\"/>\n      <point x=\"164\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017A\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"acutecomb\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0638\"/>\n  <outline>\n    <component base=\"tah-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zah-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zah-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zah-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zah-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zain-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zain-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"20\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zain-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zain-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0632\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"130\" yOffset=\"143\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zainV_I_nvertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zainVInvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_dotVInvertedabove\" xOffset=\"20\" yOffset=\"188\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zainV_I_nvertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zainVInvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B2\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_dotVInvertedabove\" xOffset=\"130\" yOffset=\"168\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zayin-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zayin-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D6\"/>\n  <anchor x=\"282\" y=\"607\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"924\" y=\"1200\" type=\"line\"/>\n      <point x=\"184\" y=\"1200\" type=\"line\"/>\n      <point x=\"184\" y=\"930\" type=\"line\"/>\n      <point x=\"924\" y=\"930\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"603\" y=\"922\" type=\"line\"/>\n      <point x=\"536\" y=\"893\"/>\n      <point x=\"451\" y=\"804\"/>\n      <point x=\"451\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"0\" type=\"line\"/>\n      <point x=\"709\" y=\"0\" type=\"line\"/>\n      <point x=\"709\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"755\"/>\n      <point x=\"733\" y=\"929\"/>\n      <point x=\"871\" y=\"929\" type=\"curve\"/>\n      <point x=\"603\" y=\"994\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zayindagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zayindagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB36\"/>\n  <outline>\n    <component base=\"zayin-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-318\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017E\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017C\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"-2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0437\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"556\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"-20\"/>\n      <point x=\"1053\" y=\"106\"/>\n      <point x=\"1053\" y=\"298\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"436\"/>\n      <point x=\"946\" y=\"533\"/>\n      <point x=\"730\" y=\"546\" type=\"curve\"/>\n      <point x=\"730\" y=\"574\" type=\"line\"/>\n      <point x=\"915\" y=\"586\"/>\n      <point x=\"1012\" y=\"701\"/>\n      <point x=\"1012\" y=\"807\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"996\"/>\n      <point x=\"817\" y=\"1080\"/>\n      <point x=\"510\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"363\" y=\"1080\"/>\n      <point x=\"287\" y=\"1067\"/>\n      <point x=\"183\" y=\"1054\" type=\"curve\"/>\n      <point x=\"217\" y=\"802\" type=\"line\"/>\n      <point x=\"335\" y=\"814\"/>\n      <point x=\"394\" y=\"824\"/>\n      <point x=\"488\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"824\"/>\n      <point x=\"735\" y=\"799\"/>\n      <point x=\"735\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"701\"/>\n      <point x=\"698\" y=\"675\"/>\n      <point x=\"457\" y=\"675\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"675\" type=\"line\"/>\n      <point x=\"412\" y=\"427\" type=\"line\"/>\n      <point x=\"454\" y=\"427\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"427\"/>\n      <point x=\"776\" y=\"395\"/>\n      <point x=\"776\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"273\"/>\n      <point x=\"689\" y=\"236\"/>\n      <point x=\"548\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"452\" y=\"236\"/>\n      <point x=\"319\" y=\"256\"/>\n      <point x=\"225\" y=\"313\" type=\"curve\"/>\n      <point x=\"98\" y=\"110\" type=\"line\"/>\n      <point x=\"215\" y=\"6\"/>\n      <point x=\"387\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/ze-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ze-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"550\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"550\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"541\" y=\"-460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"-460\"/>\n      <point x=\"1078\" y=\"-279\"/>\n      <point x=\"1078\" y=\"-23\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1078\" y=\"220\"/>\n      <point x=\"876\" y=\"347\"/>\n      <point x=\"652\" y=\"352\" type=\"curve\"/>\n      <point x=\"666\" y=\"303\" type=\"line\"/>\n      <point x=\"666\" y=\"426\" type=\"line\"/>\n      <point x=\"642\" y=\"379\" type=\"line\"/>\n      <point x=\"695\" y=\"391\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"433\"/>\n      <point x=\"1021\" y=\"520\"/>\n      <point x=\"1021\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"933\"/>\n      <point x=\"863\" y=\"1080\"/>\n      <point x=\"496\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"1080\"/>\n      <point x=\"218\" y=\"1065\"/>\n      <point x=\"171\" y=\"1051\" type=\"curve\"/>\n      <point x=\"209\" y=\"795\" type=\"line\"/>\n      <point x=\"279\" y=\"810\"/>\n      <point x=\"416\" y=\"823\"/>\n      <point x=\"492\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"823\"/>\n      <point x=\"745\" y=\"758\"/>\n      <point x=\"745\" y=\"679\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"745\" y=\"548\"/>\n      <point x=\"628\" y=\"488\"/>\n      <point x=\"366\" y=\"479\" type=\"curve\"/>\n      <point x=\"390\" y=\"227\" type=\"line\"/>\n      <point x=\"501\" y=\"227\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"227\"/>\n      <point x=\"801\" y=\"148\"/>\n      <point x=\"801\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"-128\"/>\n      <point x=\"680\" y=\"-203\"/>\n      <point x=\"552\" y=\"-203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"-203\"/>\n      <point x=\"338\" y=\"-170\"/>\n      <point x=\"236\" y=\"-91\" type=\"curve\"/>\n      <point x=\"62\" y=\"-281\" type=\"line\"/>\n      <point x=\"182\" y=\"-400\"/>\n      <point x=\"343\" y=\"-460\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0660\"/>\n  <outline>\n    <contour>\n      <point x=\"613\" y=\"228\" type=\"line\"/>\n      <point x=\"865\" y=\"485\" type=\"line\"/>\n      <point x=\"583\" y=\"760\" type=\"line\"/>\n      <point x=\"336\" y=\"496\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"608\" y=\"8\" type=\"line\"/>\n      <point x=\"771\" y=\"172\" type=\"line\"/>\n      <point x=\"589\" y=\"350\" type=\"line\"/>\n      <point x=\"430\" y=\"180\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zero-arinferior\" yOffset=\"820\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F0\"/>\n  <outline>\n    <component base=\"zero-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zero-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zero-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>zero-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zerosuperior\" yOffset=\"-812\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0030\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"933\" y=\"-20\"/>\n      <point x=\"1101\" y=\"218\"/>\n      <point x=\"1101\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"1194\"/>\n      <point x=\"933\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"1440\"/>\n      <point x=\"99\" y=\"1194\"/>\n      <point x=\"99\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"218\"/>\n      <point x=\"267\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"598\" y=\"517\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"517\"/>\n      <point x=\"732\" y=\"589\"/>\n      <point x=\"732\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"811\"/>\n      <point x=\"678\" y=\"883\"/>\n      <point x=\"598\" y=\"883\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"518\" y=\"883\"/>\n      <point x=\"465\" y=\"811\"/>\n      <point x=\"465\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"589\"/>\n      <point x=\"518\" y=\"517\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"232\"/>\n      <point x=\"368\" y=\"388\"/>\n      <point x=\"368\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"368\" y=\"1026\"/>\n      <point x=\"446\" y=\"1188\"/>\n      <point x=\"600\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"1188\"/>\n      <point x=\"828\" y=\"1026\"/>\n      <point x=\"828\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"388\"/>\n      <point x=\"753\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zerosuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zero.zero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero.zero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"933\" y=\"-20\"/>\n      <point x=\"1101\" y=\"218\"/>\n      <point x=\"1101\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"1194\"/>\n      <point x=\"933\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"1440\"/>\n      <point x=\"99\" y=\"1194\"/>\n      <point x=\"99\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"218\"/>\n      <point x=\"267\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"312\" y=\"232\" type=\"line\"/>\n      <point x=\"970\" y=\"1023\" type=\"line\"/>\n      <point x=\"872\" y=\"1120\" type=\"line\"/>\n      <point x=\"230\" y=\"355\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"219\"/>\n      <point x=\"368\" y=\"379\"/>\n      <point x=\"368\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"368\" y=\"1035\"/>\n      <point x=\"446\" y=\"1201\"/>\n      <point x=\"600\" y=\"1201\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"1201\"/>\n      <point x=\"828\" y=\"1035\"/>\n      <point x=\"828\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"379\"/>\n      <point x=\"753\" y=\"219\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>zero</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>zero</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zeroinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zeroinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2080\"/>\n  <outline>\n    <component base=\"zerosuperior\" yOffset=\"-812\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zerosuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zerosuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2070\"/>\n  <outline>\n    <contour>\n      <point x=\"601\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"792\"/>\n      <point x=\"930\" y=\"922\"/>\n      <point x=\"930\" y=\"1119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"1317\"/>\n      <point x=\"799\" y=\"1440\"/>\n      <point x=\"601\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"1440\"/>\n      <point x=\"270\" y=\"1313\"/>\n      <point x=\"270\" y=\"1119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"270\" y=\"922\"/>\n      <point x=\"401\" y=\"792\"/>\n    </contour>\n    <contour>\n      <point x=\"601\" y=\"1005\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"1005\"/>\n      <point x=\"510\" y=\"1051\"/>\n      <point x=\"510\" y=\"1119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"1185\"/>\n      <point x=\"545\" y=\"1227\"/>\n      <point x=\"601\" y=\"1227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1227\"/>\n      <point x=\"690\" y=\"1185\"/>\n      <point x=\"690\" y=\"1119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"1051\"/>\n      <point x=\"655\" y=\"1005\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zeta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zeta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B6\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"660\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"709\" y=\"-480\" type=\"line\"/>\n      <point x=\"970\" y=\"-419\"/>\n      <point x=\"1099\" y=\"-289\"/>\n      <point x=\"1099\" y=\"-84\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"120\"/>\n      <point x=\"984\" y=\"237\"/>\n      <point x=\"786\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"237\"/>\n      <point x=\"436\" y=\"327\"/>\n      <point x=\"436\" y=\"495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"734\"/>\n      <point x=\"632\" y=\"959\"/>\n      <point x=\"1093\" y=\"1249\" type=\"curve\"/>\n      <point x=\"710\" y=\"1288\" type=\"line\"/>\n      <point x=\"710\" y=\"1205\" type=\"line\"/>\n      <point x=\"341\" y=\"1009\"/>\n      <point x=\"159\" y=\"771\"/>\n      <point x=\"159\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"160\"/>\n      <point x=\"358\" y=\"-20\"/>\n      <point x=\"707\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"-20\"/>\n      <point x=\"822\" y=\"-50\"/>\n      <point x=\"822\" y=\"-101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"-164\"/>\n      <point x=\"742\" y=\"-210\"/>\n      <point x=\"580\" y=\"-242\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"215\" y=\"1249\" type=\"line\"/>\n      <point x=\"1093\" y=\"1249\" type=\"line\"/>\n      <point x=\"1093\" y=\"1500\" type=\"line\"/>\n      <point x=\"215\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0436\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"806\" y=\"536\" type=\"line\"/>\n      <point x=\"916\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"553\"/>\n      <point x=\"1061\" y=\"601\"/>\n      <point x=\"1061\" y=\"687\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"771\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"813\"/>\n      <point x=\"1090\" y=\"830\"/>\n      <point x=\"1120\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1180\" y=\"830\" type=\"line\"/>\n      <point x=\"1180\" y=\"1070\" type=\"line\"/>\n      <point x=\"1025\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"1070\"/>\n      <point x=\"820\" y=\"1013\"/>\n      <point x=\"820\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"746\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"673\"/>\n      <point x=\"821\" y=\"655\"/>\n      <point x=\"749\" y=\"655\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-10\" type=\"line\"/>\n      <point x=\"175\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"-10\"/>\n      <point x=\"380\" y=\"47\"/>\n      <point x=\"380\" y=\"182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"315\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"388\"/>\n      <point x=\"379\" y=\"406\"/>\n      <point x=\"451\" y=\"406\" type=\"curve\"/>\n      <point x=\"394\" y=\"524\" type=\"line\"/>\n      <point x=\"284\" y=\"514\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"203\" y=\"507\"/>\n      <point x=\"139\" y=\"459\"/>\n      <point x=\"139\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"289\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"247\"/>\n      <point x=\"110\" y=\"230\"/>\n      <point x=\"80\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"230\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"406\" type=\"line\"/>\n      <point x=\"522\" y=\"406\" type=\"line\"/>\n      <point x=\"522\" y=\"655\" type=\"line\"/>\n      <point x=\"304\" y=\"655\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"394\" y=\"536\" type=\"line\"/>\n      <point x=\"451\" y=\"655\" type=\"line\"/>\n      <point x=\"379\" y=\"655\"/>\n      <point x=\"380\" y=\"673\"/>\n      <point x=\"380\" y=\"746\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"878\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"1013\"/>\n      <point x=\"308\" y=\"1070\"/>\n      <point x=\"175\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"1070\" type=\"line\"/>\n      <point x=\"20\" y=\"830\" type=\"line\"/>\n      <point x=\"80\" y=\"830\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"110\" y=\"830\"/>\n      <point x=\"139\" y=\"813\"/>\n      <point x=\"139\" y=\"771\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"687\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"601\"/>\n      <point x=\"203\" y=\"553\"/>\n      <point x=\"284\" y=\"546\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"501\" y=\"0\" type=\"line\"/>\n      <point x=\"697\" y=\"0\" type=\"line\"/>\n      <point x=\"697\" y=\"1060\" type=\"line\"/>\n      <point x=\"501\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1025\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1180\" y=\"-10\" type=\"line\"/>\n      <point x=\"1180\" y=\"230\" type=\"line\"/>\n      <point x=\"1120\" y=\"230\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"230\"/>\n      <point x=\"1061\" y=\"247\"/>\n      <point x=\"1061\" y=\"289\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"373\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"459\"/>\n      <point x=\"997\" y=\"507\"/>\n      <point x=\"916\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"524\" type=\"line\"/>\n      <point x=\"749\" y=\"406\" type=\"line\"/>\n      <point x=\"821\" y=\"406\"/>\n      <point x=\"820\" y=\"388\"/>\n      <point x=\"820\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"182\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"47\"/>\n      <point x=\"892\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"669\" y=\"406\" type=\"line\"/>\n      <point x=\"896\" y=\"406\" type=\"line\"/>\n      <point x=\"896\" y=\"655\" type=\"line\"/>\n      <point x=\"669\" y=\"655\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zhe-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zhe-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"801\" y=\"536\" type=\"line\"/>\n      <point x=\"916\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"553\"/>\n      <point x=\"1061\" y=\"601\"/>\n      <point x=\"1061\" y=\"687\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"771\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"813\"/>\n      <point x=\"1090\" y=\"830\"/>\n      <point x=\"1120\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1180\" y=\"830\" type=\"line\"/>\n      <point x=\"1180\" y=\"1070\" type=\"line\"/>\n      <point x=\"1025\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"1070\"/>\n      <point x=\"820\" y=\"1013\"/>\n      <point x=\"820\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"746\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"673\"/>\n      <point x=\"821\" y=\"655\"/>\n      <point x=\"739\" y=\"655\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-10\" type=\"line\"/>\n      <point x=\"175\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"-10\"/>\n      <point x=\"380\" y=\"47\"/>\n      <point x=\"380\" y=\"182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"315\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"388\"/>\n      <point x=\"379\" y=\"406\"/>\n      <point x=\"461\" y=\"406\" type=\"curve\"/>\n      <point x=\"399\" y=\"524\" type=\"line\"/>\n      <point x=\"284\" y=\"514\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"203\" y=\"507\"/>\n      <point x=\"139\" y=\"459\"/>\n      <point x=\"139\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"289\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"247\"/>\n      <point x=\"110\" y=\"230\"/>\n      <point x=\"80\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"230\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"406\" type=\"line\"/>\n      <point x=\"519\" y=\"406\" type=\"line\"/>\n      <point x=\"519\" y=\"655\" type=\"line\"/>\n      <point x=\"304\" y=\"655\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"399\" y=\"536\" type=\"line\"/>\n      <point x=\"461\" y=\"655\" type=\"line\"/>\n      <point x=\"379\" y=\"655\"/>\n      <point x=\"380\" y=\"673\"/>\n      <point x=\"380\" y=\"746\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"878\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"1013\"/>\n      <point x=\"308\" y=\"1070\"/>\n      <point x=\"175\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"1070\" type=\"line\"/>\n      <point x=\"20\" y=\"830\" type=\"line\"/>\n      <point x=\"80\" y=\"830\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"110\" y=\"830\"/>\n      <point x=\"139\" y=\"813\"/>\n      <point x=\"139\" y=\"771\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"687\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"601\"/>\n      <point x=\"203\" y=\"553\"/>\n      <point x=\"284\" y=\"546\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"501\" y=\"0\" type=\"line\"/>\n      <point x=\"698\" y=\"0\" type=\"line\"/>\n      <point x=\"698\" y=\"573\" type=\"line\"/>\n      <point x=\"732\" y=\"1500\" type=\"line\"/>\n      <point x=\"467\" y=\"1500\" type=\"line\"/>\n      <point x=\"501\" y=\"567\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1025\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1180\" y=\"-10\" type=\"line\"/>\n      <point x=\"1180\" y=\"230\" type=\"line\"/>\n      <point x=\"1120\" y=\"230\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"230\"/>\n      <point x=\"1061\" y=\"247\"/>\n      <point x=\"1061\" y=\"289\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"373\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"459\"/>\n      <point x=\"997\" y=\"507\"/>\n      <point x=\"916\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"524\" type=\"line\"/>\n      <point x=\"739\" y=\"406\" type=\"line\"/>\n      <point x=\"821\" y=\"406\"/>\n      <point x=\"820\" y=\"388\"/>\n      <point x=\"820\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"182\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"47\"/>\n      <point x=\"892\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"673\" y=\"406\" type=\"line\"/>\n      <point x=\"896\" y=\"406\" type=\"line\"/>\n      <point x=\"896\" y=\"655\" type=\"line\"/>\n      <point x=\"673\" y=\"655\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zhedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zhedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0497\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"716\" y=\"536\" type=\"line\"/>\n      <point x=\"829\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"553\"/>\n      <point x=\"978\" y=\"601\"/>\n      <point x=\"978\" y=\"687\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"769\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"812\"/>\n      <point x=\"1006\" y=\"829\"/>\n      <point x=\"1035\" y=\"829\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1098\" y=\"829\" type=\"line\"/>\n      <point x=\"1098\" y=\"1069\" type=\"line\"/>\n      <point x=\"943\" y=\"1069\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"1069\"/>\n      <point x=\"737\" y=\"1012\"/>\n      <point x=\"737\" y=\"876\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"746\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"673\"/>\n      <point x=\"738\" y=\"655\"/>\n      <point x=\"654\" y=\"655\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"22\" y=\"-9\" type=\"line\"/>\n      <point x=\"177\" y=\"-9\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"311\" y=\"-9\"/>\n      <point x=\"383\" y=\"48\"/>\n      <point x=\"383\" y=\"184\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"315\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"388\"/>\n      <point x=\"382\" y=\"406\"/>\n      <point x=\"466\" y=\"406\" type=\"curve\"/>\n      <point x=\"405\" y=\"524\" type=\"line\"/>\n      <point x=\"291\" y=\"514\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"208\" y=\"507\"/>\n      <point x=\"142\" y=\"459\"/>\n      <point x=\"142\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"291\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"248\"/>\n      <point x=\"114\" y=\"231\"/>\n      <point x=\"85\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"22\" y=\"231\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"310\" y=\"406\" type=\"line\"/>\n      <point x=\"516\" y=\"406\" type=\"line\"/>\n      <point x=\"516\" y=\"655\" type=\"line\"/>\n      <point x=\"310\" y=\"655\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"405\" y=\"536\" type=\"line\"/>\n      <point x=\"466\" y=\"655\" type=\"line\"/>\n      <point x=\"382\" y=\"655\"/>\n      <point x=\"383\" y=\"673\"/>\n      <point x=\"383\" y=\"746\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"876\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"1012\"/>\n      <point x=\"311\" y=\"1069\"/>\n      <point x=\"177\" y=\"1069\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"22\" y=\"1069\" type=\"line\"/>\n      <point x=\"22\" y=\"829\" type=\"line\"/>\n      <point x=\"85\" y=\"829\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"114\" y=\"829\"/>\n      <point x=\"142\" y=\"812\"/>\n      <point x=\"142\" y=\"769\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"687\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"601\"/>\n      <point x=\"208\" y=\"553\"/>\n      <point x=\"291\" y=\"546\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"471\" y=\"0\" type=\"line\"/>\n      <point x=\"648\" y=\"0\" type=\"line\"/>\n      <point x=\"648\" y=\"1060\" type=\"line\"/>\n      <point x=\"471\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"943\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1098\" y=\"-9\" type=\"line\"/>\n      <point x=\"1098\" y=\"232\" type=\"line\"/>\n      <point x=\"1035\" y=\"232\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"232\"/>\n      <point x=\"978\" y=\"249\"/>\n      <point x=\"978\" y=\"292\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"373\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"459\"/>\n      <point x=\"912\" y=\"507\"/>\n      <point x=\"829\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"524\" type=\"line\"/>\n      <point x=\"654\" y=\"406\" type=\"line\"/>\n      <point x=\"738\" y=\"406\"/>\n      <point x=\"737\" y=\"388\"/>\n      <point x=\"737\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"184\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"48\"/>\n      <point x=\"809\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"596\" y=\"406\" type=\"line\"/>\n      <point x=\"810\" y=\"406\" type=\"line\"/>\n      <point x=\"810\" y=\"655\" type=\"line\"/>\n      <point x=\"596\" y=\"655\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"914\" y=\"-270\" type=\"line\"/>\n      <point x=\"1183\" y=\"-270\" type=\"line\"/>\n      <point x=\"1183\" y=\"232\" type=\"line\"/>\n      <point x=\"914\" y=\"232\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs/zmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1DBB\"/>\n  <outline>\n    <contour>\n      <point x=\"456\" y=\"898\" type=\"line\"/>\n      <point x=\"881\" y=\"1215\" type=\"line\"/>\n      <point x=\"743\" y=\"1308\" type=\"line\"/>\n      <point x=\"303\" y=\"994\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"303\" y=\"790\" type=\"line\"/>\n      <point x=\"894\" y=\"790\" type=\"line\"/>\n      <point x=\"894\" y=\"994\" type=\"line\"/>\n      <point x=\"303\" y=\"994\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"303\" y=\"1215\" type=\"line\"/>\n      <point x=\"881\" y=\"1215\" type=\"line\"/>\n      <point x=\"881\" y=\"1420\" type=\"line\"/>\n      <point x=\"303\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs.public.background/allah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"allah-ar\" format=\"2\">\n  <anchor x=\"1789\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"1290\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"449\" y=\"-141\" name=\"bottom_3\"/>\n  <anchor x=\"1779\" y=\"1310\" name=\"top_1\"/>\n  <anchor x=\"1280\" y=\"1310\" name=\"top_2\"/>\n  <anchor x=\"582\" y=\"1270\" name=\"top_3\"/>\n  <outline>\n    <contour>\n      <point x=\"979\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1115\" y=\"-9\"/>\n      <point x=\"1209\" y=\"41\"/>\n      <point x=\"1235\" y=\"162\" type=\"curve\"/>\n      <point x=\"1316\" y=\"162\" type=\"line\"/>\n      <point x=\"1334\" y=\"324\" type=\"line\"/>\n      <point x=\"1237\" y=\"248\" type=\"line\"/>\n      <point x=\"1265\" y=\"52\"/>\n      <point x=\"1362\" y=\"-10\"/>\n      <point x=\"1552\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1805\" y=\"-10\"/>\n      <point x=\"1941\" y=\"105\"/>\n      <point x=\"1931\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1908\" y=\"1196\" type=\"line\"/>\n      <point x=\"1634\" y=\"1196\" type=\"line\"/>\n      <point x=\"1661\" y=\"470\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1666\" y=\"329\"/>\n      <point x=\"1651\" y=\"285\"/>\n      <point x=\"1544\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1456\" y=\"285\"/>\n      <point x=\"1424\" y=\"314\"/>\n      <point x=\"1421\" y=\"439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1404\" y=\"1197\" type=\"line\"/>\n      <point x=\"1130\" y=\"1197\" type=\"line\"/>\n      <point x=\"1153\" y=\"430\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"309\"/>\n      <point x=\"1108\" y=\"285\"/>\n      <point x=\"1022\" y=\"285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"943\" y=\"285\"/>\n      <point x=\"912\" y=\"307\"/>\n      <point x=\"911\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"997\" type=\"line\"/>\n      <point x=\"661\" y=\"997\" type=\"line\"/>\n      <point x=\"671\" y=\"286\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"39\"/>\n      <point x=\"812\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"449\" y=\"137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"137\"/>\n      <point x=\"617\" y=\"157\"/>\n      <point x=\"647\" y=\"222\" type=\"curve\"/>\n      <point x=\"719\" y=\"222\" type=\"line\"/>\n      <point x=\"709\" y=\"435\" type=\"line\"/>\n      <point x=\"640\" y=\"427\"/>\n      <point x=\"516\" y=\"419\"/>\n      <point x=\"448\" y=\"419\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"419\"/>\n      <point x=\"279\" y=\"431\"/>\n      <point x=\"279\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"279\" y=\"550\"/>\n      <point x=\"351\" y=\"583\"/>\n      <point x=\"735\" y=\"644\" type=\"curve\"/>\n      <point x=\"718\" y=\"901\" type=\"line\"/>\n      <point x=\"262\" y=\"803\"/>\n      <point x=\"50\" y=\"695\"/>\n      <point x=\"50\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"50\" y=\"232\"/>\n      <point x=\"171\" y=\"137\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs.public.background/braceleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft_bar.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"890\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"-214\"/>\n      <point x=\"1104\" y=\"-206\"/>\n      <point x=\"1178\" y=\"-194\" type=\"curve\"/>\n      <point x=\"1154\" y=\"47\" type=\"line\"/>\n      <point x=\"1079\" y=\"41\"/>\n      <point x=\"1007\" y=\"37\"/>\n      <point x=\"950\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"37\"/>\n      <point x=\"765\" y=\"106\"/>\n      <point x=\"775\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"315\"/>\n      <point x=\"821\" y=\"397\"/>\n      <point x=\"821\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"608\"/>\n      <point x=\"709\" y=\"682\"/>\n      <point x=\"519\" y=\"685\" type=\"curve\"/>\n      <point x=\"519\" y=\"727\" type=\"line\"/>\n      <point x=\"709\" y=\"730\"/>\n      <point x=\"821\" y=\"807\"/>\n      <point x=\"821\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"1030\"/>\n      <point x=\"785\" y=\"1114\"/>\n      <point x=\"775\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1313\"/>\n      <point x=\"845\" y=\"1375\"/>\n      <point x=\"950\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1007\" y=\"1375\"/>\n      <point x=\"1079\" y=\"1371\"/>\n      <point x=\"1154\" y=\"1365\" type=\"curve\"/>\n      <point x=\"1178\" y=\"1606\" type=\"line\"/>\n      <point x=\"1104\" y=\"1618\"/>\n      <point x=\"1022\" y=\"1626\"/>\n      <point x=\"890\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"1626\"/>\n      <point x=\"457\" y=\"1495\"/>\n      <point x=\"498\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"514\" y=\"1173\"/>\n      <point x=\"550\" y=\"1086\"/>\n      <point x=\"550\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"883\"/>\n      <point x=\"425\" y=\"832\"/>\n      <point x=\"223\" y=\"832\" type=\"curve\"/>\n      <point x=\"223\" y=\"580\" type=\"line\"/>\n      <point x=\"426\" y=\"580\"/>\n      <point x=\"550\" y=\"538\"/>\n      <point x=\"550\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"347\"/>\n      <point x=\"513\" y=\"257\"/>\n      <point x=\"498\" y=\"166\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"-74\"/>\n      <point x=\"646\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs.public.background/braceright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"386\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"-214\"/>\n      <point x=\"768\" y=\"-78\"/>\n      <point x=\"728\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"251\"/>\n      <point x=\"646\" y=\"344\"/>\n      <point x=\"646\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"538\"/>\n      <point x=\"770\" y=\"580\"/>\n      <point x=\"973\" y=\"580\" type=\"curve\"/>\n      <point x=\"973\" y=\"832\" type=\"line\"/>\n      <point x=\"771\" y=\"832\"/>\n      <point x=\"646\" y=\"883\"/>\n      <point x=\"646\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"1090\"/>\n      <point x=\"711\" y=\"1179\"/>\n      <point x=\"728\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"1499\"/>\n      <point x=\"603\" y=\"1626\"/>\n      <point x=\"386\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1626\"/>\n      <point x=\"247\" y=\"1618\"/>\n      <point x=\"199\" y=\"1606\" type=\"curve\"/>\n      <point x=\"223\" y=\"1365\" type=\"line\"/>\n      <point x=\"261\" y=\"1371\"/>\n      <point x=\"297\" y=\"1375\"/>\n      <point x=\"326\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"407\" y=\"1375\"/>\n      <point x=\"479\" y=\"1315\"/>\n      <point x=\"451\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"1119\"/>\n      <point x=\"375\" y=\"1033\"/>\n      <point x=\"375\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"807\"/>\n      <point x=\"487\" y=\"730\"/>\n      <point x=\"677\" y=\"727\" type=\"curve\"/>\n      <point x=\"677\" y=\"685\" type=\"line\"/>\n      <point x=\"487\" y=\"682\"/>\n      <point x=\"375\" y=\"608\"/>\n      <point x=\"375\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"393\"/>\n      <point x=\"434\" y=\"310\"/>\n      <point x=\"451\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"103\"/>\n      <point x=\"407\" y=\"37\"/>\n      <point x=\"326\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"37\"/>\n      <point x=\"261\" y=\"41\"/>\n      <point x=\"223\" y=\"47\" type=\"curve\"/>\n      <point x=\"199\" y=\"-194\" type=\"line\"/>\n      <point x=\"247\" y=\"-206\"/>\n      <point x=\"300\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs.public.background/braceright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright_numbersign.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"413\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"-214\"/>\n      <point x=\"795\" y=\"-78\"/>\n      <point x=\"755\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"739\" y=\"251\"/>\n      <point x=\"673\" y=\"344\"/>\n      <point x=\"673\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"579\"/>\n      <point x=\"797\" y=\"640\"/>\n      <point x=\"1000\" y=\"640\" type=\"curve\"/>\n      <point x=\"1000\" y=\"772\" type=\"line\"/>\n      <point x=\"798\" y=\"772\"/>\n      <point x=\"673\" y=\"843\"/>\n      <point x=\"673\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"1090\"/>\n      <point x=\"738\" y=\"1179\"/>\n      <point x=\"755\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"1499\"/>\n      <point x=\"630\" y=\"1626\"/>\n      <point x=\"413\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"327\" y=\"1626\"/>\n      <point x=\"274\" y=\"1618\"/>\n      <point x=\"226\" y=\"1606\" type=\"curve\"/>\n      <point x=\"250\" y=\"1365\" type=\"line\"/>\n      <point x=\"288\" y=\"1371\"/>\n      <point x=\"324\" y=\"1375\"/>\n      <point x=\"353\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"434\" y=\"1375\"/>\n      <point x=\"506\" y=\"1315\"/>\n      <point x=\"478\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"1119\"/>\n      <point x=\"402\" y=\"1033\"/>\n      <point x=\"402\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"807\"/>\n      <point x=\"514\" y=\"730\"/>\n      <point x=\"704\" y=\"727\" type=\"curve\"/>\n      <point x=\"704\" y=\"685\" type=\"line\"/>\n      <point x=\"514\" y=\"682\"/>\n      <point x=\"402\" y=\"608\"/>\n      <point x=\"402\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"393\"/>\n      <point x=\"461\" y=\"310\"/>\n      <point x=\"478\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"503\" y=\"103\"/>\n      <point x=\"434\" y=\"37\"/>\n      <point x=\"353\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"37\"/>\n      <point x=\"288\" y=\"41\"/>\n      <point x=\"250\" y=\"47\" type=\"curve\"/>\n      <point x=\"226\" y=\"-194\" type=\"line\"/>\n      <point x=\"274\" y=\"-206\"/>\n      <point x=\"327\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs.public.background/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>allah-ar</key>\n    <string>allah-ar.glif</string>\n    <key>braceleft_bar.liga</key>\n    <string>braceleft_bar.liga.glif</string>\n    <key>braceright</key>\n    <string>braceright.glif</string>\n    <key>braceright_numbersign.liga</key>\n    <string>braceright_numbersign.liga.glif</string>\n    <key>numbersign_braceleft.liga</key>\n    <string>numbersign_braceleft.liga.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/glyphs.public.background/numbersign_braceleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_braceleft.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"2032\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2118\" y=\"-214\"/>\n      <point x=\"2171\" y=\"-206\"/>\n      <point x=\"2219\" y=\"-194\" type=\"curve\"/>\n      <point x=\"2195\" y=\"47\" type=\"line\"/>\n      <point x=\"2157\" y=\"41\"/>\n      <point x=\"2121\" y=\"37\"/>\n      <point x=\"2092\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2011\" y=\"37\"/>\n      <point x=\"1942\" y=\"103\"/>\n      <point x=\"1967\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1984\" y=\"310\"/>\n      <point x=\"2043\" y=\"393\"/>\n      <point x=\"2043\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2043\" y=\"608\"/>\n      <point x=\"1931\" y=\"682\"/>\n      <point x=\"1741\" y=\"685\" type=\"curve\"/>\n      <point x=\"1741\" y=\"727\" type=\"line\"/>\n      <point x=\"1931\" y=\"730\"/>\n      <point x=\"2043\" y=\"807\"/>\n      <point x=\"2043\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2043\" y=\"1033\"/>\n      <point x=\"1988\" y=\"1119\"/>\n      <point x=\"1967\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1939\" y=\"1315\"/>\n      <point x=\"2011\" y=\"1375\"/>\n      <point x=\"2092\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2121\" y=\"1375\"/>\n      <point x=\"2157\" y=\"1371\"/>\n      <point x=\"2195\" y=\"1365\" type=\"curve\"/>\n      <point x=\"2219\" y=\"1606\" type=\"line\"/>\n      <point x=\"2171\" y=\"1618\"/>\n      <point x=\"2118\" y=\"1626\"/>\n      <point x=\"2032\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1815\" y=\"1626\"/>\n      <point x=\"1650\" y=\"1499\"/>\n      <point x=\"1690\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1707\" y=\"1179\"/>\n      <point x=\"1772\" y=\"1090\"/>\n      <point x=\"1772\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1772\" y=\"843\"/>\n      <point x=\"1647\" y=\"772\"/>\n      <point x=\"1445\" y=\"772\" type=\"curve\"/>\n      <point x=\"1445\" y=\"640\" type=\"line\"/>\n      <point x=\"1648\" y=\"640\"/>\n      <point x=\"1772\" y=\"579\"/>\n      <point x=\"1772\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1772\" y=\"344\"/>\n      <point x=\"1706\" y=\"251\"/>\n      <point x=\"1690\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1650\" y=\"-78\"/>\n      <point x=\"1815\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/groups.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>public.kern1.eight-ar.inferior</key>\n    <array>\n      <string>eight-arinferior</string>\n      <string>eight-arsuperior</string>\n      <string>eight-persianinferior</string>\n      <string>eight-persiansuperior</string>\n    </array>\n    <key>public.kern1.five-ar.inferior</key>\n    <array>\n      <string>five-arinferior</string>\n      <string>five-arsuperior</string>\n    </array>\n    <key>public.kern1.four-persian.urdu.inferior</key>\n    <array>\n      <string>four-persian.urduinferior</string>\n      <string>four-persian.urdusuperior</string>\n    </array>\n    <key>public.kern1.seven-ar.inferior</key>\n    <array>\n      <string>seven-arinferior</string>\n      <string>seven-arsuperior</string>\n      <string>seven-persianinferior</string>\n      <string>seven-persiansuperior</string>\n    </array>\n    <key>public.kern2.dot_below</key>\n    <array>\n      <string>pehMeemabove-ar.init</string>\n    </array>\n    <key>public.kern2.eight-ar.inferior</key>\n    <array>\n      <string>eight-arinferior</string>\n      <string>eight-arsuperior</string>\n      <string>eight-persianinferior</string>\n      <string>eight-persiansuperior</string>\n    </array>\n    <key>public.kern2.nine-ar.inferior</key>\n    <array>\n      <string>nine-arinferior</string>\n      <string>nine-arsuperior</string>\n      <string>nine-persianinferior</string>\n      <string>nine-persiansuperior</string>\n    </array>\n    <key>public.kern2.seven-ar.inferior</key>\n    <array>\n      <string>seven-arinferior</string>\n      <string>seven-arsuperior</string>\n      <string>seven-persianinferior</string>\n      <string>seven-persiansuperior</string>\n    </array>\n    <key>public.kern2.seven-persian.urdu.inferior</key>\n    <array>\n      <string>seven-persian.urduinferior</string>\n      <string>seven-persian.urdusuperior</string>\n    </array>\n    <key>public.kern2.six-ar.inferior</key>\n    <array>\n      <string>six-arinferior</string>\n      <string>six-arsuperior</string>\n    </array>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/layercontents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <array>\n    <array>\n      <string>public.default</string>\n      <string>glyphs</string>\n    </array>\n    <array>\n      <string>public.background</string>\n      <string>glyphs.public.background</string>\n    </array>\n  </array>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/lib.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>com.github.googlei18n.ufo2ft.filters</key>\n    <array>\n      <dict>\n        <key>name</key>\n        <string>decomposeTransformedComponents</string>\n        <key>pre</key>\n        <integer>1</integer>\n      </dict>\n      <dict>\n        <key>exclude</key>\n        <array>\n          <string>ij_acute</string>\n          <string>baht</string>\n          <string>bitcoin</string>\n          <string>cedi</string>\n          <string>cent</string>\n          <string>colonsign</string>\n          <string>currency</string>\n          <string>dollar</string>\n          <string>dong</string>\n          <string>euro</string>\n          <string>eurocurrency</string>\n          <string>florin</string>\n          <string>franc</string>\n          <string>guarani</string>\n          <string>hryvnia</string>\n          <string>kip</string>\n          <string>lari</string>\n          <string>lira</string>\n          <string>liraTurkish</string>\n          <string>manat</string>\n          <string>naira</string>\n          <string>peseta</string>\n          <string>peso</string>\n          <string>ruble</string>\n          <string>rupee</string>\n          <string>rupeeIndian</string>\n          <string>sheqel</string>\n          <string>sterling</string>\n          <string>tenge</string>\n          <string>tugrik</string>\n          <string>won</string>\n          <string>yen</string>\n          <string>baht.BRACKET.600</string>\n          <string>dollar.BRACKET.600</string>\n          <string>lam_alef-ar</string>\n          <string>lam_alef-ar.fina</string>\n          <string>lam_alef-ar.fina.short</string>\n          <string>lam_alef-ar.short</string>\n          <string>lam_lam_heh-ar</string>\n          <string>allah-ar</string>\n          <string>_tahabove</string>\n        </array>\n        <key>name</key>\n        <string>propagateAnchors</string>\n        <key>pre</key>\n        <integer>1</integer>\n      </dict>\n    </array>\n    <key>com.schriftgestaltung.appVersion</key>\n    <string>1352</string>\n    <key>com.schriftgestaltung.customParameter.GSFont.Axes</key>\n    <array>\n      <dict>\n        <key>Name</key>\n        <string>Weight</string>\n        <key>Tag</key>\n        <string>wght</string>\n      </dict>\n    </array>\n    <key>com.schriftgestaltung.customParameter.GSFont.DisplayStrings</key>\n    <array>\n      <string>{}/braceleft_bar.liga</string>\n    </array>\n    <key>com.schriftgestaltung.customParameter.GSFont.disablesAutomaticAlignment</key>\n    <false/>\n    <key>com.schriftgestaltung.customParameter.GSFont.disablesLastChange</key>\n    <true/>\n    <key>com.schriftgestaltung.customParameter.GSFont.note</key>\n    <string>#Macro to convert the ligatures from editable to production mode\n\ndef ligatureProcess(production):\n\tfor glyph in Glyphs.font.glyphs:\n\t\tif glyph.color == 3: #2 width\n\t\t\tif production == True:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB - 1200\n\t\t\tif production == False:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB + 1200\n\n\t\telif glyph.color == 4: #3 width\n\t\t\tif production == True:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB - 2400\n\t\t\tif production == False:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB + 2400\n\n\t\telif glyph.color == 9: #4 width\n\t\t\tif production == True:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB - 3600\n\t\t\tif production == False:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB + 3600\t\t\n\t\t\n\nligatureProcess(True) #True for production mode, False for editable\n\n\n\nSettings for scaler for halves and thirds\n\nThird\n\n30\t\t30\t\t30\n40\t\t40\t\t40\n80\t\t-160\t-340\n\nHalf\n70\t\t70\t\t70\n45\t\t45\t\t45\n60\t\t-220\t-360</string>\n    <key>com.schriftgestaltung.customParameter.GSFont.useNiceNames</key>\n    <integer>1</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue1</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue2</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue3</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.iconName</key>\n    <string></string>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.weightValue</key>\n    <integer>750</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.widthValue</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.fontMasterID</key>\n    <string>8E053A5E-67DA-4970-A6F5-068DBFE5AD21</string>\n    <key>com.schriftgestaltung.fontMasterOrder</key>\n    <integer>2</integer>\n    <key>com.schriftgestaltung.keyboardIncrement</key>\n    <integer>1</integer>\n    <key>com.schriftgestaltung.weight</key>\n    <string>Bold</string>\n    <key>com.schriftgestaltung.weightValue</key>\n    <integer>750</integer>\n    <key>com.schriftgestaltung.width</key>\n    <string>Regular</string>\n    <key>public.glyphOrder</key>\n    <array>\n      <string>A</string>\n      <string>Aacute</string>\n      <string>Abreve</string>\n      <string>Abreveacute</string>\n      <string>Abrevedotbelow</string>\n      <string>Abrevegrave</string>\n      <string>Abrevehookabove</string>\n      <string>Abrevetilde</string>\n      <string>Acaron</string>\n      <string>Acircumflex</string>\n      <string>Acircumflexacute</string>\n      <string>Acircumflexdotbelow</string>\n      <string>Acircumflexgrave</string>\n      <string>Acircumflexhookabove</string>\n      <string>Acircumflextilde</string>\n      <string>Adieresis</string>\n      <string>Adotbelow</string>\n      <string>Agrave</string>\n      <string>Ahookabove</string>\n      <string>Alpha-latin</string>\n      <string>Amacron</string>\n      <string>Aogonek</string>\n      <string>Aring</string>\n      <string>Aringacute</string>\n      <string>Astroke</string>\n      <string>Atilde</string>\n      <string>AE</string>\n      <string>AEacute</string>\n      <string>B</string>\n      <string>C</string>\n      <string>Cacute</string>\n      <string>Ccaron</string>\n      <string>Ccedilla</string>\n      <string>Ccircumflex</string>\n      <string>Cdotaccent</string>\n      <string>Cstroke</string>\n      <string>D</string>\n      <string>Dafrican</string>\n      <string>Eth</string>\n      <string>Dcaron</string>\n      <string>Dcroat</string>\n      <string>E</string>\n      <string>Eacute</string>\n      <string>Ebreve</string>\n      <string>Ecaron</string>\n      <string>Ecircumflex</string>\n      <string>Ecircumflexacute</string>\n      <string>Ecircumflexdotbelow</string>\n      <string>Ecircumflexgrave</string>\n      <string>Ecircumflexhookabove</string>\n      <string>Ecircumflextilde</string>\n      <string>Edieresis</string>\n      <string>Edotaccent</string>\n      <string>Edotbelow</string>\n      <string>Egrave</string>\n      <string>Ehookabove</string>\n      <string>Emacron</string>\n      <string>Eogonek</string>\n      <string>Eopen</string>\n      <string>Ereversed</string>\n      <string>Esh</string>\n      <string>Etilde</string>\n      <string>Ezh</string>\n      <string>F</string>\n      <string>Fhook</string>\n      <string>G</string>\n      <string>Gbreve</string>\n      <string>Gcaron</string>\n      <string>Gcircumflex</string>\n      <string>Gcommaaccent</string>\n      <string>Gdotaccent</string>\n      <string>Gstroke</string>\n      <string>H</string>\n      <string>Hbar</string>\n      <string>Hcaron</string>\n      <string>Hcircumflex</string>\n      <string>Hdotbelow</string>\n      <string>I</string>\n      <string>IJ</string>\n      <string>IJ_acute</string>\n      <string>Iacute</string>\n      <string>Ibreve</string>\n      <string>Icircumflex</string>\n      <string>Idieresis</string>\n      <string>Idotaccent</string>\n      <string>Idotbelow</string>\n      <string>Igrave</string>\n      <string>Ihookabove</string>\n      <string>Imacron</string>\n      <string>Iogonek</string>\n      <string>Iotaafrican</string>\n      <string>Itilde</string>\n      <string>J</string>\n      <string>Jacute</string>\n      <string>Jcircumflex</string>\n      <string>K</string>\n      <string>Kacute</string>\n      <string>Kcommaaccent</string>\n      <string>Kdotbelow</string>\n      <string>Klinebelow</string>\n      <string>L</string>\n      <string>Lacute</string>\n      <string>Lbar</string>\n      <string>Lcaron</string>\n      <string>Lcommaaccent</string>\n      <string>Ldot</string>\n      <string>Ldotbelow</string>\n      <string>Llinebelow</string>\n      <string>Lmiddletilde</string>\n      <string>Lslash</string>\n      <string>M</string>\n      <string>N</string>\n      <string>Nacute</string>\n      <string>Ncaron</string>\n      <string>Ncommaaccent</string>\n      <string>Eng</string>\n      <string>Nhookleft</string>\n      <string>Nlinebelow</string>\n      <string>Ntilde</string>\n      <string>O</string>\n      <string>Oacute</string>\n      <string>Obreve</string>\n      <string>Ocircumflex</string>\n      <string>Ocircumflexacute</string>\n      <string>Ocircumflexdotbelow</string>\n      <string>Ocircumflexgrave</string>\n      <string>Ocircumflexhookabove</string>\n      <string>Ocircumflextilde</string>\n      <string>Odieresis</string>\n      <string>Odotbelow</string>\n      <string>Ograve</string>\n      <string>Ohookabove</string>\n      <string>Ohorn</string>\n      <string>Ohornacute</string>\n      <string>Ohorndotbelow</string>\n      <string>Ohorngrave</string>\n      <string>Ohornhookabove</string>\n      <string>Ohorntilde</string>\n      <string>Ohungarumlaut</string>\n      <string>Omacron</string>\n      <string>Omacronacute</string>\n      <string>Omacrongrave</string>\n      <string>Oogonek</string>\n      <string>Oopen</string>\n      <string>Oslash</string>\n      <string>Oslashacute</string>\n      <string>Otilde</string>\n      <string>OE</string>\n      <string>P</string>\n      <string>Thorn</string>\n      <string>Q</string>\n      <string>R</string>\n      <string>Racute</string>\n      <string>Rcaron</string>\n      <string>Rcommaaccent</string>\n      <string>Rdotbelow</string>\n      <string>S</string>\n      <string>Sacute</string>\n      <string>Scaron</string>\n      <string>Scedilla</string>\n      <string>Scircumflex</string>\n      <string>Scommaaccent</string>\n      <string>Sdotbelow</string>\n      <string>Germandbls</string>\n      <string>Schwa</string>\n      <string>T</string>\n      <string>Tbar</string>\n      <string>Tcaron</string>\n      <string>Tcedilla</string>\n      <string>Tcommaaccent</string>\n      <string>Tdiagonalstroke</string>\n      <string>Tlinebelow</string>\n      <string>U</string>\n      <string>Uacute</string>\n      <string>Ubreve</string>\n      <string>Ucircumflex</string>\n      <string>Udieresis</string>\n      <string>Udotbelow</string>\n      <string>Ugrave</string>\n      <string>Uhookabove</string>\n      <string>Uhorn</string>\n      <string>Uhornacute</string>\n      <string>Uhorndotbelow</string>\n      <string>Uhorngrave</string>\n      <string>Uhornhookabove</string>\n      <string>Uhorntilde</string>\n      <string>Uhungarumlaut</string>\n      <string>Umacron</string>\n      <string>Uogonek</string>\n      <string>Upsilonafrican</string>\n      <string>Uring</string>\n      <string>Utilde</string>\n      <string>V</string>\n      <string>Gammaafrican</string>\n      <string>Vhook</string>\n      <string>Vturned</string>\n      <string>W</string>\n      <string>Wacute</string>\n      <string>Wcircumflex</string>\n      <string>Wdieresis</string>\n      <string>Wgrave</string>\n      <string>X</string>\n      <string>Y</string>\n      <string>Yacute</string>\n      <string>Ycircumflex</string>\n      <string>Ydieresis</string>\n      <string>Ydotbelow</string>\n      <string>Ygrave</string>\n      <string>Yhookabove</string>\n      <string>Ymacron</string>\n      <string>Ytilde</string>\n      <string>Z</string>\n      <string>Zacute</string>\n      <string>Zcaron</string>\n      <string>Zdotaccent</string>\n      <string>Cacute.loclPLK</string>\n      <string>Nacute.loclPLK</string>\n      <string>Oacute.loclPLK</string>\n      <string>Sacute.loclPLK</string>\n      <string>Zacute.loclPLK</string>\n      <string>A.half</string>\n      <string>B.half</string>\n      <string>C.half</string>\n      <string>D.half</string>\n      <string>E.half</string>\n      <string>F.half</string>\n      <string>G.half</string>\n      <string>H.half</string>\n      <string>I.half</string>\n      <string>K.half</string>\n      <string>L.half</string>\n      <string>M.half</string>\n      <string>N.half</string>\n      <string>O.half</string>\n      <string>P.half</string>\n      <string>Q.half</string>\n      <string>R.half</string>\n      <string>S.half</string>\n      <string>T.half</string>\n      <string>U.half</string>\n      <string>V.half</string>\n      <string>X.half</string>\n      <string>Y.half</string>\n      <string>Asmall</string>\n      <string>Gsmall</string>\n      <string>Ismall</string>\n      <string>Lsmall</string>\n      <string>a</string>\n      <string>aacute</string>\n      <string>abreve</string>\n      <string>abreveacute</string>\n      <string>abrevedotbelow</string>\n      <string>abrevegrave</string>\n      <string>abrevehookabove</string>\n      <string>abrevetilde</string>\n      <string>acaron</string>\n      <string>acircumflex</string>\n      <string>acircumflexacute</string>\n      <string>acircumflexdotbelow</string>\n      <string>acircumflexgrave</string>\n      <string>acircumflexhookabove</string>\n      <string>acircumflextilde</string>\n      <string>adieresis</string>\n      <string>adotbelow</string>\n      <string>agrave</string>\n      <string>ahookabove</string>\n      <string>alpha-latin</string>\n      <string>amacron</string>\n      <string>aogonek</string>\n      <string>aring</string>\n      <string>aringacute</string>\n      <string>atilde</string>\n      <string>ae</string>\n      <string>aeacute</string>\n      <string>b</string>\n      <string>c</string>\n      <string>cacute</string>\n      <string>ccaron</string>\n      <string>ccedilla</string>\n      <string>ccircumflex</string>\n      <string>cdotaccent</string>\n      <string>d</string>\n      <string>eth</string>\n      <string>dcaron</string>\n      <string>dcroat</string>\n      <string>dtail</string>\n      <string>e</string>\n      <string>eacute</string>\n      <string>ebreve</string>\n      <string>ecaron</string>\n      <string>ecircumflex</string>\n      <string>ecircumflexacute</string>\n      <string>ecircumflexdotbelow</string>\n      <string>ecircumflexgrave</string>\n      <string>ecircumflexhookabove</string>\n      <string>ecircumflextilde</string>\n      <string>edieresis</string>\n      <string>edotaccent</string>\n      <string>edotbelow</string>\n      <string>egrave</string>\n      <string>ehookabove</string>\n      <string>emacron</string>\n      <string>eogonek</string>\n      <string>eopen</string>\n      <string>esh</string>\n      <string>etilde</string>\n      <string>eturned</string>\n      <string>schwa</string>\n      <string>ezh</string>\n      <string>f</string>\n      <string>g</string>\n      <string>gamma-latin</string>\n      <string>gbreve</string>\n      <string>gcaron</string>\n      <string>gcircumflex</string>\n      <string>gcommaaccent</string>\n      <string>gdotaccent</string>\n      <string>glottalstop</string>\n      <string>glottalstopreversed</string>\n      <string>gstroke</string>\n      <string>h</string>\n      <string>hbar</string>\n      <string>hcaron</string>\n      <string>hcircumflex</string>\n      <string>hdotbelow</string>\n      <string>i</string>\n      <string>idotless</string>\n      <string>iacute</string>\n      <string>ibreve</string>\n      <string>icircumflex</string>\n      <string>idieresis</string>\n      <string>idotbelow</string>\n      <string>igrave</string>\n      <string>ihookabove</string>\n      <string>ij</string>\n      <string>ij_acute</string>\n      <string>imacron</string>\n      <string>iogonek</string>\n      <string>iota-latin</string>\n      <string>itilde</string>\n      <string>j</string>\n      <string>jdotless</string>\n      <string>jacute</string>\n      <string>jcaron</string>\n      <string>jcircumflex</string>\n      <string>k</string>\n      <string>kcommaaccent</string>\n      <string>kdotbelow</string>\n      <string>kgreenlandic</string>\n      <string>klinebelow</string>\n      <string>l</string>\n      <string>lacute</string>\n      <string>lambdastroke</string>\n      <string>lbar</string>\n      <string>lbelt</string>\n      <string>lcaron</string>\n      <string>lcommaaccent</string>\n      <string>ldot</string>\n      <string>ldotbelow</string>\n      <string>llinebelow</string>\n      <string>lmiddletilde</string>\n      <string>lslash</string>\n      <string>m</string>\n      <string>n</string>\n      <string>nacute</string>\n      <string>napostrophe</string>\n      <string>ncaron</string>\n      <string>ncommaaccent</string>\n      <string>eng</string>\n      <string>nhookleft</string>\n      <string>nlinebelow</string>\n      <string>ntilde</string>\n      <string>o</string>\n      <string>oacute</string>\n      <string>obreve</string>\n      <string>ocircumflex</string>\n      <string>ocircumflexacute</string>\n      <string>ocircumflexdotbelow</string>\n      <string>ocircumflexgrave</string>\n      <string>ocircumflexhookabove</string>\n      <string>ocircumflextilde</string>\n      <string>odieresis</string>\n      <string>odotbelow</string>\n      <string>ograve</string>\n      <string>ohookabove</string>\n      <string>ohorn</string>\n      <string>ohornacute</string>\n      <string>ohorndotbelow</string>\n      <string>ohorngrave</string>\n      <string>ohornhookabove</string>\n      <string>ohorntilde</string>\n      <string>ohungarumlaut</string>\n      <string>omacron</string>\n      <string>omacronacute</string>\n      <string>omacrongrave</string>\n      <string>oogonek</string>\n      <string>oopen</string>\n      <string>oslash</string>\n      <string>oslashacute</string>\n      <string>otilde</string>\n      <string>oe</string>\n      <string>p</string>\n      <string>thorn</string>\n      <string>q</string>\n      <string>r</string>\n      <string>racute</string>\n      <string>rcaron</string>\n      <string>rcommaaccent</string>\n      <string>rdotbelow</string>\n      <string>s</string>\n      <string>sacute</string>\n      <string>scaron</string>\n      <string>scedilla</string>\n      <string>scircumflex</string>\n      <string>scommaaccent</string>\n      <string>sdotbelow</string>\n      <string>germandbls</string>\n      <string>longs</string>\n      <string>t</string>\n      <string>tbar</string>\n      <string>tcaron</string>\n      <string>tcedilla</string>\n      <string>tcommaaccent</string>\n      <string>tesh</string>\n      <string>u</string>\n      <string>uacute</string>\n      <string>ubreve</string>\n      <string>ucircumflex</string>\n      <string>udieresis</string>\n      <string>udotbelow</string>\n      <string>ugrave</string>\n      <string>uhookabove</string>\n      <string>uhorn</string>\n      <string>uhornacute</string>\n      <string>uhorndotbelow</string>\n      <string>uhorngrave</string>\n      <string>uhornhookabove</string>\n      <string>uhorntilde</string>\n      <string>uhungarumlaut</string>\n      <string>umacron</string>\n      <string>uogonek</string>\n      <string>upsilon-latin</string>\n      <string>uring</string>\n      <string>utilde</string>\n      <string>v</string>\n      <string>vhook</string>\n      <string>vturned</string>\n      <string>w</string>\n      <string>wacute</string>\n      <string>wcircumflex</string>\n      <string>wdieresis</string>\n      <string>wgrave</string>\n      <string>x</string>\n      <string>y</string>\n      <string>yacute</string>\n      <string>ycircumflex</string>\n      <string>ydieresis</string>\n      <string>ydotbelow</string>\n      <string>ygrave</string>\n      <string>yhookabove</string>\n      <string>ymacron</string>\n      <string>ytilde</string>\n      <string>z</string>\n      <string>zacute</string>\n      <string>zcaron</string>\n      <string>zdotaccent</string>\n      <string>dcaron.alt</string>\n      <string>cacute.loclPLK</string>\n      <string>nacute.loclPLK</string>\n      <string>oacute.loclPLK</string>\n      <string>sacute.loclPLK</string>\n      <string>zacute.loclPLK</string>\n      <string>x.multiply</string>\n      <string>fi</string>\n      <string>fl</string>\n      <string>w_w_w.liga</string>\n      <string>ordfeminine</string>\n      <string>ordmasculine</string>\n      <string>nmod</string>\n      <string>wmod</string>\n      <string>ymod</string>\n      <string>A-cy</string>\n      <string>Be-cy</string>\n      <string>Ve-cy</string>\n      <string>Ge-cy</string>\n      <string>Gje-cy</string>\n      <string>Gheupturn-cy</string>\n      <string>De-cy</string>\n      <string>Ie-cy</string>\n      <string>Iegrave-cy</string>\n      <string>Io-cy</string>\n      <string>Zhe-cy</string>\n      <string>Ze-cy</string>\n      <string>Ii-cy</string>\n      <string>Iishort-cy</string>\n      <string>Iigrave-cy</string>\n      <string>Ka-cy</string>\n      <string>Kje-cy</string>\n      <string>El-cy</string>\n      <string>Em-cy</string>\n      <string>En-cy</string>\n      <string>O-cy</string>\n      <string>Pe-cy</string>\n      <string>Er-cy</string>\n      <string>Es-cy</string>\n      <string>Te-cy</string>\n      <string>U-cy</string>\n      <string>Ushort-cy</string>\n      <string>Ef-cy</string>\n      <string>Ha-cy</string>\n      <string>Che-cy</string>\n      <string>Tse-cy</string>\n      <string>Sha-cy</string>\n      <string>Shcha-cy</string>\n      <string>Dzhe-cy</string>\n      <string>Softsign-cy</string>\n      <string>Hardsign-cy</string>\n      <string>Yeru-cy</string>\n      <string>Lje-cy</string>\n      <string>Nje-cy</string>\n      <string>Dze-cy</string>\n      <string>E-cy</string>\n      <string>Ereversed-cy</string>\n      <string>I-cy</string>\n      <string>Yi-cy</string>\n      <string>Je-cy</string>\n      <string>Tshe-cy</string>\n      <string>Iu-cy</string>\n      <string>Ia-cy</string>\n      <string>Dje-cy</string>\n      <string>Ghestroke-cy</string>\n      <string>Zhedescender-cy</string>\n      <string>Kadescender-cy</string>\n      <string>Endescender-cy</string>\n      <string>Ustraight-cy</string>\n      <string>Ustraightstroke-cy</string>\n      <string>Hadescender-cy</string>\n      <string>Chedescender-cy</string>\n      <string>Shha-cy</string>\n      <string>Palochka-cy</string>\n      <string>Schwa-cy</string>\n      <string>Imacron-cy</string>\n      <string>Obarred-cy</string>\n      <string>Umacron-cy</string>\n      <string>De-cy.loclBGR</string>\n      <string>El-cy.loclBGR</string>\n      <string>Ef-cy.loclBGR</string>\n      <string>a-cy</string>\n      <string>be-cy</string>\n      <string>ve-cy</string>\n      <string>ge-cy</string>\n      <string>gje-cy</string>\n      <string>gheupturn-cy</string>\n      <string>de-cy</string>\n      <string>ie-cy</string>\n      <string>iegrave-cy</string>\n      <string>io-cy</string>\n      <string>zhe-cy</string>\n      <string>ze-cy</string>\n      <string>ii-cy</string>\n      <string>iishort-cy</string>\n      <string>iigrave-cy</string>\n      <string>ka-cy</string>\n      <string>kje-cy</string>\n      <string>el-cy</string>\n      <string>em-cy</string>\n      <string>en-cy</string>\n      <string>o-cy</string>\n      <string>pe-cy</string>\n      <string>er-cy</string>\n      <string>es-cy</string>\n      <string>te-cy</string>\n      <string>u-cy</string>\n      <string>ushort-cy</string>\n      <string>ef-cy</string>\n      <string>ha-cy</string>\n      <string>che-cy</string>\n      <string>tse-cy</string>\n      <string>sha-cy</string>\n      <string>shcha-cy</string>\n      <string>dzhe-cy</string>\n      <string>softsign-cy</string>\n      <string>hardsign-cy</string>\n      <string>yeru-cy</string>\n      <string>lje-cy</string>\n      <string>nje-cy</string>\n      <string>dze-cy</string>\n      <string>e-cy</string>\n      <string>ereversed-cy</string>\n      <string>i-cy</string>\n      <string>yi-cy</string>\n      <string>je-cy</string>\n      <string>tshe-cy</string>\n      <string>iu-cy</string>\n      <string>ia-cy</string>\n      <string>dje-cy</string>\n      <string>ghestroke-cy</string>\n      <string>zhedescender-cy</string>\n      <string>kadescender-cy</string>\n      <string>endescender-cy</string>\n      <string>ustraight-cy</string>\n      <string>ustraightstroke-cy</string>\n      <string>hadescender-cy</string>\n      <string>chedescender-cy</string>\n      <string>shha-cy</string>\n      <string>palochka-cy</string>\n      <string>schwa-cy</string>\n      <string>imacron-cy</string>\n      <string>obarred-cy</string>\n      <string>umacron-cy</string>\n      <string>ve-cy.loclBGR</string>\n      <string>ge-cy.loclBGR</string>\n      <string>de-cy.loclBGR</string>\n      <string>zhe-cy.loclBGR</string>\n      <string>ze-cy.loclBGR</string>\n      <string>ii-cy.loclBGR</string>\n      <string>iishort-cy.loclBGR</string>\n      <string>iigrave-cy.loclBGR</string>\n      <string>ka-cy.loclBGR</string>\n      <string>el-cy.loclBGR</string>\n      <string>pe-cy.loclBGR</string>\n      <string>te-cy.loclBGR</string>\n      <string>ef-cy.loclBGR</string>\n      <string>tse-cy.loclBGR</string>\n      <string>sha-cy.loclBGR</string>\n      <string>shcha-cy.loclBGR</string>\n      <string>softsign-cy.loclBGR</string>\n      <string>hardsign-cy.loclBGR</string>\n      <string>iu-cy.loclBGR</string>\n      <string>be-cy.loclSRB</string>\n      <string>Alpha</string>\n      <string>Beta</string>\n      <string>Gamma</string>\n      <string>Delta</string>\n      <string>Epsilon</string>\n      <string>Zeta</string>\n      <string>Eta</string>\n      <string>Theta</string>\n      <string>Iota</string>\n      <string>Kappa</string>\n      <string>Lambda</string>\n      <string>Mu</string>\n      <string>Nu</string>\n      <string>Xi</string>\n      <string>Omicron</string>\n      <string>Pi</string>\n      <string>Rho</string>\n      <string>Sigma</string>\n      <string>Tau</string>\n      <string>Upsilon</string>\n      <string>Phi</string>\n      <string>Chi</string>\n      <string>Psi</string>\n      <string>Omega</string>\n      <string>Alphatonos</string>\n      <string>Epsilontonos</string>\n      <string>Etatonos</string>\n      <string>Iotatonos</string>\n      <string>Omicrontonos</string>\n      <string>Upsilontonos</string>\n      <string>Omegatonos</string>\n      <string>Iotadieresis</string>\n      <string>Upsilondieresis</string>\n      <string>KaiSymbol</string>\n      <string>alpha</string>\n      <string>beta</string>\n      <string>gamma</string>\n      <string>delta</string>\n      <string>epsilon</string>\n      <string>zeta</string>\n      <string>eta</string>\n      <string>theta</string>\n      <string>iota</string>\n      <string>kappa</string>\n      <string>lambda</string>\n      <string>mu</string>\n      <string>nu</string>\n      <string>xi</string>\n      <string>omicron</string>\n      <string>pi</string>\n      <string>rho</string>\n      <string>sigmafinal</string>\n      <string>sigma</string>\n      <string>tau</string>\n      <string>upsilon</string>\n      <string>phi</string>\n      <string>chi</string>\n      <string>psi</string>\n      <string>omega</string>\n      <string>iotatonos</string>\n      <string>iotadieresis</string>\n      <string>iotadieresistonos</string>\n      <string>upsilontonos</string>\n      <string>upsilondieresis</string>\n      <string>upsilondieresistonos</string>\n      <string>omicrontonos</string>\n      <string>omegatonos</string>\n      <string>alphatonos</string>\n      <string>epsilontonos</string>\n      <string>etatonos</string>\n      <string>kaiSymbol</string>\n      <string>hamza-ar</string>\n      <string>highhamza-ar</string>\n      <string>alef-ar</string>\n      <string>alef-ar.fina</string>\n      <string>alef-ar.fina.alt</string>\n      <string>alef-ar.fina.rlig</string>\n      <string>alef-ar.short</string>\n      <string>alef-ar.fina.short</string>\n      <string>alef-ar.fina.short.alt</string>\n      <string>alef-ar.fina.short.rlig</string>\n      <string>alefHamzaabove-ar</string>\n      <string>alefHamzaabove-ar.fina</string>\n      <string>alefHamzaabove-ar.fina.alt</string>\n      <string>alefHamzaabove-ar.fina.rlig</string>\n      <string>alefHamzabelow-ar</string>\n      <string>alefHamzabelow-ar.fina</string>\n      <string>alefHamzabelow-ar.fina.alt</string>\n      <string>alefHamzabelow-ar.fina.rlig</string>\n      <string>alefWavyhamzaabove-ar</string>\n      <string>alefWavyhamzaabove-ar.fina</string>\n      <string>alefWavyhamzaabove-ar.fina.alt</string>\n      <string>alefWavyhamzaabove-ar.fina.rlig</string>\n      <string>alefWavyhamzabelow-ar</string>\n      <string>alefWavyhamzabelow-ar.fina</string>\n      <string>alefWavyhamzabelow-ar.fina.alt</string>\n      <string>alefWavyhamzabelow-ar.fina.rlig</string>\n      <string>alefMadda-ar</string>\n      <string>alefMadda-ar.fina</string>\n      <string>alefMadda-ar.fina.alt</string>\n      <string>alefMadda-ar.fina.rlig</string>\n      <string>alefWasla-ar</string>\n      <string>alefWasla-ar.fina</string>\n      <string>alefWasla-ar.fina.alt</string>\n      <string>alefWasla-ar.fina.rlig</string>\n      <string>alefFathatan-ar</string>\n      <string>alefFathatan-ar.fina</string>\n      <string>alefFathatan-ar.fina.rlig</string>\n      <string>highhamzaAlef-ar</string>\n      <string>highhamzaAlef-ar.fina</string>\n      <string>highhamzaAlef-ar.fina.rlig</string>\n      <string>behDotless-ar</string>\n      <string>behDotless-ar.alt</string>\n      <string>behDotless-ar.fina</string>\n      <string>behDotless-ar.fina.alt</string>\n      <string>behDotless-ar.medi</string>\n      <string>behDotless-ar.init</string>\n      <string>behDotless-ar.init.alt</string>\n      <string>beh-ar</string>\n      <string>beh-ar.alt</string>\n      <string>beh-ar.fina</string>\n      <string>beh-ar.fina.alt</string>\n      <string>beh-ar.medi</string>\n      <string>beh-ar.init</string>\n      <string>beh-ar.init.alt</string>\n      <string>peh-ar</string>\n      <string>peh-ar.fina</string>\n      <string>peh-ar.fina.alt</string>\n      <string>peh-ar.medi</string>\n      <string>peh-ar.init</string>\n      <string>peh-ar.init.alt</string>\n      <string>peh-ar.alt</string>\n      <string>beeh-ar</string>\n      <string>beeh-ar.alt</string>\n      <string>beeh-ar.fina</string>\n      <string>beeh-ar.fina.alt</string>\n      <string>beeh-ar.medi</string>\n      <string>beeh-ar.init</string>\n      <string>beeh-ar.init.alt</string>\n      <string>beheh-ar</string>\n      <string>beheh-ar.alt</string>\n      <string>beheh-ar.fina</string>\n      <string>beheh-ar.fina.alt</string>\n      <string>beheh-ar.medi</string>\n      <string>beheh-ar.init</string>\n      <string>beheh-ar.init.alt</string>\n      <string>alefMaksura-ar.medi</string>\n      <string>alefMaksura-ar.init</string>\n      <string>alefMaksura-ar.init.alt</string>\n      <string>teh-ar</string>\n      <string>teh-ar.alt</string>\n      <string>teh-ar.fina</string>\n      <string>teh-ar.fina.alt</string>\n      <string>teh-ar.medi</string>\n      <string>teh-ar.init</string>\n      <string>teh-ar.init.alt</string>\n      <string>tehRing-ar</string>\n      <string>tehRing-ar.fina</string>\n      <string>tehRing-ar.fina.alt</string>\n      <string>tehRing-ar.medi</string>\n      <string>tehRing-ar.init</string>\n      <string>tehRing-ar.init.alt</string>\n      <string>tehRing-ar.alt</string>\n      <string>tehThreedotsdown-ar</string>\n      <string>tehThreedotsdown-ar.fina</string>\n      <string>tehThreedotsdown-ar.fina.alt</string>\n      <string>tehThreedotsdown-ar.medi</string>\n      <string>tehThreedotsdown-ar.init</string>\n      <string>tehThreedotsdown-ar.init.alt</string>\n      <string>tehThreedotsdown-ar.alt</string>\n      <string>theh-ar</string>\n      <string>theh-ar.alt</string>\n      <string>theh-ar.fina</string>\n      <string>theh-ar.fina.alt</string>\n      <string>theh-ar.medi</string>\n      <string>theh-ar.init</string>\n      <string>theh-ar.init.alt</string>\n      <string>tteh-ar</string>\n      <string>tteh-ar.alt</string>\n      <string>tteh-ar.fina</string>\n      <string>tteh-ar.fina.alt</string>\n      <string>tteh-ar.medi</string>\n      <string>tteh-ar.init</string>\n      <string>tteh-ar.init.alt</string>\n      <string>tteheh-ar</string>\n      <string>tteheh-ar.alt</string>\n      <string>tteheh-ar.fina</string>\n      <string>tteheh-ar.fina.alt</string>\n      <string>tteheh-ar.medi</string>\n      <string>tteheh-ar.init</string>\n      <string>tteheh-ar.init.alt</string>\n      <string>teheh-ar</string>\n      <string>teheh-ar.alt</string>\n      <string>teheh-ar.fina</string>\n      <string>teheh-ar.fina.alt</string>\n      <string>teheh-ar.medi</string>\n      <string>teheh-ar.init</string>\n      <string>teheh-ar.init.alt</string>\n      <string>behThreedotshorizontalbelow-ar</string>\n      <string>behThreedotshorizontalbelow-ar.fina</string>\n      <string>behThreedotshorizontalbelow-ar.fina.alt</string>\n      <string>behThreedotshorizontalbelow-ar.medi</string>\n      <string>behThreedotshorizontalbelow-ar.init</string>\n      <string>behThreedotshorizontalbelow-ar.init.alt</string>\n      <string>behThreedotshorizontalbelow-ar.alt</string>\n      <string>behThreedotsupabove-ar</string>\n      <string>behThreedotsupabove-ar.fina</string>\n      <string>behThreedotsupabove-ar.fina.alt</string>\n      <string>behThreedotsupabove-ar.medi</string>\n      <string>behThreedotsupabove-ar.init</string>\n      <string>behThreedotsupabove-ar.init.alt</string>\n      <string>behThreedotsupabove-ar.alt</string>\n      <string>behThreedotsupbelow-ar</string>\n      <string>behThreedotsupbelow-ar.fina</string>\n      <string>behThreedotsupbelow-ar.fina.alt</string>\n      <string>behThreedotsupbelow-ar.medi</string>\n      <string>behThreedotsupbelow-ar.init</string>\n      <string>behThreedotsupbelow-ar.init.alt</string>\n      <string>behThreedotsupbelow-ar.alt</string>\n      <string>tehThreedotsupbelow-ar</string>\n      <string>tehThreedotsupbelow-ar.fina</string>\n      <string>tehThreedotsupbelow-ar.fina.alt</string>\n      <string>tehThreedotsupbelow-ar.medi</string>\n      <string>tehThreedotsupbelow-ar.init</string>\n      <string>tehThreedotsupbelow-ar.init.alt</string>\n      <string>tehThreedotsupbelow-ar.alt</string>\n      <string>behTwodotsbelowDotabove-ar</string>\n      <string>behTwodotsbelowDotabove-ar.fina</string>\n      <string>behTwodotsbelowDotabove-ar.fina.alt</string>\n      <string>behTwodotsbelowDotabove-ar.medi</string>\n      <string>behTwodotsbelowDotabove-ar.init</string>\n      <string>behTwodotsbelowDotabove-ar.init.alt</string>\n      <string>behTwodotsbelowDotabove-ar.alt</string>\n      <string>behVinvertedbelow-ar</string>\n      <string>behVinvertedbelow-ar.fina</string>\n      <string>behVinvertedbelow-ar.fina.alt</string>\n      <string>behVinvertedbelow-ar.medi</string>\n      <string>behVinvertedbelow-ar.init</string>\n      <string>behVinvertedbelow-ar.init.alt</string>\n      <string>behVinvertedbelow-ar.alt</string>\n      <string>behVabove-ar</string>\n      <string>behVabove-ar.fina</string>\n      <string>behVabove-ar.fina.alt</string>\n      <string>behVabove-ar.medi</string>\n      <string>behVabove-ar.init</string>\n      <string>behVabove-ar.init.alt</string>\n      <string>behVabove-ar.alt</string>\n      <string>behVbelow-ar</string>\n      <string>behVbelow-ar.fina</string>\n      <string>behVbelow-ar.fina.alt</string>\n      <string>behVbelow-ar.medi</string>\n      <string>behVbelow-ar.init</string>\n      <string>behVbelow-ar.init.alt</string>\n      <string>behVbelow-ar.alt</string>\n      <string>behhamzaabove-ar</string>\n      <string>behhamzaabove-ar.fina</string>\n      <string>behhamzaabove-ar.fina.alt</string>\n      <string>behhamzaabove-ar.medi</string>\n      <string>behhamzaabove-ar.init</string>\n      <string>behhamzaabove-ar.alt</string>\n      <string>jeem-ar</string>\n      <string>jeem-ar.fina</string>\n      <string>jeem-ar.medi</string>\n      <string>jeem-ar.init</string>\n      <string>tcheh-ar</string>\n      <string>tcheh-ar.fina</string>\n      <string>tcheh-ar.medi</string>\n      <string>tcheh-ar.init</string>\n      <string>tcheheh-ar</string>\n      <string>tcheheh-ar.fina</string>\n      <string>tcheheh-ar.medi</string>\n      <string>tcheheh-ar.init</string>\n      <string>tchehDotabove-ar</string>\n      <string>tchehDotabove-ar.fina</string>\n      <string>tchehDotabove-ar.medi</string>\n      <string>tchehDotabove-ar.init</string>\n      <string>nyeh-ar</string>\n      <string>nyeh-ar.fina</string>\n      <string>nyeh-ar.medi</string>\n      <string>nyeh-ar.init</string>\n      <string>dyeh-ar</string>\n      <string>dyeh-ar.fina</string>\n      <string>dyeh-ar.medi</string>\n      <string>dyeh-ar.init</string>\n      <string>hah-ar</string>\n      <string>hah-ar.fina</string>\n      <string>hah-ar.medi</string>\n      <string>hah-ar.init</string>\n      <string>hahHamzaabove-ar</string>\n      <string>hahHamzaabove-ar.fina</string>\n      <string>hahHamzaabove-ar.medi</string>\n      <string>hahHamzaabove-ar.init</string>\n      <string>hahTwodotsverticalabove-ar</string>\n      <string>hahTwodotsverticalabove-ar.fina</string>\n      <string>hahTwodotsverticalabove-ar.medi</string>\n      <string>hahTwodotsverticalabove-ar.init</string>\n      <string>hahTwodotshorizontalabove-ar</string>\n      <string>hahTwodotshorizontalabove-ar.fina</string>\n      <string>hahTwodotshorizontalabove-ar.medi</string>\n      <string>hahTwodotshorizontalabove-ar.init</string>\n      <string>hahThreedotsabove-ar</string>\n      <string>hahThreedotsabove-ar.fina</string>\n      <string>hahThreedotsabove-ar.medi</string>\n      <string>hahThreedotsabove-ar.init</string>\n      <string>hahThreedotsupbelow-ar</string>\n      <string>hahThreedotsupbelow-ar.fina</string>\n      <string>hahThreedotsupbelow-ar.medi</string>\n      <string>hahThreedotsupbelow-ar.init</string>\n      <string>khah-ar</string>\n      <string>khah-ar.fina</string>\n      <string>khah-ar.medi</string>\n      <string>khah-ar.init</string>\n      <string>hahTahbelow-ar</string>\n      <string>hahTahbelow-ar.fina</string>\n      <string>hahTahbelow-ar.medi</string>\n      <string>hahTahbelow-ar.init</string>\n      <string>hahTahTwodotshorizontalabove-ar</string>\n      <string>hahTahTwodotshorizontalabove-ar.fina</string>\n      <string>hahTahTwodotshorizontalabove-ar.medi</string>\n      <string>hahTahTwodotshorizontalabove-ar.init</string>\n      <string>hahFourbelow-ar</string>\n      <string>hahFourbelow-ar.fina</string>\n      <string>hahFourbelow-ar.medi</string>\n      <string>hahFourbelow-ar.init</string>\n      <string>jeemTwodotsabove-ar</string>\n      <string>jeemTwodotsabove-ar.fina</string>\n      <string>jeemTwodotsabove-ar.medi</string>\n      <string>jeemTwodotsabove-ar.init</string>\n      <string>dal-ar</string>\n      <string>dal-ar.fina</string>\n      <string>thal-ar</string>\n      <string>thal-ar.fina</string>\n      <string>thalAlefabove-ar</string>\n      <string>thalAlefabove-ar.fina</string>\n      <string>ddal-ar</string>\n      <string>ddal-ar.fina</string>\n      <string>dahal-ar</string>\n      <string>dahal-ar.fina</string>\n      <string>ddahal-ar</string>\n      <string>ddahal-ar.fina</string>\n      <string>dalRing-ar</string>\n      <string>dalRing-ar.fina</string>\n      <string>dalDotbelow-ar</string>\n      <string>dalDotbelow-ar.fina</string>\n      <string>dalDotbelowTah-ar</string>\n      <string>dalDotbelowTah-ar.fina</string>\n      <string>dul-ar</string>\n      <string>dul-ar.fina</string>\n      <string>dalThreedotsdown-ar</string>\n      <string>dalThreedotsdown-ar.fina</string>\n      <string>dalFourdots-ar</string>\n      <string>dalFourdots-ar.fina</string>\n      <string>dalVinvertedabove-ar</string>\n      <string>dalVinvertedabove-ar.fina</string>\n      <string>dalTwodotsverticalbelowTahabove-ar</string>\n      <string>dalVinvertedbelow-ar</string>\n      <string>dalVinvertedbelow-ar.fina</string>\n      <string>dalThreedotsbelow-ar</string>\n      <string>dalThreedotsbelow-ar.fina</string>\n      <string>reh-ar</string>\n      <string>reh-ar.fina</string>\n      <string>zain-ar</string>\n      <string>zain-ar.fina</string>\n      <string>zainVInvertedabove-ar</string>\n      <string>uni08B3</string>\n      <string>uni08B3.fina</string>\n      <string>uni08B3.medi</string>\n      <string>uni08B3.init</string>\n      <string>uni08B4</string>\n      <string>uni08B4.fina</string>\n      <string>uni08B4.medi</string>\n      <string>uni08B4.init</string>\n      <string>rreh-ar</string>\n      <string>rreh-ar.fina</string>\n      <string>rehv-ar</string>\n      <string>rehv-ar.fina</string>\n      <string>rehRing-ar</string>\n      <string>rehRing-ar.fina</string>\n      <string>rehDotbelow-ar</string>\n      <string>rehDotbelow-ar.fina</string>\n      <string>rehVbelow-ar</string>\n      <string>rehVbelow-ar.fina</string>\n      <string>rehDotbelowdotabove-ar</string>\n      <string>rehDotbelowdotabove-ar.fina</string>\n      <string>rehTwodots-ar</string>\n      <string>rehTwodots-ar.fina</string>\n      <string>jeh-ar</string>\n      <string>jeh-ar.fina</string>\n      <string>rehFourdots-ar</string>\n      <string>rehFourdots-ar.fina</string>\n      <string>rehVinvertedabove-ar</string>\n      <string>rehVinvertedabove-ar.fina</string>\n      <string>rehStroke-ar</string>\n      <string>rehStroke-ar.fina</string>\n      <string>rehTwodotsverticalabove-ar</string>\n      <string>rehTwodotsverticalabove-ar.fina</string>\n      <string>rehHamzaabove-ar</string>\n      <string>rehHamzaabove-ar.fina</string>\n      <string>rehTwodotshorizontalaboveTahabove-ar</string>\n      <string>rehTwodotshorizontalaboveTahabove-ar.fina</string>\n      <string>rehAlefabove-ar</string>\n      <string>rehAlefabove-ar.fina</string>\n      <string>rehLoop-ar</string>\n      <string>rehLoop-ar.fina</string>\n      <string>seen-ar</string>\n      <string>seen-ar.alt</string>\n      <string>seen-ar.fina</string>\n      <string>seen-ar.fina.alt</string>\n      <string>seen-ar.medi</string>\n      <string>seen-ar.init</string>\n      <string>seenDotbelowDotabove-ar</string>\n      <string>seenDotbelowDotabove-ar.fina</string>\n      <string>seenDotbelowDotabove-ar.fina.alt</string>\n      <string>seenDotbelowDotabove-ar.medi</string>\n      <string>seenDotbelowDotabove-ar.init</string>\n      <string>seenDotbelowDotabove-ar.alt</string>\n      <string>seenThreedotsbelow-ar</string>\n      <string>seenThreedotsbelow-ar.fina</string>\n      <string>seenThreedotsbelow-ar.fina.alt</string>\n      <string>seenThreedotsbelow-ar.medi</string>\n      <string>seenThreedotsbelow-ar.init</string>\n      <string>seenThreedotsbelow-ar.alt</string>\n      <string>sheen-ar</string>\n      <string>sheen-ar.alt</string>\n      <string>sheen-ar.fina</string>\n      <string>sheen-ar.fina.alt</string>\n      <string>sheen-ar.medi</string>\n      <string>sheen-ar.init</string>\n      <string>sheenDotbelow-ar</string>\n      <string>sheenDotbelow-ar.fina</string>\n      <string>sheenDotbelow-ar.fina.alt</string>\n      <string>sheenDotbelow-ar.medi</string>\n      <string>sheenDotbelow-ar.init</string>\n      <string>sheenDotbelow-ar.alt</string>\n      <string>seenThreedotsbelowthreedots-ar</string>\n      <string>sad-ar</string>\n      <string>sad-ar.alt</string>\n      <string>sad-ar.fina</string>\n      <string>sad-ar.fina.alt</string>\n      <string>sad-ar.medi</string>\n      <string>sad-ar.init</string>\n      <string>sadTwodotsbelow-ar</string>\n      <string>sadTwodotsbelow-ar.fina</string>\n      <string>sadTwodotsbelow-ar.fina.alt</string>\n      <string>sadTwodotsbelow-ar.medi</string>\n      <string>sadTwodotsbelow-ar.init</string>\n      <string>sadTwodotsbelow-ar.alt</string>\n      <string>sadThreedots-ar</string>\n      <string>sadThreedots-ar.fina</string>\n      <string>sadThreedots-ar.fina.alt</string>\n      <string>sadThreedots-ar.medi</string>\n      <string>sadThreedots-ar.init</string>\n      <string>sadThreedots-ar.alt</string>\n      <string>sadThreedotsbelow-ar</string>\n      <string>sadThreedotsbelow-ar.fina</string>\n      <string>sadThreedotsbelow-ar.fina.alt</string>\n      <string>sadThreedotsbelow-ar.medi</string>\n      <string>sadThreedotsbelow-ar.init</string>\n      <string>sadThreedotsbelow-ar.alt</string>\n      <string>dad-ar</string>\n      <string>dad-ar.alt</string>\n      <string>dad-ar.fina</string>\n      <string>dad-ar.fina.alt</string>\n      <string>dad-ar.medi</string>\n      <string>dad-ar.init</string>\n      <string>dadDotbelow-ar</string>\n      <string>dadDotbelow-ar.fina</string>\n      <string>dadDotbelow-ar.fina.alt</string>\n      <string>dadDotbelow-ar.medi</string>\n      <string>dadDotbelow-ar.init</string>\n      <string>dadDotbelow-ar.alt</string>\n      <string>tah-ar</string>\n      <string>tah-ar.fina</string>\n      <string>tah-ar.medi</string>\n      <string>tah-ar.init</string>\n      <string>tahThreedots-ar</string>\n      <string>tahThreedots-ar.fina</string>\n      <string>tahThreedots-ar.medi</string>\n      <string>tahThreedots-ar.init</string>\n      <string>zah-ar</string>\n      <string>zah-ar.fina</string>\n      <string>zah-ar.medi</string>\n      <string>zah-ar.init</string>\n      <string>tahTwodotsabove-ar</string>\n      <string>tahTwodotsabove-ar.fina</string>\n      <string>tahTwodotsabove-ar.medi</string>\n      <string>tahTwodotsabove-ar.init</string>\n      <string>ain-ar</string>\n      <string>ain-ar.fina</string>\n      <string>ain-ar.medi</string>\n      <string>ain-ar.init</string>\n      <string>ainThreedots-ar</string>\n      <string>ainThreedots-ar.fina</string>\n      <string>ainThreedots-ar.medi</string>\n      <string>ainThreedots-ar.init</string>\n      <string>ghain-ar</string>\n      <string>ghain-ar.fina</string>\n      <string>ghain-ar.medi</string>\n      <string>ghain-ar.init</string>\n      <string>ghainDotbelow-ar</string>\n      <string>ghainDotbelow-ar.fina</string>\n      <string>ghainDotbelow-ar.medi</string>\n      <string>ghainDotbelow-ar.init</string>\n      <string>feh-ar</string>\n      <string>feh-ar.alt</string>\n      <string>feh-ar.fina</string>\n      <string>feh-ar.fina.alt</string>\n      <string>feh-ar.medi</string>\n      <string>feh-ar.init</string>\n      <string>feh-ar.init.alt</string>\n      <string>veh-ar</string>\n      <string>veh-ar.alt</string>\n      <string>veh-ar.fina</string>\n      <string>veh-ar.fina.alt</string>\n      <string>veh-ar.medi</string>\n      <string>veh-ar.init</string>\n      <string>veh-ar.init.alt</string>\n      <string>fehDotless-ar</string>\n      <string>fehDotless-ar.alt</string>\n      <string>fehDotless-ar.fina</string>\n      <string>fehDotless-ar.fina.alt</string>\n      <string>fehDotless-ar.medi</string>\n      <string>fehDotless-ar.init</string>\n      <string>fehDotless-ar.init.alt</string>\n      <string>fehDotMovedbelow-ar</string>\n      <string>fehDotbelow-ar</string>\n      <string>fehDotbelow-ar.fina</string>\n      <string>fehDotbelow-ar.fina.alt</string>\n      <string>fehDotbelow-ar.medi</string>\n      <string>fehDotbelow-ar.init</string>\n      <string>fehDotbelow-ar.alt</string>\n      <string>fehThreedotsbelow-ar</string>\n      <string>fehThreedotsbelow-ar.fina</string>\n      <string>fehThreedotsbelow-ar.fina.alt</string>\n      <string>fehThreedotsbelow-ar.medi</string>\n      <string>fehThreedotsbelow-ar.init</string>\n      <string>fehThreedotsbelow-ar.alt</string>\n      <string>fehDotbelowThreedotsabove-ar</string>\n      <string>fehDotbelowThreedotsabove-ar.fina</string>\n      <string>fehDotbelowThreedotsabove-ar.fina.alt</string>\n      <string>fehDotbelowThreedotsabove-ar.medi</string>\n      <string>fehDotbelowThreedotsabove-ar.init</string>\n      <string>fehDotbelowThreedotsabove-ar.alt</string>\n      <string>peheh-ar</string>\n      <string>peheh-ar.fina</string>\n      <string>peheh-ar.fina.alt</string>\n      <string>peheh-ar.medi</string>\n      <string>peheh-ar.init</string>\n      <string>peheh-ar.init.alt</string>\n      <string>peheh-ar.alt</string>\n      <string>qafDotless-ar</string>\n      <string>qafDotless-ar.medi</string>\n      <string>qafDotless-ar.init</string>\n      <string>qafDotless-ar.init.alt</string>\n      <string>qafDotless-ar.fina</string>\n      <string>qaf-ar</string>\n      <string>qaf-ar.fina</string>\n      <string>qaf-ar.medi</string>\n      <string>qaf-ar.init</string>\n      <string>qaf-ar.init.alt</string>\n      <string>qafDotabove-ar</string>\n      <string>qafDotabove-ar.fina</string>\n      <string>qafDotabove-ar.medi</string>\n      <string>qafDotabove-ar.init</string>\n      <string>qafDotabove-ar.init.alt</string>\n      <string>qafThreedotsabove-ar</string>\n      <string>qafThreedotsabove-ar.fina</string>\n      <string>qafThreedotsabove-ar.medi</string>\n      <string>qafThreedotsabove-ar.init</string>\n      <string>qafDotbelow-ar</string>\n      <string>qafDotbelow-ar.fina</string>\n      <string>qafDotbelow-ar.medi</string>\n      <string>qafDotbelow-ar.init</string>\n      <string>qafAfrican-ar</string>\n      <string>qafAfrican-ar.fina</string>\n      <string>qafAfrican-ar.medi</string>\n      <string>qafAfrican-ar.init</string>\n      <string>qafAfrican-ar.init.alt</string>\n      <string>kaf-ar</string>\n      <string>kaf-ar.fina</string>\n      <string>kaf-ar.medi</string>\n      <string>kaf-ar.init</string>\n      <string>keheh-ar</string>\n      <string>keheh-ar.fina</string>\n      <string>keheh-ar.medi</string>\n      <string>keheh-ar.init</string>\n      <string>kehehTwodotshorizontalabove-ar</string>\n      <string>kehehTwodotshorizontalabove-ar.fina</string>\n      <string>kehehTwodotshorizontalabove-ar.medi</string>\n      <string>kehehTwodotshorizontalabove-ar.init</string>\n      <string>kehehThreedotsbelow-ar</string>\n      <string>kehehThreedotsbelow-ar.fina</string>\n      <string>kehehThreedotsbelow-ar.medi</string>\n      <string>kehehThreedotsbelow-ar.init</string>\n      <string>kehehDotabove-ar</string>\n      <string>kehehDotabove-ar.fina</string>\n      <string>kehehDotabove-ar.medi</string>\n      <string>kehehDotabove-ar.init</string>\n      <string>kehehThreedotsabove-ar</string>\n      <string>kehehThreedotsabove-ar.fina</string>\n      <string>kehehThreedotsabove-ar.medi</string>\n      <string>kehehThreedotsabove-ar.init</string>\n      <string>kehehThreedotsupbelow-ar</string>\n      <string>kehehThreedotsupbelow-ar.fina</string>\n      <string>kehehThreedotsupbelow-ar.medi</string>\n      <string>kehehThreedotsupbelow-ar.init</string>\n      <string>gaf-ar</string>\n      <string>gaf-ar.fina</string>\n      <string>gaf-ar.medi</string>\n      <string>gaf-ar.init</string>\n      <string>gafRing-ar</string>\n      <string>gafRing-ar.fina</string>\n      <string>gafRing-ar.medi</string>\n      <string>gafRing-ar.init</string>\n      <string>gafThreedots-ar</string>\n      <string>gafThreedots-ar.fina</string>\n      <string>gafThreedots-ar.medi</string>\n      <string>gafThreedots-ar.init</string>\n      <string>kafswash-ar</string>\n      <string>kafswash-ar.fina</string>\n      <string>kafswash-ar.fina.alt</string>\n      <string>kafswash-ar.medi</string>\n      <string>kafswash-ar.medi.alt</string>\n      <string>kafswash-ar.init</string>\n      <string>kafswash-ar.init.alt</string>\n      <string>kafswash-ar.alt</string>\n      <string>kafRing-ar</string>\n      <string>kafRing-ar.fina</string>\n      <string>kafRing-ar.medi</string>\n      <string>kafRing-ar.init</string>\n      <string>kafDotabove-ar</string>\n      <string>kafDotabove-ar.fina</string>\n      <string>kafDotabove-ar.medi</string>\n      <string>kafDotabove-ar.init</string>\n      <string>kafTwodotshorizontalabove-ar</string>\n      <string>kafTwodotshorizontalabove-ar.fina</string>\n      <string>kafTwodotshorizontalabove-ar.medi</string>\n      <string>kafTwodotshorizontalabove-ar.init</string>\n      <string>kafThreedotsbelow-ar</string>\n      <string>kafThreedotsbelow-ar.fina</string>\n      <string>kafThreedotsbelow-ar.medi</string>\n      <string>kafThreedotsbelow-ar.init</string>\n      <string>gafTwodotsbelow-ar</string>\n      <string>gafTwodotsbelow-ar.fina</string>\n      <string>gafTwodotsbelow-ar.medi</string>\n      <string>gafTwodotsbelow-ar.init</string>\n      <string>gafInvertedstroke-ar</string>\n      <string>gafInvertedstroke-ar.fina</string>\n      <string>gafInvertedstroke-ar.medi</string>\n      <string>gafInvertedstroke-ar.init</string>\n      <string>ng-ar</string>\n      <string>ng-ar.fina</string>\n      <string>ng-ar.medi</string>\n      <string>ng-ar.init</string>\n      <string>ngoeh-ar</string>\n      <string>ngoeh-ar.fina</string>\n      <string>ngoeh-ar.medi</string>\n      <string>ngoeh-ar.init</string>\n      <string>gueh-ar</string>\n      <string>gueh-ar.fina</string>\n      <string>gueh-ar.medi</string>\n      <string>gueh-ar.init</string>\n      <string>lam-ar</string>\n      <string>lam-ar.fina</string>\n      <string>lam-ar.medi</string>\n      <string>lam-ar.medi.rlig</string>\n      <string>lam-ar.init</string>\n      <string>lam-ar.init.rlig</string>\n      <string>lamVabove-ar</string>\n      <string>lamVabove-ar.fina</string>\n      <string>lamVabove-ar.medi</string>\n      <string>lamVabove-ar.medi.rlig</string>\n      <string>lamVabove-ar.init</string>\n      <string>lamVabove-ar.init.rlig</string>\n      <string>lamDotabove-ar</string>\n      <string>lamDotabove-ar.fina</string>\n      <string>lamDotabove-ar.medi</string>\n      <string>lamDotabove-ar.medi.rlig</string>\n      <string>lamDotabove-ar.init</string>\n      <string>lamDotabove-ar.init.rlig</string>\n      <string>lamThreedotsabove-ar</string>\n      <string>lamThreedotsabove-ar.fina</string>\n      <string>lamThreedotsabove-ar.medi</string>\n      <string>lamThreedotsabove-ar.medi.rlig</string>\n      <string>lamThreedotsabove-ar.init</string>\n      <string>lamThreedotsabove-ar.init.rlig</string>\n      <string>lamThreedotsbelow-ar</string>\n      <string>lamThreedotsbelow-ar.fina</string>\n      <string>lamThreedotsbelow-ar.medi</string>\n      <string>lamThreedotsbelow-ar.medi.rlig</string>\n      <string>lamThreedotsbelow-ar.init</string>\n      <string>lamThreedotsbelow-ar.init.rlig</string>\n      <string>lamDoublebar-ar</string>\n      <string>lamDoublebar-ar.fina</string>\n      <string>lamDoublebar-ar.medi</string>\n      <string>lamDoublebar-ar.medi.rlig</string>\n      <string>lamDoublebar-ar.init</string>\n      <string>lamDoublebar-ar.init.rlig</string>\n      <string>meem-ar</string>\n      <string>meem-ar.fina</string>\n      <string>meem-ar.medi</string>\n      <string>meem-ar.init</string>\n      <string>meemThreedotsabove-ar</string>\n      <string>meemThreedotsabove-ar.fina</string>\n      <string>meemThreedotsabove-ar.medi</string>\n      <string>meemThreedotsabove-ar.init</string>\n      <string>noon-ar</string>\n      <string>noon-ar.fina</string>\n      <string>noon-ar.medi</string>\n      <string>noon-ar.init</string>\n      <string>noon-ar.init.alt</string>\n      <string>noonDotbelow-ar</string>\n      <string>noonDotbelow-ar.fina</string>\n      <string>noonDotbelow-ar.medi</string>\n      <string>noonDotbelow-ar.init</string>\n      <string>noonDotbelow-ar.init.alt</string>\n      <string>noonghunna-ar</string>\n      <string>noonghunna-ar.medi</string>\n      <string>noonghunna-ar.init</string>\n      <string>noonghunna-ar.init.alt</string>\n      <string>noonghunna-ar.fina</string>\n      <string>rnoon-ar</string>\n      <string>rnoon-ar.fina</string>\n      <string>rnoon-ar.medi</string>\n      <string>rnoon-ar.init</string>\n      <string>rnoon-ar.init.alt</string>\n      <string>noonRing-ar</string>\n      <string>noonRing-ar.fina</string>\n      <string>noonRing-ar.medi</string>\n      <string>noonRing-ar.init</string>\n      <string>noonRing-ar.init.alt</string>\n      <string>noonThreedotsabove-ar</string>\n      <string>noonThreedotsabove-ar.fina</string>\n      <string>noonThreedotsabove-ar.medi</string>\n      <string>noonThreedotsabove-ar.init</string>\n      <string>noonThreedotsabove-ar.init.alt</string>\n      <string>noonAfrican-ar</string>\n      <string>noonAfrican-ar.fina</string>\n      <string>noonAfrican-ar.medi</string>\n      <string>noonAfrican-ar.init</string>\n      <string>noonAfrican-ar.init.alt</string>\n      <string>heh-ar</string>\n      <string>heh-ar.fina</string>\n      <string>heh-ar.medi</string>\n      <string>heh-ar.init</string>\n      <string>hehHamzaabove-ar</string>\n      <string>hehHamzaabove-ar.fina</string>\n      <string>hehgoal-ar</string>\n      <string>hehgoal-ar.fina</string>\n      <string>hehgoal-ar.medi</string>\n      <string>hehgoal-ar.init</string>\n      <string>hehgoal-ar.init.alt</string>\n      <string>hehgoalHamzaabove-ar</string>\n      <string>hehgoalHamzaabove-ar.fina</string>\n      <string>hehgoalHamzaabove-ar.medi</string>\n      <string>hehgoalHamzaabove-ar.init</string>\n      <string>hehgoalHamzaabove-ar.init.alt</string>\n      <string>hehDoachashmee-ar</string>\n      <string>hehDoachashmee-ar.fina</string>\n      <string>hehDoachashmee-ar.medi</string>\n      <string>hehDoachashmee-ar.init</string>\n      <string>hehVinvertedabove-ar</string>\n      <string>hehVinvertedabove-ar.fina</string>\n      <string>hehVinvertedabove-ar.medi</string>\n      <string>hehVinvertedabove-ar.init</string>\n      <string>hehAlefabove-ar.init</string>\n      <string>hehAlefabove-ar.init.fina</string>\n      <string>tehMarbuta-ar</string>\n      <string>tehMarbuta-ar.fina</string>\n      <string>tehMarbutagoal-ar</string>\n      <string>tehMarbutagoal-ar.fina</string>\n      <string>waw-ar</string>\n      <string>waw-ar.fina</string>\n      <string>wawring-ar</string>\n      <string>wawring-ar.fina</string>\n      <string>wawTwodots-ar</string>\n      <string>wawTwodots-ar.fina</string>\n      <string>wawDotabove-ar</string>\n      <string>wawDotabove-ar.fina</string>\n      <string>wawHamzaabove-ar</string>\n      <string>wawHamzaabove-ar.fina</string>\n      <string>wawTwoabove-ar</string>\n      <string>wawTwoabove-ar.fina</string>\n      <string>wawThreeAbove-ar</string>\n      <string>wawThreeAbove-ar.fina</string>\n      <string>wawDotcenter-ar</string>\n      <string>wawDotcenter-ar.fina</string>\n      <string>wawStraight-ar</string>\n      <string>kirghizoe-ar</string>\n      <string>kirghizoe-ar.fina</string>\n      <string>oe-ar</string>\n      <string>oe-ar.fina</string>\n      <string>u-ar</string>\n      <string>u-ar.fina</string>\n      <string>yu-ar</string>\n      <string>yu-ar.fina</string>\n      <string>kirghizyu-ar</string>\n      <string>kirghizyu-ar.fina</string>\n      <string>ve-ar</string>\n      <string>ve-ar.fina</string>\n      <string>alefMaksura-ar</string>\n      <string>alefMaksura-ar.fina</string>\n      <string>alefMaksura-ar.fina.alt</string>\n      <string>alefMaksuraAlefabove-ar</string>\n      <string>alefMaksuraAlefabove-ar.fina</string>\n      <string>alefMaksuraAlefabove-ar.fina.alt</string>\n      <string>alefTwoabove-ar</string>\n      <string>alefTwoabove-ar.fina</string>\n      <string>alefTwoabove-ar.fina.alt</string>\n      <string>alefTwoabove-ar.fina.rlig</string>\n      <string>alefThreeabove-ar</string>\n      <string>alefThreeabove-ar.fina</string>\n      <string>alefThreeabove-ar.fina.alt</string>\n      <string>alefThreeabove-ar.fina.rlig</string>\n      <string>yeh-ar</string>\n      <string>yeh-ar.fina</string>\n      <string>yeh-ar.fina.alt</string>\n      <string>yeh-ar.medi</string>\n      <string>yeh-ar.init</string>\n      <string>yeh-ar.init.alt</string>\n      <string>yehHamzaabove-ar</string>\n      <string>yehHamzaabove-ar.fina</string>\n      <string>yehHamzaabove-ar.fina.alt</string>\n      <string>yehHamzaabove-ar.medi</string>\n      <string>yehHamzaabove-ar.init</string>\n      <string>yehHamzaabove-ar.init.alt</string>\n      <string>yehVabove-ar</string>\n      <string>yehVabove-ar.fina</string>\n      <string>yehVabove-ar.fina.alt</string>\n      <string>yehVabove-ar.medi</string>\n      <string>yehVabove-ar.init</string>\n      <string>yehVabove-ar.init.alt</string>\n      <string>yehTwodotsbelowHamzaabove-ar</string>\n      <string>yehTwodotsbelowHamzaabove-ar.fina</string>\n      <string>yehTwodotsbelowHamzaabove-ar.medi</string>\n      <string>yehTwodotsbelowHamzaabove-ar.init</string>\n      <string>yehTwodotsbelowHamzaabove-ar.init.alt</string>\n      <string>yehTwodotsbelowDotabove-ar</string>\n      <string>yehTwodotsbelowDotabove-ar.fina</string>\n      <string>yehTwodotsbelowDotabove-ar.medi</string>\n      <string>yehTwodotsbelowDotabove-ar.init</string>\n      <string>yehTwodotsbelowDotabove-ar.init.alt</string>\n      <string>yehVinverted-farsi</string>\n      <string>yehVinverted-farsi.fina</string>\n      <string>yehVinverted-farsi.fina.alt</string>\n      <string>yehVinverted-farsi.medi</string>\n      <string>yehVinverted-farsi.init</string>\n      <string>yehVinverted-farsi.init.alt</string>\n      <string>yeh-farsi</string>\n      <string>yeh-farsi.fina</string>\n      <string>yeh-farsi.fina.alt</string>\n      <string>yeh-farsi.medi</string>\n      <string>yeh-farsi.init</string>\n      <string>yeh-farsi.init.alt</string>\n      <string>yehTwodotsabove-farsi</string>\n      <string>yehTwodotsabove-farsi.fina</string>\n      <string>yehTwodotsabove-farsi.fina.alt</string>\n      <string>yehTwodotsabove-farsi.medi</string>\n      <string>yehTwodotsabove-farsi.init</string>\n      <string>yehTwodotsabove-farsi.init.alt</string>\n      <string>yehThreedotsabove-farsi</string>\n      <string>yehThreedotsabove-farsi.fina</string>\n      <string>yehThreedotsabove-farsi.fina.alt</string>\n      <string>yehThreedotsabove-farsi.medi</string>\n      <string>yehThreedotsabove-farsi.init</string>\n      <string>yehThreedotsabove-farsi.init.alt</string>\n      <string>yehTwoabove-farsi</string>\n      <string>yehTwoabove-farsi.fina</string>\n      <string>yehTwoabove-farsi.fina.alt</string>\n      <string>yehTwoabove-farsi.medi</string>\n      <string>yehTwoabove-farsi.init</string>\n      <string>yehTwoabove-farsi.init.alt</string>\n      <string>yehThreeabove-farsi</string>\n      <string>yehThreeabove-farsi.fina</string>\n      <string>yehThreeabove-farsi.fina.alt</string>\n      <string>yehThreeabove-farsi.medi</string>\n      <string>yehThreeabove-farsi.init</string>\n      <string>yehThreeabove-farsi.init.alt</string>\n      <string>yehFourbelow-farsi</string>\n      <string>yehFourbelow-farsi.fina</string>\n      <string>yehFourbelow-farsi.fina.alt</string>\n      <string>yehFourbelow-farsi.medi</string>\n      <string>yehFourbelow-farsi.init</string>\n      <string>yehFourbelow-farsi.init.alt</string>\n      <string>yehTail-ar</string>\n      <string>yehTail-ar.fina</string>\n      <string>yehTail-ar.fina.alt</string>\n      <string>yehKashmiri-ar</string>\n      <string>yehKashmiri-ar.fina</string>\n      <string>yehKashmiri-ar.fina.alt</string>\n      <string>yehKashmiri-ar.medi</string>\n      <string>yehKashmiri-ar.init</string>\n      <string>yehKashmiri-ar.init.alt</string>\n      <string>e-ar</string>\n      <string>e-ar.fina</string>\n      <string>e-ar.fina.alt</string>\n      <string>e-ar.medi</string>\n      <string>e-ar.init</string>\n      <string>e-ar.init.alt</string>\n      <string>yehThreedotsbelow-ar</string>\n      <string>yehThreedotsbelow-ar.fina</string>\n      <string>yehThreedotsbelow-ar.fina.alt</string>\n      <string>yehThreedotsbelow-ar.medi</string>\n      <string>yehThreedotsbelow-ar.init</string>\n      <string>yehThreedotsbelow-ar.init.alt</string>\n      <string>yehbarree-ar</string>\n      <string>yehbarree-ar.fina</string>\n      <string>yehbarreeHamzaabove-ar</string>\n      <string>yehbarreeHamzaabove-ar.fina</string>\n      <string>yehbarreeTwoabove-ar</string>\n      <string>yehbarreeTwoabove-ar.fina</string>\n      <string>yehbarreeTwoabove-ar.medi</string>\n      <string>yehbarreeTwoabove-ar.init</string>\n      <string>yehbarreeTwoabove-ar.init.alt</string>\n      <string>yehbarreeThreeabove-ar</string>\n      <string>yehbarreeThreeabove-ar.fina</string>\n      <string>yehbarreeThreeabove-ar.medi</string>\n      <string>yehbarreeThreeabove-ar.init</string>\n      <string>yehbarreeThreeabove-ar.init.alt</string>\n      <string>yehRohingya-ar</string>\n      <string>yehRohingya-ar.isol</string>\n      <string>yehRohingya-ar.fina</string>\n      <string>highhamzaWaw-ar</string>\n      <string>highhamzaWaw-ar.fina</string>\n      <string>uHamzaabove-ar</string>\n      <string>uHamzaabove-ar.fina</string>\n      <string>highhamzaYeh-ar</string>\n      <string>highhamzaYeh-ar.fina</string>\n      <string>highhamzaYeh-ar.fina.alt</string>\n      <string>highhamzaYeh-ar.medi</string>\n      <string>highhamzaYeh-ar.init</string>\n      <string>highhamzaYeh-ar.init.alt</string>\n      <string>ae-ar</string>\n      <string>ae-ar.fina</string>\n      <string>seenFourdotsabove-ar</string>\n      <string>seenFourdotsabove-ar.fina</string>\n      <string>seenFourdotsabove-ar.fina.alt</string>\n      <string>seenFourdotsabove-ar.medi</string>\n      <string>seenFourdotsabove-ar.init</string>\n      <string>seenFourdotsabove-ar.alt</string>\n      <string>ainTwodotshorizontalabove-ar</string>\n      <string>ainTwodotshorizontalabove-ar.fina</string>\n      <string>ainTwodotshorizontalabove-ar.medi</string>\n      <string>ainTwodotshorizontalabove-ar.init</string>\n      <string>ainThreedotsdownabove-ar</string>\n      <string>ainThreedotsdownabove-ar.fina</string>\n      <string>ainThreedotsdownabove-ar.medi</string>\n      <string>ainThreedotsdownabove-ar.init</string>\n      <string>ainTwodotsverticalabove-ar</string>\n      <string>ainTwodotsverticalabove-ar.fina</string>\n      <string>ainTwodotsverticalabove-ar.medi</string>\n      <string>ainTwodotsverticalabove-ar.init</string>\n      <string>fehTwodotsbelow-ar</string>\n      <string>fehTwodotsbelow-ar.fina</string>\n      <string>fehTwodotsbelow-ar.fina.alt</string>\n      <string>fehTwodotsbelow-ar.medi</string>\n      <string>fehTwodotsbelow-ar.init</string>\n      <string>fehTwodotsbelow-ar.alt</string>\n      <string>fehThreedotsupbelow-ar</string>\n      <string>fehThreedotsupbelow-ar.fina</string>\n      <string>fehThreedotsupbelow-ar.fina.alt</string>\n      <string>fehThreedotsupbelow-ar.medi</string>\n      <string>fehThreedotsupbelow-ar.init</string>\n      <string>fehThreedotsupbelow-ar.alt</string>\n      <string>meemDotabove-ar</string>\n      <string>meemDotabove-ar.fina</string>\n      <string>meemDotabove-ar.medi</string>\n      <string>meemDotabove-ar.init</string>\n      <string>meemDotbelow-ar</string>\n      <string>meemDotbelow-ar.fina</string>\n      <string>meemDotbelow-ar.medi</string>\n      <string>meemDotbelow-ar.init</string>\n      <string>noonTwodotsbelow-ar</string>\n      <string>noonTwodotsbelow-ar.fina</string>\n      <string>noonTwodotsbelow-ar.medi</string>\n      <string>noonTwodotsbelow-ar.init</string>\n      <string>noonTwodotsbelow-ar.init.alt</string>\n      <string>noonTahabove-ar</string>\n      <string>noonTahabove-ar.fina</string>\n      <string>noonTahabove-ar.medi</string>\n      <string>noonTahabove-ar.init</string>\n      <string>noonTahabove-ar.init.alt</string>\n      <string>noonVabove-ar</string>\n      <string>noonVabove-ar.fina</string>\n      <string>noonVabove-ar.medi</string>\n      <string>noonVabove-ar.init</string>\n      <string>noonVabove-ar.init.alt</string>\n      <string>lamBar-ar</string>\n      <string>lamBar-ar.fina</string>\n      <string>lamBar-ar.medi</string>\n      <string>lamBar-ar.medi.rlig</string>\n      <string>lamBar-ar.init</string>\n      <string>lamBar-ar.init.rlig</string>\n      <string>seenTwodotshorizontalabove-ar</string>\n      <string>seenTwodotshorizontalabove-ar.fina</string>\n      <string>seenTwodotsverticalabove-ar.fina.alt</string>\n      <string>seenTwodotshorizontalabove-ar.medi</string>\n      <string>seenTwodotshorizontalabove-ar.init</string>\n      <string>seenTwodotsverticalabove-ar.alt</string>\n      <string>seenTahTwodotshorizontalabove-ar</string>\n      <string>seenTahTwodotshorizontalabove-ar.fina</string>\n      <string>seenTahTwodotshorizontalabove-ar.fina.alt</string>\n      <string>seenTahTwodotshorizontalabove-ar.medi</string>\n      <string>seenTahTwodotshorizontalabove-ar.init</string>\n      <string>seenTahTwodotshorizontalabove-ar.alt</string>\n      <string>hahTahabove-ar</string>\n      <string>hahTahabove-ar.fina</string>\n      <string>hahTahabove-ar.medi</string>\n      <string>hahTahabove-ar.init</string>\n      <string>seenFourabove-ar</string>\n      <string>seenFourabove-ar.fina</string>\n      <string>seenFourabove-ar.fina.alt</string>\n      <string>seenFourabove-ar.medi</string>\n      <string>seenFourabove-ar.init</string>\n      <string>seenFourabove-ar.alt</string>\n      <string>seenVinvertedabove-ar</string>\n      <string>seenVinvertedabove-ar.fina</string>\n      <string>seenVinvertedabove-ar.fina.alt</string>\n      <string>seenVinvertedabove-ar.medi</string>\n      <string>seenVinvertedabove-ar.init</string>\n      <string>seenVinvertedabove-ar.alt</string>\n      <string>kashida-ar</string>\n      <string>behMeemabove-ar</string>\n      <string>behMeemabove-ar.fina</string>\n      <string>behMeemabove-ar.fina.alt</string>\n      <string>behMeemabove-ar.medi</string>\n      <string>behMeemabove-ar.init</string>\n      <string>behMeemabove-ar.init.alt</string>\n      <string>behMeemabove-ar.alt</string>\n      <string>fehDotMovedbelow-ar.init</string>\n      <string>fehDotMovedbelow-ar.medi</string>\n      <string>pehMeemabove-ar</string>\n      <string>pehMeemabove-ar.fina</string>\n      <string>pehMeemabove-ar.fina.alt</string>\n      <string>pehMeemabove-ar.medi</string>\n      <string>pehMeemabove-ar.init</string>\n      <string>pehMeemabove-ar.init.alt</string>\n      <string>pehMeemabove-ar.alt</string>\n      <string>uni08B9.fina</string>\n      <string>tehTehabove-ar</string>\n      <string>tehTehabove-ar.fina</string>\n      <string>tehTehabove-ar.fina.alt</string>\n      <string>tehTehabove-ar.medi</string>\n      <string>tehTehabove-ar.init</string>\n      <string>tehTehabove-ar.init.alt</string>\n      <string>tehTehabove-ar.alt</string>\n      <string>yehTwodotsbelowNoonabove-ar</string>\n      <string>yehTwodotsbelowNoonabove-ar.fina</string>\n      <string>yehTwodotsbelowNoonabove-ar.fina.alt</string>\n      <string>yehTwodotsbelowNoonabove-ar.medi</string>\n      <string>yehTwodotsbelowNoonabove-ar.init</string>\n      <string>yehTwodotsbelowNoonabove-ar.init.alt</string>\n      <string>lam_alef-ar</string>\n      <string>lam_alef-ar.fina</string>\n      <string>lam_alef-ar.fina.short</string>\n      <string>lam_alef-ar.short</string>\n      <string>lam_alefHamzaabove-ar</string>\n      <string>lam_alefHamzaabove-ar.fina</string>\n      <string>lam_alefHamzabelow-ar</string>\n      <string>lam_alefHamzabelow-ar.fina</string>\n      <string>lam_alefMadda-ar</string>\n      <string>lam_alefMadda-ar.fina</string>\n      <string>lam_lam_heh-ar</string>\n      <string>lam_alefWasla-ar</string>\n      <string>lam_alefWasla-ar.fina</string>\n      <string>allah-ar</string>\n      <string>alef-hb</string>\n      <string>alefpatah-hb</string>\n      <string>alefqamats-hb</string>\n      <string>alefdagesh-hb</string>\n      <string>bet-hb</string>\n      <string>betdagesh-hb</string>\n      <string>gimel-hb</string>\n      <string>gimeldagesh-hb</string>\n      <string>dalet-hb</string>\n      <string>daletdagesh-hb</string>\n      <string>he-hb</string>\n      <string>hedagesh-hb</string>\n      <string>vav-hb</string>\n      <string>vavdagesh-hb</string>\n      <string>vavholam-hb</string>\n      <string>zayin-hb</string>\n      <string>zayindagesh-hb</string>\n      <string>het-hb</string>\n      <string>tet-hb</string>\n      <string>tetdagesh-hb</string>\n      <string>yod-hb</string>\n      <string>yoddagesh-hb</string>\n      <string>finalkaf-hb</string>\n      <string>finalkafdagesh-hb</string>\n      <string>kaf-hb</string>\n      <string>kafdagesh-hb</string>\n      <string>lamed-hb</string>\n      <string>lameddagesh-hb</string>\n      <string>finalmem-hb</string>\n      <string>mem-hb</string>\n      <string>memdagesh-hb</string>\n      <string>finalnun-hb</string>\n      <string>nun-hb</string>\n      <string>nundagesh-hb</string>\n      <string>samekh-hb</string>\n      <string>samekhdagesh-hb</string>\n      <string>ayin-hb</string>\n      <string>finalpe-hb</string>\n      <string>finalpedagesh-hb</string>\n      <string>pe-hb</string>\n      <string>pedagesh-hb</string>\n      <string>finaltsadi-hb</string>\n      <string>tsadi-hb</string>\n      <string>tsadidagesh-hb</string>\n      <string>qof-hb</string>\n      <string>qofdagesh-hb</string>\n      <string>resh-hb</string>\n      <string>reshdagesh-hb</string>\n      <string>shin-hb</string>\n      <string>shinshindot-hb</string>\n      <string>shinsindot-hb</string>\n      <string>shindageshshindot-hb</string>\n      <string>shindageshsindot-hb</string>\n      <string>shindagesh-hb</string>\n      <string>tav-hb</string>\n      <string>tavdagesh-hb</string>\n      <string>thetamod</string>\n      <string>zmod</string>\n      <string>zero</string>\n      <string>one</string>\n      <string>two</string>\n      <string>three</string>\n      <string>four</string>\n      <string>five</string>\n      <string>six</string>\n      <string>seven</string>\n      <string>eight</string>\n      <string>nine</string>\n      <string>zero.zero</string>\n      <string>one.half</string>\n      <string>two.half</string>\n      <string>three.half</string>\n      <string>four.half</string>\n      <string>zeroinferior</string>\n      <string>oneinferior</string>\n      <string>twoinferior</string>\n      <string>threeinferior</string>\n      <string>fourinferior</string>\n      <string>fiveinferior</string>\n      <string>sixinferior</string>\n      <string>seveninferior</string>\n      <string>eightinferior</string>\n      <string>nineinferior</string>\n      <string>zero.dnom</string>\n      <string>one.dnom</string>\n      <string>two.dnom</string>\n      <string>three.dnom</string>\n      <string>four.dnom</string>\n      <string>five.dnom</string>\n      <string>six.dnom</string>\n      <string>seven.dnom</string>\n      <string>eight.dnom</string>\n      <string>nine.dnom</string>\n      <string>zero.numr</string>\n      <string>one.numr</string>\n      <string>two.numr</string>\n      <string>three.numr</string>\n      <string>four.numr</string>\n      <string>five.numr</string>\n      <string>six.numr</string>\n      <string>seven.numr</string>\n      <string>eight.numr</string>\n      <string>nine.numr</string>\n      <string>zerosuperior</string>\n      <string>onesuperior</string>\n      <string>twosuperior</string>\n      <string>threesuperior</string>\n      <string>foursuperior</string>\n      <string>fivesuperior</string>\n      <string>sixsuperior</string>\n      <string>sevensuperior</string>\n      <string>eightsuperior</string>\n      <string>ninesuperior</string>\n      <string>fraction</string>\n      <string>onehalf</string>\n      <string>onequarter</string>\n      <string>threequarters</string>\n      <string>oneeighth</string>\n      <string>threeeighths</string>\n      <string>fiveeighths</string>\n      <string>seveneighths</string>\n      <string>decimalseparator-ar</string>\n      <string>thousandseparator-ar</string>\n      <string>zero-ar</string>\n      <string>one-ar</string>\n      <string>two-ar</string>\n      <string>three-ar</string>\n      <string>four-ar</string>\n      <string>five-ar</string>\n      <string>six-ar</string>\n      <string>seven-ar</string>\n      <string>eight-ar</string>\n      <string>nine-ar</string>\n      <string>zero-persian</string>\n      <string>one-persian</string>\n      <string>two-persian</string>\n      <string>three-persian</string>\n      <string>four-persian</string>\n      <string>five-persian</string>\n      <string>six-persian</string>\n      <string>seven-persian</string>\n      <string>eight-persian</string>\n      <string>nine-persian</string>\n      <string>two-persian.small01</string>\n      <string>three-persian.small01</string>\n      <string>four-persian.small01</string>\n      <string>four-persian.urdu</string>\n      <string>seven-persian.urdu</string>\n      <string>eight-arinferior</string>\n      <string>eight-arsuperior</string>\n      <string>eight-persianinferior</string>\n      <string>eight-persiansuperior</string>\n      <string>five-arinferior</string>\n      <string>five-arsuperior</string>\n      <string>five-persianinferior</string>\n      <string>five-persiansuperior</string>\n      <string>four-arinferior</string>\n      <string>four-arsuperior</string>\n      <string>four-persianinferior</string>\n      <string>four-persiansuperior</string>\n      <string>nine-arinferior</string>\n      <string>nine-arsuperior</string>\n      <string>nine-persianinferior</string>\n      <string>nine-persiansuperior</string>\n      <string>one-arinferior</string>\n      <string>one-arsuperior</string>\n      <string>one-persianinferior</string>\n      <string>one-persiansuperior</string>\n      <string>seven-arinferior</string>\n      <string>seven-arsuperior</string>\n      <string>seven-persianinferior</string>\n      <string>seven-persiansuperior</string>\n      <string>six-arinferior</string>\n      <string>six-arsuperior</string>\n      <string>six-persianinferior</string>\n      <string>six-persiansuperior</string>\n      <string>three-arinferior</string>\n      <string>three-arsuperior</string>\n      <string>three-persianinferior</string>\n      <string>three-persiansuperior</string>\n      <string>two-arinferior</string>\n      <string>two-arsuperior</string>\n      <string>two-persianinferior</string>\n      <string>two-persiansuperior</string>\n      <string>four-persian.urduinferior</string>\n      <string>seven-persian.urduinferior</string>\n      <string>four-persian.urdusuperior</string>\n      <string>seven-persian.urdusuperior</string>\n      <string>zero-arinferior</string>\n      <string>zero-arsuperior</string>\n      <string>zero-persianinferior</string>\n      <string>zero-persiansuperior</string>\n      <string>period</string>\n      <string>comma</string>\n      <string>colon</string>\n      <string>semicolon</string>\n      <string>ellipsis</string>\n      <string>exclam</string>\n      <string>exclamdown</string>\n      <string>question</string>\n      <string>questiondown</string>\n      <string>periodcentered</string>\n      <string>bullet</string>\n      <string>asterisk</string>\n      <string>exclamdouble</string>\n      <string>numbersign</string>\n      <string>onedotenleader</string>\n      <string>overline</string>\n      <string>slash</string>\n      <string>backslash</string>\n      <string>colon.center</string>\n      <string>parenleft</string>\n      <string>parenright</string>\n      <string>braceleft</string>\n      <string>braceright</string>\n      <string>bracketleft</string>\n      <string>bracketright</string>\n      <string>heavyleftpointinganglebracketornament</string>\n      <string>heavyleftpointinganglequotationmarkornament</string>\n      <string>heavyrightpointinganglebracketornament</string>\n      <string>heavyrightpointinganglequotationmarkornament</string>\n      <string>mediumleftpointinganglebracketornament</string>\n      <string>mediumrightpointinganglebracketornament</string>\n      <string>hyphen</string>\n      <string>softhyphen</string>\n      <string>endash</string>\n      <string>emdash</string>\n      <string>horizontalbar</string>\n      <string>hyphentwo</string>\n      <string>nonbreakinghyphen</string>\n      <string>underscore</string>\n      <string>underscoredbl</string>\n      <string>quotesinglbase</string>\n      <string>quotedblbase</string>\n      <string>quotedblleft</string>\n      <string>quotedblright</string>\n      <string>quoteleft</string>\n      <string>quoteright</string>\n      <string>quotereversed</string>\n      <string>guillemetleft</string>\n      <string>guillemetright</string>\n      <string>guilsinglleft</string>\n      <string>guilsinglright</string>\n      <string>quotedbl</string>\n      <string>quotesingle</string>\n      <string>hyphen_hyphen.liga</string>\n      <string>hyphen_hyphen_hyphen.liga</string>\n      <string>hyphen_asciitilde.liga</string>\n      <string>parenleft_asterisk.liga</string>\n      <string>braceleft_bar.liga</string>\n      <string>braceright_numbersign.liga</string>\n      <string>bracketleft_bar.liga</string>\n      <string>bracketright_numbersign.liga</string>\n      <string>period_hyphen.liga</string>\n      <string>period_period.liga</string>\n      <string>period_period_period.liga</string>\n      <string>period_period_equal.liga</string>\n      <string>period_period_less.liga</string>\n      <string>period_question.liga</string>\n      <string>period_equal.liga</string>\n      <string>colon_colon.liga</string>\n      <string>colon_colon_colon.liga</string>\n      <string>colon_colon_equal.liga</string>\n      <string>colon_equal.liga</string>\n      <string>colon_slash_slash.liga</string>\n      <string>semicolon_semicolon.liga</string>\n      <string>exclam_period.liga</string>\n      <string>exclam_colon.liga</string>\n      <string>exclam_exclam.liga</string>\n      <string>exclam_exclam_period.liga</string>\n      <string>exclam_equal.liga</string>\n      <string>exclam_equal_equal.liga</string>\n      <string>question_period.liga</string>\n      <string>question_colon.liga</string>\n      <string>question_question.liga</string>\n      <string>question_question_equal.liga</string>\n      <string>question_equal.liga</string>\n      <string>asterisk_parenright.liga</string>\n      <string>asterisk_asterisk.liga</string>\n      <string>asterisk_asterisk_asterisk.liga</string>\n      <string>asterisk_greater.liga</string>\n      <string>asterisk_slash.liga</string>\n      <string>numbersign_parenleft.liga</string>\n      <string>numbersign_braceleft.liga</string>\n      <string>numbersign_bracketleft.liga</string>\n      <string>numbersign_colon.liga</string>\n      <string>numbersign_exclam.liga</string>\n      <string>numbersign_question.liga</string>\n      <string>numbersign_equal.liga</string>\n      <string>numbersign_underscore.liga</string>\n      <string>numbersign_underscore_parenleft.liga</string>\n      <string>slash_asterisk.liga</string>\n      <string>slash_greater.liga</string>\n      <string>slash_slash.liga</string>\n      <string>slash_slash_slash.liga</string>\n      <string>slash_backslash.liga</string>\n      <string>backslash_slash.liga</string>\n      <string>backslash_backslash.liga</string>\n      <string>underscore_underscore.liga</string>\n      <string>hyphen_middle.seq</string>\n      <string>hyphen_start.seq</string>\n      <string>hyphen_end.seq</string>\n      <string>colon_equal_middle.seq</string>\n      <string>exclam_equal_middle.seq</string>\n      <string>numbersign_end.seq</string>\n      <string>numbersign_middle.seq</string>\n      <string>numbersign_start.seq</string>\n      <string>slash_equal_end.seq</string>\n      <string>slash_equal_middle.seq</string>\n      <string>slash_equal_start.seq</string>\n      <string>slash_slash_equal_end.seq</string>\n      <string>slash_slash_equal_middle.seq</string>\n      <string>slash_slash_equal_start.seq</string>\n      <string>underscore_end.seq</string>\n      <string>underscore_middle.seq</string>\n      <string>underscore_start.seq</string>\n      <string>paseq-hb</string>\n      <string>geresh-hb</string>\n      <string>gershayim-hb</string>\n      <string>maqaf-hb</string>\n      <string>threedots-ar</string>\n      <string>doubleverticalbarbelowSymbol-ar</string>\n      <string>doubleverticalbarbelowSymbol-ar.comb</string>\n      <string>asteriskArt-ar</string>\n      <string>fullstop-ar</string>\n      <string>comma-ar</string>\n      <string>semicolon-ar</string>\n      <string>question-ar</string>\n      <string>number-ar</string>\n      <string>asterisk-ar</string>\n      <string>year-ar</string>\n      <string>footnotemarker-ar</string>\n      <string>pagenumber-ar</string>\n      <string>dateseparator-ar</string>\n      <string>verseComma-ar</string>\n      <string>misraComma-ar</string>\n      <string>sindhiampersand-ar</string>\n      <string>endofayah-ar</string>\n      <string>parenleft-ar</string>\n      <string>parenright-ar</string>\n      <string>anoteleia</string>\n      <string>questiongreek</string>\n      <string>punctuationspace</string>\n      <string>space</string>\n      <string>nbspace</string>\n      <string>CR</string>\n      <string>lineseparator</string>\n      <string>.notdef</string>\n      <string>ray-ar</string>\n      <string>afghani-ar</string>\n      <string>baht</string>\n      <string>bitcoin</string>\n      <string>cedi</string>\n      <string>cent</string>\n      <string>colonsign</string>\n      <string>currency</string>\n      <string>dollar</string>\n      <string>dong</string>\n      <string>euro</string>\n      <string>eurocurrency</string>\n      <string>florin</string>\n      <string>franc</string>\n      <string>guarani</string>\n      <string>hryvnia</string>\n      <string>kip</string>\n      <string>lari</string>\n      <string>lira</string>\n      <string>liraTurkish</string>\n      <string>manat</string>\n      <string>naira</string>\n      <string>peseta</string>\n      <string>peso</string>\n      <string>ruble</string>\n      <string>rupee</string>\n      <string>rupeeIndian</string>\n      <string>sheqel</string>\n      <string>sterling</string>\n      <string>tenge</string>\n      <string>tugrik</string>\n      <string>won</string>\n      <string>yen</string>\n      <string>bulletoperator</string>\n      <string>divisionslash</string>\n      <string>equivalence</string>\n      <string>horizontallineextension</string>\n      <string>integralbt</string>\n      <string>integraltp</string>\n      <string>logicalnotReversed</string>\n      <string>notidentical</string>\n      <string>plus</string>\n      <string>minus</string>\n      <string>multiply</string>\n      <string>divide</string>\n      <string>equal</string>\n      <string>notequal</string>\n      <string>greater</string>\n      <string>less</string>\n      <string>greaterequal</string>\n      <string>lessequal</string>\n      <string>plusminus</string>\n      <string>approxequal</string>\n      <string>asciitilde</string>\n      <string>logicalnot</string>\n      <string>asciicircum</string>\n      <string>infinity</string>\n      <string>intersection</string>\n      <string>integral</string>\n      <string>Ohm</string>\n      <string>increment</string>\n      <string>product</string>\n      <string>summation</string>\n      <string>radical</string>\n      <string>micro</string>\n      <string>partialdiff</string>\n      <string>orthogonal</string>\n      <string>percent</string>\n      <string>perthousand</string>\n      <string>ratio</string>\n      <string>strictlyequivalentto</string>\n      <string>vectorOrCrossProduct</string>\n      <string>greater.alt</string>\n      <string>less.alt</string>\n      <string>greater.center</string>\n      <string>less.center</string>\n      <string>upArrow</string>\n      <string>rightArrow</string>\n      <string>downArrow</string>\n      <string>leftArrow</string>\n      <string>leftRightArrow</string>\n      <string>upDownArrow</string>\n      <string>upDownbaseArrow</string>\n      <string>downTipLeftArrow</string>\n      <string>upDashArrow</string>\n      <string>dashdownArrow</string>\n      <string>lowerOneEighthBlock</string>\n      <string>lowerOneQuarterBlock</string>\n      <string>lowerThreeEighthsBlock</string>\n      <string>lowerHalfBlock</string>\n      <string>lowerFiveEighthsBlock</string>\n      <string>lowerThreeQuartersBlock</string>\n      <string>lowerSevenEighthsBlock</string>\n      <string>fullBlock</string>\n      <string>upperHalfBlock</string>\n      <string>upperOneEighthBlock</string>\n      <string>leftOneEighthBlock</string>\n      <string>leftOneQuarterBlock</string>\n      <string>leftThreeEighthsBlock</string>\n      <string>leftBlock</string>\n      <string>leftFiveEighthsBlock</string>\n      <string>leftThreeQuartersBlock</string>\n      <string>leftSevenEighthsBlock</string>\n      <string>rightBlock</string>\n      <string>rightOneEighthBlock</string>\n      <string>lowerLeftBlock</string>\n      <string>lowerRightBlock</string>\n      <string>upperLeftBlock</string>\n      <string>upperLeftAndLowerLeftAndLowerRightBlock</string>\n      <string>upperLeftAndLowerRightBlock</string>\n      <string>upperLeftAndUpperRightAndLowerLeftBlock</string>\n      <string>upperLeftAndUpperRightAndLowerRightBlock</string>\n      <string>upperRightBlock</string>\n      <string>upperRightAndLowerLeftBlock</string>\n      <string>upperRightAndLowerLeftAndLowerRightBlock</string>\n      <string>shadelight</string>\n      <string>shademedium</string>\n      <string>shadedark</string>\n      <string>blackCircle</string>\n      <string>whiteCircle</string>\n      <string>largeCircle</string>\n      <string>leftHalfBlackWhiteCircle</string>\n      <string>rightHalfBlackWhiteCircle</string>\n      <string>lowerHalfBlackWhiteCircle</string>\n      <string>upperHalfBlackWhiteCircle</string>\n      <string>leftHalfBlackCircle</string>\n      <string>rightHalfBlackCircle</string>\n      <string>upperRightBlackCircle</string>\n      <string>upperLeftWhiteCircle</string>\n      <string>upperLeftQuadrantWhiteCircle</string>\n      <string>lowerLeftQuadrantWhiteCircle</string>\n      <string>lowerRightQuadrantWhiteCircle</string>\n      <string>upperRightQuadrantWhiteCircle</string>\n      <string>verticalFillCircle</string>\n      <string>dottedCircle</string>\n      <string>fisheye</string>\n      <string>bullseye</string>\n      <string>whiteBullet</string>\n      <string>inverseBullet</string>\n      <string>inverseWhiteCircle</string>\n      <string>upperHalfInverseWhiteCircle</string>\n      <string>lowerHalfInverseWhiteCircle</string>\n      <string>upperHalfArc</string>\n      <string>lowerHalfArc</string>\n      <string>upperLeftArc</string>\n      <string>upperRightArc</string>\n      <string>lowerRightArc</string>\n      <string>lowerLeftArc</string>\n      <string>blackDiamond</string>\n      <string>whiteDiamond</string>\n      <string>leftHalfBlackDiamond</string>\n      <string>rightHalfBlackDiamond</string>\n      <string>topHalfBlackDiamond</string>\n      <string>bottomHalfBlackDiamond</string>\n      <string>blackInWhiteDiamond</string>\n      <string>lozenge</string>\n      <string>blackParallelogram</string>\n      <string>whiteParallelogram</string>\n      <string>blackVerticalRect</string>\n      <string>filledRect</string>\n      <string>whiteRect</string>\n      <string>whiteVerticalRect</string>\n      <string>blackSquare</string>\n      <string>whiteSquare</string>\n      <string>whiteRoundedCornersSquare</string>\n      <string>whiteInBlackSquare</string>\n      <string>dottedSquare</string>\n      <string>horizontalFillSquare</string>\n      <string>verticalFillSquare</string>\n      <string>crosshatchFillSquare</string>\n      <string>upperlefttolowerrightFillSquare</string>\n      <string>upperrighttolowerleftFillSquare</string>\n      <string>diagonalcrosshatchFillSquare</string>\n      <string>blackSmallSquare</string>\n      <string>whiteSmallSquare</string>\n      <string>leftHalfBlackSquare</string>\n      <string>rightHalfBlackSquare</string>\n      <string>upperLeftDiagonalHalfBlackSquare</string>\n      <string>lowerRightDiagonalHalfBlackSquare</string>\n      <string>verticalBisectingLineWhiteSquare</string>\n      <string>whiteUpperLeftQuadrantSquare</string>\n      <string>whiteLowerLeftQuadrantSquare</string>\n      <string>whiteLowerRightQuadrantSquare</string>\n      <string>whiteUpperRightQuadrantSquare</string>\n      <string>mediumWhiteSquare</string>\n      <string>mediumBlackSquare</string>\n      <string>mediumWhiteSmallSquare</string>\n      <string>mediumBlackSmallSquare</string>\n      <string>upBlackTriangle</string>\n      <string>rightBlackTriangle</string>\n      <string>downBlackTriangle</string>\n      <string>leftBlackTriangle</string>\n      <string>upWhiteTriangle</string>\n      <string>rightWhiteTriangle</string>\n      <string>downWhiteTriangle</string>\n      <string>leftWhiteTriangle</string>\n      <string>upWhiteTriangleWithDot</string>\n      <string>upLeftHalfBlackTriangle</string>\n      <string>upRightHalfBlackTriangle</string>\n      <string>rightBlackPointer</string>\n      <string>leftBlackPointer</string>\n      <string>rightWhitePointer</string>\n      <string>leftWhitePointer</string>\n      <string>upBlackSmallTriangle</string>\n      <string>rightBlackSmallTriangle</string>\n      <string>downBlackSmallTriangle</string>\n      <string>leftBlackSmallTriangle</string>\n      <string>upWhiteSmallTriangle</string>\n      <string>rightWhiteSmallTriangle</string>\n      <string>downWhiteSmallTriangle</string>\n      <string>leftWhiteSmallTriangle</string>\n      <string>upperRightBlackTriangle</string>\n      <string>lowerRightBlackTriangle</string>\n      <string>lowerLeftBlackTriangle</string>\n      <string>upperLeftBlackTriangle</string>\n      <string>upperRightTriangle</string>\n      <string>lowerRightTriangle</string>\n      <string>lowerLeftTriangle</string>\n      <string>upperLeftTriangle</string>\n      <string>boxDoubleDownAndHorizontal</string>\n      <string>boxDoubleDownAndLeft</string>\n      <string>boxDoubleDownAndRight</string>\n      <string>boxDoubleHorizontal</string>\n      <string>boxDoubleUpAndHorizontal</string>\n      <string>boxDoubleUpAndLeft</string>\n      <string>boxDoubleUpAndRight</string>\n      <string>boxDoubleVertical</string>\n      <string>boxDoubleVerticalAndHorizontal</string>\n      <string>boxDoubleVerticalAndLeft</string>\n      <string>boxDoubleVerticalAndRight</string>\n      <string>boxDownDoubleAndHorizontalSingle</string>\n      <string>boxDownDoubleAndLeftSingle</string>\n      <string>boxDownDoubleAndRightSingle</string>\n      <string>boxDownHeavyAndHorizontalLight</string>\n      <string>boxDownHeavyAndLeftLight</string>\n      <string>boxDownHeavyAndLeftUpLight</string>\n      <string>boxDownHeavyAndRightLight</string>\n      <string>boxDownHeavyAndRightUpLight</string>\n      <string>boxDownHeavyAndUpHorizontalLight</string>\n      <string>boxDownLightAndHorizontalHeavy</string>\n      <string>boxDownLightAndLeftHeavy</string>\n      <string>boxDownLightAndLeftUpHeavy</string>\n      <string>boxDownLightAndRightHeavy</string>\n      <string>boxDownLightAndRightUpHeavy</string>\n      <string>boxDownLightAndUpHorizontalHeavy</string>\n      <string>boxDownSingleAndHorizontalDouble</string>\n      <string>boxDownSingleAndLeftDouble</string>\n      <string>boxDownSingleAndRightDouble</string>\n      <string>boxHeavyDoubleDashHorizontal</string>\n      <string>boxHeavyDoubleDashVertical</string>\n      <string>boxHeavyDown</string>\n      <string>boxHeavyDownAndHorizontal</string>\n      <string>boxHeavyDownAndLeft</string>\n      <string>boxHeavyDownAndRight</string>\n      <string>boxHeavyHorizontal</string>\n      <string>boxHeavyLeft</string>\n      <string>boxHeavyLeftAndLightRight</string>\n      <string>boxHeavyQuadrupleDashHorizontal</string>\n      <string>boxHeavyQuadrupleDashVertical</string>\n      <string>boxHeavyRight</string>\n      <string>boxHeavyTripleDashHorizontal</string>\n      <string>boxHeavyTripleDashVertical</string>\n      <string>boxHeavyUp</string>\n      <string>boxHeavyUpAndHorizontal</string>\n      <string>boxHeavyUpAndLeft</string>\n      <string>boxHeavyUpAndLightDown</string>\n      <string>boxHeavyUpAndRight</string>\n      <string>boxHeavyVertical</string>\n      <string>boxHeavyVerticalAndHorizontal</string>\n      <string>boxHeavyVerticalAndLeft</string>\n      <string>boxHeavyVerticalAndRight</string>\n      <string>boxLeftDownHeavyAndRightUpLight</string>\n      <string>boxLeftHeavyAndRightDownLight</string>\n      <string>boxLeftHeavyAndRightUpLight</string>\n      <string>boxLeftHeavyAndRightVerticalLight</string>\n      <string>boxLeftLightAndRightDownHeavy</string>\n      <string>boxLeftLightAndRightUpHeavy</string>\n      <string>boxLeftLightAndRightVerticalHeavy</string>\n      <string>boxLeftUpHeavyAndRightDownLight</string>\n      <string>boxLightArcDownAndLeft</string>\n      <string>boxLightArcDownAndRight</string>\n      <string>boxLightArcUpAndLeft</string>\n      <string>boxLightArcUpAndRight</string>\n      <string>boxLightDiagonalCross</string>\n      <string>boxLightDiagonalUpperLeftToLowerRight</string>\n      <string>boxLightDiagonalUpperRightToLowerLeft</string>\n      <string>boxLightDoubleDashHorizontal</string>\n      <string>boxLightDoubleDashVertical</string>\n      <string>boxLightDown</string>\n      <string>boxLightDownAndHorizontal</string>\n      <string>boxLightDownAndLeft</string>\n      <string>boxLightDownAndRight</string>\n      <string>boxLightHorizontal</string>\n      <string>boxLightLeft</string>\n      <string>boxLightLeftAndHeavyRight</string>\n      <string>boxLightQuadrupleDashHorizontal</string>\n      <string>boxLightQuadrupleDashVertical</string>\n      <string>boxLightRight</string>\n      <string>boxLightTripleDashHorizontal</string>\n      <string>boxLightTripleDashVertical</string>\n      <string>boxLightUp</string>\n      <string>boxLightUpAndHeavyDown</string>\n      <string>boxLightUpAndHorizontal</string>\n      <string>boxLightUpAndLeft</string>\n      <string>boxLightUpAndRight</string>\n      <string>boxLightVertical</string>\n      <string>boxLightVerticalAndHorizontal</string>\n      <string>boxLightVerticalAndLeft</string>\n      <string>boxLightVerticalAndRight</string>\n      <string>boxRightDownHeavyAndLeftUpLight</string>\n      <string>boxRightHeavyAndLeftDownLight</string>\n      <string>boxRightHeavyAndLeftUpLight</string>\n      <string>boxRightHeavyAndLeftVerticalLight</string>\n      <string>boxRightLightAndLeftDownHeavy</string>\n      <string>boxRightLightAndLeftUpHeavy</string>\n      <string>boxRightLightAndLeftVerticalHeavy</string>\n      <string>boxRightUpHeavyAndLeftDownLight</string>\n      <string>boxUpDoubleAndHorizontalSingle</string>\n      <string>boxUpDoubleAndLeftSingle</string>\n      <string>boxUpDoubleAndRightSingle</string>\n      <string>boxUpHeavyAndDownHorizontalLight</string>\n      <string>boxUpHeavyAndHorizontalLight</string>\n      <string>boxUpHeavyAndLeftDownLight</string>\n      <string>boxUpHeavyAndLeftLight</string>\n      <string>boxUpHeavyAndRightDownLight</string>\n      <string>boxUpHeavyAndRightLight</string>\n      <string>boxUpLightAndDownHorizontalHeavy</string>\n      <string>boxUpLightAndHorizontalHeavy</string>\n      <string>boxUpLightAndLeftDownHeavy</string>\n      <string>boxUpLightAndLeftHeavy</string>\n      <string>boxUpLightAndRightDownHeavy</string>\n      <string>boxUpLightAndRightHeavy</string>\n      <string>boxUpSingleAndHorizontalDouble</string>\n      <string>boxUpSingleAndLeftDouble</string>\n      <string>boxUpSingleAndRightDouble</string>\n      <string>boxVerticalDoubleAndHorizontalSingle</string>\n      <string>boxVerticalDoubleAndLeftSingle</string>\n      <string>boxVerticalDoubleAndRightSingle</string>\n      <string>boxVerticalHeavyAndHorizontalLight</string>\n      <string>boxVerticalHeavyAndLeftLight</string>\n      <string>boxVerticalHeavyAndRightLight</string>\n      <string>boxVerticalLightAndHorizontalHeavy</string>\n      <string>boxVerticalLightAndLeftHeavy</string>\n      <string>boxVerticalLightAndRightHeavy</string>\n      <string>boxVerticalSingleAndHorizontalDouble</string>\n      <string>boxVerticalSingleAndLeftDouble</string>\n      <string>boxVerticalSingleAndRightDouble</string>\n      <string>lowerOneEighthBlock.stypo</string>\n      <string>lowerOneQuarterBlock.stypo</string>\n      <string>lowerThreeEighthsBlock.stypo</string>\n      <string>lowerHalfBlock.stypo</string>\n      <string>lowerFiveEighthsBlock.stypo</string>\n      <string>lowerThreeQuartersBlock.stypo</string>\n      <string>lowerSevenEighthsBlock.stypo</string>\n      <string>fullBlock.stypo</string>\n      <string>upperHalfBlock.stypo</string>\n      <string>upperOneEighthBlock.stypo</string>\n      <string>leftOneEighthBlock.stypo</string>\n      <string>leftOneQuarterBlock.stypo</string>\n      <string>leftThreeEighthsBlock.stypo</string>\n      <string>leftBlock.stypo</string>\n      <string>leftFiveEighthsBlock.stypo</string>\n      <string>leftThreeQuartersBlock.stypo</string>\n      <string>leftSevenEighthsBlock.stypo</string>\n      <string>rightBlock.stypo</string>\n      <string>rightOneEighthBlock.stypo</string>\n      <string>lowerLeftBlock.stypo</string>\n      <string>lowerRightBlock.stypo</string>\n      <string>upperLeftBlock.stypo</string>\n      <string>upperLeftAndLowerLeftAndLowerRightBlock.stypo</string>\n      <string>upperLeftAndLowerRightBlock.stypo</string>\n      <string>upperLeftAndUpperRightAndLowerLeftBlock.stypo</string>\n      <string>upperLeftAndUpperRightAndLowerRightBlock.stypo</string>\n      <string>upperRightBlock.stypo</string>\n      <string>upperRightAndLowerLeftBlock.stypo</string>\n      <string>upperRightAndLowerLeftAndLowerRightBlock.stypo</string>\n      <string>shadelight.stypo</string>\n      <string>shademedium.stypo</string>\n      <string>shadedark.stypo</string>\n      <string>boxDoubleDownAndHorizontal.stypo</string>\n      <string>boxDoubleDownAndLeft.stypo</string>\n      <string>boxDoubleDownAndRight.stypo</string>\n      <string>boxDoubleHorizontal.stypo</string>\n      <string>boxDoubleUpAndHorizontal.stypo</string>\n      <string>boxDoubleUpAndLeft.stypo</string>\n      <string>boxDoubleUpAndRight.stypo</string>\n      <string>boxDoubleVertical.stypo</string>\n      <string>boxDoubleVerticalAndHorizontal.stypo</string>\n      <string>boxDoubleVerticalAndLeft.stypo</string>\n      <string>boxDoubleVerticalAndRight.stypo</string>\n      <string>boxDownDoubleAndHorizontalSingle.stypo</string>\n      <string>boxDownDoubleAndLeftSingle.stypo</string>\n      <string>boxDownDoubleAndRightSingle.stypo</string>\n      <string>boxDownHeavyAndHorizontalLight.stypo</string>\n      <string>boxDownHeavyAndLeftLight.stypo</string>\n      <string>boxDownHeavyAndLeftUpLight.stypo</string>\n      <string>boxDownHeavyAndRightLight.stypo</string>\n      <string>boxDownHeavyAndRightUpLight.stypo</string>\n      <string>boxDownHeavyAndUpHorizontalLight.stypo</string>\n      <string>boxDownLightAndHorizontalHeavy.stypo</string>\n      <string>boxDownLightAndLeftHeavy.stypo</string>\n      <string>boxDownLightAndLeftUpHeavy.stypo</string>\n      <string>boxDownLightAndRightHeavy.stypo</string>\n      <string>boxDownLightAndRightUpHeavy.stypo</string>\n      <string>boxDownLightAndUpHorizontalHeavy.stypo</string>\n      <string>boxDownSingleAndHorizontalDouble.stypo</string>\n      <string>boxDownSingleAndLeftDouble.stypo</string>\n      <string>boxDownSingleAndRightDouble.stypo</string>\n      <string>boxHeavyDoubleDashHorizontal.stypo</string>\n      <string>boxHeavyDoubleDashVertical.stypo</string>\n      <string>boxHeavyDown.stypo</string>\n      <string>boxHeavyDownAndHorizontal.stypo</string>\n      <string>boxHeavyDownAndLeft.stypo</string>\n      <string>boxHeavyDownAndRight.stypo</string>\n      <string>boxHeavyHorizontal.stypo</string>\n      <string>boxHeavyLeft.stypo</string>\n      <string>boxHeavyLeftAndLightRight.stypo</string>\n      <string>boxHeavyQuadrupleDashHorizontal.stypo</string>\n      <string>boxHeavyQuadrupleDashVertical.stypo</string>\n      <string>boxHeavyRight.stypo</string>\n      <string>boxHeavyTripleDashHorizontal.stypo</string>\n      <string>boxHeavyTripleDashVertical.stypo</string>\n      <string>boxHeavyUp.stypo</string>\n      <string>boxHeavyUpAndHorizontal.stypo</string>\n      <string>boxHeavyUpAndLeft.stypo</string>\n      <string>boxHeavyUpAndLightDown.stypo</string>\n      <string>boxHeavyUpAndRight.stypo</string>\n      <string>boxHeavyVertical.stypo</string>\n      <string>boxHeavyVerticalAndHorizontal.stypo</string>\n      <string>boxHeavyVerticalAndLeft.stypo</string>\n      <string>boxHeavyVerticalAndRight.stypo</string>\n      <string>boxLeftDownHeavyAndRightUpLight.stypo</string>\n      <string>boxLeftHeavyAndRightDownLight.stypo</string>\n      <string>boxLeftHeavyAndRightUpLight.stypo</string>\n      <string>boxLeftHeavyAndRightVerticalLight.stypo</string>\n      <string>boxLeftLightAndRightDownHeavy.stypo</string>\n      <string>boxLeftLightAndRightUpHeavy.stypo</string>\n      <string>boxLeftLightAndRightVerticalHeavy.stypo</string>\n      <string>boxLeftUpHeavyAndRightDownLight.stypo</string>\n      <string>boxLightArcDownAndLeft.stypo</string>\n      <string>boxLightArcDownAndRight.stypo</string>\n      <string>boxLightArcUpAndLeft.stypo</string>\n      <string>boxLightArcUpAndRight.stypo</string>\n      <string>boxLightDiagonalCross.stypo</string>\n      <string>boxLightDiagonalUpperLeftToLowerRight.stypo</string>\n      <string>boxLightDiagonalUpperRightToLowerLeft.stypo</string>\n      <string>boxLightDoubleDashHorizontal.stypo</string>\n      <string>boxLightDoubleDashVertical.stypo</string>\n      <string>boxLightDown.stypo</string>\n      <string>boxLightDownAndHorizontal.stypo</string>\n      <string>boxLightDownAndLeft.stypo</string>\n      <string>boxLightDownAndRight.stypo</string>\n      <string>boxLightHorizontal.stypo</string>\n      <string>boxLightLeft.stypo</string>\n      <string>boxLightLeftAndHeavyRight.stypo</string>\n      <string>boxLightQuadrupleDashHorizontal.stypo</string>\n      <string>boxLightQuadrupleDashVertical.stypo</string>\n      <string>boxLightRight.stypo</string>\n      <string>boxLightTripleDashHorizontal.stypo</string>\n      <string>boxLightTripleDashVertical.stypo</string>\n      <string>boxLightUp.stypo</string>\n      <string>boxLightUpAndHeavyDown.stypo</string>\n      <string>boxLightUpAndHorizontal.stypo</string>\n      <string>boxLightUpAndLeft.stypo</string>\n      <string>boxLightUpAndRight.stypo</string>\n      <string>boxLightVertical.stypo</string>\n      <string>boxLightVerticalAndHorizontal.stypo</string>\n      <string>boxLightVerticalAndLeft.stypo</string>\n      <string>boxLightVerticalAndRight.stypo</string>\n      <string>boxRightDownHeavyAndLeftUpLight.stypo</string>\n      <string>boxRightHeavyAndLeftDownLight.stypo</string>\n      <string>boxRightHeavyAndLeftUpLight.stypo</string>\n      <string>boxRightHeavyAndLeftVerticalLight.stypo</string>\n      <string>boxRightLightAndLeftDownHeavy.stypo</string>\n      <string>boxRightLightAndLeftUpHeavy.stypo</string>\n      <string>boxRightLightAndLeftVerticalHeavy.stypo</string>\n      <string>boxRightUpHeavyAndLeftDownLight.stypo</string>\n      <string>boxUpDoubleAndHorizontalSingle.stypo</string>\n      <string>boxUpDoubleAndLeftSingle.stypo</string>\n      <string>boxUpDoubleAndRightSingle.stypo</string>\n      <string>boxUpHeavyAndDownHorizontalLight.stypo</string>\n      <string>boxUpHeavyAndHorizontalLight.stypo</string>\n      <string>boxUpHeavyAndLeftDownLight.stypo</string>\n      <string>boxUpHeavyAndLeftLight.stypo</string>\n      <string>boxUpHeavyAndRightDownLight.stypo</string>\n      <string>boxUpHeavyAndRightLight.stypo</string>\n      <string>boxUpLightAndDownHorizontalHeavy.stypo</string>\n      <string>boxUpLightAndHorizontalHeavy.stypo</string>\n      <string>boxUpLightAndLeftDownHeavy.stypo</string>\n      <string>boxUpLightAndLeftHeavy.stypo</string>\n      <string>boxUpLightAndRightDownHeavy.stypo</string>\n      <string>boxUpLightAndRightHeavy.stypo</string>\n      <string>boxUpSingleAndHorizontalDouble.stypo</string>\n      <string>boxUpSingleAndLeftDouble.stypo</string>\n      <string>boxUpSingleAndRightDouble.stypo</string>\n      <string>boxVerticalDoubleAndHorizontalSingle.stypo</string>\n      <string>boxVerticalDoubleAndLeftSingle.stypo</string>\n      <string>boxVerticalDoubleAndRightSingle.stypo</string>\n      <string>boxVerticalHeavyAndHorizontalLight.stypo</string>\n      <string>boxVerticalHeavyAndLeftLight.stypo</string>\n      <string>boxVerticalHeavyAndRightLight.stypo</string>\n      <string>boxVerticalLightAndHorizontalHeavy.stypo</string>\n      <string>boxVerticalLightAndLeftHeavy.stypo</string>\n      <string>boxVerticalLightAndRightHeavy.stypo</string>\n      <string>boxVerticalSingleAndHorizontalDouble.stypo</string>\n      <string>boxVerticalSingleAndLeftDouble.stypo</string>\n      <string>boxVerticalSingleAndRightDouble.stypo</string>\n      <string>reversedRotatedFloralHeartBullet</string>\n      <string>whiteSmilingFace</string>\n      <string>blackSmilingFace</string>\n      <string>sunWithRays</string>\n      <string>venus</string>\n      <string>mars</string>\n      <string>spadeBlackSuit</string>\n      <string>clubBlackSuit</string>\n      <string>heartBlackSuit</string>\n      <string>diamondBlackSuit</string>\n      <string>checkmark</string>\n      <string>rotatedFloralHeartBullet</string>\n      <string>acknowledgeControl</string>\n      <string>backspaceControl</string>\n      <string>at</string>\n      <string>ampersand</string>\n      <string>paragraph</string>\n      <string>section</string>\n      <string>copyright</string>\n      <string>registered</string>\n      <string>published</string>\n      <string>trademark</string>\n      <string>careof</string>\n      <string>degree</string>\n      <string>minute</string>\n      <string>second</string>\n      <string>bar</string>\n      <string>brokenbar</string>\n      <string>dagger</string>\n      <string>literSign</string>\n      <string>daggerdbl</string>\n      <string>estimated</string>\n      <string>numero</string>\n      <string>bellControl</string>\n      <string>blackHexagon</string>\n      <string>blackHorizontalEllipse</string>\n      <string>blackLargeCircle</string>\n      <string>blackLargeSquare</string>\n      <string>blackMediumDiamond</string>\n      <string>blackMediumDownTriangleCentred</string>\n      <string>blackMediumLeftTriangleCentred</string>\n      <string>blackMediumLozenge</string>\n      <string>blackMediumRightTriangleCentred</string>\n      <string>blackMediumUpTriangleCentred</string>\n      <string>blackPentagon</string>\n      <string>blackSmallDiamond</string>\n      <string>blackSmallLozenge</string>\n      <string>blackVerticalEllipse</string>\n      <string>blackVerysmallSquare</string>\n      <string>blank</string>\n      <string>blankSymbol</string>\n      <string>bottomHalfBlackCircle</string>\n      <string>cancelControl</string>\n      <string>carriageReturnControl</string>\n      <string>dataLinkEscapeControl</string>\n      <string>deleteControl</string>\n      <string>deleteFormTwoControl</string>\n      <string>deviceControlFourControl</string>\n      <string>deviceControlOneControl</string>\n      <string>deviceControlThreeControl</string>\n      <string>deviceControlTwoControl</string>\n      <string>endOfMediumControl</string>\n      <string>endOfTextControl</string>\n      <string>endOfTransmissionBlockControl</string>\n      <string>endOfTransmissionControl</string>\n      <string>enquiryControl</string>\n      <string>escapeControl</string>\n      <string>fileSeparatorControl</string>\n      <string>formFeedControl</string>\n      <string>groupSeparatorControl</string>\n      <string>horizontalBlackHexagon</string>\n      <string>horizontalTabulationControl</string>\n      <string>house</string>\n      <string>returnsymbol</string>\n      <string>lineFeedControl</string>\n      <string>lowerHalfWhiteSquare</string>\n      <string>lowerLeftHalfWhiteSquare</string>\n      <string>negativeAcknowledgeControl</string>\n      <string>newlineControl</string>\n      <string>nullControl</string>\n      <string>prescription</string>\n      <string>recordSeparatorControl</string>\n      <string>replacementCharacter</string>\n      <string>shiftInControl</string>\n      <string>shiftOutControl</string>\n      <string>spaceControl</string>\n      <string>startOfHeadingControl</string>\n      <string>startOfTextControl</string>\n      <string>substituteControl</string>\n      <string>substituteFormTwoControl</string>\n      <string>synchronousIdleControl</string>\n      <string>topHalfBlackCircle</string>\n      <string>topHalfWhiteSquare</string>\n      <string>topRightHalfWhiteSquare</string>\n      <string>unitSeparatorControl</string>\n      <string>verticalTabulationControl</string>\n      <string>whiteHexagon</string>\n      <string>whiteHorizontalEllipse</string>\n      <string>whiteLargeSquare</string>\n      <string>whiteMediumDiamond</string>\n      <string>whiteMediumLozenge</string>\n      <string>whitePentagon</string>\n      <string>whiteSmallLozenge</string>\n      <string>whiteVerticalEllipse</string>\n      <string>whiteVerysmallSquare</string>\n      <string>acknowledgeControl.ss20</string>\n      <string>backspaceControl.ss20</string>\n      <string>bellControl.ss20</string>\n      <string>cancelControl.ss20</string>\n      <string>carriageReturnControl.ss20</string>\n      <string>dataLinkEscapeControl.ss20</string>\n      <string>endOfMediumControl.ss20</string>\n      <string>endOfTextControl.ss20</string>\n      <string>endOfTransmissionBlockControl.ss20</string>\n      <string>endOfTransmissionControl.ss20</string>\n      <string>enquiryControl.ss20</string>\n      <string>escapeControl.ss20</string>\n      <string>formFeedControl.ss20</string>\n      <string>horizontalTabulationControl.ss20</string>\n      <string>lineFeedControl.ss20</string>\n      <string>negativeAcknowledgeControl.ss20</string>\n      <string>shiftInControl.ss20</string>\n      <string>shiftOutControl.ss20</string>\n      <string>startOfHeadingControl.ss20</string>\n      <string>startOfTextControl.ss20</string>\n      <string>substituteControl.ss20</string>\n      <string>synchronousIdleControl.ss20</string>\n      <string>verticalTabulationControl.ss20</string>\n      <string>ampersand_ampersand.liga</string>\n      <string>bar_braceright.liga</string>\n      <string>bar_bracketright.liga</string>\n      <string>bar_bar.liga</string>\n      <string>bar_bar_bar.liga</string>\n      <string>bar_bar_bar_greater.liga</string>\n      <string>bar_bar_greater.liga</string>\n      <string>bar_greater.liga</string>\n      <string>dollar_greater.liga</string>\n      <string>plus_plus.liga</string>\n      <string>plus_plus_plus.liga</string>\n      <string>plus_greater.liga</string>\n      <string>equal_equal.liga</string>\n      <string>equal_equal_equal.liga</string>\n      <string>equal_greater_greater.liga</string>\n      <string>equal_less_less.liga</string>\n      <string>greater_equal.liga</string>\n      <string>greater_greater.liga</string>\n      <string>greater_greater_equal.liga</string>\n      <string>greater_greater_greater.liga</string>\n      <string>less_exclam_hyphen_hyphen.liga</string>\n      <string>less_asterisk.liga</string>\n      <string>less_asterisk_greater.liga</string>\n      <string>less_bar.liga</string>\n      <string>less_bar_bar.liga</string>\n      <string>less_bar_bar_bar.liga</string>\n      <string>less_bar_greater.liga</string>\n      <string>less_dollar.liga</string>\n      <string>less_dollar_greater.liga</string>\n      <string>less_plus.liga</string>\n      <string>less_plus_greater.liga</string>\n      <string>less_equal.liga</string>\n      <string>less_greater.liga</string>\n      <string>less_less.liga</string>\n      <string>less_less_equal.liga</string>\n      <string>less_less_less.liga</string>\n      <string>less_asciitilde.liga</string>\n      <string>less_asciitilde_greater.liga</string>\n      <string>less_asciitilde_asciitilde.liga</string>\n      <string>less_slash.liga</string>\n      <string>less_slash_greater.liga</string>\n      <string>asciitilde_hyphen.liga</string>\n      <string>asciitilde_at.liga</string>\n      <string>asciitilde_equal.liga</string>\n      <string>asciitilde_greater.liga</string>\n      <string>asciitilde_asciitilde.liga</string>\n      <string>asciitilde_asciitilde_greater.liga</string>\n      <string>asciicircum_equal.liga</string>\n      <string>percent_percent.liga</string>\n      <string>bar_underscore_middle.seq</string>\n      <string>bar_bar_equal_middle.seq</string>\n      <string>bar_equal_middle.seq</string>\n      <string>bar_bar_equal_end.seq</string>\n      <string>bar_bar_equal_start.seq</string>\n      <string>bar_bar_hyphen_middle.seq</string>\n      <string>bar_hyphen_middle.seq</string>\n      <string>bar_bar_hyphen_end.seq</string>\n      <string>bar_bar_hyphen_start.seq</string>\n      <string>bar_equal_end.seq</string>\n      <string>bar_equal_start.seq</string>\n      <string>bar_hyphen_end.seq</string>\n      <string>bar_hyphen_start.seq</string>\n      <string>equal_middle.seq</string>\n      <string>equal_end.seq</string>\n      <string>equal_start.seq</string>\n      <string>greater_greater_equal_middle.seq</string>\n      <string>greater_equal_middle.seq</string>\n      <string>greater_greater_equal_end.seq</string>\n      <string>greater_greater_equal_start.seq</string>\n      <string>greater_equal_start.seq</string>\n      <string>greater_equal_end.seq</string>\n      <string>greater_greater_hyphen_middle.seq</string>\n      <string>greater_hyphen_middle.seq</string>\n      <string>greater_greater_hyphen_end.seq</string>\n      <string>greater_greater_hyphen_start.seq</string>\n      <string>greater_hyphen_start.seq</string>\n      <string>greater_hyphen_end.seq</string>\n      <string>less_less_equal_middle.seq</string>\n      <string>less_equal_middle.seq</string>\n      <string>less_less_equal_end.seq</string>\n      <string>less_less_equal_start.seq</string>\n      <string>less_equal_end.seq</string>\n      <string>less_equal_start.seq</string>\n      <string>less_less_hyphen_middle.seq</string>\n      <string>less_hyphen_middle.seq</string>\n      <string>less_less_hyphen_end.seq</string>\n      <string>less_less_hyphen_start.seq</string>\n      <string>less_hyphen_end.seq</string>\n      <string>less_hyphen_start.seq</string>\n      <string>note-musical</string>\n      <string>notedbl-musical</string>\n      <string>blank-braille</string>\n      <string>dots1-braille</string>\n      <string>dots12-braille</string>\n      <string>dots123-braille</string>\n      <string>dots1234-braille</string>\n      <string>dots12345-braille</string>\n      <string>dots123456-braille</string>\n      <string>dots1234567-braille</string>\n      <string>dots12345678-braille</string>\n      <string>dots1234568-braille</string>\n      <string>dots123457-braille</string>\n      <string>dots1234578-braille</string>\n      <string>dots123458-braille</string>\n      <string>dots12346-braille</string>\n      <string>dots123467-braille</string>\n      <string>dots1234678-braille</string>\n      <string>dots123468-braille</string>\n      <string>dots12347-braille</string>\n      <string>dots123478-braille</string>\n      <string>dots12348-braille</string>\n      <string>dots1235-braille</string>\n      <string>dots12356-braille</string>\n      <string>dots123567-braille</string>\n      <string>dots1235678-braille</string>\n      <string>dots123568-braille</string>\n      <string>dots12357-braille</string>\n      <string>dots123578-braille</string>\n      <string>dots12358-braille</string>\n      <string>dots1236-braille</string>\n      <string>dots12367-braille</string>\n      <string>dots123678-braille</string>\n      <string>dots12368-braille</string>\n      <string>dots1237-braille</string>\n      <string>dots12378-braille</string>\n      <string>dots1238-braille</string>\n      <string>dots124-braille</string>\n      <string>dots1245-braille</string>\n      <string>dots12456-braille</string>\n      <string>dots124567-braille</string>\n      <string>dots1245678-braille</string>\n      <string>dots124568-braille</string>\n      <string>dots12457-braille</string>\n      <string>dots124578-braille</string>\n      <string>dots12458-braille</string>\n      <string>dots1246-braille</string>\n      <string>dots12467-braille</string>\n      <string>dots124678-braille</string>\n      <string>dots12468-braille</string>\n      <string>dots1247-braille</string>\n      <string>dots12478-braille</string>\n      <string>dots1248-braille</string>\n      <string>dots125-braille</string>\n      <string>dots1256-braille</string>\n      <string>dots12567-braille</string>\n      <string>dots125678-braille</string>\n      <string>dots12568-braille</string>\n      <string>dots1257-braille</string>\n      <string>dots12578-braille</string>\n      <string>dots1258-braille</string>\n      <string>dots126-braille</string>\n      <string>dots1267-braille</string>\n      <string>dots12678-braille</string>\n      <string>dots1268-braille</string>\n      <string>dots127-braille</string>\n      <string>dots1278-braille</string>\n      <string>dots128-braille</string>\n      <string>dots13-braille</string>\n      <string>dots134-braille</string>\n      <string>dots1345-braille</string>\n      <string>dots13456-braille</string>\n      <string>dots134567-braille</string>\n      <string>dots1345678-braille</string>\n      <string>dots134568-braille</string>\n      <string>dots13457-braille</string>\n      <string>dots134578-braille</string>\n      <string>dots13458-braille</string>\n      <string>dots1346-braille</string>\n      <string>dots13467-braille</string>\n      <string>dots134678-braille</string>\n      <string>dots13468-braille</string>\n      <string>dots1347-braille</string>\n      <string>dots13478-braille</string>\n      <string>dots1348-braille</string>\n      <string>dots135-braille</string>\n      <string>dots1356-braille</string>\n      <string>dots13567-braille</string>\n      <string>dots135678-braille</string>\n      <string>dots13568-braille</string>\n      <string>dots1357-braille</string>\n      <string>dots13578-braille</string>\n      <string>dots1358-braille</string>\n      <string>dots136-braille</string>\n      <string>dots1367-braille</string>\n      <string>dots13678-braille</string>\n      <string>dots1368-braille</string>\n      <string>dots137-braille</string>\n      <string>dots1378-braille</string>\n      <string>dots138-braille</string>\n      <string>dots14-braille</string>\n      <string>dots145-braille</string>\n      <string>dots1456-braille</string>\n      <string>dots14567-braille</string>\n      <string>dots145678-braille</string>\n      <string>dots14568-braille</string>\n      <string>dots1457-braille</string>\n      <string>dots14578-braille</string>\n      <string>dots1458-braille</string>\n      <string>dots146-braille</string>\n      <string>dots1467-braille</string>\n      <string>dots14678-braille</string>\n      <string>dots1468-braille</string>\n      <string>dots147-braille</string>\n      <string>dots1478-braille</string>\n      <string>dots148-braille</string>\n      <string>dots15-braille</string>\n      <string>dots156-braille</string>\n      <string>dots1567-braille</string>\n      <string>dots15678-braille</string>\n      <string>dots1568-braille</string>\n      <string>dots157-braille</string>\n      <string>dots1578-braille</string>\n      <string>dots158-braille</string>\n      <string>dots16-braille</string>\n      <string>dots167-braille</string>\n      <string>dots1678-braille</string>\n      <string>dots168-braille</string>\n      <string>dots17-braille</string>\n      <string>dots178-braille</string>\n      <string>dots18-braille</string>\n      <string>dots2-braille</string>\n      <string>dots23-braille</string>\n      <string>dots234-braille</string>\n      <string>dots2345-braille</string>\n      <string>dots23456-braille</string>\n      <string>dots234567-braille</string>\n      <string>dots2345678-braille</string>\n      <string>dots234568-braille</string>\n      <string>dots23457-braille</string>\n      <string>dots234578-braille</string>\n      <string>dots23458-braille</string>\n      <string>dots2346-braille</string>\n      <string>dots23467-braille</string>\n      <string>dots234678-braille</string>\n      <string>dots23468-braille</string>\n      <string>dots2347-braille</string>\n      <string>dots23478-braille</string>\n      <string>dots2348-braille</string>\n      <string>dots235-braille</string>\n      <string>dots2356-braille</string>\n      <string>dots23567-braille</string>\n      <string>dots235678-braille</string>\n      <string>dots23568-braille</string>\n      <string>dots2357-braille</string>\n      <string>dots23578-braille</string>\n      <string>dots2358-braille</string>\n      <string>dots236-braille</string>\n      <string>dots2367-braille</string>\n      <string>dots23678-braille</string>\n      <string>dots2368-braille</string>\n      <string>dots237-braille</string>\n      <string>dots2378-braille</string>\n      <string>dots238-braille</string>\n      <string>dots24-braille</string>\n      <string>dots245-braille</string>\n      <string>dots2456-braille</string>\n      <string>dots24567-braille</string>\n      <string>dots245678-braille</string>\n      <string>dots24568-braille</string>\n      <string>dots2457-braille</string>\n      <string>dots24578-braille</string>\n      <string>dots2458-braille</string>\n      <string>dots246-braille</string>\n      <string>dots2467-braille</string>\n      <string>dots24678-braille</string>\n      <string>dots2468-braille</string>\n      <string>dots247-braille</string>\n      <string>dots2478-braille</string>\n      <string>dots248-braille</string>\n      <string>dots25-braille</string>\n      <string>dots256-braille</string>\n      <string>dots2567-braille</string>\n      <string>dots25678-braille</string>\n      <string>dots2568-braille</string>\n      <string>dots257-braille</string>\n      <string>dots2578-braille</string>\n      <string>dots258-braille</string>\n      <string>dots26-braille</string>\n      <string>dots267-braille</string>\n      <string>dots2678-braille</string>\n      <string>dots268-braille</string>\n      <string>dots27-braille</string>\n      <string>dots278-braille</string>\n      <string>dots28-braille</string>\n      <string>dots3-braille</string>\n      <string>dots34-braille</string>\n      <string>dots345-braille</string>\n      <string>dots3456-braille</string>\n      <string>dots34567-braille</string>\n      <string>dots345678-braille</string>\n      <string>dots34568-braille</string>\n      <string>dots3457-braille</string>\n      <string>dots34578-braille</string>\n      <string>dots3458-braille</string>\n      <string>dots346-braille</string>\n      <string>dots3467-braille</string>\n      <string>dots34678-braille</string>\n      <string>dots3468-braille</string>\n      <string>dots347-braille</string>\n      <string>dots3478-braille</string>\n      <string>dots348-braille</string>\n      <string>dots35-braille</string>\n      <string>dots356-braille</string>\n      <string>dots3567-braille</string>\n      <string>dots35678-braille</string>\n      <string>dots3568-braille</string>\n      <string>dots357-braille</string>\n      <string>dots3578-braille</string>\n      <string>dots358-braille</string>\n      <string>dots36-braille</string>\n      <string>dots367-braille</string>\n      <string>dots3678-braille</string>\n      <string>dots368-braille</string>\n      <string>dots37-braille</string>\n      <string>dots378-braille</string>\n      <string>dots38-braille</string>\n      <string>dots4-braille</string>\n      <string>dots45-braille</string>\n      <string>dots456-braille</string>\n      <string>dots4567-braille</string>\n      <string>dots45678-braille</string>\n      <string>dots4568-braille</string>\n      <string>dots457-braille</string>\n      <string>dots4578-braille</string>\n      <string>dots458-braille</string>\n      <string>dots46-braille</string>\n      <string>dots467-braille</string>\n      <string>dots4678-braille</string>\n      <string>dots468-braille</string>\n      <string>dots47-braille</string>\n      <string>dots478-braille</string>\n      <string>dots48-braille</string>\n      <string>dots5-braille</string>\n      <string>dots56-braille</string>\n      <string>dots567-braille</string>\n      <string>dots5678-braille</string>\n      <string>dots568-braille</string>\n      <string>dots57-braille</string>\n      <string>dots578-braille</string>\n      <string>dots58-braille</string>\n      <string>dots6-braille</string>\n      <string>dots67-braille</string>\n      <string>dots678-braille</string>\n      <string>dots68-braille</string>\n      <string>dots7-braille</string>\n      <string>dots78-braille</string>\n      <string>dots8-braille</string>\n      <string>sindhipostpositionmen-ar</string>\n      <string>percent-ar</string>\n      <string>cuberoot-ar</string>\n      <string>fourthroot-ar</string>\n      <string>perthousand-ar</string>\n      <string>numbermark-ar</string>\n      <string>samvat-ar</string>\n      <string>numeral-greek</string>\n      <string>lowernumeral-greek</string>\n      <string>apostrophemod</string>\n      <string>colontriangularmod</string>\n      <string>commaturnedmod</string>\n      <string>firsttonechinese</string>\n      <string>glottalstopmod</string>\n      <string>dieresiscomb</string>\n      <string>dotaccentcomb</string>\n      <string>gravecomb</string>\n      <string>acutecomb</string>\n      <string>hungarumlautcomb</string>\n      <string>circumflexcomb</string>\n      <string>caroncomb</string>\n      <string>brevecomb</string>\n      <string>ringcomb</string>\n      <string>tildecomb</string>\n      <string>macroncomb</string>\n      <string>hookabovecomb</string>\n      <string>commaturnedabovecomb</string>\n      <string>commaabovecomb</string>\n      <string>commaaboverightcomb</string>\n      <string>horncomb</string>\n      <string>dotbelowcomb</string>\n      <string>ringbelowcomb</string>\n      <string>commaaccentcomb</string>\n      <string>cedillacomb</string>\n      <string>ogonekcomb</string>\n      <string>macronbelowcomb</string>\n      <string>lowlinecomb</string>\n      <string>gravetonecomb</string>\n      <string>acutetonecomb</string>\n      <string>dieresis</string>\n      <string>dotaccent</string>\n      <string>grave</string>\n      <string>acute</string>\n      <string>hungarumlaut</string>\n      <string>circumflex</string>\n      <string>caron</string>\n      <string>breve</string>\n      <string>ring</string>\n      <string>tilde</string>\n      <string>macron</string>\n      <string>cedilla</string>\n      <string>ogonek</string>\n      <string>dieresiscomb.case</string>\n      <string>dotaccentcomb.case</string>\n      <string>gravecomb.case</string>\n      <string>acutecomb.case</string>\n      <string>hungarumlautcomb.case</string>\n      <string>circumflexcomb.case</string>\n      <string>caroncomb.case</string>\n      <string>brevecomb.case</string>\n      <string>ringcomb.case</string>\n      <string>tildecomb.case</string>\n      <string>macroncomb.case</string>\n      <string>hookabovecomb.case</string>\n      <string>horncomb.case</string>\n      <string>acutecomb.loclPLK</string>\n      <string>acutecomb.case.loclPLK</string>\n      <string>shindot-hb</string>\n      <string>patah-hb</string>\n      <string>qamats-hb</string>\n      <string>holam-hb</string>\n      <string>holamhaser-hb</string>\n      <string>dagesh-hb</string>\n      <string>sindot-hb</string>\n      <string>qamatsqatan-hb</string>\n      <string>tahcenter-ar</string>\n      <string>tahbelow-ar</string>\n      <string>dotabove-ar</string>\n      <string>dotbelow-ar</string>\n      <string>dotcenter-ar</string>\n      <string>twodotsverticalabove-ar</string>\n      <string>twodotsverticalbelow-ar</string>\n      <string>twodotsverticalcenter-ar</string>\n      <string>twodotshorizontalabove-ar</string>\n      <string>twodotshorizontalabove-ar.v2</string>\n      <string>twodotshorizontalbelow-ar</string>\n      <string>twodotshorizontalcenter-ar</string>\n      <string>threedotsdownabove-ar</string>\n      <string>threedotsdownbelow-ar</string>\n      <string>threedotsdowncenter-ar</string>\n      <string>threedotsupabove-ar</string>\n      <string>threedotsupabove-ar.v2</string>\n      <string>threedotsupbelow-ar</string>\n      <string>threedotsupcenter-ar</string>\n      <string>fourdotsabove-ar</string>\n      <string>fourdotsbelow-ar</string>\n      <string>fourdotscenter-ar</string>\n      <string>wasla-ar</string>\n      <string>wavyhamzaabove-ar</string>\n      <string>gafsarkashabove-ar</string>\n      <string>wavyhamzabelow-ar</string>\n      <string>alefabove-ar</string>\n      <string>alefbelow-ar</string>\n      <string>hamzaabove-ar</string>\n      <string>hamzabelow-ar</string>\n      <string>fathatan-ar</string>\n      <string>dammatan-ar</string>\n      <string>kasratan-ar</string>\n      <string>fatha-ar</string>\n      <string>damma-ar</string>\n      <string>kasra-ar</string>\n      <string>shadda-ar</string>\n      <string>sukun-ar</string>\n      <string>madda-ar</string>\n      <string>noonghunnaabove-ar</string>\n      <string>vabove-ar</string>\n      <string>vinvertedabove-ar</string>\n      <string>meemStopabove-ar</string>\n      <string>noonabove-ar</string>\n      <string>perispomenicomb</string>\n      <string>tonos</string>\n      <string>tonos.case</string>\n      <string>dieresistonos</string>\n      <string>brevecomb-cy</string>\n      <string>brevecomb-cy.case</string>\n      <string>uniFBC0</string>\n      <string>LIG</string>\n      <string>_twodotsverticalabove-ar</string>\n      <string>_fourdotscenter-ar</string>\n      <string>seenThreedotsbelowthreedots-ar.init</string>\n      <string>_four-persian.small01</string>\n      <string>_alefWavyhamzabelow-ar.fina.rlig</string>\n      <string>_alefWavyhamzaabove-ar.fina.rlig</string>\n      <string>_highhamzaAlef-ar.fina.rlig</string>\n      <string>_alefThreeabove-ar.fina.rlig</string>\n      <string>_alefTwoabove-ar.fina.rlig</string>\n      <string>_alefWasla-ar.fina.rlig</string>\n      <string>_alefMadda-ar.fina.rlig</string>\n      <string>_alefHamzabelow-ar.fina.rlig</string>\n      <string>_alefHamzaabove-ar.fina.rlig</string>\n      <string>_alef-ar.fina.short.rlig</string>\n      <string>_alef-ar.fina.rlig</string>\n      <string>seenThreedotsbelowthreedots-ar.alt</string>\n      <string>seenThreedotsbelowthreedots-ar.fina.alt</string>\n      <string>fehDotMovedbelow-ar.alt</string>\n      <string>dalTwodotsverticalbelowTahabove-ar.fina</string>\n      <string>seenThreedotsbelowthreedots-ar.fina</string>\n      <string>seenThreedotsbelowthreedots-ar.medi</string>\n      <string>_fatha-ar</string>\n      <string>_twodotshorizontal-ar</string>\n      <string>_hamzasmall-ar</string>\n      <string>_threedots-ar</string>\n      <string>_dot-ar</string>\n      <string>_tahabove</string>\n      <string>_hehgoalcomma</string>\n      <string>_alefabove</string>\n      <string>ringArabic</string>\n      <string>_ringArabic</string>\n      <string>_dots.horz.below</string>\n      <string>_vinvertedbelow-ar</string>\n      <string>_vabove</string>\n      <string>_vbelow-ar</string>\n      <string>twodotstahcenter-ar</string>\n      <string>_tahabovesmall</string>\n      <string>twodotstahbelow-ar</string>\n      <string>four-persiancenter-ar</string>\n      <string>_dotVInvertedabove</string>\n      <string>_stroke</string>\n      <string>_twodotstah</string>\n      <string>_invertedstroke</string>\n      <string>_doublebar</string>\n      <string>_bar</string>\n      <string>_damma-ar</string>\n      <string>four-persianbelow-ar</string>\n      <string>_yehRohingya-ar.fina</string>\n      <string>_yehRohingya-ar</string>\n      <string>_onedotstah</string>\n      <string>_dotVabove</string>\n      <string>tehabove-ar.small</string>\n      <string>_cuberoot_fourthroot-ar</string>\n      <string>_fourthroot-ar</string>\n      <string>_hamzawavy</string>\n      <string>_alefFathatan-ar.fina.rlig</string>\n      <string>zainVInvertedabove-ar.fina</string>\n      <string>fehDotMovedbelow-ar.fina</string>\n      <string>fehDotMovedbelow-ar.fina.alt</string>\n      <string>checkerBoardDeleteApple2</string>\n      <string>checkerBoardDeleteTrs80</string>\n      <string>checkerBoardDeleteAmstradCpc</string>\n      <string>checkerBoardDeleteAmstradCpc.stypo</string>\n      <string>checkerBoardFill</string>\n      <string>checkerBoardFill.stypo</string>\n      <string>checkerBoardFillInverse</string>\n      <string>checkerBoardFillInverse.stypo</string>\n      <string>blockQuadrant-UC</string>\n      <string>blockQuadrant-UC.stypo</string>\n      <string>blockQuadrant-LC</string>\n      <string>blockQuadrant-LC.stypo</string>\n      <string>blockQuadrant-ML</string>\n      <string>blockQuadrant-ML.stypo</string>\n      <string>blockQuadrant-MR</string>\n      <string>blockQuadrant-MR.stypo</string>\n      <string>blockTriangle-1</string>\n      <string>blockTriangle-1.stypo</string>\n      <string>blockTriangle-2</string>\n      <string>blockTriangle-2.stypo</string>\n      <string>blockTriangle-3</string>\n      <string>blockTriangle-3.stypo</string>\n      <string>blockTriangle-4</string>\n      <string>blockTriangle-4.stypo</string>\n      <string>blockTriangle-14</string>\n      <string>blockTriangle-14.stypo</string>\n      <string>blockTriangle-23</string>\n      <string>blockTriangle-23.stypo</string>\n      <string>blockTriangle-123</string>\n      <string>blockTriangle-123.stypo</string>\n      <string>blockTriangle-124</string>\n      <string>blockTriangle-124.stypo</string>\n      <string>blockTriangle-134</string>\n      <string>blockTriangle-134.stypo</string>\n      <string>blockTriangle-234</string>\n      <string>blockTriangle-234.stypo</string>\n      <string>blockCircle-1</string>\n      <string>blockCircle-1.stypo</string>\n      <string>blockCircle-2</string>\n      <string>blockCircle-2.stypo</string>\n      <string>blockCircle-3</string>\n      <string>blockCircle-3.stypo</string>\n      <string>blockCircle-4</string>\n      <string>blockCircle-4.stypo</string>\n      <string>blockCircle-UC</string>\n      <string>blockCircle-UC.stypo</string>\n      <string>blockCircle-LC</string>\n      <string>blockCircle-LC.stypo</string>\n      <string>blockCircle-ML</string>\n      <string>blockCircle-ML.stypo</string>\n      <string>blockCircle-MR</string>\n      <string>blockCircle-MR.stypo</string>\n      <string>blockSextant-1</string>\n      <string>blockSextant-1.stypo</string>\n      <string>blockSextant-2</string>\n      <string>blockSextant-2.stypo</string>\n      <string>blockSextant-12</string>\n      <string>blockSextant-12.stypo</string>\n      <string>blockSextant-3</string>\n      <string>blockSextant-3.stypo</string>\n      <string>blockSextant-13</string>\n      <string>blockSextant-13.stypo</string>\n      <string>blockSextant-23</string>\n      <string>blockSextant-23.stypo</string>\n      <string>blockSextant-123</string>\n      <string>blockSextant-123.stypo</string>\n      <string>blockSextant-4</string>\n      <string>blockSextant-4.stypo</string>\n      <string>blockSextant-14</string>\n      <string>blockSextant-14.stypo</string>\n      <string>blockSextant-24</string>\n      <string>blockSextant-24.stypo</string>\n      <string>blockSextant-124</string>\n      <string>blockSextant-124.stypo</string>\n      <string>blockSextant-34</string>\n      <string>blockSextant-34.stypo</string>\n      <string>blockSextant-134</string>\n      <string>blockSextant-134.stypo</string>\n      <string>blockSextant-234</string>\n      <string>blockSextant-234.stypo</string>\n      <string>blockSextant-1234</string>\n      <string>blockSextant-1234.stypo</string>\n      <string>blockSextant-5</string>\n      <string>blockSextant-5.stypo</string>\n      <string>blockSextant-15</string>\n      <string>blockSextant-15.stypo</string>\n      <string>blockSextant-25</string>\n      <string>blockSextant-25.stypo</string>\n      <string>blockSextant-125</string>\n      <string>blockSextant-125.stypo</string>\n      <string>blockSextant-35</string>\n      <string>blockSextant-35.stypo</string>\n      <string>blockSextant-235</string>\n      <string>blockSextant-235.stypo</string>\n      <string>blockSextant-1235</string>\n      <string>blockSextant-1235.stypo</string>\n      <string>blockSextant-45</string>\n      <string>blockSextant-45.stypo</string>\n      <string>blockSextant-145</string>\n      <string>blockSextant-145.stypo</string>\n      <string>blockSextant-245</string>\n      <string>blockSextant-245.stypo</string>\n      <string>blockSextant-1245</string>\n      <string>blockSextant-1245.stypo</string>\n      <string>blockSextant-345</string>\n      <string>blockSextant-345.stypo</string>\n      <string>blockSextant-1345</string>\n      <string>blockSextant-1345.stypo</string>\n      <string>blockSextant-2345</string>\n      <string>blockSextant-2345.stypo</string>\n      <string>blockSextant-12345</string>\n      <string>blockSextant-12345.stypo</string>\n      <string>blockSextant-6</string>\n      <string>blockSextant-6.stypo</string>\n      <string>blockSextant-16</string>\n      <string>blockSextant-16.stypo</string>\n      <string>blockSextant-26</string>\n      <string>blockSextant-26.stypo</string>\n      <string>blockSextant-126</string>\n      <string>blockSextant-126.stypo</string>\n      <string>blockSextant-36</string>\n      <string>blockSextant-36.stypo</string>\n      <string>blockSextant-136</string>\n      <string>blockSextant-136.stypo</string>\n      <string>blockSextant-236</string>\n      <string>blockSextant-236.stypo</string>\n      <string>blockSextant-1236</string>\n      <string>blockSextant-1236.stypo</string>\n      <string>blockSextant-46</string>\n      <string>blockSextant-46.stypo</string>\n      <string>blockSextant-146</string>\n      <string>blockSextant-146.stypo</string>\n      <string>blockSextant-1246</string>\n      <string>blockSextant-1246.stypo</string>\n      <string>blockSextant-346</string>\n      <string>blockSextant-346.stypo</string>\n      <string>blockSextant-1346</string>\n      <string>blockSextant-1346.stypo</string>\n      <string>blockSextant-2346</string>\n      <string>blockSextant-2346.stypo</string>\n      <string>blockSextant-12346</string>\n      <string>blockSextant-12346.stypo</string>\n      <string>blockSextant-56</string>\n      <string>blockSextant-56.stypo</string>\n      <string>blockSextant-156</string>\n      <string>blockSextant-156.stypo</string>\n      <string>blockSextant-256</string>\n      <string>blockSextant-256.stypo</string>\n      <string>blockSextant-1256</string>\n      <string>blockSextant-1256.stypo</string>\n      <string>blockSextant-356</string>\n      <string>blockSextant-356.stypo</string>\n      <string>blockSextant-1356</string>\n      <string>blockSextant-1356.stypo</string>\n      <string>blockSextant-2356</string>\n      <string>blockSextant-2356.stypo</string>\n      <string>blockSextant-12356</string>\n      <string>blockSextant-12356.stypo</string>\n      <string>blockSextant-456</string>\n      <string>blockSextant-456.stypo</string>\n      <string>blockSextant-1456</string>\n      <string>blockSextant-1456.stypo</string>\n      <string>blockSextant-2456</string>\n      <string>blockSextant-2456.stypo</string>\n      <string>blockSextant-12456</string>\n      <string>blockSextant-12456.stypo</string>\n      <string>blockSextant-3456</string>\n      <string>blockSextant-3456.stypo</string>\n      <string>blockSextant-13456</string>\n      <string>blockSextant-13456.stypo</string>\n      <string>blockSextant-23456</string>\n      <string>blockSextant-23456.stypo</string>\n      <string>blockDiagonal-1FB3C</string>\n      <string>blockDiagonal-1FB3C.stypo</string>\n      <string>blockDiagonal-1FB3D</string>\n      <string>blockDiagonal-1FB3D.stypo</string>\n      <string>blockDiagonal-1FB3E</string>\n      <string>blockDiagonal-1FB3E.stypo</string>\n      <string>blockDiagonal-1FB3F</string>\n      <string>blockDiagonal-1FB3F.stypo</string>\n      <string>blockDiagonal-1FB40</string>\n      <string>blockDiagonal-1FB40.stypo</string>\n      <string>blockDiagonal-1FB41</string>\n      <string>blockDiagonal-1FB41.stypo</string>\n      <string>blockDiagonal-1FB42</string>\n      <string>blockDiagonal-1FB42.stypo</string>\n      <string>blockDiagonal-1FB43</string>\n      <string>blockDiagonal-1FB43.stypo</string>\n      <string>blockDiagonal-1FB44</string>\n      <string>blockDiagonal-1FB44.stypo</string>\n      <string>blockDiagonal-1FB45</string>\n      <string>blockDiagonal-1FB45.stypo</string>\n      <string>blockDiagonal-1FB46</string>\n      <string>blockDiagonal-1FB46.stypo</string>\n      <string>blockDiagonal-1FB47</string>\n      <string>blockDiagonal-1FB47.stypo</string>\n      <string>blockDiagonal-1FB48</string>\n      <string>blockDiagonal-1FB48.stypo</string>\n      <string>blockDiagonal-1FB49</string>\n      <string>blockDiagonal-1FB49.stypo</string>\n      <string>blockDiagonal-1FB4A</string>\n      <string>blockDiagonal-1FB4A.stypo</string>\n      <string>blockDiagonal-1FB4B</string>\n      <string>blockDiagonal-1FB4B.stypo</string>\n      <string>blockDiagonal-1FB4C</string>\n      <string>blockDiagonal-1FB4C.stypo</string>\n      <string>blockDiagonal-1FB4D</string>\n      <string>blockDiagonal-1FB4D.stypo</string>\n      <string>blockDiagonal-1FB4E</string>\n      <string>blockDiagonal-1FB4E.stypo</string>\n      <string>blockDiagonal-1FB4F</string>\n      <string>blockDiagonal-1FB4F.stypo</string>\n      <string>blockDiagonal-1FB50</string>\n      <string>blockDiagonal-1FB50.stypo</string>\n      <string>blockDiagonal-1FB51</string>\n      <string>blockDiagonal-1FB51.stypo</string>\n      <string>blockDiagonal-1FB52</string>\n      <string>blockDiagonal-1FB52.stypo</string>\n      <string>blockDiagonal-1FB53</string>\n      <string>blockDiagonal-1FB53.stypo</string>\n      <string>blockDiagonal-1FB54</string>\n      <string>blockDiagonal-1FB54.stypo</string>\n      <string>blockDiagonal-1FB55</string>\n      <string>blockDiagonal-1FB55.stypo</string>\n      <string>blockDiagonal-1FB56</string>\n      <string>blockDiagonal-1FB56.stypo</string>\n      <string>blockDiagonal-1FB57</string>\n      <string>blockDiagonal-1FB57.stypo</string>\n      <string>blockDiagonal-1FB58</string>\n      <string>blockDiagonal-1FB58.stypo</string>\n      <string>blockDiagonal-1FB59</string>\n      <string>blockDiagonal-1FB59.stypo</string>\n      <string>blockDiagonal-1FB5A</string>\n      <string>blockDiagonal-1FB5A.stypo</string>\n      <string>blockDiagonal-1FB5B</string>\n      <string>blockDiagonal-1FB5B.stypo</string>\n      <string>blockDiagonal-1FB5C</string>\n      <string>blockDiagonal-1FB5C.stypo</string>\n      <string>blockDiagonal-1FB5D</string>\n      <string>blockDiagonal-1FB5D.stypo</string>\n      <string>blockDiagonal-1FB5E</string>\n      <string>blockDiagonal-1FB5E.stypo</string>\n      <string>blockDiagonal-1FB5F</string>\n      <string>blockDiagonal-1FB5F.stypo</string>\n      <string>blockDiagonal-1FB60</string>\n      <string>blockDiagonal-1FB60.stypo</string>\n      <string>blockDiagonal-1FB61</string>\n      <string>blockDiagonal-1FB61.stypo</string>\n      <string>blockDiagonal-1FB62</string>\n      <string>blockDiagonal-1FB62.stypo</string>\n      <string>blockDiagonal-1FB63</string>\n      <string>blockDiagonal-1FB63.stypo</string>\n      <string>blockDiagonal-1FB64</string>\n      <string>blockDiagonal-1FB64.stypo</string>\n      <string>blockDiagonal-1FB65</string>\n      <string>blockDiagonal-1FB65.stypo</string>\n      <string>blockDiagonal-1FB66</string>\n      <string>blockDiagonal-1FB66.stypo</string>\n      <string>blockDiagonal-1FB67</string>\n      <string>blockDiagonal-1FB67.stypo</string>\n      <string>blockOctant-1</string>\n      <string>blockOctant-1.stypo</string>\n      <string>blockOctant-2</string>\n      <string>blockOctant-2.stypo</string>\n      <string>blockOctant-12</string>\n      <string>blockOctant-12.stypo</string>\n      <string>blockOctant-3</string>\n      <string>blockOctant-3.stypo</string>\n      <string>blockOctant-23</string>\n      <string>blockOctant-23.stypo</string>\n      <string>blockOctant-123</string>\n      <string>blockOctant-123.stypo</string>\n      <string>blockOctant-4</string>\n      <string>blockOctant-4.stypo</string>\n      <string>blockOctant-14</string>\n      <string>blockOctant-14.stypo</string>\n      <string>blockOctant-124</string>\n      <string>blockOctant-124.stypo</string>\n      <string>blockOctant-34</string>\n      <string>blockOctant-34.stypo</string>\n      <string>blockOctant-134</string>\n      <string>blockOctant-134.stypo</string>\n      <string>blockOctant-234</string>\n      <string>blockOctant-234.stypo</string>\n      <string>blockOctant-5</string>\n      <string>blockOctant-5.stypo</string>\n      <string>blockOctant-15</string>\n      <string>blockOctant-15.stypo</string>\n      <string>blockOctant-25</string>\n      <string>blockOctant-25.stypo</string>\n      <string>blockOctant-125</string>\n      <string>blockOctant-125.stypo</string>\n      <string>blockOctant-135</string>\n      <string>blockOctant-135.stypo</string>\n      <string>blockOctant-235</string>\n      <string>blockOctant-235.stypo</string>\n      <string>blockOctant-1235</string>\n      <string>blockOctant-1235.stypo</string>\n      <string>blockOctant-45</string>\n      <string>blockOctant-45.stypo</string>\n      <string>blockOctant-145</string>\n      <string>blockOctant-145.stypo</string>\n      <string>blockOctant-245</string>\n      <string>blockOctant-245.stypo</string>\n      <string>blockOctant-1245</string>\n      <string>blockOctant-1245.stypo</string>\n      <string>blockOctant-345</string>\n      <string>blockOctant-345.stypo</string>\n      <string>blockOctant-1345</string>\n      <string>blockOctant-1345.stypo</string>\n      <string>blockOctant-2345</string>\n      <string>blockOctant-2345.stypo</string>\n      <string>blockOctant-12345</string>\n      <string>blockOctant-12345.stypo</string>\n      <string>blockOctant-6</string>\n      <string>blockOctant-6.stypo</string>\n      <string>blockOctant-16</string>\n      <string>blockOctant-16.stypo</string>\n      <string>blockOctant-26</string>\n      <string>blockOctant-26.stypo</string>\n      <string>blockOctant-126</string>\n      <string>blockOctant-126.stypo</string>\n      <string>blockOctant-36</string>\n      <string>blockOctant-36.stypo</string>\n      <string>blockOctant-136</string>\n      <string>blockOctant-136.stypo</string>\n      <string>blockOctant-236</string>\n      <string>blockOctant-236.stypo</string>\n      <string>blockOctant-1236</string>\n      <string>blockOctant-1236.stypo</string>\n      <string>blockOctant-146</string>\n      <string>blockOctant-146.stypo</string>\n      <string>blockOctant-246</string>\n      <string>blockOctant-246.stypo</string>\n      <string>blockOctant-1246</string>\n      <string>blockOctant-1246.stypo</string>\n      <string>blockOctant-346</string>\n      <string>blockOctant-346.stypo</string>\n      <string>blockOctant-1346</string>\n      <string>blockOctant-1346.stypo</string>\n      <string>blockOctant-2346</string>\n      <string>blockOctant-2346.stypo</string>\n      <string>blockOctant-12346</string>\n      <string>blockOctant-12346.stypo</string>\n      <string>blockOctant-56</string>\n      <string>blockOctant-56.stypo</string>\n      <string>blockOctant-156</string>\n      <string>blockOctant-156.stypo</string>\n      <string>blockOctant-256</string>\n      <string>blockOctant-256.stypo</string>\n      <string>blockOctant-1256</string>\n      <string>blockOctant-1256.stypo</string>\n      <string>blockOctant-356</string>\n      <string>blockOctant-356.stypo</string>\n      <string>blockOctant-1356</string>\n      <string>blockOctant-1356.stypo</string>\n      <string>blockOctant-2356</string>\n      <string>blockOctant-2356.stypo</string>\n      <string>blockOctant-12356</string>\n      <string>blockOctant-12356.stypo</string>\n      <string>blockOctant-456</string>\n      <string>blockOctant-456.stypo</string>\n      <string>blockOctant-1456</string>\n      <string>blockOctant-1456.stypo</string>\n      <string>blockOctant-2456</string>\n      <string>blockOctant-2456.stypo</string>\n      <string>blockOctant-12456</string>\n      <string>blockOctant-12456.stypo</string>\n      <string>blockOctant-3456</string>\n      <string>blockOctant-3456.stypo</string>\n      <string>blockOctant-13456</string>\n      <string>blockOctant-13456.stypo</string>\n      <string>blockOctant-23456</string>\n      <string>blockOctant-23456.stypo</string>\n      <string>blockOctant-123456</string>\n      <string>blockOctant-123456.stypo</string>\n      <string>blockOctant-7</string>\n      <string>blockOctant-7.stypo</string>\n      <string>blockOctant-17</string>\n      <string>blockOctant-17.stypo</string>\n      <string>blockOctant-27</string>\n      <string>blockOctant-27.stypo</string>\n      <string>blockOctant-127</string>\n      <string>blockOctant-127.stypo</string>\n      <string>blockOctant-37</string>\n      <string>blockOctant-37.stypo</string>\n      <string>blockOctant-137</string>\n      <string>blockOctant-137.stypo</string>\n      <string>blockOctant-237</string>\n      <string>blockOctant-237.stypo</string>\n      <string>blockOctant-1237</string>\n      <string>blockOctant-1237.stypo</string>\n      <string>blockOctant-47</string>\n      <string>blockOctant-47.stypo</string>\n      <string>blockOctant-147</string>\n      <string>blockOctant-147.stypo</string>\n      <string>blockOctant-247</string>\n      <string>blockOctant-247.stypo</string>\n      <string>blockOctant-1247</string>\n      <string>blockOctant-1247.stypo</string>\n      <string>blockOctant-347</string>\n      <string>blockOctant-347.stypo</string>\n      <string>blockOctant-1347</string>\n      <string>blockOctant-1347.stypo</string>\n      <string>blockOctant-2347</string>\n      <string>blockOctant-2347.stypo</string>\n      <string>blockOctant-12347</string>\n      <string>blockOctant-12347.stypo</string>\n      <string>blockOctant-157</string>\n      <string>blockOctant-157.stypo</string>\n      <string>blockOctant-257</string>\n      <string>blockOctant-257.stypo</string>\n      <string>blockOctant-1257</string>\n      <string>blockOctant-1257.stypo</string>\n      <string>blockOctant-357</string>\n      <string>blockOctant-357.stypo</string>\n      <string>blockOctant-2357</string>\n      <string>blockOctant-2357.stypo</string>\n      <string>blockOctant-12357</string>\n      <string>blockOctant-12357.stypo</string>\n      <string>blockOctant-457</string>\n      <string>blockOctant-457.stypo</string>\n      <string>blockOctant-1457</string>\n      <string>blockOctant-1457.stypo</string>\n      <string>blockOctant-12457</string>\n      <string>blockOctant-12457.stypo</string>\n      <string>blockOctant-3457</string>\n      <string>blockOctant-3457.stypo</string>\n      <string>blockOctant-13457</string>\n      <string>blockOctant-13457.stypo</string>\n      <string>blockOctant-23457</string>\n      <string>blockOctant-23457.stypo</string>\n      <string>blockOctant-67</string>\n      <string>blockOctant-67.stypo</string>\n      <string>blockOctant-167</string>\n      <string>blockOctant-167.stypo</string>\n      <string>blockOctant-267</string>\n      <string>blockOctant-267.stypo</string>\n      <string>blockOctant-1267</string>\n      <string>blockOctant-1267.stypo</string>\n      <string>blockOctant-367</string>\n      <string>blockOctant-367.stypo</string>\n      <string>blockOctant-1367</string>\n      <string>blockOctant-1367.stypo</string>\n      <string>blockOctant-2367</string>\n      <string>blockOctant-2367.stypo</string>\n      <string>blockOctant-12367</string>\n      <string>blockOctant-12367.stypo</string>\n      <string>blockOctant-467</string>\n      <string>blockOctant-467.stypo</string>\n      <string>blockOctant-1467</string>\n      <string>blockOctant-1467.stypo</string>\n      <string>blockOctant-2467</string>\n      <string>blockOctant-2467.stypo</string>\n      <string>blockOctant-12467</string>\n      <string>blockOctant-12467.stypo</string>\n      <string>blockOctant-3467</string>\n      <string>blockOctant-3467.stypo</string>\n      <string>blockOctant-13467</string>\n      <string>blockOctant-13467.stypo</string>\n      <string>blockOctant-23467</string>\n      <string>blockOctant-23467.stypo</string>\n      <string>blockOctant-123467</string>\n      <string>blockOctant-123467.stypo</string>\n      <string>blockOctant-567</string>\n      <string>blockOctant-567.stypo</string>\n      <string>blockOctant-1567</string>\n      <string>blockOctant-1567.stypo</string>\n      <string>blockOctant-2567</string>\n      <string>blockOctant-2567.stypo</string>\n      <string>blockOctant-12567</string>\n      <string>blockOctant-12567.stypo</string>\n      <string>blockOctant-3567</string>\n      <string>blockOctant-3567.stypo</string>\n      <string>blockOctant-13567</string>\n      <string>blockOctant-13567.stypo</string>\n      <string>blockOctant-23567</string>\n      <string>blockOctant-23567.stypo</string>\n      <string>blockOctant-123567</string>\n      <string>blockOctant-123567.stypo</string>\n      <string>blockOctant-4567</string>\n      <string>blockOctant-4567.stypo</string>\n      <string>blockOctant-14567</string>\n      <string>blockOctant-14567.stypo</string>\n      <string>blockOctant-24567</string>\n      <string>blockOctant-24567.stypo</string>\n      <string>blockOctant-124567</string>\n      <string>blockOctant-124567.stypo</string>\n      <string>blockOctant-34567</string>\n      <string>blockOctant-34567.stypo</string>\n      <string>blockOctant-134567</string>\n      <string>blockOctant-134567.stypo</string>\n      <string>blockOctant-234567</string>\n      <string>blockOctant-234567.stypo</string>\n      <string>blockOctant-1234567</string>\n      <string>blockOctant-1234567.stypo</string>\n      <string>blockOctant-8</string>\n      <string>blockOctant-8.stypo</string>\n      <string>blockOctant-18</string>\n      <string>blockOctant-18.stypo</string>\n      <string>blockOctant-28</string>\n      <string>blockOctant-28.stypo</string>\n      <string>blockOctant-128</string>\n      <string>blockOctant-128.stypo</string>\n      <string>blockOctant-38</string>\n      <string>blockOctant-38.stypo</string>\n      <string>blockOctant-138</string>\n      <string>blockOctant-138.stypo</string>\n      <string>blockOctant-238</string>\n      <string>blockOctant-238.stypo</string>\n      <string>blockOctant-1238</string>\n      <string>blockOctant-1238.stypo</string>\n      <string>blockOctant-48</string>\n      <string>blockOctant-48.stypo</string>\n      <string>blockOctant-148</string>\n      <string>blockOctant-148.stypo</string>\n      <string>blockOctant-248</string>\n      <string>blockOctant-248.stypo</string>\n      <string>blockOctant-1248</string>\n      <string>blockOctant-1248.stypo</string>\n      <string>blockOctant-348</string>\n      <string>blockOctant-348.stypo</string>\n      <string>blockOctant-1348</string>\n      <string>blockOctant-1348.stypo</string>\n      <string>blockOctant-2348</string>\n      <string>blockOctant-2348.stypo</string>\n      <string>blockOctant-12348</string>\n      <string>blockOctant-12348.stypo</string>\n      <string>blockOctant-58</string>\n      <string>blockOctant-58.stypo</string>\n      <string>blockOctant-158</string>\n      <string>blockOctant-158.stypo</string>\n      <string>blockOctant-258</string>\n      <string>blockOctant-258.stypo</string>\n      <string>blockOctant-1258</string>\n      <string>blockOctant-1258.stypo</string>\n      <string>blockOctant-358</string>\n      <string>blockOctant-358.stypo</string>\n      <string>blockOctant-1358</string>\n      <string>blockOctant-1358.stypo</string>\n      <string>blockOctant-2358</string>\n      <string>blockOctant-2358.stypo</string>\n      <string>blockOctant-12358</string>\n      <string>blockOctant-12358.stypo</string>\n      <string>blockOctant-458</string>\n      <string>blockOctant-458.stypo</string>\n      <string>blockOctant-1458</string>\n      <string>blockOctant-1458.stypo</string>\n      <string>blockOctant-2458</string>\n      <string>blockOctant-2458.stypo</string>\n      <string>blockOctant-12458</string>\n      <string>blockOctant-12458.stypo</string>\n      <string>blockOctant-3458</string>\n      <string>blockOctant-3458.stypo</string>\n      <string>blockOctant-13458</string>\n      <string>blockOctant-13458.stypo</string>\n      <string>blockOctant-23458</string>\n      <string>blockOctant-23458.stypo</string>\n      <string>blockOctant-123458</string>\n      <string>blockOctant-123458.stypo</string>\n      <string>blockOctant-168</string>\n      <string>blockOctant-168.stypo</string>\n      <string>blockOctant-268</string>\n      <string>blockOctant-268.stypo</string>\n      <string>blockOctant-1268</string>\n      <string>blockOctant-1268.stypo</string>\n      <string>blockOctant-368</string>\n      <string>blockOctant-368.stypo</string>\n      <string>blockOctant-2368</string>\n      <string>blockOctant-2368.stypo</string>\n      <string>blockOctant-12368</string>\n      <string>blockOctant-12368.stypo</string>\n      <string>blockOctant-468</string>\n      <string>blockOctant-468.stypo</string>\n      <string>blockOctant-1468</string>\n      <string>blockOctant-1468.stypo</string>\n      <string>blockOctant-12468</string>\n      <string>blockOctant-12468.stypo</string>\n      <string>blockOctant-3468</string>\n      <string>blockOctant-3468.stypo</string>\n      <string>blockOctant-13468</string>\n      <string>blockOctant-13468.stypo</string>\n      <string>blockOctant-23468</string>\n      <string>blockOctant-23468.stypo</string>\n      <string>blockOctant-568</string>\n      <string>blockOctant-568.stypo</string>\n      <string>blockOctant-1568</string>\n      <string>blockOctant-1568.stypo</string>\n      <string>blockOctant-2568</string>\n      <string>blockOctant-2568.stypo</string>\n      <string>blockOctant-12568</string>\n      <string>blockOctant-12568.stypo</string>\n      <string>blockOctant-3568</string>\n      <string>blockOctant-3568.stypo</string>\n      <string>blockOctant-13568</string>\n      <string>blockOctant-13568.stypo</string>\n      <string>blockOctant-23568</string>\n      <string>blockOctant-23568.stypo</string>\n      <string>blockOctant-123568</string>\n      <string>blockOctant-123568.stypo</string>\n      <string>blockOctant-4568</string>\n      <string>blockOctant-4568.stypo</string>\n      <string>blockOctant-14568</string>\n      <string>blockOctant-14568.stypo</string>\n      <string>blockOctant-24568</string>\n      <string>blockOctant-24568.stypo</string>\n      <string>blockOctant-124568</string>\n      <string>blockOctant-124568.stypo</string>\n      <string>blockOctant-34568</string>\n      <string>blockOctant-34568.stypo</string>\n      <string>blockOctant-134568</string>\n      <string>blockOctant-134568.stypo</string>\n      <string>blockOctant-234568</string>\n      <string>blockOctant-234568.stypo</string>\n      <string>blockOctant-1234568</string>\n      <string>blockOctant-1234568.stypo</string>\n      <string>blockOctant-178</string>\n      <string>blockOctant-178.stypo</string>\n      <string>blockOctant-278</string>\n      <string>blockOctant-278.stypo</string>\n      <string>blockOctant-1278</string>\n      <string>blockOctant-1278.stypo</string>\n      <string>blockOctant-378</string>\n      <string>blockOctant-378.stypo</string>\n      <string>blockOctant-1378</string>\n      <string>blockOctant-1378.stypo</string>\n      <string>blockOctant-2378</string>\n      <string>blockOctant-2378.stypo</string>\n      <string>blockOctant-12378</string>\n      <string>blockOctant-12378.stypo</string>\n      <string>blockOctant-478</string>\n      <string>blockOctant-478.stypo</string>\n      <string>blockOctant-1478</string>\n      <string>blockOctant-1478.stypo</string>\n      <string>blockOctant-2478</string>\n      <string>blockOctant-2478.stypo</string>\n      <string>blockOctant-12478</string>\n      <string>blockOctant-12478.stypo</string>\n      <string>blockOctant-3478</string>\n      <string>blockOctant-3478.stypo</string>\n      <string>blockOctant-13478</string>\n      <string>blockOctant-13478.stypo</string>\n      <string>blockOctant-23478</string>\n      <string>blockOctant-23478.stypo</string>\n      <string>blockOctant-123478</string>\n      <string>blockOctant-123478.stypo</string>\n      <string>blockOctant-578</string>\n      <string>blockOctant-578.stypo</string>\n      <string>blockOctant-1578</string>\n      <string>blockOctant-1578.stypo</string>\n      <string>blockOctant-2578</string>\n      <string>blockOctant-2578.stypo</string>\n      <string>blockOctant-12578</string>\n      <string>blockOctant-12578.stypo</string>\n      <string>blockOctant-3578</string>\n      <string>blockOctant-3578.stypo</string>\n      <string>blockOctant-13578</string>\n      <string>blockOctant-13578.stypo</string>\n      <string>blockOctant-23578</string>\n      <string>blockOctant-23578.stypo</string>\n      <string>blockOctant-123578</string>\n      <string>blockOctant-123578.stypo</string>\n      <string>blockOctant-4578</string>\n      <string>blockOctant-4578.stypo</string>\n      <string>blockOctant-14578</string>\n      <string>blockOctant-14578.stypo</string>\n      <string>blockOctant-24578</string>\n      <string>blockOctant-24578.stypo</string>\n      <string>blockOctant-124578</string>\n      <string>blockOctant-124578.stypo</string>\n      <string>blockOctant-34578</string>\n      <string>blockOctant-34578.stypo</string>\n      <string>blockOctant-134578</string>\n      <string>blockOctant-134578.stypo</string>\n      <string>blockOctant-234578</string>\n      <string>blockOctant-234578.stypo</string>\n      <string>blockOctant-1234578</string>\n      <string>blockOctant-1234578.stypo</string>\n      <string>blockOctant-678</string>\n      <string>blockOctant-678.stypo</string>\n      <string>blockOctant-1678</string>\n      <string>blockOctant-1678.stypo</string>\n      <string>blockOctant-2678</string>\n      <string>blockOctant-2678.stypo</string>\n      <string>blockOctant-12678</string>\n      <string>blockOctant-12678.stypo</string>\n      <string>blockOctant-3678</string>\n      <string>blockOctant-3678.stypo</string>\n      <string>blockOctant-13678</string>\n      <string>blockOctant-13678.stypo</string>\n      <string>blockOctant-23678</string>\n      <string>blockOctant-23678.stypo</string>\n      <string>blockOctant-123678</string>\n      <string>blockOctant-123678.stypo</string>\n      <string>blockOctant-4678</string>\n      <string>blockOctant-4678.stypo</string>\n      <string>blockOctant-14678</string>\n      <string>blockOctant-14678.stypo</string>\n      <string>blockOctant-24678</string>\n      <string>blockOctant-24678.stypo</string>\n      <string>blockOctant-124678</string>\n      <string>blockOctant-124678.stypo</string>\n      <string>blockOctant-34678</string>\n      <string>blockOctant-34678.stypo</string>\n      <string>blockOctant-134678</string>\n      <string>blockOctant-134678.stypo</string>\n      <string>blockOctant-234678</string>\n      <string>blockOctant-234678.stypo</string>\n      <string>blockOctant-1234678</string>\n      <string>blockOctant-1234678.stypo</string>\n      <string>blockOctant-15678</string>\n      <string>blockOctant-15678.stypo</string>\n      <string>blockOctant-25678</string>\n      <string>blockOctant-25678.stypo</string>\n      <string>blockOctant-125678</string>\n      <string>blockOctant-125678.stypo</string>\n      <string>blockOctant-35678</string>\n      <string>blockOctant-35678.stypo</string>\n      <string>blockOctant-235678</string>\n      <string>blockOctant-235678.stypo</string>\n      <string>blockOctant-1235678</string>\n      <string>blockOctant-1235678.stypo</string>\n      <string>blockOctant-45678</string>\n      <string>blockOctant-45678.stypo</string>\n      <string>blockOctant-145678</string>\n      <string>blockOctant-145678.stypo</string>\n      <string>blockOctant-1245678</string>\n      <string>blockOctant-1245678.stypo</string>\n      <string>blockOctant-1345678</string>\n      <string>blockOctant-1345678.stypo</string>\n      <string>blockOctant-2345678</string>\n      <string>blockOctant-2345678.stypo</string>\n      <string>blockSedecimant-1</string>\n      <string>blockSedecimant-1.stypo</string>\n      <string>blockSedecimant-2</string>\n      <string>blockSedecimant-2.stypo</string>\n      <string>blockSedecimant-3</string>\n      <string>blockSedecimant-3.stypo</string>\n      <string>blockSedecimant-4</string>\n      <string>blockSedecimant-4.stypo</string>\n      <string>blockSedecimant-5</string>\n      <string>blockSedecimant-5.stypo</string>\n      <string>blockSedecimant-6</string>\n      <string>blockSedecimant-6.stypo</string>\n      <string>blockSedecimant-7</string>\n      <string>blockSedecimant-7.stypo</string>\n      <string>blockSedecimant-8</string>\n      <string>blockSedecimant-8.stypo</string>\n      <string>blockSedecimant-9</string>\n      <string>blockSedecimant-9.stypo</string>\n      <string>blockSedecimant-A</string>\n      <string>blockSedecimant-A.stypo</string>\n      <string>blockSedecimant-B</string>\n      <string>blockSedecimant-B.stypo</string>\n      <string>blockSedecimant-C</string>\n      <string>blockSedecimant-C.stypo</string>\n      <string>blockSedecimant-D</string>\n      <string>blockSedecimant-D.stypo</string>\n      <string>blockSedecimant-E</string>\n      <string>blockSedecimant-E.stypo</string>\n      <string>blockSedecimant-F</string>\n      <string>blockSedecimant-F.stypo</string>\n      <string>blockSedecimant-G</string>\n      <string>blockSedecimant-G.stypo</string>\n      <string>blockSedecimant-EFG</string>\n      <string>blockSedecimant-EFG.stypo</string>\n      <string>blockSedecimant-DEF</string>\n      <string>blockSedecimant-DEF.stypo</string>\n      <string>blockSedecimant-9D</string>\n      <string>blockSedecimant-9D.stypo</string>\n      <string>blockSedecimant-59D</string>\n      <string>blockSedecimant-59D.stypo</string>\n      <string>blockSedecimant-159</string>\n      <string>blockSedecimant-159.stypo</string>\n      <string>blockSedecimant-15</string>\n      <string>blockSedecimant-15.stypo</string>\n      <string>blockSedecimant-123</string>\n      <string>blockSedecimant-123.stypo</string>\n      <string>blockSedecimant-234</string>\n      <string>blockSedecimant-234.stypo</string>\n      <string>blockSedecimant-48</string>\n      <string>blockSedecimant-48.stypo</string>\n      <string>blockSedecimant-48C</string>\n      <string>blockSedecimant-48C.stypo</string>\n      <string>blockSedecimant-8CG</string>\n      <string>blockSedecimant-8CG.stypo</string>\n      <string>blockSedecimant-CG</string>\n      <string>blockSedecimant-CG.stypo</string>\n      <string>verticalOneEighthBlock-2</string>\n      <string>verticalOneEighthBlock-2.stypo</string>\n      <string>verticalOneEighthBlock-3</string>\n      <string>verticalOneEighthBlock-3.stypo</string>\n      <string>verticalOneEighthBlock-4</string>\n      <string>verticalOneEighthBlock-4.stypo</string>\n      <string>verticalOneEighthBlock-5</string>\n      <string>verticalOneEighthBlock-5.stypo</string>\n      <string>verticalOneEighthBlock-6</string>\n      <string>verticalOneEighthBlock-6.stypo</string>\n      <string>verticalOneEighthBlock-7</string>\n      <string>verticalOneEighthBlock-7.stypo</string>\n      <string>horizontalOneEightBlock-2</string>\n      <string>horizontalOneEightBlock-2.stypo</string>\n      <string>horizontalOneEightBlock-3</string>\n      <string>horizontalOneEightBlock-3.stypo</string>\n      <string>horizontalOneEightBlock-4</string>\n      <string>horizontalOneEightBlock-4.stypo</string>\n      <string>horizontalOneEightBlock-5</string>\n      <string>horizontalOneEightBlock-5.stypo</string>\n      <string>horizontalOneEightBlock-6</string>\n      <string>horizontalOneEightBlock-6.stypo</string>\n      <string>horizontalOneEightBlock-7</string>\n      <string>horizontalOneEightBlock-7.stypo</string>\n      <string>leftAndLowerOneEightBlock</string>\n      <string>leftAndLowerOneEightBlock.stypo</string>\n      <string>leftAndUpperOneEightBlock</string>\n      <string>leftAndUpperOneEightBlock.stypo</string>\n      <string>rightAndUpperOneEightBlock</string>\n      <string>rightAndUpperOneEightBlock.stypo</string>\n      <string>rightAndLowerOneEightBlock</string>\n      <string>rightAndLowerOneEightBlock.stypo</string>\n      <string>upperAndLowerOneEightBlock</string>\n      <string>upperAndLowerOneEightBlock.stypo</string>\n      <string>upperThreeEighthsBlock</string>\n      <string>upperThreeEighthsBlock.stypo</string>\n      <string>upperFiveEighthsBlock</string>\n      <string>upperFiveEighthsBlock.stypo</string>\n      <string>upperSevenEighthsBlock</string>\n      <string>upperSevenEighthsBlock.stypo</string>\n      <string>rightOneQuarterBlock</string>\n      <string>rightOneQuarterBlock.stypo</string>\n      <string>rightThreeEighthsBlock</string>\n      <string>rightThreeEighthsBlock.stypo</string>\n      <string>rightFiveEighthsBlock</string>\n      <string>rightFiveEighthsBlock.stypo</string>\n      <string>rightThreeQuartersBlock</string>\n      <string>rightThreeQuartersBlock.stypo</string>\n      <string>rightSevenEighthsBlock</string>\n      <string>rightSevenEighthsBlock.stypo</string>\n      <string>leftTwoThirdsBlock</string>\n      <string>leftTwoThirdsBlock.stypo</string>\n      <string>leftOneThirdBlock</string>\n      <string>leftOneThirdBlock.stypo</string>\n      <string>heavyHorizontalFill</string>\n      <string>heavyHorizontalFill.stypo</string>\n      <string>blockSeparatedQuadrant-1</string>\n      <string>blockSeparatedQuadrant-1.stypo</string>\n      <string>blockSeparatedQuadrant-2</string>\n      <string>blockSeparatedQuadrant-2.stypo</string>\n      <string>blockSeparatedQuadrant-12</string>\n      <string>blockSeparatedQuadrant-12.stypo</string>\n      <string>blockSeparatedQuadrant-3</string>\n      <string>blockSeparatedQuadrant-3.stypo</string>\n      <string>blockSeparatedQuadrant-13</string>\n      <string>blockSeparatedQuadrant-13.stypo</string>\n      <string>blockSeparatedQuadrant-23</string>\n      <string>blockSeparatedQuadrant-23.stypo</string>\n      <string>blockSeparatedQuadrant-123</string>\n      <string>blockSeparatedQuadrant-123.stypo</string>\n      <string>blockSeparatedQuadrant-4</string>\n      <string>blockSeparatedQuadrant-4.stypo</string>\n      <string>blockSeparatedQuadrant-14</string>\n      <string>blockSeparatedQuadrant-14.stypo</string>\n      <string>blockSeparatedQuadrant-24</string>\n      <string>blockSeparatedQuadrant-24.stypo</string>\n      <string>blockSeparatedQuadrant-124</string>\n      <string>blockSeparatedQuadrant-124.stypo</string>\n      <string>blockSeparatedQuadrant-34</string>\n      <string>blockSeparatedQuadrant-34.stypo</string>\n      <string>blockSeparatedQuadrant-134</string>\n      <string>blockSeparatedQuadrant-134.stypo</string>\n      <string>blockSeparatedQuadrant-234</string>\n      <string>blockSeparatedQuadrant-234.stypo</string>\n      <string>blockSeparatedQuadrant-1234</string>\n      <string>blockSeparatedQuadrant-1234.stypo</string>\n      <string>blockSeparatedSextant-1</string>\n      <string>blockSeparatedSextant-1.stypo</string>\n      <string>blockSeparatedSextant-2</string>\n      <string>blockSeparatedSextant-2.stypo</string>\n      <string>blockSeparatedSextant-12</string>\n      <string>blockSeparatedSextant-12.stypo</string>\n      <string>blockSeparatedSextant-3</string>\n      <string>blockSeparatedSextant-3.stypo</string>\n      <string>blockSeparatedSextant-13</string>\n      <string>blockSeparatedSextant-13.stypo</string>\n      <string>blockSeparatedSextant-23</string>\n      <string>blockSeparatedSextant-23.stypo</string>\n      <string>blockSeparatedSextant-123</string>\n      <string>blockSeparatedSextant-123.stypo</string>\n      <string>blockSeparatedSextant-4</string>\n      <string>blockSeparatedSextant-4.stypo</string>\n      <string>blockSeparatedSextant-14</string>\n      <string>blockSeparatedSextant-14.stypo</string>\n      <string>blockSeparatedSextant-24</string>\n      <string>blockSeparatedSextant-24.stypo</string>\n      <string>blockSeparatedSextant-124</string>\n      <string>blockSeparatedSextant-124.stypo</string>\n      <string>blockSeparatedSextant-34</string>\n      <string>blockSeparatedSextant-34.stypo</string>\n      <string>blockSeparatedSextant-134</string>\n      <string>blockSeparatedSextant-134.stypo</string>\n      <string>blockSeparatedSextant-234</string>\n      <string>blockSeparatedSextant-234.stypo</string>\n      <string>blockSeparatedSextant-1234</string>\n      <string>blockSeparatedSextant-1234.stypo</string>\n      <string>blockSeparatedSextant-5</string>\n      <string>blockSeparatedSextant-5.stypo</string>\n      <string>blockSeparatedSextant-15</string>\n      <string>blockSeparatedSextant-15.stypo</string>\n      <string>blockSeparatedSextant-25</string>\n      <string>blockSeparatedSextant-25.stypo</string>\n      <string>blockSeparatedSextant-125</string>\n      <string>blockSeparatedSextant-125.stypo</string>\n      <string>blockSeparatedSextant-35</string>\n      <string>blockSeparatedSextant-35.stypo</string>\n      <string>blockSeparatedSextant-135</string>\n      <string>blockSeparatedSextant-135.stypo</string>\n      <string>blockSeparatedSextant-235</string>\n      <string>blockSeparatedSextant-235.stypo</string>\n      <string>blockSeparatedSextant-1235</string>\n      <string>blockSeparatedSextant-1235.stypo</string>\n      <string>blockSeparatedSextant-45</string>\n      <string>blockSeparatedSextant-45.stypo</string>\n      <string>blockSeparatedSextant-145</string>\n      <string>blockSeparatedSextant-145.stypo</string>\n      <string>blockSeparatedSextant-245</string>\n      <string>blockSeparatedSextant-245.stypo</string>\n      <string>blockSeparatedSextant-1245</string>\n      <string>blockSeparatedSextant-1245.stypo</string>\n      <string>blockSeparatedSextant-345</string>\n      <string>blockSeparatedSextant-345.stypo</string>\n      <string>blockSeparatedSextant-1345</string>\n      <string>blockSeparatedSextant-1345.stypo</string>\n      <string>blockSeparatedSextant-2345</string>\n      <string>blockSeparatedSextant-2345.stypo</string>\n      <string>blockSeparatedSextant-12345</string>\n      <string>blockSeparatedSextant-12345.stypo</string>\n      <string>blockSeparatedSextant-6</string>\n      <string>blockSeparatedSextant-6.stypo</string>\n      <string>blockSeparatedSextant-16</string>\n      <string>blockSeparatedSextant-16.stypo</string>\n      <string>blockSeparatedSextant-26</string>\n      <string>blockSeparatedSextant-26.stypo</string>\n      <string>blockSeparatedSextant-126</string>\n      <string>blockSeparatedSextant-126.stypo</string>\n      <string>blockSeparatedSextant-36</string>\n      <string>blockSeparatedSextant-36.stypo</string>\n      <string>blockSeparatedSextant-136</string>\n      <string>blockSeparatedSextant-136.stypo</string>\n      <string>blockSeparatedSextant-236</string>\n      <string>blockSeparatedSextant-236.stypo</string>\n      <string>blockSeparatedSextant-1236</string>\n      <string>blockSeparatedSextant-1236.stypo</string>\n      <string>blockSeparatedSextant-46</string>\n      <string>blockSeparatedSextant-46.stypo</string>\n      <string>blockSeparatedSextant-146</string>\n      <string>blockSeparatedSextant-146.stypo</string>\n      <string>blockSeparatedSextant-246</string>\n      <string>blockSeparatedSextant-246.stypo</string>\n      <string>blockSeparatedSextant-1246</string>\n      <string>blockSeparatedSextant-1246.stypo</string>\n      <string>blockSeparatedSextant-346</string>\n      <string>blockSeparatedSextant-346.stypo</string>\n      <string>blockSeparatedSextant-1346</string>\n      <string>blockSeparatedSextant-1346.stypo</string>\n      <string>blockSeparatedSextant-2346</string>\n      <string>blockSeparatedSextant-2346.stypo</string>\n      <string>blockSeparatedSextant-12346</string>\n      <string>blockSeparatedSextant-12346.stypo</string>\n      <string>blockSeparatedSextant-56</string>\n      <string>blockSeparatedSextant-56.stypo</string>\n      <string>blockSeparatedSextant-156</string>\n      <string>blockSeparatedSextant-156.stypo</string>\n      <string>blockSeparatedSextant-256</string>\n      <string>blockSeparatedSextant-256.stypo</string>\n      <string>blockSeparatedSextant-1256</string>\n      <string>blockSeparatedSextant-1256.stypo</string>\n      <string>blockSeparatedSextant-356</string>\n      <string>blockSeparatedSextant-356.stypo</string>\n      <string>blockSeparatedSextant-1356</string>\n      <string>blockSeparatedSextant-1356.stypo</string>\n      <string>blockSeparatedSextant-2356</string>\n      <string>blockSeparatedSextant-2356.stypo</string>\n      <string>blockSeparatedSextant-12356</string>\n      <string>blockSeparatedSextant-12356.stypo</string>\n      <string>blockSeparatedSextant-456</string>\n      <string>blockSeparatedSextant-456.stypo</string>\n      <string>blockSeparatedSextant-1456</string>\n      <string>blockSeparatedSextant-1456.stypo</string>\n      <string>blockSeparatedSextant-2456</string>\n      <string>blockSeparatedSextant-2456.stypo</string>\n      <string>blockSeparatedSextant-12456</string>\n      <string>blockSeparatedSextant-12456.stypo</string>\n      <string>blockSeparatedSextant-3456</string>\n      <string>blockSeparatedSextant-3456.stypo</string>\n      <string>blockSeparatedSextant-13456</string>\n      <string>blockSeparatedSextant-13456.stypo</string>\n      <string>blockSeparatedSextant-23456</string>\n      <string>blockSeparatedSextant-23456.stypo</string>\n      <string>blockSeparatedSextant-123456</string>\n      <string>blockSeparatedSextant-123456.stypo</string>\n      <string>segmentedDigit0</string>\n      <string>segmentedDigit1</string>\n      <string>segmentedDigit2</string>\n      <string>segmentedDigit3</string>\n      <string>segmentedDigit4</string>\n      <string>segmentedDigit5</string>\n      <string>segmentedDigit6</string>\n      <string>segmentedDigit7</string>\n      <string>segmentedDigit8</string>\n      <string>segmentedDigit9</string>\n      <string>largeType-1CE1A</string>\n      <string>largeType-1CE1A.stypo</string>\n      <string>largeType-1CE1B</string>\n      <string>largeType-1CE1B.stypo</string>\n      <string>largeType-1CE1C</string>\n      <string>largeType-1CE1C.stypo</string>\n      <string>largeType-1CE1D</string>\n      <string>largeType-1CE1D.stypo</string>\n      <string>largeType-1CE1E</string>\n      <string>largeType-1CE1E.stypo</string>\n      <string>largeType-1CE1F</string>\n      <string>largeType-1CE1F.stypo</string>\n      <string>largeType-1CE20</string>\n      <string>largeType-1CE20.stypo</string>\n      <string>largeType-1CE21</string>\n      <string>largeType-1CE21.stypo</string>\n      <string>largeType-1CE22</string>\n      <string>largeType-1CE22.stypo</string>\n      <string>largeType-1CE23</string>\n      <string>largeType-1CE23.stypo</string>\n      <string>largeType-1CE24</string>\n      <string>largeType-1CE24.stypo</string>\n      <string>largeType-1CE25</string>\n      <string>largeType-1CE25.stypo</string>\n      <string>largeType-1CE26</string>\n      <string>largeType-1CE26.stypo</string>\n      <string>largeType-1CE27</string>\n      <string>largeType-1CE27.stypo</string>\n      <string>largeType-1CE28</string>\n      <string>largeType-1CE28.stypo</string>\n      <string>largeType-1CE29</string>\n      <string>largeType-1CE29.stypo</string>\n      <string>largeType-1CE2A</string>\n      <string>largeType-1CE2A.stypo</string>\n      <string>largeType-1CE2B</string>\n      <string>largeType-1CE2B.stypo</string>\n      <string>largeType-1CE2C</string>\n      <string>largeType-1CE2C.stypo</string>\n      <string>largeType-1CE2D</string>\n      <string>largeType-1CE2D.stypo</string>\n      <string>largeType-1CE2E</string>\n      <string>largeType-1CE2E.stypo</string>\n      <string>largeType-1CE2F</string>\n      <string>largeType-1CE2F.stypo</string>\n      <string>largeType-1CE30</string>\n      <string>largeType-1CE30.stypo</string>\n      <string>largeType-1CE31</string>\n      <string>largeType-1CE31.stypo</string>\n      <string>largeType-1CE32</string>\n      <string>largeType-1CE32.stypo</string>\n      <string>largeType-1CE33</string>\n      <string>largeType-1CE33.stypo</string>\n      <string>largeType-1CE34</string>\n      <string>largeType-1CE34.stypo</string>\n      <string>largeType-1CE35</string>\n      <string>largeType-1CE35.stypo</string>\n      <string>largeType-1CE36</string>\n      <string>largeType-1CE36.stypo</string>\n      <string>largeType-1CE37</string>\n      <string>largeType-1CE37.stypo</string>\n      <string>largeType-1CE38</string>\n      <string>largeType-1CE38.stypo</string>\n      <string>largeType-1CE39</string>\n      <string>largeType-1CE39.stypo</string>\n      <string>largeType-1CE3A</string>\n      <string>largeType-1CE3A.stypo</string>\n      <string>largeType-1CE3B</string>\n      <string>largeType-1CE3B.stypo</string>\n      <string>largeType-1CE3C</string>\n      <string>largeType-1CE3C.stypo</string>\n      <string>largeType-1CE3D</string>\n      <string>largeType-1CE3D.stypo</string>\n      <string>largeType-1CE3E</string>\n      <string>largeType-1CE3E.stypo</string>\n      <string>largeType-1CE3F</string>\n      <string>largeType-1CE3F.stypo</string>\n      <string>largeType-1CE40</string>\n      <string>largeType-1CE40.stypo</string>\n      <string>largeType-1CE41</string>\n      <string>largeType-1CE41.stypo</string>\n      <string>largeType-1CE42</string>\n      <string>largeType-1CE42.stypo</string>\n      <string>largeType-1CE43</string>\n      <string>largeType-1CE43.stypo</string>\n      <string>largeType-1CE44</string>\n      <string>largeType-1CE44.stypo</string>\n      <string>largeType-1CE45</string>\n      <string>largeType-1CE45.stypo</string>\n      <string>largeType-1CE46</string>\n      <string>largeType-1CE46.stypo</string>\n      <string>largeType-1CE47</string>\n      <string>largeType-1CE47.stypo</string>\n      <string>largeType-1CE48</string>\n      <string>largeType-1CE48.stypo</string>\n      <string>largeType-1CE49</string>\n      <string>largeType-1CE49.stypo</string>\n      <string>largeType-1CE4A</string>\n      <string>largeType-1CE4A.stypo</string>\n      <string>largeType-1CE4B</string>\n      <string>largeType-1CE4B.stypo</string>\n      <string>largeType-1CE4C</string>\n      <string>largeType-1CE4C.stypo</string>\n      <string>largeType-1CE4D</string>\n      <string>largeType-1CE4D.stypo</string>\n      <string>largeType-1CE4E</string>\n      <string>largeType-1CE4E.stypo</string>\n      <string>largeType-1CE4F</string>\n      <string>largeType-1CE4F.stypo</string>\n      <string>largeType-1CE50</string>\n      <string>largeType-1CE50.stypo</string>\n    </array>\n    <key>public.postscriptNames</key>\n    <dict>\n      <key>A-cy</key>\n      <string>uni0410</string>\n      <key>Abreveacute</key>\n      <string>uni1EAE</string>\n      <key>Abrevedotbelow</key>\n      <string>uni1EB6</string>\n      <key>Abrevegrave</key>\n      <string>uni1EB0</string>\n      <key>Abrevehookabove</key>\n      <string>uni1EB2</string>\n      <key>Abrevetilde</key>\n      <string>uni1EB4</string>\n      <key>Acaron</key>\n      <string>uni01CD</string>\n      <key>Acircumflexacute</key>\n      <string>uni1EA4</string>\n      <key>Acircumflexdotbelow</key>\n      <string>uni1EAC</string>\n      <key>Acircumflexgrave</key>\n      <string>uni1EA6</string>\n      <key>Acircumflexhookabove</key>\n      <string>uni1EA8</string>\n      <key>Acircumflextilde</key>\n      <string>uni1EAA</string>\n      <key>Adotbelow</key>\n      <string>uni1EA0</string>\n      <key>Ahookabove</key>\n      <string>uni1EA2</string>\n      <key>Alpha-latin</key>\n      <string>uni2C6D</string>\n      <key>Asmall</key>\n      <string>uni1D00</string>\n      <key>Astroke</key>\n      <string>uni023A</string>\n      <key>Be-cy</key>\n      <string>uni0411</string>\n      <key>Che-cy</key>\n      <string>uni0427</string>\n      <key>Chedescender-cy</key>\n      <string>uni04B6</string>\n      <key>Cstroke</key>\n      <string>uni023B</string>\n      <key>Dafrican</key>\n      <string>uni0189</string>\n      <key>De-cy</key>\n      <string>uni0414</string>\n      <key>De-cy.loclBGR</key>\n      <string>uni0414.loclBGR</string>\n      <key>Delta</key>\n      <string>uni0394</string>\n      <key>Dje-cy</key>\n      <string>uni0402</string>\n      <key>Dze-cy</key>\n      <string>uni0405</string>\n      <key>Dzhe-cy</key>\n      <string>uni040F</string>\n      <key>E-cy</key>\n      <string>uni0404</string>\n      <key>Ecircumflexacute</key>\n      <string>uni1EBE</string>\n      <key>Ecircumflexdotbelow</key>\n      <string>uni1EC6</string>\n      <key>Ecircumflexgrave</key>\n      <string>uni1EC0</string>\n      <key>Ecircumflexhookabove</key>\n      <string>uni1EC2</string>\n      <key>Ecircumflextilde</key>\n      <string>uni1EC4</string>\n      <key>Edotbelow</key>\n      <string>uni1EB8</string>\n      <key>Ef-cy</key>\n      <string>uni0424</string>\n      <key>Ef-cy.loclBGR</key>\n      <string>uni0424.loclBGR</string>\n      <key>Ehookabove</key>\n      <string>uni1EBA</string>\n      <key>El-cy</key>\n      <string>uni041B</string>\n      <key>El-cy.loclBGR</key>\n      <string>uni041B.loclBGR</string>\n      <key>Em-cy</key>\n      <string>uni041C</string>\n      <key>En-cy</key>\n      <string>uni041D</string>\n      <key>Endescender-cy</key>\n      <string>uni04A2</string>\n      <key>Eopen</key>\n      <string>uni0190</string>\n      <key>Er-cy</key>\n      <string>uni0420</string>\n      <key>Ereversed</key>\n      <string>uni018E</string>\n      <key>Ereversed-cy</key>\n      <string>uni042D</string>\n      <key>Es-cy</key>\n      <string>uni0421</string>\n      <key>Esh</key>\n      <string>uni01A9</string>\n      <key>Etilde</key>\n      <string>uni1EBC</string>\n      <key>Ezh</key>\n      <string>uni01B7</string>\n      <key>Fhook</key>\n      <string>uni0191</string>\n      <key>Gammaafrican</key>\n      <string>uni0194</string>\n      <key>Gcommaaccent</key>\n      <string>uni0122</string>\n      <key>Ge-cy</key>\n      <string>uni0413</string>\n      <key>Germandbls</key>\n      <string>uni1E9E</string>\n      <key>Ghestroke-cy</key>\n      <string>uni0492</string>\n      <key>Gheupturn-cy</key>\n      <string>uni0490</string>\n      <key>Gje-cy</key>\n      <string>uni0403</string>\n      <key>Gsmall</key>\n      <string>uni0262</string>\n      <key>Gstroke</key>\n      <string>uni01E4</string>\n      <key>Ha-cy</key>\n      <string>uni0425</string>\n      <key>Hadescender-cy</key>\n      <string>uni04B2</string>\n      <key>Hardsign-cy</key>\n      <string>uni042A</string>\n      <key>Hcaron</key>\n      <string>uni021E</string>\n      <key>Hdotbelow</key>\n      <string>uni1E24</string>\n      <key>I-cy</key>\n      <string>uni0406</string>\n      <key>Ia-cy</key>\n      <string>uni042F</string>\n      <key>Idotbelow</key>\n      <string>uni1ECA</string>\n      <key>Ie-cy</key>\n      <string>uni0415</string>\n      <key>Iegrave-cy</key>\n      <string>uni0400</string>\n      <key>Ihookabove</key>\n      <string>uni1EC8</string>\n      <key>Ii-cy</key>\n      <string>uni0418</string>\n      <key>Iigrave-cy</key>\n      <string>uni040D</string>\n      <key>Iishort-cy</key>\n      <string>uni0419</string>\n      <key>Imacron-cy</key>\n      <string>uni04E2</string>\n      <key>Io-cy</key>\n      <string>uni0401</string>\n      <key>Iotaafrican</key>\n      <string>uni0196</string>\n      <key>Ismall</key>\n      <string>uni026A</string>\n      <key>Iu-cy</key>\n      <string>uni042E</string>\n      <key>Jacute</key>\n      <string>uni00A40301</string>\n      <key>Je-cy</key>\n      <string>uni0408</string>\n      <key>Ka-cy</key>\n      <string>uni041A</string>\n      <key>Kacute</key>\n      <string>uni1E30</string>\n      <key>Kadescender-cy</key>\n      <string>uni049A</string>\n      <key>KaiSymbol</key>\n      <string>uni03CF</string>\n      <key>Kcommaaccent</key>\n      <string>uni0136</string>\n      <key>Kdotbelow</key>\n      <string>uni1E32</string>\n      <key>Kje-cy</key>\n      <string>uni040C</string>\n      <key>Klinebelow</key>\n      <string>uni1E34</string>\n      <key>Lbar</key>\n      <string>uni023D</string>\n      <key>Lcommaaccent</key>\n      <string>uni013B</string>\n      <key>Ldotbelow</key>\n      <string>uni1E36</string>\n      <key>Lje-cy</key>\n      <string>uni0409</string>\n      <key>Llinebelow</key>\n      <string>uni1E3A</string>\n      <key>Lmiddletilde</key>\n      <string>uni2C62</string>\n      <key>Lsmall</key>\n      <string>uni029F</string>\n      <key>Ncommaaccent</key>\n      <string>uni0145</string>\n      <key>Nhookleft</key>\n      <string>uni019D</string>\n      <key>Nje-cy</key>\n      <string>uni040A</string>\n      <key>Nlinebelow</key>\n      <string>uni1E48</string>\n      <key>O-cy</key>\n      <string>uni041E</string>\n      <key>Obarred-cy</key>\n      <string>uni04E8</string>\n      <key>Ocircumflexacute</key>\n      <string>uni1ED0</string>\n      <key>Ocircumflexdotbelow</key>\n      <string>uni1ED8</string>\n      <key>Ocircumflexgrave</key>\n      <string>uni1ED2</string>\n      <key>Ocircumflexhookabove</key>\n      <string>uni1ED4</string>\n      <key>Ocircumflextilde</key>\n      <string>uni1ED6</string>\n      <key>Odotbelow</key>\n      <string>uni1ECC</string>\n      <key>Ohm</key>\n      <string>uni2126</string>\n      <key>Ohookabove</key>\n      <string>uni1ECE</string>\n      <key>Ohornacute</key>\n      <string>uni1EDA</string>\n      <key>Ohorndotbelow</key>\n      <string>uni1EE2</string>\n      <key>Ohorngrave</key>\n      <string>uni1EDC</string>\n      <key>Ohornhookabove</key>\n      <string>uni1EDE</string>\n      <key>Ohorntilde</key>\n      <string>uni1EE0</string>\n      <key>Omacronacute</key>\n      <string>uni1E52</string>\n      <key>Omacrongrave</key>\n      <string>uni1E50</string>\n      <key>Omega</key>\n      <string>uni03A9</string>\n      <key>Oogonek</key>\n      <string>uni01EA</string>\n      <key>Oopen</key>\n      <string>uni0186</string>\n      <key>Palochka-cy</key>\n      <string>uni04C0</string>\n      <key>Pe-cy</key>\n      <string>uni041F</string>\n      <key>Rcommaaccent</key>\n      <string>uni0156</string>\n      <key>Rdotbelow</key>\n      <string>uni1E5A</string>\n      <key>Schwa</key>\n      <string>uni018F</string>\n      <key>Schwa-cy</key>\n      <string>uni04D8</string>\n      <key>Scommaaccent</key>\n      <string>uni0218</string>\n      <key>Sdotbelow</key>\n      <string>uni1E62</string>\n      <key>Sha-cy</key>\n      <string>uni0428</string>\n      <key>Shcha-cy</key>\n      <string>uni0429</string>\n      <key>Shha-cy</key>\n      <string>uni04BA</string>\n      <key>Softsign-cy</key>\n      <string>uni042C</string>\n      <key>Tcedilla</key>\n      <string>uni0162</string>\n      <key>Tcommaaccent</key>\n      <string>uni021A</string>\n      <key>Tdiagonalstroke</key>\n      <string>uni023E</string>\n      <key>Te-cy</key>\n      <string>uni0422</string>\n      <key>Tlinebelow</key>\n      <string>uni1E6E</string>\n      <key>Tse-cy</key>\n      <string>uni0426</string>\n      <key>Tshe-cy</key>\n      <string>uni040B</string>\n      <key>U-cy</key>\n      <string>uni0423</string>\n      <key>Udotbelow</key>\n      <string>uni1EE4</string>\n      <key>Uhookabove</key>\n      <string>uni1EE6</string>\n      <key>Uhornacute</key>\n      <string>uni1EE8</string>\n      <key>Uhorndotbelow</key>\n      <string>uni1EF0</string>\n      <key>Uhorngrave</key>\n      <string>uni1EEA</string>\n      <key>Uhornhookabove</key>\n      <string>uni1EEC</string>\n      <key>Uhorntilde</key>\n      <string>uni1EEE</string>\n      <key>Umacron-cy</key>\n      <string>uni04EE</string>\n      <key>Upsilonafrican</key>\n      <string>uni01B1</string>\n      <key>Ushort-cy</key>\n      <string>uni040E</string>\n      <key>Ustraight-cy</key>\n      <string>uni04AE</string>\n      <key>Ustraightstroke-cy</key>\n      <string>uni04B0</string>\n      <key>Ve-cy</key>\n      <string>uni0412</string>\n      <key>Vhook</key>\n      <string>uni01B2</string>\n      <key>Vturned</key>\n      <string>uni0245</string>\n      <key>Ydotbelow</key>\n      <string>uni1EF4</string>\n      <key>Yeru-cy</key>\n      <string>uni042B</string>\n      <key>Yhookabove</key>\n      <string>uni1EF6</string>\n      <key>Yi-cy</key>\n      <string>uni0407</string>\n      <key>Ymacron</key>\n      <string>uni0232</string>\n      <key>Ytilde</key>\n      <string>uni1EF8</string>\n      <key>Ze-cy</key>\n      <string>uni0417</string>\n      <key>Zhe-cy</key>\n      <string>uni0416</string>\n      <key>Zhedescender-cy</key>\n      <string>uni0496</string>\n      <key>_alef-ar.fina.rlig</key>\n      <string>_alefar.fina.rlig</string>\n      <key>_alef-ar.fina.short.rlig</key>\n      <string>_alefar.fina.short.rlig</string>\n      <key>_alefFathatan-ar.fina.rlig</key>\n      <string>_alefFathatanar.fina.rlig</string>\n      <key>_alefHamzaabove-ar.fina.rlig</key>\n      <string>_alefHamzaabovear.fina.rlig</string>\n      <key>_alefHamzabelow-ar.fina.rlig</key>\n      <string>_alefHamzabelowar.fina.rlig</string>\n      <key>_alefMadda-ar.fina.rlig</key>\n      <string>_alefMaddaar.fina.rlig</string>\n      <key>_alefThreeabove-ar.fina.rlig</key>\n      <string>_alefThreeabovear.fina.rlig</string>\n      <key>_alefTwoabove-ar.fina.rlig</key>\n      <string>_alefTwoabovear.fina.rlig</string>\n      <key>_alefWasla-ar.fina.rlig</key>\n      <string>_alefWaslaar.fina.rlig</string>\n      <key>_alefWavyhamzaabove-ar.fina.rlig</key>\n      <string>_alefWavyhamzaabovear.fina.rlig</string>\n      <key>_alefWavyhamzabelow-ar.fina.rlig</key>\n      <string>_alefWavyhamzabelowar.fina.rlig</string>\n      <key>_cuberoot_fourthroot-ar</key>\n      <string>_cuberoot_fourthrootar</string>\n      <key>_damma-ar</key>\n      <string>_dammaar</string>\n      <key>_dot-ar</key>\n      <string>_dotar</string>\n      <key>_fatha-ar</key>\n      <string>_fathaar</string>\n      <key>_four-persian.small01</key>\n      <string>_fourpersian.small01</string>\n      <key>_fourdotscenter-ar</key>\n      <string>_fourdotscenterar</string>\n      <key>_fourthroot-ar</key>\n      <string>_fourthrootar</string>\n      <key>_hamzasmall-ar</key>\n      <string>_hamzasmallar</string>\n      <key>_highhamzaAlef-ar.fina.rlig</key>\n      <string>_highhamzaAlefar.fina.rlig</string>\n      <key>_threedots-ar</key>\n      <string>_threedotsar</string>\n      <key>_twodotshorizontal-ar</key>\n      <string>_twodotshorizontalar</string>\n      <key>_twodotsverticalabove-ar</key>\n      <string>_twodotsverticalabovear</string>\n      <key>_vbelow-ar</key>\n      <string>_vbelowar</string>\n      <key>_vinvertedbelow-ar</key>\n      <string>_vinvertedbelowar</string>\n      <key>_yehRohingya-ar</key>\n      <string>_yehRohingyaar</string>\n      <key>_yehRohingya-ar.fina</key>\n      <string>_yehRohingyaar.fina</string>\n      <key>a-cy</key>\n      <string>uni0430</string>\n      <key>abreveacute</key>\n      <string>uni1EAF</string>\n      <key>abrevedotbelow</key>\n      <string>uni1EB7</string>\n      <key>abrevegrave</key>\n      <string>uni1EB1</string>\n      <key>abrevehookabove</key>\n      <string>uni1EB3</string>\n      <key>abrevetilde</key>\n      <string>uni1EB5</string>\n      <key>acaron</key>\n      <string>uni01CE</string>\n      <key>acircumflexacute</key>\n      <string>uni1EA5</string>\n      <key>acircumflexdotbelow</key>\n      <string>uni1EAD</string>\n      <key>acircumflexgrave</key>\n      <string>uni1EA7</string>\n      <key>acircumflexhookabove</key>\n      <string>uni1EA9</string>\n      <key>acircumflextilde</key>\n      <string>uni1EAB</string>\n      <key>acknowledgeControl</key>\n      <string>uni2406</string>\n      <key>acknowledgeControl.ss20</key>\n      <string>uni2406.ss20</string>\n      <key>acutetonecomb</key>\n      <string>uni0341</string>\n      <key>adotbelow</key>\n      <string>uni1EA1</string>\n      <key>ae-ar</key>\n      <string>uni06D5</string>\n      <key>ae-ar.fina</key>\n      <string>uni06D5.fina</string>\n      <key>afghani-ar</key>\n      <string>uni060B</string>\n      <key>ahookabove</key>\n      <string>uni1EA3</string>\n      <key>ain-ar</key>\n      <string>uni0639</string>\n      <key>ain-ar.fina</key>\n      <string>uniFECA</string>\n      <key>ain-ar.init</key>\n      <string>uniFECB</string>\n      <key>ain-ar.medi</key>\n      <string>uniFECC</string>\n      <key>ainThreedots-ar</key>\n      <string>uni06A0</string>\n      <key>ainThreedots-ar.fina</key>\n      <string>uni06A0.fina</string>\n      <key>ainThreedots-ar.init</key>\n      <string>uni06A0.init</string>\n      <key>ainThreedots-ar.medi</key>\n      <string>uni06A0.medi</string>\n      <key>ainThreedotsdownabove-ar</key>\n      <string>uni075E</string>\n      <key>ainThreedotsdownabove-ar.fina</key>\n      <string>uni075E.fina</string>\n      <key>ainThreedotsdownabove-ar.init</key>\n      <string>uni075E.init</string>\n      <key>ainThreedotsdownabove-ar.medi</key>\n      <string>uni075E.medi</string>\n      <key>ainTwodotshorizontalabove-ar</key>\n      <string>uni075D</string>\n      <key>ainTwodotshorizontalabove-ar.fina</key>\n      <string>uni075D.fina</string>\n      <key>ainTwodotshorizontalabove-ar.init</key>\n      <string>uni075D.init</string>\n      <key>ainTwodotshorizontalabove-ar.medi</key>\n      <string>uni075D.medi</string>\n      <key>ainTwodotsverticalabove-ar</key>\n      <string>uni075F</string>\n      <key>ainTwodotsverticalabove-ar.fina</key>\n      <string>uni075F.fina</string>\n      <key>ainTwodotsverticalabove-ar.init</key>\n      <string>uni075F.init</string>\n      <key>ainTwodotsverticalabove-ar.medi</key>\n      <string>uni075F.medi</string>\n      <key>alef-ar</key>\n      <string>uni0627</string>\n      <key>alef-ar.fina</key>\n      <string>uniFE8E</string>\n      <key>alef-ar.fina.alt</key>\n      <string>uni0627.fina.alt</string>\n      <key>alef-ar.fina.rlig</key>\n      <string>uni0627.fina.rlig</string>\n      <key>alef-ar.fina.short</key>\n      <string>uni0627.fina.short</string>\n      <key>alef-ar.fina.short.alt</key>\n      <string>uni0627.fina.short.alt</string>\n      <key>alef-ar.fina.short.rlig</key>\n      <string>uni0627.fina.short.rlig</string>\n      <key>alef-ar.short</key>\n      <string>uni0627.short</string>\n      <key>alef-hb</key>\n      <string>uni05D0</string>\n      <key>alefFathatan-ar</key>\n      <string>uniFD3D</string>\n      <key>alefFathatan-ar.fina</key>\n      <string>uniFD3C</string>\n      <key>alefFathatan-ar.fina.rlig</key>\n      <string>uniFD3D.fina.rlig</string>\n      <key>alefHamzaabove-ar</key>\n      <string>uni0623</string>\n      <key>alefHamzaabove-ar.fina</key>\n      <string>uniFE84</string>\n      <key>alefHamzaabove-ar.fina.alt</key>\n      <string>uni0623.fina.alt</string>\n      <key>alefHamzaabove-ar.fina.rlig</key>\n      <string>uni0623.fina.rlig</string>\n      <key>alefHamzabelow-ar</key>\n      <string>uni0625</string>\n      <key>alefHamzabelow-ar.fina</key>\n      <string>uniFE88</string>\n      <key>alefHamzabelow-ar.fina.alt</key>\n      <string>uni0625.fina.alt</string>\n      <key>alefHamzabelow-ar.fina.rlig</key>\n      <string>uni0625.fina.rlig</string>\n      <key>alefMadda-ar</key>\n      <string>uni0622</string>\n      <key>alefMadda-ar.fina</key>\n      <string>uniFE82</string>\n      <key>alefMadda-ar.fina.alt</key>\n      <string>uni0622.fina.alt</string>\n      <key>alefMadda-ar.fina.rlig</key>\n      <string>uni0622.fina.rlig</string>\n      <key>alefMaksura-ar</key>\n      <string>uni0649</string>\n      <key>alefMaksura-ar.fina</key>\n      <string>uniFEF0</string>\n      <key>alefMaksura-ar.fina.alt</key>\n      <string>uni0649.fina.alt</string>\n      <key>alefMaksura-ar.init</key>\n      <string>uniFBE8</string>\n      <key>alefMaksura-ar.init.alt</key>\n      <string>uni0649.init.alt</string>\n      <key>alefMaksura-ar.medi</key>\n      <string>uniFBE9</string>\n      <key>alefMaksuraAlefabove-ar</key>\n      <string>uniFC5D</string>\n      <key>alefMaksuraAlefabove-ar.fina</key>\n      <string>uniFC90</string>\n      <key>alefMaksuraAlefabove-ar.fina.alt</key>\n      <string>uniFC5D.fina.alt</string>\n      <key>alefThreeabove-ar</key>\n      <string>uni0774</string>\n      <key>alefThreeabove-ar.fina</key>\n      <string>uni0774.fina</string>\n      <key>alefThreeabove-ar.fina.alt</key>\n      <string>uni0774.fina.alt</string>\n      <key>alefThreeabove-ar.fina.rlig</key>\n      <string>uni0774.fina.rlig</string>\n      <key>alefTwoabove-ar</key>\n      <string>uni0773</string>\n      <key>alefTwoabove-ar.fina</key>\n      <string>uni0773.fina</string>\n      <key>alefTwoabove-ar.fina.alt</key>\n      <string>uni0773.fina.alt</string>\n      <key>alefTwoabove-ar.fina.rlig</key>\n      <string>uni0773.fina.rlig</string>\n      <key>alefWasla-ar</key>\n      <string>uni0671</string>\n      <key>alefWasla-ar.fina</key>\n      <string>uniFB51</string>\n      <key>alefWasla-ar.fina.alt</key>\n      <string>uni0671.fina.alt</string>\n      <key>alefWasla-ar.fina.rlig</key>\n      <string>uni0671.fina.rlig</string>\n      <key>alefWavyhamzaabove-ar</key>\n      <string>uni0672</string>\n      <key>alefWavyhamzaabove-ar.fina</key>\n      <string>uni0672.fina</string>\n      <key>alefWavyhamzaabove-ar.fina.alt</key>\n      <string>uni0672.fina.alt</string>\n      <key>alefWavyhamzaabove-ar.fina.rlig</key>\n      <string>uni0672.fina.rlig</string>\n      <key>alefWavyhamzabelow-ar</key>\n      <string>uni0673</string>\n      <key>alefWavyhamzabelow-ar.fina</key>\n      <string>uni0673.fina</string>\n      <key>alefWavyhamzabelow-ar.fina.alt</key>\n      <string>uni0673.fina.alt</string>\n      <key>alefWavyhamzabelow-ar.fina.rlig</key>\n      <string>uni0673.fina.rlig</string>\n      <key>alefabove-ar</key>\n      <string>uni0670</string>\n      <key>alefbelow-ar</key>\n      <string>uni0656</string>\n      <key>alefdagesh-hb</key>\n      <string>uniFB30</string>\n      <key>alefdagesh-hb.BRACKET.500</key>\n      <string>uniFB30.BRACKET.500</string>\n      <key>alefpatah-hb</key>\n      <string>uniFB2E</string>\n      <key>alefqamats-hb</key>\n      <string>uniFB2F</string>\n      <key>allah-ar</key>\n      <string>uniFDF2</string>\n      <key>alpha-latin</key>\n      <string>uni0251</string>\n      <key>apostrophemod</key>\n      <string>uni02BC</string>\n      <key>asterisk-ar</key>\n      <string>uni066D</string>\n      <key>asteriskArt-ar</key>\n      <string>uni06DE</string>\n      <key>ayin-hb</key>\n      <string>uni05E2</string>\n      <key>backspaceControl</key>\n      <string>uni2408</string>\n      <key>backspaceControl.ss20</key>\n      <string>uni2408.ss20</string>\n      <key>baht</key>\n      <string>uni0E3F</string>\n      <key>baht.BRACKET.600</key>\n      <string>uni0E3F.BRACKET.600</string>\n      <key>be-cy</key>\n      <string>uni0431</string>\n      <key>be-cy.loclSRB</key>\n      <string>uni0431.loclSRB</string>\n      <key>beeh-ar</key>\n      <string>uni067B</string>\n      <key>beeh-ar.alt</key>\n      <string>uni067B.alt</string>\n      <key>beeh-ar.fina</key>\n      <string>uniFB53</string>\n      <key>beeh-ar.fina.alt</key>\n      <string>uni067B.fina.alt</string>\n      <key>beeh-ar.init</key>\n      <string>uniFB54</string>\n      <key>beeh-ar.init.alt</key>\n      <string>uni067B.init.alt</string>\n      <key>beeh-ar.medi</key>\n      <string>uniFB55</string>\n      <key>beh-ar</key>\n      <string>uni0628</string>\n      <key>beh-ar.alt</key>\n      <string>uni0628.alt</string>\n      <key>beh-ar.fina</key>\n      <string>uniFE90</string>\n      <key>beh-ar.fina.alt</key>\n      <string>uni0628.fina.alt</string>\n      <key>beh-ar.init</key>\n      <string>uniFE91</string>\n      <key>beh-ar.init.alt</key>\n      <string>uni0628.init.alt</string>\n      <key>beh-ar.medi</key>\n      <string>uniFE92</string>\n      <key>behDotless-ar</key>\n      <string>uni066E</string>\n      <key>behDotless-ar.alt</key>\n      <string>uni066E.alt</string>\n      <key>behDotless-ar.fina</key>\n      <string>uni066E.fina</string>\n      <key>behDotless-ar.fina.alt</key>\n      <string>uni066E.fina.alt</string>\n      <key>behDotless-ar.init</key>\n      <string>uni066E.init</string>\n      <key>behDotless-ar.init.alt</key>\n      <string>uni066E.init.alt</string>\n      <key>behDotless-ar.medi</key>\n      <string>uni066E.medi</string>\n      <key>behMeemabove-ar</key>\n      <string>uni08B6</string>\n      <key>behMeemabove-ar.alt</key>\n      <string>uni08B6.alt</string>\n      <key>behMeemabove-ar.fina</key>\n      <string>uni08B6.fina</string>\n      <key>behMeemabove-ar.fina.alt</key>\n      <string>uni08B6.fina.alt</string>\n      <key>behMeemabove-ar.init</key>\n      <string>uni08B6.init</string>\n      <key>behMeemabove-ar.init.alt</key>\n      <string>uni08B6.init.alt</string>\n      <key>behMeemabove-ar.medi</key>\n      <string>uni08B6.medi</string>\n      <key>behThreedotshorizontalbelow-ar</key>\n      <string>uni0750</string>\n      <key>behThreedotshorizontalbelow-ar.alt</key>\n      <string>uni0750.alt</string>\n      <key>behThreedotshorizontalbelow-ar.fina</key>\n      <string>uni0750.fina</string>\n      <key>behThreedotshorizontalbelow-ar.fina.alt</key>\n      <string>uni0750.fina.alt</string>\n      <key>behThreedotshorizontalbelow-ar.init</key>\n      <string>uni0750.init</string>\n      <key>behThreedotshorizontalbelow-ar.init.alt</key>\n      <string>uni0750.init.alt</string>\n      <key>behThreedotshorizontalbelow-ar.medi</key>\n      <string>uni0750.medi</string>\n      <key>behThreedotsupabove-ar</key>\n      <string>uni0751</string>\n      <key>behThreedotsupabove-ar.alt</key>\n      <string>uni0751.alt</string>\n      <key>behThreedotsupabove-ar.fina</key>\n      <string>uni0751.fina</string>\n      <key>behThreedotsupabove-ar.fina.alt</key>\n      <string>uni0751.fina.alt</string>\n      <key>behThreedotsupabove-ar.init</key>\n      <string>uni0751.init</string>\n      <key>behThreedotsupabove-ar.init.alt</key>\n      <string>uni0751.init.alt</string>\n      <key>behThreedotsupabove-ar.medi</key>\n      <string>uni0751.medi</string>\n      <key>behThreedotsupbelow-ar</key>\n      <string>uni0752</string>\n      <key>behThreedotsupbelow-ar.alt</key>\n      <string>uni0752.alt</string>\n      <key>behThreedotsupbelow-ar.fina</key>\n      <string>uni0752.fina</string>\n      <key>behThreedotsupbelow-ar.fina.alt</key>\n      <string>uni0752.fina.alt</string>\n      <key>behThreedotsupbelow-ar.init</key>\n      <string>uni0752.init</string>\n      <key>behThreedotsupbelow-ar.init.alt</key>\n      <string>uni0752.init.alt</string>\n      <key>behThreedotsupbelow-ar.medi</key>\n      <string>uni0752.medi</string>\n      <key>behTwodotsbelowDotabove-ar</key>\n      <string>uni0754</string>\n      <key>behTwodotsbelowDotabove-ar.alt</key>\n      <string>uni0754.alt</string>\n      <key>behTwodotsbelowDotabove-ar.fina</key>\n      <string>uni0754.fina</string>\n      <key>behTwodotsbelowDotabove-ar.fina.alt</key>\n      <string>uni0754.fina.alt</string>\n      <key>behTwodotsbelowDotabove-ar.init</key>\n      <string>uni0754.init</string>\n      <key>behTwodotsbelowDotabove-ar.init.alt</key>\n      <string>uni0754.init.alt</string>\n      <key>behTwodotsbelowDotabove-ar.medi</key>\n      <string>uni0754.medi</string>\n      <key>behVabove-ar</key>\n      <string>uni0756</string>\n      <key>behVabove-ar.alt</key>\n      <string>uni0756.alt</string>\n      <key>behVabove-ar.fina</key>\n      <string>uni0756.fina</string>\n      <key>behVabove-ar.fina.alt</key>\n      <string>uni0756.fina.alt</string>\n      <key>behVabove-ar.init</key>\n      <string>uni0756.init</string>\n      <key>behVabove-ar.init.alt</key>\n      <string>uni0756.init.alt</string>\n      <key>behVabove-ar.medi</key>\n      <string>uni0756.medi</string>\n      <key>behVbelow-ar</key>\n      <string>uni08A0</string>\n      <key>behVbelow-ar.alt</key>\n      <string>uni08A0.alt</string>\n      <key>behVbelow-ar.fina</key>\n      <string>uni08A0.fina</string>\n      <key>behVbelow-ar.fina.alt</key>\n      <string>uni08A0.fina.alt</string>\n      <key>behVbelow-ar.init</key>\n      <string>uni08A0.init</string>\n      <key>behVbelow-ar.init.alt</key>\n      <string>uni08A0.init.alt</string>\n      <key>behVbelow-ar.medi</key>\n      <string>uni08A0.medi</string>\n      <key>behVinvertedbelow-ar</key>\n      <string>uni0755</string>\n      <key>behVinvertedbelow-ar.alt</key>\n      <string>uni0755.alt</string>\n      <key>behVinvertedbelow-ar.fina</key>\n      <string>uni0755.fina</string>\n      <key>behVinvertedbelow-ar.fina.alt</key>\n      <string>uni0755.fina.alt</string>\n      <key>behVinvertedbelow-ar.init</key>\n      <string>uni0755.init</string>\n      <key>behVinvertedbelow-ar.init.alt</key>\n      <string>uni0755.init.alt</string>\n      <key>behVinvertedbelow-ar.medi</key>\n      <string>uni0755.medi</string>\n      <key>beheh-ar</key>\n      <string>uni0680</string>\n      <key>beheh-ar.alt</key>\n      <string>uni0680.alt</string>\n      <key>beheh-ar.fina</key>\n      <string>uniFB5B</string>\n      <key>beheh-ar.fina.alt</key>\n      <string>uni0680.fina.alt</string>\n      <key>beheh-ar.init</key>\n      <string>uniFB5C</string>\n      <key>beheh-ar.init.alt</key>\n      <string>uni0680.init.alt</string>\n      <key>beheh-ar.medi</key>\n      <string>uniFB5D</string>\n      <key>behhamzaabove-ar</key>\n      <string>uni08A1</string>\n      <key>behhamzaabove-ar.alt</key>\n      <string>uni08A1.alt</string>\n      <key>behhamzaabove-ar.fina</key>\n      <string>uni08A1.fina</string>\n      <key>behhamzaabove-ar.fina.alt</key>\n      <string>uni08A1.fina.alt</string>\n      <key>behhamzaabove-ar.init</key>\n      <string>uni08A1.init</string>\n      <key>behhamzaabove-ar.medi</key>\n      <string>uni08A1.medi</string>\n      <key>bellControl</key>\n      <string>uni2407</string>\n      <key>bellControl.ss20</key>\n      <string>uni2407.ss20</string>\n      <key>bet-hb</key>\n      <string>uni05D1</string>\n      <key>betdagesh-hb</key>\n      <string>uniFB31</string>\n      <key>bitcoin</key>\n      <string>uni20BF</string>\n      <key>blackCircle</key>\n      <string>uni25CF</string>\n      <key>blackDiamond</key>\n      <string>uni25C6</string>\n      <key>blackHexagon</key>\n      <string>uni2B22</string>\n      <key>blackHorizontalEllipse</key>\n      <string>uni2B2C</string>\n      <key>blackInWhiteDiamond</key>\n      <string>uni25C8</string>\n      <key>blackLargeCircle</key>\n      <string>uni2B24</string>\n      <key>blackLargeSquare</key>\n      <string>uni2B1B</string>\n      <key>blackMediumDiamond</key>\n      <string>uni2B25</string>\n      <key>blackMediumDownTriangleCentred</key>\n      <string>uni2BC6</string>\n      <key>blackMediumLeftTriangleCentred</key>\n      <string>uni2BC7</string>\n      <key>blackMediumLozenge</key>\n      <string>uni2B27</string>\n      <key>blackMediumRightTriangleCentred</key>\n      <string>uni2BC8</string>\n      <key>blackMediumUpTriangleCentred</key>\n      <string>uni2BC5</string>\n      <key>blackParallelogram</key>\n      <string>uni25B0</string>\n      <key>blackPentagon</key>\n      <string>uni2B1F</string>\n      <key>blackSmallDiamond</key>\n      <string>uni2B29</string>\n      <key>blackSmallLozenge</key>\n      <string>uni2B2A</string>\n      <key>blackSmallSquare</key>\n      <string>uni25AA</string>\n      <key>blackSmilingFace</key>\n      <string>invsmileface</string>\n      <key>blackSquare</key>\n      <string>filledbox</string>\n      <key>blackVerticalEllipse</key>\n      <string>uni2B2E</string>\n      <key>blackVerticalRect</key>\n      <string>uni25AE</string>\n      <key>blackVerysmallSquare</key>\n      <string>uni2B1D</string>\n      <key>blank</key>\n      <string>uni2423</string>\n      <key>blank-braille</key>\n      <string>uni2800</string>\n      <key>blankSymbol</key>\n      <string>uni2422</string>\n      <key>bottomHalfBlackCircle</key>\n      <string>uni2BCB</string>\n      <key>bottomHalfBlackDiamond</key>\n      <string>uni2B19</string>\n      <key>boxDoubleDownAndHorizontal</key>\n      <string>uni2566</string>\n      <key>boxDoubleDownAndHorizontal.stypo</key>\n      <string>uni2566.stypo</string>\n      <key>boxDoubleDownAndLeft</key>\n      <string>uni2557</string>\n      <key>boxDoubleDownAndLeft.stypo</key>\n      <string>uni2557.stypo</string>\n      <key>boxDoubleDownAndRight</key>\n      <string>uni2554</string>\n      <key>boxDoubleDownAndRight.stypo</key>\n      <string>uni2554.stypo</string>\n      <key>boxDoubleHorizontal</key>\n      <string>uni2550</string>\n      <key>boxDoubleHorizontal.stypo</key>\n      <string>uni2550.stypo</string>\n      <key>boxDoubleUpAndHorizontal</key>\n      <string>uni2569</string>\n      <key>boxDoubleUpAndHorizontal.stypo</key>\n      <string>uni2569.stypo</string>\n      <key>boxDoubleUpAndLeft</key>\n      <string>uni255D</string>\n      <key>boxDoubleUpAndLeft.stypo</key>\n      <string>uni255D.stypo</string>\n      <key>boxDoubleUpAndRight</key>\n      <string>uni255A</string>\n      <key>boxDoubleUpAndRight.stypo</key>\n      <string>uni255A.stypo</string>\n      <key>boxDoubleVertical</key>\n      <string>uni2551</string>\n      <key>boxDoubleVertical.stypo</key>\n      <string>uni2551.stypo</string>\n      <key>boxDoubleVerticalAndHorizontal</key>\n      <string>uni256C</string>\n      <key>boxDoubleVerticalAndHorizontal.stypo</key>\n      <string>uni256C.stypo</string>\n      <key>boxDoubleVerticalAndLeft</key>\n      <string>uni2563</string>\n      <key>boxDoubleVerticalAndLeft.stypo</key>\n      <string>uni2563.stypo</string>\n      <key>boxDoubleVerticalAndRight</key>\n      <string>uni2560</string>\n      <key>boxDoubleVerticalAndRight.stypo</key>\n      <string>uni2560.stypo</string>\n      <key>boxDownDoubleAndHorizontalSingle</key>\n      <string>uni2565</string>\n      <key>boxDownDoubleAndHorizontalSingle.stypo</key>\n      <string>uni2565.stypo</string>\n      <key>boxDownDoubleAndLeftSingle</key>\n      <string>uni2556</string>\n      <key>boxDownDoubleAndLeftSingle.stypo</key>\n      <string>uni2556.stypo</string>\n      <key>boxDownDoubleAndRightSingle</key>\n      <string>uni2553</string>\n      <key>boxDownDoubleAndRightSingle.stypo</key>\n      <string>uni2553.stypo</string>\n      <key>boxDownHeavyAndHorizontalLight</key>\n      <string>uni2530</string>\n      <key>boxDownHeavyAndHorizontalLight.stypo</key>\n      <string>uni2530.stypo</string>\n      <key>boxDownHeavyAndLeftLight</key>\n      <string>uni2512</string>\n      <key>boxDownHeavyAndLeftLight.stypo</key>\n      <string>uni2512.stypo</string>\n      <key>boxDownHeavyAndLeftUpLight</key>\n      <string>uni2527</string>\n      <key>boxDownHeavyAndLeftUpLight.stypo</key>\n      <string>uni2527.stypo</string>\n      <key>boxDownHeavyAndRightLight</key>\n      <string>uni250E</string>\n      <key>boxDownHeavyAndRightLight.stypo</key>\n      <string>uni250E.stypo</string>\n      <key>boxDownHeavyAndRightUpLight</key>\n      <string>uni251F</string>\n      <key>boxDownHeavyAndRightUpLight.stypo</key>\n      <string>uni251F.stypo</string>\n      <key>boxDownHeavyAndUpHorizontalLight</key>\n      <string>uni2541</string>\n      <key>boxDownHeavyAndUpHorizontalLight.stypo</key>\n      <string>uni2541.stypo</string>\n      <key>boxDownLightAndHorizontalHeavy</key>\n      <string>uni252F</string>\n      <key>boxDownLightAndHorizontalHeavy.stypo</key>\n      <string>uni252F.stypo</string>\n      <key>boxDownLightAndLeftHeavy</key>\n      <string>uni2511</string>\n      <key>boxDownLightAndLeftHeavy.stypo</key>\n      <string>uni2511.stypo</string>\n      <key>boxDownLightAndLeftUpHeavy</key>\n      <string>uni2529</string>\n      <key>boxDownLightAndLeftUpHeavy.stypo</key>\n      <string>uni2529.stypo</string>\n      <key>boxDownLightAndRightHeavy</key>\n      <string>uni250D</string>\n      <key>boxDownLightAndRightHeavy.stypo</key>\n      <string>uni250D.stypo</string>\n      <key>boxDownLightAndRightUpHeavy</key>\n      <string>uni2521</string>\n      <key>boxDownLightAndRightUpHeavy.stypo</key>\n      <string>uni2521.stypo</string>\n      <key>boxDownLightAndUpHorizontalHeavy</key>\n      <string>uni2547</string>\n      <key>boxDownLightAndUpHorizontalHeavy.stypo</key>\n      <string>uni2547.stypo</string>\n      <key>boxDownSingleAndHorizontalDouble</key>\n      <string>uni2564</string>\n      <key>boxDownSingleAndHorizontalDouble.stypo</key>\n      <string>uni2564.stypo</string>\n      <key>boxDownSingleAndLeftDouble</key>\n      <string>uni2555</string>\n      <key>boxDownSingleAndLeftDouble.stypo</key>\n      <string>uni2555.stypo</string>\n      <key>boxDownSingleAndRightDouble</key>\n      <string>uni2552</string>\n      <key>boxDownSingleAndRightDouble.stypo</key>\n      <string>uni2552.stypo</string>\n      <key>boxHeavyDoubleDashHorizontal</key>\n      <string>uni254D</string>\n      <key>boxHeavyDoubleDashHorizontal.stypo</key>\n      <string>uni254D.stypo</string>\n      <key>boxHeavyDoubleDashVertical</key>\n      <string>uni254F</string>\n      <key>boxHeavyDoubleDashVertical.stypo</key>\n      <string>uni254F.stypo</string>\n      <key>boxHeavyDown</key>\n      <string>uni257B</string>\n      <key>boxHeavyDown.stypo</key>\n      <string>uni257B.stypo</string>\n      <key>boxHeavyDownAndHorizontal</key>\n      <string>uni2533</string>\n      <key>boxHeavyDownAndHorizontal.stypo</key>\n      <string>uni2533.stypo</string>\n      <key>boxHeavyDownAndLeft</key>\n      <string>uni2513</string>\n      <key>boxHeavyDownAndLeft.stypo</key>\n      <string>uni2513.stypo</string>\n      <key>boxHeavyDownAndRight</key>\n      <string>uni250F</string>\n      <key>boxHeavyDownAndRight.stypo</key>\n      <string>uni250F.stypo</string>\n      <key>boxHeavyHorizontal</key>\n      <string>uni2501</string>\n      <key>boxHeavyHorizontal.stypo</key>\n      <string>uni2501.stypo</string>\n      <key>boxHeavyLeft</key>\n      <string>uni2578</string>\n      <key>boxHeavyLeft.stypo</key>\n      <string>uni2578.stypo</string>\n      <key>boxHeavyLeftAndLightRight</key>\n      <string>uni257E</string>\n      <key>boxHeavyLeftAndLightRight.stypo</key>\n      <string>uni257E.stypo</string>\n      <key>boxHeavyQuadrupleDashHorizontal</key>\n      <string>uni2509</string>\n      <key>boxHeavyQuadrupleDashHorizontal.stypo</key>\n      <string>uni2509.stypo</string>\n      <key>boxHeavyQuadrupleDashVertical</key>\n      <string>uni250B</string>\n      <key>boxHeavyQuadrupleDashVertical.stypo</key>\n      <string>uni250B.stypo</string>\n      <key>boxHeavyRight</key>\n      <string>uni257A</string>\n      <key>boxHeavyRight.stypo</key>\n      <string>uni257A.stypo</string>\n      <key>boxHeavyTripleDashHorizontal</key>\n      <string>uni2505</string>\n      <key>boxHeavyTripleDashHorizontal.stypo</key>\n      <string>uni2505.stypo</string>\n      <key>boxHeavyTripleDashVertical</key>\n      <string>uni2507</string>\n      <key>boxHeavyTripleDashVertical.stypo</key>\n      <string>uni2507.stypo</string>\n      <key>boxHeavyUp</key>\n      <string>uni2579</string>\n      <key>boxHeavyUp.stypo</key>\n      <string>uni2579.stypo</string>\n      <key>boxHeavyUpAndHorizontal</key>\n      <string>uni253B</string>\n      <key>boxHeavyUpAndHorizontal.stypo</key>\n      <string>uni253B.stypo</string>\n      <key>boxHeavyUpAndLeft</key>\n      <string>uni251B</string>\n      <key>boxHeavyUpAndLeft.stypo</key>\n      <string>uni251B.stypo</string>\n      <key>boxHeavyUpAndLightDown</key>\n      <string>uni257F</string>\n      <key>boxHeavyUpAndLightDown.stypo</key>\n      <string>uni257F.stypo</string>\n      <key>boxHeavyUpAndRight</key>\n      <string>uni2517</string>\n      <key>boxHeavyUpAndRight.stypo</key>\n      <string>uni2517.stypo</string>\n      <key>boxHeavyVertical</key>\n      <string>uni2503</string>\n      <key>boxHeavyVertical.stypo</key>\n      <string>uni2503.stypo</string>\n      <key>boxHeavyVerticalAndHorizontal</key>\n      <string>uni254B</string>\n      <key>boxHeavyVerticalAndHorizontal.stypo</key>\n      <string>uni254B.stypo</string>\n      <key>boxHeavyVerticalAndLeft</key>\n      <string>uni252B</string>\n      <key>boxHeavyVerticalAndLeft.stypo</key>\n      <string>uni252B.stypo</string>\n      <key>boxHeavyVerticalAndRight</key>\n      <string>uni2523</string>\n      <key>boxHeavyVerticalAndRight.stypo</key>\n      <string>uni2523.stypo</string>\n      <key>boxLeftDownHeavyAndRightUpLight</key>\n      <string>uni2545</string>\n      <key>boxLeftDownHeavyAndRightUpLight.stypo</key>\n      <string>uni2545.stypo</string>\n      <key>boxLeftHeavyAndRightDownLight</key>\n      <string>uni252D</string>\n      <key>boxLeftHeavyAndRightDownLight.stypo</key>\n      <string>uni252D.stypo</string>\n      <key>boxLeftHeavyAndRightUpLight</key>\n      <string>uni2535</string>\n      <key>boxLeftHeavyAndRightUpLight.stypo</key>\n      <string>uni2535.stypo</string>\n      <key>boxLeftHeavyAndRightVerticalLight</key>\n      <string>uni253D</string>\n      <key>boxLeftHeavyAndRightVerticalLight.stypo</key>\n      <string>uni253D.stypo</string>\n      <key>boxLeftLightAndRightDownHeavy</key>\n      <string>uni2532</string>\n      <key>boxLeftLightAndRightDownHeavy.stypo</key>\n      <string>uni2532.stypo</string>\n      <key>boxLeftLightAndRightUpHeavy</key>\n      <string>uni253A</string>\n      <key>boxLeftLightAndRightUpHeavy.stypo</key>\n      <string>uni253A.stypo</string>\n      <key>boxLeftLightAndRightVerticalHeavy</key>\n      <string>uni254A</string>\n      <key>boxLeftLightAndRightVerticalHeavy.stypo</key>\n      <string>uni254A.stypo</string>\n      <key>boxLeftUpHeavyAndRightDownLight</key>\n      <string>uni2543</string>\n      <key>boxLeftUpHeavyAndRightDownLight.stypo</key>\n      <string>uni2543.stypo</string>\n      <key>boxLightArcDownAndLeft</key>\n      <string>uni256E</string>\n      <key>boxLightArcDownAndLeft.stypo</key>\n      <string>uni256E.stypo</string>\n      <key>boxLightArcDownAndRight</key>\n      <string>uni256D</string>\n      <key>boxLightArcDownAndRight.stypo</key>\n      <string>uni256D.stypo</string>\n      <key>boxLightArcUpAndLeft</key>\n      <string>uni256F</string>\n      <key>boxLightArcUpAndLeft.stypo</key>\n      <string>uni256F.stypo</string>\n      <key>boxLightArcUpAndRight</key>\n      <string>uni2570</string>\n      <key>boxLightArcUpAndRight.stypo</key>\n      <string>uni2570.stypo</string>\n      <key>boxLightDiagonalCross</key>\n      <string>uni2573</string>\n      <key>boxLightDiagonalCross.stypo</key>\n      <string>uni2573.stypo</string>\n      <key>boxLightDiagonalUpperLeftToLowerRight</key>\n      <string>uni2572</string>\n      <key>boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n      <string>uni2572.stypo</string>\n      <key>boxLightDiagonalUpperRightToLowerLeft</key>\n      <string>uni2571</string>\n      <key>boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n      <string>uni2571.stypo</string>\n      <key>boxLightDoubleDashHorizontal</key>\n      <string>uni254C</string>\n      <key>boxLightDoubleDashHorizontal.stypo</key>\n      <string>uni254C.stypo</string>\n      <key>boxLightDoubleDashVertical</key>\n      <string>uni254E</string>\n      <key>boxLightDoubleDashVertical.stypo</key>\n      <string>uni254E.stypo</string>\n      <key>boxLightDown</key>\n      <string>uni2577</string>\n      <key>boxLightDown.stypo</key>\n      <string>uni2577.stypo</string>\n      <key>boxLightDownAndHorizontal</key>\n      <string>uni252C</string>\n      <key>boxLightDownAndHorizontal.stypo</key>\n      <string>uni252C.stypo</string>\n      <key>boxLightDownAndLeft</key>\n      <string>uni2510</string>\n      <key>boxLightDownAndLeft.stypo</key>\n      <string>uni2510.stypo</string>\n      <key>boxLightDownAndRight</key>\n      <string>uni250C</string>\n      <key>boxLightDownAndRight.stypo</key>\n      <string>uni250C.stypo</string>\n      <key>boxLightHorizontal</key>\n      <string>uni2500</string>\n      <key>boxLightHorizontal.stypo</key>\n      <string>uni2500.stypo</string>\n      <key>boxLightLeft</key>\n      <string>uni2574</string>\n      <key>boxLightLeft.stypo</key>\n      <string>uni2574.stypo</string>\n      <key>boxLightLeftAndHeavyRight</key>\n      <string>uni257C</string>\n      <key>boxLightLeftAndHeavyRight.stypo</key>\n      <string>uni257C.stypo</string>\n      <key>boxLightQuadrupleDashHorizontal</key>\n      <string>uni2508</string>\n      <key>boxLightQuadrupleDashHorizontal.stypo</key>\n      <string>uni2508.stypo</string>\n      <key>boxLightQuadrupleDashVertical</key>\n      <string>uni250A</string>\n      <key>boxLightQuadrupleDashVertical.stypo</key>\n      <string>uni250A.stypo</string>\n      <key>boxLightRight</key>\n      <string>uni2576</string>\n      <key>boxLightRight.stypo</key>\n      <string>uni2576.stypo</string>\n      <key>boxLightTripleDashHorizontal</key>\n      <string>uni2504</string>\n      <key>boxLightTripleDashHorizontal.stypo</key>\n      <string>uni2504.stypo</string>\n      <key>boxLightTripleDashVertical</key>\n      <string>uni2506</string>\n      <key>boxLightTripleDashVertical.stypo</key>\n      <string>uni2506.stypo</string>\n      <key>boxLightUp</key>\n      <string>uni2575</string>\n      <key>boxLightUp.stypo</key>\n      <string>uni2575.stypo</string>\n      <key>boxLightUpAndHeavyDown</key>\n      <string>uni257D</string>\n      <key>boxLightUpAndHeavyDown.stypo</key>\n      <string>uni257D.stypo</string>\n      <key>boxLightUpAndHorizontal</key>\n      <string>uni2534</string>\n      <key>boxLightUpAndHorizontal.stypo</key>\n      <string>uni2534.stypo</string>\n      <key>boxLightUpAndLeft</key>\n      <string>uni2518</string>\n      <key>boxLightUpAndLeft.stypo</key>\n      <string>uni2518.stypo</string>\n      <key>boxLightUpAndRight</key>\n      <string>uni2514</string>\n      <key>boxLightUpAndRight.stypo</key>\n      <string>uni2514.stypo</string>\n      <key>boxLightVertical</key>\n      <string>uni2502</string>\n      <key>boxLightVertical.stypo</key>\n      <string>uni2502.stypo</string>\n      <key>boxLightVerticalAndHorizontal</key>\n      <string>uni253C</string>\n      <key>boxLightVerticalAndHorizontal.stypo</key>\n      <string>uni253C.stypo</string>\n      <key>boxLightVerticalAndLeft</key>\n      <string>uni2524</string>\n      <key>boxLightVerticalAndLeft.stypo</key>\n      <string>uni2524.stypo</string>\n      <key>boxLightVerticalAndRight</key>\n      <string>uni251C</string>\n      <key>boxLightVerticalAndRight.stypo</key>\n      <string>uni251C.stypo</string>\n      <key>boxRightDownHeavyAndLeftUpLight</key>\n      <string>uni2546</string>\n      <key>boxRightDownHeavyAndLeftUpLight.stypo</key>\n      <string>uni2546.stypo</string>\n      <key>boxRightHeavyAndLeftDownLight</key>\n      <string>uni252E</string>\n      <key>boxRightHeavyAndLeftDownLight.stypo</key>\n      <string>uni252E.stypo</string>\n      <key>boxRightHeavyAndLeftUpLight</key>\n      <string>uni2536</string>\n      <key>boxRightHeavyAndLeftUpLight.stypo</key>\n      <string>uni2536.stypo</string>\n      <key>boxRightHeavyAndLeftVerticalLight</key>\n      <string>uni253E</string>\n      <key>boxRightHeavyAndLeftVerticalLight.stypo</key>\n      <string>uni253E.stypo</string>\n      <key>boxRightLightAndLeftDownHeavy</key>\n      <string>uni2531</string>\n      <key>boxRightLightAndLeftDownHeavy.stypo</key>\n      <string>uni2531.stypo</string>\n      <key>boxRightLightAndLeftUpHeavy</key>\n      <string>uni2539</string>\n      <key>boxRightLightAndLeftUpHeavy.stypo</key>\n      <string>uni2539.stypo</string>\n      <key>boxRightLightAndLeftVerticalHeavy</key>\n      <string>uni2549</string>\n      <key>boxRightLightAndLeftVerticalHeavy.stypo</key>\n      <string>uni2549.stypo</string>\n      <key>boxRightUpHeavyAndLeftDownLight</key>\n      <string>uni2544</string>\n      <key>boxRightUpHeavyAndLeftDownLight.stypo</key>\n      <string>uni2544.stypo</string>\n      <key>boxUpDoubleAndHorizontalSingle</key>\n      <string>uni2568</string>\n      <key>boxUpDoubleAndHorizontalSingle.stypo</key>\n      <string>uni2568.stypo</string>\n      <key>boxUpDoubleAndLeftSingle</key>\n      <string>uni255C</string>\n      <key>boxUpDoubleAndLeftSingle.stypo</key>\n      <string>uni255C.stypo</string>\n      <key>boxUpDoubleAndRightSingle</key>\n      <string>uni2559</string>\n      <key>boxUpDoubleAndRightSingle.stypo</key>\n      <string>uni2559.stypo</string>\n      <key>boxUpHeavyAndDownHorizontalLight</key>\n      <string>uni2540</string>\n      <key>boxUpHeavyAndDownHorizontalLight.stypo</key>\n      <string>uni2540.stypo</string>\n      <key>boxUpHeavyAndHorizontalLight</key>\n      <string>uni2538</string>\n      <key>boxUpHeavyAndHorizontalLight.stypo</key>\n      <string>uni2538.stypo</string>\n      <key>boxUpHeavyAndLeftDownLight</key>\n      <string>uni2526</string>\n      <key>boxUpHeavyAndLeftDownLight.stypo</key>\n      <string>uni2526.stypo</string>\n      <key>boxUpHeavyAndLeftLight</key>\n      <string>uni251A</string>\n      <key>boxUpHeavyAndLeftLight.stypo</key>\n      <string>uni251A.stypo</string>\n      <key>boxUpHeavyAndRightDownLight</key>\n      <string>uni251E</string>\n      <key>boxUpHeavyAndRightDownLight.stypo</key>\n      <string>uni251E.stypo</string>\n      <key>boxUpHeavyAndRightLight</key>\n      <string>uni2516</string>\n      <key>boxUpHeavyAndRightLight.stypo</key>\n      <string>uni2516.stypo</string>\n      <key>boxUpLightAndDownHorizontalHeavy</key>\n      <string>uni2548</string>\n      <key>boxUpLightAndDownHorizontalHeavy.stypo</key>\n      <string>uni2548.stypo</string>\n      <key>boxUpLightAndHorizontalHeavy</key>\n      <string>uni2537</string>\n      <key>boxUpLightAndHorizontalHeavy.stypo</key>\n      <string>uni2537.stypo</string>\n      <key>boxUpLightAndLeftDownHeavy</key>\n      <string>uni252A</string>\n      <key>boxUpLightAndLeftDownHeavy.stypo</key>\n      <string>uni252A.stypo</string>\n      <key>boxUpLightAndLeftHeavy</key>\n      <string>uni2519</string>\n      <key>boxUpLightAndLeftHeavy.stypo</key>\n      <string>uni2519.stypo</string>\n      <key>boxUpLightAndRightDownHeavy</key>\n      <string>uni2522</string>\n      <key>boxUpLightAndRightDownHeavy.stypo</key>\n      <string>uni2522.stypo</string>\n      <key>boxUpLightAndRightHeavy</key>\n      <string>uni2515</string>\n      <key>boxUpLightAndRightHeavy.stypo</key>\n      <string>uni2515.stypo</string>\n      <key>boxUpSingleAndHorizontalDouble</key>\n      <string>uni2567</string>\n      <key>boxUpSingleAndHorizontalDouble.stypo</key>\n      <string>uni2567.stypo</string>\n      <key>boxUpSingleAndLeftDouble</key>\n      <string>uni255B</string>\n      <key>boxUpSingleAndLeftDouble.stypo</key>\n      <string>uni255B.stypo</string>\n      <key>boxUpSingleAndRightDouble</key>\n      <string>uni2558</string>\n      <key>boxUpSingleAndRightDouble.stypo</key>\n      <string>uni2558.stypo</string>\n      <key>boxVerticalDoubleAndHorizontalSingle</key>\n      <string>uni256B</string>\n      <key>boxVerticalDoubleAndHorizontalSingle.stypo</key>\n      <string>uni256B.stypo</string>\n      <key>boxVerticalDoubleAndLeftSingle</key>\n      <string>uni2562</string>\n      <key>boxVerticalDoubleAndLeftSingle.stypo</key>\n      <string>uni2562.stypo</string>\n      <key>boxVerticalDoubleAndRightSingle</key>\n      <string>uni255F</string>\n      <key>boxVerticalDoubleAndRightSingle.stypo</key>\n      <string>uni255F.stypo</string>\n      <key>boxVerticalHeavyAndHorizontalLight</key>\n      <string>uni2542</string>\n      <key>boxVerticalHeavyAndHorizontalLight.stypo</key>\n      <string>uni2542.stypo</string>\n      <key>boxVerticalHeavyAndLeftLight</key>\n      <string>uni2528</string>\n      <key>boxVerticalHeavyAndLeftLight.stypo</key>\n      <string>uni2528.stypo</string>\n      <key>boxVerticalHeavyAndRightLight</key>\n      <string>uni2520</string>\n      <key>boxVerticalHeavyAndRightLight.stypo</key>\n      <string>uni2520.stypo</string>\n      <key>boxVerticalLightAndHorizontalHeavy</key>\n      <string>uni253F</string>\n      <key>boxVerticalLightAndHorizontalHeavy.stypo</key>\n      <string>uni253F.stypo</string>\n      <key>boxVerticalLightAndLeftHeavy</key>\n      <string>uni2525</string>\n      <key>boxVerticalLightAndLeftHeavy.stypo</key>\n      <string>uni2525.stypo</string>\n      <key>boxVerticalLightAndRightHeavy</key>\n      <string>uni251D</string>\n      <key>boxVerticalLightAndRightHeavy.stypo</key>\n      <string>uni251D.stypo</string>\n      <key>boxVerticalSingleAndHorizontalDouble</key>\n      <string>uni256A</string>\n      <key>boxVerticalSingleAndHorizontalDouble.stypo</key>\n      <string>uni256A.stypo</string>\n      <key>boxVerticalSingleAndLeftDouble</key>\n      <string>uni2561</string>\n      <key>boxVerticalSingleAndLeftDouble.stypo</key>\n      <string>uni2561.stypo</string>\n      <key>boxVerticalSingleAndRightDouble</key>\n      <string>uni255E</string>\n      <key>boxVerticalSingleAndRightDouble.stypo</key>\n      <string>uni255E.stypo</string>\n      <key>brevecomb</key>\n      <string>uni0306</string>\n      <key>brevecomb-cy</key>\n      <string>brevecombcy</string>\n      <key>brevecomb-cy.case</key>\n      <string>brevecombcy.case</string>\n      <key>brevecomb.case</key>\n      <string>uni0306.case</string>\n      <key>bulletoperator</key>\n      <string>uni2219</string>\n      <key>bullseye</key>\n      <string>uni25CE</string>\n      <key>cancelControl</key>\n      <string>uni2418</string>\n      <key>cancelControl.ss20</key>\n      <string>uni2418.ss20</string>\n      <key>careof</key>\n      <string>uni2105</string>\n      <key>caroncomb</key>\n      <string>uni030C</string>\n      <key>caroncomb.case</key>\n      <string>uni030C.case</string>\n      <key>carriageReturnControl</key>\n      <string>uni240D</string>\n      <key>carriageReturnControl.ss20</key>\n      <string>uni240D.ss20</string>\n      <key>cedi</key>\n      <string>uni20B5</string>\n      <key>cedillacomb</key>\n      <string>uni0327</string>\n      <key>che-cy</key>\n      <string>uni0447</string>\n      <key>checkmark</key>\n      <string>uni2713</string>\n      <key>chedescender-cy</key>\n      <string>uni04B7</string>\n      <key>circumflexcomb</key>\n      <string>uni0302</string>\n      <key>circumflexcomb.case</key>\n      <string>uni0302.case</string>\n      <key>clubBlackSuit</key>\n      <string>club</string>\n      <key>colonsign</key>\n      <string>colonmonetary</string>\n      <key>colontriangularmod</key>\n      <string>uni02D0</string>\n      <key>comma-ar</key>\n      <string>uni060C</string>\n      <key>commaabovecomb</key>\n      <string>uni0313</string>\n      <key>commaaboverightcomb</key>\n      <string>uni0315</string>\n      <key>commaaccentcomb</key>\n      <string>uni0326</string>\n      <key>commaturnedabovecomb</key>\n      <string>uni0312</string>\n      <key>commaturnedmod</key>\n      <string>uni02BB</string>\n      <key>crosshatchFillSquare</key>\n      <string>uni25A6</string>\n      <key>cuberoot-ar</key>\n      <string>uni0606</string>\n      <key>dad-ar</key>\n      <string>uni0636</string>\n      <key>dad-ar.alt</key>\n      <string>uni0636.alt</string>\n      <key>dad-ar.fina</key>\n      <string>uniFEBE</string>\n      <key>dad-ar.fina.alt</key>\n      <string>uni0636.fina.alt</string>\n      <key>dad-ar.init</key>\n      <string>uniFEBF</string>\n      <key>dad-ar.medi</key>\n      <string>uniFEC0</string>\n      <key>dadDotbelow-ar</key>\n      <string>uni06FB</string>\n      <key>dadDotbelow-ar.alt</key>\n      <string>uni06FB.alt</string>\n      <key>dadDotbelow-ar.fina</key>\n      <string>uni06FB.fina</string>\n      <key>dadDotbelow-ar.fina.alt</key>\n      <string>uni06FB.fina.alt</string>\n      <key>dadDotbelow-ar.init</key>\n      <string>uni06FB.init</string>\n      <key>dadDotbelow-ar.medi</key>\n      <string>uni06FB.medi</string>\n      <key>dagesh-hb</key>\n      <string>uni05BC</string>\n      <key>dahal-ar</key>\n      <string>uni068C</string>\n      <key>dahal-ar.fina</key>\n      <string>uniFB85</string>\n      <key>dal-ar</key>\n      <string>uni062F</string>\n      <key>dal-ar.fina</key>\n      <string>uniFEAA</string>\n      <key>dalDotbelow-ar</key>\n      <string>uni068A</string>\n      <key>dalDotbelow-ar.fina</key>\n      <string>uni068A.fina</string>\n      <key>dalDotbelowTah-ar</key>\n      <string>uni068B</string>\n      <key>dalDotbelowTah-ar.fina</key>\n      <string>uni068B.fina</string>\n      <key>dalFourdots-ar</key>\n      <string>uni0690</string>\n      <key>dalFourdots-ar.fina</key>\n      <string>uni0690.fina</string>\n      <key>dalRing-ar</key>\n      <string>uni0689</string>\n      <key>dalRing-ar.fina</key>\n      <string>uni0689.fina</string>\n      <key>dalThreedotsbelow-ar</key>\n      <string>uni08AE</string>\n      <key>dalThreedotsbelow-ar.fina</key>\n      <string>uni08AE.fina</string>\n      <key>dalThreedotsdown-ar</key>\n      <string>uni068F</string>\n      <key>dalThreedotsdown-ar.fina</key>\n      <string>uni068F.fina</string>\n      <key>dalTwodotsverticalbelowTahabove-ar</key>\n      <string>dalTwodotsverticalbelowTahabovear</string>\n      <key>dalTwodotsverticalbelowTahabove-ar.fina</key>\n      <string>dalTwodotsverticalbelowTahabovear.fina</string>\n      <key>dalVinvertedabove-ar</key>\n      <string>uni06EE</string>\n      <key>dalVinvertedabove-ar.fina</key>\n      <string>uni06EE.fina</string>\n      <key>dalVinvertedbelow-ar</key>\n      <string>uni075A</string>\n      <key>dalVinvertedbelow-ar.fina</key>\n      <string>uni075A.fina</string>\n      <key>dalet-hb</key>\n      <string>uni05D3</string>\n      <key>daletdagesh-hb</key>\n      <string>uniFB33</string>\n      <key>damma-ar</key>\n      <string>uni064F</string>\n      <key>dammatan-ar</key>\n      <string>uni064C</string>\n      <key>dashdownArrow</key>\n      <string>uni21E3</string>\n      <key>dataLinkEscapeControl</key>\n      <string>uni2410</string>\n      <key>dataLinkEscapeControl.ss20</key>\n      <string>uni2410.ss20</string>\n      <key>dateseparator-ar</key>\n      <string>uni060D</string>\n      <key>ddahal-ar</key>\n      <string>uni068D</string>\n      <key>ddahal-ar.fina</key>\n      <string>uniFB83</string>\n      <key>ddal-ar</key>\n      <string>uni0688</string>\n      <key>ddal-ar.fina</key>\n      <string>uniFB89</string>\n      <key>de-cy</key>\n      <string>uni0434</string>\n      <key>de-cy.loclBGR</key>\n      <string>uni0434.loclBGR</string>\n      <key>decimalseparator-ar</key>\n      <string>uni066B</string>\n      <key>deleteControl</key>\n      <string>uni2421</string>\n      <key>deleteFormTwoControl</key>\n      <string>uni2425</string>\n      <key>deviceControlFourControl</key>\n      <string>uni2414</string>\n      <key>deviceControlOneControl</key>\n      <string>uni2411</string>\n      <key>deviceControlThreeControl</key>\n      <string>uni2413</string>\n      <key>deviceControlTwoControl</key>\n      <string>uni2412</string>\n      <key>diagonalcrosshatchFillSquare</key>\n      <string>uni25A9</string>\n      <key>diamondBlackSuit</key>\n      <string>diamond</string>\n      <key>dieresiscomb</key>\n      <string>uni0308</string>\n      <key>dieresiscomb.case</key>\n      <string>uni0308.case</string>\n      <key>divisionslash</key>\n      <string>uni2215</string>\n      <key>dje-cy</key>\n      <string>uni0452</string>\n      <key>dotabove-ar</key>\n      <string>dotabovear</string>\n      <key>dotaccentcomb</key>\n      <string>uni0307</string>\n      <key>dotaccentcomb.case</key>\n      <string>uni0307.case</string>\n      <key>dotbelow-ar</key>\n      <string>dotbelowar</string>\n      <key>dotcenter-ar</key>\n      <string>dotcenterar</string>\n      <key>dots1-braille</key>\n      <string>uni2801</string>\n      <key>dots12-braille</key>\n      <string>uni2803</string>\n      <key>dots123-braille</key>\n      <string>uni2807</string>\n      <key>dots1234-braille</key>\n      <string>uni280F</string>\n      <key>dots12345-braille</key>\n      <string>uni281F</string>\n      <key>dots123456-braille</key>\n      <string>uni283F</string>\n      <key>dots1234567-braille</key>\n      <string>uni287F</string>\n      <key>dots12345678-braille</key>\n      <string>uni28FF</string>\n      <key>dots1234568-braille</key>\n      <string>uni28BF</string>\n      <key>dots123457-braille</key>\n      <string>uni285F</string>\n      <key>dots1234578-braille</key>\n      <string>uni28DF</string>\n      <key>dots123458-braille</key>\n      <string>uni289F</string>\n      <key>dots12346-braille</key>\n      <string>uni282F</string>\n      <key>dots123467-braille</key>\n      <string>uni286F</string>\n      <key>dots1234678-braille</key>\n      <string>uni28EF</string>\n      <key>dots123468-braille</key>\n      <string>uni28AF</string>\n      <key>dots12347-braille</key>\n      <string>uni284F</string>\n      <key>dots123478-braille</key>\n      <string>uni28CF</string>\n      <key>dots12348-braille</key>\n      <string>uni288F</string>\n      <key>dots1235-braille</key>\n      <string>uni2817</string>\n      <key>dots12356-braille</key>\n      <string>uni2837</string>\n      <key>dots123567-braille</key>\n      <string>uni2877</string>\n      <key>dots1235678-braille</key>\n      <string>uni28F7</string>\n      <key>dots123568-braille</key>\n      <string>uni28B7</string>\n      <key>dots12357-braille</key>\n      <string>uni2857</string>\n      <key>dots123578-braille</key>\n      <string>uni28D7</string>\n      <key>dots12358-braille</key>\n      <string>uni2897</string>\n      <key>dots1236-braille</key>\n      <string>uni2827</string>\n      <key>dots12367-braille</key>\n      <string>uni2867</string>\n      <key>dots123678-braille</key>\n      <string>uni28E7</string>\n      <key>dots12368-braille</key>\n      <string>uni28A7</string>\n      <key>dots1237-braille</key>\n      <string>uni2847</string>\n      <key>dots12378-braille</key>\n      <string>uni28C7</string>\n      <key>dots1238-braille</key>\n      <string>uni2887</string>\n      <key>dots124-braille</key>\n      <string>uni280B</string>\n      <key>dots1245-braille</key>\n      <string>uni281B</string>\n      <key>dots12456-braille</key>\n      <string>uni283B</string>\n      <key>dots124567-braille</key>\n      <string>uni287B</string>\n      <key>dots1245678-braille</key>\n      <string>uni28FB</string>\n      <key>dots124568-braille</key>\n      <string>uni28BB</string>\n      <key>dots12457-braille</key>\n      <string>uni285B</string>\n      <key>dots124578-braille</key>\n      <string>uni28DB</string>\n      <key>dots12458-braille</key>\n      <string>uni289B</string>\n      <key>dots1246-braille</key>\n      <string>uni282B</string>\n      <key>dots12467-braille</key>\n      <string>uni286B</string>\n      <key>dots124678-braille</key>\n      <string>uni28EB</string>\n      <key>dots12468-braille</key>\n      <string>uni28AB</string>\n      <key>dots1247-braille</key>\n      <string>uni284B</string>\n      <key>dots12478-braille</key>\n      <string>uni28CB</string>\n      <key>dots1248-braille</key>\n      <string>uni288B</string>\n      <key>dots125-braille</key>\n      <string>uni2813</string>\n      <key>dots1256-braille</key>\n      <string>uni2833</string>\n      <key>dots12567-braille</key>\n      <string>uni2873</string>\n      <key>dots125678-braille</key>\n      <string>uni28F3</string>\n      <key>dots12568-braille</key>\n      <string>uni28B3</string>\n      <key>dots1257-braille</key>\n      <string>uni2853</string>\n      <key>dots12578-braille</key>\n      <string>uni28D3</string>\n      <key>dots1258-braille</key>\n      <string>uni2893</string>\n      <key>dots126-braille</key>\n      <string>uni2823</string>\n      <key>dots1267-braille</key>\n      <string>uni2863</string>\n      <key>dots12678-braille</key>\n      <string>uni28E3</string>\n      <key>dots1268-braille</key>\n      <string>uni28A3</string>\n      <key>dots127-braille</key>\n      <string>uni2843</string>\n      <key>dots1278-braille</key>\n      <string>uni28C3</string>\n      <key>dots128-braille</key>\n      <string>uni2883</string>\n      <key>dots13-braille</key>\n      <string>uni2805</string>\n      <key>dots134-braille</key>\n      <string>uni280D</string>\n      <key>dots1345-braille</key>\n      <string>uni281D</string>\n      <key>dots13456-braille</key>\n      <string>uni283D</string>\n      <key>dots134567-braille</key>\n      <string>uni287D</string>\n      <key>dots1345678-braille</key>\n      <string>uni28FD</string>\n      <key>dots134568-braille</key>\n      <string>uni28BD</string>\n      <key>dots13457-braille</key>\n      <string>uni285D</string>\n      <key>dots134578-braille</key>\n      <string>uni28DD</string>\n      <key>dots13458-braille</key>\n      <string>uni289D</string>\n      <key>dots1346-braille</key>\n      <string>uni282D</string>\n      <key>dots13467-braille</key>\n      <string>uni286D</string>\n      <key>dots134678-braille</key>\n      <string>uni28ED</string>\n      <key>dots13468-braille</key>\n      <string>uni28AD</string>\n      <key>dots1347-braille</key>\n      <string>uni284D</string>\n      <key>dots13478-braille</key>\n      <string>uni28CD</string>\n      <key>dots1348-braille</key>\n      <string>uni288D</string>\n      <key>dots135-braille</key>\n      <string>uni2815</string>\n      <key>dots1356-braille</key>\n      <string>uni2835</string>\n      <key>dots13567-braille</key>\n      <string>uni2875</string>\n      <key>dots135678-braille</key>\n      <string>uni28F5</string>\n      <key>dots13568-braille</key>\n      <string>uni28B5</string>\n      <key>dots1357-braille</key>\n      <string>uni2855</string>\n      <key>dots13578-braille</key>\n      <string>uni28D5</string>\n      <key>dots1358-braille</key>\n      <string>uni2895</string>\n      <key>dots136-braille</key>\n      <string>uni2825</string>\n      <key>dots1367-braille</key>\n      <string>uni2865</string>\n      <key>dots13678-braille</key>\n      <string>uni28E5</string>\n      <key>dots1368-braille</key>\n      <string>uni28A5</string>\n      <key>dots137-braille</key>\n      <string>uni2845</string>\n      <key>dots1378-braille</key>\n      <string>uni28C5</string>\n      <key>dots138-braille</key>\n      <string>uni2885</string>\n      <key>dots14-braille</key>\n      <string>uni2809</string>\n      <key>dots145-braille</key>\n      <string>uni2819</string>\n      <key>dots1456-braille</key>\n      <string>uni2839</string>\n      <key>dots14567-braille</key>\n      <string>uni2879</string>\n      <key>dots145678-braille</key>\n      <string>uni28F9</string>\n      <key>dots14568-braille</key>\n      <string>uni28B9</string>\n      <key>dots1457-braille</key>\n      <string>uni2859</string>\n      <key>dots14578-braille</key>\n      <string>uni28D9</string>\n      <key>dots1458-braille</key>\n      <string>uni2899</string>\n      <key>dots146-braille</key>\n      <string>uni2829</string>\n      <key>dots1467-braille</key>\n      <string>uni2869</string>\n      <key>dots14678-braille</key>\n      <string>uni28E9</string>\n      <key>dots1468-braille</key>\n      <string>uni28A9</string>\n      <key>dots147-braille</key>\n      <string>uni2849</string>\n      <key>dots1478-braille</key>\n      <string>uni28C9</string>\n      <key>dots148-braille</key>\n      <string>uni2889</string>\n      <key>dots15-braille</key>\n      <string>uni2811</string>\n      <key>dots156-braille</key>\n      <string>uni2831</string>\n      <key>dots1567-braille</key>\n      <string>uni2871</string>\n      <key>dots15678-braille</key>\n      <string>uni28F1</string>\n      <key>dots1568-braille</key>\n      <string>uni28B1</string>\n      <key>dots157-braille</key>\n      <string>uni2851</string>\n      <key>dots1578-braille</key>\n      <string>uni28D1</string>\n      <key>dots158-braille</key>\n      <string>uni2891</string>\n      <key>dots16-braille</key>\n      <string>uni2821</string>\n      <key>dots167-braille</key>\n      <string>uni2861</string>\n      <key>dots1678-braille</key>\n      <string>uni28E1</string>\n      <key>dots168-braille</key>\n      <string>uni28A1</string>\n      <key>dots17-braille</key>\n      <string>uni2841</string>\n      <key>dots178-braille</key>\n      <string>uni28C1</string>\n      <key>dots18-braille</key>\n      <string>uni2881</string>\n      <key>dots2-braille</key>\n      <string>uni2802</string>\n      <key>dots23-braille</key>\n      <string>uni2806</string>\n      <key>dots234-braille</key>\n      <string>uni280E</string>\n      <key>dots2345-braille</key>\n      <string>uni281E</string>\n      <key>dots23456-braille</key>\n      <string>uni283E</string>\n      <key>dots234567-braille</key>\n      <string>uni287E</string>\n      <key>dots2345678-braille</key>\n      <string>uni28FE</string>\n      <key>dots234568-braille</key>\n      <string>uni28BE</string>\n      <key>dots23457-braille</key>\n      <string>uni285E</string>\n      <key>dots234578-braille</key>\n      <string>uni28DE</string>\n      <key>dots23458-braille</key>\n      <string>uni289E</string>\n      <key>dots2346-braille</key>\n      <string>uni282E</string>\n      <key>dots23467-braille</key>\n      <string>uni286E</string>\n      <key>dots234678-braille</key>\n      <string>uni28EE</string>\n      <key>dots23468-braille</key>\n      <string>uni28AE</string>\n      <key>dots2347-braille</key>\n      <string>uni284E</string>\n      <key>dots23478-braille</key>\n      <string>uni28CE</string>\n      <key>dots2348-braille</key>\n      <string>uni288E</string>\n      <key>dots235-braille</key>\n      <string>uni2816</string>\n      <key>dots2356-braille</key>\n      <string>uni2836</string>\n      <key>dots23567-braille</key>\n      <string>uni2876</string>\n      <key>dots235678-braille</key>\n      <string>uni28F6</string>\n      <key>dots23568-braille</key>\n      <string>uni28B6</string>\n      <key>dots2357-braille</key>\n      <string>uni2856</string>\n      <key>dots23578-braille</key>\n      <string>uni28D6</string>\n      <key>dots2358-braille</key>\n      <string>uni2896</string>\n      <key>dots236-braille</key>\n      <string>uni2826</string>\n      <key>dots2367-braille</key>\n      <string>uni2866</string>\n      <key>dots23678-braille</key>\n      <string>uni28E6</string>\n      <key>dots2368-braille</key>\n      <string>uni28A6</string>\n      <key>dots237-braille</key>\n      <string>uni2846</string>\n      <key>dots2378-braille</key>\n      <string>uni28C6</string>\n      <key>dots238-braille</key>\n      <string>uni2886</string>\n      <key>dots24-braille</key>\n      <string>uni280A</string>\n      <key>dots245-braille</key>\n      <string>uni281A</string>\n      <key>dots2456-braille</key>\n      <string>uni283A</string>\n      <key>dots24567-braille</key>\n      <string>uni287A</string>\n      <key>dots245678-braille</key>\n      <string>uni28FA</string>\n      <key>dots24568-braille</key>\n      <string>uni28BA</string>\n      <key>dots2457-braille</key>\n      <string>uni285A</string>\n      <key>dots24578-braille</key>\n      <string>uni28DA</string>\n      <key>dots2458-braille</key>\n      <string>uni289A</string>\n      <key>dots246-braille</key>\n      <string>uni282A</string>\n      <key>dots2467-braille</key>\n      <string>uni286A</string>\n      <key>dots24678-braille</key>\n      <string>uni28EA</string>\n      <key>dots2468-braille</key>\n      <string>uni28AA</string>\n      <key>dots247-braille</key>\n      <string>uni284A</string>\n      <key>dots2478-braille</key>\n      <string>uni28CA</string>\n      <key>dots248-braille</key>\n      <string>uni288A</string>\n      <key>dots25-braille</key>\n      <string>uni2812</string>\n      <key>dots256-braille</key>\n      <string>uni2832</string>\n      <key>dots2567-braille</key>\n      <string>uni2872</string>\n      <key>dots25678-braille</key>\n      <string>uni28F2</string>\n      <key>dots2568-braille</key>\n      <string>uni28B2</string>\n      <key>dots257-braille</key>\n      <string>uni2852</string>\n      <key>dots2578-braille</key>\n      <string>uni28D2</string>\n      <key>dots258-braille</key>\n      <string>uni2892</string>\n      <key>dots26-braille</key>\n      <string>uni2822</string>\n      <key>dots267-braille</key>\n      <string>uni2862</string>\n      <key>dots2678-braille</key>\n      <string>uni28E2</string>\n      <key>dots268-braille</key>\n      <string>uni28A2</string>\n      <key>dots27-braille</key>\n      <string>uni2842</string>\n      <key>dots278-braille</key>\n      <string>uni28C2</string>\n      <key>dots28-braille</key>\n      <string>uni2882</string>\n      <key>dots3-braille</key>\n      <string>uni2804</string>\n      <key>dots34-braille</key>\n      <string>uni280C</string>\n      <key>dots345-braille</key>\n      <string>uni281C</string>\n      <key>dots3456-braille</key>\n      <string>uni283C</string>\n      <key>dots34567-braille</key>\n      <string>uni287C</string>\n      <key>dots345678-braille</key>\n      <string>uni28FC</string>\n      <key>dots34568-braille</key>\n      <string>uni28BC</string>\n      <key>dots3457-braille</key>\n      <string>uni285C</string>\n      <key>dots34578-braille</key>\n      <string>uni28DC</string>\n      <key>dots3458-braille</key>\n      <string>uni289C</string>\n      <key>dots346-braille</key>\n      <string>uni282C</string>\n      <key>dots3467-braille</key>\n      <string>uni286C</string>\n      <key>dots34678-braille</key>\n      <string>uni28EC</string>\n      <key>dots3468-braille</key>\n      <string>uni28AC</string>\n      <key>dots347-braille</key>\n      <string>uni284C</string>\n      <key>dots3478-braille</key>\n      <string>uni28CC</string>\n      <key>dots348-braille</key>\n      <string>uni288C</string>\n      <key>dots35-braille</key>\n      <string>uni2814</string>\n      <key>dots356-braille</key>\n      <string>uni2834</string>\n      <key>dots3567-braille</key>\n      <string>uni2874</string>\n      <key>dots35678-braille</key>\n      <string>uni28F4</string>\n      <key>dots3568-braille</key>\n      <string>uni28B4</string>\n      <key>dots357-braille</key>\n      <string>uni2854</string>\n      <key>dots3578-braille</key>\n      <string>uni28D4</string>\n      <key>dots358-braille</key>\n      <string>uni2894</string>\n      <key>dots36-braille</key>\n      <string>uni2824</string>\n      <key>dots367-braille</key>\n      <string>uni2864</string>\n      <key>dots3678-braille</key>\n      <string>uni28E4</string>\n      <key>dots368-braille</key>\n      <string>uni28A4</string>\n      <key>dots37-braille</key>\n      <string>uni2844</string>\n      <key>dots378-braille</key>\n      <string>uni28C4</string>\n      <key>dots38-braille</key>\n      <string>uni2884</string>\n      <key>dots4-braille</key>\n      <string>uni2808</string>\n      <key>dots45-braille</key>\n      <string>uni2818</string>\n      <key>dots456-braille</key>\n      <string>uni2838</string>\n      <key>dots4567-braille</key>\n      <string>uni2878</string>\n      <key>dots45678-braille</key>\n      <string>uni28F8</string>\n      <key>dots4568-braille</key>\n      <string>uni28B8</string>\n      <key>dots457-braille</key>\n      <string>uni2858</string>\n      <key>dots4578-braille</key>\n      <string>uni28D8</string>\n      <key>dots458-braille</key>\n      <string>uni2898</string>\n      <key>dots46-braille</key>\n      <string>uni2828</string>\n      <key>dots467-braille</key>\n      <string>uni2868</string>\n      <key>dots4678-braille</key>\n      <string>uni28E8</string>\n      <key>dots468-braille</key>\n      <string>uni28A8</string>\n      <key>dots47-braille</key>\n      <string>uni2848</string>\n      <key>dots478-braille</key>\n      <string>uni28C8</string>\n      <key>dots48-braille</key>\n      <string>uni2888</string>\n      <key>dots5-braille</key>\n      <string>uni2810</string>\n      <key>dots56-braille</key>\n      <string>uni2830</string>\n      <key>dots567-braille</key>\n      <string>uni2870</string>\n      <key>dots5678-braille</key>\n      <string>uni28F0</string>\n      <key>dots568-braille</key>\n      <string>uni28B0</string>\n      <key>dots57-braille</key>\n      <string>uni2850</string>\n      <key>dots578-braille</key>\n      <string>uni28D0</string>\n      <key>dots58-braille</key>\n      <string>uni2890</string>\n      <key>dots6-braille</key>\n      <string>uni2820</string>\n      <key>dots67-braille</key>\n      <string>uni2860</string>\n      <key>dots678-braille</key>\n      <string>uni28E0</string>\n      <key>dots68-braille</key>\n      <string>uni28A0</string>\n      <key>dots7-braille</key>\n      <string>uni2840</string>\n      <key>dots78-braille</key>\n      <string>uni28C0</string>\n      <key>dots8-braille</key>\n      <string>uni2880</string>\n      <key>dottedCircle</key>\n      <string>uni25CC</string>\n      <key>dottedSquare</key>\n      <string>uni2B1A</string>\n      <key>doubleverticalbarbelowSymbol-ar</key>\n      <string>uniFBBC</string>\n      <key>doubleverticalbarbelowSymbol-ar.comb</key>\n      <string>uniFBBC.comb</string>\n      <key>downArrow</key>\n      <string>arrowdown</string>\n      <key>downBlackSmallTriangle</key>\n      <string>uni25BE</string>\n      <key>downBlackTriangle</key>\n      <string>triagdn</string>\n      <key>downTipLeftArrow</key>\n      <string>uni21B2</string>\n      <key>downWhiteSmallTriangle</key>\n      <string>uni25BF</string>\n      <key>downWhiteTriangle</key>\n      <string>uni25BD</string>\n      <key>dtail</key>\n      <string>uni0256</string>\n      <key>dul-ar</key>\n      <string>uni068E</string>\n      <key>dul-ar.fina</key>\n      <string>uniFB87</string>\n      <key>dyeh-ar</key>\n      <string>uni0684</string>\n      <key>dyeh-ar.fina</key>\n      <string>uniFB73</string>\n      <key>dyeh-ar.init</key>\n      <string>uniFB74</string>\n      <key>dyeh-ar.medi</key>\n      <string>uniFB75</string>\n      <key>dze-cy</key>\n      <string>uni0455</string>\n      <key>dzhe-cy</key>\n      <string>uni045F</string>\n      <key>e-ar</key>\n      <string>uni06D0</string>\n      <key>e-ar.fina</key>\n      <string>uniFBE5</string>\n      <key>e-ar.fina.alt</key>\n      <string>uni06D0.fina.alt</string>\n      <key>e-ar.init</key>\n      <string>uniFBE6</string>\n      <key>e-ar.init.alt</key>\n      <string>uni06D0.init.alt</string>\n      <key>e-ar.medi</key>\n      <string>uniFBE7</string>\n      <key>e-cy</key>\n      <string>uni0454</string>\n      <key>ecircumflexacute</key>\n      <string>uni1EBF</string>\n      <key>ecircumflexdotbelow</key>\n      <string>uni1EC7</string>\n      <key>ecircumflexgrave</key>\n      <string>uni1EC1</string>\n      <key>ecircumflexhookabove</key>\n      <string>uni1EC3</string>\n      <key>ecircumflextilde</key>\n      <string>uni1EC5</string>\n      <key>edotbelow</key>\n      <string>uni1EB9</string>\n      <key>ef-cy</key>\n      <string>uni0444</string>\n      <key>ef-cy.loclBGR</key>\n      <string>uni0424.loclBGR</string>\n      <key>ehookabove</key>\n      <string>uni1EBB</string>\n      <key>eight-ar</key>\n      <string>uni0668</string>\n      <key>eight-arinferior</key>\n      <string>eightarinferior</string>\n      <key>eight-arsuperior</key>\n      <string>eightarsuperior</string>\n      <key>eight-persian</key>\n      <string>uni06F8</string>\n      <key>eight-persianinferior</key>\n      <string>eightpersianinferior</string>\n      <key>eight-persiansuperior</key>\n      <string>eightpersiansuperior</string>\n      <key>eightinferior</key>\n      <string>uni2088</string>\n      <key>eightsuperior</key>\n      <string>uni2078</string>\n      <key>el-cy</key>\n      <string>uni043B</string>\n      <key>el-cy.loclBGR</key>\n      <string>uni043B.loclBGR</string>\n      <key>em-cy</key>\n      <string>uni043C</string>\n      <key>en-cy</key>\n      <string>uni043D</string>\n      <key>endOfMediumControl</key>\n      <string>uni2419</string>\n      <key>endOfMediumControl.ss20</key>\n      <string>uni2419.ss20</string>\n      <key>endOfTextControl</key>\n      <string>uni2403</string>\n      <key>endOfTextControl.ss20</key>\n      <string>uni2403.ss20</string>\n      <key>endOfTransmissionBlockControl</key>\n      <string>uni2417</string>\n      <key>endOfTransmissionBlockControl.ss20</key>\n      <string>uni2417.ss20</string>\n      <key>endOfTransmissionControl</key>\n      <string>uni2404</string>\n      <key>endOfTransmissionControl.ss20</key>\n      <string>uni2404.ss20</string>\n      <key>endescender-cy</key>\n      <string>uni04A3</string>\n      <key>endofayah-ar</key>\n      <string>uni06DD</string>\n      <key>enquiryControl</key>\n      <string>uni2405</string>\n      <key>enquiryControl.ss20</key>\n      <string>uni2405.ss20</string>\n      <key>eopen</key>\n      <string>uni025B</string>\n      <key>er-cy</key>\n      <string>uni0440</string>\n      <key>ereversed-cy</key>\n      <string>uni044D</string>\n      <key>es-cy</key>\n      <string>uni0441</string>\n      <key>escapeControl</key>\n      <string>uni241B</string>\n      <key>escapeControl.ss20</key>\n      <string>uni241B.ss20</string>\n      <key>esh</key>\n      <string>uni0283</string>\n      <key>etilde</key>\n      <string>uni1EBD</string>\n      <key>eturned</key>\n      <string>uni01DD</string>\n      <key>euro</key>\n      <string>Euro</string>\n      <key>eurocurrency</key>\n      <string>uni20A0</string>\n      <key>exclamdouble</key>\n      <string>exclamdbl</string>\n      <key>ezh</key>\n      <string>uni0292</string>\n      <key>fatha-ar</key>\n      <string>uni064E</string>\n      <key>fathatan-ar</key>\n      <string>uni064B</string>\n      <key>feh-ar</key>\n      <string>uni0641</string>\n      <key>feh-ar.alt</key>\n      <string>uni0641.alt</string>\n      <key>feh-ar.fina</key>\n      <string>uniFED2</string>\n      <key>feh-ar.fina.alt</key>\n      <string>uni0641.fina.alt</string>\n      <key>feh-ar.init</key>\n      <string>uniFED3</string>\n      <key>feh-ar.init.alt</key>\n      <string>uni0641.init.alt</string>\n      <key>feh-ar.medi</key>\n      <string>uniFED4</string>\n      <key>fehDotMovedbelow-ar</key>\n      <string>fehDotMovedbelowar</string>\n      <key>fehDotMovedbelow-ar.alt</key>\n      <string>fehDotMovedbelowar.alt</string>\n      <key>fehDotMovedbelow-ar.fina</key>\n      <string>fehDotMovedbelowar.fina</string>\n      <key>fehDotMovedbelow-ar.fina.alt</key>\n      <string>fehDotMovedbelowar.fina.alt</string>\n      <key>fehDotMovedbelow-ar.init</key>\n      <string>fehDotMovedbelowar.init</string>\n      <key>fehDotMovedbelow-ar.medi</key>\n      <string>fehDotMovedbelowar.medi</string>\n      <key>fehDotbelow-ar</key>\n      <string>uni06A3</string>\n      <key>fehDotbelow-ar.alt</key>\n      <string>uni06A3.alt</string>\n      <key>fehDotbelow-ar.fina</key>\n      <string>uni06A3.fina</string>\n      <key>fehDotbelow-ar.fina.alt</key>\n      <string>uni06A3.fina.alt</string>\n      <key>fehDotbelow-ar.init</key>\n      <string>uni06A3.init</string>\n      <key>fehDotbelow-ar.medi</key>\n      <string>uni06A3.medi</string>\n      <key>fehDotbelowThreedotsabove-ar</key>\n      <string>uni08A4</string>\n      <key>fehDotbelowThreedotsabove-ar.alt</key>\n      <string>uni08A4.alt</string>\n      <key>fehDotbelowThreedotsabove-ar.fina</key>\n      <string>uni08A4.fina</string>\n      <key>fehDotbelowThreedotsabove-ar.fina.alt</key>\n      <string>uni08A4.fina.alt</string>\n      <key>fehDotbelowThreedotsabove-ar.init</key>\n      <string>uni08A4.init</string>\n      <key>fehDotbelowThreedotsabove-ar.medi</key>\n      <string>uni08A4.medi</string>\n      <key>fehDotless-ar</key>\n      <string>uni06A1</string>\n      <key>fehDotless-ar.alt</key>\n      <string>uni06A1.alt</string>\n      <key>fehDotless-ar.fina</key>\n      <string>uni06A1.fina</string>\n      <key>fehDotless-ar.fina.alt</key>\n      <string>uni06A1.fina.alt</string>\n      <key>fehDotless-ar.init</key>\n      <string>uni06A1.init</string>\n      <key>fehDotless-ar.init.alt</key>\n      <string>uni06A1.init.alt</string>\n      <key>fehDotless-ar.medi</key>\n      <string>uni06A1.medi</string>\n      <key>fehThreedotsbelow-ar</key>\n      <string>uni06A5</string>\n      <key>fehThreedotsbelow-ar.alt</key>\n      <string>uni06A5.alt</string>\n      <key>fehThreedotsbelow-ar.fina</key>\n      <string>uni06A5.fina</string>\n      <key>fehThreedotsbelow-ar.fina.alt</key>\n      <string>uni06A5.fina.alt</string>\n      <key>fehThreedotsbelow-ar.init</key>\n      <string>uni06A5.init</string>\n      <key>fehThreedotsbelow-ar.medi</key>\n      <string>uni06A5.medi</string>\n      <key>fehThreedotsupbelow-ar</key>\n      <string>uni0761</string>\n      <key>fehThreedotsupbelow-ar.alt</key>\n      <string>uni0761.alt</string>\n      <key>fehThreedotsupbelow-ar.fina</key>\n      <string>uni0761.fina</string>\n      <key>fehThreedotsupbelow-ar.fina.alt</key>\n      <string>uni0761.fina.alt</string>\n      <key>fehThreedotsupbelow-ar.init</key>\n      <string>uni0761.init</string>\n      <key>fehThreedotsupbelow-ar.medi</key>\n      <string>uni0761.medi</string>\n      <key>fehTwodotsbelow-ar</key>\n      <string>uni0760</string>\n      <key>fehTwodotsbelow-ar.alt</key>\n      <string>uni0760.alt</string>\n      <key>fehTwodotsbelow-ar.fina</key>\n      <string>uni0760.fina</string>\n      <key>fehTwodotsbelow-ar.fina.alt</key>\n      <string>uni0760.fina.alt</string>\n      <key>fehTwodotsbelow-ar.init</key>\n      <string>uni0760.init</string>\n      <key>fehTwodotsbelow-ar.medi</key>\n      <string>uni0760.medi</string>\n      <key>fileSeparatorControl</key>\n      <string>uni241C</string>\n      <key>filledRect</key>\n      <string>filledrect</string>\n      <key>finalkaf-hb</key>\n      <string>uni05DA</string>\n      <key>finalkafdagesh-hb</key>\n      <string>uniFB3A</string>\n      <key>finalmem-hb</key>\n      <string>uni05DD</string>\n      <key>finalnun-hb</key>\n      <string>uni05DF</string>\n      <key>finalpe-hb</key>\n      <string>uni05E3</string>\n      <key>finalpedagesh-hb</key>\n      <string>uniFB43</string>\n      <key>finaltsadi-hb</key>\n      <string>uni05E5</string>\n      <key>firsttonechinese</key>\n      <string>uni02C9</string>\n      <key>fisheye</key>\n      <string>uni25C9</string>\n      <key>five-ar</key>\n      <string>uni0665</string>\n      <key>five-arinferior</key>\n      <string>fivearinferior</string>\n      <key>five-arsuperior</key>\n      <string>fivearsuperior</string>\n      <key>five-persian</key>\n      <string>uni06F5</string>\n      <key>five-persianinferior</key>\n      <string>fivepersianinferior</string>\n      <key>five-persiansuperior</key>\n      <string>fivepersiansuperior</string>\n      <key>fiveinferior</key>\n      <string>uni2085</string>\n      <key>fivesuperior</key>\n      <string>uni2075</string>\n      <key>footnotemarker-ar</key>\n      <string>uni0602</string>\n      <key>formFeedControl</key>\n      <string>uni240C</string>\n      <key>formFeedControl.ss20</key>\n      <string>uni240C.ss20</string>\n      <key>four-ar</key>\n      <string>uni0664</string>\n      <key>four-arinferior</key>\n      <string>fourarinferior</string>\n      <key>four-arsuperior</key>\n      <string>fourarsuperior</string>\n      <key>four-persian</key>\n      <string>uni06F4</string>\n      <key>four-persian.small01</key>\n      <string>uni06F4.small01</string>\n      <key>four-persian.urdu</key>\n      <string>uni06F4.urdu</string>\n      <key>four-persian.urduinferior</key>\n      <string>uni06F4.urduinferior</string>\n      <key>four-persian.urdusuperior</key>\n      <string>uni06F4.urdusuperior</string>\n      <key>four-persianbelow-ar</key>\n      <string>fourpersianbelowar</string>\n      <key>four-persiancenter-ar</key>\n      <string>fourpersiancenterar</string>\n      <key>four-persianinferior</key>\n      <string>fourpersianinferior</string>\n      <key>four-persiansuperior</key>\n      <string>fourpersiansuperior</string>\n      <key>fourdotsabove-ar</key>\n      <string>fourdotsabovear</string>\n      <key>fourdotsbelow-ar</key>\n      <string>fourdotsbelowar</string>\n      <key>fourdotscenter-ar</key>\n      <string>fourdotscenterar</string>\n      <key>fourinferior</key>\n      <string>uni2084</string>\n      <key>foursuperior</key>\n      <string>uni2074</string>\n      <key>fourthroot-ar</key>\n      <string>uni0607</string>\n      <key>fullBlock</key>\n      <string>block</string>\n      <key>fullBlock.stypo</key>\n      <string>block.stypo</string>\n      <key>fullstop-ar</key>\n      <string>uni06D4</string>\n      <key>gaf-ar</key>\n      <string>uni06AF</string>\n      <key>gaf-ar.fina</key>\n      <string>uniFB93</string>\n      <key>gaf-ar.init</key>\n      <string>uniFB94</string>\n      <key>gaf-ar.medi</key>\n      <string>uniFB95</string>\n      <key>gafInvertedstroke-ar</key>\n      <string>uni08B0</string>\n      <key>gafInvertedstroke-ar.fina</key>\n      <string>uni08B0.fina</string>\n      <key>gafInvertedstroke-ar.init</key>\n      <string>uni08B0.init</string>\n      <key>gafInvertedstroke-ar.medi</key>\n      <string>uni08B0.medi</string>\n      <key>gafRing-ar</key>\n      <string>uni06B0</string>\n      <key>gafRing-ar.fina</key>\n      <string>uni06B0.fina</string>\n      <key>gafRing-ar.init</key>\n      <string>uni06B0.init</string>\n      <key>gafRing-ar.medi</key>\n      <string>uni06B0.medi</string>\n      <key>gafThreedots-ar</key>\n      <string>uni06B4</string>\n      <key>gafThreedots-ar.fina</key>\n      <string>uni06B4.fina</string>\n      <key>gafThreedots-ar.init</key>\n      <string>uni06B4.init</string>\n      <key>gafThreedots-ar.medi</key>\n      <string>uni06B4.medi</string>\n      <key>gafTwodotsbelow-ar</key>\n      <string>uni06B2</string>\n      <key>gafTwodotsbelow-ar.fina</key>\n      <string>uni06B2.fina</string>\n      <key>gafTwodotsbelow-ar.init</key>\n      <string>uni06B2.init</string>\n      <key>gafTwodotsbelow-ar.medi</key>\n      <string>uni06B2.medi</string>\n      <key>gafsarkashabove-ar</key>\n      <string>gafsarkashabovear</string>\n      <key>gamma-latin</key>\n      <string>uni0263</string>\n      <key>gcommaaccent</key>\n      <string>uni0123</string>\n      <key>ge-cy</key>\n      <string>uni0433</string>\n      <key>ge-cy.loclBGR</key>\n      <string>uni0433.loclBGR</string>\n      <key>geresh-hb</key>\n      <string>uni05F3</string>\n      <key>gershayim-hb</key>\n      <string>uni05F4</string>\n      <key>ghain-ar</key>\n      <string>uni063A</string>\n      <key>ghain-ar.fina</key>\n      <string>uniFECE</string>\n      <key>ghain-ar.init</key>\n      <string>uniFECF</string>\n      <key>ghain-ar.medi</key>\n      <string>uniFED0</string>\n      <key>ghainDotbelow-ar</key>\n      <string>uni06FC</string>\n      <key>ghainDotbelow-ar.fina</key>\n      <string>uni06FC.fina</string>\n      <key>ghainDotbelow-ar.init</key>\n      <string>uni06FC.init</string>\n      <key>ghainDotbelow-ar.medi</key>\n      <string>uni06FC.medi</string>\n      <key>ghestroke-cy</key>\n      <string>uni0493</string>\n      <key>gheupturn-cy</key>\n      <string>uni0491</string>\n      <key>gimel-hb</key>\n      <string>uni05D2</string>\n      <key>gimeldagesh-hb</key>\n      <string>uniFB32</string>\n      <key>gje-cy</key>\n      <string>uni0453</string>\n      <key>glottalstop</key>\n      <string>uni0294</string>\n      <key>glottalstopmod</key>\n      <string>uni02C0</string>\n      <key>glottalstopreversed</key>\n      <string>uni0295</string>\n      <key>gravetonecomb</key>\n      <string>uni0340</string>\n      <key>groupSeparatorControl</key>\n      <string>uni241D</string>\n      <key>gstroke</key>\n      <string>uni01E5</string>\n      <key>guarani</key>\n      <string>uni20B2</string>\n      <key>gueh-ar</key>\n      <string>uni06B3</string>\n      <key>gueh-ar.fina</key>\n      <string>uniFB97</string>\n      <key>gueh-ar.init</key>\n      <string>uniFB98</string>\n      <key>gueh-ar.medi</key>\n      <string>uniFB99</string>\n      <key>guillemetleft</key>\n      <string>guillemotleft</string>\n      <key>guillemetright</key>\n      <string>guillemotright</string>\n      <key>ha-cy</key>\n      <string>uni0445</string>\n      <key>hadescender-cy</key>\n      <string>uni04B3</string>\n      <key>hah-ar</key>\n      <string>uni062D</string>\n      <key>hah-ar.fina</key>\n      <string>uniFEA2</string>\n      <key>hah-ar.init</key>\n      <string>uniFEA3</string>\n      <key>hah-ar.medi</key>\n      <string>uniFEA4</string>\n      <key>hahFourbelow-ar</key>\n      <string>uni077C</string>\n      <key>hahFourbelow-ar.fina</key>\n      <string>uni077C.fina</string>\n      <key>hahFourbelow-ar.init</key>\n      <string>uni077C.init</string>\n      <key>hahFourbelow-ar.medi</key>\n      <string>uni077C.medi</string>\n      <key>hahHamzaabove-ar</key>\n      <string>uni0681</string>\n      <key>hahHamzaabove-ar.fina</key>\n      <string>uni0681.fina</string>\n      <key>hahHamzaabove-ar.init</key>\n      <string>uni0681.init</string>\n      <key>hahHamzaabove-ar.medi</key>\n      <string>uni0681.medi</string>\n      <key>hahTahTwodotshorizontalabove-ar</key>\n      <string>uni076F</string>\n      <key>hahTahTwodotshorizontalabove-ar.fina</key>\n      <string>uni076F.fina</string>\n      <key>hahTahTwodotshorizontalabove-ar.init</key>\n      <string>uni076F.init</string>\n      <key>hahTahTwodotshorizontalabove-ar.medi</key>\n      <string>uni076F.medi</string>\n      <key>hahTahabove-ar</key>\n      <string>uni0772</string>\n      <key>hahTahabove-ar.fina</key>\n      <string>uni0772.fina</string>\n      <key>hahTahabove-ar.init</key>\n      <string>uni0772.init</string>\n      <key>hahTahabove-ar.medi</key>\n      <string>uni0772.medi</string>\n      <key>hahTahbelow-ar</key>\n      <string>uni076E</string>\n      <key>hahTahbelow-ar.fina</key>\n      <string>uni076E.fina</string>\n      <key>hahTahbelow-ar.init</key>\n      <string>uni076E.init</string>\n      <key>hahTahbelow-ar.medi</key>\n      <string>uni076E.medi</string>\n      <key>hahThreedotsabove-ar</key>\n      <string>uni0685</string>\n      <key>hahThreedotsabove-ar.fina</key>\n      <string>uni0685.fina</string>\n      <key>hahThreedotsabove-ar.init</key>\n      <string>uni0685.init</string>\n      <key>hahThreedotsabove-ar.medi</key>\n      <string>uni0685.medi</string>\n      <key>hahThreedotsupbelow-ar</key>\n      <string>uni0758</string>\n      <key>hahThreedotsupbelow-ar.fina</key>\n      <string>uni0758.fina</string>\n      <key>hahThreedotsupbelow-ar.init</key>\n      <string>uni0758.init</string>\n      <key>hahThreedotsupbelow-ar.medi</key>\n      <string>uni0758.medi</string>\n      <key>hahTwodotshorizontalabove-ar</key>\n      <string>uni0757</string>\n      <key>hahTwodotshorizontalabove-ar.fina</key>\n      <string>uni0757.fina</string>\n      <key>hahTwodotshorizontalabove-ar.init</key>\n      <string>uni0757.init</string>\n      <key>hahTwodotshorizontalabove-ar.medi</key>\n      <string>uni0757.medi</string>\n      <key>hahTwodotsverticalabove-ar</key>\n      <string>uni0682</string>\n      <key>hahTwodotsverticalabove-ar.fina</key>\n      <string>uni0682.fina</string>\n      <key>hahTwodotsverticalabove-ar.init</key>\n      <string>uni0682.init</string>\n      <key>hahTwodotsverticalabove-ar.medi</key>\n      <string>uni0682.medi</string>\n      <key>hamza-ar</key>\n      <string>uni0621</string>\n      <key>hamzaabove-ar</key>\n      <string>uni0654</string>\n      <key>hamzabelow-ar</key>\n      <string>uni0655</string>\n      <key>hardsign-cy</key>\n      <string>uni044A</string>\n      <key>hardsign-cy.loclBGR</key>\n      <string>uni044A.loclBGR</string>\n      <key>hcaron</key>\n      <string>uni021F</string>\n      <key>hdotbelow</key>\n      <string>uni1E25</string>\n      <key>he-hb</key>\n      <string>uni05D4</string>\n      <key>heartBlackSuit</key>\n      <string>heart</string>\n      <key>heavyleftpointinganglebracketornament</key>\n      <string>uni2770</string>\n      <key>heavyleftpointinganglequotationmarkornament</key>\n      <string>uni276E</string>\n      <key>heavyrightpointinganglebracketornament</key>\n      <string>uni2771</string>\n      <key>heavyrightpointinganglequotationmarkornament</key>\n      <string>uni276F</string>\n      <key>hedagesh-hb</key>\n      <string>uniFB34</string>\n      <key>heh-ar</key>\n      <string>uni0647</string>\n      <key>heh-ar.fina</key>\n      <string>uniFEEA</string>\n      <key>heh-ar.init</key>\n      <string>uniFEEB</string>\n      <key>heh-ar.medi</key>\n      <string>uniFEEC</string>\n      <key>hehAlefabove-ar.init</key>\n      <string>uniFCD9</string>\n      <key>hehAlefabove-ar.init.fina</key>\n      <string>hehAlefabovear.init.fina</string>\n      <key>hehDoachashmee-ar</key>\n      <string>uni06BE</string>\n      <key>hehDoachashmee-ar.fina</key>\n      <string>uniFBAB</string>\n      <key>hehDoachashmee-ar.init</key>\n      <string>uniFBAC</string>\n      <key>hehDoachashmee-ar.medi</key>\n      <string>uniFBAD</string>\n      <key>hehHamzaabove-ar</key>\n      <string>uni06C0</string>\n      <key>hehHamzaabove-ar.fina</key>\n      <string>uniFBA5</string>\n      <key>hehVinvertedabove-ar</key>\n      <string>uni06FF</string>\n      <key>hehVinvertedabove-ar.fina</key>\n      <string>uni06FF.fina</string>\n      <key>hehVinvertedabove-ar.init</key>\n      <string>uni06FF.init</string>\n      <key>hehVinvertedabove-ar.medi</key>\n      <string>uni06FF.medi</string>\n      <key>hehgoal-ar</key>\n      <string>uni06C1</string>\n      <key>hehgoal-ar.fina</key>\n      <string>uniFBA7</string>\n      <key>hehgoal-ar.init</key>\n      <string>uniFBA8</string>\n      <key>hehgoal-ar.init.alt</key>\n      <string>uni06C1.init.alt</string>\n      <key>hehgoal-ar.medi</key>\n      <string>uniFBA9</string>\n      <key>hehgoalHamzaabove-ar</key>\n      <string>uni06C2</string>\n      <key>hehgoalHamzaabove-ar.fina</key>\n      <string>uni06C2.fina</string>\n      <key>hehgoalHamzaabove-ar.init</key>\n      <string>uni06C2.init</string>\n      <key>hehgoalHamzaabove-ar.init.alt</key>\n      <string>uni06C2.init.alt</string>\n      <key>hehgoalHamzaabove-ar.medi</key>\n      <string>uni06C2.medi</string>\n      <key>het-hb</key>\n      <string>uni05D7</string>\n      <key>highhamza-ar</key>\n      <string>uni0674</string>\n      <key>highhamzaAlef-ar</key>\n      <string>uni0675</string>\n      <key>highhamzaAlef-ar.fina</key>\n      <string>uni0675.fina</string>\n      <key>highhamzaAlef-ar.fina.rlig</key>\n      <string>uni0675.fina.rlig</string>\n      <key>highhamzaWaw-ar</key>\n      <string>uni0676</string>\n      <key>highhamzaWaw-ar.fina</key>\n      <string>uni0676.fina</string>\n      <key>highhamzaYeh-ar</key>\n      <string>uni0678</string>\n      <key>highhamzaYeh-ar.fina</key>\n      <string>uni0678.fina</string>\n      <key>highhamzaYeh-ar.fina.alt</key>\n      <string>uni0678.fina.alt</string>\n      <key>highhamzaYeh-ar.init</key>\n      <string>uni0678.init</string>\n      <key>highhamzaYeh-ar.init.alt</key>\n      <string>uni0678.init.alt</string>\n      <key>highhamzaYeh-ar.medi</key>\n      <string>uni0678.medi</string>\n      <key>holam-hb</key>\n      <string>uni05B9</string>\n      <key>holamhaser-hb</key>\n      <string>uni05BA</string>\n      <key>horizontalBlackHexagon</key>\n      <string>uni2B23</string>\n      <key>horizontalFillSquare</key>\n      <string>uni25A4</string>\n      <key>horizontalTabulationControl</key>\n      <string>uni2409</string>\n      <key>horizontalTabulationControl.ss20</key>\n      <string>uni2409.ss20</string>\n      <key>horizontalbar</key>\n      <string>uni2015</string>\n      <key>horizontallineextension</key>\n      <string>uni23AF</string>\n      <key>horncomb</key>\n      <string>uni031B</string>\n      <key>horncomb.case</key>\n      <string>uni031B.case</string>\n      <key>hryvnia</key>\n      <string>uni20B4</string>\n      <key>hungarumlautcomb</key>\n      <string>uni030B</string>\n      <key>hungarumlautcomb.case</key>\n      <string>uni030B.case</string>\n      <key>hyphentwo</key>\n      <string>uni2010</string>\n      <key>i-cy</key>\n      <string>uni0456</string>\n      <key>ia-cy</key>\n      <string>uni044F</string>\n      <key>idotbelow</key>\n      <string>uni1ECB</string>\n      <key>idotless</key>\n      <string>dotlessi</string>\n      <key>ie-cy</key>\n      <string>uni0435</string>\n      <key>iegrave-cy</key>\n      <string>uni0450</string>\n      <key>ihookabove</key>\n      <string>uni1EC9</string>\n      <key>ii-cy</key>\n      <string>uni0438</string>\n      <key>ii-cy.loclBGR</key>\n      <string>uni0438.loclBGR</string>\n      <key>iigrave-cy</key>\n      <string>uni045D</string>\n      <key>iigrave-cy.loclBGR</key>\n      <string>uni045D.loclBGR</string>\n      <key>iishort-cy</key>\n      <string>uni0439</string>\n      <key>iishort-cy.loclBGR</key>\n      <string>uni0439.loclBGR</string>\n      <key>imacron-cy</key>\n      <string>uni04E3</string>\n      <key>increment</key>\n      <string>uni2206</string>\n      <key>inverseBullet</key>\n      <string>invbullet</string>\n      <key>inverseWhiteCircle</key>\n      <string>invcircle</string>\n      <key>io-cy</key>\n      <string>uni0451</string>\n      <key>iota-latin</key>\n      <string>uni0269</string>\n      <key>iu-cy</key>\n      <string>uni044E</string>\n      <key>iu-cy.loclBGR</key>\n      <string>uni044E.loclBGR</string>\n      <key>jacute</key>\n      <string>uni006A0301</string>\n      <key>jcaron</key>\n      <string>uni01F0</string>\n      <key>jdotless</key>\n      <string>uni0237</string>\n      <key>je-cy</key>\n      <string>uni0458</string>\n      <key>jeem-ar</key>\n      <string>uni062C</string>\n      <key>jeem-ar.fina</key>\n      <string>uniFE9E</string>\n      <key>jeem-ar.init</key>\n      <string>uniFE9F</string>\n      <key>jeem-ar.medi</key>\n      <string>uniFEA0</string>\n      <key>jeemTwodotsabove-ar</key>\n      <string>uni08A2</string>\n      <key>jeemTwodotsabove-ar.fina</key>\n      <string>uni08A2.fina</string>\n      <key>jeemTwodotsabove-ar.init</key>\n      <string>uni08A2.init</string>\n      <key>jeemTwodotsabove-ar.medi</key>\n      <string>uni08A2.medi</string>\n      <key>jeh-ar</key>\n      <string>uni0698</string>\n      <key>jeh-ar.fina</key>\n      <string>uniFB8B</string>\n      <key>ka-cy</key>\n      <string>uni043A</string>\n      <key>ka-cy.loclBGR</key>\n      <string>uni043A.loclBGR</string>\n      <key>kadescender-cy</key>\n      <string>uni049B</string>\n      <key>kaf-ar</key>\n      <string>uni0643</string>\n      <key>kaf-ar.fina</key>\n      <string>uniFEDA</string>\n      <key>kaf-ar.init</key>\n      <string>uniFEDB</string>\n      <key>kaf-ar.medi</key>\n      <string>uniFEDC</string>\n      <key>kaf-hb</key>\n      <string>uni05DB</string>\n      <key>kafDotabove-ar</key>\n      <string>uni06AC</string>\n      <key>kafDotabove-ar.fina</key>\n      <string>uni06AC.fina</string>\n      <key>kafDotabove-ar.init</key>\n      <string>uni06AC.init</string>\n      <key>kafDotabove-ar.medi</key>\n      <string>uni06AC.medi</string>\n      <key>kafRing-ar</key>\n      <string>uni06AB</string>\n      <key>kafRing-ar.fina</key>\n      <string>uni06AB.fina</string>\n      <key>kafRing-ar.init</key>\n      <string>uni06AB.init</string>\n      <key>kafRing-ar.medi</key>\n      <string>uni06AB.medi</string>\n      <key>kafThreedotsbelow-ar</key>\n      <string>uni06AE</string>\n      <key>kafThreedotsbelow-ar.fina</key>\n      <string>uni06AE.fina</string>\n      <key>kafThreedotsbelow-ar.init</key>\n      <string>uni06AE.init</string>\n      <key>kafThreedotsbelow-ar.medi</key>\n      <string>uni06AE.medi</string>\n      <key>kafTwodotshorizontalabove-ar</key>\n      <string>uni077F</string>\n      <key>kafTwodotshorizontalabove-ar.fina</key>\n      <string>uni077F.fina</string>\n      <key>kafTwodotshorizontalabove-ar.init</key>\n      <string>uni077F.init</string>\n      <key>kafTwodotshorizontalabove-ar.medi</key>\n      <string>uni077F.medi</string>\n      <key>kafdagesh-hb</key>\n      <string>uniFB3B</string>\n      <key>kafswash-ar</key>\n      <string>uni06AA</string>\n      <key>kafswash-ar.alt</key>\n      <string>uni06AA.alt</string>\n      <key>kafswash-ar.fina</key>\n      <string>uni06AA.fina</string>\n      <key>kafswash-ar.fina.alt</key>\n      <string>uni06AA.fina.alt</string>\n      <key>kafswash-ar.init</key>\n      <string>uni06AA.init</string>\n      <key>kafswash-ar.init.alt</key>\n      <string>uni06AA.init.alt</string>\n      <key>kafswash-ar.medi</key>\n      <string>uni06AA.medi</string>\n      <key>kafswash-ar.medi.alt</key>\n      <string>uni06AA.medi.alt</string>\n      <key>kaiSymbol</key>\n      <string>uni03D7</string>\n      <key>kashida-ar</key>\n      <string>uni0640</string>\n      <key>kasra-ar</key>\n      <string>uni0650</string>\n      <key>kasratan-ar</key>\n      <string>uni064D</string>\n      <key>kcommaaccent</key>\n      <string>uni0137</string>\n      <key>kdotbelow</key>\n      <string>uni1E33</string>\n      <key>keheh-ar</key>\n      <string>uni06A9</string>\n      <key>keheh-ar.fina</key>\n      <string>uniFB8F</string>\n      <key>keheh-ar.init</key>\n      <string>uniFB90</string>\n      <key>keheh-ar.medi</key>\n      <string>uniFB91</string>\n      <key>kehehDotabove-ar</key>\n      <string>uni0762</string>\n      <key>kehehDotabove-ar.fina</key>\n      <string>uni0762.fina</string>\n      <key>kehehDotabove-ar.init</key>\n      <string>uni0762.init</string>\n      <key>kehehDotabove-ar.medi</key>\n      <string>uni0762.medi</string>\n      <key>kehehThreedotsabove-ar</key>\n      <string>uni0763</string>\n      <key>kehehThreedotsabove-ar.fina</key>\n      <string>uni0763.fina</string>\n      <key>kehehThreedotsabove-ar.init</key>\n      <string>uni0763.init</string>\n      <key>kehehThreedotsabove-ar.medi</key>\n      <string>uni0763.medi</string>\n      <key>kehehThreedotsbelow-ar</key>\n      <string>uni063C</string>\n      <key>kehehThreedotsbelow-ar.fina</key>\n      <string>uni063C.fina</string>\n      <key>kehehThreedotsbelow-ar.init</key>\n      <string>uni063C.init</string>\n      <key>kehehThreedotsbelow-ar.medi</key>\n      <string>uni063C.medi</string>\n      <key>kehehThreedotsupbelow-ar</key>\n      <string>uni0764</string>\n      <key>kehehThreedotsupbelow-ar.fina</key>\n      <string>uni0764.fina</string>\n      <key>kehehThreedotsupbelow-ar.init</key>\n      <string>uni0764.init</string>\n      <key>kehehThreedotsupbelow-ar.medi</key>\n      <string>uni0764.medi</string>\n      <key>kehehTwodotshorizontalabove-ar</key>\n      <string>uni063B</string>\n      <key>kehehTwodotshorizontalabove-ar.fina</key>\n      <string>uni063B.fina</string>\n      <key>kehehTwodotshorizontalabove-ar.init</key>\n      <string>uni063B.init</string>\n      <key>kehehTwodotshorizontalabove-ar.medi</key>\n      <string>uni063B.medi</string>\n      <key>khah-ar</key>\n      <string>uni062E</string>\n      <key>khah-ar.fina</key>\n      <string>uniFEA6</string>\n      <key>khah-ar.init</key>\n      <string>uniFEA7</string>\n      <key>khah-ar.medi</key>\n      <string>uniFEA8</string>\n      <key>kip</key>\n      <string>uni20AD</string>\n      <key>kirghizoe-ar</key>\n      <string>uni06C5</string>\n      <key>kirghizoe-ar.fina</key>\n      <string>uniFBE1</string>\n      <key>kirghizyu-ar</key>\n      <string>uni06C9</string>\n      <key>kirghizyu-ar.fina</key>\n      <string>uniFBE3</string>\n      <key>kje-cy</key>\n      <string>uni045C</string>\n      <key>klinebelow</key>\n      <string>uni1E35</string>\n      <key>lam-ar</key>\n      <string>uni0644</string>\n      <key>lam-ar.fina</key>\n      <string>uniFEDE</string>\n      <key>lam-ar.init</key>\n      <string>uniFEDF</string>\n      <key>lam-ar.init.rlig</key>\n      <string>uni0644.init.rlig</string>\n      <key>lam-ar.medi</key>\n      <string>uniFEE0</string>\n      <key>lam-ar.medi.rlig</key>\n      <string>uni0644.medi.rlig</string>\n      <key>lamBar-ar</key>\n      <string>uni076A</string>\n      <key>lamBar-ar.fina</key>\n      <string>uni076A.fina</string>\n      <key>lamBar-ar.init</key>\n      <string>uni076A.init</string>\n      <key>lamBar-ar.init.rlig</key>\n      <string>uni076A.init.rlig</string>\n      <key>lamBar-ar.medi</key>\n      <string>uni076A.medi</string>\n      <key>lamBar-ar.medi.rlig</key>\n      <string>uni076A.medi.rlig</string>\n      <key>lamDotabove-ar</key>\n      <string>uni06B6</string>\n      <key>lamDotabove-ar.fina</key>\n      <string>uni06B6.fina</string>\n      <key>lamDotabove-ar.init</key>\n      <string>uni06B6.init</string>\n      <key>lamDotabove-ar.init.rlig</key>\n      <string>uni06B6.init.rlig</string>\n      <key>lamDotabove-ar.medi</key>\n      <string>uni06B6.medi</string>\n      <key>lamDotabove-ar.medi.rlig</key>\n      <string>uni06B6.medi.rlig</string>\n      <key>lamDoublebar-ar</key>\n      <string>uni08A6</string>\n      <key>lamDoublebar-ar.fina</key>\n      <string>uni08A6.fina</string>\n      <key>lamDoublebar-ar.init</key>\n      <string>uni08A6.init</string>\n      <key>lamDoublebar-ar.init.rlig</key>\n      <string>uni08A6.init.rlig</string>\n      <key>lamDoublebar-ar.medi</key>\n      <string>uni08A6.medi</string>\n      <key>lamDoublebar-ar.medi.rlig</key>\n      <string>uni08A6.medi.rlig</string>\n      <key>lamThreedotsabove-ar</key>\n      <string>uni06B7</string>\n      <key>lamThreedotsabove-ar.fina</key>\n      <string>uni06B7.fina</string>\n      <key>lamThreedotsabove-ar.init</key>\n      <string>uni06B7.init</string>\n      <key>lamThreedotsabove-ar.init.rlig</key>\n      <string>uni06B7.init.rlig</string>\n      <key>lamThreedotsabove-ar.medi</key>\n      <string>uni06B7.medi</string>\n      <key>lamThreedotsabove-ar.medi.rlig</key>\n      <string>uni06B7.medi.rlig</string>\n      <key>lamThreedotsbelow-ar</key>\n      <string>uni06B8</string>\n      <key>lamThreedotsbelow-ar.fina</key>\n      <string>uni06B8.fina</string>\n      <key>lamThreedotsbelow-ar.init</key>\n      <string>uni06B8.init</string>\n      <key>lamThreedotsbelow-ar.init.rlig</key>\n      <string>uni06B8.init.rlig</string>\n      <key>lamThreedotsbelow-ar.medi</key>\n      <string>uni06B8.medi</string>\n      <key>lamThreedotsbelow-ar.medi.rlig</key>\n      <string>uni06B8.medi.rlig</string>\n      <key>lamVabove-ar</key>\n      <string>uni06B5</string>\n      <key>lamVabove-ar.fina</key>\n      <string>uni06B5.fina</string>\n      <key>lamVabove-ar.init</key>\n      <string>uni06B5.init</string>\n      <key>lamVabove-ar.init.rlig</key>\n      <string>uni06B5.init.rlig</string>\n      <key>lamVabove-ar.medi</key>\n      <string>uni06B5.medi</string>\n      <key>lamVabove-ar.medi.rlig</key>\n      <string>uni06B5.medi.rlig</string>\n      <key>lam_alef-ar</key>\n      <string>uniFEFB</string>\n      <key>lam_alef-ar.fina</key>\n      <string>uniFEFC</string>\n      <key>lam_alef-ar.fina.short</key>\n      <string>uniFEFB.fina.short</string>\n      <key>lam_alef-ar.short</key>\n      <string>uniFEFB.short</string>\n      <key>lam_alefHamzaabove-ar</key>\n      <string>uniFEF7</string>\n      <key>lam_alefHamzaabove-ar.fina</key>\n      <string>uniFEF8</string>\n      <key>lam_alefHamzabelow-ar</key>\n      <string>uniFEF9</string>\n      <key>lam_alefHamzabelow-ar.fina</key>\n      <string>uniFEFA</string>\n      <key>lam_alefMadda-ar</key>\n      <string>uniFEF5</string>\n      <key>lam_alefMadda-ar.fina</key>\n      <string>uniFEF6</string>\n      <key>lam_alefWasla-ar</key>\n      <string>lam_alefWaslaar</string>\n      <key>lam_alefWasla-ar.fina</key>\n      <string>lam_alefWaslaar.fina</string>\n      <key>lam_lam_heh-ar</key>\n      <string>lam_lam_hehar</string>\n      <key>lambdastroke</key>\n      <string>uni019B</string>\n      <key>lamed-hb</key>\n      <string>uni05DC</string>\n      <key>lameddagesh-hb</key>\n      <string>uniFB3C</string>\n      <key>largeCircle</key>\n      <string>uni25EF</string>\n      <key>lari</key>\n      <string>uni20BE</string>\n      <key>lbar</key>\n      <string>uni019A</string>\n      <key>lbelt</key>\n      <string>uni026C</string>\n      <key>lcommaaccent</key>\n      <string>uni013C</string>\n      <key>ldotbelow</key>\n      <string>uni1E37</string>\n      <key>leftArrow</key>\n      <string>arrowleft</string>\n      <key>leftBlackPointer</key>\n      <string>triaglf</string>\n      <key>leftBlackSmallTriangle</key>\n      <string>uni25C2</string>\n      <key>leftBlackTriangle</key>\n      <string>uni25C0</string>\n      <key>leftBlock</key>\n      <string>lfblock</string>\n      <key>leftBlock.stypo</key>\n      <string>lfblock.stypo</string>\n      <key>leftFiveEighthsBlock</key>\n      <string>uni258B</string>\n      <key>leftFiveEighthsBlock.stypo</key>\n      <string>uni258B.stypo</string>\n      <key>leftHalfBlackCircle</key>\n      <string>uni25D6</string>\n      <key>leftHalfBlackDiamond</key>\n      <string>uni2B16</string>\n      <key>leftHalfBlackSquare</key>\n      <string>uni25E7</string>\n      <key>leftHalfBlackWhiteCircle</key>\n      <string>uni25D0</string>\n      <key>leftOneEighthBlock</key>\n      <string>uni258F</string>\n      <key>leftOneEighthBlock.stypo</key>\n      <string>uni258F.stypo</string>\n      <key>leftOneQuarterBlock</key>\n      <string>uni258E</string>\n      <key>leftOneQuarterBlock.stypo</key>\n      <string>uni258E.stypo</string>\n      <key>leftRightArrow</key>\n      <string>arrowboth</string>\n      <key>leftSevenEighthsBlock</key>\n      <string>uni2589</string>\n      <key>leftSevenEighthsBlock.stypo</key>\n      <string>uni2589.stypo</string>\n      <key>leftThreeEighthsBlock</key>\n      <string>uni258D</string>\n      <key>leftThreeEighthsBlock.stypo</key>\n      <string>uni258D.stypo</string>\n      <key>leftThreeQuartersBlock</key>\n      <string>uni258A</string>\n      <key>leftThreeQuartersBlock.stypo</key>\n      <string>uni258A.stypo</string>\n      <key>leftWhitePointer</key>\n      <string>uni25C5</string>\n      <key>leftWhiteSmallTriangle</key>\n      <string>uni25C3</string>\n      <key>leftWhiteTriangle</key>\n      <string>uni25C1</string>\n      <key>lineFeedControl</key>\n      <string>uni240A</string>\n      <key>lineFeedControl.ss20</key>\n      <string>uni240A.ss20</string>\n      <key>lineseparator</key>\n      <string>uni2028</string>\n      <key>liraTurkish</key>\n      <string>uni20BA</string>\n      <key>literSign</key>\n      <string>uni2113</string>\n      <key>lje-cy</key>\n      <string>uni0459</string>\n      <key>llinebelow</key>\n      <string>uni1E3B</string>\n      <key>lmiddletilde</key>\n      <string>uni026B</string>\n      <key>logicalnotReversed</key>\n      <string>revlogicalnot</string>\n      <key>lowerFiveEighthsBlock</key>\n      <string>uni2585</string>\n      <key>lowerFiveEighthsBlock.stypo</key>\n      <string>uni2585.stypo</string>\n      <key>lowerHalfArc</key>\n      <string>uni25E1</string>\n      <key>lowerHalfBlackWhiteCircle</key>\n      <string>uni25D2</string>\n      <key>lowerHalfBlock</key>\n      <string>dnblock</string>\n      <key>lowerHalfBlock.stypo</key>\n      <string>dnblock.stypo</string>\n      <key>lowerHalfInverseWhiteCircle</key>\n      <string>uni25DB</string>\n      <key>lowerHalfWhiteSquare</key>\n      <string>uni2B12</string>\n      <key>lowerLeftArc</key>\n      <string>uni25DF</string>\n      <key>lowerLeftBlackTriangle</key>\n      <string>uni25E3</string>\n      <key>lowerLeftBlock</key>\n      <string>uni2596</string>\n      <key>lowerLeftBlock.stypo</key>\n      <string>uni2596.stypo</string>\n      <key>lowerLeftHalfWhiteSquare</key>\n      <string>uni2B14</string>\n      <key>lowerLeftQuadrantWhiteCircle</key>\n      <string>uni25F5</string>\n      <key>lowerLeftTriangle</key>\n      <string>uni25FA</string>\n      <key>lowerOneEighthBlock</key>\n      <string>uni2581</string>\n      <key>lowerOneEighthBlock.stypo</key>\n      <string>uni2581.stypo</string>\n      <key>lowerOneQuarterBlock</key>\n      <string>uni2582</string>\n      <key>lowerOneQuarterBlock.stypo</key>\n      <string>uni2582.stypo</string>\n      <key>lowerRightArc</key>\n      <string>uni25DE</string>\n      <key>lowerRightBlackTriangle</key>\n      <string>uni25E2</string>\n      <key>lowerRightBlock</key>\n      <string>uni2597</string>\n      <key>lowerRightBlock.stypo</key>\n      <string>uni2597.stypo</string>\n      <key>lowerRightDiagonalHalfBlackSquare</key>\n      <string>uni25EA</string>\n      <key>lowerRightQuadrantWhiteCircle</key>\n      <string>uni25F6</string>\n      <key>lowerRightTriangle</key>\n      <string>uni25FF</string>\n      <key>lowerSevenEighthsBlock</key>\n      <string>uni2587</string>\n      <key>lowerSevenEighthsBlock.stypo</key>\n      <string>uni2587.stypo</string>\n      <key>lowerThreeEighthsBlock</key>\n      <string>uni2583</string>\n      <key>lowerThreeEighthsBlock.stypo</key>\n      <string>uni2583.stypo</string>\n      <key>lowerThreeQuartersBlock</key>\n      <string>uni2586</string>\n      <key>lowerThreeQuartersBlock.stypo</key>\n      <string>uni2586.stypo</string>\n      <key>lowernumeral-greek</key>\n      <string>uni0375</string>\n      <key>lowlinecomb</key>\n      <string>uni0332</string>\n      <key>macronbelowcomb</key>\n      <string>uni0331</string>\n      <key>macroncomb</key>\n      <string>uni0304</string>\n      <key>macroncomb.case</key>\n      <string>uni0304.case</string>\n      <key>madda-ar</key>\n      <string>uni0653</string>\n      <key>manat</key>\n      <string>uni20BC</string>\n      <key>maqaf-hb</key>\n      <string>uni05BE</string>\n      <key>mars</key>\n      <string>male</string>\n      <key>mediumBlackSmallSquare</key>\n      <string>uni25FE</string>\n      <key>mediumBlackSquare</key>\n      <string>uni25FC</string>\n      <key>mediumWhiteSmallSquare</key>\n      <string>uni25FD</string>\n      <key>mediumWhiteSquare</key>\n      <string>uni25FB</string>\n      <key>mediumleftpointinganglebracketornament</key>\n      <string>uni276C</string>\n      <key>mediumrightpointinganglebracketornament</key>\n      <string>uni276D</string>\n      <key>meem-ar</key>\n      <string>uni0645</string>\n      <key>meem-ar.fina</key>\n      <string>uniFEE2</string>\n      <key>meem-ar.init</key>\n      <string>uniFEE3</string>\n      <key>meem-ar.medi</key>\n      <string>uniFEE4</string>\n      <key>meemDotabove-ar</key>\n      <string>uni0765</string>\n      <key>meemDotabove-ar.fina</key>\n      <string>uni0765.fina</string>\n      <key>meemDotabove-ar.init</key>\n      <string>uni0765.init</string>\n      <key>meemDotabove-ar.medi</key>\n      <string>uni0765.medi</string>\n      <key>meemDotbelow-ar</key>\n      <string>uni0766</string>\n      <key>meemDotbelow-ar.fina</key>\n      <string>uni0766.fina</string>\n      <key>meemDotbelow-ar.init</key>\n      <string>uni0766.init</string>\n      <key>meemDotbelow-ar.medi</key>\n      <string>uni0766.medi</string>\n      <key>meemStopabove-ar</key>\n      <string>uni06E2</string>\n      <key>meemThreedotsabove-ar</key>\n      <string>uni08A7</string>\n      <key>meemThreedotsabove-ar.fina</key>\n      <string>uni08A7.fina</string>\n      <key>meemThreedotsabove-ar.init</key>\n      <string>uni08A7.init</string>\n      <key>meemThreedotsabove-ar.medi</key>\n      <string>uni08A7.medi</string>\n      <key>mem-hb</key>\n      <string>uni05DE</string>\n      <key>memdagesh-hb</key>\n      <string>uniFB3E</string>\n      <key>micro</key>\n      <string>uni00B5</string>\n      <key>misraComma-ar</key>\n      <string>uni060F</string>\n      <key>mu</key>\n      <string>uni03BC</string>\n      <key>naira</key>\n      <string>uni20A6</string>\n      <key>nbspace</key>\n      <string>uni00A0</string>\n      <key>ncommaaccent</key>\n      <string>uni0146</string>\n      <key>negativeAcknowledgeControl</key>\n      <string>uni2415</string>\n      <key>negativeAcknowledgeControl.ss20</key>\n      <string>uni2415.ss20</string>\n      <key>newlineControl</key>\n      <string>uni2424</string>\n      <key>ng-ar</key>\n      <string>uni06AD</string>\n      <key>ng-ar.fina</key>\n      <string>uniFBD4</string>\n      <key>ng-ar.init</key>\n      <string>uniFBD5</string>\n      <key>ng-ar.medi</key>\n      <string>uniFBD6</string>\n      <key>ngoeh-ar</key>\n      <string>uni06B1</string>\n      <key>ngoeh-ar.fina</key>\n      <string>uniFB9B</string>\n      <key>ngoeh-ar.init</key>\n      <string>uniFB9C</string>\n      <key>ngoeh-ar.medi</key>\n      <string>uniFB9D</string>\n      <key>nhookleft</key>\n      <string>uni0272</string>\n      <key>nine-ar</key>\n      <string>uni0669</string>\n      <key>nine-arinferior</key>\n      <string>ninearinferior</string>\n      <key>nine-arsuperior</key>\n      <string>ninearsuperior</string>\n      <key>nine-persian</key>\n      <string>uni06F9</string>\n      <key>nine-persianinferior</key>\n      <string>ninepersianinferior</string>\n      <key>nine-persiansuperior</key>\n      <string>ninepersiansuperior</string>\n      <key>nineinferior</key>\n      <string>uni2089</string>\n      <key>ninesuperior</key>\n      <string>uni2079</string>\n      <key>nje-cy</key>\n      <string>uni045A</string>\n      <key>nlinebelow</key>\n      <string>uni1E49</string>\n      <key>nmod</key>\n      <string>uni207F</string>\n      <key>nonbreakinghyphen</key>\n      <string>uni2011</string>\n      <key>noon-ar</key>\n      <string>uni0646</string>\n      <key>noon-ar.fina</key>\n      <string>uniFEE6</string>\n      <key>noon-ar.init</key>\n      <string>uniFEE7</string>\n      <key>noon-ar.init.alt</key>\n      <string>uni0646.init.alt</string>\n      <key>noon-ar.medi</key>\n      <string>uniFEE8</string>\n      <key>noonAfrican-ar</key>\n      <string>uni08BD</string>\n      <key>noonAfrican-ar.fina</key>\n      <string>uni08BD.fina</string>\n      <key>noonAfrican-ar.init</key>\n      <string>uni08BD.init</string>\n      <key>noonAfrican-ar.init.alt</key>\n      <string>uni08BD.init.alt</string>\n      <key>noonAfrican-ar.medi</key>\n      <string>uni08BD.medi</string>\n      <key>noonDotbelow-ar</key>\n      <string>uni06B9</string>\n      <key>noonDotbelow-ar.fina</key>\n      <string>uni06B9.fina</string>\n      <key>noonDotbelow-ar.init</key>\n      <string>uni06B9.init</string>\n      <key>noonDotbelow-ar.init.alt</key>\n      <string>uni06B9.init.alt</string>\n      <key>noonDotbelow-ar.medi</key>\n      <string>uni06B9.medi</string>\n      <key>noonRing-ar</key>\n      <string>uni06BC</string>\n      <key>noonRing-ar.fina</key>\n      <string>uni06BC.fina</string>\n      <key>noonRing-ar.init</key>\n      <string>uni06BC.init</string>\n      <key>noonRing-ar.init.alt</key>\n      <string>uni06BC.init.alt</string>\n      <key>noonRing-ar.medi</key>\n      <string>uni06BC.medi</string>\n      <key>noonTahabove-ar</key>\n      <string>uni0768</string>\n      <key>noonTahabove-ar.fina</key>\n      <string>uni0768.fina</string>\n      <key>noonTahabove-ar.init</key>\n      <string>uni0768.init</string>\n      <key>noonTahabove-ar.init.alt</key>\n      <string>uni0768.init.alt</string>\n      <key>noonTahabove-ar.medi</key>\n      <string>uni0768.medi</string>\n      <key>noonThreedotsabove-ar</key>\n      <string>uni06BD</string>\n      <key>noonThreedotsabove-ar.fina</key>\n      <string>uni06BD.fina</string>\n      <key>noonThreedotsabove-ar.init</key>\n      <string>uni06BD.init</string>\n      <key>noonThreedotsabove-ar.init.alt</key>\n      <string>uni06BD.init.alt</string>\n      <key>noonThreedotsabove-ar.medi</key>\n      <string>uni06BD.medi</string>\n      <key>noonTwodotsbelow-ar</key>\n      <string>uni0767</string>\n      <key>noonTwodotsbelow-ar.fina</key>\n      <string>uni0767.fina</string>\n      <key>noonTwodotsbelow-ar.init</key>\n      <string>uni0767.init</string>\n      <key>noonTwodotsbelow-ar.init.alt</key>\n      <string>uni0767.init.alt</string>\n      <key>noonTwodotsbelow-ar.medi</key>\n      <string>uni0767.medi</string>\n      <key>noonVabove-ar</key>\n      <string>uni0769</string>\n      <key>noonVabove-ar.fina</key>\n      <string>uni0769.fina</string>\n      <key>noonVabove-ar.init</key>\n      <string>uni0769.init</string>\n      <key>noonVabove-ar.init.alt</key>\n      <string>uni0769.init.alt</string>\n      <key>noonVabove-ar.medi</key>\n      <string>uni0769.medi</string>\n      <key>noonabove-ar</key>\n      <string>uni06E8</string>\n      <key>noonghunna-ar</key>\n      <string>uni06BA</string>\n      <key>noonghunna-ar.fina</key>\n      <string>uniFB9F</string>\n      <key>noonghunna-ar.init</key>\n      <string>uni06BA.init</string>\n      <key>noonghunna-ar.init.alt</key>\n      <string>uni06BA.init.alt</string>\n      <key>noonghunna-ar.medi</key>\n      <string>uni06BA.medi</string>\n      <key>noonghunnaabove-ar</key>\n      <string>uni0658</string>\n      <key>note-musical</key>\n      <string>musicalnote</string>\n      <key>notedbl-musical</key>\n      <string>musicalnotedbl</string>\n      <key>notidentical</key>\n      <string>uni2262</string>\n      <key>nullControl</key>\n      <string>uni2400</string>\n      <key>number-ar</key>\n      <string>uni0600</string>\n      <key>numbermark-ar</key>\n      <string>uni0605</string>\n      <key>numeral-greek</key>\n      <string>uni0374</string>\n      <key>numero</key>\n      <string>uni2116</string>\n      <key>nun-hb</key>\n      <string>uni05E0</string>\n      <key>nundagesh-hb</key>\n      <string>uniFB40</string>\n      <key>nyeh-ar</key>\n      <string>uni0683</string>\n      <key>nyeh-ar.fina</key>\n      <string>uniFB77</string>\n      <key>nyeh-ar.init</key>\n      <string>uniFB78</string>\n      <key>nyeh-ar.medi</key>\n      <string>uniFB79</string>\n      <key>o-cy</key>\n      <string>uni043E</string>\n      <key>obarred-cy</key>\n      <string>uni04E9</string>\n      <key>ocircumflexacute</key>\n      <string>uni1ED1</string>\n      <key>ocircumflexdotbelow</key>\n      <string>uni1ED9</string>\n      <key>ocircumflexgrave</key>\n      <string>uni1ED3</string>\n      <key>ocircumflexhookabove</key>\n      <string>uni1ED5</string>\n      <key>ocircumflextilde</key>\n      <string>uni1ED7</string>\n      <key>odotbelow</key>\n      <string>uni1ECD</string>\n      <key>oe-ar</key>\n      <string>uni06C6</string>\n      <key>oe-ar.fina</key>\n      <string>uniFBDA</string>\n      <key>ogonekcomb</key>\n      <string>uni0328</string>\n      <key>ohookabove</key>\n      <string>uni1ECF</string>\n      <key>ohornacute</key>\n      <string>uni1EDB</string>\n      <key>ohorndotbelow</key>\n      <string>uni1EE3</string>\n      <key>ohorngrave</key>\n      <string>uni1EDD</string>\n      <key>ohornhookabove</key>\n      <string>uni1EDF</string>\n      <key>ohorntilde</key>\n      <string>uni1EE1</string>\n      <key>omacronacute</key>\n      <string>uni1E53</string>\n      <key>omacrongrave</key>\n      <string>uni1E51</string>\n      <key>one-ar</key>\n      <string>uni0661</string>\n      <key>one-arinferior</key>\n      <string>onearinferior</string>\n      <key>one-arsuperior</key>\n      <string>onearsuperior</string>\n      <key>one-persian</key>\n      <string>uni06F1</string>\n      <key>one-persianinferior</key>\n      <string>onepersianinferior</string>\n      <key>one-persiansuperior</key>\n      <string>onepersiansuperior</string>\n      <key>oneinferior</key>\n      <string>uni2081</string>\n      <key>onesuperior</key>\n      <string>uni00B9</string>\n      <key>oogonek</key>\n      <string>uni01EB</string>\n      <key>oopen</key>\n      <string>uni0254</string>\n      <key>overline</key>\n      <string>uni203E</string>\n      <key>pagenumber-ar</key>\n      <string>uni0603</string>\n      <key>palochka-cy</key>\n      <string>uni04CF</string>\n      <key>parenleft-ar</key>\n      <string>uniFD3E</string>\n      <key>parenright-ar</key>\n      <string>uniFD3F</string>\n      <key>paseq-hb</key>\n      <string>uni05C0</string>\n      <key>patah-hb</key>\n      <string>uni05B7</string>\n      <key>pe-cy</key>\n      <string>uni043F</string>\n      <key>pe-cy.loclBGR</key>\n      <string>uni043F.loclBGR</string>\n      <key>pe-hb</key>\n      <string>uni05E4</string>\n      <key>pedagesh-hb</key>\n      <string>uniFB44</string>\n      <key>pedagesh-hb.BRACKET.600</key>\n      <string>uniFB44.BRACKET.600</string>\n      <key>peh-ar</key>\n      <string>uni067E</string>\n      <key>peh-ar.alt</key>\n      <string>uni067E.alt</string>\n      <key>peh-ar.fina</key>\n      <string>uniFB57</string>\n      <key>peh-ar.fina.alt</key>\n      <string>uni067E.fina.alt</string>\n      <key>peh-ar.init</key>\n      <string>uniFB58</string>\n      <key>peh-ar.init.alt</key>\n      <string>uni067E.init.alt</string>\n      <key>peh-ar.medi</key>\n      <string>uniFB59</string>\n      <key>pehMeemabove-ar</key>\n      <string>uni08B7</string>\n      <key>pehMeemabove-ar.alt</key>\n      <string>uni08B7.alt</string>\n      <key>pehMeemabove-ar.fina</key>\n      <string>uni08B7.fina</string>\n      <key>pehMeemabove-ar.fina.alt</key>\n      <string>uni08B7.fina.alt</string>\n      <key>pehMeemabove-ar.init</key>\n      <string>uni08B7.init</string>\n      <key>pehMeemabove-ar.init.alt</key>\n      <string>uni08B7.init.alt</string>\n      <key>pehMeemabove-ar.medi</key>\n      <string>uni08B7.medi</string>\n      <key>peheh-ar</key>\n      <string>uni06A6</string>\n      <key>peheh-ar.alt</key>\n      <string>uni06A6.alt</string>\n      <key>peheh-ar.fina</key>\n      <string>uniFB6F</string>\n      <key>peheh-ar.fina.alt</key>\n      <string>uni06A6.fina.alt</string>\n      <key>peheh-ar.init</key>\n      <string>uniFB70</string>\n      <key>peheh-ar.init.alt</key>\n      <string>uni06A6.init.alt</string>\n      <key>peheh-ar.medi</key>\n      <string>uniFB71</string>\n      <key>percent-ar</key>\n      <string>uni066A</string>\n      <key>perispomenicomb</key>\n      <string>uni0342</string>\n      <key>perthousand-ar</key>\n      <string>uni0609</string>\n      <key>peso</key>\n      <string>uni20B1</string>\n      <key>published</key>\n      <string>uni2117</string>\n      <key>punctuationspace</key>\n      <string>uni2008</string>\n      <key>qaf-ar</key>\n      <string>uni0642</string>\n      <key>qaf-ar.fina</key>\n      <string>uniFED6</string>\n      <key>qaf-ar.init</key>\n      <string>uniFED7</string>\n      <key>qaf-ar.init.alt</key>\n      <string>uni0642.init.alt</string>\n      <key>qaf-ar.medi</key>\n      <string>uniFED8</string>\n      <key>qafAfrican-ar</key>\n      <string>uni08BC</string>\n      <key>qafAfrican-ar.fina</key>\n      <string>uni08BC.fina</string>\n      <key>qafAfrican-ar.init</key>\n      <string>uni08BC.init</string>\n      <key>qafAfrican-ar.init.alt</key>\n      <string>uni08BC.init.alt</string>\n      <key>qafAfrican-ar.medi</key>\n      <string>uni08BC.medi</string>\n      <key>qafDotabove-ar</key>\n      <string>uni06A7</string>\n      <key>qafDotabove-ar.fina</key>\n      <string>uni06A7.fina</string>\n      <key>qafDotabove-ar.init</key>\n      <string>uni06A7.init</string>\n      <key>qafDotabove-ar.init.alt</key>\n      <string>uni06A7.init.alt</string>\n      <key>qafDotabove-ar.medi</key>\n      <string>uni06A7.medi</string>\n      <key>qafDotbelow-ar</key>\n      <string>uni08A5</string>\n      <key>qafDotbelow-ar.fina</key>\n      <string>uni08A5.fina</string>\n      <key>qafDotbelow-ar.init</key>\n      <string>uni08A5.init</string>\n      <key>qafDotbelow-ar.medi</key>\n      <string>uni08A5.medi</string>\n      <key>qafDotless-ar</key>\n      <string>uni066F</string>\n      <key>qafDotless-ar.fina</key>\n      <string>uni066F.fina</string>\n      <key>qafDotless-ar.init</key>\n      <string>uni066F.init</string>\n      <key>qafDotless-ar.init.alt</key>\n      <string>uni066F.init.alt</string>\n      <key>qafDotless-ar.medi</key>\n      <string>uni066F.medi</string>\n      <key>qafThreedotsabove-ar</key>\n      <string>uni06A8</string>\n      <key>qafThreedotsabove-ar.fina</key>\n      <string>uni06A8.fina</string>\n      <key>qafThreedotsabove-ar.init</key>\n      <string>uni06A8.init</string>\n      <key>qafThreedotsabove-ar.medi</key>\n      <string>uni06A8.medi</string>\n      <key>qamats-hb</key>\n      <string>uni05B8</string>\n      <key>qamatsqatan-hb</key>\n      <string>uni05C7</string>\n      <key>qof-hb</key>\n      <string>uni05E7</string>\n      <key>qofdagesh-hb</key>\n      <string>uniFB47</string>\n      <key>question-ar</key>\n      <string>uni061F</string>\n      <key>questiongreek</key>\n      <string>uni037E</string>\n      <key>ratio</key>\n      <string>uni2236</string>\n      <key>ray-ar</key>\n      <string>uni0608</string>\n      <key>rcommaaccent</key>\n      <string>uni0157</string>\n      <key>rdotbelow</key>\n      <string>uni1E5B</string>\n      <key>recordSeparatorControl</key>\n      <string>uni241E</string>\n      <key>reh-ar</key>\n      <string>uni0631</string>\n      <key>reh-ar.fina</key>\n      <string>uniFEAE</string>\n      <key>rehAlefabove-ar</key>\n      <string>uniFC5C</string>\n      <key>rehAlefabove-ar.fina</key>\n      <string>uniFC5C.fina</string>\n      <key>rehDotbelow-ar</key>\n      <string>uni0694</string>\n      <key>rehDotbelow-ar.fina</key>\n      <string>uni0694.fina</string>\n      <key>rehDotbelowdotabove-ar</key>\n      <string>uni0696</string>\n      <key>rehDotbelowdotabove-ar.fina</key>\n      <string>uni0696.fina</string>\n      <key>rehFourdots-ar</key>\n      <string>uni0699</string>\n      <key>rehFourdots-ar.fina</key>\n      <string>uni0699.fina</string>\n      <key>rehHamzaabove-ar</key>\n      <string>uni076C</string>\n      <key>rehHamzaabove-ar.fina</key>\n      <string>uni076C.fina</string>\n      <key>rehLoop-ar</key>\n      <string>uni08AA</string>\n      <key>rehLoop-ar.fina</key>\n      <string>uni08AA.fina</string>\n      <key>rehRing-ar</key>\n      <string>uni0693</string>\n      <key>rehRing-ar.fina</key>\n      <string>uni0693.fina</string>\n      <key>rehStroke-ar</key>\n      <string>uni075B</string>\n      <key>rehStroke-ar.fina</key>\n      <string>uni075B.fina</string>\n      <key>rehTwodots-ar</key>\n      <string>uni0697</string>\n      <key>rehTwodots-ar.fina</key>\n      <string>uni0697.fina</string>\n      <key>rehTwodotshorizontalaboveTahabove-ar</key>\n      <string>uni0771</string>\n      <key>rehTwodotshorizontalaboveTahabove-ar.fina</key>\n      <string>uni0771.fina</string>\n      <key>rehTwodotsverticalabove-ar</key>\n      <string>uni076B</string>\n      <key>rehTwodotsverticalabove-ar.fina</key>\n      <string>uni076B.fina</string>\n      <key>rehVbelow-ar</key>\n      <string>uni0695</string>\n      <key>rehVbelow-ar.fina</key>\n      <string>uni0695.fina</string>\n      <key>rehVinvertedabove-ar</key>\n      <string>uni06EF</string>\n      <key>rehVinvertedabove-ar.fina</key>\n      <string>uni06EF.fina</string>\n      <key>rehv-ar</key>\n      <string>uni0692</string>\n      <key>rehv-ar.fina</key>\n      <string>uni0692.fina</string>\n      <key>replacementCharacter</key>\n      <string>uniFFFD</string>\n      <key>resh-hb</key>\n      <string>uni05E8</string>\n      <key>reshdagesh-hb</key>\n      <string>uniFB48</string>\n      <key>returnsymbol</key>\n      <string>uni23CE</string>\n      <key>reversedRotatedFloralHeartBullet</key>\n      <string>uni2619</string>\n      <key>rightArrow</key>\n      <string>arrowright</string>\n      <key>rightBlackPointer</key>\n      <string>triagrt</string>\n      <key>rightBlackSmallTriangle</key>\n      <string>uni25B8</string>\n      <key>rightBlackTriangle</key>\n      <string>uni25B6</string>\n      <key>rightBlock</key>\n      <string>rtblock</string>\n      <key>rightBlock.stypo</key>\n      <string>rtblock.stypo</string>\n      <key>rightHalfBlackCircle</key>\n      <string>uni25D7</string>\n      <key>rightHalfBlackDiamond</key>\n      <string>uni2B17</string>\n      <key>rightHalfBlackSquare</key>\n      <string>uni25E8</string>\n      <key>rightHalfBlackWhiteCircle</key>\n      <string>uni25D1</string>\n      <key>rightOneEighthBlock</key>\n      <string>uni2595</string>\n      <key>rightOneEighthBlock.stypo</key>\n      <string>uni2595.stypo</string>\n      <key>rightWhitePointer</key>\n      <string>uni25BB</string>\n      <key>rightWhiteSmallTriangle</key>\n      <string>uni25B9</string>\n      <key>rightWhiteTriangle</key>\n      <string>uni25B7</string>\n      <key>ringbelowcomb</key>\n      <string>uni0325</string>\n      <key>ringcomb</key>\n      <string>uni030A</string>\n      <key>ringcomb.case</key>\n      <string>uni030A.case</string>\n      <key>rnoon-ar</key>\n      <string>uni06BB</string>\n      <key>rnoon-ar.fina</key>\n      <string>uniFBA1</string>\n      <key>rnoon-ar.init</key>\n      <string>uniFBA2</string>\n      <key>rnoon-ar.init.alt</key>\n      <string>uni06BB.init.alt</string>\n      <key>rnoon-ar.medi</key>\n      <string>uniFBA3</string>\n      <key>rotatedFloralHeartBullet</key>\n      <string>uni2767</string>\n      <key>rreh-ar</key>\n      <string>uni0691</string>\n      <key>rreh-ar.fina</key>\n      <string>uniFB8D</string>\n      <key>ruble</key>\n      <string>uni20BD</string>\n      <key>rupee</key>\n      <string>uni20A8</string>\n      <key>rupeeIndian</key>\n      <string>uni20B9</string>\n      <key>sad-ar</key>\n      <string>uni0635</string>\n      <key>sad-ar.alt</key>\n      <string>uni0635.alt</string>\n      <key>sad-ar.fina</key>\n      <string>uniFEBA</string>\n      <key>sad-ar.fina.alt</key>\n      <string>uni0635.fina.alt</string>\n      <key>sad-ar.init</key>\n      <string>uniFEBB</string>\n      <key>sad-ar.medi</key>\n      <string>uniFEBC</string>\n      <key>sadThreedots-ar</key>\n      <string>uni069E</string>\n      <key>sadThreedots-ar.alt</key>\n      <string>uni069E.alt</string>\n      <key>sadThreedots-ar.fina</key>\n      <string>uni069E.fina</string>\n      <key>sadThreedots-ar.fina.alt</key>\n      <string>uni069E.fina.alt</string>\n      <key>sadThreedots-ar.init</key>\n      <string>uni069E.init</string>\n      <key>sadThreedots-ar.medi</key>\n      <string>uni069E.medi</string>\n      <key>sadThreedotsbelow-ar</key>\n      <string>uni08AF</string>\n      <key>sadThreedotsbelow-ar.alt</key>\n      <string>uni08AF.alt</string>\n      <key>sadThreedotsbelow-ar.fina</key>\n      <string>uni08AF.fina</string>\n      <key>sadThreedotsbelow-ar.fina.alt</key>\n      <string>uni08AF.fina.alt</string>\n      <key>sadThreedotsbelow-ar.init</key>\n      <string>uni08AF.init</string>\n      <key>sadThreedotsbelow-ar.medi</key>\n      <string>uni08AF.medi</string>\n      <key>sadTwodotsbelow-ar</key>\n      <string>uni069D</string>\n      <key>sadTwodotsbelow-ar.alt</key>\n      <string>uni069D.alt</string>\n      <key>sadTwodotsbelow-ar.fina</key>\n      <string>uni069D.fina</string>\n      <key>sadTwodotsbelow-ar.fina.alt</key>\n      <string>uni069D.fina.alt</string>\n      <key>sadTwodotsbelow-ar.init</key>\n      <string>uni069D.init</string>\n      <key>sadTwodotsbelow-ar.medi</key>\n      <string>uni069D.medi</string>\n      <key>samekh-hb</key>\n      <string>uni05E1</string>\n      <key>samekhdagesh-hb</key>\n      <string>uniFB41</string>\n      <key>samvat-ar</key>\n      <string>uni0604</string>\n      <key>schwa</key>\n      <string>uni0259</string>\n      <key>schwa-cy</key>\n      <string>uni04D9</string>\n      <key>scommaaccent</key>\n      <string>uni0219</string>\n      <key>sdotbelow</key>\n      <string>uni1E63</string>\n      <key>seen-ar</key>\n      <string>uni0633</string>\n      <key>seen-ar.alt</key>\n      <string>uni0633.alt</string>\n      <key>seen-ar.fina</key>\n      <string>uniFEB2</string>\n      <key>seen-ar.fina.alt</key>\n      <string>uni0633.fina.alt</string>\n      <key>seen-ar.init</key>\n      <string>uniFEB3</string>\n      <key>seen-ar.medi</key>\n      <string>uniFEB4</string>\n      <key>seenDotbelowDotabove-ar</key>\n      <string>uni069A</string>\n      <key>seenDotbelowDotabove-ar.alt</key>\n      <string>uni069A.alt</string>\n      <key>seenDotbelowDotabove-ar.fina</key>\n      <string>uni069A.fina</string>\n      <key>seenDotbelowDotabove-ar.fina.alt</key>\n      <string>uni069A.fina.alt</string>\n      <key>seenDotbelowDotabove-ar.init</key>\n      <string>uni069A.init</string>\n      <key>seenDotbelowDotabove-ar.medi</key>\n      <string>uni069A.medi</string>\n      <key>seenFourabove-ar</key>\n      <string>uni077D</string>\n      <key>seenFourabove-ar.alt</key>\n      <string>uni077D.alt</string>\n      <key>seenFourabove-ar.fina</key>\n      <string>uni077D.fina</string>\n      <key>seenFourabove-ar.fina.alt</key>\n      <string>uni077D.fina.alt</string>\n      <key>seenFourabove-ar.init</key>\n      <string>uni077D.init</string>\n      <key>seenFourabove-ar.medi</key>\n      <string>uni077D.medi</string>\n      <key>seenFourdotsabove-ar</key>\n      <string>uni075C</string>\n      <key>seenFourdotsabove-ar.alt</key>\n      <string>uni075C.alt</string>\n      <key>seenFourdotsabove-ar.fina</key>\n      <string>uni075C.fina</string>\n      <key>seenFourdotsabove-ar.fina.alt</key>\n      <string>uni075C.fina.alt</string>\n      <key>seenFourdotsabove-ar.init</key>\n      <string>uni075C.init</string>\n      <key>seenFourdotsabove-ar.medi</key>\n      <string>uni075C.medi</string>\n      <key>seenTahTwodotshorizontalabove-ar</key>\n      <string>uni0770</string>\n      <key>seenTahTwodotshorizontalabove-ar.alt</key>\n      <string>uni0770.alt</string>\n      <key>seenTahTwodotshorizontalabove-ar.fina</key>\n      <string>uni0770.fina</string>\n      <key>seenTahTwodotshorizontalabove-ar.fina.alt</key>\n      <string>uni0770.fina.alt</string>\n      <key>seenTahTwodotshorizontalabove-ar.init</key>\n      <string>uni0770.init</string>\n      <key>seenTahTwodotshorizontalabove-ar.medi</key>\n      <string>uni0770.medi</string>\n      <key>seenThreedotsbelow-ar</key>\n      <string>uni069B</string>\n      <key>seenThreedotsbelow-ar.alt</key>\n      <string>uni069B.alt</string>\n      <key>seenThreedotsbelow-ar.fina</key>\n      <string>uni069B.fina</string>\n      <key>seenThreedotsbelow-ar.fina.alt</key>\n      <string>uni069B.fina.alt</string>\n      <key>seenThreedotsbelow-ar.init</key>\n      <string>uni069B.init</string>\n      <key>seenThreedotsbelow-ar.medi</key>\n      <string>uni069B.medi</string>\n      <key>seenThreedotsbelowthreedots-ar</key>\n      <string>seenThreedotsbelowthreedotsar</string>\n      <key>seenThreedotsbelowthreedots-ar.alt</key>\n      <string>seenThreedotsbelowthreedotsar.alt</string>\n      <key>seenThreedotsbelowthreedots-ar.fina</key>\n      <string>seenThreedotsbelowthreedotsar.fina</string>\n      <key>seenThreedotsbelowthreedots-ar.fina.alt</key>\n      <string>seenThreedotsbelowthreedotsar.fina.alt</string>\n      <key>seenThreedotsbelowthreedots-ar.init</key>\n      <string>seenThreedotsbelowthreedotsar.init</string>\n      <key>seenThreedotsbelowthreedots-ar.medi</key>\n      <string>seenThreedotsbelowthreedotsar.medi</string>\n      <key>seenTwodotshorizontalabove-ar</key>\n      <string>uni076D</string>\n      <key>seenTwodotshorizontalabove-ar.fina</key>\n      <string>uni076D.fina</string>\n      <key>seenTwodotshorizontalabove-ar.init</key>\n      <string>uni076D.init</string>\n      <key>seenTwodotshorizontalabove-ar.medi</key>\n      <string>uni076D.medi</string>\n      <key>seenTwodotsverticalabove-ar.alt</key>\n      <string>seenTwodotsverticalabovear.alt</string>\n      <key>seenTwodotsverticalabove-ar.fina.alt</key>\n      <string>seenTwodotsverticalabovear.fina.alt</string>\n      <key>seenVinvertedabove-ar</key>\n      <string>uni077E</string>\n      <key>seenVinvertedabove-ar.alt</key>\n      <string>uni077E.alt</string>\n      <key>seenVinvertedabove-ar.fina</key>\n      <string>uni077E.fina</string>\n      <key>seenVinvertedabove-ar.fina.alt</key>\n      <string>uni077E.fina.alt</string>\n      <key>seenVinvertedabove-ar.init</key>\n      <string>uni077E.init</string>\n      <key>seenVinvertedabove-ar.medi</key>\n      <string>uni077E.medi</string>\n      <key>semicolon-ar</key>\n      <string>uni061B</string>\n      <key>seven-ar</key>\n      <string>uni0667</string>\n      <key>seven-arinferior</key>\n      <string>sevenarinferior</string>\n      <key>seven-arsuperior</key>\n      <string>sevenarsuperior</string>\n      <key>seven-persian</key>\n      <string>uni06F7</string>\n      <key>seven-persian.urdu</key>\n      <string>uni06F7.urdu</string>\n      <key>seven-persian.urduinferior</key>\n      <string>uni06F7.urduinferior</string>\n      <key>seven-persian.urdusuperior</key>\n      <string>uni06F7.urdusuperior</string>\n      <key>seven-persianinferior</key>\n      <string>sevenpersianinferior</string>\n      <key>seven-persiansuperior</key>\n      <string>sevenpersiansuperior</string>\n      <key>seveninferior</key>\n      <string>uni2087</string>\n      <key>sevensuperior</key>\n      <string>uni2077</string>\n      <key>sha-cy</key>\n      <string>uni0448</string>\n      <key>sha-cy.loclBGR</key>\n      <string>uni0448.loclBGR</string>\n      <key>shadda-ar</key>\n      <string>uni0651</string>\n      <key>shadedark</key>\n      <string>dkshade</string>\n      <key>shadedark.stypo</key>\n      <string>dkshade.stypo</string>\n      <key>shadelight</key>\n      <string>ltshade</string>\n      <key>shadelight.stypo</key>\n      <string>ltshade.stypo</string>\n      <key>shademedium</key>\n      <string>shade</string>\n      <key>shademedium.stypo</key>\n      <string>shade.stypo</string>\n      <key>shcha-cy</key>\n      <string>uni0449</string>\n      <key>shcha-cy.loclBGR</key>\n      <string>uni0449.loclBGR</string>\n      <key>sheen-ar</key>\n      <string>uni0634</string>\n      <key>sheen-ar.alt</key>\n      <string>uni0634.alt</string>\n      <key>sheen-ar.fina</key>\n      <string>uniFEB6</string>\n      <key>sheen-ar.fina.alt</key>\n      <string>uni0634.fina.alt</string>\n      <key>sheen-ar.init</key>\n      <string>uniFEB7</string>\n      <key>sheen-ar.medi</key>\n      <string>uniFEB8</string>\n      <key>sheenDotbelow-ar</key>\n      <string>uni06FA</string>\n      <key>sheenDotbelow-ar.alt</key>\n      <string>uni06FA.alt</string>\n      <key>sheenDotbelow-ar.fina</key>\n      <string>uni06FA.fina</string>\n      <key>sheenDotbelow-ar.fina.alt</key>\n      <string>uni06FA.fina.alt</string>\n      <key>sheenDotbelow-ar.init</key>\n      <string>uni06FA.init</string>\n      <key>sheenDotbelow-ar.medi</key>\n      <string>uni06FA.medi</string>\n      <key>sheqel</key>\n      <string>uni20AA</string>\n      <key>shha-cy</key>\n      <string>uni04BB</string>\n      <key>shiftInControl</key>\n      <string>uni240F</string>\n      <key>shiftInControl.ss20</key>\n      <string>uni240F.ss20</string>\n      <key>shiftOutControl</key>\n      <string>uni240E</string>\n      <key>shiftOutControl.ss20</key>\n      <string>uni240E.ss20</string>\n      <key>shin-hb</key>\n      <string>uni05E9</string>\n      <key>shindagesh-hb</key>\n      <string>uniFB49</string>\n      <key>shindageshshindot-hb</key>\n      <string>uniFB2C</string>\n      <key>shindageshsindot-hb</key>\n      <string>uniFB2D</string>\n      <key>shindot-hb</key>\n      <string>uni05C1</string>\n      <key>shinshindot-hb</key>\n      <string>uniFB2A</string>\n      <key>shinsindot-hb</key>\n      <string>uniFB2B</string>\n      <key>sigmafinal</key>\n      <string>uni03C2</string>\n      <key>sindhiampersand-ar</key>\n      <string>uni06FD</string>\n      <key>sindhipostpositionmen-ar</key>\n      <string>uni06FE</string>\n      <key>sindot-hb</key>\n      <string>uni05C2</string>\n      <key>six-ar</key>\n      <string>uni0666</string>\n      <key>six-arinferior</key>\n      <string>sixarinferior</string>\n      <key>six-arsuperior</key>\n      <string>sixarsuperior</string>\n      <key>six-persian</key>\n      <string>uni06F6</string>\n      <key>six-persianinferior</key>\n      <string>sixpersianinferior</string>\n      <key>six-persiansuperior</key>\n      <string>sixpersiansuperior</string>\n      <key>sixinferior</key>\n      <string>uni2086</string>\n      <key>sixsuperior</key>\n      <string>uni2076</string>\n      <key>softhyphen</key>\n      <string>uni00AD</string>\n      <key>softsign-cy</key>\n      <string>uni044C</string>\n      <key>softsign-cy.loclBGR</key>\n      <string>uni044C.loclBGR</string>\n      <key>spaceControl</key>\n      <string>uni2420</string>\n      <key>spadeBlackSuit</key>\n      <string>spade</string>\n      <key>startOfHeadingControl</key>\n      <string>uni2401</string>\n      <key>startOfHeadingControl.ss20</key>\n      <string>uni2401.ss20</string>\n      <key>startOfTextControl</key>\n      <string>uni2402</string>\n      <key>startOfTextControl.ss20</key>\n      <string>uni2402.ss20</string>\n      <key>strictlyequivalentto</key>\n      <string>uni2263</string>\n      <key>substituteControl</key>\n      <string>uni241A</string>\n      <key>substituteControl.ss20</key>\n      <string>uni241A.ss20</string>\n      <key>substituteFormTwoControl</key>\n      <string>uni2426</string>\n      <key>sukun-ar</key>\n      <string>uni0652</string>\n      <key>sunWithRays</key>\n      <string>sun</string>\n      <key>synchronousIdleControl</key>\n      <string>uni2416</string>\n      <key>synchronousIdleControl.ss20</key>\n      <string>uni2416.ss20</string>\n      <key>tah-ar</key>\n      <string>uni0637</string>\n      <key>tah-ar.fina</key>\n      <string>uniFEC2</string>\n      <key>tah-ar.init</key>\n      <string>uniFEC3</string>\n      <key>tah-ar.medi</key>\n      <string>uniFEC4</string>\n      <key>tahThreedots-ar</key>\n      <string>uni069F</string>\n      <key>tahThreedots-ar.fina</key>\n      <string>uni069F.fina</string>\n      <key>tahThreedots-ar.init</key>\n      <string>uni069F.init</string>\n      <key>tahThreedots-ar.medi</key>\n      <string>uni069F.medi</string>\n      <key>tahTwodotsabove-ar</key>\n      <string>uni08A3</string>\n      <key>tahTwodotsabove-ar.fina</key>\n      <string>uni08A3.fina</string>\n      <key>tahTwodotsabove-ar.init</key>\n      <string>uni08A3.init</string>\n      <key>tahTwodotsabove-ar.medi</key>\n      <string>uni08A3.medi</string>\n      <key>tahbelow-ar</key>\n      <string>tahbelowar</string>\n      <key>tahcenter-ar</key>\n      <string>tahcenterar</string>\n      <key>tav-hb</key>\n      <string>uni05EA</string>\n      <key>tavdagesh-hb</key>\n      <string>uniFB4A</string>\n      <key>tcedilla</key>\n      <string>uni0163</string>\n      <key>tcheh-ar</key>\n      <string>uni0686</string>\n      <key>tcheh-ar.fina</key>\n      <string>uniFB7B</string>\n      <key>tcheh-ar.init</key>\n      <string>uniFB7C</string>\n      <key>tcheh-ar.medi</key>\n      <string>uniFB7D</string>\n      <key>tchehDotabove-ar</key>\n      <string>uni06BF</string>\n      <key>tchehDotabove-ar.fina</key>\n      <string>uni06BF.fina</string>\n      <key>tchehDotabove-ar.init</key>\n      <string>uni06BF.init</string>\n      <key>tchehDotabove-ar.medi</key>\n      <string>uni06BF.medi</string>\n      <key>tcheheh-ar</key>\n      <string>uni0687</string>\n      <key>tcheheh-ar.fina</key>\n      <string>uniFB7F</string>\n      <key>tcheheh-ar.init</key>\n      <string>uniFB80</string>\n      <key>tcheheh-ar.medi</key>\n      <string>uniFB81</string>\n      <key>tcommaaccent</key>\n      <string>uni021B</string>\n      <key>te-cy</key>\n      <string>uni0442</string>\n      <key>te-cy.loclBGR</key>\n      <string>uni0442.loclBGR</string>\n      <key>teh-ar</key>\n      <string>uni062A</string>\n      <key>teh-ar.alt</key>\n      <string>uni062A.alt</string>\n      <key>teh-ar.fina</key>\n      <string>uniFE96</string>\n      <key>teh-ar.fina.alt</key>\n      <string>uni062A.fina.alt</string>\n      <key>teh-ar.init</key>\n      <string>uniFE97</string>\n      <key>teh-ar.init.alt</key>\n      <string>uni062A.init.alt</string>\n      <key>teh-ar.medi</key>\n      <string>uniFE98</string>\n      <key>tehMarbuta-ar</key>\n      <string>uni0629</string>\n      <key>tehMarbuta-ar.fina</key>\n      <string>uniFE94</string>\n      <key>tehMarbutagoal-ar</key>\n      <string>uni06C3</string>\n      <key>tehMarbutagoal-ar.fina</key>\n      <string>uni06C3.fina</string>\n      <key>tehRing-ar</key>\n      <string>uni067C</string>\n      <key>tehRing-ar.alt</key>\n      <string>uni067C.alt</string>\n      <key>tehRing-ar.fina</key>\n      <string>uni067C.fina</string>\n      <key>tehRing-ar.fina.alt</key>\n      <string>uni067C.fina.alt</string>\n      <key>tehRing-ar.init</key>\n      <string>uni067C.init</string>\n      <key>tehRing-ar.init.alt</key>\n      <string>uni067C.init.alt</string>\n      <key>tehRing-ar.medi</key>\n      <string>uni067C.medi</string>\n      <key>tehTehabove-ar</key>\n      <string>uni08B8</string>\n      <key>tehTehabove-ar.alt</key>\n      <string>uni08B8.alt</string>\n      <key>tehTehabove-ar.fina</key>\n      <string>uni08B8.fina</string>\n      <key>tehTehabove-ar.fina.alt</key>\n      <string>uni08B8.fina.alt</string>\n      <key>tehTehabove-ar.init</key>\n      <string>uni08B8.init</string>\n      <key>tehTehabove-ar.init.alt</key>\n      <string>uni08B8.init.alt</string>\n      <key>tehTehabove-ar.medi</key>\n      <string>uni08B8.medi</string>\n      <key>tehThreedotsdown-ar</key>\n      <string>uni067D</string>\n      <key>tehThreedotsdown-ar.alt</key>\n      <string>uni067D.alt</string>\n      <key>tehThreedotsdown-ar.fina</key>\n      <string>uni067D.fina</string>\n      <key>tehThreedotsdown-ar.fina.alt</key>\n      <string>uni067D.fina.alt</string>\n      <key>tehThreedotsdown-ar.init</key>\n      <string>uni067D.init</string>\n      <key>tehThreedotsdown-ar.init.alt</key>\n      <string>uni067D.init.alt</string>\n      <key>tehThreedotsdown-ar.medi</key>\n      <string>uni067D.medi</string>\n      <key>tehThreedotsupbelow-ar</key>\n      <string>uni0753</string>\n      <key>tehThreedotsupbelow-ar.alt</key>\n      <string>uni0753.alt</string>\n      <key>tehThreedotsupbelow-ar.fina</key>\n      <string>uni0753.fina</string>\n      <key>tehThreedotsupbelow-ar.fina.alt</key>\n      <string>uni0753.fina.alt</string>\n      <key>tehThreedotsupbelow-ar.init</key>\n      <string>uni0753.init</string>\n      <key>tehThreedotsupbelow-ar.init.alt</key>\n      <string>uni0753.init.alt</string>\n      <key>tehThreedotsupbelow-ar.medi</key>\n      <string>uni0753.medi</string>\n      <key>tehabove-ar.small</key>\n      <string>tehabovear.small</string>\n      <key>teheh-ar</key>\n      <string>uni067F</string>\n      <key>teheh-ar.alt</key>\n      <string>uni067F.alt</string>\n      <key>teheh-ar.fina</key>\n      <string>uniFB63</string>\n      <key>teheh-ar.fina.alt</key>\n      <string>uni067F.fina.alt</string>\n      <key>teheh-ar.init</key>\n      <string>uniFB64</string>\n      <key>teheh-ar.init.alt</key>\n      <string>uni067F.init.alt</string>\n      <key>teheh-ar.medi</key>\n      <string>uniFB65</string>\n      <key>tenge</key>\n      <string>uni20B8</string>\n      <key>tesh</key>\n      <string>uni02A7</string>\n      <key>tet-hb</key>\n      <string>uni05D8</string>\n      <key>tetdagesh-hb</key>\n      <string>uniFB38</string>\n      <key>thal-ar</key>\n      <string>uni0630</string>\n      <key>thal-ar.fina</key>\n      <string>uniFEAC</string>\n      <key>thalAlefabove-ar</key>\n      <string>uniFC5B</string>\n      <key>thalAlefabove-ar.fina</key>\n      <string>uniFC5B.fina</string>\n      <key>theh-ar</key>\n      <string>uni062B</string>\n      <key>theh-ar.alt</key>\n      <string>uni062B.alt</string>\n      <key>theh-ar.fina</key>\n      <string>uniFE9A</string>\n      <key>theh-ar.fina.alt</key>\n      <string>uni062B.fina.alt</string>\n      <key>theh-ar.init</key>\n      <string>uniFE9B</string>\n      <key>theh-ar.init.alt</key>\n      <string>uni062B.init.alt</string>\n      <key>theh-ar.medi</key>\n      <string>uniFE9C</string>\n      <key>thetamod</key>\n      <string>uni1DBF</string>\n      <key>thousandseparator-ar</key>\n      <string>uni066C</string>\n      <key>three-ar</key>\n      <string>uni0663</string>\n      <key>three-arinferior</key>\n      <string>threearinferior</string>\n      <key>three-arsuperior</key>\n      <string>threearsuperior</string>\n      <key>three-persian</key>\n      <string>uni06F3</string>\n      <key>three-persian.small01</key>\n      <string>uni06F3.small01</string>\n      <key>three-persianinferior</key>\n      <string>threepersianinferior</string>\n      <key>three-persiansuperior</key>\n      <string>threepersiansuperior</string>\n      <key>threedots-ar</key>\n      <string>uni061E</string>\n      <key>threedotsdownabove-ar</key>\n      <string>threedotsdownabovear</string>\n      <key>threedotsdownbelow-ar</key>\n      <string>threedotsdownbelowar</string>\n      <key>threedotsdowncenter-ar</key>\n      <string>threedotsdowncenterar</string>\n      <key>threedotsupabove-ar</key>\n      <string>threedotsupabovear</string>\n      <key>threedotsupabove-ar.v2</key>\n      <string>threedotsupabovear.v2</string>\n      <key>threedotsupbelow-ar</key>\n      <string>threedotsupbelowar</string>\n      <key>threedotsupcenter-ar</key>\n      <string>threedotsupcenterar</string>\n      <key>threeinferior</key>\n      <string>uni2083</string>\n      <key>threesuperior</key>\n      <string>uni00B3</string>\n      <key>topHalfBlackCircle</key>\n      <string>uni2BCA</string>\n      <key>topHalfBlackDiamond</key>\n      <string>uni2B18</string>\n      <key>topHalfWhiteSquare</key>\n      <string>uni2B13</string>\n      <key>topRightHalfWhiteSquare</key>\n      <string>uni2B15</string>\n      <key>tsadi-hb</key>\n      <string>uni05E6</string>\n      <key>tsadidagesh-hb</key>\n      <string>uniFB46</string>\n      <key>tse-cy</key>\n      <string>uni0446</string>\n      <key>tse-cy.loclBGR</key>\n      <string>uni0446.loclBGR</string>\n      <key>tshe-cy</key>\n      <string>uni045B</string>\n      <key>tteh-ar</key>\n      <string>uni0679</string>\n      <key>tteh-ar.alt</key>\n      <string>uni0679.alt</string>\n      <key>tteh-ar.fina</key>\n      <string>uniFB67</string>\n      <key>tteh-ar.fina.alt</key>\n      <string>uni0679.fina.alt</string>\n      <key>tteh-ar.init</key>\n      <string>uniFB68</string>\n      <key>tteh-ar.init.alt</key>\n      <string>uni0679.init.alt</string>\n      <key>tteh-ar.medi</key>\n      <string>uniFB69</string>\n      <key>tteheh-ar</key>\n      <string>uni067A</string>\n      <key>tteheh-ar.alt</key>\n      <string>uni067A.alt</string>\n      <key>tteheh-ar.fina</key>\n      <string>uniFB5F</string>\n      <key>tteheh-ar.fina.alt</key>\n      <string>uni067A.fina.alt</string>\n      <key>tteheh-ar.init</key>\n      <string>uniFB60</string>\n      <key>tteheh-ar.init.alt</key>\n      <string>uni067A.init.alt</string>\n      <key>tteheh-ar.medi</key>\n      <string>uniFB61</string>\n      <key>tugrik</key>\n      <string>uni20AE</string>\n      <key>two-ar</key>\n      <string>uni0662</string>\n      <key>two-arinferior</key>\n      <string>twoarinferior</string>\n      <key>two-arsuperior</key>\n      <string>twoarsuperior</string>\n      <key>two-persian</key>\n      <string>uni06F2</string>\n      <key>two-persian.small01</key>\n      <string>uni06F2.small01</string>\n      <key>two-persianinferior</key>\n      <string>twopersianinferior</string>\n      <key>two-persiansuperior</key>\n      <string>twopersiansuperior</string>\n      <key>twodotshorizontalabove-ar</key>\n      <string>twodotshorizontalabovear</string>\n      <key>twodotshorizontalabove-ar.v2</key>\n      <string>twodotshorizontalabovear.v2</string>\n      <key>twodotshorizontalbelow-ar</key>\n      <string>twodotshorizontalbelowar</string>\n      <key>twodotshorizontalcenter-ar</key>\n      <string>twodotshorizontalcenterar</string>\n      <key>twodotstahbelow-ar</key>\n      <string>twodotstahbelowar</string>\n      <key>twodotstahcenter-ar</key>\n      <string>twodotstahcenterar</string>\n      <key>twodotsverticalabove-ar</key>\n      <string>twodotsverticalabovear</string>\n      <key>twodotsverticalbelow-ar</key>\n      <string>twodotsverticalbelowar</string>\n      <key>twodotsverticalcenter-ar</key>\n      <string>twodotsverticalcenterar</string>\n      <key>twoinferior</key>\n      <string>uni2082</string>\n      <key>twosuperior</key>\n      <string>uni00B2</string>\n      <key>u-ar</key>\n      <string>uni06C7</string>\n      <key>u-ar.fina</key>\n      <string>uniFBD8</string>\n      <key>u-cy</key>\n      <string>uni0443</string>\n      <key>uHamzaabove-ar</key>\n      <string>uni0677</string>\n      <key>uHamzaabove-ar.fina</key>\n      <string>uni0677.fina</string>\n      <key>udotbelow</key>\n      <string>uni1EE5</string>\n      <key>uhookabove</key>\n      <string>uni1EE7</string>\n      <key>uhornacute</key>\n      <string>uni1EE9</string>\n      <key>uhorndotbelow</key>\n      <string>uni1EF1</string>\n      <key>uhorngrave</key>\n      <string>uni1EEB</string>\n      <key>uhornhookabove</key>\n      <string>uni1EED</string>\n      <key>uhorntilde</key>\n      <string>uni1EEF</string>\n      <key>umacron-cy</key>\n      <string>uni04EF</string>\n      <key>unitSeparatorControl</key>\n      <string>uni241F</string>\n      <key>upArrow</key>\n      <string>arrowup</string>\n      <key>upBlackSmallTriangle</key>\n      <string>uni25B4</string>\n      <key>upBlackTriangle</key>\n      <string>triagup</string>\n      <key>upDashArrow</key>\n      <string>uni21E1</string>\n      <key>upDownArrow</key>\n      <string>arrowupdn</string>\n      <key>upDownbaseArrow</key>\n      <string>arrowupdnbse</string>\n      <key>upLeftHalfBlackTriangle</key>\n      <string>uni25ED</string>\n      <key>upRightHalfBlackTriangle</key>\n      <string>uni25EE</string>\n      <key>upWhiteSmallTriangle</key>\n      <string>uni25B5</string>\n      <key>upWhiteTriangle</key>\n      <string>uni25B3</string>\n      <key>upWhiteTriangleWithDot</key>\n      <string>uni25EC</string>\n      <key>upperHalfArc</key>\n      <string>uni25E0</string>\n      <key>upperHalfBlackWhiteCircle</key>\n      <string>uni25D3</string>\n      <key>upperHalfBlock</key>\n      <string>upblock</string>\n      <key>upperHalfBlock.stypo</key>\n      <string>upblock.stypo</string>\n      <key>upperHalfInverseWhiteCircle</key>\n      <string>uni25DA</string>\n      <key>upperLeftAndLowerLeftAndLowerRightBlock</key>\n      <string>uni2599</string>\n      <key>upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n      <string>uni2599.stypo</string>\n      <key>upperLeftAndLowerRightBlock</key>\n      <string>uni259A</string>\n      <key>upperLeftAndLowerRightBlock.stypo</key>\n      <string>uni259A.stypo</string>\n      <key>upperLeftAndUpperRightAndLowerLeftBlock</key>\n      <string>uni259B</string>\n      <key>upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n      <string>uni259B.stypo</string>\n      <key>upperLeftAndUpperRightAndLowerRightBlock</key>\n      <string>uni259C</string>\n      <key>upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n      <string>uni259C.stypo</string>\n      <key>upperLeftArc</key>\n      <string>uni25DC</string>\n      <key>upperLeftBlackTriangle</key>\n      <string>uni25E4</string>\n      <key>upperLeftBlock</key>\n      <string>uni2598</string>\n      <key>upperLeftBlock.stypo</key>\n      <string>uni2598.stypo</string>\n      <key>upperLeftDiagonalHalfBlackSquare</key>\n      <string>uni25E9</string>\n      <key>upperLeftQuadrantWhiteCircle</key>\n      <string>uni25F4</string>\n      <key>upperLeftTriangle</key>\n      <string>uni25F8</string>\n      <key>upperLeftWhiteCircle</key>\n      <string>uni25D5</string>\n      <key>upperOneEighthBlock</key>\n      <string>uni2594</string>\n      <key>upperOneEighthBlock.stypo</key>\n      <string>uni2594.stypo</string>\n      <key>upperRightAndLowerLeftAndLowerRightBlock</key>\n      <string>uni259F</string>\n      <key>upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n      <string>uni259F.stypo</string>\n      <key>upperRightAndLowerLeftBlock</key>\n      <string>uni259E</string>\n      <key>upperRightAndLowerLeftBlock.stypo</key>\n      <string>uni259E.stypo</string>\n      <key>upperRightArc</key>\n      <string>uni25DD</string>\n      <key>upperRightBlackCircle</key>\n      <string>uni25D4</string>\n      <key>upperRightBlackTriangle</key>\n      <string>uni25E5</string>\n      <key>upperRightBlock</key>\n      <string>uni259D</string>\n      <key>upperRightBlock.stypo</key>\n      <string>uni259D.stypo</string>\n      <key>upperRightQuadrantWhiteCircle</key>\n      <string>uni25F7</string>\n      <key>upperRightTriangle</key>\n      <string>uni25F9</string>\n      <key>upperlefttolowerrightFillSquare</key>\n      <string>uni25A7</string>\n      <key>upperrighttolowerleftFillSquare</key>\n      <string>uni25A8</string>\n      <key>upsilon-latin</key>\n      <string>uni028A</string>\n      <key>ushort-cy</key>\n      <string>uni045E</string>\n      <key>ustraight-cy</key>\n      <string>uni04AF</string>\n      <key>ustraightstroke-cy</key>\n      <string>uni04B1</string>\n      <key>vabove-ar</key>\n      <string>uni065A</string>\n      <key>vav-hb</key>\n      <string>uni05D5</string>\n      <key>vavdagesh-hb</key>\n      <string>uniFB35</string>\n      <key>vavholam-hb</key>\n      <string>uniFB4B</string>\n      <key>ve-ar</key>\n      <string>uni06CB</string>\n      <key>ve-ar.fina</key>\n      <string>uniFBDF</string>\n      <key>ve-cy</key>\n      <string>uni0432</string>\n      <key>ve-cy.loclBGR</key>\n      <string>uni0432.loclBGR</string>\n      <key>vectorOrCrossProduct</key>\n      <string>uni2A2F</string>\n      <key>veh-ar</key>\n      <string>uni06A4</string>\n      <key>veh-ar.alt</key>\n      <string>uni06A4.alt</string>\n      <key>veh-ar.fina</key>\n      <string>uniFB6B</string>\n      <key>veh-ar.fina.alt</key>\n      <string>uni06A4.fina.alt</string>\n      <key>veh-ar.init</key>\n      <string>uniFB6C</string>\n      <key>veh-ar.init.alt</key>\n      <string>uni06A4.init.alt</string>\n      <key>veh-ar.medi</key>\n      <string>uniFB6D</string>\n      <key>venus</key>\n      <string>female</string>\n      <key>verseComma-ar</key>\n      <string>uni060E</string>\n      <key>verticalBisectingLineWhiteSquare</key>\n      <string>uni25EB</string>\n      <key>verticalFillCircle</key>\n      <string>uni25CD</string>\n      <key>verticalFillSquare</key>\n      <string>uni25A5</string>\n      <key>verticalTabulationControl</key>\n      <string>uni240B</string>\n      <key>verticalTabulationControl.ss20</key>\n      <string>uni240B.ss20</string>\n      <key>vhook</key>\n      <string>uni028B</string>\n      <key>vinvertedabove-ar</key>\n      <string>uni065B</string>\n      <key>vturned</key>\n      <string>uni028C</string>\n      <key>wasla-ar</key>\n      <string>waslaar</string>\n      <key>wavyhamzaabove-ar</key>\n      <string>wavyhamzaabovear</string>\n      <key>wavyhamzabelow-ar</key>\n      <string>uni065F</string>\n      <key>waw-ar</key>\n      <string>uni0648</string>\n      <key>waw-ar.fina</key>\n      <string>uniFEEE</string>\n      <key>wawDotabove-ar</key>\n      <string>uni06CF</string>\n      <key>wawDotabove-ar.fina</key>\n      <string>uni06CF.fina</string>\n      <key>wawDotcenter-ar</key>\n      <string>uni08AB</string>\n      <key>wawDotcenter-ar.fina</key>\n      <string>uni08AB.fina</string>\n      <key>wawHamzaabove-ar</key>\n      <string>uni0624</string>\n      <key>wawHamzaabove-ar.fina</key>\n      <string>uniFE86</string>\n      <key>wawStraight-ar</key>\n      <string>uni08B1</string>\n      <key>wawThreeAbove-ar</key>\n      <string>uni0779</string>\n      <key>wawThreeAbove-ar.fina</key>\n      <string>uni0779.fina</string>\n      <key>wawTwoabove-ar</key>\n      <string>uni0778</string>\n      <key>wawTwoabove-ar.fina</key>\n      <string>uni0778.fina</string>\n      <key>wawTwodots-ar</key>\n      <string>uni06CA</string>\n      <key>wawTwodots-ar.fina</key>\n      <string>uni06CA.fina</string>\n      <key>wawring-ar</key>\n      <string>uni06C4</string>\n      <key>wawring-ar.fina</key>\n      <string>uni06C4.fina</string>\n      <key>whiteBullet</key>\n      <string>openbullet</string>\n      <key>whiteCircle</key>\n      <string>circle</string>\n      <key>whiteDiamond</key>\n      <string>uni25C7</string>\n      <key>whiteHexagon</key>\n      <string>uni2B21</string>\n      <key>whiteHorizontalEllipse</key>\n      <string>uni2B2D</string>\n      <key>whiteInBlackSquare</key>\n      <string>uni25A3</string>\n      <key>whiteLargeSquare</key>\n      <string>uni2B1C</string>\n      <key>whiteLowerLeftQuadrantSquare</key>\n      <string>uni25F1</string>\n      <key>whiteLowerRightQuadrantSquare</key>\n      <string>uni25F2</string>\n      <key>whiteMediumDiamond</key>\n      <string>uni2B26</string>\n      <key>whiteMediumLozenge</key>\n      <string>uni2B28</string>\n      <key>whiteParallelogram</key>\n      <string>uni25B1</string>\n      <key>whitePentagon</key>\n      <string>uni2B20</string>\n      <key>whiteRect</key>\n      <string>uni25AD</string>\n      <key>whiteRoundedCornersSquare</key>\n      <string>uni25A2</string>\n      <key>whiteSmallLozenge</key>\n      <string>uni2B2B</string>\n      <key>whiteSmallSquare</key>\n      <string>uni25AB</string>\n      <key>whiteSmilingFace</key>\n      <string>smileface</string>\n      <key>whiteSquare</key>\n      <string>uni25A1</string>\n      <key>whiteUpperLeftQuadrantSquare</key>\n      <string>uni25F0</string>\n      <key>whiteUpperRightQuadrantSquare</key>\n      <string>uni25F3</string>\n      <key>whiteVerticalEllipse</key>\n      <string>uni2B2F</string>\n      <key>whiteVerticalRect</key>\n      <string>uni25AF</string>\n      <key>whiteVerysmallSquare</key>\n      <string>uni2B1E</string>\n      <key>wmod</key>\n      <string>uni02B7</string>\n      <key>won</key>\n      <string>uni20A9</string>\n      <key>ydotbelow</key>\n      <string>uni1EF5</string>\n      <key>year-ar</key>\n      <string>uni0601</string>\n      <key>yeh-ar</key>\n      <string>uni064A</string>\n      <key>yeh-ar.fina</key>\n      <string>uniFEF2</string>\n      <key>yeh-ar.fina.alt</key>\n      <string>uni064A.fina.alt</string>\n      <key>yeh-ar.init</key>\n      <string>uniFEF3</string>\n      <key>yeh-ar.init.alt</key>\n      <string>uni064A.init.alt</string>\n      <key>yeh-ar.medi</key>\n      <string>uniFEF4</string>\n      <key>yeh-farsi</key>\n      <string>uni06CC</string>\n      <key>yeh-farsi.fina</key>\n      <string>uniFBFD</string>\n      <key>yeh-farsi.fina.alt</key>\n      <string>uni06CC.fina.alt</string>\n      <key>yeh-farsi.init</key>\n      <string>uniFBFE</string>\n      <key>yeh-farsi.init.alt</key>\n      <string>uni06CC.init.alt</string>\n      <key>yeh-farsi.medi</key>\n      <string>uniFBFF</string>\n      <key>yehFourbelow-farsi</key>\n      <string>uni0777</string>\n      <key>yehFourbelow-farsi.fina</key>\n      <string>uni0777.fina</string>\n      <key>yehFourbelow-farsi.fina.alt</key>\n      <string>uni0777.fina.alt</string>\n      <key>yehFourbelow-farsi.init</key>\n      <string>uni0777.init</string>\n      <key>yehFourbelow-farsi.init.alt</key>\n      <string>uni0777.init.alt</string>\n      <key>yehFourbelow-farsi.medi</key>\n      <string>uni0777.medi</string>\n      <key>yehHamzaabove-ar</key>\n      <string>uni0626</string>\n      <key>yehHamzaabove-ar.fina</key>\n      <string>uniFE8A</string>\n      <key>yehHamzaabove-ar.fina.alt</key>\n      <string>uni0626.fina.alt</string>\n      <key>yehHamzaabove-ar.init</key>\n      <string>uniFE8B</string>\n      <key>yehHamzaabove-ar.init.alt</key>\n      <string>uni0626.init.alt</string>\n      <key>yehHamzaabove-ar.medi</key>\n      <string>uniFE8C</string>\n      <key>yehKashmiri-ar</key>\n      <string>uni0620</string>\n      <key>yehKashmiri-ar.fina</key>\n      <string>uni0620.fina</string>\n      <key>yehKashmiri-ar.fina.alt</key>\n      <string>uni0620.fina.alt</string>\n      <key>yehKashmiri-ar.init</key>\n      <string>uni0620.init</string>\n      <key>yehKashmiri-ar.init.alt</key>\n      <string>uni0620.init.alt</string>\n      <key>yehKashmiri-ar.medi</key>\n      <string>uni0620.medi</string>\n      <key>yehRohingya-ar</key>\n      <string>uni08AC</string>\n      <key>yehRohingya-ar.fina</key>\n      <string>uni08AC.fina</string>\n      <key>yehRohingya-ar.isol</key>\n      <string>uni08AC.isol</string>\n      <key>yehTail-ar</key>\n      <string>uni06CD</string>\n      <key>yehTail-ar.fina</key>\n      <string>uni06CD.fina</string>\n      <key>yehTail-ar.fina.alt</key>\n      <string>uni06CD.fina.alt</string>\n      <key>yehThreeabove-farsi</key>\n      <string>uni0776</string>\n      <key>yehThreeabove-farsi.fina</key>\n      <string>uni0776.fina</string>\n      <key>yehThreeabove-farsi.fina.alt</key>\n      <string>uni0776.fina.alt</string>\n      <key>yehThreeabove-farsi.init</key>\n      <string>uni0776.init</string>\n      <key>yehThreeabove-farsi.init.alt</key>\n      <string>uni0776.init.alt</string>\n      <key>yehThreeabove-farsi.medi</key>\n      <string>uni0776.medi</string>\n      <key>yehThreedotsabove-farsi</key>\n      <string>uni063F</string>\n      <key>yehThreedotsabove-farsi.fina</key>\n      <string>uni063F.fina</string>\n      <key>yehThreedotsabove-farsi.fina.alt</key>\n      <string>uni063F.fina.alt</string>\n      <key>yehThreedotsabove-farsi.init</key>\n      <string>uni063F.init</string>\n      <key>yehThreedotsabove-farsi.init.alt</key>\n      <string>uni063F.init.alt</string>\n      <key>yehThreedotsabove-farsi.medi</key>\n      <string>uni063F.medi</string>\n      <key>yehThreedotsbelow-ar</key>\n      <string>uni06D1</string>\n      <key>yehThreedotsbelow-ar.fina</key>\n      <string>uni06D1.fina</string>\n      <key>yehThreedotsbelow-ar.fina.alt</key>\n      <string>uni06D1.fina.alt</string>\n      <key>yehThreedotsbelow-ar.init</key>\n      <string>uni06D1.init</string>\n      <key>yehThreedotsbelow-ar.init.alt</key>\n      <string>uni06D1.init.alt</string>\n      <key>yehThreedotsbelow-ar.medi</key>\n      <string>uni06D1.medi</string>\n      <key>yehTwoabove-farsi</key>\n      <string>uni0775</string>\n      <key>yehTwoabove-farsi.fina</key>\n      <string>uni0775.fina</string>\n      <key>yehTwoabove-farsi.fina.alt</key>\n      <string>uni0775.fina.alt</string>\n      <key>yehTwoabove-farsi.init</key>\n      <string>uni0775.init</string>\n      <key>yehTwoabove-farsi.init.alt</key>\n      <string>uni0775.init.alt</string>\n      <key>yehTwoabove-farsi.medi</key>\n      <string>uni0775.medi</string>\n      <key>yehTwodotsabove-farsi</key>\n      <string>uni063E</string>\n      <key>yehTwodotsabove-farsi.fina</key>\n      <string>uni063E.fina</string>\n      <key>yehTwodotsabove-farsi.fina.alt</key>\n      <string>uni063E.fina.alt</string>\n      <key>yehTwodotsabove-farsi.init</key>\n      <string>uni063E.init</string>\n      <key>yehTwodotsabove-farsi.init.alt</key>\n      <string>uni063E.init.alt</string>\n      <key>yehTwodotsabove-farsi.medi</key>\n      <string>uni063E.medi</string>\n      <key>yehTwodotsbelowDotabove-ar</key>\n      <string>uni08A9</string>\n      <key>yehTwodotsbelowDotabove-ar.fina</key>\n      <string>uni08A9.fina</string>\n      <key>yehTwodotsbelowDotabove-ar.init</key>\n      <string>uni08A9.init</string>\n      <key>yehTwodotsbelowDotabove-ar.init.alt</key>\n      <string>uni08A9.init.alt</string>\n      <key>yehTwodotsbelowDotabove-ar.medi</key>\n      <string>uni08A9.medi</string>\n      <key>yehTwodotsbelowHamzaabove-ar</key>\n      <string>uni08A8</string>\n      <key>yehTwodotsbelowHamzaabove-ar.fina</key>\n      <string>uni08A8.fina</string>\n      <key>yehTwodotsbelowHamzaabove-ar.init</key>\n      <string>uni08A8.init</string>\n      <key>yehTwodotsbelowHamzaabove-ar.init.alt</key>\n      <string>uni08A8.init.alt</string>\n      <key>yehTwodotsbelowHamzaabove-ar.medi</key>\n      <string>uni08A8.medi</string>\n      <key>yehTwodotsbelowNoonabove-ar</key>\n      <string>uni08BA</string>\n      <key>yehTwodotsbelowNoonabove-ar.fina</key>\n      <string>uni08BA.fina</string>\n      <key>yehTwodotsbelowNoonabove-ar.fina.alt</key>\n      <string>uni08BA.fina.alt</string>\n      <key>yehTwodotsbelowNoonabove-ar.init</key>\n      <string>uni08BA.init</string>\n      <key>yehTwodotsbelowNoonabove-ar.init.alt</key>\n      <string>uni08BA.init.alt</string>\n      <key>yehTwodotsbelowNoonabove-ar.medi</key>\n      <string>uni08BA.medi</string>\n      <key>yehVabove-ar</key>\n      <string>uni06CE</string>\n      <key>yehVabove-ar.fina</key>\n      <string>uni06CE.fina</string>\n      <key>yehVabove-ar.fina.alt</key>\n      <string>uni06CE.fina.alt</string>\n      <key>yehVabove-ar.init</key>\n      <string>uni06CE.init</string>\n      <key>yehVabove-ar.init.alt</key>\n      <string>uni06CE.init.alt</string>\n      <key>yehVabove-ar.medi</key>\n      <string>uni06CE.medi</string>\n      <key>yehVinverted-farsi</key>\n      <string>uni063D</string>\n      <key>yehVinverted-farsi.fina</key>\n      <string>uni063D.fina</string>\n      <key>yehVinverted-farsi.fina.alt</key>\n      <string>uni063D.fina.alt</string>\n      <key>yehVinverted-farsi.init</key>\n      <string>uni063D.init</string>\n      <key>yehVinverted-farsi.init.alt</key>\n      <string>uni063D.init.alt</string>\n      <key>yehVinverted-farsi.medi</key>\n      <string>uni063D.medi</string>\n      <key>yehbarree-ar</key>\n      <string>uni06D2</string>\n      <key>yehbarree-ar.fina</key>\n      <string>uniFBAF</string>\n      <key>yehbarreeHamzaabove-ar</key>\n      <string>uni06D3</string>\n      <key>yehbarreeHamzaabove-ar.fina</key>\n      <string>uniFBB1</string>\n      <key>yehbarreeThreeabove-ar</key>\n      <string>uni077B</string>\n      <key>yehbarreeThreeabove-ar.fina</key>\n      <string>uni077B.fina</string>\n      <key>yehbarreeThreeabove-ar.init</key>\n      <string>uni077B.init</string>\n      <key>yehbarreeThreeabove-ar.init.alt</key>\n      <string>uni077B.init.alt</string>\n      <key>yehbarreeThreeabove-ar.medi</key>\n      <string>uni077B.medi</string>\n      <key>yehbarreeTwoabove-ar</key>\n      <string>uni077A</string>\n      <key>yehbarreeTwoabove-ar.fina</key>\n      <string>uni077A.fina</string>\n      <key>yehbarreeTwoabove-ar.init</key>\n      <string>uni077A.init</string>\n      <key>yehbarreeTwoabove-ar.init.alt</key>\n      <string>uni077A.init.alt</string>\n      <key>yehbarreeTwoabove-ar.medi</key>\n      <string>uni077A.medi</string>\n      <key>yeru-cy</key>\n      <string>uni044B</string>\n      <key>yhookabove</key>\n      <string>uni1EF7</string>\n      <key>yi-cy</key>\n      <string>uni0457</string>\n      <key>ymacron</key>\n      <string>uni0233</string>\n      <key>ymod</key>\n      <string>uni02B8</string>\n      <key>yod-hb</key>\n      <string>uni05D9</string>\n      <key>yoddagesh-hb</key>\n      <string>uniFB39</string>\n      <key>ytilde</key>\n      <string>uni1EF9</string>\n      <key>yu-ar</key>\n      <string>uni06C8</string>\n      <key>yu-ar.fina</key>\n      <string>uniFBDC</string>\n      <key>zah-ar</key>\n      <string>uni0638</string>\n      <key>zah-ar.fina</key>\n      <string>uniFEC6</string>\n      <key>zah-ar.init</key>\n      <string>uniFEC7</string>\n      <key>zah-ar.medi</key>\n      <string>uniFEC8</string>\n      <key>zain-ar</key>\n      <string>uni0632</string>\n      <key>zain-ar.fina</key>\n      <string>uniFEB0</string>\n      <key>zainVInvertedabove-ar</key>\n      <string>zainVInvertedabovear</string>\n      <key>zainVInvertedabove-ar.fina</key>\n      <string>zainVInvertedabovear.fina</string>\n      <key>zayin-hb</key>\n      <string>uni05D6</string>\n      <key>zayindagesh-hb</key>\n      <string>uniFB36</string>\n      <key>ze-cy</key>\n      <string>uni0437</string>\n      <key>ze-cy.loclBGR</key>\n      <string>uni0437.loclBGR</string>\n      <key>zero-ar</key>\n      <string>uni0660</string>\n      <key>zero-arinferior</key>\n      <string>zeroarinferior</string>\n      <key>zero-arsuperior</key>\n      <string>zeroarsuperior</string>\n      <key>zero-persian</key>\n      <string>uni06F0</string>\n      <key>zero-persianinferior</key>\n      <string>zeropersianinferior</string>\n      <key>zero-persiansuperior</key>\n      <string>zeropersiansuperior</string>\n      <key>zeroinferior</key>\n      <string>uni2080</string>\n      <key>zerosuperior</key>\n      <string>uni2070</string>\n      <key>zhe-cy</key>\n      <string>uni0436</string>\n      <key>zhe-cy.loclBGR</key>\n      <string>uni0436.loclBGR</string>\n      <key>zhedescender-cy</key>\n      <string>uni0497</string>\n      <key>zmod</key>\n      <string>uni1DBB</string>\n      <key>checkerBoardDeleteApple2</key>\n      <string>uni2427</string>\n      <key>checkerBoardDeleteTrs80</key>\n      <string>uni2428</string>\n      <key>checkerBoardDeleteAmstradCpc</key>\n      <string>uni2429</string>\n      <key>checkerBoardDeleteAmstradCpc.stypo</key>\n      <string>uni2429.stypo</string>\n      <key>checkerBoardFill</key>\n      <string>u1FB95</string>\n      <key>checkerBoardFill.stypo</key>\n      <string>u1FB95.stypo</string>\n      <key>checkerBoardFillInverse</key>\n      <string>u1FB96</string>\n      <key>checkerBoardFillInverse.stypo</key>\n      <string>u1FB96.stypo</string>\n      <key>blockQuadrant-UC</key>\n      <string>u1FBE4</string>\n      <key>blockQuadrant-UC.stypo</key>\n      <string>u1FBE4.stypo</string>\n      <key>blockQuadrant-LC</key>\n      <string>u1FBE5</string>\n      <key>blockQuadrant-LC.stypo</key>\n      <string>u1FBE5.stypo</string>\n      <key>blockQuadrant-ML</key>\n      <string>u1FBE6</string>\n      <key>blockQuadrant-ML.stypo</key>\n      <string>u1FBE6.stypo</string>\n      <key>blockQuadrant-MR</key>\n      <string>u1FBE7</string>\n      <key>blockQuadrant-MR.stypo</key>\n      <string>u1FBE7.stypo</string>\n      <key>blockTriangle-1</key>\n      <string>u1FB6D</string>\n      <key>blockTriangle-1.stypo</key>\n      <string>u1FB6D.stypo</string>\n      <key>blockTriangle-2</key>\n      <string>u1FB6C</string>\n      <key>blockTriangle-2.stypo</key>\n      <string>u1FB6C.stypo</string>\n      <key>blockTriangle-3</key>\n      <string>u1FB6E</string>\n      <key>blockTriangle-3.stypo</key>\n      <string>u1FB6E.stypo</string>\n      <key>blockTriangle-4</key>\n      <string>u1FB6F</string>\n      <key>blockTriangle-4.stypo</key>\n      <string>u1FB6F.stypo</string>\n      <key>blockTriangle-14</key>\n      <string>u1FB9A</string>\n      <key>blockTriangle-14.stypo</key>\n      <string>u1FB9A.stypo</string>\n      <key>blockTriangle-23</key>\n      <string>u1FB9B</string>\n      <key>blockTriangle-23.stypo</key>\n      <string>u1FB9B.stypo</string>\n      <key>blockTriangle-123</key>\n      <string>u1FB6B</string>\n      <key>blockTriangle-123.stypo</key>\n      <string>u1FB6B.stypo</string>\n      <key>blockTriangle-124</key>\n      <string>u1FB6A</string>\n      <key>blockTriangle-124.stypo</key>\n      <string>u1FB6A.stypo</string>\n      <key>blockTriangle-134</key>\n      <string>u1FB68</string>\n      <key>blockTriangle-134.stypo</key>\n      <string>u1FB68.stypo</string>\n      <key>blockTriangle-234</key>\n      <string>u1FB69</string>\n      <key>blockTriangle-234.stypo</key>\n      <string>u1FB69.stypo</string>\n      <key>blockCircle-1</key>\n      <string>u1FBEF</string>\n      <key>blockCircle-1.stypo</key>\n      <string>u1FBEF.stypo</string>\n      <key>blockCircle-2</key>\n      <string>u1FBEC</string>\n      <key>blockCircle-2.stypo</key>\n      <string>u1FBEC.stypo</string>\n      <key>blockCircle-3</key>\n      <string>u1FBED</string>\n      <key>blockCircle-3.stypo</key>\n      <string>u1FBED.stypo</string>\n      <key>blockCircle-4</key>\n      <string>u1FBEE</string>\n      <key>blockCircle-4.stypo</key>\n      <string>u1FBEE.stypo</string>\n      <key>blockCircle-UC</key>\n      <string>u1FBE8</string>\n      <key>blockCircle-UC.stypo</key>\n      <string>u1FBE8.stypo</string>\n      <key>blockCircle-LC</key>\n      <string>u1FBEA</string>\n      <key>blockCircle-LC.stypo</key>\n      <string>u1FBEA.stypo</string>\n      <key>blockCircle-ML</key>\n      <string>u1FBEB</string>\n      <key>blockCircle-ML.stypo</key>\n      <string>u1FBEB.stypo</string>\n      <key>blockCircle-MR</key>\n      <string>u1FBE9</string>\n      <key>blockCircle-MR.stypo</key>\n      <string>u1FBE9.stypo</string>\n      <key>blockSextant-1</key>\n      <string>u1FB00</string>\n      <key>blockSextant-1.stypo</key>\n      <string>u1FB00.stypo</string>\n      <key>blockSextant-2</key>\n      <string>u1FB01</string>\n      <key>blockSextant-2.stypo</key>\n      <string>u1FB01.stypo</string>\n      <key>blockSextant-12</key>\n      <string>u1FB02</string>\n      <key>blockSextant-12.stypo</key>\n      <string>u1FB02.stypo</string>\n      <key>blockSextant-3</key>\n      <string>u1FB03</string>\n      <key>blockSextant-3.stypo</key>\n      <string>u1FB03.stypo</string>\n      <key>blockSextant-13</key>\n      <string>u1FB04</string>\n      <key>blockSextant-13.stypo</key>\n      <string>u1FB04.stypo</string>\n      <key>blockSextant-23</key>\n      <string>u1FB05</string>\n      <key>blockSextant-23.stypo</key>\n      <string>u1FB05.stypo</string>\n      <key>blockSextant-123</key>\n      <string>u1FB06</string>\n      <key>blockSextant-123.stypo</key>\n      <string>u1FB06.stypo</string>\n      <key>blockSextant-4</key>\n      <string>u1FB07</string>\n      <key>blockSextant-4.stypo</key>\n      <string>u1FB07.stypo</string>\n      <key>blockSextant-14</key>\n      <string>u1FB08</string>\n      <key>blockSextant-14.stypo</key>\n      <string>u1FB08.stypo</string>\n      <key>blockSextant-24</key>\n      <string>u1FB09</string>\n      <key>blockSextant-24.stypo</key>\n      <string>u1FB09.stypo</string>\n      <key>blockSextant-124</key>\n      <string>u1FB0A</string>\n      <key>blockSextant-124.stypo</key>\n      <string>u1FB0A.stypo</string>\n      <key>blockSextant-34</key>\n      <string>u1FB0B</string>\n      <key>blockSextant-34.stypo</key>\n      <string>u1FB0B.stypo</string>\n      <key>blockSextant-134</key>\n      <string>u1FB0C</string>\n      <key>blockSextant-134.stypo</key>\n      <string>u1FB0C.stypo</string>\n      <key>blockSextant-234</key>\n      <string>u1FB0D</string>\n      <key>blockSextant-234.stypo</key>\n      <string>u1FB0D.stypo</string>\n      <key>blockSextant-1234</key>\n      <string>u1FB0E</string>\n      <key>blockSextant-1234.stypo</key>\n      <string>u1FB0E.stypo</string>\n      <key>blockSextant-5</key>\n      <string>u1FB0F</string>\n      <key>blockSextant-5.stypo</key>\n      <string>u1FB0F.stypo</string>\n      <key>blockSextant-15</key>\n      <string>u1FB10</string>\n      <key>blockSextant-15.stypo</key>\n      <string>u1FB10.stypo</string>\n      <key>blockSextant-25</key>\n      <string>u1FB11</string>\n      <key>blockSextant-25.stypo</key>\n      <string>u1FB11.stypo</string>\n      <key>blockSextant-125</key>\n      <string>u1FB12</string>\n      <key>blockSextant-125.stypo</key>\n      <string>u1FB12.stypo</string>\n      <key>blockSextant-35</key>\n      <string>u1FB13</string>\n      <key>blockSextant-35.stypo</key>\n      <string>u1FB13.stypo</string>\n      <key>blockSextant-235</key>\n      <string>u1FB14</string>\n      <key>blockSextant-235.stypo</key>\n      <string>u1FB14.stypo</string>\n      <key>blockSextant-1235</key>\n      <string>u1FB15</string>\n      <key>blockSextant-1235.stypo</key>\n      <string>u1FB15.stypo</string>\n      <key>blockSextant-45</key>\n      <string>u1FB16</string>\n      <key>blockSextant-45.stypo</key>\n      <string>u1FB16.stypo</string>\n      <key>blockSextant-145</key>\n      <string>u1FB17</string>\n      <key>blockSextant-145.stypo</key>\n      <string>u1FB17.stypo</string>\n      <key>blockSextant-245</key>\n      <string>u1FB18</string>\n      <key>blockSextant-245.stypo</key>\n      <string>u1FB18.stypo</string>\n      <key>blockSextant-1245</key>\n      <string>u1FB19</string>\n      <key>blockSextant-1245.stypo</key>\n      <string>u1FB19.stypo</string>\n      <key>blockSextant-345</key>\n      <string>u1FB1A</string>\n      <key>blockSextant-345.stypo</key>\n      <string>u1FB1A.stypo</string>\n      <key>blockSextant-1345</key>\n      <string>u1FB1B</string>\n      <key>blockSextant-1345.stypo</key>\n      <string>u1FB1B.stypo</string>\n      <key>blockSextant-2345</key>\n      <string>u1FB1C</string>\n      <key>blockSextant-2345.stypo</key>\n      <string>u1FB1C.stypo</string>\n      <key>blockSextant-12345</key>\n      <string>u1FB1D</string>\n      <key>blockSextant-12345.stypo</key>\n      <string>u1FB1D.stypo</string>\n      <key>blockSextant-6</key>\n      <string>u1FB1E</string>\n      <key>blockSextant-6.stypo</key>\n      <string>u1FB1E.stypo</string>\n      <key>blockSextant-16</key>\n      <string>u1FB1F</string>\n      <key>blockSextant-16.stypo</key>\n      <string>u1FB1F.stypo</string>\n      <key>blockSextant-26</key>\n      <string>u1FB20</string>\n      <key>blockSextant-26.stypo</key>\n      <string>u1FB20.stypo</string>\n      <key>blockSextant-126</key>\n      <string>u1FB21</string>\n      <key>blockSextant-126.stypo</key>\n      <string>u1FB21.stypo</string>\n      <key>blockSextant-36</key>\n      <string>u1FB22</string>\n      <key>blockSextant-36.stypo</key>\n      <string>u1FB22.stypo</string>\n      <key>blockSextant-136</key>\n      <string>u1FB23</string>\n      <key>blockSextant-136.stypo</key>\n      <string>u1FB23.stypo</string>\n      <key>blockSextant-236</key>\n      <string>u1FB24</string>\n      <key>blockSextant-236.stypo</key>\n      <string>u1FB24.stypo</string>\n      <key>blockSextant-1236</key>\n      <string>u1FB25</string>\n      <key>blockSextant-1236.stypo</key>\n      <string>u1FB25.stypo</string>\n      <key>blockSextant-46</key>\n      <string>u1FB26</string>\n      <key>blockSextant-46.stypo</key>\n      <string>u1FB26.stypo</string>\n      <key>blockSextant-146</key>\n      <string>u1FB27</string>\n      <key>blockSextant-146.stypo</key>\n      <string>u1FB27.stypo</string>\n      <key>blockSextant-1246</key>\n      <string>u1FB28</string>\n      <key>blockSextant-1246.stypo</key>\n      <string>u1FB28.stypo</string>\n      <key>blockSextant-346</key>\n      <string>u1FB29</string>\n      <key>blockSextant-346.stypo</key>\n      <string>u1FB29.stypo</string>\n      <key>blockSextant-1346</key>\n      <string>u1FB2A</string>\n      <key>blockSextant-1346.stypo</key>\n      <string>u1FB2A.stypo</string>\n      <key>blockSextant-2346</key>\n      <string>u1FB2B</string>\n      <key>blockSextant-2346.stypo</key>\n      <string>u1FB2B.stypo</string>\n      <key>blockSextant-12346</key>\n      <string>u1FB2C</string>\n      <key>blockSextant-12346.stypo</key>\n      <string>u1FB2C.stypo</string>\n      <key>blockSextant-56</key>\n      <string>u1FB2D</string>\n      <key>blockSextant-56.stypo</key>\n      <string>u1FB2D.stypo</string>\n      <key>blockSextant-156</key>\n      <string>u1FB2E</string>\n      <key>blockSextant-156.stypo</key>\n      <string>u1FB2E.stypo</string>\n      <key>blockSextant-256</key>\n      <string>u1FB2F</string>\n      <key>blockSextant-256.stypo</key>\n      <string>u1FB2F.stypo</string>\n      <key>blockSextant-1256</key>\n      <string>u1FB30</string>\n      <key>blockSextant-1256.stypo</key>\n      <string>u1FB30.stypo</string>\n      <key>blockSextant-356</key>\n      <string>u1FB31</string>\n      <key>blockSextant-356.stypo</key>\n      <string>u1FB31.stypo</string>\n      <key>blockSextant-1356</key>\n      <string>u1FB32</string>\n      <key>blockSextant-1356.stypo</key>\n      <string>u1FB32.stypo</string>\n      <key>blockSextant-2356</key>\n      <string>u1FB33</string>\n      <key>blockSextant-2356.stypo</key>\n      <string>u1FB33.stypo</string>\n      <key>blockSextant-12356</key>\n      <string>u1FB34</string>\n      <key>blockSextant-12356.stypo</key>\n      <string>u1FB34.stypo</string>\n      <key>blockSextant-456</key>\n      <string>u1FB35</string>\n      <key>blockSextant-456.stypo</key>\n      <string>u1FB35.stypo</string>\n      <key>blockSextant-1456</key>\n      <string>u1FB36</string>\n      <key>blockSextant-1456.stypo</key>\n      <string>u1FB36.stypo</string>\n      <key>blockSextant-2456</key>\n      <string>u1FB37</string>\n      <key>blockSextant-2456.stypo</key>\n      <string>u1FB37.stypo</string>\n      <key>blockSextant-12456</key>\n      <string>u1FB38</string>\n      <key>blockSextant-12456.stypo</key>\n      <string>u1FB38.stypo</string>\n      <key>blockSextant-3456</key>\n      <string>u1FB39</string>\n      <key>blockSextant-3456.stypo</key>\n      <string>u1FB39.stypo</string>\n      <key>blockSextant-13456</key>\n      <string>u1FB3A</string>\n      <key>blockSextant-13456.stypo</key>\n      <string>u1FB3A.stypo</string>\n      <key>blockSextant-23456</key>\n      <string>u1FB3B</string>\n      <key>blockSextant-23456.stypo</key>\n      <string>u1FB3B.stypo</string>\n      <key>blockDiagonal-1FB3C</key>\n      <string>u1FB3C</string>\n      <key>blockDiagonal-1FB3C.stypo</key>\n      <string>u1FB3C.stypo</string>\n      <key>blockDiagonal-1FB3D</key>\n      <string>u1FB3D</string>\n      <key>blockDiagonal-1FB3D.stypo</key>\n      <string>u1FB3D.stypo</string>\n      <key>blockDiagonal-1FB3E</key>\n      <string>u1FB3E</string>\n      <key>blockDiagonal-1FB3E.stypo</key>\n      <string>u1FB3E.stypo</string>\n      <key>blockDiagonal-1FB3F</key>\n      <string>u1FB3F</string>\n      <key>blockDiagonal-1FB3F.stypo</key>\n      <string>u1FB3F.stypo</string>\n      <key>blockDiagonal-1FB40</key>\n      <string>u1FB40</string>\n      <key>blockDiagonal-1FB40.stypo</key>\n      <string>u1FB40.stypo</string>\n      <key>blockDiagonal-1FB41</key>\n      <string>u1FB41</string>\n      <key>blockDiagonal-1FB41.stypo</key>\n      <string>u1FB41.stypo</string>\n      <key>blockDiagonal-1FB42</key>\n      <string>u1FB42</string>\n      <key>blockDiagonal-1FB42.stypo</key>\n      <string>u1FB42.stypo</string>\n      <key>blockDiagonal-1FB43</key>\n      <string>u1FB43</string>\n      <key>blockDiagonal-1FB43.stypo</key>\n      <string>u1FB43.stypo</string>\n      <key>blockDiagonal-1FB44</key>\n      <string>u1FB44</string>\n      <key>blockDiagonal-1FB44.stypo</key>\n      <string>u1FB44.stypo</string>\n      <key>blockDiagonal-1FB45</key>\n      <string>u1FB45</string>\n      <key>blockDiagonal-1FB45.stypo</key>\n      <string>u1FB45.stypo</string>\n      <key>blockDiagonal-1FB46</key>\n      <string>u1FB46</string>\n      <key>blockDiagonal-1FB46.stypo</key>\n      <string>u1FB46.stypo</string>\n      <key>blockDiagonal-1FB47</key>\n      <string>u1FB47</string>\n      <key>blockDiagonal-1FB47.stypo</key>\n      <string>u1FB47.stypo</string>\n      <key>blockDiagonal-1FB48</key>\n      <string>u1FB48</string>\n      <key>blockDiagonal-1FB48.stypo</key>\n      <string>u1FB48.stypo</string>\n      <key>blockDiagonal-1FB49</key>\n      <string>u1FB49</string>\n      <key>blockDiagonal-1FB49.stypo</key>\n      <string>u1FB49.stypo</string>\n      <key>blockDiagonal-1FB4A</key>\n      <string>u1FB4A</string>\n      <key>blockDiagonal-1FB4A.stypo</key>\n      <string>u1FB4A.stypo</string>\n      <key>blockDiagonal-1FB4B</key>\n      <string>u1FB4B</string>\n      <key>blockDiagonal-1FB4B.stypo</key>\n      <string>u1FB4B.stypo</string>\n      <key>blockDiagonal-1FB4C</key>\n      <string>u1FB4C</string>\n      <key>blockDiagonal-1FB4C.stypo</key>\n      <string>u1FB4C.stypo</string>\n      <key>blockDiagonal-1FB4D</key>\n      <string>u1FB4D</string>\n      <key>blockDiagonal-1FB4D.stypo</key>\n      <string>u1FB4D.stypo</string>\n      <key>blockDiagonal-1FB4E</key>\n      <string>u1FB4E</string>\n      <key>blockDiagonal-1FB4E.stypo</key>\n      <string>u1FB4E.stypo</string>\n      <key>blockDiagonal-1FB4F</key>\n      <string>u1FB4F</string>\n      <key>blockDiagonal-1FB4F.stypo</key>\n      <string>u1FB4F.stypo</string>\n      <key>blockDiagonal-1FB50</key>\n      <string>u1FB50</string>\n      <key>blockDiagonal-1FB50.stypo</key>\n      <string>u1FB50.stypo</string>\n      <key>blockDiagonal-1FB51</key>\n      <string>u1FB51</string>\n      <key>blockDiagonal-1FB51.stypo</key>\n      <string>u1FB51.stypo</string>\n      <key>blockDiagonal-1FB52</key>\n      <string>u1FB52</string>\n      <key>blockDiagonal-1FB52.stypo</key>\n      <string>u1FB52.stypo</string>\n      <key>blockDiagonal-1FB53</key>\n      <string>u1FB53</string>\n      <key>blockDiagonal-1FB53.stypo</key>\n      <string>u1FB53.stypo</string>\n      <key>blockDiagonal-1FB54</key>\n      <string>u1FB54</string>\n      <key>blockDiagonal-1FB54.stypo</key>\n      <string>u1FB54.stypo</string>\n      <key>blockDiagonal-1FB55</key>\n      <string>u1FB55</string>\n      <key>blockDiagonal-1FB55.stypo</key>\n      <string>u1FB55.stypo</string>\n      <key>blockDiagonal-1FB56</key>\n      <string>u1FB56</string>\n      <key>blockDiagonal-1FB56.stypo</key>\n      <string>u1FB56.stypo</string>\n      <key>blockDiagonal-1FB57</key>\n      <string>u1FB57</string>\n      <key>blockDiagonal-1FB57.stypo</key>\n      <string>u1FB57.stypo</string>\n      <key>blockDiagonal-1FB58</key>\n      <string>u1FB58</string>\n      <key>blockDiagonal-1FB58.stypo</key>\n      <string>u1FB58.stypo</string>\n      <key>blockDiagonal-1FB59</key>\n      <string>u1FB59</string>\n      <key>blockDiagonal-1FB59.stypo</key>\n      <string>u1FB59.stypo</string>\n      <key>blockDiagonal-1FB5A</key>\n      <string>u1FB5A</string>\n      <key>blockDiagonal-1FB5A.stypo</key>\n      <string>u1FB5A.stypo</string>\n      <key>blockDiagonal-1FB5B</key>\n      <string>u1FB5B</string>\n      <key>blockDiagonal-1FB5B.stypo</key>\n      <string>u1FB5B.stypo</string>\n      <key>blockDiagonal-1FB5C</key>\n      <string>u1FB5C</string>\n      <key>blockDiagonal-1FB5C.stypo</key>\n      <string>u1FB5C.stypo</string>\n      <key>blockDiagonal-1FB5D</key>\n      <string>u1FB5D</string>\n      <key>blockDiagonal-1FB5D.stypo</key>\n      <string>u1FB5D.stypo</string>\n      <key>blockDiagonal-1FB5E</key>\n      <string>u1FB5E</string>\n      <key>blockDiagonal-1FB5E.stypo</key>\n      <string>u1FB5E.stypo</string>\n      <key>blockDiagonal-1FB5F</key>\n      <string>u1FB5F</string>\n      <key>blockDiagonal-1FB5F.stypo</key>\n      <string>u1FB5F.stypo</string>\n      <key>blockDiagonal-1FB60</key>\n      <string>u1FB60</string>\n      <key>blockDiagonal-1FB60.stypo</key>\n      <string>u1FB60.stypo</string>\n      <key>blockDiagonal-1FB61</key>\n      <string>u1FB61</string>\n      <key>blockDiagonal-1FB61.stypo</key>\n      <string>u1FB61.stypo</string>\n      <key>blockDiagonal-1FB62</key>\n      <string>u1FB62</string>\n      <key>blockDiagonal-1FB62.stypo</key>\n      <string>u1FB62.stypo</string>\n      <key>blockDiagonal-1FB63</key>\n      <string>u1FB63</string>\n      <key>blockDiagonal-1FB63.stypo</key>\n      <string>u1FB63.stypo</string>\n      <key>blockDiagonal-1FB64</key>\n      <string>u1FB64</string>\n      <key>blockDiagonal-1FB64.stypo</key>\n      <string>u1FB64.stypo</string>\n      <key>blockDiagonal-1FB65</key>\n      <string>u1FB65</string>\n      <key>blockDiagonal-1FB65.stypo</key>\n      <string>u1FB65.stypo</string>\n      <key>blockDiagonal-1FB66</key>\n      <string>u1FB66</string>\n      <key>blockDiagonal-1FB66.stypo</key>\n      <string>u1FB66.stypo</string>\n      <key>blockDiagonal-1FB67</key>\n      <string>u1FB67</string>\n      <key>blockDiagonal-1FB67.stypo</key>\n      <string>u1FB67.stypo</string>\n      <key>blockOctant-1</key>\n      <string>u1CEA8</string>\n      <key>blockOctant-1.stypo</key>\n      <string>u1CEA8.stypo</string>\n      <key>blockOctant-2</key>\n      <string>u1CEAB</string>\n      <key>blockOctant-2.stypo</key>\n      <string>u1CEAB.stypo</string>\n      <key>blockOctant-12</key>\n      <string>u1FB82</string>\n      <key>blockOctant-12.stypo</key>\n      <string>u1FB82.stypo</string>\n      <key>blockOctant-3</key>\n      <string>u1CD00</string>\n      <key>blockOctant-3.stypo</key>\n      <string>u1CD00.stypo</string>\n      <key>blockOctant-23</key>\n      <string>u1CD01</string>\n      <key>blockOctant-23.stypo</key>\n      <string>u1CD01.stypo</string>\n      <key>blockOctant-123</key>\n      <string>u1CD02</string>\n      <key>blockOctant-123.stypo</key>\n      <string>u1CD02.stypo</string>\n      <key>blockOctant-4</key>\n      <string>u1CD03</string>\n      <key>blockOctant-4.stypo</key>\n      <string>u1CD03.stypo</string>\n      <key>blockOctant-14</key>\n      <string>u1CD04</string>\n      <key>blockOctant-14.stypo</key>\n      <string>u1CD04.stypo</string>\n      <key>blockOctant-124</key>\n      <string>u1CD05</string>\n      <key>blockOctant-124.stypo</key>\n      <string>u1CD05.stypo</string>\n      <key>blockOctant-34</key>\n      <string>u1CD06</string>\n      <key>blockOctant-34.stypo</key>\n      <string>u1CD06.stypo</string>\n      <key>blockOctant-134</key>\n      <string>u1CD07</string>\n      <key>blockOctant-134.stypo</key>\n      <string>u1CD07.stypo</string>\n      <key>blockOctant-234</key>\n      <string>u1CD08</string>\n      <key>blockOctant-234.stypo</key>\n      <string>u1CD08.stypo</string>\n      <key>blockOctant-5</key>\n      <string>u1CD09</string>\n      <key>blockOctant-5.stypo</key>\n      <string>u1CD09.stypo</string>\n      <key>blockOctant-15</key>\n      <string>u1CD0A</string>\n      <key>blockOctant-15.stypo</key>\n      <string>u1CD0A.stypo</string>\n      <key>blockOctant-25</key>\n      <string>u1CD0B</string>\n      <key>blockOctant-25.stypo</key>\n      <string>u1CD0B.stypo</string>\n      <key>blockOctant-125</key>\n      <string>u1CD0C</string>\n      <key>blockOctant-125.stypo</key>\n      <string>u1CD0C.stypo</string>\n      <key>blockOctant-135</key>\n      <string>u1CD0D</string>\n      <key>blockOctant-135.stypo</key>\n      <string>u1CD0D.stypo</string>\n      <key>blockOctant-235</key>\n      <string>u1CD0E</string>\n      <key>blockOctant-235.stypo</key>\n      <string>u1CD0E.stypo</string>\n      <key>blockOctant-1235</key>\n      <string>u1CD0F</string>\n      <key>blockOctant-1235.stypo</key>\n      <string>u1CD0F.stypo</string>\n      <key>blockOctant-45</key>\n      <string>u1CD10</string>\n      <key>blockOctant-45.stypo</key>\n      <string>u1CD10.stypo</string>\n      <key>blockOctant-145</key>\n      <string>u1CD11</string>\n      <key>blockOctant-145.stypo</key>\n      <string>u1CD11.stypo</string>\n      <key>blockOctant-245</key>\n      <string>u1CD12</string>\n      <key>blockOctant-245.stypo</key>\n      <string>u1CD12.stypo</string>\n      <key>blockOctant-1245</key>\n      <string>u1CD13</string>\n      <key>blockOctant-1245.stypo</key>\n      <string>u1CD13.stypo</string>\n      <key>blockOctant-345</key>\n      <string>u1CD14</string>\n      <key>blockOctant-345.stypo</key>\n      <string>u1CD14.stypo</string>\n      <key>blockOctant-1345</key>\n      <string>u1CD15</string>\n      <key>blockOctant-1345.stypo</key>\n      <string>u1CD15.stypo</string>\n      <key>blockOctant-2345</key>\n      <string>u1CD16</string>\n      <key>blockOctant-2345.stypo</key>\n      <string>u1CD16.stypo</string>\n      <key>blockOctant-12345</key>\n      <string>u1CD17</string>\n      <key>blockOctant-12345.stypo</key>\n      <string>u1CD17.stypo</string>\n      <key>blockOctant-6</key>\n      <string>u1CD18</string>\n      <key>blockOctant-6.stypo</key>\n      <string>u1CD18.stypo</string>\n      <key>blockOctant-16</key>\n      <string>u1CD19</string>\n      <key>blockOctant-16.stypo</key>\n      <string>u1CD19.stypo</string>\n      <key>blockOctant-26</key>\n      <string>u1CD1A</string>\n      <key>blockOctant-26.stypo</key>\n      <string>u1CD1A.stypo</string>\n      <key>blockOctant-126</key>\n      <string>u1CD1B</string>\n      <key>blockOctant-126.stypo</key>\n      <string>u1CD1B.stypo</string>\n      <key>blockOctant-36</key>\n      <string>u1CD1C</string>\n      <key>blockOctant-36.stypo</key>\n      <string>u1CD1C.stypo</string>\n      <key>blockOctant-136</key>\n      <string>u1CD1D</string>\n      <key>blockOctant-136.stypo</key>\n      <string>u1CD1D.stypo</string>\n      <key>blockOctant-236</key>\n      <string>u1CD1E</string>\n      <key>blockOctant-236.stypo</key>\n      <string>u1CD1E.stypo</string>\n      <key>blockOctant-1236</key>\n      <string>u1CD1F</string>\n      <key>blockOctant-1236.stypo</key>\n      <string>u1CD1F.stypo</string>\n      <key>blockOctant-146</key>\n      <string>u1CD20</string>\n      <key>blockOctant-146.stypo</key>\n      <string>u1CD20.stypo</string>\n      <key>blockOctant-246</key>\n      <string>u1CD21</string>\n      <key>blockOctant-246.stypo</key>\n      <string>u1CD21.stypo</string>\n      <key>blockOctant-1246</key>\n      <string>u1CD22</string>\n      <key>blockOctant-1246.stypo</key>\n      <string>u1CD22.stypo</string>\n      <key>blockOctant-346</key>\n      <string>u1CD23</string>\n      <key>blockOctant-346.stypo</key>\n      <string>u1CD23.stypo</string>\n      <key>blockOctant-1346</key>\n      <string>u1CD24</string>\n      <key>blockOctant-1346.stypo</key>\n      <string>u1CD24.stypo</string>\n      <key>blockOctant-2346</key>\n      <string>u1CD25</string>\n      <key>blockOctant-2346.stypo</key>\n      <string>u1CD25.stypo</string>\n      <key>blockOctant-12346</key>\n      <string>u1CD26</string>\n      <key>blockOctant-12346.stypo</key>\n      <string>u1CD26.stypo</string>\n      <key>blockOctant-56</key>\n      <string>u1CD27</string>\n      <key>blockOctant-56.stypo</key>\n      <string>u1CD27.stypo</string>\n      <key>blockOctant-156</key>\n      <string>u1CD28</string>\n      <key>blockOctant-156.stypo</key>\n      <string>u1CD28.stypo</string>\n      <key>blockOctant-256</key>\n      <string>u1CD29</string>\n      <key>blockOctant-256.stypo</key>\n      <string>u1CD29.stypo</string>\n      <key>blockOctant-1256</key>\n      <string>u1CD2A</string>\n      <key>blockOctant-1256.stypo</key>\n      <string>u1CD2A.stypo</string>\n      <key>blockOctant-356</key>\n      <string>u1CD2B</string>\n      <key>blockOctant-356.stypo</key>\n      <string>u1CD2B.stypo</string>\n      <key>blockOctant-1356</key>\n      <string>u1CD2C</string>\n      <key>blockOctant-1356.stypo</key>\n      <string>u1CD2C.stypo</string>\n      <key>blockOctant-2356</key>\n      <string>u1CD2D</string>\n      <key>blockOctant-2356.stypo</key>\n      <string>u1CD2D.stypo</string>\n      <key>blockOctant-12356</key>\n      <string>u1CD2E</string>\n      <key>blockOctant-12356.stypo</key>\n      <string>u1CD2E.stypo</string>\n      <key>blockOctant-456</key>\n      <string>u1CD2F</string>\n      <key>blockOctant-456.stypo</key>\n      <string>u1CD2F.stypo</string>\n      <key>blockOctant-1456</key>\n      <string>u1CD30</string>\n      <key>blockOctant-1456.stypo</key>\n      <string>u1CD30.stypo</string>\n      <key>blockOctant-2456</key>\n      <string>u1CD31</string>\n      <key>blockOctant-2456.stypo</key>\n      <string>u1CD31.stypo</string>\n      <key>blockOctant-12456</key>\n      <string>u1CD32</string>\n      <key>blockOctant-12456.stypo</key>\n      <string>u1CD32.stypo</string>\n      <key>blockOctant-3456</key>\n      <string>u1CD33</string>\n      <key>blockOctant-3456.stypo</key>\n      <string>u1CD33.stypo</string>\n      <key>blockOctant-13456</key>\n      <string>u1CD34</string>\n      <key>blockOctant-13456.stypo</key>\n      <string>u1CD34.stypo</string>\n      <key>blockOctant-23456</key>\n      <string>u1CD35</string>\n      <key>blockOctant-23456.stypo</key>\n      <string>u1CD35.stypo</string>\n      <key>blockOctant-123456</key>\n      <string>u1FB85</string>\n      <key>blockOctant-123456.stypo</key>\n      <string>u1FB85.stypo</string>\n      <key>blockOctant-7</key>\n      <string>u1CEA3</string>\n      <key>blockOctant-7.stypo</key>\n      <string>u1CEA3.stypo</string>\n      <key>blockOctant-17</key>\n      <string>u1CD36</string>\n      <key>blockOctant-17.stypo</key>\n      <string>u1CD36.stypo</string>\n      <key>blockOctant-27</key>\n      <string>u1CD37</string>\n      <key>blockOctant-27.stypo</key>\n      <string>u1CD37.stypo</string>\n      <key>blockOctant-127</key>\n      <string>u1CD38</string>\n      <key>blockOctant-127.stypo</key>\n      <string>u1CD38.stypo</string>\n      <key>blockOctant-37</key>\n      <string>u1CD39</string>\n      <key>blockOctant-37.stypo</key>\n      <string>u1CD39.stypo</string>\n      <key>blockOctant-137</key>\n      <string>u1CD3A</string>\n      <key>blockOctant-137.stypo</key>\n      <string>u1CD3A.stypo</string>\n      <key>blockOctant-237</key>\n      <string>u1CD3B</string>\n      <key>blockOctant-237.stypo</key>\n      <string>u1CD3B.stypo</string>\n      <key>blockOctant-1237</key>\n      <string>u1CD3C</string>\n      <key>blockOctant-1237.stypo</key>\n      <string>u1CD3C.stypo</string>\n      <key>blockOctant-47</key>\n      <string>u1CD3D</string>\n      <key>blockOctant-47.stypo</key>\n      <string>u1CD3D.stypo</string>\n      <key>blockOctant-147</key>\n      <string>u1CD3E</string>\n      <key>blockOctant-147.stypo</key>\n      <string>u1CD3E.stypo</string>\n      <key>blockOctant-247</key>\n      <string>u1CD3F</string>\n      <key>blockOctant-247.stypo</key>\n      <string>u1CD3F.stypo</string>\n      <key>blockOctant-1247</key>\n      <string>u1CD40</string>\n      <key>blockOctant-1247.stypo</key>\n      <string>u1CD40.stypo</string>\n      <key>blockOctant-347</key>\n      <string>u1CD41</string>\n      <key>blockOctant-347.stypo</key>\n      <string>u1CD41.stypo</string>\n      <key>blockOctant-1347</key>\n      <string>u1CD42</string>\n      <key>blockOctant-1347.stypo</key>\n      <string>u1CD42.stypo</string>\n      <key>blockOctant-2347</key>\n      <string>u1CD43</string>\n      <key>blockOctant-2347.stypo</key>\n      <string>u1CD43.stypo</string>\n      <key>blockOctant-12347</key>\n      <string>u1CD44</string>\n      <key>blockOctant-12347.stypo</key>\n      <string>u1CD44.stypo</string>\n      <key>blockOctant-157</key>\n      <string>u1CD45</string>\n      <key>blockOctant-157.stypo</key>\n      <string>u1CD45.stypo</string>\n      <key>blockOctant-257</key>\n      <string>u1CD46</string>\n      <key>blockOctant-257.stypo</key>\n      <string>u1CD46.stypo</string>\n      <key>blockOctant-1257</key>\n      <string>u1CD47</string>\n      <key>blockOctant-1257.stypo</key>\n      <string>u1CD47.stypo</string>\n      <key>blockOctant-357</key>\n      <string>u1CD48</string>\n      <key>blockOctant-357.stypo</key>\n      <string>u1CD48.stypo</string>\n      <key>blockOctant-2357</key>\n      <string>u1CD49</string>\n      <key>blockOctant-2357.stypo</key>\n      <string>u1CD49.stypo</string>\n      <key>blockOctant-12357</key>\n      <string>u1CD4A</string>\n      <key>blockOctant-12357.stypo</key>\n      <string>u1CD4A.stypo</string>\n      <key>blockOctant-457</key>\n      <string>u1CD4B</string>\n      <key>blockOctant-457.stypo</key>\n      <string>u1CD4B.stypo</string>\n      <key>blockOctant-1457</key>\n      <string>u1CD4C</string>\n      <key>blockOctant-1457.stypo</key>\n      <string>u1CD4C.stypo</string>\n      <key>blockOctant-12457</key>\n      <string>u1CD4D</string>\n      <key>blockOctant-12457.stypo</key>\n      <string>u1CD4D.stypo</string>\n      <key>blockOctant-3457</key>\n      <string>u1CD4E</string>\n      <key>blockOctant-3457.stypo</key>\n      <string>u1CD4E.stypo</string>\n      <key>blockOctant-13457</key>\n      <string>u1CD4F</string>\n      <key>blockOctant-13457.stypo</key>\n      <string>u1CD4F.stypo</string>\n      <key>blockOctant-23457</key>\n      <string>u1CD50</string>\n      <key>blockOctant-23457.stypo</key>\n      <string>u1CD50.stypo</string>\n      <key>blockOctant-67</key>\n      <string>u1CD51</string>\n      <key>blockOctant-67.stypo</key>\n      <string>u1CD51.stypo</string>\n      <key>blockOctant-167</key>\n      <string>u1CD52</string>\n      <key>blockOctant-167.stypo</key>\n      <string>u1CD52.stypo</string>\n      <key>blockOctant-267</key>\n      <string>u1CD53</string>\n      <key>blockOctant-267.stypo</key>\n      <string>u1CD53.stypo</string>\n      <key>blockOctant-1267</key>\n      <string>u1CD54</string>\n      <key>blockOctant-1267.stypo</key>\n      <string>u1CD54.stypo</string>\n      <key>blockOctant-367</key>\n      <string>u1CD55</string>\n      <key>blockOctant-367.stypo</key>\n      <string>u1CD55.stypo</string>\n      <key>blockOctant-1367</key>\n      <string>u1CD56</string>\n      <key>blockOctant-1367.stypo</key>\n      <string>u1CD56.stypo</string>\n      <key>blockOctant-2367</key>\n      <string>u1CD57</string>\n      <key>blockOctant-2367.stypo</key>\n      <string>u1CD57.stypo</string>\n      <key>blockOctant-12367</key>\n      <string>u1CD58</string>\n      <key>blockOctant-12367.stypo</key>\n      <string>u1CD58.stypo</string>\n      <key>blockOctant-467</key>\n      <string>u1CD59</string>\n      <key>blockOctant-467.stypo</key>\n      <string>u1CD59.stypo</string>\n      <key>blockOctant-1467</key>\n      <string>u1CD5A</string>\n      <key>blockOctant-1467.stypo</key>\n      <string>u1CD5A.stypo</string>\n      <key>blockOctant-2467</key>\n      <string>u1CD5B</string>\n      <key>blockOctant-2467.stypo</key>\n      <string>u1CD5B.stypo</string>\n      <key>blockOctant-12467</key>\n      <string>u1CD5C</string>\n      <key>blockOctant-12467.stypo</key>\n      <string>u1CD5C.stypo</string>\n      <key>blockOctant-3467</key>\n      <string>u1CD5D</string>\n      <key>blockOctant-3467.stypo</key>\n      <string>u1CD5D.stypo</string>\n      <key>blockOctant-13467</key>\n      <string>u1CD5E</string>\n      <key>blockOctant-13467.stypo</key>\n      <string>u1CD5E.stypo</string>\n      <key>blockOctant-23467</key>\n      <string>u1CD5F</string>\n      <key>blockOctant-23467.stypo</key>\n      <string>u1CD5F.stypo</string>\n      <key>blockOctant-123467</key>\n      <string>u1CD60</string>\n      <key>blockOctant-123467.stypo</key>\n      <string>u1CD60.stypo</string>\n      <key>blockOctant-567</key>\n      <string>u1CD61</string>\n      <key>blockOctant-567.stypo</key>\n      <string>u1CD61.stypo</string>\n      <key>blockOctant-1567</key>\n      <string>u1CD62</string>\n      <key>blockOctant-1567.stypo</key>\n      <string>u1CD62.stypo</string>\n      <key>blockOctant-2567</key>\n      <string>u1CD63</string>\n      <key>blockOctant-2567.stypo</key>\n      <string>u1CD63.stypo</string>\n      <key>blockOctant-12567</key>\n      <string>u1CD64</string>\n      <key>blockOctant-12567.stypo</key>\n      <string>u1CD64.stypo</string>\n      <key>blockOctant-3567</key>\n      <string>u1CD65</string>\n      <key>blockOctant-3567.stypo</key>\n      <string>u1CD65.stypo</string>\n      <key>blockOctant-13567</key>\n      <string>u1CD66</string>\n      <key>blockOctant-13567.stypo</key>\n      <string>u1CD66.stypo</string>\n      <key>blockOctant-23567</key>\n      <string>u1CD67</string>\n      <key>blockOctant-23567.stypo</key>\n      <string>u1CD67.stypo</string>\n      <key>blockOctant-123567</key>\n      <string>u1CD68</string>\n      <key>blockOctant-123567.stypo</key>\n      <string>u1CD68.stypo</string>\n      <key>blockOctant-4567</key>\n      <string>u1CD69</string>\n      <key>blockOctant-4567.stypo</key>\n      <string>u1CD69.stypo</string>\n      <key>blockOctant-14567</key>\n      <string>u1CD6A</string>\n      <key>blockOctant-14567.stypo</key>\n      <string>u1CD6A.stypo</string>\n      <key>blockOctant-24567</key>\n      <string>u1CD6B</string>\n      <key>blockOctant-24567.stypo</key>\n      <string>u1CD6B.stypo</string>\n      <key>blockOctant-124567</key>\n      <string>u1CD6C</string>\n      <key>blockOctant-124567.stypo</key>\n      <string>u1CD6C.stypo</string>\n      <key>blockOctant-34567</key>\n      <string>u1CD6D</string>\n      <key>blockOctant-34567.stypo</key>\n      <string>u1CD6D.stypo</string>\n      <key>blockOctant-134567</key>\n      <string>u1CD6E</string>\n      <key>blockOctant-134567.stypo</key>\n      <string>u1CD6E.stypo</string>\n      <key>blockOctant-234567</key>\n      <string>u1CD6F</string>\n      <key>blockOctant-234567.stypo</key>\n      <string>u1CD6F.stypo</string>\n      <key>blockOctant-1234567</key>\n      <string>u1CD70</string>\n      <key>blockOctant-1234567.stypo</key>\n      <string>u1CD70.stypo</string>\n      <key>blockOctant-8</key>\n      <string>u1CEA0</string>\n      <key>blockOctant-8.stypo</key>\n      <string>u1CEA0.stypo</string>\n      <key>blockOctant-18</key>\n      <string>u1CD71</string>\n      <key>blockOctant-18.stypo</key>\n      <string>u1CD71.stypo</string>\n      <key>blockOctant-28</key>\n      <string>u1CD72</string>\n      <key>blockOctant-28.stypo</key>\n      <string>u1CD72.stypo</string>\n      <key>blockOctant-128</key>\n      <string>u1CD73</string>\n      <key>blockOctant-128.stypo</key>\n      <string>u1CD73.stypo</string>\n      <key>blockOctant-38</key>\n      <string>u1CD74</string>\n      <key>blockOctant-38.stypo</key>\n      <string>u1CD74.stypo</string>\n      <key>blockOctant-138</key>\n      <string>u1CD75</string>\n      <key>blockOctant-138.stypo</key>\n      <string>u1CD75.stypo</string>\n      <key>blockOctant-238</key>\n      <string>u1CD76</string>\n      <key>blockOctant-238.stypo</key>\n      <string>u1CD76.stypo</string>\n      <key>blockOctant-1238</key>\n      <string>u1CD77</string>\n      <key>blockOctant-1238.stypo</key>\n      <string>u1CD77.stypo</string>\n      <key>blockOctant-48</key>\n      <string>u1CD78</string>\n      <key>blockOctant-48.stypo</key>\n      <string>u1CD78.stypo</string>\n      <key>blockOctant-148</key>\n      <string>u1CD79</string>\n      <key>blockOctant-148.stypo</key>\n      <string>u1CD79.stypo</string>\n      <key>blockOctant-248</key>\n      <string>u1CD7A</string>\n      <key>blockOctant-248.stypo</key>\n      <string>u1CD7A.stypo</string>\n      <key>blockOctant-1248</key>\n      <string>u1CD7B</string>\n      <key>blockOctant-1248.stypo</key>\n      <string>u1CD7B.stypo</string>\n      <key>blockOctant-348</key>\n      <string>u1CD7C</string>\n      <key>blockOctant-348.stypo</key>\n      <string>u1CD7C.stypo</string>\n      <key>blockOctant-1348</key>\n      <string>u1CD7D</string>\n      <key>blockOctant-1348.stypo</key>\n      <string>u1CD7D.stypo</string>\n      <key>blockOctant-2348</key>\n      <string>u1CD7E</string>\n      <key>blockOctant-2348.stypo</key>\n      <string>u1CD7E.stypo</string>\n      <key>blockOctant-12348</key>\n      <string>u1CD7F</string>\n      <key>blockOctant-12348.stypo</key>\n      <string>u1CD7F.stypo</string>\n      <key>blockOctant-58</key>\n      <string>u1CD80</string>\n      <key>blockOctant-58.stypo</key>\n      <string>u1CD80.stypo</string>\n      <key>blockOctant-158</key>\n      <string>u1CD81</string>\n      <key>blockOctant-158.stypo</key>\n      <string>u1CD81.stypo</string>\n      <key>blockOctant-258</key>\n      <string>u1CD82</string>\n      <key>blockOctant-258.stypo</key>\n      <string>u1CD82.stypo</string>\n      <key>blockOctant-1258</key>\n      <string>u1CD83</string>\n      <key>blockOctant-1258.stypo</key>\n      <string>u1CD83.stypo</string>\n      <key>blockOctant-358</key>\n      <string>u1CD84</string>\n      <key>blockOctant-358.stypo</key>\n      <string>u1CD84.stypo</string>\n      <key>blockOctant-1358</key>\n      <string>u1CD85</string>\n      <key>blockOctant-1358.stypo</key>\n      <string>u1CD85.stypo</string>\n      <key>blockOctant-2358</key>\n      <string>u1CD86</string>\n      <key>blockOctant-2358.stypo</key>\n      <string>u1CD86.stypo</string>\n      <key>blockOctant-12358</key>\n      <string>u1CD87</string>\n      <key>blockOctant-12358.stypo</key>\n      <string>u1CD87.stypo</string>\n      <key>blockOctant-458</key>\n      <string>u1CD88</string>\n      <key>blockOctant-458.stypo</key>\n      <string>u1CD88.stypo</string>\n      <key>blockOctant-1458</key>\n      <string>u1CD89</string>\n      <key>blockOctant-1458.stypo</key>\n      <string>u1CD89.stypo</string>\n      <key>blockOctant-2458</key>\n      <string>u1CD8A</string>\n      <key>blockOctant-2458.stypo</key>\n      <string>u1CD8A.stypo</string>\n      <key>blockOctant-12458</key>\n      <string>u1CD8B</string>\n      <key>blockOctant-12458.stypo</key>\n      <string>u1CD8B.stypo</string>\n      <key>blockOctant-3458</key>\n      <string>u1CD8C</string>\n      <key>blockOctant-3458.stypo</key>\n      <string>u1CD8C.stypo</string>\n      <key>blockOctant-13458</key>\n      <string>u1CD8D</string>\n      <key>blockOctant-13458.stypo</key>\n      <string>u1CD8D.stypo</string>\n      <key>blockOctant-23458</key>\n      <string>u1CD8E</string>\n      <key>blockOctant-23458.stypo</key>\n      <string>u1CD8E.stypo</string>\n      <key>blockOctant-123458</key>\n      <string>u1CD8F</string>\n      <key>blockOctant-123458.stypo</key>\n      <string>u1CD8F.stypo</string>\n      <key>blockOctant-168</key>\n      <string>u1CD90</string>\n      <key>blockOctant-168.stypo</key>\n      <string>u1CD90.stypo</string>\n      <key>blockOctant-268</key>\n      <string>u1CD91</string>\n      <key>blockOctant-268.stypo</key>\n      <string>u1CD91.stypo</string>\n      <key>blockOctant-1268</key>\n      <string>u1CD92</string>\n      <key>blockOctant-1268.stypo</key>\n      <string>u1CD92.stypo</string>\n      <key>blockOctant-368</key>\n      <string>u1CD93</string>\n      <key>blockOctant-368.stypo</key>\n      <string>u1CD93.stypo</string>\n      <key>blockOctant-2368</key>\n      <string>u1CD94</string>\n      <key>blockOctant-2368.stypo</key>\n      <string>u1CD94.stypo</string>\n      <key>blockOctant-12368</key>\n      <string>u1CD95</string>\n      <key>blockOctant-12368.stypo</key>\n      <string>u1CD95.stypo</string>\n      <key>blockOctant-468</key>\n      <string>u1CD96</string>\n      <key>blockOctant-468.stypo</key>\n      <string>u1CD96.stypo</string>\n      <key>blockOctant-1468</key>\n      <string>u1CD97</string>\n      <key>blockOctant-1468.stypo</key>\n      <string>u1CD97.stypo</string>\n      <key>blockOctant-12468</key>\n      <string>u1CD98</string>\n      <key>blockOctant-12468.stypo</key>\n      <string>u1CD98.stypo</string>\n      <key>blockOctant-3468</key>\n      <string>u1CD99</string>\n      <key>blockOctant-3468.stypo</key>\n      <string>u1CD99.stypo</string>\n      <key>blockOctant-13468</key>\n      <string>u1CD9A</string>\n      <key>blockOctant-13468.stypo</key>\n      <string>u1CD9A.stypo</string>\n      <key>blockOctant-23468</key>\n      <string>u1CD9B</string>\n      <key>blockOctant-23468.stypo</key>\n      <string>u1CD9B.stypo</string>\n      <key>blockOctant-568</key>\n      <string>u1CD9C</string>\n      <key>blockOctant-568.stypo</key>\n      <string>u1CD9C.stypo</string>\n      <key>blockOctant-1568</key>\n      <string>u1CD9D</string>\n      <key>blockOctant-1568.stypo</key>\n      <string>u1CD9D.stypo</string>\n      <key>blockOctant-2568</key>\n      <string>u1CD9E</string>\n      <key>blockOctant-2568.stypo</key>\n      <string>u1CD9E.stypo</string>\n      <key>blockOctant-12568</key>\n      <string>u1CD9F</string>\n      <key>blockOctant-12568.stypo</key>\n      <string>u1CD9F.stypo</string>\n      <key>blockOctant-3568</key>\n      <string>u1CDA0</string>\n      <key>blockOctant-3568.stypo</key>\n      <string>u1CDA0.stypo</string>\n      <key>blockOctant-13568</key>\n      <string>u1CDA1</string>\n      <key>blockOctant-13568.stypo</key>\n      <string>u1CDA1.stypo</string>\n      <key>blockOctant-23568</key>\n      <string>u1CDA2</string>\n      <key>blockOctant-23568.stypo</key>\n      <string>u1CDA2.stypo</string>\n      <key>blockOctant-123568</key>\n      <string>u1CDA3</string>\n      <key>blockOctant-123568.stypo</key>\n      <string>u1CDA3.stypo</string>\n      <key>blockOctant-4568</key>\n      <string>u1CDA4</string>\n      <key>blockOctant-4568.stypo</key>\n      <string>u1CDA4.stypo</string>\n      <key>blockOctant-14568</key>\n      <string>u1CDA5</string>\n      <key>blockOctant-14568.stypo</key>\n      <string>u1CDA5.stypo</string>\n      <key>blockOctant-24568</key>\n      <string>u1CDA6</string>\n      <key>blockOctant-24568.stypo</key>\n      <string>u1CDA6.stypo</string>\n      <key>blockOctant-124568</key>\n      <string>u1CDA7</string>\n      <key>blockOctant-124568.stypo</key>\n      <string>u1CDA7.stypo</string>\n      <key>blockOctant-34568</key>\n      <string>u1CDA8</string>\n      <key>blockOctant-34568.stypo</key>\n      <string>u1CDA8.stypo</string>\n      <key>blockOctant-134568</key>\n      <string>u1CDA9</string>\n      <key>blockOctant-134568.stypo</key>\n      <string>u1CDA9.stypo</string>\n      <key>blockOctant-234568</key>\n      <string>u1CDAA</string>\n      <key>blockOctant-234568.stypo</key>\n      <string>u1CDAA.stypo</string>\n      <key>blockOctant-1234568</key>\n      <string>u1CDAB</string>\n      <key>blockOctant-1234568.stypo</key>\n      <string>u1CDAB.stypo</string>\n      <key>blockOctant-178</key>\n      <string>u1CDAC</string>\n      <key>blockOctant-178.stypo</key>\n      <string>u1CDAC.stypo</string>\n      <key>blockOctant-278</key>\n      <string>u1CDAD</string>\n      <key>blockOctant-278.stypo</key>\n      <string>u1CDAD.stypo</string>\n      <key>blockOctant-1278</key>\n      <string>u1CDAE</string>\n      <key>blockOctant-1278.stypo</key>\n      <string>u1CDAE.stypo</string>\n      <key>blockOctant-378</key>\n      <string>u1CDAF</string>\n      <key>blockOctant-378.stypo</key>\n      <string>u1CDAF.stypo</string>\n      <key>blockOctant-1378</key>\n      <string>u1CDB0</string>\n      <key>blockOctant-1378.stypo</key>\n      <string>u1CDB0.stypo</string>\n      <key>blockOctant-2378</key>\n      <string>u1CDB1</string>\n      <key>blockOctant-2378.stypo</key>\n      <string>u1CDB1.stypo</string>\n      <key>blockOctant-12378</key>\n      <string>u1CDB2</string>\n      <key>blockOctant-12378.stypo</key>\n      <string>u1CDB2.stypo</string>\n      <key>blockOctant-478</key>\n      <string>u1CDB3</string>\n      <key>blockOctant-478.stypo</key>\n      <string>u1CDB3.stypo</string>\n      <key>blockOctant-1478</key>\n      <string>u1CDB4</string>\n      <key>blockOctant-1478.stypo</key>\n      <string>u1CDB4.stypo</string>\n      <key>blockOctant-2478</key>\n      <string>u1CDB5</string>\n      <key>blockOctant-2478.stypo</key>\n      <string>u1CDB5.stypo</string>\n      <key>blockOctant-12478</key>\n      <string>u1CDB6</string>\n      <key>blockOctant-12478.stypo</key>\n      <string>u1CDB6.stypo</string>\n      <key>blockOctant-3478</key>\n      <string>u1CDB7</string>\n      <key>blockOctant-3478.stypo</key>\n      <string>u1CDB7.stypo</string>\n      <key>blockOctant-13478</key>\n      <string>u1CDB8</string>\n      <key>blockOctant-13478.stypo</key>\n      <string>u1CDB8.stypo</string>\n      <key>blockOctant-23478</key>\n      <string>u1CDB9</string>\n      <key>blockOctant-23478.stypo</key>\n      <string>u1CDB9.stypo</string>\n      <key>blockOctant-123478</key>\n      <string>u1CDBA</string>\n      <key>blockOctant-123478.stypo</key>\n      <string>u1CDBA.stypo</string>\n      <key>blockOctant-578</key>\n      <string>u1CDBB</string>\n      <key>blockOctant-578.stypo</key>\n      <string>u1CDBB.stypo</string>\n      <key>blockOctant-1578</key>\n      <string>u1CDBC</string>\n      <key>blockOctant-1578.stypo</key>\n      <string>u1CDBC.stypo</string>\n      <key>blockOctant-2578</key>\n      <string>u1CDBD</string>\n      <key>blockOctant-2578.stypo</key>\n      <string>u1CDBD.stypo</string>\n      <key>blockOctant-12578</key>\n      <string>u1CDBE</string>\n      <key>blockOctant-12578.stypo</key>\n      <string>u1CDBE.stypo</string>\n      <key>blockOctant-3578</key>\n      <string>u1CDBF</string>\n      <key>blockOctant-3578.stypo</key>\n      <string>u1CDBF.stypo</string>\n      <key>blockOctant-13578</key>\n      <string>u1CDC0</string>\n      <key>blockOctant-13578.stypo</key>\n      <string>u1CDC0.stypo</string>\n      <key>blockOctant-23578</key>\n      <string>u1CDC1</string>\n      <key>blockOctant-23578.stypo</key>\n      <string>u1CDC1.stypo</string>\n      <key>blockOctant-123578</key>\n      <string>u1CDC2</string>\n      <key>blockOctant-123578.stypo</key>\n      <string>u1CDC2.stypo</string>\n      <key>blockOctant-4578</key>\n      <string>u1CDC3</string>\n      <key>blockOctant-4578.stypo</key>\n      <string>u1CDC3.stypo</string>\n      <key>blockOctant-14578</key>\n      <string>u1CDC4</string>\n      <key>blockOctant-14578.stypo</key>\n      <string>u1CDC4.stypo</string>\n      <key>blockOctant-24578</key>\n      <string>u1CDC5</string>\n      <key>blockOctant-24578.stypo</key>\n      <string>u1CDC5.stypo</string>\n      <key>blockOctant-124578</key>\n      <string>u1CDC6</string>\n      <key>blockOctant-124578.stypo</key>\n      <string>u1CDC6.stypo</string>\n      <key>blockOctant-34578</key>\n      <string>u1CDC7</string>\n      <key>blockOctant-34578.stypo</key>\n      <string>u1CDC7.stypo</string>\n      <key>blockOctant-134578</key>\n      <string>u1CDC8</string>\n      <key>blockOctant-134578.stypo</key>\n      <string>u1CDC8.stypo</string>\n      <key>blockOctant-234578</key>\n      <string>u1CDC9</string>\n      <key>blockOctant-234578.stypo</key>\n      <string>u1CDC9.stypo</string>\n      <key>blockOctant-1234578</key>\n      <string>u1CDCA</string>\n      <key>blockOctant-1234578.stypo</key>\n      <string>u1CDCA.stypo</string>\n      <key>blockOctant-678</key>\n      <string>u1CDCB</string>\n      <key>blockOctant-678.stypo</key>\n      <string>u1CDCB.stypo</string>\n      <key>blockOctant-1678</key>\n      <string>u1CDCC</string>\n      <key>blockOctant-1678.stypo</key>\n      <string>u1CDCC.stypo</string>\n      <key>blockOctant-2678</key>\n      <string>u1CDCD</string>\n      <key>blockOctant-2678.stypo</key>\n      <string>u1CDCD.stypo</string>\n      <key>blockOctant-12678</key>\n      <string>u1CDCE</string>\n      <key>blockOctant-12678.stypo</key>\n      <string>u1CDCE.stypo</string>\n      <key>blockOctant-3678</key>\n      <string>u1CDCF</string>\n      <key>blockOctant-3678.stypo</key>\n      <string>u1CDCF.stypo</string>\n      <key>blockOctant-13678</key>\n      <string>u1CDD0</string>\n      <key>blockOctant-13678.stypo</key>\n      <string>u1CDD0.stypo</string>\n      <key>blockOctant-23678</key>\n      <string>u1CDD1</string>\n      <key>blockOctant-23678.stypo</key>\n      <string>u1CDD1.stypo</string>\n      <key>blockOctant-123678</key>\n      <string>u1CDD2</string>\n      <key>blockOctant-123678.stypo</key>\n      <string>u1CDD2.stypo</string>\n      <key>blockOctant-4678</key>\n      <string>u1CDD3</string>\n      <key>blockOctant-4678.stypo</key>\n      <string>u1CDD3.stypo</string>\n      <key>blockOctant-14678</key>\n      <string>u1CDD4</string>\n      <key>blockOctant-14678.stypo</key>\n      <string>u1CDD4.stypo</string>\n      <key>blockOctant-24678</key>\n      <string>u1CDD5</string>\n      <key>blockOctant-24678.stypo</key>\n      <string>u1CDD5.stypo</string>\n      <key>blockOctant-124678</key>\n      <string>u1CDD6</string>\n      <key>blockOctant-124678.stypo</key>\n      <string>u1CDD6.stypo</string>\n      <key>blockOctant-34678</key>\n      <string>u1CDD7</string>\n      <key>blockOctant-34678.stypo</key>\n      <string>u1CDD7.stypo</string>\n      <key>blockOctant-134678</key>\n      <string>u1CDD8</string>\n      <key>blockOctant-134678.stypo</key>\n      <string>u1CDD8.stypo</string>\n      <key>blockOctant-234678</key>\n      <string>u1CDD9</string>\n      <key>blockOctant-234678.stypo</key>\n      <string>u1CDD9.stypo</string>\n      <key>blockOctant-1234678</key>\n      <string>u1CDDA</string>\n      <key>blockOctant-1234678.stypo</key>\n      <string>u1CDDA.stypo</string>\n      <key>blockOctant-15678</key>\n      <string>u1CDDB</string>\n      <key>blockOctant-15678.stypo</key>\n      <string>u1CDDB.stypo</string>\n      <key>blockOctant-25678</key>\n      <string>u1CDDC</string>\n      <key>blockOctant-25678.stypo</key>\n      <string>u1CDDC.stypo</string>\n      <key>blockOctant-125678</key>\n      <string>u1CDDD</string>\n      <key>blockOctant-125678.stypo</key>\n      <string>u1CDDD.stypo</string>\n      <key>blockOctant-35678</key>\n      <string>u1CDDE</string>\n      <key>blockOctant-35678.stypo</key>\n      <string>u1CDDE.stypo</string>\n      <key>blockOctant-235678</key>\n      <string>u1CDDF</string>\n      <key>blockOctant-235678.stypo</key>\n      <string>u1CDDF.stypo</string>\n      <key>blockOctant-1235678</key>\n      <string>u1CDE0</string>\n      <key>blockOctant-1235678.stypo</key>\n      <string>u1CDE0.stypo</string>\n      <key>blockOctant-45678</key>\n      <string>u1CDE1</string>\n      <key>blockOctant-45678.stypo</key>\n      <string>u1CDE1.stypo</string>\n      <key>blockOctant-145678</key>\n      <string>u1CDE2</string>\n      <key>blockOctant-145678.stypo</key>\n      <string>u1CDE2.stypo</string>\n      <key>blockOctant-1245678</key>\n      <string>u1CDE3</string>\n      <key>blockOctant-1245678.stypo</key>\n      <string>u1CDE3.stypo</string>\n      <key>blockOctant-1345678</key>\n      <string>u1CDE4</string>\n      <key>blockOctant-1345678.stypo</key>\n      <string>u1CDE4.stypo</string>\n      <key>blockOctant-2345678</key>\n      <string>u1CDE5</string>\n      <key>blockOctant-2345678.stypo</key>\n      <string>u1CDE5.stypo</string>\n      <key>blockSedecimant-1</key>\n      <string>u1CE90</string>\n      <key>blockSedecimant-1.stypo</key>\n      <string>u1CE90.stypo</string>\n      <key>blockSedecimant-2</key>\n      <string>u1CE91</string>\n      <key>blockSedecimant-2.stypo</key>\n      <string>u1CE91.stypo</string>\n      <key>blockSedecimant-3</key>\n      <string>u1CE92</string>\n      <key>blockSedecimant-3.stypo</key>\n      <string>u1CE92.stypo</string>\n      <key>blockSedecimant-4</key>\n      <string>u1CE93</string>\n      <key>blockSedecimant-4.stypo</key>\n      <string>u1CE93.stypo</string>\n      <key>blockSedecimant-5</key>\n      <string>u1CE94</string>\n      <key>blockSedecimant-5.stypo</key>\n      <string>u1CE94.stypo</string>\n      <key>blockSedecimant-6</key>\n      <string>u1CE95</string>\n      <key>blockSedecimant-6.stypo</key>\n      <string>u1CE95.stypo</string>\n      <key>blockSedecimant-7</key>\n      <string>u1CE96</string>\n      <key>blockSedecimant-7.stypo</key>\n      <string>u1CE96.stypo</string>\n      <key>blockSedecimant-8</key>\n      <string>u1CE97</string>\n      <key>blockSedecimant-8.stypo</key>\n      <string>u1CE97.stypo</string>\n      <key>blockSedecimant-9</key>\n      <string>u1CE98</string>\n      <key>blockSedecimant-9.stypo</key>\n      <string>u1CE98.stypo</string>\n      <key>blockSedecimant-A</key>\n      <string>u1CE99</string>\n      <key>blockSedecimant-A.stypo</key>\n      <string>u1CE99.stypo</string>\n      <key>blockSedecimant-B</key>\n      <string>u1CE9A</string>\n      <key>blockSedecimant-B.stypo</key>\n      <string>u1CE9A.stypo</string>\n      <key>blockSedecimant-C</key>\n      <string>u1CE9B</string>\n      <key>blockSedecimant-C.stypo</key>\n      <string>u1CE9B.stypo</string>\n      <key>blockSedecimant-D</key>\n      <string>u1CE9C</string>\n      <key>blockSedecimant-D.stypo</key>\n      <string>u1CE9C.stypo</string>\n      <key>blockSedecimant-E</key>\n      <string>u1CE9D</string>\n      <key>blockSedecimant-E.stypo</key>\n      <string>u1CE9D.stypo</string>\n      <key>blockSedecimant-F</key>\n      <string>u1CE9E</string>\n      <key>blockSedecimant-F.stypo</key>\n      <string>u1CE9E.stypo</string>\n      <key>blockSedecimant-G</key>\n      <string>u1CE9F</string>\n      <key>blockSedecimant-G.stypo</key>\n      <string>u1CE9F.stypo</string>\n      <key>blockSedecimant-EFG</key>\n      <string>u1CEA1</string>\n      <key>blockSedecimant-EFG.stypo</key>\n      <string>u1CEA1.stypo</string>\n      <key>blockSedecimant-DEF</key>\n      <string>u1CEA2</string>\n      <key>blockSedecimant-DEF.stypo</key>\n      <string>u1CEA2.stypo</string>\n      <key>blockSedecimant-9D</key>\n      <string>u1CEA4</string>\n      <key>blockSedecimant-9D.stypo</key>\n      <string>u1CEA4.stypo</string>\n      <key>blockSedecimant-59D</key>\n      <string>u1CEA5</string>\n      <key>blockSedecimant-59D.stypo</key>\n      <string>u1CEA5.stypo</string>\n      <key>blockSedecimant-159</key>\n      <string>u1CEA6</string>\n      <key>blockSedecimant-159.stypo</key>\n      <string>u1CEA6.stypo</string>\n      <key>blockSedecimant-15</key>\n      <string>u1CEA7</string>\n      <key>blockSedecimant-15.stypo</key>\n      <string>u1CEA7.stypo</string>\n      <key>blockSedecimant-123</key>\n      <string>u1CEA9</string>\n      <key>blockSedecimant-123.stypo</key>\n      <string>u1CEA9.stypo</string>\n      <key>blockSedecimant-234</key>\n      <string>u1CEAA</string>\n      <key>blockSedecimant-234.stypo</key>\n      <string>u1CEAA.stypo</string>\n      <key>blockSedecimant-48</key>\n      <string>u1CEAC</string>\n      <key>blockSedecimant-48.stypo</key>\n      <string>u1CEAC.stypo</string>\n      <key>blockSedecimant-48C</key>\n      <string>u1CEAD</string>\n      <key>blockSedecimant-48C.stypo</key>\n      <string>u1CEAD.stypo</string>\n      <key>blockSedecimant-8CG</key>\n      <string>u1CEAE</string>\n      <key>blockSedecimant-8CG.stypo</key>\n      <string>u1CEAE.stypo</string>\n      <key>blockSedecimant-CG</key>\n      <string>u1CEAF</string>\n      <key>blockSedecimant-CG.stypo</key>\n      <string>u1CEAF.stypo</string>\n      <key>verticalOneEighthBlock-2</key>\n      <string>u1FB70</string>\n      <key>verticalOneEighthBlock-2.stypo</key>\n      <string>u1FB70.stypo</string>\n      <key>verticalOneEighthBlock-3</key>\n      <string>u1FB71</string>\n      <key>verticalOneEighthBlock-3.stypo</key>\n      <string>u1FB71.stypo</string>\n      <key>verticalOneEighthBlock-4</key>\n      <string>u1FB72</string>\n      <key>verticalOneEighthBlock-4.stypo</key>\n      <string>u1FB72.stypo</string>\n      <key>verticalOneEighthBlock-5</key>\n      <string>u1FB73</string>\n      <key>verticalOneEighthBlock-5.stypo</key>\n      <string>u1FB73.stypo</string>\n      <key>verticalOneEighthBlock-6</key>\n      <string>u1FB74</string>\n      <key>verticalOneEighthBlock-6.stypo</key>\n      <string>u1FB74.stypo</string>\n      <key>verticalOneEighthBlock-7</key>\n      <string>u1FB75</string>\n      <key>verticalOneEighthBlock-7.stypo</key>\n      <string>u1FB75.stypo</string>\n      <key>horizontalOneEightBlock-2</key>\n      <string>u1FB76</string>\n      <key>horizontalOneEightBlock-2.stypo</key>\n      <string>u1FB76.stypo</string>\n      <key>horizontalOneEightBlock-3</key>\n      <string>u1FB77</string>\n      <key>horizontalOneEightBlock-3.stypo</key>\n      <string>u1FB77.stypo</string>\n      <key>horizontalOneEightBlock-4</key>\n      <string>u1FB78</string>\n      <key>horizontalOneEightBlock-4.stypo</key>\n      <string>u1FB78.stypo</string>\n      <key>horizontalOneEightBlock-5</key>\n      <string>u1FB79</string>\n      <key>horizontalOneEightBlock-5.stypo</key>\n      <string>u1FB79.stypo</string>\n      <key>horizontalOneEightBlock-6</key>\n      <string>u1FB7A</string>\n      <key>horizontalOneEightBlock-6.stypo</key>\n      <string>u1FB7A.stypo</string>\n      <key>horizontalOneEightBlock-7</key>\n      <string>u1FB7B</string>\n      <key>horizontalOneEightBlock-7.stypo</key>\n      <string>u1FB7B.stypo</string>\n      <key>leftAndLowerOneEightBlock</key>\n      <string>u1FB7C</string>\n      <key>leftAndLowerOneEightBlock.stypo</key>\n      <string>u1FB7C.stypo</string>\n      <key>leftAndUpperOneEightBlock</key>\n      <string>u1FB7D</string>\n      <key>leftAndUpperOneEightBlock.stypo</key>\n      <string>u1FB7D.stypo</string>\n      <key>rightAndUpperOneEightBlock</key>\n      <string>u1FB7E</string>\n      <key>rightAndUpperOneEightBlock.stypo</key>\n      <string>u1FB7E.stypo</string>\n      <key>rightAndLowerOneEightBlock</key>\n      <string>u1FB7F</string>\n      <key>rightAndLowerOneEightBlock.stypo</key>\n      <string>u1FB7F.stypo</string>\n      <key>upperAndLowerOneEightBlock</key>\n      <string>u1FB80</string>\n      <key>upperAndLowerOneEightBlock.stypo</key>\n      <string>u1FB80.stypo</string>\n      <key>upperThreeEighthsBlock</key>\n      <string>u1FB83</string>\n      <key>upperThreeEighthsBlock.stypo</key>\n      <string>u1FB83.stypo</string>\n      <key>upperFiveEighthsBlock</key>\n      <string>u1FB84</string>\n      <key>upperFiveEighthsBlock.stypo</key>\n      <string>u1FB84.stypo</string>\n      <key>upperSevenEighthsBlock</key>\n      <string>u1FB86</string>\n      <key>upperSevenEighthsBlock.stypo</key>\n      <string>u1FB86.stypo</string>\n      <key>rightOneQuarterBlock</key>\n      <string>u1FB87</string>\n      <key>rightOneQuarterBlock.stypo</key>\n      <string>u1FB87.stypo</string>\n      <key>rightThreeEighthsBlock</key>\n      <string>u1FB88</string>\n      <key>rightThreeEighthsBlock.stypo</key>\n      <string>u1FB88.stypo</string>\n      <key>rightFiveEighthsBlock</key>\n      <string>u1FB89</string>\n      <key>rightFiveEighthsBlock.stypo</key>\n      <string>u1FB89.stypo</string>\n      <key>rightThreeQuartersBlock</key>\n      <string>u1FB8A</string>\n      <key>rightThreeQuartersBlock.stypo</key>\n      <string>u1FB8A.stypo</string>\n      <key>rightSevenEighthsBlock</key>\n      <string>u1FB8B</string>\n      <key>rightSevenEighthsBlock.stypo</key>\n      <string>u1FB8B.stypo</string>\n      <key>leftTwoThirdsBlock</key>\n      <string>u1FBCE</string>\n      <key>leftTwoThirdsBlock.stypo</key>\n      <string>u1FBCE.stypo</string>\n      <key>leftOneThirdBlock</key>\n      <string>u1FBCF</string>\n      <key>leftOneThirdBlock.stypo</key>\n      <string>u1FBCF.stypo</string>\n      <key>heavyHorizontalFill</key>\n      <string>u1FB97</string>\n      <key>heavyHorizontalFill.stypo</key>\n      <string>u1FB97.stypo</string>\n      <key>blockSeparatedQuadrant-1</key>\n      <string>u1CC21</string>\n      <key>blockSeparatedQuadrant-1.stypo</key>\n      <string>u1CC21.stypo</string>\n      <key>blockSeparatedQuadrant-2</key>\n      <string>u1CC22</string>\n      <key>blockSeparatedQuadrant-2.stypo</key>\n      <string>u1CC22.stypo</string>\n      <key>blockSeparatedQuadrant-12</key>\n      <string>u1CC23</string>\n      <key>blockSeparatedQuadrant-12.stypo</key>\n      <string>u1CC23.stypo</string>\n      <key>blockSeparatedQuadrant-3</key>\n      <string>u1CC24</string>\n      <key>blockSeparatedQuadrant-3.stypo</key>\n      <string>u1CC24.stypo</string>\n      <key>blockSeparatedQuadrant-13</key>\n      <string>u1CC25</string>\n      <key>blockSeparatedQuadrant-13.stypo</key>\n      <string>u1CC25.stypo</string>\n      <key>blockSeparatedQuadrant-23</key>\n      <string>u1CC26</string>\n      <key>blockSeparatedQuadrant-23.stypo</key>\n      <string>u1CC26.stypo</string>\n      <key>blockSeparatedQuadrant-123</key>\n      <string>u1CC27</string>\n      <key>blockSeparatedQuadrant-123.stypo</key>\n      <string>u1CC27.stypo</string>\n      <key>blockSeparatedQuadrant-4</key>\n      <string>u1CC28</string>\n      <key>blockSeparatedQuadrant-4.stypo</key>\n      <string>u1CC28.stypo</string>\n      <key>blockSeparatedQuadrant-14</key>\n      <string>u1CC29</string>\n      <key>blockSeparatedQuadrant-14.stypo</key>\n      <string>u1CC29.stypo</string>\n      <key>blockSeparatedQuadrant-24</key>\n      <string>u1CC2A</string>\n      <key>blockSeparatedQuadrant-24.stypo</key>\n      <string>u1CC2A.stypo</string>\n      <key>blockSeparatedQuadrant-124</key>\n      <string>u1CC2B</string>\n      <key>blockSeparatedQuadrant-124.stypo</key>\n      <string>u1CC2B.stypo</string>\n      <key>blockSeparatedQuadrant-34</key>\n      <string>u1CC2C</string>\n      <key>blockSeparatedQuadrant-34.stypo</key>\n      <string>u1CC2C.stypo</string>\n      <key>blockSeparatedQuadrant-134</key>\n      <string>u1CC2D</string>\n      <key>blockSeparatedQuadrant-134.stypo</key>\n      <string>u1CC2D.stypo</string>\n      <key>blockSeparatedQuadrant-234</key>\n      <string>u1CC2E</string>\n      <key>blockSeparatedQuadrant-234.stypo</key>\n      <string>u1CC2E.stypo</string>\n      <key>blockSeparatedQuadrant-1234</key>\n      <string>u1CC2F</string>\n      <key>blockSeparatedQuadrant-1234.stypo</key>\n      <string>u1CC2F.stypo</string>\n      <key>blockSeparatedSextant-1</key>\n      <string>u1CE51</string>\n      <key>blockSeparatedSextant-1.stypo</key>\n      <string>u1CE51.stypo</string>\n      <key>blockSeparatedSextant-2</key>\n      <string>u1CE52</string>\n      <key>blockSeparatedSextant-2.stypo</key>\n      <string>u1CE52.stypo</string>\n      <key>blockSeparatedSextant-12</key>\n      <string>u1CE53</string>\n      <key>blockSeparatedSextant-12.stypo</key>\n      <string>u1CE53.stypo</string>\n      <key>blockSeparatedSextant-3</key>\n      <string>u1CE54</string>\n      <key>blockSeparatedSextant-3.stypo</key>\n      <string>u1CE54.stypo</string>\n      <key>blockSeparatedSextant-13</key>\n      <string>u1CE55</string>\n      <key>blockSeparatedSextant-13.stypo</key>\n      <string>u1CE55.stypo</string>\n      <key>blockSeparatedSextant-23</key>\n      <string>u1CE56</string>\n      <key>blockSeparatedSextant-23.stypo</key>\n      <string>u1CE56.stypo</string>\n      <key>blockSeparatedSextant-123</key>\n      <string>u1CE57</string>\n      <key>blockSeparatedSextant-123.stypo</key>\n      <string>u1CE57.stypo</string>\n      <key>blockSeparatedSextant-4</key>\n      <string>u1CE58</string>\n      <key>blockSeparatedSextant-4.stypo</key>\n      <string>u1CE58.stypo</string>\n      <key>blockSeparatedSextant-14</key>\n      <string>u1CE59</string>\n      <key>blockSeparatedSextant-14.stypo</key>\n      <string>u1CE59.stypo</string>\n      <key>blockSeparatedSextant-24</key>\n      <string>u1CE5A</string>\n      <key>blockSeparatedSextant-24.stypo</key>\n      <string>u1CE5A.stypo</string>\n      <key>blockSeparatedSextant-124</key>\n      <string>u1CE5B</string>\n      <key>blockSeparatedSextant-124.stypo</key>\n      <string>u1CE5B.stypo</string>\n      <key>blockSeparatedSextant-34</key>\n      <string>u1CE5C</string>\n      <key>blockSeparatedSextant-34.stypo</key>\n      <string>u1CE5C.stypo</string>\n      <key>blockSeparatedSextant-134</key>\n      <string>u1CE5D</string>\n      <key>blockSeparatedSextant-134.stypo</key>\n      <string>u1CE5D.stypo</string>\n      <key>blockSeparatedSextant-234</key>\n      <string>u1CE5E</string>\n      <key>blockSeparatedSextant-234.stypo</key>\n      <string>u1CE5E.stypo</string>\n      <key>blockSeparatedSextant-1234</key>\n      <string>u1CE5F</string>\n      <key>blockSeparatedSextant-1234.stypo</key>\n      <string>u1CE5F.stypo</string>\n      <key>blockSeparatedSextant-5</key>\n      <string>u1CE60</string>\n      <key>blockSeparatedSextant-5.stypo</key>\n      <string>u1CE60.stypo</string>\n      <key>blockSeparatedSextant-15</key>\n      <string>u1CE61</string>\n      <key>blockSeparatedSextant-15.stypo</key>\n      <string>u1CE61.stypo</string>\n      <key>blockSeparatedSextant-25</key>\n      <string>u1CE62</string>\n      <key>blockSeparatedSextant-25.stypo</key>\n      <string>u1CE62.stypo</string>\n      <key>blockSeparatedSextant-125</key>\n      <string>u1CE63</string>\n      <key>blockSeparatedSextant-125.stypo</key>\n      <string>u1CE63.stypo</string>\n      <key>blockSeparatedSextant-35</key>\n      <string>u1CE64</string>\n      <key>blockSeparatedSextant-35.stypo</key>\n      <string>u1CE64.stypo</string>\n      <key>blockSeparatedSextant-135</key>\n      <string>u1CE65</string>\n      <key>blockSeparatedSextant-135.stypo</key>\n      <string>u1CE65.stypo</string>\n      <key>blockSeparatedSextant-235</key>\n      <string>u1CE66</string>\n      <key>blockSeparatedSextant-235.stypo</key>\n      <string>u1CE66.stypo</string>\n      <key>blockSeparatedSextant-1235</key>\n      <string>u1CE67</string>\n      <key>blockSeparatedSextant-1235.stypo</key>\n      <string>u1CE67.stypo</string>\n      <key>blockSeparatedSextant-45</key>\n      <string>u1CE68</string>\n      <key>blockSeparatedSextant-45.stypo</key>\n      <string>u1CE68.stypo</string>\n      <key>blockSeparatedSextant-145</key>\n      <string>u1CE69</string>\n      <key>blockSeparatedSextant-145.stypo</key>\n      <string>u1CE69.stypo</string>\n      <key>blockSeparatedSextant-245</key>\n      <string>u1CE6A</string>\n      <key>blockSeparatedSextant-245.stypo</key>\n      <string>u1CE6A.stypo</string>\n      <key>blockSeparatedSextant-1245</key>\n      <string>u1CE6B</string>\n      <key>blockSeparatedSextant-1245.stypo</key>\n      <string>u1CE6B.stypo</string>\n      <key>blockSeparatedSextant-345</key>\n      <string>u1CE6C</string>\n      <key>blockSeparatedSextant-345.stypo</key>\n      <string>u1CE6C.stypo</string>\n      <key>blockSeparatedSextant-1345</key>\n      <string>u1CE6D</string>\n      <key>blockSeparatedSextant-1345.stypo</key>\n      <string>u1CE6D.stypo</string>\n      <key>blockSeparatedSextant-2345</key>\n      <string>u1CE6E</string>\n      <key>blockSeparatedSextant-2345.stypo</key>\n      <string>u1CE6E.stypo</string>\n      <key>blockSeparatedSextant-12345</key>\n      <string>u1CE6F</string>\n      <key>blockSeparatedSextant-12345.stypo</key>\n      <string>u1CE6F.stypo</string>\n      <key>blockSeparatedSextant-6</key>\n      <string>u1CE70</string>\n      <key>blockSeparatedSextant-6.stypo</key>\n      <string>u1CE70.stypo</string>\n      <key>blockSeparatedSextant-16</key>\n      <string>u1CE71</string>\n      <key>blockSeparatedSextant-16.stypo</key>\n      <string>u1CE71.stypo</string>\n      <key>blockSeparatedSextant-26</key>\n      <string>u1CE72</string>\n      <key>blockSeparatedSextant-26.stypo</key>\n      <string>u1CE72.stypo</string>\n      <key>blockSeparatedSextant-126</key>\n      <string>u1CE73</string>\n      <key>blockSeparatedSextant-126.stypo</key>\n      <string>u1CE73.stypo</string>\n      <key>blockSeparatedSextant-36</key>\n      <string>u1CE74</string>\n      <key>blockSeparatedSextant-36.stypo</key>\n      <string>u1CE74.stypo</string>\n      <key>blockSeparatedSextant-136</key>\n      <string>u1CE75</string>\n      <key>blockSeparatedSextant-136.stypo</key>\n      <string>u1CE75.stypo</string>\n      <key>blockSeparatedSextant-236</key>\n      <string>u1CE76</string>\n      <key>blockSeparatedSextant-236.stypo</key>\n      <string>u1CE76.stypo</string>\n      <key>blockSeparatedSextant-1236</key>\n      <string>u1CE77</string>\n      <key>blockSeparatedSextant-1236.stypo</key>\n      <string>u1CE77.stypo</string>\n      <key>blockSeparatedSextant-46</key>\n      <string>u1CE78</string>\n      <key>blockSeparatedSextant-46.stypo</key>\n      <string>u1CE78.stypo</string>\n      <key>blockSeparatedSextant-146</key>\n      <string>u1CE79</string>\n      <key>blockSeparatedSextant-146.stypo</key>\n      <string>u1CE79.stypo</string>\n      <key>blockSeparatedSextant-246</key>\n      <string>u1CE7A</string>\n      <key>blockSeparatedSextant-246.stypo</key>\n      <string>u1CE7A.stypo</string>\n      <key>blockSeparatedSextant-1246</key>\n      <string>u1CE7B</string>\n      <key>blockSeparatedSextant-1246.stypo</key>\n      <string>u1CE7B.stypo</string>\n      <key>blockSeparatedSextant-346</key>\n      <string>u1CE7C</string>\n      <key>blockSeparatedSextant-346.stypo</key>\n      <string>u1CE7C.stypo</string>\n      <key>blockSeparatedSextant-1346</key>\n      <string>u1CE7D</string>\n      <key>blockSeparatedSextant-1346.stypo</key>\n      <string>u1CE7D.stypo</string>\n      <key>blockSeparatedSextant-2346</key>\n      <string>u1CE7E</string>\n      <key>blockSeparatedSextant-2346.stypo</key>\n      <string>u1CE7E.stypo</string>\n      <key>blockSeparatedSextant-12346</key>\n      <string>u1CE7F</string>\n      <key>blockSeparatedSextant-12346.stypo</key>\n      <string>u1CE7F.stypo</string>\n      <key>blockSeparatedSextant-56</key>\n      <string>u1CE80</string>\n      <key>blockSeparatedSextant-56.stypo</key>\n      <string>u1CE80.stypo</string>\n      <key>blockSeparatedSextant-156</key>\n      <string>u1CE81</string>\n      <key>blockSeparatedSextant-156.stypo</key>\n      <string>u1CE81.stypo</string>\n      <key>blockSeparatedSextant-256</key>\n      <string>u1CE82</string>\n      <key>blockSeparatedSextant-256.stypo</key>\n      <string>u1CE82.stypo</string>\n      <key>blockSeparatedSextant-1256</key>\n      <string>u1CE83</string>\n      <key>blockSeparatedSextant-1256.stypo</key>\n      <string>u1CE83.stypo</string>\n      <key>blockSeparatedSextant-356</key>\n      <string>u1CE84</string>\n      <key>blockSeparatedSextant-356.stypo</key>\n      <string>u1CE84.stypo</string>\n      <key>blockSeparatedSextant-1356</key>\n      <string>u1CE85</string>\n      <key>blockSeparatedSextant-1356.stypo</key>\n      <string>u1CE85.stypo</string>\n      <key>blockSeparatedSextant-2356</key>\n      <string>u1CE86</string>\n      <key>blockSeparatedSextant-2356.stypo</key>\n      <string>u1CE86.stypo</string>\n      <key>blockSeparatedSextant-12356</key>\n      <string>u1CE87</string>\n      <key>blockSeparatedSextant-12356.stypo</key>\n      <string>u1CE87.stypo</string>\n      <key>blockSeparatedSextant-456</key>\n      <string>u1CE88</string>\n      <key>blockSeparatedSextant-456.stypo</key>\n      <string>u1CE88.stypo</string>\n      <key>blockSeparatedSextant-1456</key>\n      <string>u1CE89</string>\n      <key>blockSeparatedSextant-1456.stypo</key>\n      <string>u1CE89.stypo</string>\n      <key>blockSeparatedSextant-2456</key>\n      <string>u1CE8A</string>\n      <key>blockSeparatedSextant-2456.stypo</key>\n      <string>u1CE8A.stypo</string>\n      <key>blockSeparatedSextant-12456</key>\n      <string>u1CE8B</string>\n      <key>blockSeparatedSextant-12456.stypo</key>\n      <string>u1CE8B.stypo</string>\n      <key>blockSeparatedSextant-3456</key>\n      <string>u1CE8C</string>\n      <key>blockSeparatedSextant-3456.stypo</key>\n      <string>u1CE8C.stypo</string>\n      <key>blockSeparatedSextant-13456</key>\n      <string>u1CE8D</string>\n      <key>blockSeparatedSextant-13456.stypo</key>\n      <string>u1CE8D.stypo</string>\n      <key>blockSeparatedSextant-23456</key>\n      <string>u1CE8E</string>\n      <key>blockSeparatedSextant-23456.stypo</key>\n      <string>u1CE8E.stypo</string>\n      <key>blockSeparatedSextant-123456</key>\n      <string>u1CE8F</string>\n      <key>blockSeparatedSextant-123456.stypo</key>\n      <string>u1CE8F.stypo</string>\n      <key>segmentedDigit0</key>\n      <string>u1FBF0</string>\n      <key>segmentedDigit1</key>\n      <string>u1FBF1</string>\n      <key>segmentedDigit2</key>\n      <string>u1FBF2</string>\n      <key>segmentedDigit3</key>\n      <string>u1FBF3</string>\n      <key>segmentedDigit4</key>\n      <string>u1FBF4</string>\n      <key>segmentedDigit5</key>\n      <string>u1FBF5</string>\n      <key>segmentedDigit6</key>\n      <string>u1FBF6</string>\n      <key>segmentedDigit7</key>\n      <string>u1FBF7</string>\n      <key>segmentedDigit8</key>\n      <string>u1FBF8</string>\n      <key>segmentedDigit9</key>\n      <string>u1FBF9</string>\n      <key>largeType-1CE1A</key>\n      <string>u1CE1A</string>\n      <key>largeType-1CE1A.stypo</key>\n      <string>u1CE1A.stypo</string>\n      <key>largeType-1CE1B</key>\n      <string>u1CE1B</string>\n      <key>largeType-1CE1B.stypo</key>\n      <string>u1CE1B.stypo</string>\n      <key>largeType-1CE1C</key>\n      <string>u1CE1C</string>\n      <key>largeType-1CE1C.stypo</key>\n      <string>u1CE1C.stypo</string>\n      <key>largeType-1CE1D</key>\n      <string>u1CE1D</string>\n      <key>largeType-1CE1D.stypo</key>\n      <string>u1CE1D.stypo</string>\n      <key>largeType-1CE1E</key>\n      <string>u1CE1E</string>\n      <key>largeType-1CE1E.stypo</key>\n      <string>u1CE1E.stypo</string>\n      <key>largeType-1CE1F</key>\n      <string>u1CE1F</string>\n      <key>largeType-1CE1F.stypo</key>\n      <string>u1CE1F.stypo</string>\n      <key>largeType-1CE20</key>\n      <string>u1CE20</string>\n      <key>largeType-1CE20.stypo</key>\n      <string>u1CE20.stypo</string>\n      <key>largeType-1CE21</key>\n      <string>u1CE21</string>\n      <key>largeType-1CE21.stypo</key>\n      <string>u1CE21.stypo</string>\n      <key>largeType-1CE22</key>\n      <string>u1CE22</string>\n      <key>largeType-1CE22.stypo</key>\n      <string>u1CE22.stypo</string>\n      <key>largeType-1CE23</key>\n      <string>u1CE23</string>\n      <key>largeType-1CE23.stypo</key>\n      <string>u1CE23.stypo</string>\n      <key>largeType-1CE24</key>\n      <string>u1CE24</string>\n      <key>largeType-1CE24.stypo</key>\n      <string>u1CE24.stypo</string>\n      <key>largeType-1CE25</key>\n      <string>u1CE25</string>\n      <key>largeType-1CE25.stypo</key>\n      <string>u1CE25.stypo</string>\n      <key>largeType-1CE26</key>\n      <string>u1CE26</string>\n      <key>largeType-1CE26.stypo</key>\n      <string>u1CE26.stypo</string>\n      <key>largeType-1CE27</key>\n      <string>u1CE27</string>\n      <key>largeType-1CE27.stypo</key>\n      <string>u1CE27.stypo</string>\n      <key>largeType-1CE28</key>\n      <string>u1CE28</string>\n      <key>largeType-1CE28.stypo</key>\n      <string>u1CE28.stypo</string>\n      <key>largeType-1CE29</key>\n      <string>u1CE29</string>\n      <key>largeType-1CE29.stypo</key>\n      <string>u1CE29.stypo</string>\n      <key>largeType-1CE2A</key>\n      <string>u1CE2A</string>\n      <key>largeType-1CE2A.stypo</key>\n      <string>u1CE2A.stypo</string>\n      <key>largeType-1CE2B</key>\n      <string>u1CE2B</string>\n      <key>largeType-1CE2B.stypo</key>\n      <string>u1CE2B.stypo</string>\n      <key>largeType-1CE2C</key>\n      <string>u1CE2C</string>\n      <key>largeType-1CE2C.stypo</key>\n      <string>u1CE2C.stypo</string>\n      <key>largeType-1CE2D</key>\n      <string>u1CE2D</string>\n      <key>largeType-1CE2D.stypo</key>\n      <string>u1CE2D.stypo</string>\n      <key>largeType-1CE2E</key>\n      <string>u1CE2E</string>\n      <key>largeType-1CE2E.stypo</key>\n      <string>u1CE2E.stypo</string>\n      <key>largeType-1CE2F</key>\n      <string>u1CE2F</string>\n      <key>largeType-1CE2F.stypo</key>\n      <string>u1CE2F.stypo</string>\n      <key>largeType-1CE30</key>\n      <string>u1CE30</string>\n      <key>largeType-1CE30.stypo</key>\n      <string>u1CE30.stypo</string>\n      <key>largeType-1CE31</key>\n      <string>u1CE31</string>\n      <key>largeType-1CE31.stypo</key>\n      <string>u1CE31.stypo</string>\n      <key>largeType-1CE32</key>\n      <string>u1CE32</string>\n      <key>largeType-1CE32.stypo</key>\n      <string>u1CE32.stypo</string>\n      <key>largeType-1CE33</key>\n      <string>u1CE33</string>\n      <key>largeType-1CE33.stypo</key>\n      <string>u1CE33.stypo</string>\n      <key>largeType-1CE34</key>\n      <string>u1CE34</string>\n      <key>largeType-1CE34.stypo</key>\n      <string>u1CE34.stypo</string>\n      <key>largeType-1CE35</key>\n      <string>u1CE35</string>\n      <key>largeType-1CE35.stypo</key>\n      <string>u1CE35.stypo</string>\n      <key>largeType-1CE36</key>\n      <string>u1CE36</string>\n      <key>largeType-1CE36.stypo</key>\n      <string>u1CE36.stypo</string>\n      <key>largeType-1CE37</key>\n      <string>u1CE37</string>\n      <key>largeType-1CE37.stypo</key>\n      <string>u1CE37.stypo</string>\n      <key>largeType-1CE38</key>\n      <string>u1CE38</string>\n      <key>largeType-1CE38.stypo</key>\n      <string>u1CE38.stypo</string>\n      <key>largeType-1CE39</key>\n      <string>u1CE39</string>\n      <key>largeType-1CE39.stypo</key>\n      <string>u1CE39.stypo</string>\n      <key>largeType-1CE3A</key>\n      <string>u1CE3A</string>\n      <key>largeType-1CE3A.stypo</key>\n      <string>u1CE3A.stypo</string>\n      <key>largeType-1CE3B</key>\n      <string>u1CE3B</string>\n      <key>largeType-1CE3B.stypo</key>\n      <string>u1CE3B.stypo</string>\n      <key>largeType-1CE3C</key>\n      <string>u1CE3C</string>\n      <key>largeType-1CE3C.stypo</key>\n      <string>u1CE3C.stypo</string>\n      <key>largeType-1CE3D</key>\n      <string>u1CE3D</string>\n      <key>largeType-1CE3D.stypo</key>\n      <string>u1CE3D.stypo</string>\n      <key>largeType-1CE3E</key>\n      <string>u1CE3E</string>\n      <key>largeType-1CE3E.stypo</key>\n      <string>u1CE3E.stypo</string>\n      <key>largeType-1CE3F</key>\n      <string>u1CE3F</string>\n      <key>largeType-1CE3F.stypo</key>\n      <string>u1CE3F.stypo</string>\n      <key>largeType-1CE40</key>\n      <string>u1CE40</string>\n      <key>largeType-1CE40.stypo</key>\n      <string>u1CE40.stypo</string>\n      <key>largeType-1CE41</key>\n      <string>u1CE41</string>\n      <key>largeType-1CE41.stypo</key>\n      <string>u1CE41.stypo</string>\n      <key>largeType-1CE42</key>\n      <string>u1CE42</string>\n      <key>largeType-1CE42.stypo</key>\n      <string>u1CE42.stypo</string>\n      <key>largeType-1CE43</key>\n      <string>u1CE43</string>\n      <key>largeType-1CE43.stypo</key>\n      <string>u1CE43.stypo</string>\n      <key>largeType-1CE44</key>\n      <string>u1CE44</string>\n      <key>largeType-1CE44.stypo</key>\n      <string>u1CE44.stypo</string>\n      <key>largeType-1CE45</key>\n      <string>u1CE45</string>\n      <key>largeType-1CE45.stypo</key>\n      <string>u1CE45.stypo</string>\n      <key>largeType-1CE46</key>\n      <string>u1CE46</string>\n      <key>largeType-1CE46.stypo</key>\n      <string>u1CE46.stypo</string>\n      <key>largeType-1CE47</key>\n      <string>u1CE47</string>\n      <key>largeType-1CE47.stypo</key>\n      <string>u1CE47.stypo</string>\n      <key>largeType-1CE48</key>\n      <string>u1CE48</string>\n      <key>largeType-1CE48.stypo</key>\n      <string>u1CE48.stypo</string>\n      <key>largeType-1CE49</key>\n      <string>u1CE49</string>\n      <key>largeType-1CE49.stypo</key>\n      <string>u1CE49.stypo</string>\n      <key>largeType-1CE4A</key>\n      <string>u1CE4A</string>\n      <key>largeType-1CE4A.stypo</key>\n      <string>u1CE4A.stypo</string>\n      <key>largeType-1CE4B</key>\n      <string>u1CE4B</string>\n      <key>largeType-1CE4B.stypo</key>\n      <string>u1CE4B.stypo</string>\n      <key>largeType-1CE4C</key>\n      <string>u1CE4C</string>\n      <key>largeType-1CE4C.stypo</key>\n      <string>u1CE4C.stypo</string>\n      <key>largeType-1CE4D</key>\n      <string>u1CE4D</string>\n      <key>largeType-1CE4D.stypo</key>\n      <string>u1CE4D.stypo</string>\n      <key>largeType-1CE4E</key>\n      <string>u1CE4E</string>\n      <key>largeType-1CE4E.stypo</key>\n      <string>u1CE4E.stypo</string>\n      <key>largeType-1CE4F</key>\n      <string>u1CE4F</string>\n      <key>largeType-1CE4F.stypo</key>\n      <string>u1CE4F.stypo</string>\n      <key>largeType-1CE50</key>\n      <string>u1CE50</string>\n      <key>largeType-1CE50.stypo</key>\n      <string>u1CE50.stypo</string>\n    </dict>\n    <key>public.skipExportGlyphs</key>\n    <array>\n      <string>A.half</string>\n      <string>B.half</string>\n      <string>C.half</string>\n      <string>D.half</string>\n      <string>E.half</string>\n      <string>F.half</string>\n      <string>G.half</string>\n      <string>H.half</string>\n      <string>I.half</string>\n      <string>K.half</string>\n      <string>L.half</string>\n      <string>M.half</string>\n      <string>N.half</string>\n      <string>O.half</string>\n      <string>P.half</string>\n      <string>Q.half</string>\n      <string>R.half</string>\n      <string>S.half</string>\n      <string>T.half</string>\n      <string>U.half</string>\n      <string>V.half</string>\n      <string>X.half</string>\n      <string>Y.half</string>\n      <string>four.half</string>\n      <string>one.half</string>\n      <string>three.half</string>\n      <string>two.half</string>\n    </array>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-Bold.ufo/metainfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>creator</key>\n    <string>com.github.fonttools.ufoLib</string>\n    <key>formatVersion</key>\n    <integer>3</integer>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/features.fea",
    "content": "# automatic\n@Uppercase = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Dafrican Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F Fhook G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK 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 Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol ];\n\n# Prefix: Languagesystems\n# automatic\nlanguagesystem DFLT dflt;\n\nlanguagesystem latn dflt;\nlanguagesystem latn ROM;\nlanguagesystem latn MOL;\nlanguagesystem latn PLK;\nlanguagesystem latn CAT;\nlanguagesystem latn NLD;\n\nlanguagesystem cyrl dflt;\nlanguagesystem cyrl BGR;\nlanguagesystem cyrl SRB;\n\n\nfeature aalt {\n# automatic\nfeature calt;\nfeature salt;\nfeature locl;\nfeature subs;\nfeature sinf;\nfeature sups;\nfeature numr;\nfeature dnom;\nfeature frac;\nfeature ordn;\nfeature case;\nfeature zero;\nfeature ss20;\n\n} aalt;\n\nfeature calt {\nsub [B C D E F G H I J K M N O P Q R S T U V W X Y Z seven f 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 Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy Ef-cy.loclBGR] [b h k shha-cy zhe-cy.loclBGR ka-cy.loclBGR]' by [b.alt h.alt k.alt shha-cy.alt zhe-cy.loclBGR.alt ka-cy.loclBGR.alt];\n} calt;\n\nfeature ss01 {\nsub f by f.salt;\nsub l by l.salt;\nsub lacute by lacute.salt;\nsub lbar by lbar.salt;\nsub lbelt by lbelt.salt;\nsub lcaron by lcaron.salt;\nsub lcommaaccent by lcommaaccent.salt;\nsub ldot by ldot.salt;\nsub ldotbelow by ldotbelow.salt;\nsub llinebelow by llinebelow.salt;\nsub lmiddletilde by lmiddletilde.salt;\nsub lslash by lslash.salt;\nsub r by r.salt;\nsub racute by racute.salt;\nsub rcaron by rcaron.salt;\nsub rcommaaccent by rcommaaccent.salt;\nsub rdotbelow by rdotbelow.salt;\nsub s by s.salt;\nsub sacute by sacute.salt;\nsub scaron by scaron.salt;\nsub scedilla by scedilla.salt;\nsub scircumflex by scircumflex.salt;\nsub scommaaccent by scommaaccent.salt;\nsub sdotbelow by sdotbelow.salt;\n} ss01;\n\nfeature ccmp {\n# automatic\nlookup ccmp_Other_1 {\n\t@CombiningTopAccents = [acutecomb acutetonecomb brevecomb caroncomb circumflexcomb commaabovecomb commaaboverightcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb gravetonecomb hookabovecomb hungarumlautcomb macroncomb perispomenicomb ringcomb tildecomb];\n\t@CombiningNonTopAccents = [cedillacomb dotbelowcomb lowlinecomb macronbelowcomb ogonekcomb ringbelowcomb horncomb];\n\tsub [i j]' @CombiningTopAccents by [idotless jdotless];\n\tsub [i j]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless];\n\t@Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb horncomb tonos brevecomb-cy];\n\t@MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case tonos.case brevecomb-cy.case];\n\tsub @Markscomb @Markscomb' by @MarkscombCase;\n\tsub @Uppercase @Markscomb' by @MarkscombCase;\n} ccmp_Other_1;\n\nlookup ccmp_Other_2 {\n\tsub @Markscomb' @MarkscombCase by @MarkscombCase;\n\tsub @MarkscombCase @Markscomb' by @MarkscombCase;\n} ccmp_Other_2;\n\n} ccmp;\n\nfeature locl {\n# automatic\nlookup locl_latn_0 {\n\tscript latn;\n\tlanguage ROM;\n\tlanguage MOL;\n\tsub Scedilla by Scommaaccent;\n\tsub scedilla by scommaaccent;\n\tsub Tcedilla by Tcommaaccent;\n\tsub tcedilla by tcommaaccent;\n} locl_latn_0;\n\nlookup locl_latn_1 {\n\tscript latn;\n\tlanguage PLK;\n\tsub Cacute by Cacute.loclPLK;\n\tsub Nacute by Nacute.loclPLK;\n\tsub Oacute by Oacute.loclPLK;\n\tsub Sacute by Sacute.loclPLK;\n\tsub Zacute by Zacute.loclPLK;\n\tsub cacute by cacute.loclPLK;\n\tsub nacute by nacute.loclPLK;\n\tsub oacute by oacute.loclPLK;\n\tsub sacute by sacute.loclPLK;\n\tsub zacute by zacute.loclPLK;\n\tsub acutecomb by acutecomb.loclPLK;\n} locl_latn_1;\n\nlookup locl_latn_2 {\n\tscript latn;\n\tlanguage CAT;\n\tsub  l' periodcentered' l by ldot;\n\tsub  L' periodcentered' L by Ldot;\n} locl_latn_2;\n\nlookup locl_latn_3 {\n\tscript latn;\n\tlanguage NLD;\n\tsub iacute j' by jacute;\n\tsub Iacute J' by Jacute;\n} locl_latn_3;\n\nlookup locl_cyrl_0 {\n\tscript cyrl;\n\tlanguage BGR;\n\tsub De-cy by De-cy.loclBGR;\n\tsub El-cy by El-cy.loclBGR;\n\tsub Ef-cy by Ef-cy.loclBGR;\n\tsub de-cy by de-cy.loclBGR;\n\tsub zhe-cy by zhe-cy.loclBGR;\n\tsub ze-cy by ze-cy.loclBGR;\n\tsub ka-cy by ka-cy.loclBGR;\n\tsub iu-cy by iu-cy.loclBGR;\n} locl_cyrl_0;\n\nlookup locl_cyrl_1 {\n\tscript cyrl;\n\tlanguage SRB;\n\tsub be-cy by be-cy.loclSRB;\n\tsub ge-cy by ge-cy.loclSRB;\n\tsub pe-cy by pe-cy.loclSRB;\n\tsub te-cy by te-cy.loclSRB;\n} locl_cyrl_1;\n\n} locl;\n\nfeature subs {\n# automatic\nsub zero by zeroinferior;\nsub one by oneinferior;\nsub two by twoinferior;\nsub three by threeinferior;\nsub four by fourinferior;\nsub five by fiveinferior;\nsub six by sixinferior;\nsub seven by seveninferior;\nsub eight by eightinferior;\nsub nine by nineinferior;\n\n} subs;\n\nfeature sinf {\n# automatic\nsub zero by zeroinferior;\nsub one by oneinferior;\nsub two by twoinferior;\nsub three by threeinferior;\nsub four by fourinferior;\nsub five by fiveinferior;\nsub six by sixinferior;\nsub seven by seveninferior;\nsub eight by eightinferior;\nsub nine by nineinferior;\n\n} sinf;\n\nfeature sups {\n# automatic\nsub zero by zerosuperior;\nsub one by onesuperior;\nsub two by twosuperior;\nsub three by threesuperior;\nsub four by foursuperior;\nsub five by fivesuperior;\nsub six by sixsuperior;\nsub seven by sevensuperior;\nsub eight by eightsuperior;\nsub nine by ninesuperior;\n\n} sups;\n\nfeature numr {\n# automatic\nsub zero by zero.numr;\nsub one by one.numr;\nsub two by two.numr;\nsub three by three.numr;\nsub four by four.numr;\nsub five by five.numr;\nsub six by six.numr;\nsub seven by seven.numr;\nsub eight by eight.numr;\nsub nine by nine.numr;\n\n} numr;\n\nfeature dnom {\n# automatic\nsub zero by zero.dnom;\nsub one by one.dnom;\nsub two by two.dnom;\nsub three by three.dnom;\nsub four by four.dnom;\nsub five by five.dnom;\nsub six by six.dnom;\nsub seven by seven.dnom;\nsub eight by eight.dnom;\nsub nine by nine.dnom;\n\n} dnom;\n\nfeature frac {\n# automatic\nlookup FRAC {\n\tsub slash by fraction;\n} FRAC;\nlookup UP {\n\tsub [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];\n} UP;\nlookup DOWN {\n\tsub 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];\n\tsub [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];\n} DOWN;\n\n} frac;\n\nfeature ordn {\n# automatic\nsub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;\nsub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;\nsub N o period by numero;\n\n} ordn;\n\nfeature case {\n# automatic\nsub dieresiscomb by dieresiscomb.case;\nsub dotaccentcomb by dotaccentcomb.case;\nsub gravecomb by gravecomb.case;\nsub acutecomb by acutecomb.case;\nsub hungarumlautcomb by hungarumlautcomb.case;\nsub circumflexcomb by circumflexcomb.case;\nsub caroncomb by caroncomb.case;\nsub brevecomb by brevecomb.case;\nsub ringcomb by ringcomb.case;\nsub tildecomb by tildecomb.case;\nsub macroncomb by macroncomb.case;\nsub hookabovecomb by hookabovecomb.case;\nsub horncomb by horncomb.case;\nsub tonos by tonos.case;\nsub brevecomb-cy by brevecomb-cy.case;\n\n} case;\n\nfeature liga {\n# automatic\n# disabled\n#lookupflag IgnoreMarks;\n#sub bar bar bar greater by bar_bar_bar_greater.liga;\n#sub less bar bar bar by less_bar_bar_bar.liga;\n#sub less exclam hyphen hyphen by less_exclam_hyphen_hyphen.liga;\n#sub asciitilde asciitilde greater by asciitilde_asciitilde_greater.liga;\n#sub asterisk asterisk asterisk by asterisk_asterisk_asterisk.liga;\n#sub bar bar bar by bar_bar_bar.liga;\n#sub bar bar greater by bar_bar_greater.liga;\n#sub colon colon colon by colon_colon_colon.liga;\n#sub colon colon equal by colon_colon_equal.liga;\n#sub colon slash slash by colon_slash_slash.liga;\n#sub equal equal equal by equal_equal_equal.liga;\n#sub equal greater greater by equal_greater_greater.liga;\n#sub equal less less by equal_less_less.liga;\n#sub exclam equal equal by exclam_equal_equal.liga;\n#sub exclam exclam period by exclam_exclam_period.liga;\n#sub greater greater equal by greater_greater_equal.liga;\n#sub greater greater greater by greater_greater_greater.liga;\n#sub hyphen hyphen hyphen by hyphen_hyphen_hyphen.liga;\n#sub less asciitilde asciitilde by less_asciitilde_asciitilde.liga;\n#sub less asciitilde greater by less_asciitilde_greater.liga;\n#sub less asterisk greater by less_asterisk_greater.liga;\n#sub less bar bar by less_bar_bar.liga;\n#sub less bar greater by less_bar_greater.liga;\n#sub less dollar greater by less_dollar_greater.liga;\n#sub less less equal by less_less_equal.liga;\n#sub less less less by less_less_less.liga;\n#sub less plus greater by less_plus_greater.liga;\n#sub less slash greater by less_slash_greater.liga;\n#sub numbersign underscore parenleft by numbersign_underscore_parenleft.liga;\n#sub period period equal by period_period_equal.liga;\n#sub period period less by period_period_less.liga;\n#sub period period period by period_period_period.liga;\n#sub plus plus plus by plus_plus_plus.liga;\n#sub question question equal by question_question_equal.liga;\n#sub slash slash slash by slash_slash_slash.liga;\n#sub w w w by w_w_w.liga;\n#sub ampersand ampersand by ampersand_ampersand.liga;\n#sub asciicircum equal by asciicircum_equal.liga;\n#sub asciitilde asciitilde by asciitilde_asciitilde.liga;\n#sub asciitilde at by asciitilde_at.liga;\n#sub asciitilde equal by asciitilde_equal.liga;\n#sub asciitilde greater by asciitilde_greater.liga;\n#sub asciitilde hyphen by asciitilde_hyphen.liga;\n#sub asterisk asterisk by asterisk_asterisk.liga;\n#sub asterisk greater by asterisk_greater.liga;\n#sub asterisk parenright by asterisk_parenright.liga;\n#sub asterisk slash by asterisk_slash.liga;\n#sub backslash backslash by backslash_backslash.liga;\n#sub backslash slash by backslash_slash.liga;\n#sub bar bar by bar_bar.liga;\n#sub bar braceright by bar_braceright.liga;\n#sub bar bracketright by bar_bracketright.liga;\n#sub bar greater by bar_greater.liga;\n#sub braceleft bar by braceleft_bar.liga;\n#sub braceright numbersign by braceright_numbersign.liga;\n#sub bracketleft bar by bracketleft_bar.liga;\n#sub bracketright numbersign by bracketright_numbersign.liga;\n#sub colon colon by colon_colon.liga;\n#sub colon equal by colon_equal.liga;\n#sub dollar greater by dollar_greater.liga;\n#sub equal equal by equal_equal.liga;\n#sub exclam colon by exclam_colon.liga;\n#sub exclam equal by exclam_equal.liga;\n#sub exclam exclam by exclam_exclam.liga;\n#sub exclam period by exclam_period.liga;\n#sub greater equal by greater_equal.liga;\n#sub greater greater by greater_greater.liga;\n#sub hyphen asciitilde by hyphen_asciitilde.liga;\n#sub hyphen hyphen by hyphen_hyphen.liga;\n#sub less asciitilde by less_asciitilde.liga;\n#sub less asterisk by less_asterisk.liga;\n#sub less bar by less_bar.liga;\n#sub less dollar by less_dollar.liga;\n#sub less equal by less_equal.liga;\n#sub less greater by less_greater.liga;\n#sub less less by less_less.liga;\n#sub less plus by less_plus.liga;\n#sub less slash by less_slash.liga;\n#sub numbersign braceleft by numbersign_braceleft.liga;\n#sub numbersign bracketleft by numbersign_bracketleft.liga;\n#sub numbersign colon by numbersign_colon.liga;\n#sub numbersign equal by numbersign_equal.liga;\n#sub numbersign exclam by numbersign_exclam.liga;\n#sub numbersign parenleft by numbersign_parenleft.liga;\n#sub numbersign question by numbersign_question.liga;\n#sub numbersign underscore by numbersign_underscore.liga;\n#sub parenleft asterisk by parenleft_asterisk.liga;\n#sub percent percent by percent_percent.liga;\n#sub period equal by period_equal.liga;\n#sub period hyphen by period_hyphen.liga;\n#sub period period by period_period.liga;\n#sub period question by period_question.liga;\n#sub plus greater by plus_greater.liga;\n#sub plus plus by plus_plus.liga;\n#sub question colon by question_colon.liga;\n#sub question equal by question_equal.liga;\n#sub question period by question_period.liga;\n#sub question question by question_question.liga;\n#sub semicolon semicolon by semicolon_semicolon.liga;\n#sub slash asterisk by slash_asterisk.liga;\n#sub slash backslash by slash_backslash.liga;\n#sub slash greater by slash_greater.liga;\n#sub slash slash by slash_slash.liga;\n#sub underscore underscore by underscore_underscore.liga;\n#sub f i by fi;\n#sub f l by fl;\n} liga;\n\nfeature zero {\n# automatic\nsub zero by zero.zero;\n\n} zero;\n\nfeature ss20 {\n# automatic\nsub acknowledgeControl by acknowledgeControl.ss20;\nsub backspaceControl by backspaceControl.ss20;\nsub bellControl by bellControl.ss20;\nsub cancelControl by cancelControl.ss20;\nsub carriageReturnControl by carriageReturnControl.ss20;\nsub dataLinkEscapeControl by dataLinkEscapeControl.ss20;\nsub endOfMediumControl by endOfMediumControl.ss20;\nsub endOfTextControl by endOfTextControl.ss20;\nsub endOfTransmissionBlockControl by endOfTransmissionBlockControl.ss20;\nsub endOfTransmissionControl by endOfTransmissionControl.ss20;\nsub enquiryControl by enquiryControl.ss20;\nsub escapeControl by escapeControl.ss20;\nsub formFeedControl by formFeedControl.ss20;\nsub horizontalTabulationControl by horizontalTabulationControl.ss20;\nsub lineFeedControl by lineFeedControl.ss20;\nsub negativeAcknowledgeControl by negativeAcknowledgeControl.ss20;\nsub shiftInControl by shiftInControl.ss20;\nsub shiftOutControl by shiftOutControl.ss20;\nsub startOfHeadingControl by startOfHeadingControl.ss20;\nsub startOfTextControl by startOfTextControl.ss20;\nsub substituteControl by substituteControl.ss20;\nsub synchronousIdleControl by synchronousIdleControl.ss20;\nsub verticalTabulationControl by verticalTabulationControl.ss20;\n\n} ss20;\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/fontinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>ascender</key>\n    <integer>1568</integer>\n    <key>capHeight</key>\n    <integer>1420</integer>\n    <key>copyright</key>\n    <string>© 2021 Microsoft Corporation. All Rights Reserved.</string>\n    <key>descender</key>\n    <integer>-480</integer>\n    <key>familyName</key>\n    <string>Cascadia Code</string>\n    <key>guidelines</key>\n    <array>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1100</integer>\n        <key>y</key>\n        <integer>1080</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>886</integer>\n        <key>y</key>\n        <integer>-20</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1052</integer>\n        <key>y</key>\n        <integer>1500</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1276</integer>\n        <key>y</key>\n        <integer>1440</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>440</integer>\n        <key>y</key>\n        <integer>-460</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2160</integer>\n        <key>y</key>\n        <integer>332</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2120</integer>\n        <key>y</key>\n        <integer>342</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2004</integer>\n        <key>y</key>\n        <integer>52</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3360</integer>\n        <key>y</key>\n        <integer>466</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3320</integer>\n        <key>y</key>\n        <integer>306</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3208</integer>\n        <key>y</key>\n        <integer>146</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>867</integer>\n        <key>y</key>\n        <integer>1808</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>852</integer>\n        <key>y</key>\n        <integer>1162</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>2982</integer>\n        <key>y</key>\n        <integer>366</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>1114</integer>\n        <key>y</key>\n        <integer>552</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>888</integer>\n        <key>y</key>\n        <integer>819</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>1071</integer>\n        <key>y</key>\n        <integer>353</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>2419</integer>\n        <key>y</key>\n        <integer>366</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>3291</integer>\n        <key>y</key>\n        <integer>366</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>751</integer>\n        <key>y</key>\n        <integer>1390</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>299</integer>\n        <key>y</key>\n        <integer>122</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>103</integer>\n        <key>y</key>\n        <integer>791</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>1038</integer>\n        <key>y</key>\n        <integer>787</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>552</integer>\n        <key>y</key>\n        <integer>24</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>1077</integer>\n        <key>y</key>\n        <integer>1637</integer>\n      </dict>\n    </array>\n    <key>italicAngle</key>\n    <integer>-10</integer>\n    <key>openTypeHeadCreated</key>\n    <string>2019/04/07 17:18:29</string>\n    <key>openTypeNameDesigner</key>\n    <string>Aaron Bell</string>\n    <key>openTypeNameDesignerURL</key>\n    <string>http://sajatypeworks.com</string>\n    <key>openTypeNameLicense</key>\n    <string>Microsoft supplied font. You may use this font to create, display, and print content as permitted by the license terms or terms of use, of the Microsoft product, service, or content in which this font was included. You may only (i) embed this font in content as permitted by the embedding restrictions included in this font; and (ii) temporarily download this font to a printer or other output device to help print content. Any other use is prohibited.\n \nThe following license, based on the SIL Open Font license (https://scripts.sil.org/OFL), applies to this font. Additional license terms may be found on the GitHub repository for this font (https://github.com/microsoft/cascadia-code/blob/main/LICENSE).\n \nPermission 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:\n \n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n \n2) 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.\n \n3) 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.\n \n4) 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.\n \n5) 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.\n \nTHE 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.</string>\n    <key>openTypeNameLicenseURL</key>\n    <string>https://scripts.sil.org/OFL</string>\n    <key>openTypeNameManufacturer</key>\n    <string>Saja Typeworks</string>\n    <key>openTypeNameManufacturerURL</key>\n    <string>http://sajatypeworks.com</string>\n    <key>openTypeOS2Panose</key>\n    <array>\n      <integer>2</integer>\n      <integer>11</integer>\n      <integer>6</integer>\n      <integer>9</integer>\n      <integer>2</integer>\n      <integer>0</integer>\n      <integer>0</integer>\n      <integer>2</integer>\n      <integer>0</integer>\n      <integer>4</integer>\n    </array>\n    <key>openTypeOS2Selection</key>\n    <array>\n      <integer>7</integer>\n    </array>\n    <key>openTypeOS2Type</key>\n    <array/>\n    <key>openTypeOS2VendorID</key>\n    <string>SAJA</string>\n    <key>postscriptBlueValues</key>\n    <array>\n      <integer>-20</integer>\n      <integer>0</integer>\n      <integer>1060</integer>\n      <integer>1080</integer>\n      <integer>1420</integer>\n      <integer>1440</integer>\n      <integer>1500</integer>\n      <integer>1520</integer>\n    </array>\n    <key>postscriptIsFixedPitch</key>\n    <true/>\n    <key>postscriptOtherBlues</key>\n    <array>\n      <integer>-480</integer>\n      <integer>-460</integer>\n    </array>\n    <key>postscriptStemSnapH</key>\n    <array>\n      <integer>200</integer>\n      <integer>210</integer>\n      <integer>212</integer>\n      <integer>220</integer>\n    </array>\n    <key>postscriptStemSnapV</key>\n    <array>\n      <integer>190</integer>\n      <integer>180</integer>\n    </array>\n    <key>postscriptUnderlinePosition</key>\n    <integer>-100</integer>\n    <key>postscriptUnderlineThickness</key>\n    <integer>100</integer>\n    <key>styleName</key>\n    <string>Bold Italic</string>\n    <key>trademark</key>\n    <string>Cascadia Code is a trademark of the Microsoft group of companies.</string>\n    <key>unitsPerEm</key>\n    <integer>2048</integer>\n    <key>versionMajor</key>\n    <integer>4</integer>\n    <key>versionMinor</key>\n    <integer>300</integer>\n    <key>xHeight</key>\n    <integer>1060</integer>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0410\"/>\n  <outline>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0041\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"989\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"756\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-65\" y=\"0\" type=\"line\"/>\n      <point x=\"205\" y=\"0\" type=\"line\"/>\n      <point x=\"691\" y=\"1113\" type=\"line\"/>\n      <point x=\"723\" y=\"1113\" type=\"line\"/>\n      <point x=\"758\" y=\"742\"/>\n      <point x=\"793\" y=\"371\"/>\n      <point x=\"809\" y=\"0\" type=\"curve\"/>\n      <point x=\"1079\" y=\"0\" type=\"line\"/>\n      <point x=\"1047\" y=\"474\"/>\n      <point x=\"995\" y=\"947\"/>\n      <point x=\"923\" y=\"1421\" type=\"curve\"/>\n      <point x=\"594\" y=\"1421\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"193\" y=\"269\" type=\"line\"/>\n      <point x=\"913\" y=\"269\" type=\"line\"/>\n      <point x=\"947\" y=\"513\" type=\"line\"/>\n      <point x=\"227\" y=\"513\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"29\" y=\"0\" type=\"line\"/>\n      <point x=\"189\" y=\"0\" type=\"line\"/>\n      <point x=\"414\" y=\"490\" type=\"line\"/>\n      <point x=\"427\" y=\"490\" type=\"line\"/>\n      <point x=\"652\" y=\"0\" type=\"line\"/>\n      <point x=\"811\" y=\"0\" type=\"line\"/>\n      <point x=\"498\" y=\"639\" type=\"line\"/>\n      <point x=\"342\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"107\" type=\"line\"/>\n      <point x=\"669\" y=\"107\" type=\"line\"/>\n      <point x=\"669\" y=\"238\" type=\"line\"/>\n      <point x=\"165\" y=\"238\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"AE\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C6\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"990\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"857\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"481\" y=\"0\" type=\"line\"/>\n      <point x=\"719\" y=\"0\" type=\"line\"/>\n      <point x=\"969\" y=\"1420\" type=\"line\"/>\n      <point x=\"731\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"513\" y=\"0\" type=\"line\"/>\n      <point x=\"1021\" y=\"0\" type=\"line\"/>\n      <point x=\"1065\" y=\"242\" type=\"line\"/>\n      <point x=\"558\" y=\"242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"623\" y=\"590\" type=\"line\"/>\n      <point x=\"1067\" y=\"590\" type=\"line\"/>\n      <point x=\"1110\" y=\"832\" type=\"line\"/>\n      <point x=\"666\" y=\"832\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"733\" y=\"1179\" type=\"line\"/>\n      <point x=\"1231\" y=\"1179\" type=\"line\"/>\n      <point x=\"1273\" y=\"1420\" type=\"line\"/>\n      <point x=\"773\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-66\" y=\"0\" type=\"line\"/>\n      <point x=\"204\" y=\"0\" type=\"line\"/>\n      <point x=\"659\" y=\"1179\" type=\"line\"/>\n      <point x=\"724\" y=\"1179\" type=\"line\"/>\n      <point x=\"889\" y=\"1420\" type=\"line\"/>\n      <point x=\"505\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"200\" y=\"164\" type=\"line\"/>\n      <point x=\"660\" y=\"164\" type=\"line\"/>\n      <point x=\"694\" y=\"403\" type=\"line\"/>\n      <point x=\"234\" y=\"403\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_E_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"AEacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FC\"/>\n  <outline>\n    <component base=\"AE\"/>\n    <component base=\"acutecomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C1\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0102\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_breveacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abreveacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAE\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\" xOffset=\"-1\"/>\n    <component base=\"acutecomb.case\" xOffset=\"69\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_brevedotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevedotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB6\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"brevecomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_brevegrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevegrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\" xOffset=\"-1\"/>\n    <component base=\"gravecomb.case\" xOffset=\"69\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_brevehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\" xOffset=\"-1\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"69\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_brevetilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevetilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\" xOffset=\"-1\"/>\n    <component base=\"tildecomb.case\" xOffset=\"69\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01CD\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-1\"/>\n    <component base=\"acutecomb.case\" xOffset=\"436\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAC\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA6\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-1\"/>\n    <component base=\"gravecomb.case\" xOffset=\"436\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA8\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-1\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"436\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAA\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-1\"/>\n    <component base=\"tildecomb.case\" xOffset=\"66\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Adieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Adotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Agrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ahookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_lpha-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alpha-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2C6D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"756\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1162\" y=\"1430\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"524\" y=\"1430\"/>\n      <point x=\"28\" y=\"949\"/>\n      <point x=\"28\" y=\"328\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"28\" y=\"110\"/>\n      <point x=\"148\" y=\"-20\"/>\n      <point x=\"352\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"568\" y=\"-20\"/>\n      <point x=\"702\" y=\"115\"/>\n      <point x=\"779\" y=\"410\" type=\"curve\"/>\n      <point x=\"701\" y=\"224\" type=\"line\"/>\n      <point x=\"817\" y=\"224\" type=\"line\"/>\n      <point x=\"750\" y=\"376\" type=\"line\"/>\n      <point x=\"720\" y=\"-10\" type=\"line\"/>\n      <point x=\"1082\" y=\"0\" type=\"line\"/>\n      <point x=\"1121\" y=\"219\" type=\"line\"/>\n      <point x=\"834\" y=\"219\" type=\"line\"/>\n      <point x=\"942\" y=\"80\" type=\"line\"/>\n      <point x=\"1180\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"427\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"232\"/>\n      <point x=\"306\" y=\"288\"/>\n      <point x=\"306\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"793\"/>\n      <point x=\"622\" y=\"1133\"/>\n      <point x=\"999\" y=\"1148\" type=\"curve\"/>\n      <point x=\"894\" y=\"1317\" type=\"line\"/>\n      <point x=\"779\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"726\" y=\"368\"/>\n      <point x=\"606\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_lpha.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alpha\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0391\"/>\n  <outline>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_lphatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alphatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0386\"/>\n  <anchor x=\"634\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"884\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"410\" y=\"0\" type=\"line\"/>\n      <point x=\"497\" y=\"293\"/>\n      <point x=\"662\" y=\"811\"/>\n      <point x=\"782\" y=\"1093\" type=\"curve\"/>\n      <point x=\"800\" y=\"1093\" type=\"line\"/>\n      <point x=\"809\" y=\"0\" type=\"line\"/>\n      <point x=\"1079\" y=\"0\" type=\"line\"/>\n      <point x=\"1029\" y=\"1421\" type=\"line\"/>\n      <point x=\"680\" y=\"1421\" type=\"line\"/>\n      <point x=\"492\" y=\"1036\"/>\n      <point x=\"262\" y=\"400\"/>\n      <point x=\"140\" y=\"0\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"369\" y=\"269\" type=\"line\"/>\n      <point x=\"913\" y=\"269\" type=\"line\"/>\n      <point x=\"947\" y=\"513\" type=\"line\"/>\n      <point x=\"403\" y=\"513\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"89\" y=\"1040\" type=\"line\"/>\n      <point x=\"341\" y=\"1040\" type=\"line\"/>\n      <point x=\"475\" y=\"1420\" type=\"line\"/>\n      <point x=\"194\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Amacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0100\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"macroncomb.case\" xOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0104\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"843\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-424\"/>\n      <point x=\"964\" y=\"-408\"/>\n      <point x=\"1010\" y=\"-386\" type=\"curve\"/>\n      <point x=\"968\" y=\"-172\" type=\"line\"/>\n      <point x=\"945\" y=\"-180\"/>\n      <point x=\"921\" y=\"-185\"/>\n      <point x=\"900\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"-185\"/>\n      <point x=\"841\" y=\"-170\"/>\n      <point x=\"841\" y=\"-142\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"-77\"/>\n      <point x=\"954\" y=\"-33\"/>\n      <point x=\"1079\" y=\"0\" type=\"curve\"/>\n      <point x=\"1040\" y=\"30\" type=\"line\"/>\n      <point x=\"847\" y=\"30\" type=\"line\"/>\n      <point x=\"847\" y=\"-20\" type=\"line\"/>\n      <point x=\"706\" y=\"-64\"/>\n      <point x=\"624\" y=\"-151\"/>\n      <point x=\"624\" y=\"-255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"624\" y=\"-368\"/>\n      <point x=\"699\" y=\"-424\"/>\n    </contour>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C5\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"ringcomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_ringacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aringacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FA\"/>\n  <outline>\n    <component base=\"acutecomb.case\" xOffset=\"42\" yOffset=\"240\"/>\n    <component base=\"Aring\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Asmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1D00\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"989\" y=\"8\" name=\"ogonek\"/>\n  <anchor x=\"696\" y=\"1079\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-58\" y=\"0\" type=\"line\"/>\n      <point x=\"207\" y=\"0\" type=\"line\"/>\n      <point x=\"649\" y=\"831\" type=\"line\"/>\n      <point x=\"667\" y=\"831\" type=\"line\"/>\n      <point x=\"812\" y=\"0\" type=\"line\"/>\n      <point x=\"1072\" y=\"0\" type=\"line\"/>\n      <point x=\"852\" y=\"1079\" type=\"line\"/>\n      <point x=\"537\" y=\"1079\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"177\" y=\"197\" type=\"line\"/>\n      <point x=\"897\" y=\"197\" type=\"line\"/>\n      <point x=\"934\" y=\"407\" type=\"line\"/>\n      <point x=\"214\" y=\"407\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Astroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023A\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"393\" y=\"-328\" type=\"line\"/>\n      <point x=\"629\" y=\"324\" type=\"line\"/>\n      <point x=\"609\" y=\"419\" type=\"line\"/>\n      <point x=\"788\" y=\"913\" type=\"line\"/>\n      <point x=\"897\" y=\"1066\" type=\"line\"/>\n      <point x=\"1112\" y=\"1662\" type=\"line\"/>\n      <point x=\"930\" y=\"1711\" type=\"line\"/>\n      <point x=\"781\" y=\"1299\" type=\"line\"/>\n      <point x=\"782\" y=\"1190\" type=\"line\"/>\n      <point x=\"511\" y=\"441\" type=\"line\"/>\n      <point x=\"445\" y=\"369\" type=\"line\"/>\n      <point x=\"210\" y=\"-279\" type=\"line\"/>\n    </contour>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/A_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Atilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C3\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"tildecomb.case\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"B\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0042\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"316\" y=\"0\" type=\"line\"/>\n      <point x=\"566\" y=\"1420\" type=\"line\"/>\n      <point x=\"300\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"268\" y=\"765\" type=\"line\"/>\n      <point x=\"606\" y=\"765\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"765\"/>\n      <point x=\"1144\" y=\"877\"/>\n      <point x=\"1144\" y=\"1091\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1144\" y=\"1320\"/>\n      <point x=\"955\" y=\"1440\"/>\n      <point x=\"594\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"1440\"/>\n      <point x=\"376\" y=\"1433\"/>\n      <point x=\"300\" y=\"1420\" type=\"curve\"/>\n      <point x=\"267\" y=\"1177\" type=\"line\"/>\n      <point x=\"357\" y=\"1190\"/>\n      <point x=\"479\" y=\"1197\"/>\n      <point x=\"621\" y=\"1197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"1197\"/>\n      <point x=\"867\" y=\"1146\"/>\n      <point x=\"867\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"933\"/>\n      <point x=\"768\" y=\"873\"/>\n      <point x=\"579\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"301\" y=\"873\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"235\" y=\"0\" type=\"line\"/>\n      <point x=\"450\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"0\"/>\n      <point x=\"1125\" y=\"145\"/>\n      <point x=\"1125\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"628\"/>\n      <point x=\"972\" y=\"736\"/>\n      <point x=\"680\" y=\"736\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"348\" y=\"736\" type=\"line\"/>\n      <point x=\"359\" y=\"629\" type=\"line\"/>\n      <point x=\"567\" y=\"629\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"629\"/>\n      <point x=\"848\" y=\"571\"/>\n      <point x=\"848\" y=\"458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"317\"/>\n      <point x=\"705\" y=\"243\"/>\n      <point x=\"430\" y=\"243\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"269\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"291\" y=\"698\" type=\"line\"/>\n      <point x=\"708\" y=\"698\" type=\"line\"/>\n      <point x=\"725\" y=\"796\" type=\"line\"/>\n      <point x=\"308\" y=\"796\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/B_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"B.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"251\" y=\"0\" type=\"line\"/>\n      <point x=\"535\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"0\"/>\n      <point x=\"796\" y=\"58\"/>\n      <point x=\"796\" y=\"157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"253\"/>\n      <point x=\"697\" y=\"308\"/>\n      <point x=\"522\" y=\"308\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"308\" type=\"line\"/>\n      <point x=\"253\" y=\"257\" type=\"line\"/>\n      <point x=\"530\" y=\"257\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"598\" y=\"257\"/>\n      <point x=\"637\" y=\"236\"/>\n      <point x=\"637\" y=\"199\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"158\"/>\n      <point x=\"602\" y=\"135\"/>\n      <point x=\"541\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"199\" y=\"285\" type=\"line\"/>\n      <point x=\"517\" y=\"285\" type=\"line\"/>\n      <point x=\"517\" y=\"353\" type=\"line\"/>\n      <point x=\"199\" y=\"353\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"251\" y=\"334\" type=\"line\"/>\n      <point x=\"504\" y=\"334\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"652\" y=\"334\"/>\n      <point x=\"737\" y=\"386\"/>\n      <point x=\"737\" y=\"477\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"581\"/>\n      <point x=\"653\" y=\"639\"/>\n      <point x=\"507\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"639\" type=\"line\"/>\n      <point x=\"253\" y=\"504\" type=\"line\"/>\n      <point x=\"499\" y=\"504\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"504\"/>\n      <point x=\"567\" y=\"485\"/>\n      <point x=\"567\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"408\"/>\n      <point x=\"546\" y=\"388\"/>\n      <point x=\"510\" y=\"388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"388\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/B_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Be-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0411\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"54\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"0\"/>\n      <point x=\"1142\" y=\"189\"/>\n      <point x=\"1142\" y=\"517\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"794\"/>\n      <point x=\"935\" y=\"954\"/>\n      <point x=\"586\" y=\"954\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"954\"/>\n      <point x=\"390\" y=\"938\"/>\n      <point x=\"307\" y=\"907\" type=\"curve\"/>\n      <point x=\"266\" y=\"662\" type=\"line\"/>\n      <point x=\"372\" y=\"687\"/>\n      <point x=\"443\" y=\"703\"/>\n      <point x=\"567\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"701\"/>\n      <point x=\"865\" y=\"639\"/>\n      <point x=\"865\" y=\"509\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"342\"/>\n      <point x=\"689\" y=\"245\"/>\n      <point x=\"462\" y=\"245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"138\" y=\"245\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"51\" y=\"0\" type=\"line\"/>\n      <point x=\"317\" y=\"0\" type=\"line\"/>\n      <point x=\"567\" y=\"1420\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"258\" y=\"1176\" type=\"line\"/>\n      <point x=\"1162\" y=\"1176\" type=\"line\"/>\n      <point x=\"1205\" y=\"1420\" type=\"line\"/>\n      <point x=\"300\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/B_eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Beta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0392\"/>\n  <outline>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"C\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0043\"/>\n  <anchor x=\"586\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"857\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"625\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"-20\"/>\n      <point x=\"911\" y=\"2\"/>\n      <point x=\"1054\" y=\"48\" type=\"curve\"/>\n      <point x=\"1040\" y=\"292\" type=\"line\"/>\n      <point x=\"922\" y=\"252\"/>\n      <point x=\"806\" y=\"232\"/>\n      <point x=\"692\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"232\"/>\n      <point x=\"365\" y=\"331\"/>\n      <point x=\"365\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"365\" y=\"909\"/>\n      <point x=\"583\" y=\"1188\"/>\n      <point x=\"879\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1188\"/>\n      <point x=\"1050\" y=\"1153\"/>\n      <point x=\"1120\" y=\"1076\" type=\"curve\"/>\n      <point x=\"1273\" y=\"1301\" type=\"line\"/>\n      <point x=\"1183\" y=\"1397\"/>\n      <point x=\"1069\" y=\"1440\"/>\n      <point x=\"908\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"1440\"/>\n      <point x=\"87\" y=\"1063\"/>\n      <point x=\"87\" y=\"523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"87\" y=\"161\"/>\n      <point x=\"267\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"C.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"531\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"-9\"/>\n      <point x=\"706\" y=\"1\"/>\n      <point x=\"789\" y=\"22\" type=\"curve\"/>\n      <point x=\"755\" y=\"150\" type=\"line\"/>\n      <point x=\"690\" y=\"134\"/>\n      <point x=\"621\" y=\"126\"/>\n      <point x=\"556\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"126\"/>\n      <point x=\"227\" y=\"192\"/>\n      <point x=\"227\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"445\"/>\n      <point x=\"342\" y=\"513\"/>\n      <point x=\"516\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"513\"/>\n      <point x=\"679\" y=\"496\"/>\n      <point x=\"727\" y=\"467\" type=\"curve\"/>\n      <point x=\"806\" y=\"588\" type=\"line\"/>\n      <point x=\"749\" y=\"626\"/>\n      <point x=\"650\" y=\"648\"/>\n      <point x=\"514\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"648\"/>\n      <point x=\"65\" y=\"528\"/>\n      <point x=\"65\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"65\" y=\"101\"/>\n      <point x=\"222\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"CR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"000D\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0106\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"acutecomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010C\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"caroncomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C7\"/>\n  <anchor x=\"518\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"cedillacomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0108\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010A\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_he-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Che-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0427\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"597\" y=\"479\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"479\"/>\n      <point x=\"844\" y=\"527\"/>\n      <point x=\"943\" y=\"601\" type=\"curve\"/>\n      <point x=\"968\" y=\"861\" type=\"line\"/>\n      <point x=\"821\" y=\"769\"/>\n      <point x=\"748\" y=\"731\"/>\n      <point x=\"638\" y=\"731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"731\"/>\n      <point x=\"442\" y=\"798\"/>\n      <point x=\"442\" y=\"921\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"1033\"/>\n      <point x=\"468\" y=\"1153\"/>\n      <point x=\"496\" y=\"1286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"524\" y=\"1420\" type=\"line\"/>\n      <point x=\"257\" y=\"1420\" type=\"line\"/>\n      <point x=\"229\" y=\"1300\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"1171\"/>\n      <point x=\"170\" y=\"1019\"/>\n      <point x=\"170\" y=\"895\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"170\" y=\"642\"/>\n      <point x=\"338\" y=\"479\"/>\n    </contour>\n    <contour>\n      <point x=\"708\" y=\"0\" type=\"line\"/>\n      <point x=\"974\" y=\"0\" type=\"line\"/>\n      <point x=\"1224\" y=\"1420\" type=\"line\"/>\n      <point x=\"958\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_hedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Chedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B6\"/>\n  <outline>\n    <contour>\n      <point x=\"998\" y=\"-319\" type=\"line\"/>\n      <point x=\"1044\" y=\"-188\"/>\n      <point x=\"1111\" y=\"97\"/>\n      <point x=\"1119\" y=\"244\" type=\"curve\"/>\n      <point x=\"885\" y=\"244\" type=\"line\"/>\n      <point x=\"850\" y=\"46\" type=\"line\"/>\n      <point x=\"832\" y=\"-42\"/>\n      <point x=\"803\" y=\"-147\"/>\n      <point x=\"762\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <component base=\"Che-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>Che-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_hi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Chi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A7\"/>\n  <outline>\n    <component base=\"X\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/C_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023B\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"871\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"426\" y=\"-328\" type=\"line\"/>\n      <point x=\"1145\" y=\"1662\" type=\"line\"/>\n      <point x=\"963\" y=\"1711\" type=\"line\"/>\n      <point x=\"243\" y=\"-279\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"D\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0044\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"631\" y=\"710\" name=\"center\"/>\n  <anchor x=\"717\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"270\" y=\"0\" type=\"line\"/>\n      <point x=\"311\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"0\"/>\n      <point x=\"1189\" y=\"316\"/>\n      <point x=\"1189\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1189\" y=\"1222\"/>\n      <point x=\"941\" y=\"1440\"/>\n      <point x=\"521\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"1440\"/>\n      <point x=\"354\" y=\"1433\"/>\n      <point x=\"280\" y=\"1420\" type=\"curve\"/>\n      <point x=\"297\" y=\"1168\" type=\"line\"/>\n      <point x=\"361\" y=\"1181\"/>\n      <point x=\"429\" y=\"1188\"/>\n      <point x=\"496\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"1188\"/>\n      <point x=\"912\" y=\"1057\"/>\n      <point x=\"912\" y=\"835\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"468\"/>\n      <point x=\"704\" y=\"252\"/>\n      <point x=\"353\" y=\"252\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"252\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"30\" y=\"0\" type=\"line\"/>\n      <point x=\"296\" y=\"0\" type=\"line\"/>\n      <point x=\"544\" y=\"1420\" type=\"line\"/>\n      <point x=\"280\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"D.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"251\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"0\"/>\n      <point x=\"810\" y=\"103\"/>\n      <point x=\"810\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"531\"/>\n      <point x=\"690\" y=\"639\"/>\n      <point x=\"452\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"639\" type=\"line\"/>\n      <point x=\"253\" y=\"504\" type=\"line\"/>\n      <point x=\"452\" y=\"504\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"504\"/>\n      <point x=\"651\" y=\"440\"/>\n      <point x=\"651\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"194\"/>\n      <point x=\"584\" y=\"135\"/>\n      <point x=\"452\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_african.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0189\"/>\n  <outline>\n    <component base=\"Eth\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010E\"/>\n  <outline>\n    <component base=\"D\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_croat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dcroat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0110\"/>\n  <outline>\n    <component base=\"Eth\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"De-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0414\"/>\n  <note>\nuni0414\n</note>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"199\" type=\"line\"/>\n      <point x=\"998\" y=\"199\" type=\"line\"/>\n      <point x=\"1214\" y=\"1420\" type=\"line\"/>\n      <point x=\"490\" y=\"1420\" type=\"line\"/>\n      <point x=\"445\" y=\"1176\" type=\"line\"/>\n      <point x=\"905\" y=\"1176\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"119\" y=\"-319\" type=\"line\"/>\n      <point x=\"152\" y=\"-196\"/>\n      <point x=\"179\" y=\"-72\"/>\n      <point x=\"207\" y=\"57\" type=\"curve\"/>\n      <point x=\"110\" y=\"0\" type=\"line\"/>\n      <point x=\"935\" y=\"0\" type=\"line\"/>\n      <point x=\"850\" y=\"46\" type=\"line\"/>\n      <point x=\"832\" y=\"-42\"/>\n      <point x=\"803\" y=\"-147\"/>\n      <point x=\"762\" y=\"-270\" type=\"curve\"/>\n      <point x=\"998\" y=\"-319\" type=\"line\"/>\n      <point x=\"1044\" y=\"-188\"/>\n      <point x=\"1112\" y=\"107\"/>\n      <point x=\"1119\" y=\"244\" type=\"curve\"/>\n      <point x=\"4\" y=\"244\" type=\"line\"/>\n      <point x=\"-33\" y=\"73\"/>\n      <point x=\"-72\" y=\"-99\"/>\n      <point x=\"-118\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"335\" y=\"219\" type=\"line\"/>\n      <point x=\"442\" y=\"351\"/>\n      <point x=\"545\" y=\"689\"/>\n      <point x=\"613\" y=\"1005\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"1420\" type=\"line\"/>\n      <point x=\"461\" y=\"1420\" type=\"line\"/>\n      <point x=\"382\" y=\"1061\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"701\"/>\n      <point x=\"188\" y=\"349\"/>\n      <point x=\"72\" y=\"233\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_e-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"De-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"266\" y=\"0\" type=\"line\"/>\n      <point x=\"690\" y=\"1113\" type=\"line\"/>\n      <point x=\"718\" y=\"1113\" type=\"line\"/>\n      <point x=\"748\" y=\"752\"/>\n      <point x=\"761\" y=\"371\"/>\n      <point x=\"753\" y=\"0\" type=\"curve\"/>\n      <point x=\"1013\" y=\"0\" type=\"line\"/>\n      <point x=\"1010\" y=\"484\"/>\n      <point x=\"983\" y=\"941\"/>\n      <point x=\"920\" y=\"1421\" type=\"curve\"/>\n      <point x=\"583\" y=\"1421\" type=\"line\"/>\n      <point x=\"-3\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"119\" y=\"-319\" type=\"line\"/>\n      <point x=\"148\" y=\"-193\"/>\n      <point x=\"178\" y=\"-69\"/>\n      <point x=\"207\" y=\"57\" type=\"curve\"/>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n      <point x=\"935\" y=\"0\" type=\"line\"/>\n      <point x=\"850\" y=\"46\" type=\"line\"/>\n      <point x=\"832\" y=\"-42\"/>\n      <point x=\"803\" y=\"-147\"/>\n      <point x=\"762\" y=\"-270\" type=\"curve\"/>\n      <point x=\"998\" y=\"-319\" type=\"line\"/>\n      <point x=\"1044\" y=\"-188\"/>\n      <point x=\"1111\" y=\"97\"/>\n      <point x=\"1119\" y=\"244\" type=\"curve\"/>\n      <point x=\"4\" y=\"244\" type=\"line\"/>\n      <point x=\"-37\" y=\"73\"/>\n      <point x=\"-77\" y=\"-99\"/>\n      <point x=\"-118\" y=\"-270\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_elta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Delta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0394\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"756\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-65\" y=\"0\" type=\"line\"/>\n      <point x=\"205\" y=\"0\" type=\"line\"/>\n      <point x=\"691\" y=\"1113\" type=\"line\"/>\n      <point x=\"723\" y=\"1113\" type=\"line\"/>\n      <point x=\"758\" y=\"742\"/>\n      <point x=\"793\" y=\"371\"/>\n      <point x=\"809\" y=\"0\" type=\"curve\"/>\n      <point x=\"1079\" y=\"0\" type=\"line\"/>\n      <point x=\"1047\" y=\"474\"/>\n      <point x=\"995\" y=\"947\"/>\n      <point x=\"923\" y=\"1421\" type=\"curve\"/>\n      <point x=\"594\" y=\"1421\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"863\" y=\"0\" type=\"line\"/>\n      <point x=\"897\" y=\"244\" type=\"line\"/>\n      <point x=\"177\" y=\"244\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0402\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"542\" y=\"-20\" type=\"line\"/>\n      <point x=\"549\" y=\"-20\"/>\n      <point x=\"556\" y=\"-20\"/>\n      <point x=\"563\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"-20\"/>\n      <point x=\"1112\" y=\"305\"/>\n      <point x=\"1112\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"745\"/>\n      <point x=\"961\" y=\"924\"/>\n      <point x=\"716\" y=\"924\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"924\"/>\n      <point x=\"484\" y=\"894\"/>\n      <point x=\"403\" y=\"823\" type=\"curve\"/>\n      <point x=\"396\" y=\"578\" type=\"line\"/>\n      <point x=\"501\" y=\"644\"/>\n      <point x=\"586\" y=\"672\"/>\n      <point x=\"658\" y=\"672\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"759\" y=\"672\"/>\n      <point x=\"835\" y=\"618\"/>\n      <point x=\"835\" y=\"484\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"315\"/>\n      <point x=\"713\" y=\"231\"/>\n      <point x=\"568\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"233\"/>\n      <point x=\"557\" y=\"233\"/>\n      <point x=\"551\" y=\"233\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"131\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"381\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"117\" y=\"1176\" type=\"line\"/>\n      <point x=\"979\" y=\"1176\" type=\"line\"/>\n      <point x=\"1022\" y=\"1420\" type=\"line\"/>\n      <point x=\"160\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_ze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0405\"/>\n  <outline>\n    <component base=\"S\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/D_zhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dzhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"0\" type=\"line\"/>\n      <point x=\"1234\" y=\"1420\" type=\"line\"/>\n      <point x=\"968\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"562\" y=\"-319\" type=\"line\"/>\n      <point x=\"608\" y=\"-188\"/>\n      <point x=\"675\" y=\"97\"/>\n      <point x=\"683\" y=\"244\" type=\"curve\"/>\n      <point x=\"414\" y=\"46\" type=\"line\"/>\n      <point x=\"404\" y=\"-43\"/>\n      <point x=\"363\" y=\"-162\"/>\n      <point x=\"326\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"102\" y=\"0\" type=\"line\"/>\n      <point x=\"913\" y=\"0\" type=\"line\"/>\n      <point x=\"946\" y=\"244\" type=\"line\"/>\n      <point x=\"135\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"30\" y=\"0\" type=\"line\"/>\n      <point x=\"296\" y=\"0\" type=\"line\"/>\n      <point x=\"546\" y=\"1420\" type=\"line\"/>\n      <point x=\"280\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0404\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"625\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"-20\"/>\n      <point x=\"911\" y=\"2\"/>\n      <point x=\"1054\" y=\"48\" type=\"curve\"/>\n      <point x=\"1040\" y=\"292\" type=\"line\"/>\n      <point x=\"922\" y=\"252\"/>\n      <point x=\"806\" y=\"232\"/>\n      <point x=\"692\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"232\"/>\n      <point x=\"355\" y=\"331\"/>\n      <point x=\"355\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"909\"/>\n      <point x=\"573\" y=\"1188\"/>\n      <point x=\"879\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1188\"/>\n      <point x=\"1050\" y=\"1153\"/>\n      <point x=\"1120\" y=\"1076\" type=\"curve\"/>\n      <point x=\"1273\" y=\"1301\" type=\"line\"/>\n      <point x=\"1183\" y=\"1397\"/>\n      <point x=\"1069\" y=\"1440\"/>\n      <point x=\"908\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"1440\"/>\n      <point x=\"87\" y=\"1063\"/>\n      <point x=\"87\" y=\"523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"87\" y=\"161\"/>\n      <point x=\"267\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"190\" y=\"605\" type=\"line\"/>\n      <point x=\"870\" y=\"605\" type=\"line\"/>\n      <point x=\"913\" y=\"849\" type=\"line\"/>\n      <point x=\"233\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0045\"/>\n  <anchor x=\"546\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"942\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"797\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"182\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"316\" y=\"0\" type=\"line\"/>\n      <point x=\"566\" y=\"1420\" type=\"line\"/>\n      <point x=\"300\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"1024\" y=\"0\" type=\"line\"/>\n      <point x=\"1067\" y=\"244\" type=\"line\"/>\n      <point x=\"94\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"589\" type=\"line\"/>\n      <point x=\"948\" y=\"589\" type=\"line\"/>\n      <point x=\"991\" y=\"833\" type=\"line\"/>\n      <point x=\"197\" y=\"833\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"257\" y=\"1176\" type=\"line\"/>\n      <point x=\"1231\" y=\"1176\" type=\"line\"/>\n      <point x=\"1274\" y=\"1420\" type=\"line\"/>\n      <point x=\"300\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"772\" y=\"0\" type=\"line\"/>\n      <point x=\"772\" y=\"135\" type=\"line\"/>\n      <point x=\"109\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"254\" type=\"line\"/>\n      <point x=\"646\" y=\"254\" type=\"line\"/>\n      <point x=\"646\" y=\"385\" type=\"line\"/>\n      <point x=\"109\" y=\"385\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"504\" type=\"line\"/>\n      <point x=\"772\" y=\"504\" type=\"line\"/>\n      <point x=\"772\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C9\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"acutecomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ebreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0114\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"brevecomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011A\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"caroncomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CA\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBE\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"40\"/>\n    <component base=\"acutecomb.case\" xOffset=\"477\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC6\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"39\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC0\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"40\"/>\n    <component base=\"gravecomb.case\" xOffset=\"477\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC2\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"40\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"477\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC4\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"40\"/>\n    <component base=\"tildecomb.case\" xOffset=\"107\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CB\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0116\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB8\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"39\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_f-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ef-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0424\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"376\" y=\"-20\" type=\"line\"/>\n      <point x=\"630\" y=\"-20\" type=\"line\"/>\n      <point x=\"670\" y=\"208\" type=\"line\"/>\n      <point x=\"648\" y=\"271\" type=\"line\"/>\n      <point x=\"810\" y=\"1189\" type=\"line\"/>\n      <point x=\"853\" y=\"1248\" type=\"line\"/>\n      <point x=\"890\" y=\"1460\" type=\"line\"/>\n      <point x=\"636\" y=\"1460\" type=\"line\"/>\n      <point x=\"599\" y=\"1248\" type=\"line\"/>\n      <point x=\"623\" y=\"1189\" type=\"line\"/>\n      <point x=\"461\" y=\"271\" type=\"line\"/>\n      <point x=\"416\" y=\"208\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"552\" y=\"150\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"923\" y=\"150\"/>\n      <point x=\"1184\" y=\"420\"/>\n      <point x=\"1184\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1184\" y=\"1156\"/>\n      <point x=\"1008\" y=\"1289\"/>\n      <point x=\"715\" y=\"1289\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"1289\"/>\n      <point x=\"82\" y=\"1019\"/>\n      <point x=\"82\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"82\" y=\"283\"/>\n      <point x=\"259\" y=\"150\"/>\n    </contour>\n    <contour>\n      <point x=\"584\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"434\" y=\"354\"/>\n      <point x=\"357\" y=\"435\"/>\n      <point x=\"357\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"895\"/>\n      <point x=\"510\" y=\"1085\"/>\n      <point x=\"683\" y=\"1085\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"1085\"/>\n      <point x=\"909\" y=\"1005\"/>\n      <point x=\"909\" y=\"831\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"545\"/>\n      <point x=\"764\" y=\"354\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_f-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ef-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"531\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"49\"/>\n      <point x=\"1180\" y=\"388\"/>\n      <point x=\"1180\" y=\"884\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1180\" y=\"1241\"/>\n      <point x=\"1008\" y=\"1398\"/>\n      <point x=\"721\" y=\"1398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"322\" y=\"1398\"/>\n      <point x=\"73\" y=\"1064\"/>\n      <point x=\"73\" y=\"562\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"73\" y=\"208\"/>\n      <point x=\"245\" y=\"49\"/>\n    </contour>\n    <contour>\n      <point x=\"354\" y=\"-80\" type=\"line\"/>\n      <point x=\"618\" y=\"-80\" type=\"line\"/>\n      <point x=\"668\" y=\"208\" type=\"line\"/>\n      <point x=\"651\" y=\"271\" type=\"line\"/>\n      <point x=\"813\" y=\"1189\" type=\"line\"/>\n      <point x=\"851\" y=\"1248\" type=\"line\"/>\n      <point x=\"895\" y=\"1500\" type=\"line\"/>\n      <point x=\"631\" y=\"1500\" type=\"line\"/>\n      <point x=\"587\" y=\"1248\" type=\"line\"/>\n      <point x=\"606\" y=\"1189\" type=\"line\"/>\n      <point x=\"444\" y=\"271\" type=\"line\"/>\n      <point x=\"404\" y=\"208\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"569\" y=\"280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"280\"/>\n      <point x=\"348\" y=\"352\"/>\n      <point x=\"348\" y=\"568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"348\" y=\"942\"/>\n      <point x=\"514\" y=\"1167\"/>\n      <point x=\"686\" y=\"1167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"1167\"/>\n      <point x=\"905\" y=\"1099\"/>\n      <point x=\"905\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"530\"/>\n      <point x=\"763\" y=\"280\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Egrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C8\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"gravecomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBA\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_l-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"El-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041B\"/>\n  <note>\nuni041B\n</note>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"5\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"-20\"/>\n      <point x=\"498\" y=\"349\"/>\n      <point x=\"621\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"1031\"/>\n      <point x=\"659\" y=\"1131\"/>\n      <point x=\"681\" y=\"1232\" type=\"curve\"/>\n      <point x=\"580\" y=\"1176\" type=\"line\"/>\n      <point x=\"923\" y=\"1176\" type=\"line\"/>\n      <point x=\"715\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"0\" type=\"line\"/>\n      <point x=\"1234\" y=\"1420\" type=\"line\"/>\n      <point x=\"464\" y=\"1420\" type=\"line\"/>\n      <point x=\"428\" y=\"1255\"/>\n      <point x=\"403\" y=\"1090\"/>\n      <point x=\"369\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"552\"/>\n      <point x=\"192\" y=\"232\"/>\n      <point x=\"3\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-7\" y=\"232\"/>\n      <point x=\"-18\" y=\"233\"/>\n      <point x=\"-30\" y=\"236\" type=\"curve\"/>\n      <point x=\"-75\" y=\"-12\" type=\"line\"/>\n      <point x=\"-47\" y=\"-18\"/>\n      <point x=\"-20\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_l-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"El-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-53\" y=\"0\" type=\"line\"/>\n      <point x=\"224\" y=\"0\" type=\"line\"/>\n      <point x=\"689\" y=\"1113\" type=\"line\"/>\n      <point x=\"719\" y=\"1113\" type=\"line\"/>\n      <point x=\"765\" y=\"742\"/>\n      <point x=\"783\" y=\"355\"/>\n      <point x=\"797\" y=\"0\" type=\"curve\"/>\n      <point x=\"1071\" y=\"0\" type=\"line\"/>\n      <point x=\"1041\" y=\"473\"/>\n      <point x=\"1005\" y=\"943\"/>\n      <point x=\"924\" y=\"1421\" type=\"curve\"/>\n      <point x=\"573\" y=\"1421\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_m-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Em-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041C\"/>\n  <outline>\n    <component base=\"M\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Emacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0112\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"macroncomb.case\" xOffset=\"42\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_n-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"En-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041D\"/>\n  <outline>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_ndescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Endescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04A2\"/>\n  <outline>\n    <contour>\n      <point x=\"998\" y=\"-319\" type=\"line\"/>\n      <point x=\"1044\" y=\"-188\"/>\n      <point x=\"1111\" y=\"97\"/>\n      <point x=\"1119\" y=\"244\" type=\"curve\"/>\n      <point x=\"885\" y=\"244\" type=\"line\"/>\n      <point x=\"850\" y=\"46\" type=\"line\"/>\n      <point x=\"832\" y=\"-42\"/>\n      <point x=\"803\" y=\"-147\"/>\n      <point x=\"762\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <component base=\"En-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>En-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_ng.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eng\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014A\"/>\n  <guideline x=\"663\" y=\"123\" angle=\"90\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"748\" y=\"151\" type=\"line\"/>\n      <point x=\"715\" y=\"-38\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"-163\"/>\n      <point x=\"628\" y=\"-212\"/>\n      <point x=\"439\" y=\"-239\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"-251\" type=\"line\"/>\n      <point x=\"366\" y=\"-477\" type=\"line\"/>\n      <point x=\"441\" y=\"-472\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"-449\"/>\n      <point x=\"922\" y=\"-311\"/>\n      <point x=\"974\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1001\" y=\"151\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0118\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"783\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"-424\"/>\n      <point x=\"904\" y=\"-408\"/>\n      <point x=\"950\" y=\"-386\" type=\"curve\"/>\n      <point x=\"908\" y=\"-172\" type=\"line\"/>\n      <point x=\"885\" y=\"-180\"/>\n      <point x=\"861\" y=\"-185\"/>\n      <point x=\"840\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"-185\"/>\n      <point x=\"781\" y=\"-170\"/>\n      <point x=\"781\" y=\"-142\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"-77\"/>\n      <point x=\"897\" y=\"-33\"/>\n      <point x=\"1024\" y=\"0\" type=\"curve\"/>\n      <point x=\"985\" y=\"30\" type=\"line\"/>\n      <point x=\"775\" y=\"17\" type=\"line\"/>\n      <point x=\"775\" y=\"-33\" type=\"line\"/>\n      <point x=\"642\" y=\"-75\"/>\n      <point x=\"564\" y=\"-157\"/>\n      <point x=\"564\" y=\"-255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"-368\"/>\n      <point x=\"639\" y=\"-424\"/>\n    </contour>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_open.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0190\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"518\" y=\"1440\"/>\n      <point x=\"260\" y=\"1314\"/>\n      <point x=\"260\" y=\"1029\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"892\"/>\n      <point x=\"351\" y=\"794\"/>\n      <point x=\"569\" y=\"763\" type=\"curve\"/>\n      <point x=\"562\" y=\"819\" type=\"line\"/>\n      <point x=\"542\" y=\"702\" type=\"line\"/>\n      <point x=\"568\" y=\"756\" type=\"line\"/>\n      <point x=\"305\" y=\"751\"/>\n      <point x=\"80\" y=\"587\"/>\n      <point x=\"80\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"121\"/>\n      <point x=\"263\" y=\"-20\"/>\n      <point x=\"576\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"-20\"/>\n      <point x=\"889\" y=\"-4\"/>\n      <point x=\"1031\" y=\"48\" type=\"curve\"/>\n      <point x=\"1006\" y=\"280\" type=\"line\"/>\n      <point x=\"855\" y=\"242\"/>\n      <point x=\"777\" y=\"232\"/>\n      <point x=\"616\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"232\"/>\n      <point x=\"364\" y=\"289\"/>\n      <point x=\"364\" y=\"386\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"534\"/>\n      <point x=\"511\" y=\"620\"/>\n      <point x=\"681\" y=\"620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"620\" type=\"line\"/>\n      <point x=\"878\" y=\"872\" type=\"line\"/>\n      <point x=\"632\" y=\"879\"/>\n      <point x=\"529\" y=\"927\"/>\n      <point x=\"529\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"1149\"/>\n      <point x=\"656\" y=\"1189\"/>\n      <point x=\"806\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"1189\"/>\n      <point x=\"1006\" y=\"1158\"/>\n      <point x=\"1077\" y=\"1089\" type=\"curve\"/>\n      <point x=\"1276\" y=\"1278\" type=\"line\"/>\n      <point x=\"1157\" y=\"1389\"/>\n      <point x=\"1023\" y=\"1440\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_psilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Epsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0395\"/>\n  <outline>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_psilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Epsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0388\"/>\n  <anchor x=\"634\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"884\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"249\" y=\"0\" type=\"line\"/>\n      <point x=\"515\" y=\"0\" type=\"line\"/>\n      <point x=\"765\" y=\"1420\" type=\"line\"/>\n      <point x=\"499\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"249\" y=\"0\" type=\"line\"/>\n      <point x=\"1024\" y=\"0\" type=\"line\"/>\n      <point x=\"1067\" y=\"244\" type=\"line\"/>\n      <point x=\"293\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"353\" y=\"589\" type=\"line\"/>\n      <point x=\"948\" y=\"589\" type=\"line\"/>\n      <point x=\"991\" y=\"833\" type=\"line\"/>\n      <point x=\"396\" y=\"833\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"456\" y=\"1176\" type=\"line\"/>\n      <point x=\"1231\" y=\"1176\" type=\"line\"/>\n      <point x=\"1274\" y=\"1420\" type=\"line\"/>\n      <point x=\"499\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"71\" y=\"1040\" type=\"line\"/>\n      <point x=\"323\" y=\"1040\" type=\"line\"/>\n      <point x=\"457\" y=\"1420\" type=\"line\"/>\n      <point x=\"176\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_r-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Er-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0420\"/>\n  <outline>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_reversed-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ereversed-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"355\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"-20\"/>\n      <point x=\"1176\" y=\"357\"/>\n      <point x=\"1176\" y=\"897\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1176\" y=\"1259\"/>\n      <point x=\"996\" y=\"1440\"/>\n      <point x=\"638\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"1440\"/>\n      <point x=\"372\" y=\"1414\"/>\n      <point x=\"240\" y=\"1362\" type=\"curve\"/>\n      <point x=\"278\" y=\"1129\" type=\"line\"/>\n      <point x=\"377\" y=\"1168\"/>\n      <point x=\"475\" y=\"1188\"/>\n      <point x=\"571\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"1188\"/>\n      <point x=\"908\" y=\"1089\"/>\n      <point x=\"908\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"511\"/>\n      <point x=\"690\" y=\"232\"/>\n      <point x=\"384\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"232\"/>\n      <point x=\"213\" y=\"267\"/>\n      <point x=\"143\" y=\"344\" type=\"curve\"/>\n      <point x=\"-10\" y=\"119\" type=\"line\"/>\n      <point x=\"80\" y=\"23\"/>\n      <point x=\"194\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"601\" type=\"line\"/>\n      <point x=\"1030\" y=\"601\" type=\"line\"/>\n      <point x=\"1073\" y=\"845\" type=\"line\"/>\n      <point x=\"393\" y=\"845\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_reversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ereversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"018E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1364\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"698\" y=\"0\" type=\"line\"/>\n      <point x=\"964\" y=\"0\" type=\"line\"/>\n      <point x=\"1214\" y=\"1420\" type=\"line\"/>\n      <point x=\"948\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-10\" y=\"0\" type=\"line\"/>\n      <point x=\"964\" y=\"0\" type=\"line\"/>\n      <point x=\"1007\" y=\"244\" type=\"line\"/>\n      <point x=\"33\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"273\" y=\"587\" type=\"line\"/>\n      <point x=\"1067\" y=\"587\" type=\"line\"/>\n      <point x=\"1110\" y=\"831\" type=\"line\"/>\n      <point x=\"316\" y=\"831\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"197\" y=\"1176\" type=\"line\"/>\n      <point x=\"1170\" y=\"1176\" type=\"line\"/>\n      <point x=\"1214\" y=\"1420\" type=\"line\"/>\n      <point x=\"240\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_s-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Es-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0421\"/>\n  <outline>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_sh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Esh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A9\"/>\n  <outline>\n    <component base=\"Sigma\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_ta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0397\"/>\n  <outline>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_tatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Etatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0389\"/>\n  <anchor x=\"622\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"872\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"0\" type=\"line\"/>\n      <point x=\"1234\" y=\"1420\" type=\"line\"/>\n      <point x=\"968\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"230\" y=\"0\" type=\"line\"/>\n      <point x=\"496\" y=\"0\" type=\"line\"/>\n      <point x=\"746\" y=\"1420\" type=\"line\"/>\n      <point x=\"480\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"412\" y=\"585\" type=\"line\"/>\n      <point x=\"1023\" y=\"585\" type=\"line\"/>\n      <point x=\"1056\" y=\"829\" type=\"line\"/>\n      <point x=\"445\" y=\"829\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"72\" y=\"1040\" type=\"line\"/>\n      <point x=\"324\" y=\"1040\" type=\"line\"/>\n      <point x=\"458\" y=\"1420\" type=\"line\"/>\n      <point x=\"177\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_th.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D0\"/>\n  <outline>\n    <contour>\n      <point x=\"22\" y=\"585\" type=\"line\"/>\n      <point x=\"661\" y=\"585\" type=\"line\"/>\n      <point x=\"705\" y=\"829\" type=\"line\"/>\n      <point x=\"66\" y=\"829\" type=\"line\"/>\n    </contour>\n    <component base=\"D\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Etilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBC\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"tildecomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/E_zh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ezh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B7\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"-20\"/>\n      <point x=\"1087\" y=\"163\"/>\n      <point x=\"1087\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"717\"/>\n      <point x=\"919\" y=\"859\"/>\n      <point x=\"613\" y=\"864\" type=\"curve\"/>\n      <point x=\"723\" y=\"821\" type=\"line\"/>\n      <point x=\"1144\" y=\"1162\" type=\"line\"/>\n      <point x=\"1090\" y=\"1420\" type=\"line\"/>\n      <point x=\"303\" y=\"1420\" type=\"line\"/>\n      <point x=\"260\" y=\"1177\" type=\"line\"/>\n      <point x=\"954\" y=\"1177\" type=\"line\"/>\n      <point x=\"873\" y=\"1238\" type=\"line\"/>\n      <point x=\"373\" y=\"834\" type=\"line\"/>\n      <point x=\"406\" y=\"626\" type=\"line\"/>\n      <point x=\"491\" y=\"626\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"626\"/>\n      <point x=\"806\" y=\"564\"/>\n      <point x=\"806\" y=\"454\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"314\"/>\n      <point x=\"695\" y=\"232\"/>\n      <point x=\"508\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"232\"/>\n      <point x=\"269\" y=\"272\"/>\n      <point x=\"163\" y=\"359\" type=\"curve\"/>\n      <point x=\"-10\" y=\"151\" type=\"line\"/>\n      <point x=\"104\" y=\"34\"/>\n      <point x=\"252\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/F_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"F\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0046\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"70\" y=\"0\" type=\"line\"/>\n      <point x=\"336\" y=\"0\" type=\"line\"/>\n      <point x=\"586\" y=\"1420\" type=\"line\"/>\n      <point x=\"320\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"223\" y=\"529\" type=\"line\"/>\n      <point x=\"957\" y=\"529\" type=\"line\"/>\n      <point x=\"1000\" y=\"774\" type=\"line\"/>\n      <point x=\"267\" y=\"774\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"277\" y=\"1176\" type=\"line\"/>\n      <point x=\"1251\" y=\"1176\" type=\"line\"/>\n      <point x=\"1294\" y=\"1420\" type=\"line\"/>\n      <point x=\"320\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/F_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"F.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"223\" type=\"line\"/>\n      <point x=\"643\" y=\"223\" type=\"line\"/>\n      <point x=\"643\" y=\"359\" type=\"line\"/>\n      <point x=\"109\" y=\"359\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"504\" type=\"line\"/>\n      <point x=\"772\" y=\"504\" type=\"line\"/>\n      <point x=\"772\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/F_hook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Fhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0191\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"97\" y=\"151\" type=\"line\"/>\n      <point x=\"64\" y=\"-33\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"41\" y=\"-162\"/>\n      <point x=\"-30\" y=\"-216\"/>\n      <point x=\"-191\" y=\"-246\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-234\" y=\"-254\" type=\"line\"/>\n      <point x=\"-218\" y=\"-476\" type=\"line\"/>\n      <point x=\"-187\" y=\"-472\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"-430\"/>\n      <point x=\"283\" y=\"-311\"/>\n      <point x=\"335\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"151\" type=\"line\"/>\n    </contour>\n    <component base=\"F\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"G\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0047\"/>\n  <anchor x=\"586\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"857\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"-20\"/>\n      <point x=\"974\" y=\"22\"/>\n      <point x=\"1040\" y=\"40\" type=\"curve\"/>\n      <point x=\"980\" y=\"282\" type=\"line\"/>\n      <point x=\"905\" y=\"264\"/>\n      <point x=\"785\" y=\"232\"/>\n      <point x=\"640\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"443\" y=\"232\"/>\n      <point x=\"343\" y=\"334\"/>\n      <point x=\"343\" y=\"539\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"343\" y=\"919\"/>\n      <point x=\"564\" y=\"1188\"/>\n      <point x=\"853\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"970\" y=\"1188\"/>\n      <point x=\"1055\" y=\"1139\"/>\n      <point x=\"1118\" y=\"1076\" type=\"curve\"/>\n      <point x=\"1273\" y=\"1299\" type=\"line\"/>\n      <point x=\"1197\" y=\"1381\"/>\n      <point x=\"1083\" y=\"1440\"/>\n      <point x=\"883\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"1440\"/>\n      <point x=\"66\" y=\"1046\"/>\n      <point x=\"66\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"66\" y=\"178\"/>\n      <point x=\"262\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"774\" y=\"40\" type=\"line\"/>\n      <point x=\"1040\" y=\"40\" type=\"line\"/>\n      <point x=\"1163\" y=\"735\" type=\"line\"/>\n      <point x=\"897\" y=\"735\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"624\" y=\"492\" type=\"line\"/>\n      <point x=\"1114\" y=\"492\" type=\"line\"/>\n      <point x=\"1157\" y=\"735\" type=\"line\"/>\n      <point x=\"667\" y=\"735\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"G.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"513\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"640\" y=\"-9\"/>\n      <point x=\"748\" y=\"10\"/>\n      <point x=\"787\" y=\"18\" type=\"curve\"/>\n      <point x=\"730\" y=\"144\" type=\"line\"/>\n      <point x=\"684\" y=\"135\"/>\n      <point x=\"617\" y=\"121\"/>\n      <point x=\"530\" y=\"120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"328\" y=\"118\"/>\n      <point x=\"227\" y=\"179\"/>\n      <point x=\"227\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"445\"/>\n      <point x=\"334\" y=\"513\"/>\n      <point x=\"516\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"513\"/>\n      <point x=\"686\" y=\"499\"/>\n      <point x=\"737\" y=\"477\" type=\"curve\"/>\n      <point x=\"808\" y=\"588\" type=\"line\"/>\n      <point x=\"761\" y=\"624\"/>\n      <point x=\"655\" y=\"648\"/>\n      <point x=\"507\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"648\"/>\n      <point x=\"65\" y=\"528\"/>\n      <point x=\"65\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"65\" y=\"92\"/>\n      <point x=\"213\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"643\" y=\"18\" type=\"line\"/>\n      <point x=\"787\" y=\"18\" type=\"line\"/>\n      <point x=\"787\" y=\"348\" type=\"line\"/>\n      <point x=\"643\" y=\"348\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"448\" y=\"213\" type=\"line\"/>\n      <point x=\"783\" y=\"213\" type=\"line\"/>\n      <point x=\"783\" y=\"348\" type=\"line\"/>\n      <point x=\"448\" y=\"348\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_amma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gamma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0393\"/>\n  <outline>\n    <component base=\"Ge-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_ammaafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gammaafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0194\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"371\" y=\"-462\" type=\"line\"/>\n      <point x=\"617\" y=\"-462\"/>\n      <point x=\"781\" y=\"-340\"/>\n      <point x=\"781\" y=\"-157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"-75\"/>\n      <point x=\"740\" y=\"8\"/>\n      <point x=\"617\" y=\"106\" type=\"curve\"/>\n      <point x=\"433\" y=\"61\" type=\"line\"/>\n      <point x=\"498\" y=\"-44\"/>\n      <point x=\"521\" y=\"-97\"/>\n      <point x=\"521\" y=\"-142\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"-201\"/>\n      <point x=\"476\" y=\"-241\"/>\n      <point x=\"408\" y=\"-241\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"371\" y=\"-462\" type=\"curve\"/>\n      <point x=\"408\" y=\"-241\" type=\"line\"/>\n      <point x=\"359\" y=\"-241\"/>\n      <point x=\"325\" y=\"-216\"/>\n      <point x=\"325\" y=\"-179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"-118\"/>\n      <point x=\"365\" y=\"-68\"/>\n      <point x=\"521\" y=\"61\" type=\"curve\"/>\n      <point x=\"335\" y=\"106\" type=\"line\"/>\n      <point x=\"175\" y=\"14\"/>\n      <point x=\"60\" y=\"-91\"/>\n      <point x=\"60\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"60\" y=\"-370\"/>\n      <point x=\"184\" y=\"-462\"/>\n    </contour>\n    <contour>\n      <point x=\"288\" y=\"0\" type=\"line\"/>\n      <point x=\"484\" y=\"51\" type=\"line\"/>\n      <point x=\"630\" y=\"0\" type=\"line\"/>\n      <point x=\"957\" y=\"368\"/>\n      <point x=\"1172\" y=\"856\"/>\n      <point x=\"1329\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1065\" y=\"1420\" type=\"line\"/>\n      <point x=\"929\" y=\"951\"/>\n      <point x=\"765\" y=\"552\"/>\n      <point x=\"534\" y=\"239\" type=\"curve\"/>\n      <point x=\"516\" y=\"239\" type=\"line\"/>\n      <point x=\"447\" y=\"1432\" type=\"line\"/>\n      <point x=\"185\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gbreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011E\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"brevecomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E6\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"caroncomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011C\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0122\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0120\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ge-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0413\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"70\" y=\"0\" type=\"line\"/>\n      <point x=\"338\" y=\"0\" type=\"line\"/>\n      <point x=\"588\" y=\"1420\" type=\"line\"/>\n      <point x=\"320\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"277\" y=\"1176\" type=\"line\"/>\n      <point x=\"1204\" y=\"1176\" type=\"line\"/>\n      <point x=\"1247\" y=\"1420\" type=\"line\"/>\n      <point x=\"320\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_ermandbls.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Germandbls\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E9E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"30\" y=\"0\" type=\"line\"/>\n      <point x=\"296\" y=\"0\" type=\"line\"/>\n      <point x=\"460\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"1107\"/>\n      <point x=\"590\" y=\"1188\"/>\n      <point x=\"773\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"1188\"/>\n      <point x=\"969\" y=\"1141\"/>\n      <point x=\"1025\" y=\"1052\" type=\"curve\"/>\n      <point x=\"1252\" y=\"1270\" type=\"line\"/>\n      <point x=\"1151\" y=\"1382\"/>\n      <point x=\"1002\" y=\"1440\"/>\n      <point x=\"817\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"1440\"/>\n      <point x=\"255\" y=\"1280\"/>\n      <point x=\"194\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"604\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"-20\"/>\n      <point x=\"1169\" y=\"140\"/>\n      <point x=\"1169\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"625\"/>\n      <point x=\"1099\" y=\"745\"/>\n      <point x=\"904\" y=\"840\" type=\"curve\"/>\n      <point x=\"925\" y=\"801\" type=\"line\"/>\n      <point x=\"1253\" y=\"1270\" type=\"line\"/>\n      <point x=\"974\" y=\"1300\" type=\"line\"/>\n      <point x=\"576\" y=\"689\" type=\"line\"/>\n      <point x=\"659\" y=\"663\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"616\"/>\n      <point x=\"891\" y=\"541\"/>\n      <point x=\"891\" y=\"428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"305\"/>\n      <point x=\"795\" y=\"232\"/>\n      <point x=\"633\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"232\"/>\n      <point x=\"494\" y=\"240\"/>\n      <point x=\"433\" y=\"253\" type=\"curve\"/>\n      <point x=\"366\" y=\"3\" type=\"line\"/>\n      <point x=\"424\" y=\"-11\"/>\n      <point x=\"510\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_hestroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ghestroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0492\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"110\" y=\"0\" type=\"line\"/>\n      <point x=\"378\" y=\"0\" type=\"line\"/>\n      <point x=\"628\" y=\"1420\" type=\"line\"/>\n      <point x=\"360\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"44\" y=\"567\" type=\"line\"/>\n      <point x=\"773\" y=\"567\" type=\"line\"/>\n      <point x=\"815\" y=\"811\" type=\"line\"/>\n      <point x=\"86\" y=\"811\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"318\" y=\"1176\" type=\"line\"/>\n      <point x=\"1204\" y=\"1176\" type=\"line\"/>\n      <point x=\"1247\" y=\"1420\" type=\"line\"/>\n      <point x=\"360\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_heupturn-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gheupturn-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0490\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"70\" y=\"0\" type=\"line\"/>\n      <point x=\"338\" y=\"0\" type=\"line\"/>\n      <point x=\"589\" y=\"1420\" type=\"line\"/>\n      <point x=\"321\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"278\" y=\"1176\" type=\"line\"/>\n      <point x=\"1224\" y=\"1176\" type=\"line\"/>\n      <point x=\"1267\" y=\"1420\" type=\"line\"/>\n      <point x=\"321\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"956\" y=\"1176\" type=\"line\"/>\n      <point x=\"1224\" y=\"1176\" type=\"line\"/>\n      <point x=\"1322\" y=\"1730\" type=\"line\"/>\n      <point x=\"1054\" y=\"1730\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0403\"/>\n  <outline>\n    <component base=\"Ge-cy\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gsmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0262\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"746\" y=\"1079\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"636\" y=\"-15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"-15\"/>\n      <point x=\"979\" y=\"17\"/>\n      <point x=\"1039\" y=\"30\" type=\"curve\"/>\n      <point x=\"988\" y=\"280\" type=\"line\"/>\n      <point x=\"915\" y=\"266\"/>\n      <point x=\"796\" y=\"242\"/>\n      <point x=\"656\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"242\"/>\n      <point x=\"344\" y=\"314\"/>\n      <point x=\"344\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"711\"/>\n      <point x=\"519\" y=\"837\"/>\n      <point x=\"780\" y=\"837\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"837\"/>\n      <point x=\"995\" y=\"817\"/>\n      <point x=\"1056\" y=\"783\" type=\"curve\"/>\n      <point x=\"1211\" y=\"1004\" type=\"line\"/>\n      <point x=\"1133\" y=\"1061\"/>\n      <point x=\"989\" y=\"1094\"/>\n      <point x=\"814\" y=\"1094\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"1094\"/>\n      <point x=\"57\" y=\"854\"/>\n      <point x=\"57\" y=\"446\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"57\" y=\"134\"/>\n      <point x=\"251\" y=\"-15\"/>\n    </contour>\n    <contour>\n      <point x=\"783\" y=\"30\" type=\"line\"/>\n      <point x=\"1039\" y=\"30\" type=\"line\"/>\n      <point x=\"1141\" y=\"609\" type=\"line\"/>\n      <point x=\"885\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"635\" y=\"388\" type=\"line\"/>\n      <point x=\"1096\" y=\"388\" type=\"line\"/>\n      <point x=\"1135\" y=\"609\" type=\"line\"/>\n      <point x=\"674\" y=\"609\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/G_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E4\"/>\n  <anchor x=\"586\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"857\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"-20\"/>\n      <point x=\"974\" y=\"22\"/>\n      <point x=\"1040\" y=\"40\" type=\"curve\"/>\n      <point x=\"980\" y=\"282\" type=\"line\"/>\n      <point x=\"905\" y=\"264\"/>\n      <point x=\"785\" y=\"232\"/>\n      <point x=\"640\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"443\" y=\"232\"/>\n      <point x=\"343\" y=\"334\"/>\n      <point x=\"343\" y=\"539\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"343\" y=\"919\"/>\n      <point x=\"564\" y=\"1188\"/>\n      <point x=\"853\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"970\" y=\"1188\"/>\n      <point x=\"1055\" y=\"1139\"/>\n      <point x=\"1118\" y=\"1076\" type=\"curve\"/>\n      <point x=\"1273\" y=\"1299\" type=\"line\"/>\n      <point x=\"1197\" y=\"1381\"/>\n      <point x=\"1083\" y=\"1440\"/>\n      <point x=\"883\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"1440\"/>\n      <point x=\"66\" y=\"1046\"/>\n      <point x=\"66\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"66\" y=\"178\"/>\n      <point x=\"262\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"774\" y=\"40\" type=\"line\"/>\n      <point x=\"1040\" y=\"40\" type=\"line\"/>\n      <point x=\"1163\" y=\"735\" type=\"line\"/>\n      <point x=\"897\" y=\"735\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"615\" y=\"387\" type=\"line\"/>\n      <point x=\"1195\" y=\"387\" type=\"line\"/>\n      <point x=\"1238\" y=\"630\" type=\"line\"/>\n      <point x=\"658\" y=\"630\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/H_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"H\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0048\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"634\" y=\"710\" name=\"center\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"177\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"0\" type=\"line\"/>\n      <point x=\"1234\" y=\"1420\" type=\"line\"/>\n      <point x=\"968\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"30\" y=\"0\" type=\"line\"/>\n      <point x=\"296\" y=\"0\" type=\"line\"/>\n      <point x=\"546\" y=\"1420\" type=\"line\"/>\n      <point x=\"280\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"585\" type=\"line\"/>\n      <point x=\"1023\" y=\"585\" type=\"line\"/>\n      <point x=\"1056\" y=\"829\" type=\"line\"/>\n      <point x=\"245\" y=\"829\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/H_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"H.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"593\" y=\"0\" type=\"line\"/>\n      <point x=\"744\" y=\"0\" type=\"line\"/>\n      <point x=\"744\" y=\"639\" type=\"line\"/>\n      <point x=\"593\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"95\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"251\" type=\"line\"/>\n      <point x=\"718\" y=\"251\" type=\"line\"/>\n      <point x=\"718\" y=\"386\" type=\"line\"/>\n      <point x=\"124\" y=\"386\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/H_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0425\"/>\n  <outline>\n    <component base=\"X\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/H_adescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B2\"/>\n  <outline>\n    <contour>\n      <point x=\"1000\" y=\"-319\" type=\"line\"/>\n      <point x=\"1048\" y=\"-149\"/>\n      <point x=\"1089\" y=\"45\"/>\n      <point x=\"1102\" y=\"165\" type=\"curve\"/>\n      <point x=\"1024\" y=\"277\" type=\"line\"/>\n      <point x=\"876\" y=\"175\" type=\"line\"/>\n      <point x=\"849\" y=\"46\" type=\"line\"/>\n      <point x=\"831\" y=\"-42\"/>\n      <point x=\"793\" y=\"-174\"/>\n      <point x=\"761\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <component base=\"X\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>X</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/H_ardsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hardsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"139\" y=\"0\" type=\"line\"/>\n      <point x=\"405\" y=\"0\" type=\"line\"/>\n      <point x=\"655\" y=\"1420\" type=\"line\"/>\n      <point x=\"389\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"114\" y=\"1176\" type=\"line\"/>\n      <point x=\"468\" y=\"1176\" type=\"line\"/>\n      <point x=\"510\" y=\"1420\" type=\"line\"/>\n      <point x=\"157\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"0\"/>\n      <point x=\"1139\" y=\"197\"/>\n      <point x=\"1139\" y=\"581\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1139\" y=\"854\"/>\n      <point x=\"932\" y=\"1012\"/>\n      <point x=\"673\" y=\"1012\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"1012\"/>\n      <point x=\"392\" y=\"932\"/>\n      <point x=\"312\" y=\"886\" type=\"curve\"/>\n      <point x=\"272\" y=\"629\" type=\"line\"/>\n      <point x=\"390\" y=\"713\"/>\n      <point x=\"473\" y=\"768\"/>\n      <point x=\"628\" y=\"768\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"768\"/>\n      <point x=\"862\" y=\"701\"/>\n      <point x=\"862\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"346\"/>\n      <point x=\"722\" y=\"244\"/>\n      <point x=\"505\" y=\"244\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"222\" y=\"244\" type=\"line\"/>\n      <point x=\"179\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/H_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0126\"/>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"1002\" type=\"line\"/>\n      <point x=\"1241\" y=\"1002\" type=\"line\"/>\n      <point x=\"1275\" y=\"1192\" type=\"line\"/>\n      <point x=\"159\" y=\"1192\" type=\"line\"/>\n    </contour>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/H_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021E\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/H_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0124\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/H_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E24\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0406\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0049\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"508\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"182\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"639\" y=\"0\" type=\"line\"/>\n      <point x=\"889\" y=\"1420\" type=\"line\"/>\n      <point x=\"623\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"58\" y=\"0\" type=\"line\"/>\n      <point x=\"956\" y=\"0\" type=\"line\"/>\n      <point x=\"999\" y=\"244\" type=\"line\"/>\n      <point x=\"101\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"265\" y=\"1176\" type=\"line\"/>\n      <point x=\"1163\" y=\"1176\" type=\"line\"/>\n      <point x=\"1206\" y=\"1420\" type=\"line\"/>\n      <point x=\"308\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"344\" y=\"0\" type=\"line\"/>\n      <point x=\"495\" y=\"0\" type=\"line\"/>\n      <point x=\"495\" y=\"639\" type=\"line\"/>\n      <point x=\"344\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"0\" type=\"line\"/>\n      <point x=\"725\" y=\"0\" type=\"line\"/>\n      <point x=\"725\" y=\"135\" type=\"line\"/>\n      <point x=\"115\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"505\" type=\"line\"/>\n      <point x=\"725\" y=\"505\" type=\"line\"/>\n      <point x=\"725\" y=\"639\" type=\"line\"/>\n      <point x=\"115\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_J_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"IJ\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0132\"/>\n  <guideline x=\"1046\" y=\"226\" angle=\"80\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"570\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"-20\"/>\n      <point x=\"1022\" y=\"123\"/>\n      <point x=\"1077\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"1420\" type=\"line\"/>\n      <point x=\"984\" y=\"1420\" type=\"line\"/>\n      <point x=\"811\" y=\"436\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"296\"/>\n      <point x=\"720\" y=\"232\"/>\n      <point x=\"596\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"471\" y=\"232\"/>\n      <point x=\"421\" y=\"293\"/>\n      <point x=\"436\" y=\"426\" type=\"curve\"/>\n      <point x=\"161\" y=\"426\" type=\"line\"/>\n      <point x=\"103\" y=\"120\"/>\n      <point x=\"231\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"40\" y=\"568\" type=\"line\"/>\n      <point x=\"626\" y=\"568\" type=\"line\"/>\n      <point x=\"669\" y=\"811\" type=\"line\"/>\n      <point x=\"83\" y=\"811\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"568\" type=\"line\"/>\n      <point x=\"456\" y=\"568\" type=\"line\"/>\n      <point x=\"606\" y=\"1420\" type=\"line\"/>\n      <point x=\"344\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"147\" y=\"1177\" type=\"line\"/>\n      <point x=\"713\" y=\"1177\" type=\"line\"/>\n      <point x=\"756\" y=\"1420\" type=\"line\"/>\n      <point x=\"190\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"800\" y=\"1177\" type=\"line\"/>\n      <point x=\"1083\" y=\"1177\" type=\"line\"/>\n      <point x=\"1125\" y=\"1420\" type=\"line\"/>\n      <point x=\"843\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_J__acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"IJ_acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"IJ\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-265\"/>\n    <component base=\"acutecomb.case\" xOffset=\"339\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ia-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"703\" y=\"423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"423\"/>\n      <point x=\"907\" y=\"436\"/>\n      <point x=\"1001\" y=\"458\" type=\"curve\"/>\n      <point x=\"1050\" y=\"727\" type=\"line\"/>\n      <point x=\"943\" y=\"694\"/>\n      <point x=\"866\" y=\"674\"/>\n      <point x=\"745\" y=\"675\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"676\"/>\n      <point x=\"439\" y=\"727\"/>\n      <point x=\"439\" y=\"902\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"439\" y=\"1087\"/>\n      <point x=\"597\" y=\"1188\"/>\n      <point x=\"840\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"939\" y=\"1188\"/>\n      <point x=\"1112\" y=\"1179\"/>\n      <point x=\"1190\" y=\"1166\" type=\"curve\"/>\n      <point x=\"1236\" y=\"1420\" type=\"line\"/>\n      <point x=\"1164\" y=\"1431\"/>\n      <point x=\"1006\" y=\"1440\"/>\n      <point x=\"894\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"1440\"/>\n      <point x=\"162\" y=\"1239\"/>\n      <point x=\"162\" y=\"877\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"162\" y=\"600\"/>\n      <point x=\"373\" y=\"423\"/>\n    </contour>\n    <contour>\n      <point x=\"-38\" y=\"0\" type=\"line\"/>\n      <point x=\"280\" y=\"0\" type=\"line\"/>\n      <point x=\"748\" y=\"659\" type=\"line\"/>\n      <point x=\"440\" y=\"645\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"720\" y=\"0\" type=\"line\"/>\n      <point x=\"986\" y=\"0\" type=\"line\"/>\n      <point x=\"1236\" y=\"1420\" type=\"line\"/>\n      <point x=\"970\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CD\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ibreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012C\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Icircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CE\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CF\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0130\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dotaccentcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECA\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ie-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0415\"/>\n  <outline>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_egrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iegrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0400\"/>\n  <outline>\n    <component base=\"Ie-cy\"/>\n    <component base=\"gravecomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Igrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CC\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ihookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC8\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ii-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0418\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"222\" y=\"0\" type=\"line\"/>\n      <point x=\"334\" y=\"0\" type=\"line\"/>\n      <point x=\"850\" y=\"962\" type=\"line\"/>\n      <point x=\"919\" y=\"962\" type=\"line\"/>\n      <point x=\"1000\" y=\"1420\" type=\"line\"/>\n      <point x=\"930\" y=\"1420\" type=\"line\"/>\n      <point x=\"414\" y=\"458\" type=\"line\"/>\n      <point x=\"303\" y=\"458\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"38\" y=\"0\" type=\"line\"/>\n      <point x=\"304\" y=\"0\" type=\"line\"/>\n      <point x=\"554\" y=\"1420\" type=\"line\"/>\n      <point x=\"288\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"710\" y=\"0\" type=\"line\"/>\n      <point x=\"976\" y=\"0\" type=\"line\"/>\n      <point x=\"1226\" y=\"1420\" type=\"line\"/>\n      <point x=\"960\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_igrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iigrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040D\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_ishort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iishort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0419\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"brevecomb-cy.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_macron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Imacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E2\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Imacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012A\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_o-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Io-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0401\"/>\n  <outline>\n    <component base=\"Ie-cy\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012E\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"541\" y=\"-424\"/>\n      <point x=\"626\" y=\"-405\"/>\n      <point x=\"685\" y=\"-378\" type=\"curve\"/>\n      <point x=\"643\" y=\"-164\" type=\"line\"/>\n      <point x=\"603\" y=\"-177\"/>\n      <point x=\"561\" y=\"-185\"/>\n      <point x=\"525\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"-185\"/>\n      <point x=\"446\" y=\"-167\"/>\n      <point x=\"446\" y=\"-132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-72\"/>\n      <point x=\"547\" y=\"0\"/>\n      <point x=\"659\" y=\"0\" type=\"curve\"/>\n      <point x=\"620\" y=\"30\" type=\"line\"/>\n      <point x=\"410\" y=\"17\" type=\"line\"/>\n      <point x=\"410\" y=\"-33\" type=\"line\"/>\n      <point x=\"290\" y=\"-73\"/>\n      <point x=\"219\" y=\"-151\"/>\n      <point x=\"219\" y=\"-245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"-365\"/>\n      <point x=\"305\" y=\"-424\"/>\n    </contour>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_ota.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iota\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0399\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_otaafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotaafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0196\"/>\n  <outline>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_otadieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotadieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AA\"/>\n  <outline>\n    <component base=\"Iota\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_otatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038A\"/>\n  <anchor x=\"624\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"874\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"473\" y=\"0\" type=\"line\"/>\n      <point x=\"739\" y=\"0\" type=\"line\"/>\n      <point x=\"989\" y=\"1420\" type=\"line\"/>\n      <point x=\"723\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"956\" y=\"0\" type=\"line\"/>\n      <point x=\"999\" y=\"244\" type=\"line\"/>\n      <point x=\"301\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"465\" y=\"1176\" type=\"line\"/>\n      <point x=\"1163\" y=\"1176\" type=\"line\"/>\n      <point x=\"1206\" y=\"1420\" type=\"line\"/>\n      <point x=\"508\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"72\" y=\"1040\" type=\"line\"/>\n      <point x=\"324\" y=\"1040\" type=\"line\"/>\n      <point x=\"458\" y=\"1420\" type=\"line\"/>\n      <point x=\"177\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ismall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"371\" y=\"0\" type=\"line\"/>\n      <point x=\"643\" y=\"0\" type=\"line\"/>\n      <point x=\"829\" y=\"1060\" type=\"line\"/>\n      <point x=\"557\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"0\" type=\"line\"/>\n      <point x=\"939\" y=\"0\" type=\"line\"/>\n      <point x=\"982\" y=\"249\" type=\"line\"/>\n      <point x=\"118\" y=\"249\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"218\" y=\"811\" type=\"line\"/>\n      <point x=\"1082\" y=\"811\" type=\"line\"/>\n      <point x=\"1125\" y=\"1060\" type=\"line\"/>\n      <point x=\"261\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Itilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0128\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/I_u-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iu-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"697\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1045\" y=\"-20\"/>\n      <point x=\"1179\" y=\"508\"/>\n      <point x=\"1202\" y=\"947\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1218\" y=\"1243\"/>\n      <point x=\"1168\" y=\"1440\"/>\n      <point x=\"923\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"1440\"/>\n      <point x=\"461\" y=\"916\"/>\n      <point x=\"438\" y=\"477\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"181\"/>\n      <point x=\"476\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"-30\" y=\"0\" type=\"line\"/>\n      <point x=\"228\" y=\"0\" type=\"line\"/>\n      <point x=\"478\" y=\"1420\" type=\"line\"/>\n      <point x=\"220\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"160\" y=\"585\" type=\"line\"/>\n      <point x=\"491\" y=\"585\" type=\"line\"/>\n      <point x=\"535\" y=\"829\" type=\"line\"/>\n      <point x=\"204\" y=\"829\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"730\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"232\"/>\n      <point x=\"664\" y=\"282\"/>\n      <point x=\"668\" y=\"421\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"606\"/>\n      <point x=\"761\" y=\"1188\"/>\n      <point x=\"881\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"1188\"/>\n      <point x=\"944\" y=\"1138\"/>\n      <point x=\"940\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"802\"/>\n      <point x=\"843\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/J_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"J\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"957\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"495\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"829\" y=\"-20\"/>\n      <point x=\"1009\" y=\"136\"/>\n      <point x=\"1069\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1235\" y=\"1420\" type=\"line\"/>\n      <point x=\"969\" y=\"1420\" type=\"line\"/>\n      <point x=\"803\" y=\"476\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"308\"/>\n      <point x=\"682\" y=\"232\"/>\n      <point x=\"521\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"376\" y=\"232\"/>\n      <point x=\"310\" y=\"325\"/>\n      <point x=\"336\" y=\"484\" type=\"curve\"/>\n      <point x=\"61\" y=\"484\" type=\"line\"/>\n      <point x=\"-6\" y=\"165\"/>\n      <point x=\"160\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"605\" y=\"1177\" type=\"line\"/>\n      <point x=\"1068\" y=\"1177\" type=\"line\"/>\n      <point x=\"1110\" y=\"1420\" type=\"line\"/>\n      <point x=\"648\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/J_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Jacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"J\"/>\n    <component base=\"acutecomb.case\" xOffset=\"200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/J_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Jcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0134\"/>\n  <outline>\n    <component base=\"J\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/J_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Je-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0408\"/>\n  <outline>\n    <component base=\"J\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"K\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004B\"/>\n  <anchor x=\"535\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"213\" y=\"332\" type=\"line\"/>\n      <point x=\"819\" y=\"404\"/>\n      <point x=\"1190\" y=\"852\"/>\n      <point x=\"1288\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1020\" y=\"1420\" type=\"line\"/>\n      <point x=\"945\" y=\"998\"/>\n      <point x=\"712\" y=\"658\"/>\n      <point x=\"226\" y=\"590\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"40\" y=\"0\" type=\"line\"/>\n      <point x=\"306\" y=\"0\" type=\"line\"/>\n      <point x=\"556\" y=\"1420\" type=\"line\"/>\n      <point x=\"290\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"784\" y=\"0\" type=\"line\"/>\n      <point x=\"1086\" y=\"0\" type=\"line\"/>\n      <point x=\"847\" y=\"724\" type=\"line\"/>\n      <point x=\"594\" y=\"622\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"K.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"202\" y=\"167\" type=\"line\"/>\n      <point x=\"565\" y=\"167\"/>\n      <point x=\"775\" y=\"437\"/>\n      <point x=\"775\" y=\"639\" type=\"curve\"/>\n      <point x=\"619\" y=\"639\" type=\"line\"/>\n      <point x=\"619\" y=\"516\"/>\n      <point x=\"497\" y=\"305\"/>\n      <point x=\"215\" y=\"305\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"639\" y=\"0\" type=\"line\"/>\n      <point x=\"823\" y=\"0\" type=\"line\"/>\n      <point x=\"567\" y=\"387\" type=\"line\"/>\n      <point x=\"430\" y=\"324\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"634\" y=\"710\" name=\"center\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"54\" y=\"0\" type=\"line\"/>\n      <point x=\"320\" y=\"0\" type=\"line\"/>\n      <point x=\"570\" y=\"1420\" type=\"line\"/>\n      <point x=\"304\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"262\" y=\"487\" type=\"line\"/>\n      <point x=\"714\" y=\"487\" type=\"line\"/>\n      <point x=\"761\" y=\"729\" type=\"line\"/>\n      <point x=\"308\" y=\"729\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"0\" type=\"line\"/>\n      <point x=\"1078\" y=\"0\" type=\"line\"/>\n      <point x=\"773\" y=\"745\" type=\"line\"/>\n      <point x=\"520\" y=\"665\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"735\" y=\"503\" type=\"line\"/>\n      <point x=\"1070\" y=\"757\"/>\n      <point x=\"1262\" y=\"1205\"/>\n      <point x=\"1323\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1054\" y=\"1420\" type=\"line\"/>\n      <point x=\"1013\" y=\"1278\"/>\n      <point x=\"813\" y=\"802\"/>\n      <point x=\"533\" y=\"648\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.65,0.48,0.2,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E30\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_adescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"049A\"/>\n  <outline>\n    <contour>\n      <point x=\"998\" y=\"-319\" type=\"line\"/>\n      <point x=\"1044\" y=\"-188\"/>\n      <point x=\"1111\" y=\"97\"/>\n      <point x=\"1119\" y=\"244\" type=\"curve\"/>\n      <point x=\"885\" y=\"244\" type=\"line\"/>\n      <point x=\"850\" y=\"46\" type=\"line\"/>\n      <point x=\"832\" y=\"-42\"/>\n      <point x=\"803\" y=\"-147\"/>\n      <point x=\"762\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <component base=\"Ka-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>Ka-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_aiS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"KaiSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CF\"/>\n  <anchor x=\"535\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"213\" y=\"332\" type=\"line\"/>\n      <point x=\"819\" y=\"404\"/>\n      <point x=\"1190\" y=\"852\"/>\n      <point x=\"1288\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1020\" y=\"1420\" type=\"line\"/>\n      <point x=\"945\" y=\"998\"/>\n      <point x=\"712\" y=\"658\"/>\n      <point x=\"226\" y=\"590\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"40\" y=\"0\" type=\"line\"/>\n      <point x=\"306\" y=\"0\" type=\"line\"/>\n      <point x=\"556\" y=\"1420\" type=\"line\"/>\n      <point x=\"290\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"655\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"926\" y=\"-480\"/>\n      <point x=\"1068\" y=\"-342\"/>\n      <point x=\"1068\" y=\"-118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1068\" y=\"-20\"/>\n      <point x=\"1042\" y=\"95\"/>\n      <point x=\"990\" y=\"213\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"642\" type=\"line\"/>\n      <point x=\"571\" y=\"515\" type=\"line\"/>\n      <point x=\"732\" y=\"119\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"48\"/>\n      <point x=\"780\" y=\"-17\"/>\n      <point x=\"780\" y=\"-75\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"-173\"/>\n      <point x=\"719\" y=\"-223\"/>\n      <point x=\"601\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"-223\"/>\n      <point x=\"509\" y=\"-216\"/>\n      <point x=\"446\" y=\"-203\" type=\"curve\"/>\n      <point x=\"396\" y=\"-459\" type=\"line\"/>\n      <point x=\"504\" y=\"-478\"/>\n      <point x=\"592\" y=\"-480\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_appa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kappa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039A\"/>\n  <outline>\n    <component base=\"K\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0136\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"29\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E32\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"28\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040C\"/>\n  <outline>\n    <component base=\"Ka-cy\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/K_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Klinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E34\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"29\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"L\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004C\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"721\" y=\"710\" name=\"center\"/>\n  <anchor x=\"451\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1097\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"316\" y=\"0\" type=\"line\"/>\n      <point x=\"566\" y=\"1420\" type=\"line\"/>\n      <point x=\"300\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"1024\" y=\"0\" type=\"line\"/>\n      <point x=\"1067\" y=\"244\" type=\"line\"/>\n      <point x=\"93\" y=\"244\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"L.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"772\" y=\"0\" type=\"line\"/>\n      <point x=\"772\" y=\"135\" type=\"line\"/>\n      <point x=\"109\" y=\"135\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_I_G_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"LIG\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0139\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-306\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_ambda.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lambda\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039B\"/>\n  <outline>\n    <component base=\"El-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023D\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"641\" type=\"line\"/>\n      <point x=\"856\" y=\"641\" type=\"line\"/>\n      <point x=\"898\" y=\"883\" type=\"line\"/>\n      <point x=\"42\" y=\"883\" type=\"line\"/>\n    </contour>\n    <component base=\"L\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013D\"/>\n  <outline>\n    <contour>\n      <point x=\"831\" y=\"1188\" type=\"line\"/>\n      <point x=\"1057\" y=\"1188\" type=\"line\"/>\n      <point x=\"1214\" y=\"1568\" type=\"line\"/>\n      <point x=\"938\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"L\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013B\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_dot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ldot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013F\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"periodcentered\" xOffset=\"280\" yOffset=\"320\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ldotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E36\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0409\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"18\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"311\" y=\"-20\"/>\n      <point x=\"370\" y=\"274\"/>\n      <point x=\"463\" y=\"746\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"909\"/>\n      <point x=\"528\" y=\"1103\"/>\n      <point x=\"560\" y=\"1265\" type=\"curve\"/>\n      <point x=\"438\" y=\"1176\" type=\"line\"/>\n      <point x=\"751\" y=\"1176\" type=\"line\"/>\n      <point x=\"801\" y=\"1420\" type=\"line\"/>\n      <point x=\"353\" y=\"1420\" type=\"line\"/>\n      <point x=\"316\" y=\"1218\"/>\n      <point x=\"274\" y=\"985\"/>\n      <point x=\"236\" y=\"783\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"331\"/>\n      <point x=\"109\" y=\"245\"/>\n      <point x=\"20\" y=\"245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"15\" y=\"245\"/>\n      <point x=\"9\" y=\"245\"/>\n      <point x=\"3\" y=\"246\" type=\"curve\"/>\n      <point x=\"-43\" y=\"-14\" type=\"line\"/>\n      <point x=\"-22\" y=\"-18\"/>\n      <point x=\"0\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"498\" y=\"0\" type=\"line\"/>\n      <point x=\"630\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"0\"/>\n      <point x=\"1148\" y=\"293\"/>\n      <point x=\"1148\" y=\"657\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1148\" y=\"920\"/>\n      <point x=\"995\" y=\"1012\"/>\n      <point x=\"838\" y=\"1012\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"1012\"/>\n      <point x=\"731\" y=\"1004\"/>\n      <point x=\"700\" y=\"995\" type=\"curve\"/>\n      <point x=\"663\" y=\"762\" type=\"line\"/>\n      <point x=\"691\" y=\"765\"/>\n      <point x=\"738\" y=\"767\"/>\n      <point x=\"764\" y=\"767\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"767\"/>\n      <point x=\"874\" y=\"744\"/>\n      <point x=\"874\" y=\"637\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"438\"/>\n      <point x=\"817\" y=\"244\"/>\n      <point x=\"663\" y=\"244\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"441\" y=\"0\" type=\"line\"/>\n      <point x=\"596\" y=\"0\" type=\"line\"/>\n      <point x=\"661\" y=\"85\" type=\"line\"/>\n      <point x=\"896\" y=\"1420\" type=\"line\"/>\n      <point x=\"691\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Llinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E3A\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_middletilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lmiddletilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2C62\"/>\n  <anchor x=\"643\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"752\" y=\"710\" name=\"center\"/>\n  <anchor x=\"608\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1342\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"0\" type=\"line\"/>\n      <point x=\"491\" y=\"0\" type=\"line\"/>\n      <point x=\"741\" y=\"1420\" type=\"line\"/>\n      <point x=\"475\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"225\" y=\"0\" type=\"line\"/>\n      <point x=\"1023\" y=\"0\" type=\"line\"/>\n      <point x=\"1066\" y=\"243\" type=\"line\"/>\n      <point x=\"268\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-9\" y=\"562\" type=\"line\"/>\n      <point x=\"224\" y=\"562\" type=\"line\"/>\n      <point x=\"239\" y=\"647\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"247\" y=\"695\"/>\n      <point x=\"272\" y=\"716\"/>\n      <point x=\"322\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"716\"/>\n      <point x=\"420\" y=\"695\"/>\n      <point x=\"476\" y=\"661\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"537\" y=\"622\"/>\n      <point x=\"607\" y=\"590\"/>\n      <point x=\"692\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"590\"/>\n      <point x=\"937\" y=\"669\"/>\n      <point x=\"970\" y=\"854\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"970\" type=\"line\"/>\n      <point x=\"759\" y=\"970\" type=\"line\"/>\n      <point x=\"744\" y=\"886\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"838\"/>\n      <point x=\"715\" y=\"817\"/>\n      <point x=\"671\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"817\"/>\n      <point x=\"579\" y=\"842\"/>\n      <point x=\"534\" y=\"872\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"916\"/>\n      <point x=\"401\" y=\"943\"/>\n      <point x=\"314\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"943\"/>\n      <point x=\"45\" y=\"864\"/>\n      <point x=\"12\" y=\"679\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0141\"/>\n  <anchor x=\"554\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"659\" y=\"710\" name=\"center\"/>\n  <anchor x=\"517\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1364\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"1\" y=\"410\" type=\"line\"/>\n      <point x=\"966\" y=\"855\" type=\"line\"/>\n      <point x=\"1012\" y=\"1115\" type=\"line\"/>\n      <point x=\"46\" y=\"670\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"134\" y=\"0\" type=\"line\"/>\n      <point x=\"400\" y=\"0\" type=\"line\"/>\n      <point x=\"650\" y=\"1420\" type=\"line\"/>\n      <point x=\"384\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"134\" y=\"0\" type=\"line\"/>\n      <point x=\"1007\" y=\"0\" type=\"line\"/>\n      <point x=\"1050\" y=\"244\" type=\"line\"/>\n      <point x=\"177\" y=\"244\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/L_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lsmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"029F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"629\" y=\"540\" name=\"center\"/>\n  <anchor x=\"374\" y=\"1079\" name=\"top\"/>\n  <anchor x=\"1304\" y=\"1079\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"49\" y=\"0\" type=\"line\"/>\n      <point x=\"319\" y=\"0\" type=\"line\"/>\n      <point x=\"509\" y=\"1079\" type=\"line\"/>\n      <point x=\"239\" y=\"1079\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"49\" y=\"0\" type=\"line\"/>\n      <point x=\"1026\" y=\"0\" type=\"line\"/>\n      <point x=\"1070\" y=\"250\" type=\"line\"/>\n      <point x=\"93\" y=\"250\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/M_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"M\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"545\" y=\"497\" type=\"line\"/>\n      <point x=\"676\" y=\"497\" type=\"line\"/>\n      <point x=\"914\" y=\"1168\" type=\"line\"/>\n      <point x=\"982\" y=\"1168\" type=\"line\"/>\n      <point x=\"1026\" y=\"1420\" type=\"line\"/>\n      <point x=\"869\" y=\"1420\" type=\"line\"/>\n      <point x=\"645\" y=\"775\" type=\"line\"/>\n      <point x=\"633\" y=\"775\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"0\" type=\"line\"/>\n      <point x=\"277\" y=\"0\" type=\"line\"/>\n      <point x=\"527\" y=\"1420\" type=\"line\"/>\n      <point x=\"268\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"505\" y=\"496\" type=\"line\"/>\n      <point x=\"599\" y=\"497\" type=\"line\"/>\n      <point x=\"637\" y=\"775\" type=\"line\"/>\n      <point x=\"629\" y=\"775\" type=\"line\"/>\n      <point x=\"640\" y=\"1420\" type=\"line\"/>\n      <point x=\"493\" y=\"1420\" type=\"line\"/>\n      <point x=\"449\" y=\"1168\" type=\"line\"/>\n      <point x=\"517\" y=\"1168\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"742\" y=\"0\" type=\"line\"/>\n      <point x=\"996\" y=\"0\" type=\"line\"/>\n      <point x=\"1246\" y=\"1420\" type=\"line\"/>\n      <point x=\"992\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/M_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"M.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"395\" y=\"162\" type=\"line\"/>\n      <point x=\"487\" y=\"162\" type=\"line\"/>\n      <point x=\"589\" y=\"499\" type=\"line\"/>\n      <point x=\"631\" y=\"499\" type=\"line\"/>\n      <point x=\"630\" y=\"639\" type=\"line\"/>\n      <point x=\"527\" y=\"639\" type=\"line\"/>\n      <point x=\"426\" y=\"288\" type=\"line\"/>\n      <point x=\"417\" y=\"288\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"87\" y=\"0\" type=\"line\"/>\n      <point x=\"232\" y=\"0\" type=\"line\"/>\n      <point x=\"232\" y=\"639\" type=\"line\"/>\n      <point x=\"87\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"353\" y=\"162\" type=\"line\"/>\n      <point x=\"435\" y=\"162\" type=\"line\"/>\n      <point x=\"420\" y=\"288\" type=\"line\"/>\n      <point x=\"414\" y=\"288\" type=\"line\"/>\n      <point x=\"313\" y=\"639\" type=\"line\"/>\n      <point x=\"209\" y=\"639\" type=\"line\"/>\n      <point x=\"208\" y=\"499\" type=\"line\"/>\n      <point x=\"251\" y=\"499\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"609\" y=\"0\" type=\"line\"/>\n      <point x=\"753\" y=\"0\" type=\"line\"/>\n      <point x=\"753\" y=\"639\" type=\"line\"/>\n      <point x=\"609\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/M_u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Mu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039C\"/>\n  <outline>\n    <component base=\"M\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"N\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"597\" y=\"0\" type=\"line\"/>\n      <point x=\"742\" y=\"0\" type=\"line\"/>\n      <point x=\"804\" y=\"340\" type=\"line\"/>\n      <point x=\"734\" y=\"340\" type=\"line\"/>\n      <point x=\"657\" y=\"1420\" type=\"line\"/>\n      <point x=\"472\" y=\"1420\" type=\"line\"/>\n      <point x=\"408\" y=\"1080\" type=\"line\"/>\n      <point x=\"520\" y=\"1080\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"38\" y=\"0\" type=\"line\"/>\n      <point x=\"304\" y=\"0\" type=\"line\"/>\n      <point x=\"554\" y=\"1420\" type=\"line\"/>\n      <point x=\"288\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"710\" y=\"0\" type=\"line\"/>\n      <point x=\"976\" y=\"0\" type=\"line\"/>\n      <point x=\"1226\" y=\"1420\" type=\"line\"/>\n      <point x=\"960\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"N.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"546\" y=\"0\" type=\"line\"/>\n      <point x=\"615\" y=\"0\" type=\"line\"/>\n      <point x=\"615\" y=\"193\" type=\"line\"/>\n      <point x=\"558\" y=\"193\" type=\"line\"/>\n      <point x=\"294\" y=\"639\" type=\"line\"/>\n      <point x=\"194\" y=\"639\" type=\"line\"/>\n      <point x=\"194\" y=\"446\" type=\"line\"/>\n      <point x=\"282\" y=\"446\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"101\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"594\" y=\"0\" type=\"line\"/>\n      <point x=\"739\" y=\"0\" type=\"line\"/>\n      <point x=\"739\" y=\"639\" type=\"line\"/>\n      <point x=\"594\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0143\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"acutecomb.case.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ncaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0147\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ncommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0145\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_hookleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nhookleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019D\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"65\" y=\"151\" type=\"line\"/>\n      <point x=\"32\" y=\"-33\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"9\" y=\"-162\"/>\n      <point x=\"-62\" y=\"-216\"/>\n      <point x=\"-223\" y=\"-246\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-266\" y=\"-254\" type=\"line\"/>\n      <point x=\"-250\" y=\"-476\" type=\"line\"/>\n      <point x=\"-219\" y=\"-472\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"110\" y=\"-430\"/>\n      <point x=\"251\" y=\"-311\"/>\n      <point x=\"303\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"151\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"498\" y=\"0\" type=\"line\"/>\n      <point x=\"630\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"0\"/>\n      <point x=\"1148\" y=\"293\"/>\n      <point x=\"1148\" y=\"657\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1148\" y=\"920\"/>\n      <point x=\"995\" y=\"1012\"/>\n      <point x=\"838\" y=\"1012\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"1012\"/>\n      <point x=\"746\" y=\"1012\"/>\n      <point x=\"700\" y=\"1012\" type=\"curve\"/>\n      <point x=\"664\" y=\"767\" type=\"line\"/>\n      <point x=\"697\" y=\"767\"/>\n      <point x=\"731\" y=\"767\"/>\n      <point x=\"764\" y=\"767\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"767\"/>\n      <point x=\"874\" y=\"744\"/>\n      <point x=\"874\" y=\"637\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"438\"/>\n      <point x=\"817\" y=\"244\"/>\n      <point x=\"663\" y=\"244\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"0\" type=\"line\"/>\n      <point x=\"284\" y=\"0\" type=\"line\"/>\n      <point x=\"534\" y=\"1420\" type=\"line\"/>\n      <point x=\"268\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"767\" type=\"line\"/>\n      <point x=\"723\" y=\"767\" type=\"line\"/>\n      <point x=\"766\" y=\"1011\" type=\"line\"/>\n      <point x=\"246\" y=\"1011\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"430\" y=\"0\" type=\"line\"/>\n      <point x=\"619\" y=\"0\" type=\"line\"/>\n      <point x=\"666\" y=\"113\" type=\"line\"/>\n      <point x=\"792\" y=\"830\" type=\"line\"/>\n      <point x=\"833\" y=\"866\" type=\"line\"/>\n      <point x=\"930\" y=\"1420\" type=\"line\"/>\n      <point x=\"680\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E48\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D1\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/N_u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039D\"/>\n  <outline>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041E\"/>\n  <outline>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004F\"/>\n  <guideline x=\"927\" y=\"1269\" angle=\"90\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"631\" y=\"710\" name=\"center\"/>\n  <anchor x=\"528\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"198\" y=\"1420\" name=\"topleft\"/>\n  <anchor x=\"1328\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"513\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"-20\"/>\n      <point x=\"1195\" y=\"331\"/>\n      <point x=\"1195\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1195\" y=\"1249\"/>\n      <point x=\"1030\" y=\"1440\"/>\n      <point x=\"752\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"319\" y=\"1440\"/>\n      <point x=\"63\" y=\"1093\"/>\n      <point x=\"63\" y=\"506\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"63\" y=\"175\"/>\n      <point x=\"230\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"549\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"232\"/>\n      <point x=\"340\" y=\"343\"/>\n      <point x=\"340\" y=\"531\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"340\" y=\"944\"/>\n      <point x=\"480\" y=\"1188\"/>\n      <point x=\"717\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"1188\"/>\n      <point x=\"918\" y=\"1081\"/>\n      <point x=\"918\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"480\"/>\n      <point x=\"781\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"420\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"-9\"/>\n      <point x=\"790\" y=\"98\"/>\n      <point x=\"790\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"537\"/>\n      <point x=\"666\" y=\"648\"/>\n      <point x=\"420\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"648\"/>\n      <point x=\"51\" y=\"537\"/>\n      <point x=\"51\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"51\" y=\"98\"/>\n      <point x=\"176\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"420\" y=\"130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"281\" y=\"130\"/>\n      <point x=\"210\" y=\"191\"/>\n      <point x=\"210\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"210\" y=\"447\"/>\n      <point x=\"281\" y=\"513\"/>\n      <point x=\"420\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"513\"/>\n      <point x=\"631\" y=\"447\"/>\n      <point x=\"631\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"191\"/>\n      <point x=\"560\" y=\"130\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"OE\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0152\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"405\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"519\" y=\"-20\"/>\n      <point x=\"610\" y=\"0\"/>\n      <point x=\"681\" y=\"0\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"0\" type=\"line\"/>\n      <point x=\"979\" y=\"1420\" type=\"line\"/>\n      <point x=\"931\" y=\"1420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"837\" y=\"1420\"/>\n      <point x=\"772\" y=\"1440\"/>\n      <point x=\"663\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"1440\"/>\n      <point x=\"63\" y=\"896\"/>\n      <point x=\"63\" y=\"439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"63\" y=\"144\"/>\n      <point x=\"182\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"523\" y=\"0\" type=\"line\"/>\n      <point x=\"1023\" y=\"0\" type=\"line\"/>\n      <point x=\"1065\" y=\"242\" type=\"line\"/>\n      <point x=\"565\" y=\"242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"226\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"382\" y=\"226\"/>\n      <point x=\"342\" y=\"311\"/>\n      <point x=\"342\" y=\"463\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"707\"/>\n      <point x=\"446\" y=\"1194\"/>\n      <point x=\"619\" y=\"1194\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"640\" y=\"1194\"/>\n      <point x=\"659\" y=\"1190\"/>\n      <point x=\"671\" y=\"1181\" type=\"curve\"/>\n      <point x=\"504\" y=\"232\" type=\"line\"/>\n      <point x=\"491\" y=\"228\"/>\n      <point x=\"475\" y=\"226\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"590\" type=\"line\"/>\n      <point x=\"1067\" y=\"590\" type=\"line\"/>\n      <point x=\"1110\" y=\"832\" type=\"line\"/>\n      <point x=\"690\" y=\"832\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"721\" y=\"1178\" type=\"line\"/>\n      <point x=\"1231\" y=\"1178\" type=\"line\"/>\n      <point x=\"1273\" y=\"1420\" type=\"line\"/>\n      <point x=\"763\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D3\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"acutecomb.case.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_barred-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Obarred-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E8\"/>\n  <outline>\n    <contour>\n      <point x=\"246\" y=\"585\" type=\"line\"/>\n      <point x=\"1071\" y=\"585\" type=\"line\"/>\n      <point x=\"1123\" y=\"829\" type=\"line\"/>\n      <point x=\"298\" y=\"829\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Obreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014E\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D4\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED0\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"437\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED8\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED2\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"437\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED4\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"437\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED6\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"tildecomb.case\" xOffset=\"67\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Odieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D6\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Odotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECC\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ograve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D2\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hm.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohm\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2126\"/>\n  <outline>\n    <component base=\"Omega\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECE\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A0\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"horncomb.case\" xOffset=\"403\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDA\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_horndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE2\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_horngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDC\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDE\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_horntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE0\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0150\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"hungarumlautcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014C\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_macronacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacronacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E52\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\" yOffset=\"341\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_macrongrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacrongrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E50\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n    <component base=\"gravecomb.case\" xOffset=\"61\" yOffset=\"341\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_mega.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omega\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A9\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"243\" y=\"184\" type=\"line\"/>\n      <point x=\"500\" y=\"243\" type=\"line\"/>\n      <point x=\"413\" y=\"283\"/>\n      <point x=\"355\" y=\"391\"/>\n      <point x=\"355\" y=\"568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"852\"/>\n      <point x=\"470\" y=\"1189\"/>\n      <point x=\"717\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"1189\"/>\n      <point x=\"919\" y=\"1086\"/>\n      <point x=\"919\" y=\"912\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"919\" y=\"666\"/>\n      <point x=\"815\" y=\"319\"/>\n      <point x=\"598\" y=\"243\" type=\"curve\"/>\n      <point x=\"835\" y=\"192\" type=\"line\"/>\n      <point x=\"850\" y=\"279\" type=\"line\"/>\n      <point x=\"1111\" y=\"379\"/>\n      <point x=\"1206\" y=\"662\"/>\n      <point x=\"1206\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1206\" y=\"1255\"/>\n      <point x=\"1041\" y=\"1440\"/>\n      <point x=\"761\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"1440\"/>\n      <point x=\"86\" y=\"1065\"/>\n      <point x=\"86\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"86\" y=\"423\"/>\n      <point x=\"154\" y=\"331\"/>\n      <point x=\"260\" y=\"276\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"-6\" y=\"0\" type=\"line\"/>\n      <point x=\"457\" y=\"0\" type=\"line\"/>\n      <point x=\"500\" y=\"243\" type=\"line\"/>\n      <point x=\"37\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"1020\" y=\"0\" type=\"line\"/>\n      <point x=\"1063\" y=\"243\" type=\"line\"/>\n      <point x=\"598\" y=\"243\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_megatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omegatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038F\"/>\n  <anchor x=\"607\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"857\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"72\" y=\"1040\" type=\"line\"/>\n      <point x=\"324\" y=\"1040\" type=\"line\"/>\n      <point x=\"458\" y=\"1420\" type=\"line\"/>\n      <point x=\"177\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"412\" y=\"184\" type=\"line\"/>\n      <point x=\"608\" y=\"243\" type=\"line\"/>\n      <point x=\"566\" y=\"274\"/>\n      <point x=\"545\" y=\"345\"/>\n      <point x=\"545\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"719\"/>\n      <point x=\"632\" y=\"1189\"/>\n      <point x=\"817\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"1189\"/>\n      <point x=\"929\" y=\"1123\"/>\n      <point x=\"929\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"775\"/>\n      <point x=\"835\" y=\"320\"/>\n      <point x=\"692\" y=\"243\" type=\"curve\"/>\n      <point x=\"868\" y=\"192\" type=\"line\"/>\n      <point x=\"882\" y=\"271\" type=\"line\"/>\n      <point x=\"1104\" y=\"316\"/>\n      <point x=\"1212\" y=\"746\"/>\n      <point x=\"1212\" y=\"1037\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1212\" y=\"1306\"/>\n      <point x=\"1095\" y=\"1440\"/>\n      <point x=\"861\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"1440\"/>\n      <point x=\"283\" y=\"1006\"/>\n      <point x=\"283\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"392\"/>\n      <point x=\"331\" y=\"294\"/>\n      <point x=\"427\" y=\"268\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"0\" type=\"line\"/>\n      <point x=\"565\" y=\"0\" type=\"line\"/>\n      <point x=\"608\" y=\"243\" type=\"line\"/>\n      <point x=\"237\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"649\" y=\"0\" type=\"line\"/>\n      <point x=\"1020\" y=\"0\" type=\"line\"/>\n      <point x=\"1063\" y=\"243\" type=\"line\"/>\n      <point x=\"692\" y=\"243\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_micron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omicron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039F\"/>\n  <outline>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_microntonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omicrontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038C\"/>\n  <anchor x=\"622\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"872\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"616\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"-20\"/>\n      <point x=\"1198\" y=\"379\"/>\n      <point x=\"1198\" y=\"1055\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1198\" y=\"1297\"/>\n      <point x=\"1070\" y=\"1440\"/>\n      <point x=\"855\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"1440\"/>\n      <point x=\"266\" y=\"1041\"/>\n      <point x=\"266\" y=\"366\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"123\"/>\n      <point x=\"396\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"652\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"232\"/>\n      <point x=\"543\" y=\"291\"/>\n      <point x=\"543\" y=\"391\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"892\"/>\n      <point x=\"646\" y=\"1188\"/>\n      <point x=\"820\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"1188\"/>\n      <point x=\"921\" y=\"1129\"/>\n      <point x=\"921\" y=\"1030\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"528\"/>\n      <point x=\"821\" y=\"232\"/>\n    </contour>\n    <contour>\n      <point x=\"72\" y=\"1040\" type=\"line\"/>\n      <point x=\"324\" y=\"1040\" type=\"line\"/>\n      <point x=\"458\" y=\"1420\" type=\"line\"/>\n      <point x=\"177\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01EA\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"-424\"/>\n      <point x=\"633\" y=\"-405\"/>\n      <point x=\"695\" y=\"-378\" type=\"curve\"/>\n      <point x=\"653\" y=\"-164\" type=\"line\"/>\n      <point x=\"610\" y=\"-177\"/>\n      <point x=\"565\" y=\"-185\"/>\n      <point x=\"525\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"-185\"/>\n      <point x=\"446\" y=\"-167\"/>\n      <point x=\"446\" y=\"-132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-74\"/>\n      <point x=\"547\" y=\"-31\"/>\n      <point x=\"659\" y=\"-5\" type=\"curve\"/>\n      <point x=\"620\" y=\"25\" type=\"line\"/>\n      <point x=\"390\" y=\"12\" type=\"line\"/>\n      <point x=\"390\" y=\"-38\" type=\"line\"/>\n      <point x=\"283\" y=\"-89\"/>\n      <point x=\"219\" y=\"-159\"/>\n      <point x=\"219\" y=\"-255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"-368\"/>\n      <point x=\"305\" y=\"-424\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_open.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0186\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"649\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"514\" y=\"1440\"/>\n      <point x=\"376\" y=\"1418\"/>\n      <point x=\"240\" y=\"1372\" type=\"curve\"/>\n      <point x=\"254\" y=\"1128\" type=\"line\"/>\n      <point x=\"365\" y=\"1168\"/>\n      <point x=\"475\" y=\"1188\"/>\n      <point x=\"582\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"1188\"/>\n      <point x=\"909\" y=\"1089\"/>\n      <point x=\"909\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"511\"/>\n      <point x=\"691\" y=\"232\"/>\n      <point x=\"395\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"232\"/>\n      <point x=\"210\" y=\"267\"/>\n      <point x=\"134\" y=\"344\" type=\"curve\"/>\n      <point x=\"-39\" y=\"139\" type=\"line\"/>\n      <point x=\"61\" y=\"29\"/>\n      <point x=\"187\" y=\"-20\"/>\n      <point x=\"366\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"851\" y=\"-20\"/>\n      <point x=\"1187\" y=\"357\"/>\n      <point x=\"1187\" y=\"897\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1187\" y=\"1259\"/>\n      <point x=\"1007\" y=\"1440\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D8\"/>\n  <outline>\n    <contour>\n      <point x=\"116\" y=\"-142\" type=\"line\"/>\n      <point x=\"1303\" y=\"1419\" type=\"line\"/>\n      <point x=\"1134\" y=\"1540\" type=\"line\"/>\n      <point x=\"-43\" y=\"-11\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_slashacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oslashacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FE\"/>\n  <outline>\n    <component base=\"Oslash\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/O_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Otilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D5\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/P_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"P\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0050\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"707\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"316\" y=\"0\" type=\"line\"/>\n      <point x=\"566\" y=\"1420\" type=\"line\"/>\n      <point x=\"300\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"181\" y=\"330\" type=\"line\"/>\n      <point x=\"293\" y=\"330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"330\"/>\n      <point x=\"1221\" y=\"557\"/>\n      <point x=\"1221\" y=\"991\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1221\" y=\"1286\"/>\n      <point x=\"1010\" y=\"1440\"/>\n      <point x=\"605\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"1440\"/>\n      <point x=\"375\" y=\"1433\"/>\n      <point x=\"300\" y=\"1420\" type=\"curve\"/>\n      <point x=\"267\" y=\"1168\" type=\"line\"/>\n      <point x=\"352\" y=\"1181\"/>\n      <point x=\"470\" y=\"1188\"/>\n      <point x=\"612\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"1188\"/>\n      <point x=\"944\" y=\"1109\"/>\n      <point x=\"944\" y=\"958\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"710\"/>\n      <point x=\"733\" y=\"582\"/>\n      <point x=\"326\" y=\"582\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"214\" y=\"582\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/P_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"P.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"244\" y=\"175\" type=\"line\"/>\n      <point x=\"503\" y=\"175\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"175\"/>\n      <point x=\"786\" y=\"252\"/>\n      <point x=\"786\" y=\"408\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"562\"/>\n      <point x=\"692\" y=\"639\"/>\n      <point x=\"503\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"246\" y=\"503\" type=\"line\"/>\n      <point x=\"503\" y=\"503\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"503\"/>\n      <point x=\"627\" y=\"472\"/>\n      <point x=\"627\" y=\"407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"342\"/>\n      <point x=\"586\" y=\"310\"/>\n      <point x=\"503\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"639\" type=\"line\"/>\n      <point x=\"109\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/P_alochka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Palochka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04C0\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/P_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Pe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"0\" type=\"line\"/>\n      <point x=\"1234\" y=\"1420\" type=\"line\"/>\n      <point x=\"968\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"30\" y=\"0\" type=\"line\"/>\n      <point x=\"296\" y=\"0\" type=\"line\"/>\n      <point x=\"546\" y=\"1420\" type=\"line\"/>\n      <point x=\"280\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"318\" y=\"1176\" type=\"line\"/>\n      <point x=\"1129\" y=\"1176\" type=\"line\"/>\n      <point x=\"1162\" y=\"1420\" type=\"line\"/>\n      <point x=\"351\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/P_hi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Phi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A6\"/>\n  <outline>\n    <component base=\"Ef-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/P_i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Pi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A0\"/>\n  <outline>\n    <component base=\"Pe-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/P_si.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Psi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A8\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"556\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"277\"/>\n      <point x=\"1128\" y=\"455\"/>\n      <point x=\"1192\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1298\" y=\"1420\" type=\"line\"/>\n      <point x=\"1032\" y=\"1420\" type=\"line\"/>\n      <point x=\"926\" y=\"817\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"624\"/>\n      <point x=\"784\" y=\"528\"/>\n      <point x=\"600\" y=\"528\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"528\"/>\n      <point x=\"342\" y=\"624\"/>\n      <point x=\"376\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"1420\" type=\"line\"/>\n      <point x=\"216\" y=\"1420\" type=\"line\"/>\n      <point x=\"110\" y=\"817\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"46\" y=\"455\"/>\n      <point x=\"197\" y=\"277\"/>\n    </contour>\n    <contour>\n      <point x=\"446\" y=\"407\" type=\"line\"/>\n      <point x=\"374\" y=\"0\" type=\"line\"/>\n      <point x=\"640\" y=\"0\" type=\"line\"/>\n      <point x=\"712\" y=\"407\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"695\" y=\"407\" type=\"line\"/>\n      <point x=\"873\" y=\"1420\" type=\"line\"/>\n      <point x=\"641\" y=\"1420\" type=\"line\"/>\n      <point x=\"463\" y=\"407\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Q_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Q\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0051\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"825\" y=\"-460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"-460\" type=\"line\"/>\n      <point x=\"933\" y=\"-210\" type=\"line\"/>\n      <point x=\"868\" y=\"-210\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"-210\"/>\n      <point x=\"628\" y=\"-147\"/>\n      <point x=\"651\" y=\"-22\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"62\" type=\"line\"/>\n      <point x=\"418\" y=\"62\" type=\"line\"/>\n      <point x=\"404\" y=\"-20\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"-314\"/>\n      <point x=\"492\" y=\"-460\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Q_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Q.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"609\" y=\"-257\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"-257\" type=\"line\"/>\n      <point x=\"724\" y=\"-123\" type=\"line\"/>\n      <point x=\"609\" y=\"-123\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"519\" y=\"-123\"/>\n      <point x=\"491\" y=\"-90\"/>\n      <point x=\"491\" y=\"-30\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"36\" type=\"line\"/>\n      <point x=\"341\" y=\"36\" type=\"line\"/>\n      <point x=\"341\" y=\"-29\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"-202\"/>\n      <point x=\"448\" y=\"-257\"/>\n    </contour>\n    <component base=\"O.half\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O.half</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"R\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0052\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"707\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"161\" y=\"420\" type=\"line\"/>\n      <point x=\"273\" y=\"420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"420\"/>\n      <point x=\"1201\" y=\"623\"/>\n      <point x=\"1201\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1201\" y=\"1293\"/>\n      <point x=\"1004\" y=\"1440\"/>\n      <point x=\"625\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"1440\"/>\n      <point x=\"368\" y=\"1433\"/>\n      <point x=\"280\" y=\"1420\" type=\"curve\"/>\n      <point x=\"247\" y=\"1168\" type=\"line\"/>\n      <point x=\"340\" y=\"1181\"/>\n      <point x=\"465\" y=\"1188\"/>\n      <point x=\"612\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"1188\"/>\n      <point x=\"924\" y=\"1123\"/>\n      <point x=\"924\" y=\"998\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"782\"/>\n      <point x=\"713\" y=\"670\"/>\n      <point x=\"306\" y=\"670\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"194\" y=\"670\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"30\" y=\"0\" type=\"line\"/>\n      <point x=\"296\" y=\"0\" type=\"line\"/>\n      <point x=\"546\" y=\"1420\" type=\"line\"/>\n      <point x=\"280\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"770\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"0\" type=\"line\"/>\n      <point x=\"859\" y=\"630\" type=\"line\"/>\n      <point x=\"574\" y=\"630\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/R_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"R.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"237\" y=\"201\" type=\"line\"/>\n      <point x=\"517\" y=\"201\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"201\"/>\n      <point x=\"765\" y=\"284\"/>\n      <point x=\"765\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"561\"/>\n      <point x=\"675\" y=\"639\"/>\n      <point x=\"517\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"223\" y=\"639\" type=\"line\"/>\n      <point x=\"239\" y=\"504\" type=\"line\"/>\n      <point x=\"517\" y=\"504\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"574\" y=\"504\"/>\n      <point x=\"606\" y=\"473\"/>\n      <point x=\"606\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"366\"/>\n      <point x=\"574\" y=\"336\"/>\n      <point x=\"517\" y=\"336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"336\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"95\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"620\" y=\"0\" type=\"line\"/>\n      <point x=\"802\" y=\"0\" type=\"line\"/>\n      <point x=\"568\" y=\"301\" type=\"line\"/>\n      <point x=\"403\" y=\"301\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/R_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Racute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0154\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/R_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0158\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/R_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0156\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/R_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E5A\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/R_ho.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rho\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A1\"/>\n  <outline>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"S\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0053\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"469\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"-20\"/>\n      <point x=\"1050\" y=\"131\"/>\n      <point x=\"1050\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1050\" y=\"542\"/>\n      <point x=\"1007\" y=\"644\"/>\n      <point x=\"873\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"890\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"931\"/>\n      <point x=\"504\" y=\"984\"/>\n      <point x=\"504\" y=\"1044\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"504\" y=\"1137\"/>\n      <point x=\"575\" y=\"1186\"/>\n      <point x=\"710\" y=\"1186\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"1186\"/>\n      <point x=\"926\" y=\"1142\"/>\n      <point x=\"1026\" y=\"1059\" type=\"curve\"/>\n      <point x=\"1171\" y=\"1281\" type=\"line\"/>\n      <point x=\"1063\" y=\"1385\"/>\n      <point x=\"908\" y=\"1440\"/>\n      <point x=\"722\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1440\"/>\n      <point x=\"227\" y=\"1288\"/>\n      <point x=\"227\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"888\"/>\n      <point x=\"270\" y=\"762\"/>\n      <point x=\"396\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"508\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"470\"/>\n      <point x=\"773\" y=\"439\"/>\n      <point x=\"773\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"287\"/>\n      <point x=\"676\" y=\"234\"/>\n      <point x=\"488\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"234\"/>\n      <point x=\"229\" y=\"263\"/>\n      <point x=\"93\" y=\"320\" type=\"curve\"/>\n      <point x=\"31\" y=\"68\" type=\"line\"/>\n      <point x=\"149\" y=\"10\"/>\n      <point x=\"299\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"S.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"386\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"625\" y=\"-9\"/>\n      <point x=\"743\" y=\"60\"/>\n      <point x=\"743\" y=\"200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"313\"/>\n      <point x=\"669\" y=\"372\"/>\n      <point x=\"520\" y=\"378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"384\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"302\" y=\"386\"/>\n      <point x=\"274\" y=\"407\"/>\n      <point x=\"274\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"491\"/>\n      <point x=\"329\" y=\"513\"/>\n      <point x=\"439\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"523\" y=\"513\"/>\n      <point x=\"606\" y=\"496\"/>\n      <point x=\"690\" y=\"463\" type=\"curve\"/>\n      <point x=\"746\" y=\"593\" type=\"line\"/>\n      <point x=\"662\" y=\"630\"/>\n      <point x=\"560\" y=\"648\"/>\n      <point x=\"439\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"222\" y=\"648\"/>\n      <point x=\"115\" y=\"577\"/>\n      <point x=\"115\" y=\"434\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"115\" y=\"319\"/>\n      <point x=\"181\" y=\"259\"/>\n      <point x=\"315\" y=\"254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"245\"/>\n      <point x=\"583\" y=\"225\"/>\n      <point x=\"583\" y=\"188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"147\"/>\n      <point x=\"521\" y=\"126\"/>\n      <point x=\"397\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"126\"/>\n      <point x=\"212\" y=\"143\"/>\n      <point x=\"108\" y=\"178\" type=\"curve\"/>\n      <point x=\"88\" y=\"30\" type=\"line\"/>\n      <point x=\"172\" y=\"4\"/>\n      <point x=\"271\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015A\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"acutecomb.case.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0160\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015E\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"cedillacomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_chwa-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Schwa-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04D8\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"496\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"989\" y=\"-20\"/>\n      <point x=\"1179\" y=\"435\"/>\n      <point x=\"1179\" y=\"856\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1179\" y=\"1258\"/>\n      <point x=\"1006\" y=\"1440\"/>\n      <point x=\"626\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"1440\"/>\n      <point x=\"343\" y=\"1414\"/>\n      <point x=\"206\" y=\"1362\" type=\"curve\"/>\n      <point x=\"247\" y=\"1129\" type=\"line\"/>\n      <point x=\"338\" y=\"1165\"/>\n      <point x=\"460\" y=\"1188\"/>\n      <point x=\"592\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"1188\"/>\n      <point x=\"908\" y=\"1137\"/>\n      <point x=\"908\" y=\"831\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"558\"/>\n      <point x=\"813\" y=\"232\"/>\n      <point x=\"509\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"232\"/>\n      <point x=\"330\" y=\"285\"/>\n      <point x=\"330\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"626\"/>\n      <point x=\"562\" y=\"675\"/>\n      <point x=\"784\" y=\"675\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"675\"/>\n      <point x=\"962\" y=\"668\"/>\n      <point x=\"949\" y=\"670\" type=\"curve\"/>\n      <point x=\"1066\" y=\"885\" type=\"line\"/>\n      <point x=\"976\" y=\"904\"/>\n      <point x=\"823\" y=\"915\"/>\n      <point x=\"687\" y=\"915\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"915\"/>\n      <point x=\"51\" y=\"717\"/>\n      <point x=\"51\" y=\"371\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"51\" y=\"114\"/>\n      <point x=\"228\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_chwa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Schwa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"018F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"566\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"1189\"/>\n      <point x=\"909\" y=\"1059\"/>\n      <point x=\"911\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"458\"/>\n      <point x=\"751\" y=\"232\"/>\n      <point x=\"483\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"232\"/>\n      <point x=\"340\" y=\"280\"/>\n      <point x=\"340\" y=\"361\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"340\" y=\"547\"/>\n      <point x=\"588\" y=\"660\"/>\n      <point x=\"1009\" y=\"667\" type=\"curve\"/>\n      <point x=\"968\" y=\"919\" type=\"line\"/>\n      <point x=\"398\" y=\"906\"/>\n      <point x=\"62\" y=\"676\"/>\n      <point x=\"62\" y=\"300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"108\"/>\n      <point x=\"211\" y=\"-20\"/>\n      <point x=\"435\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"-20\"/>\n      <point x=\"1194\" y=\"304\"/>\n      <point x=\"1194\" y=\"851\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1194\" y=\"1221\"/>\n      <point x=\"964\" y=\"1440\"/>\n      <point x=\"575\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"1440\"/>\n      <point x=\"316\" y=\"1416\"/>\n      <point x=\"200\" y=\"1376\" type=\"curve\"/>\n      <point x=\"254\" y=\"1128\" type=\"line\"/>\n      <point x=\"354\" y=\"1166\"/>\n      <point x=\"470\" y=\"1189\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015C\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0218\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E62\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_ha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0428\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"996\" y=\"0\" type=\"line\"/>\n      <point x=\"1246\" y=\"1420\" type=\"line\"/>\n      <point x=\"980\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"60\" y=\"0\" type=\"line\"/>\n      <point x=\"959\" y=\"0\" type=\"line\"/>\n      <point x=\"1001\" y=\"244\" type=\"line\"/>\n      <point x=\"102\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"0\" type=\"line\"/>\n      <point x=\"284\" y=\"0\" type=\"line\"/>\n      <point x=\"534\" y=\"1420\" type=\"line\"/>\n      <point x=\"268\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"404\" y=\"0\" type=\"line\"/>\n      <point x=\"610\" y=\"0\" type=\"line\"/>\n      <point x=\"860\" y=\"1420\" type=\"line\"/>\n      <point x=\"654\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_hcha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Shcha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0429\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"729\" y=\"0\" type=\"line\"/>\n      <point x=\"995\" y=\"0\" type=\"line\"/>\n      <point x=\"1244\" y=\"1420\" type=\"line\"/>\n      <point x=\"978\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"989\" y=\"-319\" type=\"line\"/>\n      <point x=\"1045\" y=\"-188\"/>\n      <point x=\"1113\" y=\"117\"/>\n      <point x=\"1120\" y=\"244\" type=\"curve\"/>\n      <point x=\"192\" y=\"244\" type=\"line\"/>\n      <point x=\"149\" y=\"0\" type=\"line\"/>\n      <point x=\"928\" y=\"0\" type=\"line\"/>\n      <point x=\"851\" y=\"46\" type=\"line\"/>\n      <point x=\"832\" y=\"-43\"/>\n      <point x=\"797\" y=\"-162\"/>\n      <point x=\"753\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"535\" y=\"1420\" type=\"line\"/>\n      <point x=\"269\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"404\" y=\"0\" type=\"line\"/>\n      <point x=\"611\" y=\"0\" type=\"line\"/>\n      <point x=\"860\" y=\"1420\" type=\"line\"/>\n      <point x=\"653\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_hha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Shha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04BA\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1109\" y=\"0\" name=\"bottomright\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"740\" y=\"0\" type=\"line\"/>\n      <point x=\"1007\" y=\"0\" type=\"line\"/>\n      <point x=\"1035\" y=\"120\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1065\" y=\"249\"/>\n      <point x=\"1094\" y=\"401\"/>\n      <point x=\"1094\" y=\"525\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1094\" y=\"778\"/>\n      <point x=\"916\" y=\"941\"/>\n      <point x=\"657\" y=\"941\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"941\"/>\n      <point x=\"410\" y=\"893\"/>\n      <point x=\"311\" y=\"819\" type=\"curve\"/>\n      <point x=\"286\" y=\"559\" type=\"line\"/>\n      <point x=\"433\" y=\"651\"/>\n      <point x=\"506\" y=\"689\"/>\n      <point x=\"616\" y=\"689\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"689\"/>\n      <point x=\"822\" y=\"622\"/>\n      <point x=\"822\" y=\"499\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"387\"/>\n      <point x=\"796\" y=\"267\"/>\n      <point x=\"768\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"40\" y=\"0\" type=\"line\"/>\n      <point x=\"306\" y=\"0\" type=\"line\"/>\n      <point x=\"556\" y=\"1420\" type=\"line\"/>\n      <point x=\"290\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_igma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sigma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A3\"/>\n  <anchor x=\"506\" y=\"1\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1421\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"312\" y=\"121\" type=\"line\"/>\n      <point x=\"897\" y=\"713\" type=\"line\"/>\n      <point x=\"478\" y=\"1309\" type=\"line\"/>\n      <point x=\"247\" y=\"1177\" type=\"line\"/>\n      <point x=\"566\" y=\"713\" type=\"line\"/>\n      <point x=\"83\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"40\" y=\"0\" type=\"line\"/>\n      <point x=\"993\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"243\" type=\"line\"/>\n      <point x=\"83\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"247\" y=\"1177\" type=\"line\"/>\n      <point x=\"1180\" y=\"1177\" type=\"line\"/>\n      <point x=\"1223\" y=\"1420\" type=\"line\"/>\n      <point x=\"290\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/S_oftsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Softsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042C\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"370\" y=\"0\" type=\"line\"/>\n      <point x=\"851\" y=\"0\"/>\n      <point x=\"1127\" y=\"209\"/>\n      <point x=\"1127\" y=\"562\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1127\" y=\"865\"/>\n      <point x=\"908\" y=\"1012\"/>\n      <point x=\"608\" y=\"1012\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"1012\"/>\n      <point x=\"390\" y=\"981\"/>\n      <point x=\"336\" y=\"961\" type=\"curve\"/>\n      <point x=\"291\" y=\"723\" type=\"line\"/>\n      <point x=\"332\" y=\"738\"/>\n      <point x=\"438\" y=\"767\"/>\n      <point x=\"563\" y=\"768\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"770\"/>\n      <point x=\"850\" y=\"713\"/>\n      <point x=\"850\" y=\"552\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"354\"/>\n      <point x=\"673\" y=\"244\"/>\n      <point x=\"411\" y=\"244\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"126\" y=\"244\" type=\"line\"/>\n      <point x=\"37\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"30\" y=\"0\" type=\"line\"/>\n      <point x=\"296\" y=\"0\" type=\"line\"/>\n      <point x=\"546\" y=\"1420\" type=\"line\"/>\n      <point x=\"280\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"T\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0054\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"631\" y=\"710\" name=\"center\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"372\" y=\"0\" type=\"line\"/>\n      <point x=\"638\" y=\"0\" type=\"line\"/>\n      <point x=\"888\" y=\"1420\" type=\"line\"/>\n      <point x=\"622\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"196\" y=\"1176\" type=\"line\"/>\n      <point x=\"1232\" y=\"1176\" type=\"line\"/>\n      <point x=\"1275\" y=\"1420\" type=\"line\"/>\n      <point x=\"239\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"T.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"344\" y=\"0\" type=\"line\"/>\n      <point x=\"495\" y=\"0\" type=\"line\"/>\n      <point x=\"495\" y=\"639\" type=\"line\"/>\n      <point x=\"344\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"53\" y=\"504\" type=\"line\"/>\n      <point x=\"786\" y=\"504\" type=\"line\"/>\n      <point x=\"786\" y=\"639\" type=\"line\"/>\n      <point x=\"53\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_au.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tau\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A4\"/>\n  <outline>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0166\"/>\n  <outline>\n    <contour>\n      <point x=\"176\" y=\"561\" type=\"line\"/>\n      <point x=\"1032\" y=\"561\" type=\"line\"/>\n      <point x=\"1074\" y=\"803\" type=\"line\"/>\n      <point x=\"218\" y=\"803\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0164\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0162\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"cedillacomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021A\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_diagonalstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tdiagonalstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023E\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"174\" y=\"-362\" type=\"line\"/>\n      <point x=\"1386\" y=\"1658\" type=\"line\"/>\n      <point x=\"1223\" y=\"1739\" type=\"line\"/>\n      <point x=\"23\" y=\"-285\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Te-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0422\"/>\n  <outline>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_heta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Theta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0398\"/>\n  <outline>\n    <contour>\n      <point x=\"212\" y=\"585\" type=\"line\"/>\n      <point x=\"1023\" y=\"585\" type=\"line\"/>\n      <point x=\"1056\" y=\"829\" type=\"line\"/>\n      <point x=\"245\" y=\"829\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Thorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DE\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"316\" y=\"0\" type=\"line\"/>\n      <point x=\"566\" y=\"1420\" type=\"line\"/>\n      <point x=\"300\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"134\" y=\"147\" type=\"line\"/>\n      <point x=\"246\" y=\"147\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"147\"/>\n      <point x=\"1174\" y=\"374\"/>\n      <point x=\"1174\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1174\" y=\"1103\"/>\n      <point x=\"963\" y=\"1257\"/>\n      <point x=\"558\" y=\"1257\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"1257\"/>\n      <point x=\"366\" y=\"1250\"/>\n      <point x=\"303\" y=\"1237\" type=\"curve\"/>\n      <point x=\"270\" y=\"985\" type=\"line\"/>\n      <point x=\"343\" y=\"998\"/>\n      <point x=\"444\" y=\"1005\"/>\n      <point x=\"565\" y=\"1005\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"1005\"/>\n      <point x=\"897\" y=\"926\"/>\n      <point x=\"897\" y=\"775\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"897\" y=\"527\"/>\n      <point x=\"686\" y=\"399\"/>\n      <point x=\"279\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"399\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E6E\"/>\n  <guideline x=\"1286\" y=\"1420\" angle=\"81.5358\"/>\n  <guideline x=\"249\" y=\"1420\" angle=\"81.5358\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_se-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tse-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0426\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"708\" y=\"0\" type=\"line\"/>\n      <point x=\"974\" y=\"0\" type=\"line\"/>\n      <point x=\"1223\" y=\"1420\" type=\"line\"/>\n      <point x=\"957\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"990\" y=\"-319\" type=\"line\"/>\n      <point x=\"1044\" y=\"-188\"/>\n      <point x=\"1111\" y=\"97\"/>\n      <point x=\"1120\" y=\"244\" type=\"curve\"/>\n      <point x=\"191\" y=\"244\" type=\"line\"/>\n      <point x=\"148\" y=\"0\" type=\"line\"/>\n      <point x=\"925\" y=\"0\" type=\"line\"/>\n      <point x=\"850\" y=\"46\" type=\"line\"/>\n      <point x=\"828\" y=\"-59\"/>\n      <point x=\"798\" y=\"-155\"/>\n      <point x=\"754\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"535\" y=\"1420\" type=\"line\"/>\n      <point x=\"269\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/T_she-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tshe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040B\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"116\" y=\"0\" type=\"line\"/>\n      <point x=\"382\" y=\"0\" type=\"line\"/>\n      <point x=\"627\" y=\"1393\" type=\"line\"/>\n      <point x=\"361\" y=\"1393\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"733\" y=\"0\" type=\"line\"/>\n      <point x=\"999\" y=\"0\" type=\"line\"/>\n      <point x=\"1018\" y=\"90\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1044\" y=\"213\"/>\n      <point x=\"1085\" y=\"392\"/>\n      <point x=\"1085\" y=\"527\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1085\" y=\"768\"/>\n      <point x=\"926\" y=\"924\"/>\n      <point x=\"702\" y=\"924\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"924\"/>\n      <point x=\"477\" y=\"877\"/>\n      <point x=\"385\" y=\"804\" type=\"curve\"/>\n      <point x=\"358\" y=\"546\" type=\"line\"/>\n      <point x=\"502\" y=\"638\"/>\n      <point x=\"562\" y=\"672\"/>\n      <point x=\"656\" y=\"672\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"672\"/>\n      <point x=\"813\" y=\"610\"/>\n      <point x=\"813\" y=\"497\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"390\"/>\n      <point x=\"782\" y=\"253\"/>\n      <point x=\"753\" y=\"104\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"117\" y=\"1176\" type=\"line\"/>\n      <point x=\"948\" y=\"1176\" type=\"line\"/>\n      <point x=\"991\" y=\"1420\" type=\"line\"/>\n      <point x=\"160\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0423\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"218\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"-20\"/>\n      <point x=\"680\" y=\"142\"/>\n      <point x=\"838\" y=\"334\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1113\" y=\"669\"/>\n      <point x=\"1251\" y=\"970\"/>\n      <point x=\"1329\" y=\"1419\" type=\"curve\"/>\n      <point x=\"1055\" y=\"1419\" type=\"line\"/>\n      <point x=\"997\" y=\"1032\"/>\n      <point x=\"889\" y=\"750\"/>\n      <point x=\"644\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"334\"/>\n      <point x=\"397\" y=\"232\"/>\n      <point x=\"234\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"232\"/>\n      <point x=\"137\" y=\"242\"/>\n      <point x=\"104\" y=\"251\" type=\"curve\"/>\n      <point x=\"64\" y=\"5\" type=\"line\"/>\n      <point x=\"99\" y=\"-15\"/>\n      <point x=\"155\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"523\" y=\"269\" type=\"line\"/>\n      <point x=\"798\" y=\"540\" type=\"line\"/>\n      <point x=\"683\" y=\"540\" type=\"line\"/>\n      <point x=\"453\" y=\"1430\" type=\"line\"/>\n      <point x=\"181\" y=\"1398\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0055\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"973\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1372\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"539\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"829\" y=\"-20\"/>\n      <point x=\"1009\" y=\"143\"/>\n      <point x=\"1064\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1234\" y=\"1420\" type=\"line\"/>\n      <point x=\"968\" y=\"1420\" type=\"line\"/>\n      <point x=\"798\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"310\"/>\n      <point x=\"689\" y=\"234\"/>\n      <point x=\"556\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"412\" y=\"234\"/>\n      <point x=\"350\" y=\"310\"/>\n      <point x=\"376\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"1420\" type=\"line\"/>\n      <point x=\"280\" y=\"1420\" type=\"line\"/>\n      <point x=\"110\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"55\" y=\"143\"/>\n      <point x=\"202\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"417\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"-9\"/>\n      <point x=\"744\" y=\"82\"/>\n      <point x=\"744\" y=\"265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"639\" type=\"line\"/>\n      <point x=\"593\" y=\"639\" type=\"line\"/>\n      <point x=\"593\" y=\"265\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"172\"/>\n      <point x=\"536\" y=\"126\"/>\n      <point x=\"420\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"126\"/>\n      <point x=\"246\" y=\"172\"/>\n      <point x=\"246\" y=\"265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"639\" type=\"line\"/>\n      <point x=\"95\" y=\"639\" type=\"line\"/>\n      <point x=\"95\" y=\"265\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"95\" y=\"82\"/>\n      <point x=\"202\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DA\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ubreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016C\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ucircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DB\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Udieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DC\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Udotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE4\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ugrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D9\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE6\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01AF\"/>\n  <outline>\n    <contour>\n      <point x=\"1031\" y=\"1205\" type=\"line\"/>\n      <point x=\"1092\" y=\"1215\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1318\" y=\"1252\"/>\n      <point x=\"1452\" y=\"1399\"/>\n      <point x=\"1496\" y=\"1653\" type=\"curve\"/>\n      <point x=\"1218\" y=\"1653\" type=\"line\"/>\n      <point x=\"1197\" y=\"1518\"/>\n      <point x=\"1135\" y=\"1425\"/>\n      <point x=\"1035\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"U\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_hornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE8\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_horndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF0\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_horngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEA\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_hornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEC\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_horntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEE\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0170\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"hungarumlautcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_macron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Umacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04EE\"/>\n  <outline>\n    <component base=\"U-cy\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Umacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016A\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0172\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"475\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"-424\"/>\n      <point x=\"640\" y=\"-405\"/>\n      <point x=\"702\" y=\"-378\" type=\"curve\"/>\n      <point x=\"660\" y=\"-164\" type=\"line\"/>\n      <point x=\"617\" y=\"-177\"/>\n      <point x=\"572\" y=\"-185\"/>\n      <point x=\"532\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"-185\"/>\n      <point x=\"453\" y=\"-167\"/>\n      <point x=\"453\" y=\"-132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"-75\"/>\n      <point x=\"554\" y=\"-33\"/>\n      <point x=\"666\" y=\"-8\" type=\"curve\"/>\n      <point x=\"627\" y=\"22\" type=\"line\"/>\n      <point x=\"397\" y=\"12\" type=\"line\"/>\n      <point x=\"397\" y=\"-38\" type=\"line\"/>\n      <point x=\"290\" y=\"-89\"/>\n      <point x=\"226\" y=\"-159\"/>\n      <point x=\"226\" y=\"-255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"-368\"/>\n      <point x=\"312\" y=\"-424\"/>\n    </contour>\n    <component base=\"U\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_psilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A5\"/>\n  <outline>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_psilonafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilonafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B1\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"454\" y=\"1236\" type=\"line\"/>\n      <point x=\"454\" y=\"1150\" type=\"line\"/>\n      <point x=\"208\" y=\"1080\"/>\n      <point x=\"62\" y=\"831\"/>\n      <point x=\"62\" y=\"478\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"165\"/>\n      <point x=\"226\" y=\"-20\"/>\n      <point x=\"504\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"-20\"/>\n      <point x=\"1181\" y=\"283\"/>\n      <point x=\"1181\" y=\"797\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1181\" y=\"971\"/>\n      <point x=\"1108\" y=\"1102\"/>\n      <point x=\"983\" y=\"1150\" type=\"curve\"/>\n      <point x=\"983\" y=\"1228\" type=\"line\"/>\n      <point x=\"763\" y=\"1177\" type=\"line\"/>\n      <point x=\"851\" y=\"1143\"/>\n      <point x=\"903\" y=\"1026\"/>\n      <point x=\"903\" y=\"864\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"467\"/>\n      <point x=\"771\" y=\"232\"/>\n      <point x=\"547\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"232\"/>\n      <point x=\"340\" y=\"332\"/>\n      <point x=\"340\" y=\"500\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"340\" y=\"854\"/>\n      <point x=\"461\" y=\"1105\"/>\n      <point x=\"664\" y=\"1177\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"240\" y=\"1420\" type=\"line\"/>\n      <point x=\"197\" y=\"1177\" type=\"line\"/>\n      <point x=\"664\" y=\"1177\" type=\"line\"/>\n      <point x=\"707\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"806\" y=\"1420\" type=\"line\"/>\n      <point x=\"763\" y=\"1177\" type=\"line\"/>\n      <point x=\"1224\" y=\"1177\" type=\"line\"/>\n      <point x=\"1267\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_psilondieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilondieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AB\"/>\n  <outline>\n    <component base=\"Upsilon\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_psilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038E\"/>\n  <anchor x=\"675\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"925\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"522\" y=\"0\" type=\"line\"/>\n      <point x=\"790\" y=\"0\" type=\"line\"/>\n      <point x=\"898\" y=\"620\" type=\"line\"/>\n      <point x=\"630\" y=\"620\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"622\" y=\"470\" type=\"line\"/>\n      <point x=\"827\" y=\"460\" type=\"line\"/>\n      <point x=\"1095\" y=\"722\"/>\n      <point x=\"1263\" y=\"995\"/>\n      <point x=\"1349\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1065\" y=\"1420\" type=\"line\"/>\n      <point x=\"1018\" y=\"1117\"/>\n      <point x=\"948\" y=\"944\"/>\n      <point x=\"829\" y=\"768\" type=\"curve\"/>\n      <point x=\"811\" y=\"768\" type=\"line\"/>\n      <point x=\"718\" y=\"1430\" type=\"line\"/>\n      <point x=\"461\" y=\"1398\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"72\" y=\"1040\" type=\"line\"/>\n      <point x=\"324\" y=\"1040\" type=\"line\"/>\n      <point x=\"458\" y=\"1420\" type=\"line\"/>\n      <point x=\"177\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016E\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"ringcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_short-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ushort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040E\"/>\n  <outline>\n    <component base=\"U-cy\"/>\n    <component base=\"brevecomb-cy.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_straight-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ustraight-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04AE\"/>\n  <outline>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_straightstroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ustraightstroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B0\"/>\n  <outline>\n    <contour>\n      <point x=\"161\" y=\"241\" type=\"line\"/>\n      <point x=\"928\" y=\"241\" type=\"line\"/>\n      <point x=\"967\" y=\"465\" type=\"line\"/>\n      <point x=\"200\" y=\"465\" type=\"line\"/>\n    </contour>\n    <component base=\"Y\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>Y</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/U_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Utilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0168\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/V_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"V\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0056\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"288\" y=\"0\" type=\"line\"/>\n      <point x=\"630\" y=\"0\" type=\"line\"/>\n      <point x=\"957\" y=\"368\"/>\n      <point x=\"1172\" y=\"856\"/>\n      <point x=\"1329\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1065\" y=\"1420\" type=\"line\"/>\n      <point x=\"929\" y=\"951\"/>\n      <point x=\"765\" y=\"552\"/>\n      <point x=\"534\" y=\"239\" type=\"curve\"/>\n      <point x=\"516\" y=\"239\" type=\"line\"/>\n      <point x=\"447\" y=\"1432\" type=\"line\"/>\n      <point x=\"185\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/V_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"V.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"312\" y=\"0\" type=\"line\"/>\n      <point x=\"528\" y=\"0\" type=\"line\"/>\n      <point x=\"811\" y=\"639\" type=\"line\"/>\n      <point x=\"645\" y=\"639\" type=\"line\"/>\n      <point x=\"427\" y=\"129\" type=\"line\"/>\n      <point x=\"414\" y=\"129\" type=\"line\"/>\n      <point x=\"196\" y=\"639\" type=\"line\"/>\n      <point x=\"29\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/V_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ve-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0412\"/>\n  <outline>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/V_hook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Vhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B2\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1005\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1354\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"687\" y=\"1175\" type=\"line\"/>\n      <point x=\"768\" y=\"1175\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"1175\"/>\n      <point x=\"916\" y=\"1125\"/>\n      <point x=\"892\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"308\"/>\n      <point x=\"688\" y=\"233\"/>\n      <point x=\"548\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"233\"/>\n      <point x=\"350\" y=\"308\"/>\n      <point x=\"376\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"1420\" type=\"line\"/>\n      <point x=\"280\" y=\"1420\" type=\"line\"/>\n      <point x=\"110\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"54\" y=\"138\"/>\n      <point x=\"184\" y=\"-20\"/>\n      <point x=\"499\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"-20\"/>\n      <point x=\"1008\" y=\"138\"/>\n      <point x=\"1064\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1165\" y=\"1030\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1212\" y=\"1297\"/>\n      <point x=\"1117\" y=\"1420\"/>\n      <point x=\"860\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/V_turned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Vturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0245\"/>\n  <outline>\n    <component base=\"El-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/W_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"W\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0057\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"717\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"551\" y=\"0\" type=\"line\"/>\n      <point x=\"828\" y=\"0\" type=\"line\"/>\n      <point x=\"1042\" y=\"348\"/>\n      <point x=\"1276\" y=\"916\"/>\n      <point x=\"1347\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1073\" y=\"1420\" type=\"line\"/>\n      <point x=\"1001\" y=\"1010\"/>\n      <point x=\"877\" y=\"531\"/>\n      <point x=\"717\" y=\"237\" type=\"curve\"/>\n      <point x=\"699\" y=\"237\" type=\"line\"/>\n      <point x=\"766\" y=\"1072\" type=\"line\"/>\n      <point x=\"554\" y=\"1060\" type=\"line\"/>\n      <point x=\"496\" y=\"445\" type=\"line\"/>\n      <point x=\"592\" y=\"445\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"107\" y=\"0\" type=\"line\"/>\n      <point x=\"414\" y=\"0\" type=\"line\"/>\n      <point x=\"627\" y=\"526\" type=\"line\"/>\n      <point x=\"476\" y=\"416\" type=\"line\"/>\n      <point x=\"659\" y=\"416\" type=\"line\"/>\n      <point x=\"574\" y=\"677\" type=\"line\"/>\n      <point x=\"382\" y=\"237\" type=\"line\"/>\n      <point x=\"364\" y=\"237\" type=\"line\"/>\n      <point x=\"412\" y=\"1432\" type=\"line\"/>\n      <point x=\"160\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/W_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E82\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/W_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0174\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/W_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wdieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E84\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/W_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E80\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/X_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"X\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0058\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"181\" y=\"-40\" type=\"line\"/>\n      <point x=\"659\" y=\"598\" type=\"line\"/>\n      <point x=\"1248\" y=\"1280\" type=\"line\"/>\n      <point x=\"1042\" y=\"1460\" type=\"line\"/>\n      <point x=\"574\" y=\"770\" type=\"line\"/>\n      <point x=\"-15\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"848\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"-20\"/>\n      <point x=\"1003\" y=\"0\"/>\n      <point x=\"1083\" y=\"44\" type=\"curve\"/>\n      <point x=\"1024\" y=\"277\" type=\"line\"/>\n      <point x=\"977\" y=\"246\"/>\n      <point x=\"934\" y=\"232\"/>\n      <point x=\"887\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"232\"/>\n      <point x=\"757\" y=\"269\"/>\n      <point x=\"754\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"1131\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"1344\"/>\n      <point x=\"594\" y=\"1440\"/>\n      <point x=\"418\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"1440\"/>\n      <point x=\"277\" y=\"1423\"/>\n      <point x=\"183\" y=\"1386\" type=\"curve\"/>\n      <point x=\"242\" y=\"1153\" type=\"line\"/>\n      <point x=\"288\" y=\"1177\"/>\n      <point x=\"331\" y=\"1188\"/>\n      <point x=\"379\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"443\" y=\"1188\"/>\n      <point x=\"489\" y=\"1151\"/>\n      <point x=\"492\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"518\" y=\"289\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"658\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/X_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"X.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"602\" y=\"0\" type=\"line\"/>\n      <point x=\"799\" y=\"0\" type=\"line\"/>\n      <point x=\"475\" y=\"350\" type=\"line\"/>\n      <point x=\"238\" y=\"639\" type=\"line\"/>\n      <point x=\"42\" y=\"639\" type=\"line\"/>\n      <point x=\"376\" y=\"272\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"42\" y=\"0\" type=\"line\"/>\n      <point x=\"238\" y=\"0\" type=\"line\"/>\n      <point x=\"465\" y=\"272\" type=\"line\"/>\n      <point x=\"799\" y=\"639\" type=\"line\"/>\n      <point x=\"602\" y=\"639\" type=\"line\"/>\n      <point x=\"366\" y=\"350\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/X_i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Xi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039E\"/>\n  <anchor x=\"506\" y=\"1\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1421\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"194\" y=\"1160\" type=\"line\"/>\n      <point x=\"1227\" y=\"1160\" type=\"line\"/>\n      <point x=\"1273\" y=\"1420\" type=\"line\"/>\n      <point x=\"240\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-10\" y=\"0\" type=\"line\"/>\n      <point x=\"1023\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"260\" type=\"line\"/>\n      <point x=\"36\" y=\"260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"182\" y=\"581\" type=\"line\"/>\n      <point x=\"1035\" y=\"581\" type=\"line\"/>\n      <point x=\"1081\" y=\"841\" type=\"line\"/>\n      <point x=\"228\" y=\"841\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Y\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0059\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"158\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"372\" y=\"0\" type=\"line\"/>\n      <point x=\"640\" y=\"0\" type=\"line\"/>\n      <point x=\"743\" y=\"594\" type=\"line\"/>\n      <point x=\"475\" y=\"594\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"467\" y=\"444\" type=\"line\"/>\n      <point x=\"672\" y=\"434\" type=\"line\"/>\n      <point x=\"1020\" y=\"703\"/>\n      <point x=\"1238\" y=\"983\"/>\n      <point x=\"1349\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1065\" y=\"1420\" type=\"line\"/>\n      <point x=\"983\" y=\"1096\"/>\n      <point x=\"858\" y=\"910\"/>\n      <point x=\"649\" y=\"722\" type=\"curve\"/>\n      <point x=\"631\" y=\"722\" type=\"line\"/>\n      <point x=\"433\" y=\"1430\" type=\"line\"/>\n      <point x=\"161\" y=\"1398\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Y.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"355\" y=\"160\" type=\"line\"/>\n      <point x=\"486\" y=\"160\" type=\"line\"/>\n      <point x=\"825\" y=\"639\" type=\"line\"/>\n      <point x=\"659\" y=\"639\" type=\"line\"/>\n      <point x=\"427\" y=\"311\" type=\"line\"/>\n      <point x=\"414\" y=\"311\" type=\"line\"/>\n      <point x=\"182\" y=\"639\" type=\"line\"/>\n      <point x=\"15\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"345\" y=\"0\" type=\"line\"/>\n      <point x=\"496\" y=\"0\" type=\"line\"/>\n      <point x=\"496\" y=\"260\" type=\"line\"/>\n      <point x=\"345\" y=\"260\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DD\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ycircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0176\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ydieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0178\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ydotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF4\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_eru-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yeru-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042B\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"65\" y=\"0\" type=\"line\"/>\n      <point x=\"222\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"0\"/>\n      <point x=\"740\" y=\"293\"/>\n      <point x=\"740\" y=\"657\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"920\"/>\n      <point x=\"607\" y=\"1012\"/>\n      <point x=\"470\" y=\"1012\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"1012\"/>\n      <point x=\"363\" y=\"1004\"/>\n      <point x=\"332\" y=\"995\" type=\"curve\"/>\n      <point x=\"289\" y=\"762\" type=\"line\"/>\n      <point x=\"317\" y=\"765\"/>\n      <point x=\"364\" y=\"770\"/>\n      <point x=\"390\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"770\"/>\n      <point x=\"500\" y=\"744\"/>\n      <point x=\"500\" y=\"637\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"438\"/>\n      <point x=\"433\" y=\"244\"/>\n      <point x=\"279\" y=\"244\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"111\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"22\" y=\"0\" type=\"line\"/>\n      <point x=\"222\" y=\"0\" type=\"line\"/>\n      <point x=\"287\" y=\"85\" type=\"line\"/>\n      <point x=\"522\" y=\"1420\" type=\"line\"/>\n      <point x=\"272\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"726\" y=\"0\" type=\"line\"/>\n      <point x=\"992\" y=\"0\" type=\"line\"/>\n      <point x=\"1242\" y=\"1420\" type=\"line\"/>\n      <point x=\"976\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ygrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF2\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF6\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yi-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0407\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ymacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0232\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ytilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF8\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Z\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"632\" y=\"710\" name=\"center\"/>\n  <anchor x=\"737\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"287\" y=\"101\" type=\"line\"/>\n      <point x=\"1201\" y=\"1207\" type=\"line\"/>\n      <point x=\"986\" y=\"1342\" type=\"line\"/>\n      <point x=\"72\" y=\"213\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"0\" type=\"line\"/>\n      <point x=\"983\" y=\"0\" type=\"line\"/>\n      <point x=\"1026\" y=\"243\" type=\"line\"/>\n      <point x=\"267\" y=\"243\" type=\"line\"/>\n      <point x=\"72\" y=\"213\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"270\" y=\"1177\" type=\"line\"/>\n      <point x=\"1034\" y=\"1177\" type=\"line\"/>\n      <point x=\"1201\" y=\"1207\" type=\"line\"/>\n      <point x=\"1130\" y=\"1420\" type=\"line\"/>\n      <point x=\"312\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0179\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017D\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017B\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0417\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"481\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"-20\"/>\n      <point x=\"1058\" y=\"137\"/>\n      <point x=\"1068\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1076\" y=\"601\"/>\n      <point x=\"951\" y=\"711\"/>\n      <point x=\"787\" y=\"730\" type=\"curve\"/>\n      <point x=\"450\" y=\"724\" type=\"line\"/>\n      <point x=\"455\" y=\"584\" type=\"line\"/>\n      <point x=\"462\" y=\"584\"/>\n      <point x=\"487\" y=\"585\"/>\n      <point x=\"521\" y=\"584\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"579\"/>\n      <point x=\"790\" y=\"530\"/>\n      <point x=\"790\" y=\"419\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"297\"/>\n      <point x=\"665\" y=\"232\"/>\n      <point x=\"500\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"232\"/>\n      <point x=\"208\" y=\"324\"/>\n      <point x=\"158\" y=\"370\" type=\"curve\"/>\n      <point x=\"13\" y=\"146\" type=\"line\"/>\n      <point x=\"95\" y=\"55\"/>\n      <point x=\"242\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"455\" y=\"584\" type=\"line\"/>\n      <point x=\"782\" y=\"662\" type=\"line\"/>\n      <point x=\"790\" y=\"764\" type=\"line\"/>\n      <point x=\"1013\" y=\"789\"/>\n      <point x=\"1149\" y=\"956\"/>\n      <point x=\"1149\" y=\"1137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1149\" y=\"1328\"/>\n      <point x=\"997\" y=\"1440\"/>\n      <point x=\"731\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"1440\"/>\n      <point x=\"363\" y=\"1371\"/>\n      <point x=\"198\" y=\"1250\" type=\"curve\"/>\n      <point x=\"336\" y=\"1052\" type=\"line\"/>\n      <point x=\"463\" y=\"1145\"/>\n      <point x=\"601\" y=\"1188\"/>\n      <point x=\"708\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"1188\"/>\n      <point x=\"868\" y=\"1155\"/>\n      <point x=\"870\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"967\"/>\n      <point x=\"777\" y=\"897\"/>\n      <point x=\"584\" y=\"842\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"822\"/>\n      <point x=\"477\" y=\"816\"/>\n      <point x=\"447\" y=\"810\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zeta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0396\"/>\n  <outline>\n    <component base=\"Z\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_he-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0416\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"404\" y=\"0\" type=\"line\"/>\n      <point x=\"611\" y=\"0\" type=\"line\"/>\n      <point x=\"861\" y=\"1420\" type=\"line\"/>\n      <point x=\"654\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-75\" y=\"0\" type=\"curve\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"279\" y=\"249\"/>\n      <point x=\"344\" y=\"414\"/>\n      <point x=\"451\" y=\"626\" type=\"curve\"/>\n      <point x=\"248\" y=\"703\" type=\"line\"/>\n      <point x=\"70\" y=\"352\"/>\n      <point x=\"2\" y=\"206\"/>\n    </contour>\n    <contour>\n      <point x=\"234\" y=\"525\" type=\"line\"/>\n      <point x=\"903\" y=\"525\" type=\"line\"/>\n      <point x=\"950\" y=\"767\" type=\"line\"/>\n      <point x=\"282\" y=\"767\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"834\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"0\" type=\"line\"/>\n      <point x=\"1020\" y=\"703\" type=\"line\"/>\n      <point x=\"802\" y=\"697\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"448\" y=\"586\" type=\"line\"/>\n      <point x=\"444\" y=\"1420\" type=\"line\"/>\n      <point x=\"189\" y=\"1420\" type=\"line\"/>\n      <point x=\"230\" y=\"654\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1015\" y=\"649\" type=\"line\"/>\n      <point x=\"1111\" y=\"844\"/>\n      <point x=\"1259\" y=\"1162\"/>\n      <point x=\"1327\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1073\" y=\"1420\" type=\"line\"/>\n      <point x=\"984\" y=\"1121\"/>\n      <point x=\"884\" y=\"866\"/>\n      <point x=\"773\" y=\"657\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_hedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zhedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0496\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"374\" y=\"0\" type=\"line\"/>\n      <point x=\"581\" y=\"0\" type=\"line\"/>\n      <point x=\"831\" y=\"1420\" type=\"line\"/>\n      <point x=\"624\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-95\" y=\"0\" type=\"curve\"/>\n      <point x=\"167\" y=\"0\" type=\"line\"/>\n      <point x=\"259\" y=\"249\"/>\n      <point x=\"324\" y=\"414\"/>\n      <point x=\"431\" y=\"626\" type=\"curve\"/>\n      <point x=\"228\" y=\"703\" type=\"line\"/>\n      <point x=\"50\" y=\"352\"/>\n      <point x=\"-18\" y=\"206\"/>\n    </contour>\n    <contour>\n      <point x=\"998\" y=\"-319\" type=\"line\"/>\n      <point x=\"1044\" y=\"-188\"/>\n      <point x=\"1111\" y=\"97\"/>\n      <point x=\"1119\" y=\"244\" type=\"curve\"/>\n      <point x=\"885\" y=\"244\" type=\"line\"/>\n      <point x=\"850\" y=\"46\" type=\"line\"/>\n      <point x=\"832\" y=\"-42\"/>\n      <point x=\"803\" y=\"-147\"/>\n      <point x=\"762\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"794\" y=\"0\" type=\"line\"/>\n      <point x=\"1049\" y=\"0\" type=\"line\"/>\n      <point x=\"980\" y=\"703\" type=\"line\"/>\n      <point x=\"762\" y=\"697\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"975\" y=\"649\" type=\"line\"/>\n      <point x=\"1071\" y=\"844\"/>\n      <point x=\"1219\" y=\"1162\"/>\n      <point x=\"1287\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1033\" y=\"1420\" type=\"line\"/>\n      <point x=\"944\" y=\"1121\"/>\n      <point x=\"844\" y=\"866\"/>\n      <point x=\"733\" y=\"657\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"428\" y=\"586\" type=\"line\"/>\n      <point x=\"425\" y=\"1420\" type=\"line\"/>\n      <point x=\"169\" y=\"1420\" type=\"line\"/>\n      <point x=\"210\" y=\"654\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"214\" y=\"525\" type=\"line\"/>\n      <point x=\"883\" y=\"525\" type=\"line\"/>\n      <point x=\"930\" y=\"767\" type=\"line\"/>\n      <point x=\"262\" y=\"767\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/_notdef.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\".notdef\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"729\" y=\"0\" type=\"line\"/>\n      <point x=\"995\" y=\"0\" type=\"line\"/>\n      <point x=\"1245\" y=\"1420\" type=\"line\"/>\n      <point x=\"979\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"68\" y=\"0\" type=\"line\"/>\n      <point x=\"945\" y=\"0\" type=\"line\"/>\n      <point x=\"988\" y=\"243\" type=\"line\"/>\n      <point x=\"111\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"0\" type=\"line\"/>\n      <point x=\"284\" y=\"0\" type=\"line\"/>\n      <point x=\"534\" y=\"1420\" type=\"line\"/>\n      <point x=\"268\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"275\" y=\"1177\" type=\"line\"/>\n      <point x=\"1152\" y=\"1177\" type=\"line\"/>\n      <point x=\"1195\" y=\"1420\" type=\"line\"/>\n      <point x=\"318\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"a-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0430\"/>\n  <outline>\n    <component base=\"a\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/a.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"a\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0061\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"982\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"723\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"346\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"541\" y=\"-21\"/>\n      <point x=\"694\" y=\"117\"/>\n      <point x=\"764\" y=\"359\" type=\"curve\"/>\n      <point x=\"701\" y=\"224\" type=\"line\"/>\n      <point x=\"817\" y=\"224\" type=\"line\"/>\n      <point x=\"751\" y=\"250\" type=\"line\"/>\n      <point x=\"735\" y=\"131\"/>\n      <point x=\"724\" y=\"-10\"/>\n      <point x=\"1016\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"-10\" type=\"line\"/>\n      <point x=\"1165\" y=\"219\" type=\"line\"/>\n      <point x=\"1117\" y=\"219\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1007\" y=\"219\"/>\n      <point x=\"979\" y=\"247\"/>\n      <point x=\"995\" y=\"341\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1122\" y=\"1070\" type=\"line\"/>\n      <point x=\"1097\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"1070\"/>\n      <point x=\"32\" y=\"758\"/>\n      <point x=\"32\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"32\" y=\"88\"/>\n      <point x=\"146\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"411\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"236\"/>\n      <point x=\"309\" y=\"266\"/>\n      <point x=\"309\" y=\"332\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"597\"/>\n      <point x=\"579\" y=\"799\"/>\n      <point x=\"924\" y=\"813\" type=\"curve\"/>\n      <point x=\"828\" y=\"957\" type=\"line\"/>\n      <point x=\"777\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"392\"/>\n      <point x=\"586\" y=\"236\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/aacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"acutecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/abreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0103\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/abreveacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abreveacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAF\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n    <component base=\"acutecomb\" xOffset=\"115\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/abrevedotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevedotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB7\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/abrevegrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevegrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n    <component base=\"gravecomb\" xOffset=\"115\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/abrevehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n    <component base=\"hookabovecomb\" xOffset=\"115\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/abrevetilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevetilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n    <component base=\"tildecomb\" xOffset=\"115\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01CE\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"caroncomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E2\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n    <component base=\"acutecomb\" xOffset=\"498\" yOffset=\"339\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAD\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA7\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n    <component base=\"gravecomb\" xOffset=\"499\" yOffset=\"340\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA9\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n    <component base=\"hookabovecomb\" xOffset=\"458\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAB\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n    <component base=\"tildecomb\" xOffset=\"118\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acknowledgeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acknowledgeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2406\"/>\n  <outline>\n    <component base=\"A.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"K.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>A.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>K.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acknowledgeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acknowledgeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"299\" y=\"185\" type=\"line\"/>\n      <point x=\"617\" y=\"185\" type=\"line\"/>\n      <point x=\"1143\" y=\"1235\" type=\"line\"/>\n      <point x=\"878\" y=\"1235\" type=\"line\"/>\n      <point x=\"489\" y=\"465\" type=\"line\"/>\n      <point x=\"471\" y=\"465\" type=\"line\"/>\n      <point x=\"365\" y=\"786\" type=\"line\"/>\n      <point x=\"109\" y=\"786\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B4\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acutecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"_viet_top\"/>\n  <anchor x=\"818\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"634\" y=\"1580\" type=\"line\"/>\n      <point x=\"926\" y=\"1580\" type=\"line\"/>\n      <point x=\"1203\" y=\"1831\" type=\"line\"/>\n      <point x=\"829\" y=\"1831\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acutecomb.case.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.case.loclPLK\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"824\" y=\"1800\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"639\" y=\"1540\" type=\"line\"/>\n      <point x=\"895\" y=\"1540\" type=\"line\"/>\n      <point x=\"1034\" y=\"1840\" type=\"line\"/>\n      <point x=\"715\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acutecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb\" format=\"2\">\n  <unicode hex=\"0301\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"693\" y=\"1061\" name=\"_viet_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"587\" y=\"1248\" type=\"line\"/>\n      <point x=\"864\" y=\"1248\" type=\"line\"/>\n      <point x=\"1128\" y=\"1628\" type=\"line\"/>\n      <point x=\"831\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acutecomb.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.loclPLK\" format=\"2\">\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"785\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"583\" y=\"1248\" type=\"line\"/>\n      <point x=\"846\" y=\"1248\" type=\"line\"/>\n      <point x=\"1021\" y=\"1648\" type=\"line\"/>\n      <point x=\"738\" y=\"1648\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/acutetonecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutetonecomb\" format=\"2\">\n  <unicode hex=\"0341\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/adieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"adieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E4\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dieresiscomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/adotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"adotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ae.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ae\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E6\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"908\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"232\"/>\n      <point x=\"724\" y=\"314\"/>\n      <point x=\"723\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"674\"/>\n      <point x=\"797\" y=\"824\"/>\n      <point x=\"906\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"824\"/>\n      <point x=\"971\" y=\"798\"/>\n      <point x=\"971\" y=\"757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"643\"/>\n      <point x=\"853\" y=\"575\"/>\n      <point x=\"652\" y=\"571\" type=\"curve\"/>\n      <point x=\"673\" y=\"351\" type=\"line\"/>\n      <point x=\"1018\" y=\"360\"/>\n      <point x=\"1223\" y=\"524\"/>\n      <point x=\"1223\" y=\"790\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1223\" y=\"972\"/>\n      <point x=\"1131\" y=\"1080\"/>\n      <point x=\"974\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"1080\"/>\n      <point x=\"551\" y=\"804\"/>\n      <point x=\"551\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"132\"/>\n      <point x=\"681\" y=\"-20\"/>\n      <point x=\"899\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"-20\"/>\n      <point x=\"1034\" y=\"-7\"/>\n      <point x=\"1094\" y=\"14\" type=\"curve\"/>\n      <point x=\"1053\" y=\"252\" type=\"line\"/>\n      <point x=\"1006\" y=\"239\"/>\n      <point x=\"952\" y=\"232\"/>\n    </contour>\n    <contour>\n      <point x=\"207\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"-20\"/>\n      <point x=\"502\" y=\"72\"/>\n      <point x=\"543\" y=\"286\" type=\"curve\"/>\n      <point x=\"465\" y=\"254\" type=\"line\"/>\n      <point x=\"634\" y=\"254\" type=\"line\"/>\n      <point x=\"483\" y=\"556\" type=\"line\"/>\n      <point x=\"452\" y=\"380\" type=\"line\"/>\n      <point x=\"434\" y=\"270\"/>\n      <point x=\"369\" y=\"208\"/>\n      <point x=\"293\" y=\"208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"245\" y=\"208\"/>\n      <point x=\"219\" y=\"237\"/>\n      <point x=\"219\" y=\"287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"379\"/>\n      <point x=\"293\" y=\"439\"/>\n      <point x=\"408\" y=\"439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"439\"/>\n      <point x=\"512\" y=\"439\"/>\n      <point x=\"535\" y=\"409\" type=\"curve\"/>\n      <point x=\"610\" y=\"598\" type=\"line\"/>\n      <point x=\"574\" y=\"621\"/>\n      <point x=\"507\" y=\"634\"/>\n      <point x=\"444\" y=\"634\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"634\"/>\n      <point x=\"-45\" y=\"469\"/>\n      <point x=\"-45\" y=\"224\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-45\" y=\"67\"/>\n      <point x=\"44\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"447\" y=\"310\" type=\"line\"/>\n      <point x=\"609\" y=\"310\" type=\"line\"/>\n      <point x=\"653\" y=\"604\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"890\"/>\n      <point x=\"565\" y=\"1061\"/>\n      <point x=\"293\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"171\" y=\"1070\" type=\"line\"/>\n      <point x=\"131\" y=\"815\" type=\"line\"/>\n      <point x=\"230\" y=\"812\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"807\"/>\n      <point x=\"514\" y=\"732\"/>\n      <point x=\"494\" y=\"616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"392\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/aeacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aeacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FD\"/>\n  <outline>\n    <component base=\"ae\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/agrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"agrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E0\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"gravecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ahookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ahookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"hookabovecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/alpha-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alpha-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0251\"/>\n  <outline>\n    <component base=\"alpha\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/alpha.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alpha\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B1\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"982\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"723\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"636\" y=\"813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"769\" y=\"813\"/>\n      <point x=\"801\" y=\"757\"/>\n      <point x=\"845\" y=\"698\" type=\"curve\"/>\n      <point x=\"828\" y=\"910\" type=\"line\"/>\n      <point x=\"802\" y=\"910\" type=\"line\"/>\n      <point x=\"765\" y=\"1005\"/>\n      <point x=\"711\" y=\"1070\"/>\n      <point x=\"559\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"1070\"/>\n      <point x=\"31\" y=\"793\"/>\n      <point x=\"31\" y=\"377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"31\" y=\"124\"/>\n      <point x=\"157\" y=\"-21\"/>\n      <point x=\"377\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"-21\"/>\n      <point x=\"684\" y=\"89\"/>\n      <point x=\"746\" y=\"282\" type=\"curve\"/>\n      <point x=\"693\" y=\"224\" type=\"line\"/>\n      <point x=\"809\" y=\"224\" type=\"line\"/>\n      <point x=\"751\" y=\"250\" type=\"line\"/>\n      <point x=\"721\" y=\"59\"/>\n      <point x=\"795\" y=\"-10\"/>\n      <point x=\"1034\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"-10\" type=\"line\"/>\n      <point x=\"1165\" y=\"219\" type=\"line\"/>\n      <point x=\"1127\" y=\"219\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"219\"/>\n      <point x=\"978\" y=\"247\"/>\n      <point x=\"990\" y=\"317\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"1060\" type=\"line\"/>\n      <point x=\"847\" y=\"1060\" type=\"line\"/>\n      <point x=\"777\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"393\"/>\n      <point x=\"603\" y=\"236\"/>\n      <point x=\"442\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"236\"/>\n      <point x=\"309\" y=\"296\"/>\n      <point x=\"309\" y=\"402\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"649\"/>\n      <point x=\"440\" y=\"813\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/alphatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alphatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AC\"/>\n  <outline>\n    <component base=\"alpha\"/>\n    <component base=\"tonos\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/amacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"amacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0101\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"macroncomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ampersand.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"681\" y=\"587\" type=\"line\"/>\n      <point x=\"698\" y=\"532\"/>\n      <point x=\"713\" y=\"467\"/>\n      <point x=\"713\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"299\"/>\n      <point x=\"623\" y=\"232\"/>\n      <point x=\"472\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"232\"/>\n      <point x=\"276\" y=\"294\"/>\n      <point x=\"276\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"567\"/>\n      <point x=\"479\" y=\"685\"/>\n      <point x=\"823\" y=\"720\" type=\"curve\"/>\n      <point x=\"825\" y=\"950\" type=\"line\"/>\n      <point x=\"664\" y=\"911\" type=\"line\"/>\n      <point x=\"245\" y=\"860\"/>\n      <point x=\"-2\" y=\"655\"/>\n      <point x=\"-2\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-2\" y=\"122\"/>\n      <point x=\"164\" y=\"-20\"/>\n      <point x=\"446\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"-20\"/>\n      <point x=\"992\" y=\"135\"/>\n      <point x=\"992\" y=\"396\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"413\"/>\n      <point x=\"989\" y=\"433\"/>\n      <point x=\"985\" y=\"450\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1137\" y=\"694\" type=\"line\"/>\n      <point x=\"1021\" y=\"646\"/>\n      <point x=\"852\" y=\"606\"/>\n      <point x=\"681\" y=\"587\" type=\"curve\"/>\n      <point x=\"758\" y=\"366\" type=\"line\"/>\n      <point x=\"926\" y=\"364\"/>\n      <point x=\"1088\" y=\"408\"/>\n      <point x=\"1196\" y=\"463\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1175\" y=\"1263\" type=\"line\"/>\n      <point x=\"1077\" y=\"1379\"/>\n      <point x=\"919\" y=\"1440\"/>\n      <point x=\"715\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"1440\"/>\n      <point x=\"248\" y=\"1326\"/>\n      <point x=\"248\" y=\"1133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"1003\"/>\n      <point x=\"338\" y=\"912\"/>\n      <point x=\"464\" y=\"889\" type=\"curve\"/>\n      <point x=\"464\" y=\"820\" type=\"line\"/>\n      <point x=\"825\" y=\"950\" type=\"line\"/>\n      <point x=\"649\" y=\"950\"/>\n      <point x=\"526\" y=\"990\"/>\n      <point x=\"526\" y=\"1079\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"1147\"/>\n      <point x=\"612\" y=\"1188\"/>\n      <point x=\"725\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"1188\"/>\n      <point x=\"915\" y=\"1147\"/>\n      <point x=\"988\" y=\"1068\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ampersand.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0026\"/>\n  <outline>\n    <contour>\n      <point x=\"730\" y=\"410\" type=\"line\"/>\n      <point x=\"734\" y=\"398\"/>\n      <point x=\"737\" y=\"384\"/>\n      <point x=\"737\" y=\"372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"284\"/>\n      <point x=\"638\" y=\"232\"/>\n      <point x=\"472\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"232\"/>\n      <point x=\"276\" y=\"294\"/>\n      <point x=\"276\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"567\"/>\n      <point x=\"479\" y=\"685\"/>\n      <point x=\"823\" y=\"720\" type=\"curve\"/>\n      <point x=\"825\" y=\"950\" type=\"line\"/>\n      <point x=\"664\" y=\"911\" type=\"line\"/>\n      <point x=\"245\" y=\"860\"/>\n      <point x=\"-2\" y=\"655\"/>\n      <point x=\"-2\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-2\" y=\"122\"/>\n      <point x=\"164\" y=\"-20\"/>\n      <point x=\"446\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"-20\"/>\n      <point x=\"1016\" y=\"131\"/>\n      <point x=\"1016\" y=\"386\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"406\"/>\n      <point x=\"1013\" y=\"430\"/>\n      <point x=\"1009\" y=\"450\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1132\" y=\"713\" type=\"line\"/>\n      <point x=\"975\" y=\"661\"/>\n      <point x=\"746\" y=\"617\"/>\n      <point x=\"515\" y=\"597\" type=\"curve\"/>\n      <point x=\"542\" y=\"356\" type=\"line\"/>\n      <point x=\"790\" y=\"375\"/>\n      <point x=\"1031\" y=\"423\"/>\n      <point x=\"1191\" y=\"482\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1175\" y=\"1263\" type=\"line\"/>\n      <point x=\"1077\" y=\"1379\"/>\n      <point x=\"919\" y=\"1440\"/>\n      <point x=\"715\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"1440\"/>\n      <point x=\"248\" y=\"1326\"/>\n      <point x=\"248\" y=\"1133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"1003\"/>\n      <point x=\"338\" y=\"912\"/>\n      <point x=\"464\" y=\"889\" type=\"curve\"/>\n      <point x=\"464\" y=\"820\" type=\"line\"/>\n      <point x=\"825\" y=\"950\" type=\"line\"/>\n      <point x=\"649\" y=\"950\"/>\n      <point x=\"526\" y=\"990\"/>\n      <point x=\"526\" y=\"1079\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"1147\"/>\n      <point x=\"612\" y=\"1188\"/>\n      <point x=\"725\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"1188\"/>\n      <point x=\"915\" y=\"1147\"/>\n      <point x=\"988\" y=\"1068\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand_ampersand.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1678\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1954\" y=\"-20\"/>\n      <point x=\"2118\" y=\"131\"/>\n      <point x=\"2118\" y=\"386\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2118\" y=\"406\"/>\n      <point x=\"2115\" y=\"430\"/>\n      <point x=\"2111\" y=\"450\" type=\"curve\"/>\n      <point x=\"1812\" y=\"607\" type=\"line\"/>\n      <point x=\"1839\" y=\"539\"/>\n      <point x=\"1859\" y=\"460\"/>\n      <point x=\"1859\" y=\"392\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1859\" y=\"291\"/>\n      <point x=\"1802\" y=\"232\"/>\n      <point x=\"1704\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1600\" y=\"232\"/>\n      <point x=\"1538\" y=\"294\"/>\n      <point x=\"1538\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1538\" y=\"567\"/>\n      <point x=\"1696\" y=\"685\"/>\n      <point x=\"1965\" y=\"720\" type=\"curve\"/>\n      <point x=\"1967\" y=\"950\" type=\"line\"/>\n      <point x=\"1806\" y=\"911\" type=\"line\"/>\n      <point x=\"1462\" y=\"860\"/>\n      <point x=\"1260\" y=\"655\"/>\n      <point x=\"1260\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1260\" y=\"122\"/>\n      <point x=\"1415\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"565\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"-20\"/>\n      <point x=\"1005\" y=\"131\"/>\n      <point x=\"1005\" y=\"386\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1005\" y=\"406\"/>\n      <point x=\"1002\" y=\"430\"/>\n      <point x=\"998\" y=\"450\" type=\"curve\"/>\n      <point x=\"699\" y=\"607\" type=\"line\"/>\n      <point x=\"726\" y=\"539\"/>\n      <point x=\"746\" y=\"460\"/>\n      <point x=\"746\" y=\"392\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"291\"/>\n      <point x=\"689\" y=\"232\"/>\n      <point x=\"591\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"232\"/>\n      <point x=\"425\" y=\"294\"/>\n      <point x=\"425\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"567\"/>\n      <point x=\"583\" y=\"685\"/>\n      <point x=\"852\" y=\"720\" type=\"curve\"/>\n      <point x=\"854\" y=\"950\" type=\"line\"/>\n      <point x=\"693\" y=\"911\" type=\"line\"/>\n      <point x=\"349\" y=\"860\"/>\n      <point x=\"147\" y=\"655\"/>\n      <point x=\"147\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"147\" y=\"122\"/>\n      <point x=\"302\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"799\" y=\"400\" type=\"line\"/>\n      <point x=\"937\" y=\"411\"/>\n      <point x=\"1071\" y=\"438\"/>\n      <point x=\"1160\" y=\"472\" type=\"curve\"/>\n      <point x=\"1101\" y=\"703\" type=\"line\"/>\n      <point x=\"999\" y=\"660\"/>\n      <point x=\"850\" y=\"624\"/>\n      <point x=\"700\" y=\"607\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"493\" y=\"820\" type=\"line\"/>\n      <point x=\"854\" y=\"950\" type=\"line\"/>\n      <point x=\"649\" y=\"950\"/>\n      <point x=\"645\" y=\"984\"/>\n      <point x=\"645\" y=\"1059\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"1139\"/>\n      <point x=\"714\" y=\"1188\"/>\n      <point x=\"804\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"1188\"/>\n      <point x=\"958\" y=\"1147\"/>\n      <point x=\"1017\" y=\"1068\" type=\"curve\"/>\n      <point x=\"1204\" y=\"1263\" type=\"line\"/>\n      <point x=\"1117\" y=\"1379\"/>\n      <point x=\"976\" y=\"1440\"/>\n      <point x=\"794\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"1440\"/>\n      <point x=\"367\" y=\"1311\"/>\n      <point x=\"367\" y=\"1093\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"984\"/>\n      <point x=\"419\" y=\"908\"/>\n      <point x=\"493\" y=\"889\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1912\" y=\"400\" type=\"line\"/>\n      <point x=\"2050\" y=\"411\"/>\n      <point x=\"2184\" y=\"438\"/>\n      <point x=\"2273\" y=\"472\" type=\"curve\"/>\n      <point x=\"2214\" y=\"703\" type=\"line\"/>\n      <point x=\"2112\" y=\"660\"/>\n      <point x=\"1963\" y=\"624\"/>\n      <point x=\"1813\" y=\"607\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1606\" y=\"820\" type=\"line\"/>\n      <point x=\"1967\" y=\"950\" type=\"line\"/>\n      <point x=\"1762\" y=\"950\"/>\n      <point x=\"1758\" y=\"984\"/>\n      <point x=\"1758\" y=\"1059\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1758\" y=\"1139\"/>\n      <point x=\"1827\" y=\"1188\"/>\n      <point x=\"1917\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1997\" y=\"1188\"/>\n      <point x=\"2071\" y=\"1147\"/>\n      <point x=\"2130\" y=\"1068\" type=\"curve\"/>\n      <point x=\"2317\" y=\"1263\" type=\"line\"/>\n      <point x=\"2230\" y=\"1379\"/>\n      <point x=\"2089\" y=\"1440\"/>\n      <point x=\"1907\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1639\" y=\"1440\"/>\n      <point x=\"1480\" y=\"1311\"/>\n      <point x=\"1480\" y=\"1093\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1480\" y=\"984\"/>\n      <point x=\"1532\" y=\"908\"/>\n      <point x=\"1606\" y=\"889\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand_ampersand.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1678\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1954\" y=\"-20\"/>\n      <point x=\"2118\" y=\"131\"/>\n      <point x=\"2118\" y=\"386\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2118\" y=\"406\"/>\n      <point x=\"2115\" y=\"430\"/>\n      <point x=\"2111\" y=\"450\" type=\"curve\"/>\n      <point x=\"1832\" y=\"410\" type=\"line\"/>\n      <point x=\"1836\" y=\"398\"/>\n      <point x=\"1839\" y=\"384\"/>\n      <point x=\"1839\" y=\"372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1839\" y=\"284\"/>\n      <point x=\"1789\" y=\"232\"/>\n      <point x=\"1704\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1600\" y=\"232\"/>\n      <point x=\"1538\" y=\"294\"/>\n      <point x=\"1538\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1538\" y=\"567\"/>\n      <point x=\"1696\" y=\"685\"/>\n      <point x=\"1965\" y=\"720\" type=\"curve\"/>\n      <point x=\"1967\" y=\"950\" type=\"line\"/>\n      <point x=\"1806\" y=\"911\" type=\"line\"/>\n      <point x=\"1462\" y=\"860\"/>\n      <point x=\"1260\" y=\"655\"/>\n      <point x=\"1260\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1260\" y=\"122\"/>\n      <point x=\"1415\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"565\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"-20\"/>\n      <point x=\"1005\" y=\"131\"/>\n      <point x=\"1005\" y=\"386\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1005\" y=\"406\"/>\n      <point x=\"1002\" y=\"430\"/>\n      <point x=\"998\" y=\"450\" type=\"curve\"/>\n      <point x=\"719\" y=\"410\" type=\"line\"/>\n      <point x=\"723\" y=\"398\"/>\n      <point x=\"726\" y=\"384\"/>\n      <point x=\"726\" y=\"372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"726\" y=\"284\"/>\n      <point x=\"676\" y=\"232\"/>\n      <point x=\"591\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"232\"/>\n      <point x=\"425\" y=\"294\"/>\n      <point x=\"425\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"567\"/>\n      <point x=\"583\" y=\"685\"/>\n      <point x=\"852\" y=\"720\" type=\"curve\"/>\n      <point x=\"854\" y=\"950\" type=\"line\"/>\n      <point x=\"693\" y=\"911\" type=\"line\"/>\n      <point x=\"349\" y=\"860\"/>\n      <point x=\"147\" y=\"655\"/>\n      <point x=\"147\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"147\" y=\"122\"/>\n      <point x=\"302\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"661\" y=\"366\" type=\"line\"/>\n      <point x=\"852\" y=\"382\"/>\n      <point x=\"1037\" y=\"422\"/>\n      <point x=\"1160\" y=\"472\" type=\"curve\"/>\n      <point x=\"1101\" y=\"703\" type=\"line\"/>\n      <point x=\"982\" y=\"660\"/>\n      <point x=\"809\" y=\"624\"/>\n      <point x=\"634\" y=\"607\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"493\" y=\"820\" type=\"line\"/>\n      <point x=\"854\" y=\"950\" type=\"line\"/>\n      <point x=\"649\" y=\"950\"/>\n      <point x=\"645\" y=\"984\"/>\n      <point x=\"645\" y=\"1059\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"1139\"/>\n      <point x=\"714\" y=\"1188\"/>\n      <point x=\"804\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"1188\"/>\n      <point x=\"958\" y=\"1147\"/>\n      <point x=\"1017\" y=\"1068\" type=\"curve\"/>\n      <point x=\"1204\" y=\"1263\" type=\"line\"/>\n      <point x=\"1117\" y=\"1379\"/>\n      <point x=\"976\" y=\"1440\"/>\n      <point x=\"794\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"1440\"/>\n      <point x=\"367\" y=\"1311\"/>\n      <point x=\"367\" y=\"1093\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"984\"/>\n      <point x=\"419\" y=\"908\"/>\n      <point x=\"493\" y=\"889\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1774\" y=\"366\" type=\"line\"/>\n      <point x=\"1965\" y=\"382\"/>\n      <point x=\"2150\" y=\"422\"/>\n      <point x=\"2273\" y=\"472\" type=\"curve\"/>\n      <point x=\"2214\" y=\"703\" type=\"line\"/>\n      <point x=\"2095\" y=\"660\"/>\n      <point x=\"1922\" y=\"624\"/>\n      <point x=\"1747\" y=\"607\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1606\" y=\"820\" type=\"line\"/>\n      <point x=\"1967\" y=\"950\" type=\"line\"/>\n      <point x=\"1762\" y=\"950\"/>\n      <point x=\"1758\" y=\"984\"/>\n      <point x=\"1758\" y=\"1059\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1758\" y=\"1139\"/>\n      <point x=\"1827\" y=\"1188\"/>\n      <point x=\"1917\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1997\" y=\"1188\"/>\n      <point x=\"2071\" y=\"1147\"/>\n      <point x=\"2130\" y=\"1068\" type=\"curve\"/>\n      <point x=\"2317\" y=\"1263\" type=\"line\"/>\n      <point x=\"2230\" y=\"1379\"/>\n      <point x=\"2089\" y=\"1440\"/>\n      <point x=\"1907\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1639\" y=\"1440\"/>\n      <point x=\"1480\" y=\"1311\"/>\n      <point x=\"1480\" y=\"1093\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1480\" y=\"984\"/>\n      <point x=\"1532\" y=\"908\"/>\n      <point x=\"1606\" y=\"889\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/anoteleia.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"anoteleia\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0387\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"130\" yOffset=\"735\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/aogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0105\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"841\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"-424\"/>\n      <point x=\"966\" y=\"-408\"/>\n      <point x=\"1013\" y=\"-386\" type=\"curve\"/>\n      <point x=\"971\" y=\"-172\" type=\"line\"/>\n      <point x=\"946\" y=\"-180\"/>\n      <point x=\"921\" y=\"-185\"/>\n      <point x=\"898\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"-185\"/>\n      <point x=\"839\" y=\"-170\"/>\n      <point x=\"839\" y=\"-142\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"-81\"/>\n      <point x=\"955\" y=\"-9\"/>\n      <point x=\"1082\" y=\"-9\" type=\"curve\"/>\n      <point x=\"1043\" y=\"21\" type=\"line\"/>\n      <point x=\"843\" y=\"37\" type=\"line\"/>\n      <point x=\"843\" y=\"-13\" type=\"line\"/>\n      <point x=\"704\" y=\"-59\"/>\n      <point x=\"622\" y=\"-148\"/>\n      <point x=\"622\" y=\"-255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"622\" y=\"-368\"/>\n      <point x=\"697\" y=\"-424\"/>\n    </contour>\n    <component base=\"a\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/apostrophemod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"apostrophemod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02BC\"/>\n  <outline>\n    <component base=\"quoteright\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/approxequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"approxequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2248\"/>\n  <guideline x=\"79\" y=\"366\" angle=\"261.2025\"/>\n  <guideline x=\"1089\" y=\"366\" angle=\"261.2025\"/>\n  <outline>\n    <component base=\"asciitilde\" xOffset=\"50\" yOffset=\"290\"/>\n    <component base=\"asciitilde\" xOffset=\"-53\" yOffset=\"-290\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/aring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"ringcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/aringacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aringacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FB\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"ringcomb\" xOffset=\"30\"/>\n    <component base=\"acutecomb\" xOffset=\"69\" yOffset=\"280\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asciicircum.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciicircum\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005E\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"820\" type=\"line\"/>\n      <point x=\"493\" y=\"820\" type=\"line\"/>\n      <point x=\"721\" y=\"1210\" type=\"line\"/>\n      <point x=\"739\" y=\"1210\" type=\"line\"/>\n      <point x=\"829\" y=\"820\" type=\"line\"/>\n      <point x=\"1091\" y=\"820\" type=\"line\"/>\n      <point x=\"909\" y=\"1420\" type=\"line\"/>\n      <point x=\"605\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asciicircum_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciicircum_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"179\" y=\"657\" type=\"line\"/>\n      <point x=\"461\" y=\"657\" type=\"line\"/>\n      <point x=\"784\" y=\"1210\" type=\"line\"/>\n      <point x=\"802\" y=\"1210\" type=\"line\"/>\n      <point x=\"888\" y=\"835\" type=\"line\"/>\n      <point x=\"1150\" y=\"835\" type=\"line\"/>\n      <point x=\"972\" y=\"1420\" type=\"line\"/>\n      <point x=\"668\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1101\" y=\"333\" type=\"line\"/>\n      <point x=\"2085\" y=\"333\" type=\"line\"/>\n      <point x=\"2129\" y=\"583\" type=\"line\"/>\n      <point x=\"1145\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"890\" y=\"835\" type=\"line\"/>\n      <point x=\"2174\" y=\"835\" type=\"line\"/>\n      <point x=\"2218\" y=\"1085\" type=\"line\"/>\n      <point x=\"934\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007E\"/>\n  <outline>\n    <contour>\n      <point x=\"69\" y=\"453\" type=\"line\"/>\n      <point x=\"335\" y=\"453\" type=\"line\"/>\n      <point x=\"354\" y=\"559\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"365\" y=\"619\"/>\n      <point x=\"395\" y=\"645\"/>\n      <point x=\"457\" y=\"645\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"645\"/>\n      <point x=\"563\" y=\"616\"/>\n      <point x=\"612\" y=\"580\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"529\"/>\n      <point x=\"752\" y=\"487\"/>\n      <point x=\"844\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"487\"/>\n      <point x=\"1126\" y=\"586\"/>\n      <point x=\"1167\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1193\" y=\"963\" type=\"line\"/>\n      <point x=\"929\" y=\"963\" type=\"line\"/>\n      <point x=\"910\" y=\"857\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"796\"/>\n      <point x=\"873\" y=\"769\"/>\n      <point x=\"818\" y=\"769\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"769\"/>\n      <point x=\"730\" y=\"801\"/>\n      <point x=\"684\" y=\"834\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"885\"/>\n      <point x=\"542\" y=\"929\"/>\n      <point x=\"448\" y=\"929\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"929\"/>\n      <point x=\"136\" y=\"830\"/>\n      <point x=\"95\" y=\"599\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"244\" y=\"421\" type=\"line\"/>\n      <point x=\"507\" y=\"421\" type=\"line\"/>\n      <point x=\"522\" y=\"503\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"580\"/>\n      <point x=\"572\" y=\"613\"/>\n      <point x=\"646\" y=\"613\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"613\"/>\n      <point x=\"732\" y=\"597\"/>\n      <point x=\"775\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"533\"/>\n      <point x=\"908\" y=\"503\"/>\n      <point x=\"986\" y=\"503\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1137\" y=\"503\"/>\n      <point x=\"1220\" y=\"574\"/>\n      <point x=\"1290\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1344\" y=\"693\"/>\n      <point x=\"1391\" y=\"752\"/>\n      <point x=\"1506\" y=\"752\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1597\" y=\"752\"/>\n      <point x=\"1627\" y=\"711\"/>\n      <point x=\"1683\" y=\"675\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1736\" y=\"641\"/>\n      <point x=\"1786\" y=\"600\"/>\n      <point x=\"1893\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2073\" y=\"600\"/>\n      <point x=\"2170\" y=\"714\"/>\n      <point x=\"2217\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2234\" y=\"1077\" type=\"line\"/>\n      <point x=\"1970\" y=\"1077\" type=\"line\"/>\n      <point x=\"1954\" y=\"987\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1941\" y=\"915\"/>\n      <point x=\"1909\" y=\"884\"/>\n      <point x=\"1846\" y=\"884\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1810\" y=\"884\"/>\n      <point x=\"1781\" y=\"896\"/>\n      <point x=\"1710\" y=\"954\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1643\" y=\"1008\"/>\n      <point x=\"1576\" y=\"1028\"/>\n      <point x=\"1513\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1376\" y=\"1028\"/>\n      <point x=\"1288\" y=\"967\"/>\n      <point x=\"1221\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1147\" y=\"818\"/>\n      <point x=\"1088\" y=\"779\"/>\n      <point x=\"992\" y=\"779\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"779\"/>\n      <point x=\"876\" y=\"793\"/>\n      <point x=\"812\" y=\"832\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"865\"/>\n      <point x=\"713\" y=\"898\"/>\n      <point x=\"615\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"898\"/>\n      <point x=\"309\" y=\"786\"/>\n      <point x=\"263\" y=\"526\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1650\" y=\"932\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1555\" y=\"932\"/>\n      <point x=\"1436\" y=\"875\"/>\n      <point x=\"1322\" y=\"820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1232\" y=\"777\"/>\n      <point x=\"1139\" y=\"747\"/>\n      <point x=\"1066\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"747\"/>\n      <point x=\"933\" y=\"789\"/>\n      <point x=\"868\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"874\"/>\n      <point x=\"687\" y=\"932\"/>\n      <point x=\"570\" y=\"932\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"352\" y=\"932\"/>\n      <point x=\"231\" y=\"808\"/>\n      <point x=\"187\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"453\" type=\"line\"/>\n      <point x=\"430\" y=\"453\" type=\"line\"/>\n      <point x=\"435\" y=\"484\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"594\"/>\n      <point x=\"499\" y=\"648\"/>\n      <point x=\"567\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"648\"/>\n      <point x=\"718\" y=\"592\"/>\n      <point x=\"797\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"513\"/>\n      <point x=\"944\" y=\"488\"/>\n      <point x=\"1035\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1135\" y=\"488\"/>\n      <point x=\"1259\" y=\"533\"/>\n      <point x=\"1375\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1465\" y=\"633\"/>\n      <point x=\"1553\" y=\"673\"/>\n      <point x=\"1627\" y=\"673\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1711\" y=\"673\"/>\n      <point x=\"1769\" y=\"642\"/>\n      <point x=\"1826\" y=\"607\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1908\" y=\"558\"/>\n      <point x=\"1991\" y=\"508\"/>\n      <point x=\"2124\" y=\"508\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2340\" y=\"508\"/>\n      <point x=\"2442\" y=\"611\"/>\n      <point x=\"2664\" y=\"611\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2888\" y=\"611\"/>\n      <point x=\"2953\" y=\"593\"/>\n      <point x=\"3146\" y=\"593\" type=\"curve\"/>\n      <point x=\"3185\" y=\"814\" type=\"line\"/>\n      <point x=\"2984\" y=\"814\"/>\n      <point x=\"2919\" y=\"851\"/>\n      <point x=\"2684\" y=\"851\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2465\" y=\"851\"/>\n      <point x=\"2365\" y=\"767\"/>\n      <point x=\"2155\" y=\"767\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2057\" y=\"767\"/>\n      <point x=\"1991\" y=\"806\"/>\n      <point x=\"1921\" y=\"847\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1849\" y=\"891\"/>\n      <point x=\"1770\" y=\"932\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"2363\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_at.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_at.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"169\" y=\"451\" type=\"line\"/>\n      <point x=\"435\" y=\"451\" type=\"line\"/>\n      <point x=\"453\" y=\"555\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"617\"/>\n      <point x=\"495\" y=\"644\"/>\n      <point x=\"557\" y=\"644\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"613\" y=\"644\"/>\n      <point x=\"654\" y=\"605\"/>\n      <point x=\"702\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"501\"/>\n      <point x=\"840\" y=\"447\"/>\n      <point x=\"934\" y=\"447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"447\"/>\n      <point x=\"1220\" y=\"557\"/>\n      <point x=\"1310\" y=\"813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1403\" y=\"1080\"/>\n      <point x=\"1580\" y=\"1199\"/>\n      <point x=\"1810\" y=\"1199\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1919\" y=\"1199\"/>\n      <point x=\"1975\" y=\"1161\"/>\n      <point x=\"1975\" y=\"1019\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1959\" y=\"967\"/>\n      <point x=\"1962\" y=\"889\"/>\n      <point x=\"1898\" y=\"524\" type=\"curve\"/>\n      <point x=\"2136\" y=\"524\" type=\"line\"/>\n      <point x=\"2193\" y=\"846\"/>\n      <point x=\"2220\" y=\"991\"/>\n      <point x=\"2220\" y=\"1068\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2220\" y=\"1312\"/>\n      <point x=\"2092\" y=\"1439\"/>\n      <point x=\"1848\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1512\" y=\"1439\"/>\n      <point x=\"1260\" y=\"1287\"/>\n      <point x=\"1122\" y=\"963\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"790\"/>\n      <point x=\"1028\" y=\"731\"/>\n      <point x=\"939\" y=\"731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"731\"/>\n      <point x=\"840\" y=\"786\"/>\n      <point x=\"777\" y=\"841\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"710\" y=\"899\"/>\n      <point x=\"639\" y=\"928\"/>\n      <point x=\"548\" y=\"928\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"928\"/>\n      <point x=\"234\" y=\"828\"/>\n      <point x=\"194\" y=\"595\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1631\" y=\"-285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1713\" y=\"-285\"/>\n      <point x=\"1772\" y=\"-278\"/>\n      <point x=\"1832\" y=\"-260\" type=\"curve\"/>\n      <point x=\"1875\" y=\"-21\" type=\"line\"/>\n      <point x=\"1819\" y=\"-39\"/>\n      <point x=\"1759\" y=\"-46\"/>\n      <point x=\"1673\" y=\"-46\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1397\" y=\"-46\"/>\n      <point x=\"1311\" y=\"139\"/>\n      <point x=\"1384\" y=\"576\" type=\"curve\"/>\n      <point x=\"1312\" y=\"503\"/>\n      <point x=\"1225\" y=\"449\"/>\n      <point x=\"1124\" y=\"414\" type=\"curve\"/>\n      <point x=\"1075\" y=\"-74\"/>\n      <point x=\"1232\" y=\"-285\"/>\n    </contour>\n    <contour>\n      <point x=\"1635\" y=\"124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1740\" y=\"124\"/>\n      <point x=\"1826\" y=\"224\"/>\n      <point x=\"1863\" y=\"399\" type=\"curve\"/>\n      <point x=\"1839\" y=\"355\" type=\"line\"/>\n      <point x=\"1945\" y=\"355\" type=\"line\"/>\n      <point x=\"1888\" y=\"466\" type=\"line\"/>\n      <point x=\"1855\" y=\"143\" type=\"line\"/>\n      <point x=\"2069\" y=\"143\" type=\"line\"/>\n      <point x=\"2169\" y=\"710\" type=\"line\"/>\n      <point x=\"1931\" y=\"710\" type=\"line\"/>\n      <point x=\"1877\" y=\"405\"/>\n      <point x=\"1831\" y=\"346\"/>\n      <point x=\"1747\" y=\"346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1700\" y=\"346\"/>\n      <point x=\"1679\" y=\"376\"/>\n      <point x=\"1679\" y=\"442\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1679\" y=\"669\"/>\n      <point x=\"1815\" y=\"843\"/>\n      <point x=\"1988\" y=\"853\" type=\"curve\"/>\n      <point x=\"1991\" y=\"1090\" type=\"line\"/>\n      <point x=\"1684\" y=\"1047\"/>\n      <point x=\"1462\" y=\"784\"/>\n      <point x=\"1462\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1462\" y=\"224\"/>\n      <point x=\"1525\" y=\"124\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asciitilde\" xOffset=\"39\"/>\n    <component base=\"equal\" xOffset=\"1161\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"169\" y=\"454\" type=\"line\"/>\n      <point x=\"433\" y=\"454\" type=\"line\"/>\n      <point x=\"447\" y=\"534\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"612\"/>\n      <point x=\"521\" y=\"649\"/>\n      <point x=\"612\" y=\"649\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"649\"/>\n      <point x=\"729\" y=\"604\"/>\n      <point x=\"779\" y=\"571\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"516\"/>\n      <point x=\"930\" y=\"488\"/>\n      <point x=\"1029\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1213\" y=\"488\"/>\n      <point x=\"1348\" y=\"613\"/>\n      <point x=\"1564\" y=\"613\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1701\" y=\"613\"/>\n      <point x=\"1807\" y=\"587\"/>\n      <point x=\"1954\" y=\"587\" type=\"curve\"/>\n      <point x=\"1995\" y=\"817\" type=\"line\"/>\n      <point x=\"1841\" y=\"817\"/>\n      <point x=\"1712\" y=\"864\"/>\n      <point x=\"1558\" y=\"864\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1364\" y=\"864\"/>\n      <point x=\"1240\" y=\"747\"/>\n      <point x=\"1081\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"996\" y=\"747\"/>\n      <point x=\"932\" y=\"787\"/>\n      <point x=\"865\" y=\"829\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"886\"/>\n      <point x=\"680\" y=\"932\"/>\n      <point x=\"557\" y=\"932\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"932\"/>\n      <point x=\"233\" y=\"808\"/>\n      <point x=\"187\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"1184\" yOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1034\" y=\"432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1219\" y=\"432\"/>\n      <point x=\"1316\" y=\"531\"/>\n      <point x=\"1357\" y=\"762\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1367\" y=\"819\" type=\"line\"/>\n      <point x=\"1103\" y=\"819\" type=\"line\"/>\n      <point x=\"1100\" y=\"802\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1089\" y=\"742\"/>\n      <point x=\"1063\" y=\"716\"/>\n      <point x=\"1008\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"716\"/>\n      <point x=\"866\" y=\"781\"/>\n      <point x=\"784\" y=\"840\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"890\"/>\n      <point x=\"642\" y=\"929\"/>\n      <point x=\"548\" y=\"929\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"929\"/>\n      <point x=\"236\" y=\"830\"/>\n      <point x=\"195\" y=\"599\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"453\" type=\"line\"/>\n      <point x=\"435\" y=\"453\" type=\"line\"/>\n      <point x=\"454\" y=\"559\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"619\"/>\n      <point x=\"495\" y=\"645\"/>\n      <point x=\"557\" y=\"645\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"645\"/>\n      <point x=\"673\" y=\"602\"/>\n      <point x=\"730\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"506\"/>\n      <point x=\"905\" y=\"432\"/>\n    </contour>\n    <contour>\n      <point x=\"1070\" y=\"578\" type=\"line\"/>\n      <point x=\"2130\" y=\"578\" type=\"line\"/>\n      <point x=\"2173\" y=\"820\" type=\"line\"/>\n      <point x=\"1113\" y=\"820\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002A\"/>\n  <outline>\n    <contour>\n      <point x=\"343\" y=\"227\" type=\"line\"/>\n      <point x=\"694\" y=\"617\" type=\"line\"/>\n      <point x=\"553\" y=\"755\" type=\"line\"/>\n      <point x=\"156\" y=\"416\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"563\" y=\"599\" type=\"line\"/>\n      <point x=\"669\" y=\"801\" type=\"line\"/>\n      <point x=\"258\" y=\"981\" type=\"line\"/>\n      <point x=\"132\" y=\"713\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"729\" y=\"227\" type=\"line\"/>\n      <point x=\"976\" y=\"396\" type=\"line\"/>\n      <point x=\"721\" y=\"740\" type=\"line\"/>\n      <point x=\"524\" y=\"622\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"517\" y=\"696\" type=\"line\"/>\n      <point x=\"730\" y=\"696\" type=\"line\"/>\n      <point x=\"840\" y=\"1176\" type=\"line\"/>\n      <point x=\"558\" y=\"1176\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"631\" y=\"591\" type=\"line\"/>\n      <point x=\"1132\" y=\"713\" type=\"line\"/>\n      <point x=\"1061\" y=\"981\" type=\"line\"/>\n      <point x=\"599\" y=\"793\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"55\"/>\n    <component base=\"asterisk\" xOffset=\"1145\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_asterisk_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"2345\"/>\n    <component base=\"asterisk\" xOffset=\"55\"/>\n    <component base=\"asterisk\" xOffset=\"1261\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"57\"/>\n    <component base=\"greater\" xOffset=\"1103\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_parenright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_parenright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1219\" y=\"-200\" type=\"line\"/>\n      <point x=\"1262\" y=\"-200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1768\" y=\"-200\"/>\n      <point x=\"2132\" y=\"2\"/>\n      <point x=\"2235\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2318\" y=\"1291\"/>\n      <point x=\"2105\" y=\"1620\"/>\n      <point x=\"1582\" y=\"1620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1539\" y=\"1620\" type=\"line\"/>\n      <point x=\"1495\" y=\"1369\" type=\"line\"/>\n      <point x=\"1538\" y=\"1369\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1889\" y=\"1369\"/>\n      <point x=\"2024\" y=\"1130\"/>\n      <point x=\"1958\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1884\" y=\"252\"/>\n      <point x=\"1638\" y=\"51\"/>\n      <point x=\"1306\" y=\"51\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1263\" y=\"51\" type=\"line\"/>\n    </contour>\n    <component base=\"asterisk\" xOffset=\"205\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"57\"/>\n    <component base=\"slash\" xOffset=\"1135\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/at.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"at\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0040\"/>\n  <outline>\n    <contour>\n      <point x=\"604\" y=\"-283\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"-283\"/>\n      <point x=\"731\" y=\"-276\"/>\n      <point x=\"786\" y=\"-258\" type=\"curve\"/>\n      <point x=\"817\" y=\"-18\" type=\"line\"/>\n      <point x=\"759\" y=\"-36\"/>\n      <point x=\"695\" y=\"-43\"/>\n      <point x=\"606\" y=\"-43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"-43\"/>\n      <point x=\"310\" y=\"69\"/>\n      <point x=\"310\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"802\"/>\n      <point x=\"519\" y=\"1199\"/>\n      <point x=\"771\" y=\"1199\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"1199\"/>\n      <point x=\"926\" y=\"1161\"/>\n      <point x=\"926\" y=\"1019\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"967\"/>\n      <point x=\"913\" y=\"889\"/>\n      <point x=\"849\" y=\"524\" type=\"curve\"/>\n      <point x=\"1087\" y=\"524\" type=\"line\"/>\n      <point x=\"1144\" y=\"846\"/>\n      <point x=\"1171\" y=\"991\"/>\n      <point x=\"1171\" y=\"1068\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1171\" y=\"1312\"/>\n      <point x=\"1044\" y=\"1439\"/>\n      <point x=\"801\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"382\" y=\"1439\"/>\n      <point x=\"67\" y=\"957\"/>\n      <point x=\"67\" y=\"317\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"67\" y=\"-100\"/>\n      <point x=\"238\" y=\"-283\"/>\n    </contour>\n    <contour>\n      <point x=\"586\" y=\"124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"124\"/>\n      <point x=\"777\" y=\"224\"/>\n      <point x=\"814\" y=\"399\" type=\"curve\"/>\n      <point x=\"790\" y=\"355\" type=\"line\"/>\n      <point x=\"896\" y=\"355\" type=\"line\"/>\n      <point x=\"839\" y=\"466\" type=\"line\"/>\n      <point x=\"806\" y=\"143\" type=\"line\"/>\n      <point x=\"1020\" y=\"143\" type=\"line\"/>\n      <point x=\"1120\" y=\"710\" type=\"line\"/>\n      <point x=\"882\" y=\"710\" type=\"line\"/>\n      <point x=\"828\" y=\"405\"/>\n      <point x=\"782\" y=\"346\"/>\n      <point x=\"698\" y=\"346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"346\"/>\n      <point x=\"630\" y=\"376\"/>\n      <point x=\"630\" y=\"442\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"669\"/>\n      <point x=\"766\" y=\"843\"/>\n      <point x=\"939\" y=\"853\" type=\"curve\"/>\n      <point x=\"942\" y=\"1090\" type=\"line\"/>\n      <point x=\"635\" y=\"1047\"/>\n      <point x=\"413\" y=\"784\"/>\n      <point x=\"413\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"413\" y=\"224\"/>\n      <point x=\"476\" y=\"124\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/atilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"atilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"tildecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/b.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"b.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"443\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"304\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"-20\"/>\n      <point x=\"1139\" y=\"307\"/>\n      <point x=\"1139\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1139\" y=\"957\"/>\n      <point x=\"1029\" y=\"1080\"/>\n      <point x=\"838\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"1080\"/>\n      <point x=\"534\" y=\"983\"/>\n      <point x=\"495\" y=\"813\" type=\"curve\"/>\n      <point x=\"526\" y=\"869\" type=\"line\"/>\n      <point x=\"439\" y=\"869\" type=\"line\"/>\n      <point x=\"399\" y=\"388\" type=\"line\"/>\n      <point x=\"457\" y=\"693\"/>\n      <point x=\"602\" y=\"823\"/>\n      <point x=\"736\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"816\" y=\"823\"/>\n      <point x=\"862\" y=\"781\"/>\n      <point x=\"862\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"439\"/>\n      <point x=\"645\" y=\"237\"/>\n      <point x=\"357\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"237\"/>\n      <point x=\"208\" y=\"247\"/>\n      <point x=\"175\" y=\"262\" type=\"curve\"/>\n      <point x=\"56\" y=\"0\" type=\"line\"/>\n      <point x=\"140\" y=\"-12\"/>\n      <point x=\"220\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"331\" y=\"0\" type=\"line\"/>\n      <point x=\"581\" y=\"1420\" type=\"line\"/>\n      <point x=\"305\" y=\"1420\" type=\"line\"/>\n      <point x=\"56\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/b.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"b\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0062\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"425\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"304\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"-20\"/>\n      <point x=\"1139\" y=\"307\"/>\n      <point x=\"1139\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1139\" y=\"957\"/>\n      <point x=\"1029\" y=\"1080\"/>\n      <point x=\"838\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"1080\"/>\n      <point x=\"534\" y=\"983\"/>\n      <point x=\"495\" y=\"813\" type=\"curve\"/>\n      <point x=\"526\" y=\"869\" type=\"line\"/>\n      <point x=\"439\" y=\"869\" type=\"line\"/>\n      <point x=\"399\" y=\"388\" type=\"line\"/>\n      <point x=\"457\" y=\"693\"/>\n      <point x=\"602\" y=\"823\"/>\n      <point x=\"736\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"816\" y=\"823\"/>\n      <point x=\"862\" y=\"781\"/>\n      <point x=\"862\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"439\"/>\n      <point x=\"645\" y=\"237\"/>\n      <point x=\"357\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"237\"/>\n      <point x=\"208\" y=\"247\"/>\n      <point x=\"175\" y=\"262\" type=\"curve\"/>\n      <point x=\"56\" y=\"0\" type=\"line\"/>\n      <point x=\"140\" y=\"-12\"/>\n      <point x=\"220\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"205\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"154\" y=\"1521\"/>\n      <point x=\"103\" y=\"1517\"/>\n      <point x=\"53\" y=\"1505\" type=\"curve\"/>\n      <point x=\"82\" y=\"1253\" type=\"line\"/>\n      <point x=\"108\" y=\"1261\"/>\n      <point x=\"135\" y=\"1264\"/>\n      <point x=\"161\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"1264\"/>\n      <point x=\"268\" y=\"1210\"/>\n      <point x=\"246\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"55\" y=\"1\" type=\"line\"/>\n      <point x=\"330\" y=\"0\" type=\"line\"/>\n      <point x=\"527\" y=\"1117\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"1400\"/>\n      <point x=\"481\" y=\"1521\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/backslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005C\"/>\n  <outline>\n    <contour>\n      <point x=\"742\" y=\"-190\" type=\"line\"/>\n      <point x=\"993\" y=\"-190\" type=\"line\"/>\n      <point x=\"511\" y=\"1610\" type=\"line\"/>\n      <point x=\"260\" y=\"1610\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/backslash_backslash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash_backslash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"backslash\" xOffset=\"118\"/>\n    <component base=\"backslash\" xOffset=\"1000\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/backslash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"1030\"/>\n    <component base=\"backslash\" xOffset=\"170\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/backspaceC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backspaceControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2408\"/>\n  <outline>\n    <component base=\"B.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/backspaceC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backspaceControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"883\" y=\"285\" type=\"line\"/>\n      <point x=\"1125\" y=\"285\" type=\"line\"/>\n      <point x=\"1125\" y=\"1024\" type=\"line\"/>\n      <point x=\"883\" y=\"1024\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"777\" type=\"line\"/>\n      <point x=\"1100\" y=\"1027\" type=\"line\"/>\n      <point x=\"253\" y=\"1027\" type=\"line\"/>\n      <point x=\"253\" y=\"777\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"341\" type=\"line\"/>\n      <point x=\"734\" y=\"496\" type=\"line\"/>\n      <point x=\"348\" y=\"893\" type=\"line\"/>\n      <point x=\"348\" y=\"911\" type=\"line\"/>\n      <point x=\"734\" y=\"1308\" type=\"line\"/>\n      <point x=\"554\" y=\"1463\" type=\"line\"/>\n      <point x=\"64\" y=\"963\" type=\"line\"/>\n      <point x=\"64\" y=\"841\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"baht.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"366\" y=\"117\" type=\"line\"/>\n      <point x=\"289\" y=\"-320\" type=\"line\"/>\n      <point x=\"553\" y=\"-320\" type=\"line\"/>\n      <point x=\"630\" y=\"117\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"842\" y=\"1318\" type=\"line\"/>\n      <point x=\"916\" y=\"1740\" type=\"line\"/>\n      <point x=\"652\" y=\"1740\" type=\"line\"/>\n      <point x=\"578\" y=\"1318\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/baht.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"baht\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0E3F\"/>\n  <outline>\n    <contour>\n      <point x=\"289\" y=\"-320\" type=\"line\"/>\n      <point x=\"553\" y=\"-320\" type=\"line\"/>\n      <point x=\"916\" y=\"1740\" type=\"line\"/>\n      <point x=\"652\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-310\" type=\"line\"/>\n      <point x=\"732\" y=\"-310\" type=\"line\"/>\n      <point x=\"732\" y=\"1730\" type=\"line\"/>\n      <point x=\"468\" y=\"1730\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"1070\"/>\n    <component base=\"bar\" xOffset=\"130\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"1200\"/>\n    <component base=\"bar\" xOffset=\"2400\"/>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"356\"/>\n    <component base=\"bar\" xOffset=\"1336\"/>\n    <component base=\"bar_greater.liga\" xOffset=\"2255\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"34\" y=\"835\" type=\"line\"/>\n      <point x=\"829\" y=\"835\" type=\"line\"/>\n      <point x=\"873\" y=\"1085\" type=\"line\"/>\n      <point x=\"78\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-54\" y=\"333\" type=\"line\"/>\n      <point x=\"841\" y=\"333\" type=\"line\"/>\n      <point x=\"885\" y=\"583\" type=\"line\"/>\n      <point x=\"-10\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1547\" y=\"835\" type=\"line\"/>\n      <point x=\"2504\" y=\"835\" type=\"line\"/>\n      <point x=\"2548\" y=\"1085\" type=\"line\"/>\n      <point x=\"1591\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-84\" y=\"333\" type=\"line\"/>\n      <point x=\"811\" y=\"333\" type=\"line\"/>\n      <point x=\"855\" y=\"583\" type=\"line\"/>\n      <point x=\"-40\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"4\" y=\"835\" type=\"line\"/>\n      <point x=\"849\" y=\"835\" type=\"line\"/>\n      <point x=\"893\" y=\"1085\" type=\"line\"/>\n      <point x=\"48\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1509\" y=\"333\" type=\"line\"/>\n      <point x=\"2416\" y=\"333\" type=\"line\"/>\n      <point x=\"2460\" y=\"583\" type=\"line\"/>\n      <point x=\"1553\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"180\"/>\n    <component base=\"bar\" xOffset=\"1020\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1666\" y=\"835\" type=\"line\"/>\n      <point x=\"2473\" y=\"835\" type=\"line\"/>\n      <point x=\"2517\" y=\"1085\" type=\"line\"/>\n      <point x=\"1710\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1578\" y=\"333\" type=\"line\"/>\n      <point x=\"2385\" y=\"333\" type=\"line\"/>\n      <point x=\"2429\" y=\"583\" type=\"line\"/>\n      <point x=\"1622\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"260\"/>\n    <component base=\"bar_greater.liga\" xOffset=\"1010\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-10\" y=\"584\" type=\"line\"/>\n      <point x=\"807\" y=\"584\" type=\"line\"/>\n      <point x=\"851\" y=\"834\" type=\"line\"/>\n      <point x=\"34\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1643\" y=\"584\" type=\"line\"/>\n      <point x=\"2460\" y=\"584\" type=\"line\"/>\n      <point x=\"2504\" y=\"834\" type=\"line\"/>\n      <point x=\"1687\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-40\" y=\"584\" type=\"line\"/>\n      <point x=\"777\" y=\"584\" type=\"line\"/>\n      <point x=\"821\" y=\"834\" type=\"line\"/>\n      <point x=\"4\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1613\" y=\"584\" type=\"line\"/>\n      <point x=\"2430\" y=\"584\" type=\"line\"/>\n      <point x=\"2474\" y=\"834\" type=\"line\"/>\n      <point x=\"1657\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_braceright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_braceright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1379\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1667\" y=\"-214\"/>\n      <point x=\"1891\" y=\"-55\"/>\n      <point x=\"1853\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1845\" y=\"250\"/>\n      <point x=\"1835\" y=\"314\"/>\n      <point x=\"1835\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1835\" y=\"523\"/>\n      <point x=\"1929\" y=\"580\"/>\n      <point x=\"2185\" y=\"580\" type=\"curve\"/>\n      <point x=\"2230\" y=\"832\" type=\"line\"/>\n      <point x=\"2051\" y=\"832\"/>\n      <point x=\"1932\" y=\"885\"/>\n      <point x=\"1932\" y=\"976\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1932\" y=\"1100\"/>\n      <point x=\"2056\" y=\"1148\"/>\n      <point x=\"2082\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2113\" y=\"1511\"/>\n      <point x=\"1943\" y=\"1626\"/>\n      <point x=\"1704\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1575\" y=\"1626\"/>\n      <point x=\"1498\" y=\"1617\"/>\n      <point x=\"1430\" y=\"1606\" type=\"curve\"/>\n      <point x=\"1424\" y=\"1367\" type=\"line\"/>\n      <point x=\"1495\" y=\"1373\"/>\n      <point x=\"1562\" y=\"1377\"/>\n      <point x=\"1614\" y=\"1377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1729\" y=\"1377\"/>\n      <point x=\"1798\" y=\"1347\"/>\n      <point x=\"1794\" y=\"1294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1784\" y=\"1155\"/>\n      <point x=\"1654\" y=\"1100\"/>\n      <point x=\"1654\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1654\" y=\"802\"/>\n      <point x=\"1749\" y=\"732\"/>\n      <point x=\"1914\" y=\"728\" type=\"curve\"/>\n      <point x=\"1908\" y=\"684\" type=\"line\"/>\n      <point x=\"1682\" y=\"680\"/>\n      <point x=\"1571\" y=\"580\"/>\n      <point x=\"1571\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1571\" y=\"317\"/>\n      <point x=\"1587\" y=\"250\"/>\n      <point x=\"1594\" y=\"190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1606\" y=\"95\"/>\n      <point x=\"1505\" y=\"38\"/>\n      <point x=\"1373\" y=\"38\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1320\" y=\"38\"/>\n      <point x=\"1255\" y=\"42\"/>\n      <point x=\"1187\" y=\"48\" type=\"curve\"/>\n      <point x=\"1123\" y=\"-194\" type=\"line\"/>\n      <point x=\"1188\" y=\"-206\"/>\n      <point x=\"1260\" y=\"-214\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"3\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bracketright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bracketright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2079\" y=\"1634\" type=\"line\"/>\n      <point x=\"1815\" y=\"1634\" type=\"line\"/>\n      <point x=\"1489\" y=\"-214\" type=\"line\"/>\n      <point x=\"1753\" y=\"-214\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1835\" y=\"1634\" type=\"line\"/>\n      <point x=\"1288\" y=\"1634\" type=\"line\"/>\n      <point x=\"1243\" y=\"1382\" type=\"line\"/>\n      <point x=\"1790\" y=\"1382\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1554\" y=\"38\" type=\"line\"/>\n      <point x=\"1007\" y=\"38\" type=\"line\"/>\n      <point x=\"962\" y=\"-214\" type=\"line\"/>\n      <point x=\"1509\" y=\"-214\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"49\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"34\" y=\"835\" type=\"line\"/>\n      <point x=\"669\" y=\"835\" type=\"line\"/>\n      <point x=\"713\" y=\"1085\" type=\"line\"/>\n      <point x=\"78\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-54\" y=\"333\" type=\"line\"/>\n      <point x=\"581\" y=\"333\" type=\"line\"/>\n      <point x=\"625\" y=\"583\" type=\"line\"/>\n      <point x=\"-10\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"638\" y=\"835\" type=\"line\"/>\n      <point x=\"1273\" y=\"835\" type=\"line\"/>\n      <point x=\"1317\" y=\"1085\" type=\"line\"/>\n      <point x=\"682\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"550\" y=\"333\" type=\"line\"/>\n      <point x=\"1185\" y=\"333\" type=\"line\"/>\n      <point x=\"1229\" y=\"583\" type=\"line\"/>\n      <point x=\"594\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-2\" type=\"line\"/>\n      <point x=\"2053\" y=\"575\" type=\"line\"/>\n      <point x=\"2100\" y=\"843\" type=\"line\"/>\n      <point x=\"468\" y=\"1528\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"360\" type=\"line\"/>\n      <point x=\"732\" y=\"1128\" type=\"line\"/>\n      <point x=\"1730\" y=\"731\" type=\"line\"/>\n      <point x=\"1724\" y=\"697\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-10\" y=\"584\" type=\"line\"/>\n      <point x=\"607\" y=\"584\" type=\"line\"/>\n      <point x=\"651\" y=\"834\" type=\"line\"/>\n      <point x=\"34\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\"/>\n    <component base=\"hyphen_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"613\" y=\"584\" type=\"line\"/>\n      <point x=\"1230\" y=\"584\" type=\"line\"/>\n      <point x=\"1274\" y=\"834\" type=\"line\"/>\n      <point x=\"657\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_underscore_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_underscore_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"352\" y=\"-210\" type=\"line\"/>\n      <point x=\"616\" y=\"-210\" type=\"line\"/>\n      <point x=\"616\" y=\"1730\" type=\"line\"/>\n      <point x=\"352\" y=\"1730\" type=\"line\"/>\n    </contour>\n    <component base=\"underscore_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/be-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"be-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0431\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"774\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"523\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"-20\"/>\n      <point x=\"1106\" y=\"270\"/>\n      <point x=\"1106\" y=\"637\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"870\"/>\n      <point x=\"982\" y=\"1008\"/>\n      <point x=\"789\" y=\"1008\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"1008\"/>\n      <point x=\"528\" y=\"938\"/>\n      <point x=\"450\" y=\"773\" type=\"curve\"/>\n      <point x=\"424\" y=\"771\" type=\"line\"/>\n      <point x=\"452\" y=\"1033\"/>\n      <point x=\"580\" y=\"1171\"/>\n      <point x=\"818\" y=\"1202\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"1219\"/>\n      <point x=\"1179\" y=\"1231\"/>\n      <point x=\"1227\" y=\"1261\" type=\"curve\"/>\n      <point x=\"1219\" y=\"1519\" type=\"line\"/>\n      <point x=\"1106\" y=\"1487\"/>\n      <point x=\"895\" y=\"1479\"/>\n      <point x=\"785\" y=\"1464\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"1439\"/>\n      <point x=\"430\" y=\"1356\"/>\n      <point x=\"317\" y=\"1204\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"176\" y=\"1015\"/>\n      <point x=\"120\" y=\"705\"/>\n      <point x=\"120\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"120\" y=\"179\"/>\n      <point x=\"231\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"237\"/>\n      <point x=\"359\" y=\"274\"/>\n      <point x=\"412\" y=\"569\" type=\"curve\"/>\n      <point x=\"480\" y=\"663\"/>\n      <point x=\"567\" y=\"751\"/>\n      <point x=\"683\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"803\" y=\"751\"/>\n      <point x=\"827\" y=\"674\"/>\n      <point x=\"827\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"405\"/>\n      <point x=\"743\" y=\"237\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/be-cy.loclS_R_B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"be-cy.loclSRB\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"774\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"486\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"980\" y=\"-20\"/>\n      <point x=\"1079\" y=\"417\"/>\n      <point x=\"1079\" y=\"587\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"774\"/>\n      <point x=\"1011\" y=\"876\"/>\n      <point x=\"891\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1073\"/>\n      <point x=\"668\" y=\"1147\"/>\n      <point x=\"668\" y=\"1198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"668\" y=\"1222\"/>\n      <point x=\"682\" y=\"1235\"/>\n      <point x=\"728\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"1244\"/>\n      <point x=\"1090\" y=\"1241\"/>\n      <point x=\"1242\" y=\"1290\" type=\"curve\"/>\n      <point x=\"1213\" y=\"1520\" type=\"line\"/>\n      <point x=\"1019\" y=\"1483\"/>\n      <point x=\"796\" y=\"1486\"/>\n      <point x=\"657\" y=\"1473\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"1461\"/>\n      <point x=\"389\" y=\"1399\"/>\n      <point x=\"389\" y=\"1226\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"389\" y=\"1099\"/>\n      <point x=\"469\" y=\"1024\"/>\n      <point x=\"615\" y=\"916\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"798\"/>\n      <point x=\"802\" y=\"725\"/>\n      <point x=\"802\" y=\"637\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"423\"/>\n      <point x=\"720\" y=\"237\"/>\n      <point x=\"542\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"443\" y=\"237\"/>\n      <point x=\"378\" y=\"305\"/>\n      <point x=\"378\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"549\"/>\n      <point x=\"468\" y=\"804\"/>\n      <point x=\"724\" y=\"804\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"759\" y=\"804\"/>\n      <point x=\"801\" y=\"820\"/>\n      <point x=\"847\" y=\"786\" type=\"curve\"/>\n      <point x=\"996\" y=\"860\" type=\"line\"/>\n      <point x=\"865\" y=\"919\"/>\n      <point x=\"738\" y=\"947\"/>\n      <point x=\"630\" y=\"947\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"277\" y=\"947\"/>\n      <point x=\"99\" y=\"645\"/>\n      <point x=\"99\" y=\"353\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"141\"/>\n      <point x=\"237\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bellC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bellControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2407\"/>\n  <outline>\n    <component base=\"B.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bellC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bellControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"229\" type=\"line\"/>\n      <point x=\"311\" y=\"229\" type=\"line\"/>\n      <point x=\"311\" y=\"535\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"311\" y=\"834\"/>\n      <point x=\"394\" y=\"953\"/>\n      <point x=\"600\" y=\"953\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"953\"/>\n      <point x=\"889\" y=\"834\"/>\n      <point x=\"889\" y=\"535\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"229\" type=\"line\"/>\n      <point x=\"1125\" y=\"229\" type=\"line\"/>\n      <point x=\"1125\" y=\"535\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"999\"/>\n      <point x=\"975\" y=\"1185\"/>\n      <point x=\"600\" y=\"1185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"225\" y=\"1185\"/>\n      <point x=\"75\" y=\"999\"/>\n      <point x=\"75\" y=\"535\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"125\" y=\"229\" type=\"line\"/>\n      <point x=\"1075\" y=\"229\" type=\"line\"/>\n      <point x=\"1075\" y=\"471\" type=\"line\"/>\n      <point x=\"125\" y=\"471\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/beta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B2\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"565\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"-20\"/>\n      <point x=\"1110\" y=\"134\"/>\n      <point x=\"1110\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1110\" y=\"582\"/>\n      <point x=\"1050\" y=\"706\"/>\n      <point x=\"864\" y=\"724\" type=\"curve\"/>\n      <point x=\"864\" y=\"778\" type=\"line\"/>\n      <point x=\"811\" y=\"815\"/>\n      <point x=\"756\" y=\"836\"/>\n      <point x=\"687\" y=\"836\" type=\"curve\"/>\n      <point x=\"609\" y=\"715\" type=\"line\"/>\n      <point x=\"763\" y=\"684\"/>\n      <point x=\"833\" y=\"603\"/>\n      <point x=\"833\" y=\"462\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"309\"/>\n      <point x=\"734\" y=\"236\"/>\n      <point x=\"601\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"237\"/>\n      <point x=\"386\" y=\"353\"/>\n      <point x=\"422\" y=\"556\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"1020\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"1181\"/>\n      <point x=\"604\" y=\"1261\"/>\n      <point x=\"737\" y=\"1261\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"1261\"/>\n      <point x=\"888\" y=\"1213\"/>\n      <point x=\"888\" y=\"1129\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"986\"/>\n      <point x=\"686\" y=\"897\"/>\n      <point x=\"389\" y=\"897\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"291\" y=\"897\" type=\"line\"/>\n      <point x=\"284\" y=\"648\" type=\"line\"/>\n      <point x=\"370\" y=\"648\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"849\" y=\"648\"/>\n      <point x=\"1165\" y=\"868\"/>\n      <point x=\"1165\" y=\"1207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1165\" y=\"1407\"/>\n      <point x=\"1034\" y=\"1520\"/>\n      <point x=\"794\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"1520\"/>\n      <point x=\"287\" y=\"1354\"/>\n      <point x=\"228\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"147\" y=\"566\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"82\" y=\"193\"/>\n      <point x=\"234\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bitcoin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bitcoin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BF\"/>\n  <outline>\n    <contour>\n      <point x=\"174\" y=\"81\" type=\"line\"/>\n      <point x=\"103\" y=\"-320\" type=\"line\"/>\n      <point x=\"347\" y=\"-320\" type=\"line\"/>\n      <point x=\"418\" y=\"81\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"524\" y=\"81\" type=\"line\"/>\n      <point x=\"453\" y=\"-320\" type=\"line\"/>\n      <point x=\"697\" y=\"-320\" type=\"line\"/>\n      <point x=\"768\" y=\"81\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"630\" y=\"1283\" type=\"line\"/>\n      <point x=\"710\" y=\"1740\" type=\"line\"/>\n      <point x=\"466\" y=\"1740\" type=\"line\"/>\n      <point x=\"386\" y=\"1283\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"980\" y=\"1283\" type=\"line\"/>\n      <point x=\"1060\" y=\"1740\" type=\"line\"/>\n      <point x=\"816\" y=\"1740\" type=\"line\"/>\n      <point x=\"736\" y=\"1283\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CF\"/>\n  <note>\nH18533\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"185\"/>\n      <point x=\"1125\" y=\"395\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1025\"/>\n      <point x=\"915\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"1235\"/>\n      <point x=\"75\" y=\"1025\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"395\"/>\n      <point x=\"285\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C6\"/>\n  <note>\nuni25C6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B22\"/>\n  <note>\nuni2B22\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1120\" y=\"410\" type=\"line\"/>\n      <point x=\"1120\" y=\"1010\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"80\" y=\"1010\" type=\"line\"/>\n      <point x=\"80\" y=\"410\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackH_orizontalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackHorizontalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2C\"/>\n  <note>\nuni2B2C\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"395\"/>\n      <point x=\"1125\" y=\"520\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"900\"/>\n      <point x=\"916\" y=\"1025\"/>\n      <point x=\"600\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1025\"/>\n      <point x=\"75\" y=\"900\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"520\"/>\n      <point x=\"284\" y=\"395\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackI_nW_hiteD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackInWhiteDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C8\"/>\n  <note>\nuni25C8\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"551\" type=\"line\"/>\n      <point x=\"759\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"869\" type=\"line\"/>\n      <point x=\"441\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteDiamond</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackL_argeC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackLargeCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B24\"/>\n  <note>\nuni2B24\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackL_argeS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackLargeSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1B\"/>\n  <note>\nuni2B1B\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B25\"/>\n  <note>\nuni2B25\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"322\" type=\"line\"/>\n      <point x=\"988\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\n      <point x=\"212\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumDownTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC6\"/>\n  <note>\nuni2BC6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"466\" type=\"line\"/>\n      <point x=\"938\" y=\"1040\" type=\"line\"/>\n      <point x=\"262\" y=\"1040\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumLeftTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC7\"/>\n  <note>\nuni2BC7\n</note>\n  <outline>\n    <contour>\n      <point x=\"840\" y=\"372\" type=\"line\"/>\n      <point x=\"840\" y=\"1048\" type=\"line\"/>\n      <point x=\"266\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B27\"/>\n  <note>\nuni2B27\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"256\" type=\"line\"/>\n      <point x=\"873\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1164\" type=\"line\"/>\n      <point x=\"328\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumRightTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC8\"/>\n  <note>\nuni2BC8\n</note>\n  <outline>\n    <contour>\n      <point x=\"360\" y=\"372\" type=\"line\"/>\n      <point x=\"934\" y=\"710\" type=\"line\"/>\n      <point x=\"360\" y=\"1048\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumUpTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC5\"/>\n  <note>\nuni2BC5\n</note>\n  <outline>\n    <contour>\n      <point x=\"262\" y=\"380\" type=\"line\"/>\n      <point x=\"938\" y=\"380\" type=\"line\"/>\n      <point x=\"600\" y=\"954\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackP_arallelogram.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackParallelogram\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B0\"/>\n  <note>\nuni25B0\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1030\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"170\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackP_entagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackPentagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1F\"/>\n  <note>\nuni2B1F\n</note>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"168\" type=\"line\"/>\n      <point x=\"970\" y=\"168\" type=\"line\"/>\n      <point x=\"1200\" y=\"874\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"874\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_mallD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B29\"/>\n  <note>\nuni2B29\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"534\" type=\"line\"/>\n      <point x=\"776\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"886\" type=\"line\"/>\n      <point x=\"424\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_mallL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2A\"/>\n  <note>\nuni2B2A\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"402\" type=\"line\"/>\n      <point x=\"785\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1019\" type=\"line\"/>\n      <point x=\"415\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AA\"/>\n  <note>\nH18543\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"1010\" type=\"line\"/>\n      <point x=\"300\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_milingF_ace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmilingFace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263B\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"957\" y=\"110\"/>\n      <point x=\"1244\" y=\"394\"/>\n      <point x=\"1244\" y=\"820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1244\" y=\"1114\"/>\n      <point x=\"1042\" y=\"1310\"/>\n      <point x=\"738\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"1310\"/>\n      <point x=\"21\" y=\"1026\"/>\n      <point x=\"21\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"21\" y=\"306\"/>\n      <point x=\"223\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"561\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"337\"/>\n      <point x=\"271\" y=\"435\"/>\n      <point x=\"297\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"631\"/>\n      <point x=\"329\" y=\"651\"/>\n      <point x=\"375\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"651\"/>\n      <point x=\"737\" y=\"651\"/>\n      <point x=\"881\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"651\"/>\n      <point x=\"944\" y=\"634\"/>\n      <point x=\"935\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"435\"/>\n      <point x=\"760\" y=\"337\"/>\n    </contour>\n    <contour>\n      <point x=\"457\" y=\"735\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"371\" y=\"735\"/>\n      <point x=\"314\" y=\"792\"/>\n      <point x=\"314\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"964\"/>\n      <point x=\"371\" y=\"1021\"/>\n      <point x=\"457\" y=\"1021\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"1021\"/>\n      <point x=\"599\" y=\"964\"/>\n      <point x=\"599\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"792\"/>\n      <point x=\"542\" y=\"735\"/>\n    </contour>\n    <contour>\n      <point x=\"863\" y=\"735\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"735\"/>\n      <point x=\"721\" y=\"792\"/>\n      <point x=\"721\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"964\"/>\n      <point x=\"778\" y=\"1021\"/>\n      <point x=\"863\" y=\"1021\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"949\" y=\"1021\"/>\n      <point x=\"1006\" y=\"964\"/>\n      <point x=\"1006\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"792\"/>\n      <point x=\"949\" y=\"735\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A0\"/>\n  <note>\nfilledbox\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackV_erticalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerticalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2E\"/>\n  <note>\nuni2B2E\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"185\"/>\n      <point x=\"915\" y=\"394\"/>\n      <point x=\"915\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"1026\"/>\n      <point x=\"790\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1235\"/>\n      <point x=\"285\" y=\"1026\"/>\n      <point x=\"285\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"394\"/>\n      <point x=\"410\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackV_erticalR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerticalRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AE\"/>\n  <note>\nuni25AE\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"1310\" type=\"line\"/>\n      <point x=\"300\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blackV_erysmallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerysmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1D\"/>\n  <note>\nuni2B1D\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blank-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blank-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2800\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blank.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blank\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2423\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"-415\" type=\"line\"/>\n      <point x=\"1100\" y=\"-415\" type=\"line\"/>\n      <point x=\"1100\" y=\"-172\" type=\"line\"/>\n      <point x=\"100\" y=\"-172\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"832\" y=\"-298\" type=\"line\"/>\n      <point x=\"1100\" y=\"-298\" type=\"line\"/>\n      <point x=\"1100\" y=\"-20\" type=\"line\"/>\n      <point x=\"832\" y=\"-20\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"-298\" type=\"line\"/>\n      <point x=\"368\" y=\"-298\" type=\"line\"/>\n      <point x=\"368\" y=\"-20\" type=\"line\"/>\n      <point x=\"100\" y=\"-20\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blankS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blankSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2422\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"898\" type=\"line\"/>\n      <point x=\"706\" y=\"1228\" type=\"line\"/>\n      <point x=\"706\" y=\"1497\" type=\"line\"/>\n      <point x=\"0\" y=\"1167\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"447\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"-20\"/>\n      <point x=\"1116\" y=\"206\"/>\n      <point x=\"1116\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"906\"/>\n      <point x=\"963\" y=\"1080\"/>\n      <point x=\"697\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"1080\"/>\n      <point x=\"463\" y=\"1010\"/>\n      <point x=\"445\" y=\"868\" type=\"curve\"/>\n      <point x=\"355\" y=\"868\" type=\"line\"/>\n      <point x=\"417\" y=\"596\" type=\"line\"/>\n      <point x=\"417\" y=\"750\"/>\n      <point x=\"493\" y=\"825\"/>\n      <point x=\"645\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"825\"/>\n      <point x=\"831\" y=\"744\"/>\n      <point x=\"831\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"368\"/>\n      <point x=\"707\" y=\"235\"/>\n      <point x=\"489\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"235\"/>\n      <point x=\"315\" y=\"235\"/>\n      <point x=\"245\" y=\"269\" type=\"curve\"/>\n      <point x=\"146\" y=\"0\" type=\"line\"/>\n      <point x=\"248\" y=\"-12\"/>\n      <point x=\"345\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"146\" y=\"0\" type=\"line\"/>\n      <point x=\"417\" y=\"18\" type=\"line\"/>\n      <point x=\"417\" y=\"1500\" type=\"line\"/>\n      <point x=\"146\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"0\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBED\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-LC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-LC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"196\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"196\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-LC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-LC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"115\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"115\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-ML.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-ML\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"2226\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"600\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"300\" y=\"-480\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-ML.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-ML.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"1900\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"300\" y=\"-480\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-MR.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-MR\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"2226\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"600\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"900\" y=\"-480\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-MR.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-MR.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"1900\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"900\" y=\"-480\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-UC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-UC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1549\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"1549\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-UC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-UC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1305\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"1305\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB40.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB40\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB40.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB41.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB41\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB41.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB42.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB42\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB42.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB43.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB43\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB43.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB44.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB44\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB44.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB45\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB49.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB49\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB49.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB50.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB50\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB50.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB51.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB51\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB51.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB52.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB52\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB52.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB53.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB53\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB53.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB54.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB54\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB54.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB55.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB55\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB55.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB57.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB57\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB57.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB58.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB58\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB58.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB59.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB59\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB59.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB60.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB60\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB60.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB61.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB61\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB61.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB62.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB62\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB62.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB63.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB63\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB63.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB64.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB64\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB64.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB65.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB65\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB65.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB66.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB66\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB66.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB67.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB67\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB67.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD02\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD17\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD70\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1235678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1235678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD87\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1237.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1237\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1237.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1237.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1238.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1238\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD77\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1238.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1238.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD05\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD13\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1245678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1245678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD98\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1247.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1247\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1247.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1247.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1248.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1248\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1248.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1248.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-125678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-125678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1257.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1257\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1257.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1257.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1258.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1258\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1258.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1258.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1267.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1267\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1267.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1267.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1268.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1268\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD92\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1268.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1268.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-127.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-127\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-127.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-127.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1278.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1278\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1278.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1278.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-128.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-128\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD73\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-128.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-128.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD07\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD15\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1345678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1345678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-135.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-135\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-135.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-135.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-137.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-137\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-137.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-137.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-138.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-138\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD75\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-138.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-138.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD04\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD11\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-145678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-145678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD89\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-147.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-147\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-147.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-147.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-148.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-148\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD79\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-148.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-148.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-15678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-15678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-157.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-157\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD45\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-157.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-157.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-158.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-158\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD81\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-158.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-158.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD19\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-167.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-167\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-167.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-167.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-168.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-168\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD90\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-168.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-168.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-17.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-17\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-17.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-17.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-178.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-178\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-178.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-178.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-18.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-18\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD71\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-18.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-18.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD01\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD08\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD16\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2345678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2345678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-235678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-235678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD94\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-237.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-237\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-237.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-237.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-238.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-238\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD76\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-238.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-238.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD12\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-247.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-247\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-247.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-247.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-248.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-248\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-248.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-248.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-25678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-25678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-257.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-257\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-257.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-257.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-258.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-258\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-258.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-258.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-267.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-267\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-267.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-267.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-268.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-268\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD91\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-268.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-268.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-27.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-27\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-27.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-27.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-278.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-278\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-278.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-278.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-28.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-28\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD72\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-28.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-28.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD00\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD06\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD14\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD99\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-35678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-35678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-35678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-35678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD93\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-37.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-37\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-37.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-37.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-38.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-38\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD74\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-38.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-38.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD03\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD10\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-45678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-45678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD88\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD78\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD09\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-58.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-58\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD80\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-58.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-58.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD18\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-67.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-67\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-67.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-67.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-7\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-7.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-8\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-8.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-8.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-LC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-LC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-LC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-LC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-ML.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-ML\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-ML.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-ML.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-MR.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-MR\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-MR.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-MR.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-UC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-UC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-UC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-UC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE90\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-159.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-159\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-159.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-159.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE91\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE92\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE93\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-48C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-48C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE94\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-59D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-59D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-59D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-59D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-7\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-7.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-8.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-8CG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8CG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-8CG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8CG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-9.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE98\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-9.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-9D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-9D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE99\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-CG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-CG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-CG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-CG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-DEF.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-DEF\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-DEF.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-DEF.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-EFG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-EFG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-EFG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-EFG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-G.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-G\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-G.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-G.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-123456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE87\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE77\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE73\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-135.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-135\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-135.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE75\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE89\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE79\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE81\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE71\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE76\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE72\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE74\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE88\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE78\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE80\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE70\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB00\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB02\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB06\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB15\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB19\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB12\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB04\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB08\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB17\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB10\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB01\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB05\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB14\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB09\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB18\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB11\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB03\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB13\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB07\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB16\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bottomH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bottomHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BCB\"/>\n  <note>\nuni2BCB\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bottomH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bottomHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B19\"/>\n  <note>\nuni2B19\n</note>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteDiamond</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2566\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2557\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2554\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2550\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2569\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255D\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255A\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2551\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256C\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2563\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"204\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2560\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1103\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2565\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2556\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2553\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2530\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2512\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2527\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250E\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251F\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndUpHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2541\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndUpHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252F\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2511\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2529\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2521\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndUpHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2547\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndUpHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2564\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2555\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2552\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254D\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"443\" type=\"line\"/>\n      <point x=\"1050\" y=\"443\" type=\"line\"/>\n      <point x=\"1050\" y=\"971\" type=\"line\"/>\n      <point x=\"750\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"443\" type=\"line\"/>\n      <point x=\"450\" y=\"443\" type=\"line\"/>\n      <point x=\"450\" y=\"971\" type=\"line\"/>\n      <point x=\"150\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"443\" type=\"line\"/>\n      <point x=\"1050\" y=\"443\" type=\"line\"/>\n      <point x=\"1050\" y=\"971\" type=\"line\"/>\n      <point x=\"750\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"443\" type=\"line\"/>\n      <point x=\"450\" y=\"443\" type=\"line\"/>\n      <point x=\"450\" y=\"971\" type=\"line\"/>\n      <point x=\"150\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254F\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1013\" type=\"line\"/>\n      <point x=\"864\" y=\"1013\" type=\"line\"/>\n      <point x=\"864\" y=\"1626\" type=\"line\"/>\n      <point x=\"336\" y=\"1626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-212\" type=\"line\"/>\n      <point x=\"864\" y=\"-212\" type=\"line\"/>\n      <point x=\"864\" y=\"401\" type=\"line\"/>\n      <point x=\"336\" y=\"401\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"972\" type=\"line\"/>\n      <point x=\"864\" y=\"972\" type=\"line\"/>\n      <point x=\"864\" y=\"1503\" type=\"line\"/>\n      <point x=\"336\" y=\"1503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-90\" type=\"line\"/>\n      <point x=\"864\" y=\"-90\" type=\"line\"/>\n      <point x=\"864\" y=\"441\" type=\"line\"/>\n      <point x=\"336\" y=\"441\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257B\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2533\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2513\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250F\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2501\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2578\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeftAndLightRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257E\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeftAndLightRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2509\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"443\" type=\"line\"/>\n      <point x=\"1162\" y=\"443\" type=\"line\"/>\n      <point x=\"1162\" y=\"971\" type=\"line\"/>\n      <point x=\"937\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"443\" type=\"line\"/>\n      <point x=\"262\" y=\"443\" type=\"line\"/>\n      <point x=\"262\" y=\"971\" type=\"line\"/>\n      <point x=\"37\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"443\" type=\"line\"/>\n      <point x=\"562\" y=\"443\" type=\"line\"/>\n      <point x=\"562\" y=\"971\" type=\"line\"/>\n      <point x=\"337\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"443\" type=\"line\"/>\n      <point x=\"862\" y=\"443\" type=\"line\"/>\n      <point x=\"862\" y=\"971\" type=\"line\"/>\n      <point x=\"637\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"443\" type=\"line\"/>\n      <point x=\"1162\" y=\"443\" type=\"line\"/>\n      <point x=\"1162\" y=\"971\" type=\"line\"/>\n      <point x=\"937\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"443\" type=\"line\"/>\n      <point x=\"262\" y=\"443\" type=\"line\"/>\n      <point x=\"262\" y=\"971\" type=\"line\"/>\n      <point x=\"37\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"443\" type=\"line\"/>\n      <point x=\"562\" y=\"443\" type=\"line\"/>\n      <point x=\"562\" y=\"971\" type=\"line\"/>\n      <point x=\"337\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"443\" type=\"line\"/>\n      <point x=\"862\" y=\"443\" type=\"line\"/>\n      <point x=\"862\" y=\"971\" type=\"line\"/>\n      <point x=\"637\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250B\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1394\" type=\"line\"/>\n      <point x=\"864\" y=\"1394\" type=\"line\"/>\n      <point x=\"864\" y=\"1853\" type=\"line\"/>\n      <point x=\"336\" y=\"1853\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-442\" type=\"line\"/>\n      <point x=\"864\" y=\"-442\" type=\"line\"/>\n      <point x=\"864\" y=\"17\" type=\"line\"/>\n      <point x=\"336\" y=\"17\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"170\" type=\"line\"/>\n      <point x=\"864\" y=\"170\" type=\"line\"/>\n      <point x=\"864\" y=\"629\" type=\"line\"/>\n      <point x=\"336\" y=\"629\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"782\" type=\"line\"/>\n      <point x=\"864\" y=\"782\" type=\"line\"/>\n      <point x=\"864\" y=\"1241\" type=\"line\"/>\n      <point x=\"336\" y=\"1241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1304\" type=\"line\"/>\n      <point x=\"864\" y=\"1304\" type=\"line\"/>\n      <point x=\"864\" y=\"1703\" type=\"line\"/>\n      <point x=\"336\" y=\"1703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-289\" type=\"line\"/>\n      <point x=\"864\" y=\"-289\" type=\"line\"/>\n      <point x=\"864\" y=\"110\" type=\"line\"/>\n      <point x=\"336\" y=\"110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"242\" type=\"line\"/>\n      <point x=\"864\" y=\"242\" type=\"line\"/>\n      <point x=\"864\" y=\"641\" type=\"line\"/>\n      <point x=\"336\" y=\"641\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"773\" type=\"line\"/>\n      <point x=\"864\" y=\"773\" type=\"line\"/>\n      <point x=\"864\" y=\"1172\" type=\"line\"/>\n      <point x=\"336\" y=\"1172\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257A\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2505\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"443\" type=\"line\"/>\n      <point x=\"1133\" y=\"443\" type=\"line\"/>\n      <point x=\"1133\" y=\"971\" type=\"line\"/>\n      <point x=\"866\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"971\" type=\"line\"/>\n      <point x=\"66\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"443\" type=\"line\"/>\n      <point x=\"733\" y=\"443\" type=\"line\"/>\n      <point x=\"733\" y=\"971\" type=\"line\"/>\n      <point x=\"466\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"443\" type=\"line\"/>\n      <point x=\"1133\" y=\"443\" type=\"line\"/>\n      <point x=\"1133\" y=\"971\" type=\"line\"/>\n      <point x=\"866\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"971\" type=\"line\"/>\n      <point x=\"66\" y=\"971\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"443\" type=\"line\"/>\n      <point x=\"733\" y=\"443\" type=\"line\"/>\n      <point x=\"733\" y=\"971\" type=\"line\"/>\n      <point x=\"466\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2507\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1250\" type=\"line\"/>\n      <point x=\"864\" y=\"1250\" type=\"line\"/>\n      <point x=\"864\" y=\"1794\" type=\"line\"/>\n      <point x=\"336\" y=\"1794\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-382\" type=\"line\"/>\n      <point x=\"864\" y=\"-382\" type=\"line\"/>\n      <point x=\"864\" y=\"162\" type=\"line\"/>\n      <point x=\"336\" y=\"162\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"434\" type=\"line\"/>\n      <point x=\"864\" y=\"434\" type=\"line\"/>\n      <point x=\"864\" y=\"978\" type=\"line\"/>\n      <point x=\"336\" y=\"978\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1179\" type=\"line\"/>\n      <point x=\"864\" y=\"1179\" type=\"line\"/>\n      <point x=\"864\" y=\"1651\" type=\"line\"/>\n      <point x=\"336\" y=\"1651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"-237\" type=\"line\"/>\n      <point x=\"864\" y=\"-237\" type=\"line\"/>\n      <point x=\"864\" y=\"235\" type=\"line\"/>\n      <point x=\"336\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"471\" type=\"line\"/>\n      <point x=\"864\" y=\"471\" type=\"line\"/>\n      <point x=\"864\" y=\"943\" type=\"line\"/>\n      <point x=\"336\" y=\"943\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2579\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_p.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUp.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253B\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251B\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLightDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257F\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLightDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2517\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2503\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254B\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252B\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2523\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftDownHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2545\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftDownHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2535\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightVerticalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightVerticalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2532\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253A\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightVerticalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254A\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightVerticalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftUpHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2543\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftUpHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"511\"/>\n      <point x=\"404\" y=\"839\"/>\n      <point x=\"0\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"0\" y=\"575\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"575\"/>\n      <point x=\"468\" y=\"365\"/>\n      <point x=\"468\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"511\"/>\n      <point x=\"404\" y=\"839\"/>\n      <point x=\"0\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"0\" y=\"575\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"575\"/>\n      <point x=\"468\" y=\"365\"/>\n      <point x=\"468\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"365\"/>\n      <point x=\"942\" y=\"575\"/>\n      <point x=\"1200\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1200\" y=\"839\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"839\"/>\n      <point x=\"468\" y=\"511\"/>\n      <point x=\"468\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"365\"/>\n      <point x=\"942\" y=\"575\"/>\n      <point x=\"1200\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1200\" y=\"839\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"839\"/>\n      <point x=\"468\" y=\"511\"/>\n      <point x=\"468\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256F\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"0\" y=\"575\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"575\"/>\n      <point x=\"732\" y=\"903\"/>\n      <point x=\"732\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"1049\"/>\n      <point x=\"258\" y=\"839\"/>\n      <point x=\"0\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"0\" y=\"575\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"575\"/>\n      <point x=\"732\" y=\"903\"/>\n      <point x=\"732\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"1049\"/>\n      <point x=\"258\" y=\"839\"/>\n      <point x=\"0\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2570\"/>\n  <outline>\n    <contour>\n      <point x=\"1200\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1200\" y=\"839\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"839\"/>\n      <point x=\"732\" y=\"1049\"/>\n      <point x=\"732\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"903\"/>\n      <point x=\"796\" y=\"575\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1200\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1200\" y=\"839\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"839\"/>\n      <point x=\"732\" y=\"1049\"/>\n      <point x=\"732\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"903\"/>\n      <point x=\"796\" y=\"575\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalC_ross.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalCross\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2573\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-518\" type=\"line\"/>\n      <point x=\"147\" y=\"-518\" type=\"line\"/>\n      <point x=\"600\" y=\"407\" type=\"line\"/>\n      <point x=\"1053\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-218\" type=\"line\"/>\n      <point x=\"747\" y=\"707\" type=\"line\"/>\n      <point x=\"1200\" y=\"1632\" type=\"line\"/>\n      <point x=\"1200\" y=\"1932\" type=\"line\"/>\n      <point x=\"1053\" y=\"1932\" type=\"line\"/>\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\n      <point x=\"147\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1632\" type=\"line\"/>\n      <point x=\"453\" y=\"707\" type=\"line\"/>\n      <point x=\"0\" y=\"-218\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalCross.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-355\" type=\"line\"/>\n      <point x=\"152\" y=\"-355\" type=\"line\"/>\n      <point x=\"600\" y=\"438\" type=\"line\"/>\n      <point x=\"1048\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-87\" type=\"line\"/>\n      <point x=\"752\" y=\"707\" type=\"line\"/>\n      <point x=\"1200\" y=\"1501\" type=\"line\"/>\n      <point x=\"1200\" y=\"1769\" type=\"line\"/>\n      <point x=\"1048\" y=\"1769\" type=\"line\"/>\n      <point x=\"600\" y=\"976\" type=\"line\"/>\n      <point x=\"152\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1501\" type=\"line\"/>\n      <point x=\"448\" y=\"707\" type=\"line\"/>\n      <point x=\"0\" y=\"-87\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperLeftToLowerRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2572\"/>\n  <outline>\n    <contour>\n      <point x=\"1053\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-218\" type=\"line\"/>\n      <point x=\"147\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1632\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperLeftToLowerRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1048\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-87\" type=\"line\"/>\n      <point x=\"152\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1501\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperRightToLowerLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2571\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-518\" type=\"line\"/>\n      <point x=\"147\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"1632\" type=\"line\"/>\n      <point x=\"1200\" y=\"1932\" type=\"line\"/>\n      <point x=\"1053\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"-218\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperRightToLowerLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-355\" type=\"line\"/>\n      <point x=\"152\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"1501\" type=\"line\"/>\n      <point x=\"1200\" y=\"1769\" type=\"line\"/>\n      <point x=\"1048\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"-87\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254C\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"575\" type=\"line\"/>\n      <point x=\"1050\" y=\"575\" type=\"line\"/>\n      <point x=\"1050\" y=\"839\" type=\"line\"/>\n      <point x=\"750\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"575\" type=\"line\"/>\n      <point x=\"450\" y=\"575\" type=\"line\"/>\n      <point x=\"450\" y=\"839\" type=\"line\"/>\n      <point x=\"150\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"575\" type=\"line\"/>\n      <point x=\"1050\" y=\"575\" type=\"line\"/>\n      <point x=\"1050\" y=\"839\" type=\"line\"/>\n      <point x=\"750\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"575\" type=\"line\"/>\n      <point x=\"450\" y=\"575\" type=\"line\"/>\n      <point x=\"450\" y=\"839\" type=\"line\"/>\n      <point x=\"150\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1013\" type=\"line\"/>\n      <point x=\"732\" y=\"1013\" type=\"line\"/>\n      <point x=\"732\" y=\"1626\" type=\"line\"/>\n      <point x=\"468\" y=\"1626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-212\" type=\"line\"/>\n      <point x=\"732\" y=\"-212\" type=\"line\"/>\n      <point x=\"732\" y=\"401\" type=\"line\"/>\n      <point x=\"468\" y=\"401\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"972\" type=\"line\"/>\n      <point x=\"732\" y=\"972\" type=\"line\"/>\n      <point x=\"732\" y=\"1503\" type=\"line\"/>\n      <point x=\"468\" y=\"1503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-90\" type=\"line\"/>\n      <point x=\"732\" y=\"-90\" type=\"line\"/>\n      <point x=\"732\" y=\"441\" type=\"line\"/>\n      <point x=\"468\" y=\"441\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2577\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2510\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2500\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2574\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeftAndHeavyRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeftAndHeavyRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2508\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"575\" type=\"line\"/>\n      <point x=\"1162\" y=\"575\" type=\"line\"/>\n      <point x=\"1162\" y=\"839\" type=\"line\"/>\n      <point x=\"937\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"575\" type=\"line\"/>\n      <point x=\"262\" y=\"575\" type=\"line\"/>\n      <point x=\"262\" y=\"839\" type=\"line\"/>\n      <point x=\"37\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"575\" type=\"line\"/>\n      <point x=\"562\" y=\"575\" type=\"line\"/>\n      <point x=\"562\" y=\"839\" type=\"line\"/>\n      <point x=\"337\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"575\" type=\"line\"/>\n      <point x=\"862\" y=\"575\" type=\"line\"/>\n      <point x=\"862\" y=\"839\" type=\"line\"/>\n      <point x=\"637\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"575\" type=\"line\"/>\n      <point x=\"1162\" y=\"575\" type=\"line\"/>\n      <point x=\"1162\" y=\"839\" type=\"line\"/>\n      <point x=\"937\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"575\" type=\"line\"/>\n      <point x=\"262\" y=\"575\" type=\"line\"/>\n      <point x=\"262\" y=\"839\" type=\"line\"/>\n      <point x=\"37\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"575\" type=\"line\"/>\n      <point x=\"562\" y=\"575\" type=\"line\"/>\n      <point x=\"562\" y=\"839\" type=\"line\"/>\n      <point x=\"337\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"575\" type=\"line\"/>\n      <point x=\"862\" y=\"575\" type=\"line\"/>\n      <point x=\"862\" y=\"839\" type=\"line\"/>\n      <point x=\"637\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250A\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1394\" type=\"line\"/>\n      <point x=\"732\" y=\"1394\" type=\"line\"/>\n      <point x=\"732\" y=\"1853\" type=\"line\"/>\n      <point x=\"468\" y=\"1853\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-442\" type=\"line\"/>\n      <point x=\"732\" y=\"-442\" type=\"line\"/>\n      <point x=\"732\" y=\"17\" type=\"line\"/>\n      <point x=\"468\" y=\"17\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"170\" type=\"line\"/>\n      <point x=\"732\" y=\"170\" type=\"line\"/>\n      <point x=\"732\" y=\"629\" type=\"line\"/>\n      <point x=\"468\" y=\"629\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"782\" type=\"line\"/>\n      <point x=\"732\" y=\"782\" type=\"line\"/>\n      <point x=\"732\" y=\"1241\" type=\"line\"/>\n      <point x=\"468\" y=\"1241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1304\" type=\"line\"/>\n      <point x=\"732\" y=\"1304\" type=\"line\"/>\n      <point x=\"732\" y=\"1703\" type=\"line\"/>\n      <point x=\"468\" y=\"1703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-289\" type=\"line\"/>\n      <point x=\"732\" y=\"-289\" type=\"line\"/>\n      <point x=\"732\" y=\"110\" type=\"line\"/>\n      <point x=\"468\" y=\"110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"242\" type=\"line\"/>\n      <point x=\"732\" y=\"242\" type=\"line\"/>\n      <point x=\"732\" y=\"641\" type=\"line\"/>\n      <point x=\"468\" y=\"641\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"773\" type=\"line\"/>\n      <point x=\"732\" y=\"773\" type=\"line\"/>\n      <point x=\"732\" y=\"1172\" type=\"line\"/>\n      <point x=\"468\" y=\"1172\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2576\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2504\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"575\" type=\"line\"/>\n      <point x=\"1133\" y=\"575\" type=\"line\"/>\n      <point x=\"1133\" y=\"839\" type=\"line\"/>\n      <point x=\"866\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"575\" type=\"line\"/>\n      <point x=\"333\" y=\"575\" type=\"line\"/>\n      <point x=\"333\" y=\"839\" type=\"line\"/>\n      <point x=\"66\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"575\" type=\"line\"/>\n      <point x=\"733\" y=\"575\" type=\"line\"/>\n      <point x=\"733\" y=\"839\" type=\"line\"/>\n      <point x=\"466\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"575\" type=\"line\"/>\n      <point x=\"1133\" y=\"575\" type=\"line\"/>\n      <point x=\"1133\" y=\"839\" type=\"line\"/>\n      <point x=\"866\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"575\" type=\"line\"/>\n      <point x=\"333\" y=\"575\" type=\"line\"/>\n      <point x=\"333\" y=\"839\" type=\"line\"/>\n      <point x=\"66\" y=\"839\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"575\" type=\"line\"/>\n      <point x=\"733\" y=\"575\" type=\"line\"/>\n      <point x=\"733\" y=\"839\" type=\"line\"/>\n      <point x=\"466\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2506\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1250\" type=\"line\"/>\n      <point x=\"732\" y=\"1250\" type=\"line\"/>\n      <point x=\"732\" y=\"1794\" type=\"line\"/>\n      <point x=\"468\" y=\"1794\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-382\" type=\"line\"/>\n      <point x=\"732\" y=\"-382\" type=\"line\"/>\n      <point x=\"732\" y=\"162\" type=\"line\"/>\n      <point x=\"468\" y=\"162\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"434\" type=\"line\"/>\n      <point x=\"732\" y=\"434\" type=\"line\"/>\n      <point x=\"732\" y=\"978\" type=\"line\"/>\n      <point x=\"468\" y=\"978\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"1179\" type=\"line\"/>\n      <point x=\"732\" y=\"1179\" type=\"line\"/>\n      <point x=\"732\" y=\"1651\" type=\"line\"/>\n      <point x=\"468\" y=\"1651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-237\" type=\"line\"/>\n      <point x=\"732\" y=\"-237\" type=\"line\"/>\n      <point x=\"732\" y=\"235\" type=\"line\"/>\n      <point x=\"468\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"471\" type=\"line\"/>\n      <point x=\"732\" y=\"471\" type=\"line\"/>\n      <point x=\"732\" y=\"943\" type=\"line\"/>\n      <point x=\"468\" y=\"943\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2575\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_p.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUp.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHeavyDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257D\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHeavyDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2534\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2518\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2514\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2502\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2524\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251C\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightDownHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2546\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightDownHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2536\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftVerticalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftVerticalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2531\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2539\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftVerticalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2549\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftVerticalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightUpHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2544\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightUpHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2568\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255C\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2559\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndDownHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2540\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndDownHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2538\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2526\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251A\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2516\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndDownHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2548\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndDownHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2537\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252A\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"336\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2519\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2522\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"336\" y=\"971\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2515\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2567\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255B\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2558\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256B\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2562\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"204\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255F\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"-530\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"2226\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"204\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"-508\" type=\"line\"/>\n      <point x=\"996\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"839\" type=\"line\"/>\n      <point x=\"996\" y=\"1922\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"204\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2542\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2528\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"336\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2520\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"-530\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"2226\" type=\"line\"/>\n      <point x=\"336\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"-508\" type=\"line\"/>\n      <point x=\"864\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"839\" type=\"line\"/>\n      <point x=\"864\" y=\"1922\" type=\"line\"/>\n      <point x=\"336\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253F\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2525\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"971\" type=\"line\"/>\n      <point x=\"-132\" y=\"443\" type=\"line\"/>\n      <point x=\"468\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251D\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"443\" type=\"line\"/>\n      <point x=\"1332\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"971\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256A\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2561\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"1103\" type=\"line\"/>\n      <point x=\"-132\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"839\" type=\"line\"/>\n      <point x=\"468\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"575\" type=\"line\"/>\n      <point x=\"-132\" y=\"311\" type=\"line\"/>\n      <point x=\"468\" y=\"311\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255E\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"-530\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"2226\" type=\"line\"/>\n      <point x=\"468\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"-508\" type=\"line\"/>\n      <point x=\"732\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"311\" type=\"line\"/>\n      <point x=\"1332\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"575\" type=\"line\"/>\n      <point x=\"732\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"839\" type=\"line\"/>\n      <point x=\"1332\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1103\" type=\"line\"/>\n      <point x=\"732\" y=\"1922\" type=\"line\"/>\n      <point x=\"468\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/braceleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007B\"/>\n  <guideline x=\"161\" y=\"152\" angle=\"80\"/>\n  <outline>\n    <contour>\n      <point x=\"682\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"-214\"/>\n      <point x=\"828\" y=\"-205\"/>\n      <point x=\"876\" y=\"-194\" type=\"curve\"/>\n      <point x=\"882\" y=\"45\" type=\"line\"/>\n      <point x=\"841\" y=\"39\"/>\n      <point x=\"802\" y=\"35\"/>\n      <point x=\"772\" y=\"35\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"35\"/>\n      <point x=\"668\" y=\"65\"/>\n      <point x=\"672\" y=\"118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"682\" y=\"257\"/>\n      <point x=\"812\" y=\"312\"/>\n      <point x=\"812\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"610\"/>\n      <point x=\"717\" y=\"680\"/>\n      <point x=\"552\" y=\"684\" type=\"curve\"/>\n      <point x=\"558\" y=\"728\" type=\"line\"/>\n      <point x=\"784\" y=\"732\"/>\n      <point x=\"895\" y=\"832\"/>\n      <point x=\"895\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"1095\"/>\n      <point x=\"879\" y=\"1162\"/>\n      <point x=\"872\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"1317\"/>\n      <point x=\"926\" y=\"1374\"/>\n      <point x=\"1013\" y=\"1374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1043\" y=\"1374\"/>\n      <point x=\"1080\" y=\"1370\"/>\n      <point x=\"1119\" y=\"1364\" type=\"curve\"/>\n      <point x=\"1183\" y=\"1606\" type=\"line\"/>\n      <point x=\"1138\" y=\"1618\"/>\n      <point x=\"1089\" y=\"1626\"/>\n      <point x=\"1007\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"1626\"/>\n      <point x=\"575\" y=\"1467\"/>\n      <point x=\"613\" y=\"1215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"1162\"/>\n      <point x=\"631\" y=\"1098\"/>\n      <point x=\"631\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"889\"/>\n      <point x=\"537\" y=\"832\"/>\n      <point x=\"281\" y=\"832\" type=\"curve\"/>\n      <point x=\"236\" y=\"580\" type=\"line\"/>\n      <point x=\"415\" y=\"580\"/>\n      <point x=\"534\" y=\"527\"/>\n      <point x=\"534\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"312\"/>\n      <point x=\"410\" y=\"264\"/>\n      <point x=\"384\" y=\"99\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"-99\"/>\n      <point x=\"490\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/braceleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"758\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"-214\"/>\n      <point x=\"964\" y=\"-205\"/>\n      <point x=\"1032\" y=\"-194\" type=\"curve\"/>\n      <point x=\"1038\" y=\"45\" type=\"line\"/>\n      <point x=\"967\" y=\"39\"/>\n      <point x=\"900\" y=\"35\"/>\n      <point x=\"848\" y=\"35\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"35\"/>\n      <point x=\"664\" y=\"65\"/>\n      <point x=\"668\" y=\"118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"257\"/>\n      <point x=\"808\" y=\"312\"/>\n      <point x=\"808\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"610\"/>\n      <point x=\"713\" y=\"680\"/>\n      <point x=\"548\" y=\"684\" type=\"curve\"/>\n      <point x=\"554\" y=\"728\" type=\"line\"/>\n      <point x=\"780\" y=\"732\"/>\n      <point x=\"891\" y=\"832\"/>\n      <point x=\"891\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"1095\"/>\n      <point x=\"875\" y=\"1162\"/>\n      <point x=\"868\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"1317\"/>\n      <point x=\"957\" y=\"1374\"/>\n      <point x=\"1089\" y=\"1374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"1374\"/>\n      <point x=\"1207\" y=\"1370\"/>\n      <point x=\"1275\" y=\"1364\" type=\"curve\"/>\n      <point x=\"1339\" y=\"1606\" type=\"line\"/>\n      <point x=\"1274\" y=\"1618\"/>\n      <point x=\"1202\" y=\"1626\"/>\n      <point x=\"1083\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"1626\"/>\n      <point x=\"571\" y=\"1467\"/>\n      <point x=\"609\" y=\"1215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"1162\"/>\n      <point x=\"627\" y=\"1098\"/>\n      <point x=\"627\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"889\"/>\n      <point x=\"533\" y=\"832\"/>\n      <point x=\"277\" y=\"832\" type=\"curve\"/>\n      <point x=\"232\" y=\"580\" type=\"line\"/>\n      <point x=\"411\" y=\"580\"/>\n      <point x=\"530\" y=\"527\"/>\n      <point x=\"530\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"530\" y=\"312\"/>\n      <point x=\"406\" y=\"264\"/>\n      <point x=\"380\" y=\"99\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"-99\"/>\n      <point x=\"519\" y=\"-214\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/braceright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007D\"/>\n  <guideline x=\"983\" y=\"589\" angle=\"80\"/>\n  <outline>\n    <contour>\n      <point x=\"255\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"-214\"/>\n      <point x=\"687\" y=\"-55\"/>\n      <point x=\"649\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"250\"/>\n      <point x=\"631\" y=\"314\"/>\n      <point x=\"631\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"523\"/>\n      <point x=\"725\" y=\"580\"/>\n      <point x=\"981\" y=\"580\" type=\"curve\"/>\n      <point x=\"1026\" y=\"832\" type=\"line\"/>\n      <point x=\"847\" y=\"832\"/>\n      <point x=\"728\" y=\"885\"/>\n      <point x=\"728\" y=\"976\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"1100\"/>\n      <point x=\"852\" y=\"1148\"/>\n      <point x=\"878\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"1511\"/>\n      <point x=\"772\" y=\"1626\"/>\n      <point x=\"580\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"1626\"/>\n      <point x=\"434\" y=\"1617\"/>\n      <point x=\"386\" y=\"1606\" type=\"curve\"/>\n      <point x=\"380\" y=\"1367\" type=\"line\"/>\n      <point x=\"421\" y=\"1373\"/>\n      <point x=\"460\" y=\"1377\"/>\n      <point x=\"490\" y=\"1377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1377\"/>\n      <point x=\"594\" y=\"1347\"/>\n      <point x=\"590\" y=\"1294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"1155\"/>\n      <point x=\"450\" y=\"1100\"/>\n      <point x=\"450\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"802\"/>\n      <point x=\"545\" y=\"732\"/>\n      <point x=\"710\" y=\"728\" type=\"curve\"/>\n      <point x=\"704\" y=\"684\" type=\"line\"/>\n      <point x=\"478\" y=\"680\"/>\n      <point x=\"367\" y=\"580\"/>\n      <point x=\"367\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"317\"/>\n      <point x=\"383\" y=\"250\"/>\n      <point x=\"390\" y=\"190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"95\"/>\n      <point x=\"336\" y=\"38\"/>\n      <point x=\"249\" y=\"38\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"38\"/>\n      <point x=\"182\" y=\"42\"/>\n      <point x=\"143\" y=\"48\" type=\"curve\"/>\n      <point x=\"79\" y=\"-194\" type=\"line\"/>\n      <point x=\"124\" y=\"-206\"/>\n      <point x=\"173\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/braceright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright_numbersign.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"275\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"518\" y=\"-214\"/>\n      <point x=\"707\" y=\"-55\"/>\n      <point x=\"669\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"250\"/>\n      <point x=\"651\" y=\"314\"/>\n      <point x=\"651\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"568\"/>\n      <point x=\"748\" y=\"641\"/>\n      <point x=\"1012\" y=\"641\" type=\"curve\"/>\n      <point x=\"1035\" y=\"772\" type=\"line\"/>\n      <point x=\"863\" y=\"772\"/>\n      <point x=\"748\" y=\"847\"/>\n      <point x=\"748\" y=\"976\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"1100\"/>\n      <point x=\"872\" y=\"1148\"/>\n      <point x=\"898\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"1511\"/>\n      <point x=\"792\" y=\"1626\"/>\n      <point x=\"600\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1626\"/>\n      <point x=\"454\" y=\"1617\"/>\n      <point x=\"406\" y=\"1606\" type=\"curve\"/>\n      <point x=\"400\" y=\"1367\" type=\"line\"/>\n      <point x=\"441\" y=\"1373\"/>\n      <point x=\"480\" y=\"1377\"/>\n      <point x=\"510\" y=\"1377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"1377\"/>\n      <point x=\"614\" y=\"1347\"/>\n      <point x=\"610\" y=\"1294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"600\" y=\"1155\"/>\n      <point x=\"470\" y=\"1100\"/>\n      <point x=\"470\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"802\"/>\n      <point x=\"565\" y=\"732\"/>\n      <point x=\"730\" y=\"728\" type=\"curve\"/>\n      <point x=\"724\" y=\"684\" type=\"line\"/>\n      <point x=\"498\" y=\"680\"/>\n      <point x=\"387\" y=\"580\"/>\n      <point x=\"387\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"317\"/>\n      <point x=\"403\" y=\"250\"/>\n      <point x=\"410\" y=\"190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"95\"/>\n      <point x=\"356\" y=\"38\"/>\n      <point x=\"269\" y=\"38\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"239\" y=\"38\"/>\n      <point x=\"202\" y=\"42\"/>\n      <point x=\"163\" y=\"48\" type=\"curve\"/>\n      <point x=\"99\" y=\"-194\" type=\"line\"/>\n      <point x=\"144\" y=\"-206\"/>\n      <point x=\"193\" y=\"-214\"/>\n    </contour>\n    <contour>\n      <point x=\"614\" y=\"310\" type=\"line\"/>\n      <point x=\"2097\" y=\"310\" type=\"line\"/>\n      <point x=\"2141\" y=\"558\" type=\"line\"/>\n      <point x=\"658\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1135\" y=\"0\" type=\"line\"/>\n      <point x=\"1378\" y=\"0\" type=\"line\"/>\n      <point x=\"1748\" y=\"1420\" type=\"line\"/>\n      <point x=\"1505\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"712\" y=\"862\" type=\"line\"/>\n      <point x=\"2195\" y=\"862\" type=\"line\"/>\n      <point x=\"2239\" y=\"1110\" type=\"line\"/>\n      <point x=\"756\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1554\" y=\"0\" type=\"line\"/>\n      <point x=\"1797\" y=\"0\" type=\"line\"/>\n      <point x=\"2167\" y=\"1420\" type=\"line\"/>\n      <point x=\"1924\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bracketleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005B\"/>\n  <outline>\n    <contour>\n      <point x=\"224\" y=\"-214\" type=\"line\"/>\n      <point x=\"488\" y=\"-214\" type=\"line\"/>\n      <point x=\"814\" y=\"1634\" type=\"line\"/>\n      <point x=\"550\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-214\" type=\"line\"/>\n      <point x=\"883\" y=\"-214\" type=\"line\"/>\n      <point x=\"928\" y=\"38\" type=\"line\"/>\n      <point x=\"513\" y=\"38\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"749\" y=\"1382\" type=\"line\"/>\n      <point x=\"1164\" y=\"1382\" type=\"line\"/>\n      <point x=\"1209\" y=\"1634\" type=\"line\"/>\n      <point x=\"794\" y=\"1634\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bracketleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketleft_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"379\" y=\"-214\" type=\"line\"/>\n      <point x=\"643\" y=\"-214\" type=\"line\"/>\n      <point x=\"969\" y=\"1634\" type=\"line\"/>\n      <point x=\"705\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"623\" y=\"-214\" type=\"line\"/>\n      <point x=\"1170\" y=\"-214\" type=\"line\"/>\n      <point x=\"1215\" y=\"38\" type=\"line\"/>\n      <point x=\"668\" y=\"38\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"904\" y=\"1382\" type=\"line\"/>\n      <point x=\"1451\" y=\"1382\" type=\"line\"/>\n      <point x=\"1496\" y=\"1634\" type=\"line\"/>\n      <point x=\"949\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1154\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bracketright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005D\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-214\" type=\"line\"/>\n      <point x=\"714\" y=\"-214\" type=\"line\"/>\n      <point x=\"1040\" y=\"1634\" type=\"line\"/>\n      <point x=\"776\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-214\" type=\"line\"/>\n      <point x=\"470\" y=\"-214\" type=\"line\"/>\n      <point x=\"515\" y=\"38\" type=\"line\"/>\n      <point x=\"99\" y=\"38\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"335\" y=\"1382\" type=\"line\"/>\n      <point x=\"751\" y=\"1382\" type=\"line\"/>\n      <point x=\"796\" y=\"1634\" type=\"line\"/>\n      <point x=\"380\" y=\"1634\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bracketright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketright_numbersign.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1554\" y=\"0\" type=\"line\"/>\n      <point x=\"1797\" y=\"0\" type=\"line\"/>\n      <point x=\"2167\" y=\"1420\" type=\"line\"/>\n      <point x=\"1924\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"614\" y=\"310\" type=\"line\"/>\n      <point x=\"2097\" y=\"310\" type=\"line\"/>\n      <point x=\"2141\" y=\"558\" type=\"line\"/>\n      <point x=\"658\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1135\" y=\"0\" type=\"line\"/>\n      <point x=\"1378\" y=\"0\" type=\"line\"/>\n      <point x=\"1748\" y=\"1420\" type=\"line\"/>\n      <point x=\"1505\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"712\" y=\"862\" type=\"line\"/>\n      <point x=\"2195\" y=\"862\" type=\"line\"/>\n      <point x=\"2239\" y=\"1110\" type=\"line\"/>\n      <point x=\"756\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <component base=\"bracketright\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"breve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D8\"/>\n  <outline>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/brevecomb-cy.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb-cy.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"827\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"769\" y=\"1568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"1568\"/>\n      <point x=\"1075\" y=\"1613\"/>\n      <point x=\"1191\" y=\"1799\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1206\" y=\"1823\" type=\"line\"/>\n      <point x=\"1031\" y=\"1922\" type=\"line\"/>\n      <point x=\"1021\" y=\"1902\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"1807\"/>\n      <point x=\"872\" y=\"1742\"/>\n      <point x=\"792\" y=\"1742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"1742\"/>\n      <point x=\"698\" y=\"1782\"/>\n      <point x=\"702\" y=\"1827\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"1845\"/>\n      <point x=\"707\" y=\"1856\"/>\n      <point x=\"721\" y=\"1881\" type=\"curve\"/>\n      <point x=\"499\" y=\"1908\" type=\"line\"/>\n      <point x=\"479\" y=\"1863\"/>\n      <point x=\"470\" y=\"1829\"/>\n      <point x=\"467\" y=\"1796\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"1670\"/>\n      <point x=\"563\" y=\"1568\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/brevecomb-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb-cy\" format=\"2\">\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"713\" y=\"1220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"1220\"/>\n      <point x=\"1048\" y=\"1290\"/>\n      <point x=\"1180\" y=\"1522\" type=\"curve\"/>\n      <point x=\"996\" y=\"1631\" type=\"line\"/>\n      <point x=\"940\" y=\"1482\"/>\n      <point x=\"831\" y=\"1408\"/>\n      <point x=\"740\" y=\"1408\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"1408\"/>\n      <point x=\"631\" y=\"1462\"/>\n      <point x=\"631\" y=\"1525\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"1547\"/>\n      <point x=\"635\" y=\"1567\"/>\n      <point x=\"640\" y=\"1588\" type=\"curve\"/>\n      <point x=\"405\" y=\"1599\" type=\"line\"/>\n      <point x=\"389\" y=\"1563\"/>\n      <point x=\"381\" y=\"1525\"/>\n      <point x=\"381\" y=\"1489\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"1337\"/>\n      <point x=\"519\" y=\"1220\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/brevecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"827\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"724\" y=\"1553\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"1553\"/>\n      <point x=\"1131\" y=\"1644\"/>\n      <point x=\"1237\" y=\"1798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"1817\" type=\"line\"/>\n      <point x=\"1028\" y=\"1925\" type=\"line\"/>\n      <point x=\"1017\" y=\"1909\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"1807\"/>\n      <point x=\"851\" y=\"1747\"/>\n      <point x=\"760\" y=\"1747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"1747\"/>\n      <point x=\"688\" y=\"1773\"/>\n      <point x=\"696\" y=\"1816\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"1834\"/>\n      <point x=\"707\" y=\"1857\"/>\n      <point x=\"716\" y=\"1878\" type=\"curve\"/>\n      <point x=\"474\" y=\"1908\" type=\"line\"/>\n      <point x=\"461\" y=\"1882\"/>\n      <point x=\"449\" y=\"1845\"/>\n      <point x=\"443\" y=\"1810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"1648\"/>\n      <point x=\"520\" y=\"1553\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/brevecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb\" format=\"2\">\n  <unicode hex=\"0306\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"706\" y=\"1220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"1220\"/>\n      <point x=\"1048\" y=\"1320\"/>\n      <point x=\"1162\" y=\"1539\" type=\"curve\"/>\n      <point x=\"980\" y=\"1644\" type=\"line\"/>\n      <point x=\"910\" y=\"1484\"/>\n      <point x=\"833\" y=\"1411\"/>\n      <point x=\"738\" y=\"1411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"663\" y=\"1411\"/>\n      <point x=\"641\" y=\"1458\"/>\n      <point x=\"641\" y=\"1519\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"1540\"/>\n      <point x=\"643\" y=\"1569\"/>\n      <point x=\"656\" y=\"1607\" type=\"curve\"/>\n      <point x=\"432\" y=\"1620\" type=\"line\"/>\n      <point x=\"407\" y=\"1570\"/>\n      <point x=\"398\" y=\"1518\"/>\n      <point x=\"398\" y=\"1462\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"398\" y=\"1319\"/>\n      <point x=\"513\" y=\"1220\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/brokenbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brokenbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A6\"/>\n  <outline>\n    <contour>\n      <point x=\"468\" y=\"870\" type=\"line\"/>\n      <point x=\"732\" y=\"870\" type=\"line\"/>\n      <point x=\"732\" y=\"1730\" type=\"line\"/>\n      <point x=\"468\" y=\"1730\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"-310\" type=\"line\"/>\n      <point x=\"732\" y=\"-310\" type=\"line\"/>\n      <point x=\"732\" y=\"550\" type=\"line\"/>\n      <point x=\"468\" y=\"550\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2022\"/>\n  <outline>\n    <contour>\n      <point x=\"631\" y=\"362\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"362\"/>\n      <point x=\"979\" y=\"518\"/>\n      <point x=\"979\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"902\"/>\n      <point x=\"823\" y=\"1058\"/>\n      <point x=\"631\" y=\"1058\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"439\" y=\"1058\"/>\n      <point x=\"283\" y=\"902\"/>\n      <point x=\"283\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"518\"/>\n      <point x=\"439\" y=\"362\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bulletoperator.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bulletoperator\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2219\"/>\n  <outline>\n    <component base=\"bullet\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/bullseye.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bullseye\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CE\"/>\n  <note>\nuni25CE\n</note>\n  <outline>\n    <component base=\"largeCircle\"/>\n    <component base=\"whiteBullet\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>largeCircle</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>whiteBullet</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/c.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"c\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0063\"/>\n  <anchor x=\"586\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"609\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"237\"/>\n      <point x=\"375\" y=\"315\"/>\n      <point x=\"374\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"675\"/>\n      <point x=\"504\" y=\"823\"/>\n      <point x=\"702\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"823\"/>\n      <point x=\"894\" y=\"789\"/>\n      <point x=\"959\" y=\"711\" type=\"curve\"/>\n      <point x=\"1144\" y=\"890\" type=\"line\"/>\n      <point x=\"1053\" y=\"1023\"/>\n      <point x=\"929\" y=\"1080\"/>\n      <point x=\"730\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"348\" y=\"1080\"/>\n      <point x=\"97\" y=\"814\"/>\n      <point x=\"97\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"97\" y=\"137\"/>\n      <point x=\"273\" y=\"-20\"/>\n      <point x=\"580\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"-20\"/>\n      <point x=\"915\" y=\"35\"/>\n      <point x=\"1041\" y=\"119\" type=\"curve\"/>\n      <point x=\"939\" y=\"339\" type=\"line\"/>\n      <point x=\"849\" y=\"278\"/>\n      <point x=\"729\" y=\"237\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/cacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0107\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/cacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"acutecomb.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/cancelC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cancelControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2418\"/>\n  <outline>\n    <component base=\"C.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"N.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/cancelC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cancelControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"238\" y=\"371\" type=\"line\"/>\n      <point x=\"1125\" y=\"993\" type=\"line\"/>\n      <point x=\"962\" y=\"1051\" type=\"line\"/>\n      <point x=\"75\" y=\"427\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"427\" type=\"line\"/>\n      <point x=\"75\" y=\"427\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"962\" y=\"371\" type=\"line\"/>\n      <point x=\"1125\" y=\"427\" type=\"line\"/>\n      <point x=\"238\" y=\"1051\" type=\"line\"/>\n      <point x=\"75\" y=\"993\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"993\" type=\"line\"/>\n      <point x=\"1125\" y=\"993\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/careof.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"careof\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2105\"/>\n  <outline>\n    <contour>\n      <point x=\"170\" y=\"261\" type=\"line\"/>\n      <point x=\"1197\" y=\"989\" type=\"line\"/>\n      <point x=\"1096\" y=\"1146\" type=\"line\"/>\n      <point x=\"76\" y=\"421\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"379\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"507\" y=\"815\"/>\n      <point x=\"611\" y=\"835\"/>\n      <point x=\"726\" y=\"925\" type=\"curve\"/>\n      <point x=\"639\" y=\"1099\" type=\"line\"/>\n      <point x=\"571\" y=\"1057\"/>\n      <point x=\"499\" y=\"1033\"/>\n      <point x=\"441\" y=\"1033\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"1033\"/>\n      <point x=\"356\" y=\"1060\"/>\n      <point x=\"356\" y=\"1108\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"1190\"/>\n      <point x=\"428\" y=\"1221\"/>\n      <point x=\"514\" y=\"1221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"1221\"/>\n      <point x=\"603\" y=\"1204\"/>\n      <point x=\"624\" y=\"1174\" type=\"curve\"/>\n      <point x=\"782\" y=\"1309\" type=\"line\"/>\n      <point x=\"736\" y=\"1391\"/>\n      <point x=\"649\" y=\"1439\"/>\n      <point x=\"541\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"1439\"/>\n      <point x=\"114\" y=\"1309\"/>\n      <point x=\"114\" y=\"1074\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"114\" y=\"908\"/>\n      <point x=\"208\" y=\"815\"/>\n    </contour>\n    <component base=\"zeroinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C7\"/>\n  <outline>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/caroncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caroncomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"824\" y=\"1800\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"649\" y=\"1580\" type=\"line\"/>\n      <point x=\"921\" y=\"1580\" type=\"line\"/>\n      <point x=\"1210\" y=\"1840\" type=\"line\"/>\n      <point x=\"903\" y=\"1840\" type=\"line\"/>\n      <point x=\"788\" y=\"1709\" type=\"line\"/>\n      <point x=\"808\" y=\"1709\" type=\"line\"/>\n      <point x=\"739\" y=\"1840\" type=\"line\"/>\n      <point x=\"452\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/caroncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caroncomb\" format=\"2\">\n  <unicode hex=\"030C\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"575\" y=\"1210\" type=\"line\"/>\n      <point x=\"863\" y=\"1210\" type=\"line\"/>\n      <point x=\"1171\" y=\"1590\" type=\"line\"/>\n      <point x=\"866\" y=\"1590\" type=\"line\"/>\n      <point x=\"728\" y=\"1344\" type=\"line\"/>\n      <point x=\"748\" y=\"1344\" type=\"line\"/>\n      <point x=\"688\" y=\"1590\" type=\"line\"/>\n      <point x=\"403\" y=\"1590\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/carriageR_eturnC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"carriageReturnControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240D\"/>\n  <outline>\n    <component base=\"C.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"R.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>R.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"carriageReturnControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"183\" type=\"line\"/>\n      <point x=\"1125\" y=\"432\" type=\"line\"/>\n      <point x=\"577\" y=\"559\" type=\"line\"/>\n      <point x=\"577\" y=\"859\" type=\"line\"/>\n      <point x=\"1125\" y=\"985\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"70\" y=\"720\" type=\"line\"/>\n      <point x=\"70\" y=\"698\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"318\" y=\"587\" type=\"line\"/>\n      <point x=\"1125\" y=\"587\" type=\"line\"/>\n      <point x=\"1125\" y=\"830\" type=\"line\"/>\n      <point x=\"318\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ccaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010D\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ccedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E7\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"cedillacomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ccircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0109\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/cdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010B\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"dotaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/cedi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B5\"/>\n  <outline>\n    <contour>\n      <point x=\"408\" y=\"-320\" type=\"line\"/>\n      <point x=\"672\" y=\"-320\" type=\"line\"/>\n      <point x=\"1035\" y=\"1740\" type=\"line\"/>\n      <point x=\"771\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B8\"/>\n  <outline>\n    <component base=\"cedillacomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/cedillacomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedillacomb\" format=\"2\">\n  <unicode hex=\"0327\"/>\n  <anchor x=\"506\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"432\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"202\" y=\"-480\" type=\"line\"/>\n      <point x=\"510\" y=\"-480\"/>\n      <point x=\"671\" y=\"-404\"/>\n      <point x=\"671\" y=\"-258\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"-181\"/>\n      <point x=\"627\" y=\"-137\"/>\n      <point x=\"541\" y=\"-100\" type=\"curve\"/>\n      <point x=\"585\" y=\"-2\" type=\"line\"/>\n      <point x=\"411\" y=\"49\" type=\"line\"/>\n      <point x=\"284\" y=\"-185\" type=\"line\"/>\n      <point x=\"369\" y=\"-200\"/>\n      <point x=\"413\" y=\"-225\"/>\n      <point x=\"413\" y=\"-258\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"413\" y=\"-300\"/>\n      <point x=\"350\" y=\"-322\"/>\n      <point x=\"230\" y=\"-322\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/cent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A2\"/>\n  <outline>\n    <contour>\n      <point x=\"367\" y=\"-354\" type=\"line\"/>\n      <point x=\"631\" y=\"-354\" type=\"line\"/>\n      <point x=\"934\" y=\"1414\" type=\"line\"/>\n      <point x=\"670\" y=\"1414\" type=\"line\"/>\n    </contour>\n    <component base=\"c\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/che-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"che-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0447\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"997\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <anchor x=\"1187\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"435\" y=\"306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"582\" y=\"306\"/>\n      <point x=\"655\" y=\"379\"/>\n      <point x=\"699\" y=\"459\" type=\"curve\"/>\n      <point x=\"803\" y=\"459\" type=\"line\"/>\n      <point x=\"792\" y=\"819\" type=\"line\"/>\n      <point x=\"752\" y=\"650\"/>\n      <point x=\"658\" y=\"563\"/>\n      <point x=\"534\" y=\"563\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"434\" y=\"563\"/>\n      <point x=\"390\" y=\"620\"/>\n      <point x=\"390\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"789\"/>\n      <point x=\"421\" y=\"881\"/>\n      <point x=\"487\" y=\"1043\" type=\"curve\"/>\n      <point x=\"215\" y=\"1081\" type=\"line\"/>\n      <point x=\"144\" y=\"896\"/>\n      <point x=\"113\" y=\"773\"/>\n      <point x=\"113\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"113\" y=\"427\"/>\n      <point x=\"245\" y=\"306\"/>\n    </contour>\n    <contour>\n      <point x=\"966\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"-20\"/>\n      <point x=\"1024\" y=\"-19\"/>\n      <point x=\"1052\" y=\"-16\" type=\"curve\"/>\n      <point x=\"1094\" y=\"211\" type=\"line\"/>\n      <point x=\"1077\" y=\"208\"/>\n      <point x=\"1063\" y=\"207\"/>\n      <point x=\"1049\" y=\"207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"207\"/>\n      <point x=\"943\" y=\"233\"/>\n      <point x=\"965\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"1060\" type=\"line\"/>\n      <point x=\"841\" y=\"1060\" type=\"line\"/>\n      <point x=\"699\" y=\"365\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"96\"/>\n      <point x=\"733\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/che-cy.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"che-cy.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"913\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"-20\"/>\n      <point x=\"1039\" y=\"-17\"/>\n      <point x=\"1092\" y=\"0\" type=\"curve\"/>\n      <point x=\"1073\" y=\"230\" type=\"line\"/>\n      <point x=\"1032\" y=\"223\"/>\n      <point x=\"1003\" y=\"221\"/>\n      <point x=\"992\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"221\"/>\n      <point x=\"855\" y=\"257\"/>\n      <point x=\"855\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"398\"/>\n      <point x=\"904\" y=\"517\"/>\n      <point x=\"970\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1095\" y=\"903\" type=\"line\"/>\n      <point x=\"1024\" y=\"1035\" type=\"line\"/>\n      <point x=\"984\" y=\"1027\"/>\n      <point x=\"940\" y=\"1025\"/>\n      <point x=\"848\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"739\" y=\"1025\"/>\n      <point x=\"573\" y=\"1043\"/>\n      <point x=\"504\" y=\"1068\" type=\"curve\"/>\n      <point x=\"464\" y=\"833\" type=\"line\"/>\n      <point x=\"537\" y=\"804\"/>\n      <point x=\"643\" y=\"789\"/>\n      <point x=\"748\" y=\"789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"789\"/>\n      <point x=\"957\" y=\"804\"/>\n      <point x=\"1029\" y=\"835\" type=\"curve\"/>\n      <point x=\"809\" y=\"931\" type=\"line\"/>\n      <point x=\"684\" y=\"663\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"583\"/>\n      <point x=\"578\" y=\"426\"/>\n      <point x=\"578\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"61\"/>\n      <point x=\"724\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"211\" y=\"220\" type=\"line\"/>\n      <point x=\"438\" y=\"479\"/>\n      <point x=\"517\" y=\"706\"/>\n      <point x=\"517\" y=\"1082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"1166\" type=\"line\"/>\n      <point x=\"260\" y=\"1166\" type=\"line\"/>\n      <point x=\"260\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"761\"/>\n      <point x=\"196\" y=\"575\"/>\n      <point x=\"12\" y=\"379\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardDeleteAmstradCpc\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"2429\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1888\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"535\" type=\"line\"/>\r\n      <point x=\"0\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"535\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardDeleteAmstradCpc.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1602\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"412\" type=\"line\"/>\r\n      <point x=\"0\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"412\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-183\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-183\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkerBoardDeleteApple2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2427\"/>\n  <outline>\n    <contour>\n      <point x=\"140\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"140\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"140\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"140\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkerBoardDeleteTrs80\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2428\"/>\n  <outline>\n    <contour>\n      <point x=\"324\" y=\"1421\" type=\"line\"/>\n      <point x=\"508\" y=\"1421\" type=\"line\"/>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1421\" type=\"line\"/>\n      <point x=\"876\" y=\"1421\" type=\"line\"/>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"140\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"140\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"140\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"0\" type=\"line\"/>\n      <point x=\"324\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"0\" type=\"line\"/>\n      <point x=\"692\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardF_ill.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFill\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardF_ill.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFill.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardF_illI_nverse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFillInverse\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFillInverse.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/checkmark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkmark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2713\"/>\n  <outline>\n    <contour>\n      <point x=\"196\" y=\"0\" type=\"line\"/>\n      <point x=\"529\" y=\"0\" type=\"line\"/>\n      <point x=\"1300\" y=\"1420\" type=\"line\"/>\n      <point x=\"1030\" y=\"1420\" type=\"line\"/>\n      <point x=\"430\" y=\"280\" type=\"line\"/>\n      <point x=\"402\" y=\"280\" type=\"line\"/>\n      <point x=\"368\" y=\"601\" type=\"line\"/>\n      <point x=\"122\" y=\"601\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/chedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B7\"/>\n  <outline>\n    <contour>\n      <point x=\"1001\" y=\"-318\" type=\"line\"/>\n      <point x=\"1047\" y=\"-187\"/>\n      <point x=\"1114\" y=\"98\"/>\n      <point x=\"1122\" y=\"214\" type=\"curve\"/>\n      <point x=\"1044\" y=\"205\"/>\n      <point x=\"965\" y=\"199\"/>\n      <point x=\"887\" y=\"195\" type=\"curve\"/>\n      <point x=\"853\" y=\"47\" type=\"line\"/>\n      <point x=\"835\" y=\"-41\"/>\n      <point x=\"806\" y=\"-146\"/>\n      <point x=\"765\" y=\"-269\" type=\"curve\"/>\n    </contour>\n    <component base=\"che-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/chedescender-cy.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chedescender-cy.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1004\" y=\"-319\" type=\"line\"/>\n      <point x=\"1050\" y=\"-190\"/>\n      <point x=\"1113\" y=\"90\"/>\n      <point x=\"1122\" y=\"223\" type=\"curve\"/>\n      <point x=\"1087\" y=\"222\"/>\n      <point x=\"1054\" y=\"221\"/>\n      <point x=\"1024\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"923\" y=\"221\"/>\n      <point x=\"855\" y=\"236\"/>\n      <point x=\"855\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"398\"/>\n      <point x=\"904\" y=\"517\"/>\n      <point x=\"970\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1095\" y=\"903\" type=\"line\"/>\n      <point x=\"1024\" y=\"1035\" type=\"line\"/>\n      <point x=\"984\" y=\"1027\"/>\n      <point x=\"940\" y=\"1025\"/>\n      <point x=\"848\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"739\" y=\"1025\"/>\n      <point x=\"573\" y=\"1043\"/>\n      <point x=\"504\" y=\"1068\" type=\"curve\"/>\n      <point x=\"464\" y=\"833\" type=\"line\"/>\n      <point x=\"537\" y=\"804\"/>\n      <point x=\"643\" y=\"789\"/>\n      <point x=\"748\" y=\"789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"789\"/>\n      <point x=\"957\" y=\"804\"/>\n      <point x=\"1029\" y=\"835\" type=\"curve\"/>\n      <point x=\"809\" y=\"931\" type=\"line\"/>\n      <point x=\"684\" y=\"663\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"583\"/>\n      <point x=\"578\" y=\"426\"/>\n      <point x=\"578\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"67\"/>\n      <point x=\"716\" y=\"-16\"/>\n      <point x=\"898\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"-20\"/>\n      <point x=\"903\" y=\"-20\"/>\n      <point x=\"906\" y=\"-20\" type=\"curve\"/>\n      <point x=\"855\" y=\"39\" type=\"line\"/>\n      <point x=\"837\" y=\"-47\"/>\n      <point x=\"808\" y=\"-150\"/>\n      <point x=\"768\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"211\" y=\"220\" type=\"line\"/>\n      <point x=\"438\" y=\"479\"/>\n      <point x=\"517\" y=\"706\"/>\n      <point x=\"517\" y=\"1082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"1166\" type=\"line\"/>\n      <point x=\"260\" y=\"1166\" type=\"line\"/>\n      <point x=\"260\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"761\"/>\n      <point x=\"196\" y=\"575\"/>\n      <point x=\"12\" y=\"379\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/chi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C7\"/>\n  <anchor x=\"428\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"13\" y=\"-480\" type=\"line\"/>\n      <point x=\"582\" y=\"188\" type=\"line\"/>\n      <point x=\"1216\" y=\"890\" type=\"line\"/>\n      <point x=\"1030\" y=\"1080\" type=\"line\"/>\n      <point x=\"522\" y=\"420\" type=\"line\"/>\n      <point x=\"-163\" y=\"-290\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"799\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"-480\"/>\n      <point x=\"947\" y=\"-460\"/>\n      <point x=\"1024\" y=\"-416\" type=\"curve\"/>\n      <point x=\"956\" y=\"-197\" type=\"line\"/>\n      <point x=\"917\" y=\"-215\"/>\n      <point x=\"883\" y=\"-223\"/>\n      <point x=\"848\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"-223\"/>\n      <point x=\"704\" y=\"-180\"/>\n      <point x=\"696\" y=\"-86\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"626\" y=\"771\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"983\"/>\n      <point x=\"507\" y=\"1080\"/>\n      <point x=\"320\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"255\" y=\"1080\"/>\n      <point x=\"185\" y=\"1063\"/>\n      <point x=\"95\" y=\"1026\" type=\"curve\"/>\n      <point x=\"160\" y=\"801\" type=\"line\"/>\n      <point x=\"197\" y=\"816\"/>\n      <point x=\"232\" y=\"823\"/>\n      <point x=\"271\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"823\"/>\n      <point x=\"389\" y=\"780\"/>\n      <point x=\"397\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"471\" y=\"-171\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"-383\"/>\n      <point x=\"599\" y=\"-480\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C6\"/>\n  <outline>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/circumflexcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflexcomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"824\" y=\"1800\" name=\"top\"/>\n  <anchor x=\"1194\" y=\"1668\" name=\"viet_top\"/>\n  <outline>\n    <contour>\n      <point x=\"407\" y=\"1580\" type=\"line\"/>\n      <point x=\"709\" y=\"1580\" type=\"line\"/>\n      <point x=\"833\" y=\"1719\" type=\"line\"/>\n      <point x=\"799\" y=\"1719\" type=\"line\"/>\n      <point x=\"873\" y=\"1580\" type=\"line\"/>\n      <point x=\"1165\" y=\"1580\" type=\"line\"/>\n      <point x=\"968\" y=\"1840\" type=\"line\"/>\n      <point x=\"696\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/circumflexcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflexcomb\" format=\"2\">\n  <unicode hex=\"0302\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"781\" y=\"1540\" name=\"top\"/>\n  <anchor x=\"1161\" y=\"1400\" name=\"viet_top\"/>\n  <outline>\n    <contour>\n      <point x=\"939\" y=\"1629\" type=\"line\"/>\n      <point x=\"651\" y=\"1629\" type=\"line\"/>\n      <point x=\"343\" y=\"1249\" type=\"line\"/>\n      <point x=\"648\" y=\"1249\" type=\"line\"/>\n      <point x=\"786\" y=\"1495\" type=\"line\"/>\n      <point x=\"766\" y=\"1495\" type=\"line\"/>\n      <point x=\"826\" y=\"1249\" type=\"line\"/>\n      <point x=\"1111\" y=\"1249\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/clubB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"clubBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2663\"/>\n  <guideline x=\"637\" y=\"60\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1280\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1260\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"80\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"40\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"603\" y=\"552\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"552\"/>\n      <point x=\"1062\" y=\"725\"/>\n      <point x=\"1062\" y=\"973\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1062\" y=\"1166\"/>\n      <point x=\"939\" y=\"1280\"/>\n      <point x=\"730\" y=\"1280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"452\" y=\"1280\"/>\n      <point x=\"267\" y=\"1102\"/>\n      <point x=\"267\" y=\"836\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"662\"/>\n      <point x=\"395\" y=\"552\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"107\"/>\n      <point x=\"434\" y=\"203\"/>\n      <point x=\"459\" y=\"346\" type=\"curve\"/>\n      <point x=\"576\" y=\"346\" type=\"line\"/>\n      <point x=\"591\" y=\"446\" type=\"line\"/>\n      <point x=\"381\" y=\"481\" type=\"line\"/>\n      <point x=\"468\" y=\"363\" type=\"line\"/>\n      <point x=\"494\" y=\"509\"/>\n      <point x=\"414\" y=\"607\"/>\n      <point x=\"268\" y=\"607\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"95\" y=\"607\"/>\n      <point x=\"-21\" y=\"485\"/>\n      <point x=\"-21\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-21\" y=\"185\"/>\n      <point x=\"59\" y=\"107\"/>\n    </contour>\n    <contour>\n      <point x=\"339\" y=\"419\" type=\"line\"/>\n      <point x=\"626\" y=\"419\" type=\"line\"/>\n      <point x=\"661\" y=\"621\" type=\"line\"/>\n      <point x=\"460\" y=\"621\" type=\"line\"/>\n      <point x=\"348\" y=\"471\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"432\" y=\"60\" type=\"line\"/>\n      <point x=\"600\" y=\"60\" type=\"line\"/>\n      <point x=\"777\" y=\"1060\" type=\"line\"/>\n      <point x=\"609\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"532\" y=\"419\" type=\"line\"/>\n      <point x=\"835\" y=\"419\" type=\"line\"/>\n      <point x=\"844\" y=\"471\" type=\"line\"/>\n      <point x=\"768\" y=\"621\" type=\"line\"/>\n      <point x=\"567\" y=\"621\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"870\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1043\" y=\"107\"/>\n      <point x=\"1158\" y=\"226\"/>\n      <point x=\"1158\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1158\" y=\"526\"/>\n      <point x=\"1078\" y=\"608\"/>\n      <point x=\"958\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"608\"/>\n      <point x=\"717\" y=\"510\"/>\n      <point x=\"690\" y=\"363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"481\" type=\"line\"/>\n      <point x=\"597\" y=\"446\" type=\"line\"/>\n      <point x=\"582\" y=\"346\" type=\"line\"/>\n      <point x=\"675\" y=\"346\" type=\"line\"/>\n      <point x=\"650\" y=\"203\"/>\n      <point x=\"728\" y=\"107\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colon.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"32\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003A\"/>\n  <outline>\n    <contour>\n      <point x=\"665\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"716\"/>\n      <point x=\"847\" y=\"798\"/>\n      <point x=\"847\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"999\"/>\n      <point x=\"766\" y=\"1080\"/>\n      <point x=\"665\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"1080\"/>\n      <point x=\"483\" y=\"999\"/>\n      <point x=\"483\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"798\"/>\n      <point x=\"564\" y=\"716\"/>\n    </contour>\n    <contour>\n      <point x=\"535\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"-20\"/>\n      <point x=\"717\" y=\"62\"/>\n      <point x=\"717\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"263\"/>\n      <point x=\"636\" y=\"344\"/>\n      <point x=\"535\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"434\" y=\"344\"/>\n      <point x=\"353\" y=\"263\"/>\n      <point x=\"353\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"62\"/>\n      <point x=\"434\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"127\"/>\n    <component base=\"colon\" xOffset=\"1073\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_colon_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"403\"/>\n    <component base=\"colon\" xOffset=\"1200\"/>\n    <component base=\"colon\" xOffset=\"1997\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_colon_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1953\" y=\"835\" type=\"line\"/>\n      <point x=\"3373\" y=\"835\" type=\"line\"/>\n      <point x=\"3417\" y=\"1085\" type=\"line\"/>\n      <point x=\"1997\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1865\" y=\"333\" type=\"line\"/>\n      <point x=\"3285\" y=\"333\" type=\"line\"/>\n      <point x=\"3329\" y=\"583\" type=\"line\"/>\n      <point x=\"1909\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"colon\" xOffset=\"680\" yOffset=\"180\"/>\n    <component base=\"colon\" xOffset=\"-85\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1153\" y=\"835\" type=\"line\"/>\n      <point x=\"2173\" y=\"835\" type=\"line\"/>\n      <point x=\"2217\" y=\"1085\" type=\"line\"/>\n      <point x=\"1197\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1065\" y=\"333\" type=\"line\"/>\n      <point x=\"2085\" y=\"333\" type=\"line\"/>\n      <point x=\"2129\" y=\"583\" type=\"line\"/>\n      <point x=\"1109\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"colon\" xOffset=\"-25\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1036\" y=\"835\" type=\"line\"/>\n      <point x=\"1303\" y=\"835\" type=\"line\"/>\n      <point x=\"1347\" y=\"1085\" type=\"line\"/>\n      <point x=\"1080\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"948\" y=\"333\" type=\"line\"/>\n      <point x=\"1215\" y=\"333\" type=\"line\"/>\n      <point x=\"1259\" y=\"583\" type=\"line\"/>\n      <point x=\"992\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"3\" y=\"835\" type=\"line\"/>\n      <point x=\"270\" y=\"835\" type=\"line\"/>\n      <point x=\"314\" y=\"1085\" type=\"line\"/>\n      <point x=\"47\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-85\" y=\"333\" type=\"line\"/>\n      <point x=\"182\" y=\"333\" type=\"line\"/>\n      <point x=\"226\" y=\"583\" type=\"line\"/>\n      <point x=\"-41\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"colon.center\" xOffset=\"-8\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"113\"/>\n    <component base=\"slash\" xOffset=\"2080\"/>\n    <component base=\"slash\" xOffset=\"1102\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colonsign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colonsign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A1\"/>\n  <outline>\n    <contour>\n      <point x=\"618\" y=\"-330\" type=\"line\"/>\n      <point x=\"1340\" y=\"1692\" type=\"line\"/>\n      <point x=\"1131\" y=\"1716\" type=\"line\"/>\n      <point x=\"409\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"321\" y=\"-330\" type=\"line\"/>\n      <point x=\"1043\" y=\"1692\" type=\"line\"/>\n      <point x=\"834\" y=\"1716\" type=\"line\"/>\n      <point x=\"112\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/colontriangularmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colontriangularmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D0\"/>\n  <outline>\n    <contour>\n      <point x=\"616\" y=\"620\" type=\"line\"/>\n      <point x=\"953\" y=\"1060\" type=\"line\"/>\n      <point x=\"433\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"247\" y=\"0\" type=\"line\"/>\n      <point x=\"767\" y=\"0\" type=\"line\"/>\n      <point x=\"584\" y=\"440\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/comma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"comma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002C\"/>\n  <outline>\n    <contour>\n      <point x=\"208\" y=\"-436\" type=\"line\"/>\n      <point x=\"466\" y=\"-436\" type=\"line\"/>\n      <point x=\"708\" y=\"254\" type=\"line\"/>\n      <point x=\"410\" y=\"254\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/commaabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaabovecomb\" format=\"2\">\n  <unicode hex=\"0313\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"770\" y=\"1498\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"758\" y=\"1122\" type=\"line\"/>\n      <point x=\"890\" y=\"1213\"/>\n      <point x=\"997\" y=\"1314\"/>\n      <point x=\"997\" y=\"1452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"1564\"/>\n      <point x=\"912\" y=\"1616\"/>\n      <point x=\"733\" y=\"1616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"1616\" type=\"line\"/>\n      <point x=\"644\" y=\"1426\" type=\"line\"/>\n      <point x=\"709\" y=\"1426\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"1426\"/>\n      <point x=\"755\" y=\"1416\"/>\n      <point x=\"755\" y=\"1395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"1354\"/>\n      <point x=\"685\" y=\"1310\"/>\n      <point x=\"602\" y=\"1251\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/commaaboverightcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaaboverightcomb\" format=\"2\">\n  <unicode hex=\"0315\"/>\n  <outline>\n    <component base=\"commaabovecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/commaaccentcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaaccentcomb\" format=\"2\">\n  <unicode hex=\"0326\"/>\n  <anchor x=\"506\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"432\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <component base=\"commaabovecomb\" xOffset=\"-346\" yOffset=\"-1730\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/commaturnedabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaturnedabovecomb\" format=\"2\">\n  <unicode hex=\"0312\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"772\" y=\"1191\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"1191\" type=\"line\"/>\n      <point x=\"861\" y=\"1381\" type=\"line\"/>\n      <point x=\"796\" y=\"1381\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"1381\"/>\n      <point x=\"750\" y=\"1391\"/>\n      <point x=\"750\" y=\"1412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"1453\"/>\n      <point x=\"820\" y=\"1497\"/>\n      <point x=\"903\" y=\"1556\" type=\"curve\"/>\n      <point x=\"747\" y=\"1685\" type=\"line\"/>\n      <point x=\"615\" y=\"1594\"/>\n      <point x=\"508\" y=\"1493\"/>\n      <point x=\"508\" y=\"1355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"1243\"/>\n      <point x=\"593\" y=\"1191\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/commaturnedmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaturnedmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02BB\"/>\n  <outline>\n    <component base=\"quoteleft\" xOffset=\"20\" yOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>.notdef</key>\n    <string>_notdef.glif</string>\n    <key>A</key>\n    <string>A_.glif</string>\n    <key>A-cy</key>\n    <string>A_-cy.glif</string>\n    <key>A.half</key>\n    <string>A_.half.glif</string>\n    <key>AE</key>\n    <string>A_E_.glif</string>\n    <key>AEacute</key>\n    <string>A_E_acute.glif</string>\n    <key>Aacute</key>\n    <string>A_acute.glif</string>\n    <key>Abreve</key>\n    <string>A_breve.glif</string>\n    <key>Abreveacute</key>\n    <string>A_breveacute.glif</string>\n    <key>Abrevedotbelow</key>\n    <string>A_brevedotbelow.glif</string>\n    <key>Abrevegrave</key>\n    <string>A_brevegrave.glif</string>\n    <key>Abrevehookabove</key>\n    <string>A_brevehookabove.glif</string>\n    <key>Abrevetilde</key>\n    <string>A_brevetilde.glif</string>\n    <key>Acaron</key>\n    <string>A_caron.glif</string>\n    <key>Acircumflex</key>\n    <string>A_circumflex.glif</string>\n    <key>Acircumflexacute</key>\n    <string>A_circumflexacute.glif</string>\n    <key>Acircumflexdotbelow</key>\n    <string>A_circumflexdotbelow.glif</string>\n    <key>Acircumflexgrave</key>\n    <string>A_circumflexgrave.glif</string>\n    <key>Acircumflexhookabove</key>\n    <string>A_circumflexhookabove.glif</string>\n    <key>Acircumflextilde</key>\n    <string>A_circumflextilde.glif</string>\n    <key>Adieresis</key>\n    <string>A_dieresis.glif</string>\n    <key>Adotbelow</key>\n    <string>A_dotbelow.glif</string>\n    <key>Agrave</key>\n    <string>A_grave.glif</string>\n    <key>Ahookabove</key>\n    <string>A_hookabove.glif</string>\n    <key>Alpha</key>\n    <string>A_lpha.glif</string>\n    <key>Alpha-latin</key>\n    <string>A_lpha-latin.glif</string>\n    <key>Alphatonos</key>\n    <string>A_lphatonos.glif</string>\n    <key>Amacron</key>\n    <string>A_macron.glif</string>\n    <key>Aogonek</key>\n    <string>A_ogonek.glif</string>\n    <key>Aring</key>\n    <string>A_ring.glif</string>\n    <key>Aringacute</key>\n    <string>A_ringacute.glif</string>\n    <key>Asmall</key>\n    <string>A_small.glif</string>\n    <key>Astroke</key>\n    <string>A_stroke.glif</string>\n    <key>Atilde</key>\n    <string>A_tilde.glif</string>\n    <key>B</key>\n    <string>B_.glif</string>\n    <key>B.half</key>\n    <string>B_.half.glif</string>\n    <key>Be-cy</key>\n    <string>B_e-cy.glif</string>\n    <key>Beta</key>\n    <string>B_eta.glif</string>\n    <key>C</key>\n    <string>C_.glif</string>\n    <key>C.half</key>\n    <string>C_.half.glif</string>\n    <key>CR</key>\n    <string>C_R_.glif</string>\n    <key>Cacute</key>\n    <string>C_acute.glif</string>\n    <key>Cacute.loclPLK</key>\n    <string>C_acute.loclP_L_K_.glif</string>\n    <key>Ccaron</key>\n    <string>C_caron.glif</string>\n    <key>Ccedilla</key>\n    <string>C_cedilla.glif</string>\n    <key>Ccircumflex</key>\n    <string>C_circumflex.glif</string>\n    <key>Cdotaccent</key>\n    <string>C_dotaccent.glif</string>\n    <key>Che-cy</key>\n    <string>C_he-cy.glif</string>\n    <key>Chedescender-cy</key>\n    <string>C_hedescender-cy.glif</string>\n    <key>Chi</key>\n    <string>C_hi.glif</string>\n    <key>Cstroke</key>\n    <string>C_stroke.glif</string>\n    <key>D</key>\n    <string>D_.glif</string>\n    <key>D.half</key>\n    <string>D_.half.glif</string>\n    <key>Dafrican</key>\n    <string>D_african.glif</string>\n    <key>Dcaron</key>\n    <string>D_caron.glif</string>\n    <key>Dcroat</key>\n    <string>D_croat.glif</string>\n    <key>De-cy</key>\n    <string>D_e-cy.glif</string>\n    <key>De-cy.loclBGR</key>\n    <string>D_e-cy.loclB_G_R_.glif</string>\n    <key>Delta</key>\n    <string>D_elta.glif</string>\n    <key>Dje-cy</key>\n    <string>D_je-cy.glif</string>\n    <key>Dze-cy</key>\n    <string>D_ze-cy.glif</string>\n    <key>Dzhe-cy</key>\n    <string>D_zhe-cy.glif</string>\n    <key>E</key>\n    <string>E_.glif</string>\n    <key>E-cy</key>\n    <string>E_-cy.glif</string>\n    <key>E.half</key>\n    <string>E_.half.glif</string>\n    <key>Eacute</key>\n    <string>E_acute.glif</string>\n    <key>Ebreve</key>\n    <string>E_breve.glif</string>\n    <key>Ecaron</key>\n    <string>E_caron.glif</string>\n    <key>Ecircumflex</key>\n    <string>E_circumflex.glif</string>\n    <key>Ecircumflexacute</key>\n    <string>E_circumflexacute.glif</string>\n    <key>Ecircumflexdotbelow</key>\n    <string>E_circumflexdotbelow.glif</string>\n    <key>Ecircumflexgrave</key>\n    <string>E_circumflexgrave.glif</string>\n    <key>Ecircumflexhookabove</key>\n    <string>E_circumflexhookabove.glif</string>\n    <key>Ecircumflextilde</key>\n    <string>E_circumflextilde.glif</string>\n    <key>Edieresis</key>\n    <string>E_dieresis.glif</string>\n    <key>Edotaccent</key>\n    <string>E_dotaccent.glif</string>\n    <key>Edotbelow</key>\n    <string>E_dotbelow.glif</string>\n    <key>Ef-cy</key>\n    <string>E_f-cy.glif</string>\n    <key>Ef-cy.loclBGR</key>\n    <string>E_f-cy.loclB_G_R_.glif</string>\n    <key>Egrave</key>\n    <string>E_grave.glif</string>\n    <key>Ehookabove</key>\n    <string>E_hookabove.glif</string>\n    <key>El-cy</key>\n    <string>E_l-cy.glif</string>\n    <key>El-cy.loclBGR</key>\n    <string>E_l-cy.loclB_G_R_.glif</string>\n    <key>Em-cy</key>\n    <string>E_m-cy.glif</string>\n    <key>Emacron</key>\n    <string>E_macron.glif</string>\n    <key>En-cy</key>\n    <string>E_n-cy.glif</string>\n    <key>Endescender-cy</key>\n    <string>E_ndescender-cy.glif</string>\n    <key>Eng</key>\n    <string>E_ng.glif</string>\n    <key>Eogonek</key>\n    <string>E_ogonek.glif</string>\n    <key>Eopen</key>\n    <string>E_open.glif</string>\n    <key>Epsilon</key>\n    <string>E_psilon.glif</string>\n    <key>Epsilontonos</key>\n    <string>E_psilontonos.glif</string>\n    <key>Er-cy</key>\n    <string>E_r-cy.glif</string>\n    <key>Ereversed</key>\n    <string>E_reversed.glif</string>\n    <key>Ereversed-cy</key>\n    <string>E_reversed-cy.glif</string>\n    <key>Es-cy</key>\n    <string>E_s-cy.glif</string>\n    <key>Esh</key>\n    <string>E_sh.glif</string>\n    <key>Eta</key>\n    <string>E_ta.glif</string>\n    <key>Etatonos</key>\n    <string>E_tatonos.glif</string>\n    <key>Eth</key>\n    <string>E_th.glif</string>\n    <key>Etilde</key>\n    <string>E_tilde.glif</string>\n    <key>Ezh</key>\n    <string>E_zh.glif</string>\n    <key>F</key>\n    <string>F_.glif</string>\n    <key>F.half</key>\n    <string>F_.half.glif</string>\n    <key>Fhook</key>\n    <string>F_hook.glif</string>\n    <key>G</key>\n    <string>G_.glif</string>\n    <key>G.half</key>\n    <string>G_.half.glif</string>\n    <key>Gamma</key>\n    <string>G_amma.glif</string>\n    <key>Gammaafrican</key>\n    <string>G_ammaafrican.glif</string>\n    <key>Gbreve</key>\n    <string>G_breve.glif</string>\n    <key>Gcaron</key>\n    <string>G_caron.glif</string>\n    <key>Gcircumflex</key>\n    <string>G_circumflex.glif</string>\n    <key>Gcommaaccent</key>\n    <string>G_commaaccent.glif</string>\n    <key>Gdotaccent</key>\n    <string>G_dotaccent.glif</string>\n    <key>Ge-cy</key>\n    <string>G_e-cy.glif</string>\n    <key>Germandbls</key>\n    <string>G_ermandbls.glif</string>\n    <key>Ghestroke-cy</key>\n    <string>G_hestroke-cy.glif</string>\n    <key>Gheupturn-cy</key>\n    <string>G_heupturn-cy.glif</string>\n    <key>Gje-cy</key>\n    <string>G_je-cy.glif</string>\n    <key>Gsmall</key>\n    <string>G_small.glif</string>\n    <key>Gstroke</key>\n    <string>G_stroke.glif</string>\n    <key>H</key>\n    <string>H_.glif</string>\n    <key>H.half</key>\n    <string>H_.half.glif</string>\n    <key>Ha-cy</key>\n    <string>H_a-cy.glif</string>\n    <key>Hadescender-cy</key>\n    <string>H_adescender-cy.glif</string>\n    <key>Hardsign-cy</key>\n    <string>H_ardsign-cy.glif</string>\n    <key>Hbar</key>\n    <string>H_bar.glif</string>\n    <key>Hcaron</key>\n    <string>H_caron.glif</string>\n    <key>Hcircumflex</key>\n    <string>H_circumflex.glif</string>\n    <key>Hdotbelow</key>\n    <string>H_dotbelow.glif</string>\n    <key>I</key>\n    <string>I_.glif</string>\n    <key>I-cy</key>\n    <string>I_-cy.glif</string>\n    <key>I.half</key>\n    <string>I_.half.glif</string>\n    <key>IJ</key>\n    <string>I_J_.glif</string>\n    <key>IJ_acute</key>\n    <string>I_J__acute.glif</string>\n    <key>Ia-cy</key>\n    <string>I_a-cy.glif</string>\n    <key>Iacute</key>\n    <string>I_acute.glif</string>\n    <key>Ibreve</key>\n    <string>I_breve.glif</string>\n    <key>Icircumflex</key>\n    <string>I_circumflex.glif</string>\n    <key>Idieresis</key>\n    <string>I_dieresis.glif</string>\n    <key>Idotaccent</key>\n    <string>I_dotaccent.glif</string>\n    <key>Idotbelow</key>\n    <string>I_dotbelow.glif</string>\n    <key>Ie-cy</key>\n    <string>I_e-cy.glif</string>\n    <key>Iegrave-cy</key>\n    <string>I_egrave-cy.glif</string>\n    <key>Igrave</key>\n    <string>I_grave.glif</string>\n    <key>Ihookabove</key>\n    <string>I_hookabove.glif</string>\n    <key>Ii-cy</key>\n    <string>I_i-cy.glif</string>\n    <key>Iigrave-cy</key>\n    <string>I_igrave-cy.glif</string>\n    <key>Iishort-cy</key>\n    <string>I_ishort-cy.glif</string>\n    <key>Imacron</key>\n    <string>I_macron.glif</string>\n    <key>Imacron-cy</key>\n    <string>I_macron-cy.glif</string>\n    <key>Io-cy</key>\n    <string>I_o-cy.glif</string>\n    <key>Iogonek</key>\n    <string>I_ogonek.glif</string>\n    <key>Iota</key>\n    <string>I_ota.glif</string>\n    <key>Iotaafrican</key>\n    <string>I_otaafrican.glif</string>\n    <key>Iotadieresis</key>\n    <string>I_otadieresis.glif</string>\n    <key>Iotatonos</key>\n    <string>I_otatonos.glif</string>\n    <key>Ismall</key>\n    <string>I_small.glif</string>\n    <key>Itilde</key>\n    <string>I_tilde.glif</string>\n    <key>Iu-cy</key>\n    <string>I_u-cy.glif</string>\n    <key>J</key>\n    <string>J_.glif</string>\n    <key>Jacute</key>\n    <string>J_acute.glif</string>\n    <key>Jcircumflex</key>\n    <string>J_circumflex.glif</string>\n    <key>Je-cy</key>\n    <string>J_e-cy.glif</string>\n    <key>K</key>\n    <string>K_.glif</string>\n    <key>K.half</key>\n    <string>K_.half.glif</string>\n    <key>Ka-cy</key>\n    <string>K_a-cy.glif</string>\n    <key>Kacute</key>\n    <string>K_acute.glif</string>\n    <key>Kadescender-cy</key>\n    <string>K_adescender-cy.glif</string>\n    <key>KaiSymbol</key>\n    <string>K_aiS_ymbol.glif</string>\n    <key>Kappa</key>\n    <string>K_appa.glif</string>\n    <key>Kcommaaccent</key>\n    <string>K_commaaccent.glif</string>\n    <key>Kdotbelow</key>\n    <string>K_dotbelow.glif</string>\n    <key>Kje-cy</key>\n    <string>K_je-cy.glif</string>\n    <key>Klinebelow</key>\n    <string>K_linebelow.glif</string>\n    <key>L</key>\n    <string>L_.glif</string>\n    <key>L.half</key>\n    <string>L_.half.glif</string>\n    <key>LIG</key>\n    <string>L_I_G_.glif</string>\n    <key>Lacute</key>\n    <string>L_acute.glif</string>\n    <key>Lambda</key>\n    <string>L_ambda.glif</string>\n    <key>Lbar</key>\n    <string>L_bar.glif</string>\n    <key>Lcaron</key>\n    <string>L_caron.glif</string>\n    <key>Lcommaaccent</key>\n    <string>L_commaaccent.glif</string>\n    <key>Ldot</key>\n    <string>L_dot.glif</string>\n    <key>Ldotbelow</key>\n    <string>L_dotbelow.glif</string>\n    <key>Lje-cy</key>\n    <string>L_je-cy.glif</string>\n    <key>Llinebelow</key>\n    <string>L_linebelow.glif</string>\n    <key>Lmiddletilde</key>\n    <string>L_middletilde.glif</string>\n    <key>Lslash</key>\n    <string>L_slash.glif</string>\n    <key>Lsmall</key>\n    <string>L_small.glif</string>\n    <key>M</key>\n    <string>M_.glif</string>\n    <key>M.half</key>\n    <string>M_.half.glif</string>\n    <key>Mu</key>\n    <string>M_u.glif</string>\n    <key>N</key>\n    <string>N_.glif</string>\n    <key>N.half</key>\n    <string>N_.half.glif</string>\n    <key>Nacute</key>\n    <string>N_acute.glif</string>\n    <key>Nacute.loclPLK</key>\n    <string>N_acute.loclP_L_K_.glif</string>\n    <key>Ncaron</key>\n    <string>N_caron.glif</string>\n    <key>Ncommaaccent</key>\n    <string>N_commaaccent.glif</string>\n    <key>Nhookleft</key>\n    <string>N_hookleft.glif</string>\n    <key>Nje-cy</key>\n    <string>N_je-cy.glif</string>\n    <key>Nlinebelow</key>\n    <string>N_linebelow.glif</string>\n    <key>Ntilde</key>\n    <string>N_tilde.glif</string>\n    <key>Nu</key>\n    <string>N_u.glif</string>\n    <key>O</key>\n    <string>O_.glif</string>\n    <key>O-cy</key>\n    <string>O_-cy.glif</string>\n    <key>O.half</key>\n    <string>O_.half.glif</string>\n    <key>OE</key>\n    <string>O_E_.glif</string>\n    <key>Oacute</key>\n    <string>O_acute.glif</string>\n    <key>Oacute.loclPLK</key>\n    <string>O_acute.loclP_L_K_.glif</string>\n    <key>Obarred-cy</key>\n    <string>O_barred-cy.glif</string>\n    <key>Obreve</key>\n    <string>O_breve.glif</string>\n    <key>Ocircumflex</key>\n    <string>O_circumflex.glif</string>\n    <key>Ocircumflexacute</key>\n    <string>O_circumflexacute.glif</string>\n    <key>Ocircumflexdotbelow</key>\n    <string>O_circumflexdotbelow.glif</string>\n    <key>Ocircumflexgrave</key>\n    <string>O_circumflexgrave.glif</string>\n    <key>Ocircumflexhookabove</key>\n    <string>O_circumflexhookabove.glif</string>\n    <key>Ocircumflextilde</key>\n    <string>O_circumflextilde.glif</string>\n    <key>Odieresis</key>\n    <string>O_dieresis.glif</string>\n    <key>Odotbelow</key>\n    <string>O_dotbelow.glif</string>\n    <key>Ograve</key>\n    <string>O_grave.glif</string>\n    <key>Ohm</key>\n    <string>O_hm.glif</string>\n    <key>Ohookabove</key>\n    <string>O_hookabove.glif</string>\n    <key>Ohorn</key>\n    <string>O_horn.glif</string>\n    <key>Ohornacute</key>\n    <string>O_hornacute.glif</string>\n    <key>Ohorndotbelow</key>\n    <string>O_horndotbelow.glif</string>\n    <key>Ohorngrave</key>\n    <string>O_horngrave.glif</string>\n    <key>Ohornhookabove</key>\n    <string>O_hornhookabove.glif</string>\n    <key>Ohorntilde</key>\n    <string>O_horntilde.glif</string>\n    <key>Ohungarumlaut</key>\n    <string>O_hungarumlaut.glif</string>\n    <key>Omacron</key>\n    <string>O_macron.glif</string>\n    <key>Omacronacute</key>\n    <string>O_macronacute.glif</string>\n    <key>Omacrongrave</key>\n    <string>O_macrongrave.glif</string>\n    <key>Omega</key>\n    <string>O_mega.glif</string>\n    <key>Omegatonos</key>\n    <string>O_megatonos.glif</string>\n    <key>Omicron</key>\n    <string>O_micron.glif</string>\n    <key>Omicrontonos</key>\n    <string>O_microntonos.glif</string>\n    <key>Oogonek</key>\n    <string>O_ogonek.glif</string>\n    <key>Oopen</key>\n    <string>O_open.glif</string>\n    <key>Oslash</key>\n    <string>O_slash.glif</string>\n    <key>Oslashacute</key>\n    <string>O_slashacute.glif</string>\n    <key>Otilde</key>\n    <string>O_tilde.glif</string>\n    <key>P</key>\n    <string>P_.glif</string>\n    <key>P.half</key>\n    <string>P_.half.glif</string>\n    <key>Palochka-cy</key>\n    <string>P_alochka-cy.glif</string>\n    <key>Pe-cy</key>\n    <string>P_e-cy.glif</string>\n    <key>Phi</key>\n    <string>P_hi.glif</string>\n    <key>Pi</key>\n    <string>P_i.glif</string>\n    <key>Psi</key>\n    <string>P_si.glif</string>\n    <key>Q</key>\n    <string>Q_.glif</string>\n    <key>Q.half</key>\n    <string>Q_.half.glif</string>\n    <key>R</key>\n    <string>R_.glif</string>\n    <key>R.half</key>\n    <string>R_.half.glif</string>\n    <key>Racute</key>\n    <string>R_acute.glif</string>\n    <key>Rcaron</key>\n    <string>R_caron.glif</string>\n    <key>Rcommaaccent</key>\n    <string>R_commaaccent.glif</string>\n    <key>Rdotbelow</key>\n    <string>R_dotbelow.glif</string>\n    <key>Rho</key>\n    <string>R_ho.glif</string>\n    <key>S</key>\n    <string>S_.glif</string>\n    <key>S.half</key>\n    <string>S_.half.glif</string>\n    <key>Sacute</key>\n    <string>S_acute.glif</string>\n    <key>Sacute.loclPLK</key>\n    <string>S_acute.loclP_L_K_.glif</string>\n    <key>Scaron</key>\n    <string>S_caron.glif</string>\n    <key>Scedilla</key>\n    <string>S_cedilla.glif</string>\n    <key>Schwa</key>\n    <string>S_chwa.glif</string>\n    <key>Schwa-cy</key>\n    <string>S_chwa-cy.glif</string>\n    <key>Scircumflex</key>\n    <string>S_circumflex.glif</string>\n    <key>Scommaaccent</key>\n    <string>S_commaaccent.glif</string>\n    <key>Sdotbelow</key>\n    <string>S_dotbelow.glif</string>\n    <key>Sha-cy</key>\n    <string>S_ha-cy.glif</string>\n    <key>Shcha-cy</key>\n    <string>S_hcha-cy.glif</string>\n    <key>Shha-cy</key>\n    <string>S_hha-cy.glif</string>\n    <key>Sigma</key>\n    <string>S_igma.glif</string>\n    <key>Softsign-cy</key>\n    <string>S_oftsign-cy.glif</string>\n    <key>T</key>\n    <string>T_.glif</string>\n    <key>T.half</key>\n    <string>T_.half.glif</string>\n    <key>Tau</key>\n    <string>T_au.glif</string>\n    <key>Tbar</key>\n    <string>T_bar.glif</string>\n    <key>Tcaron</key>\n    <string>T_caron.glif</string>\n    <key>Tcedilla</key>\n    <string>T_cedilla.glif</string>\n    <key>Tcommaaccent</key>\n    <string>T_commaaccent.glif</string>\n    <key>Tdiagonalstroke</key>\n    <string>T_diagonalstroke.glif</string>\n    <key>Te-cy</key>\n    <string>T_e-cy.glif</string>\n    <key>Theta</key>\n    <string>T_heta.glif</string>\n    <key>Thorn</key>\n    <string>T_horn.glif</string>\n    <key>Tlinebelow</key>\n    <string>T_linebelow.glif</string>\n    <key>Tse-cy</key>\n    <string>T_se-cy.glif</string>\n    <key>Tshe-cy</key>\n    <string>T_she-cy.glif</string>\n    <key>U</key>\n    <string>U_.glif</string>\n    <key>U-cy</key>\n    <string>U_-cy.glif</string>\n    <key>U.half</key>\n    <string>U_.half.glif</string>\n    <key>Uacute</key>\n    <string>U_acute.glif</string>\n    <key>Ubreve</key>\n    <string>U_breve.glif</string>\n    <key>Ucircumflex</key>\n    <string>U_circumflex.glif</string>\n    <key>Udieresis</key>\n    <string>U_dieresis.glif</string>\n    <key>Udotbelow</key>\n    <string>U_dotbelow.glif</string>\n    <key>Ugrave</key>\n    <string>U_grave.glif</string>\n    <key>Uhookabove</key>\n    <string>U_hookabove.glif</string>\n    <key>Uhorn</key>\n    <string>U_horn.glif</string>\n    <key>Uhornacute</key>\n    <string>U_hornacute.glif</string>\n    <key>Uhorndotbelow</key>\n    <string>U_horndotbelow.glif</string>\n    <key>Uhorngrave</key>\n    <string>U_horngrave.glif</string>\n    <key>Uhornhookabove</key>\n    <string>U_hornhookabove.glif</string>\n    <key>Uhorntilde</key>\n    <string>U_horntilde.glif</string>\n    <key>Uhungarumlaut</key>\n    <string>U_hungarumlaut.glif</string>\n    <key>Umacron</key>\n    <string>U_macron.glif</string>\n    <key>Umacron-cy</key>\n    <string>U_macron-cy.glif</string>\n    <key>Uogonek</key>\n    <string>U_ogonek.glif</string>\n    <key>Upsilon</key>\n    <string>U_psilon.glif</string>\n    <key>Upsilonafrican</key>\n    <string>U_psilonafrican.glif</string>\n    <key>Upsilondieresis</key>\n    <string>U_psilondieresis.glif</string>\n    <key>Upsilontonos</key>\n    <string>U_psilontonos.glif</string>\n    <key>Uring</key>\n    <string>U_ring.glif</string>\n    <key>Ushort-cy</key>\n    <string>U_short-cy.glif</string>\n    <key>Ustraight-cy</key>\n    <string>U_straight-cy.glif</string>\n    <key>Ustraightstroke-cy</key>\n    <string>U_straightstroke-cy.glif</string>\n    <key>Utilde</key>\n    <string>U_tilde.glif</string>\n    <key>V</key>\n    <string>V_.glif</string>\n    <key>V.half</key>\n    <string>V_.half.glif</string>\n    <key>Ve-cy</key>\n    <string>V_e-cy.glif</string>\n    <key>Vhook</key>\n    <string>V_hook.glif</string>\n    <key>Vturned</key>\n    <string>V_turned.glif</string>\n    <key>W</key>\n    <string>W_.glif</string>\n    <key>Wacute</key>\n    <string>W_acute.glif</string>\n    <key>Wcircumflex</key>\n    <string>W_circumflex.glif</string>\n    <key>Wdieresis</key>\n    <string>W_dieresis.glif</string>\n    <key>Wgrave</key>\n    <string>W_grave.glif</string>\n    <key>X</key>\n    <string>X_.glif</string>\n    <key>X.half</key>\n    <string>X_.half.glif</string>\n    <key>Xi</key>\n    <string>X_i.glif</string>\n    <key>Y</key>\n    <string>Y_.glif</string>\n    <key>Y.half</key>\n    <string>Y_.half.glif</string>\n    <key>Yacute</key>\n    <string>Y_acute.glif</string>\n    <key>Ycircumflex</key>\n    <string>Y_circumflex.glif</string>\n    <key>Ydieresis</key>\n    <string>Y_dieresis.glif</string>\n    <key>Ydotbelow</key>\n    <string>Y_dotbelow.glif</string>\n    <key>Yeru-cy</key>\n    <string>Y_eru-cy.glif</string>\n    <key>Ygrave</key>\n    <string>Y_grave.glif</string>\n    <key>Yhookabove</key>\n    <string>Y_hookabove.glif</string>\n    <key>Yi-cy</key>\n    <string>Y_i-cy.glif</string>\n    <key>Ymacron</key>\n    <string>Y_macron.glif</string>\n    <key>Ytilde</key>\n    <string>Y_tilde.glif</string>\n    <key>Z</key>\n    <string>Z_.glif</string>\n    <key>Zacute</key>\n    <string>Z_acute.glif</string>\n    <key>Zacute.loclPLK</key>\n    <string>Z_acute.loclP_L_K_.glif</string>\n    <key>Zcaron</key>\n    <string>Z_caron.glif</string>\n    <key>Zdotaccent</key>\n    <string>Z_dotaccent.glif</string>\n    <key>Ze-cy</key>\n    <string>Z_e-cy.glif</string>\n    <key>Zeta</key>\n    <string>Z_eta.glif</string>\n    <key>Zhe-cy</key>\n    <string>Z_he-cy.glif</string>\n    <key>Zhedescender-cy</key>\n    <string>Z_hedescender-cy.glif</string>\n    <key>a</key>\n    <string>a.glif</string>\n    <key>a-cy</key>\n    <string>a-cy.glif</string>\n    <key>aacute</key>\n    <string>aacute.glif</string>\n    <key>abreve</key>\n    <string>abreve.glif</string>\n    <key>abreveacute</key>\n    <string>abreveacute.glif</string>\n    <key>abrevedotbelow</key>\n    <string>abrevedotbelow.glif</string>\n    <key>abrevegrave</key>\n    <string>abrevegrave.glif</string>\n    <key>abrevehookabove</key>\n    <string>abrevehookabove.glif</string>\n    <key>abrevetilde</key>\n    <string>abrevetilde.glif</string>\n    <key>acaron</key>\n    <string>acaron.glif</string>\n    <key>acircumflex</key>\n    <string>acircumflex.glif</string>\n    <key>acircumflexacute</key>\n    <string>acircumflexacute.glif</string>\n    <key>acircumflexdotbelow</key>\n    <string>acircumflexdotbelow.glif</string>\n    <key>acircumflexgrave</key>\n    <string>acircumflexgrave.glif</string>\n    <key>acircumflexhookabove</key>\n    <string>acircumflexhookabove.glif</string>\n    <key>acircumflextilde</key>\n    <string>acircumflextilde.glif</string>\n    <key>acknowledgeControl</key>\n    <string>acknowledgeC_ontrol.glif</string>\n    <key>acknowledgeControl.ss20</key>\n    <string>acknowledgeC_ontrol.ss20.glif</string>\n    <key>acute</key>\n    <string>acute.glif</string>\n    <key>acutecomb</key>\n    <string>acutecomb.glif</string>\n    <key>acutecomb.case</key>\n    <string>acutecomb.case.glif</string>\n    <key>acutecomb.case.loclPLK</key>\n    <string>acutecomb.case.loclP_L_K_.glif</string>\n    <key>acutecomb.loclPLK</key>\n    <string>acutecomb.loclP_L_K_.glif</string>\n    <key>acutetonecomb</key>\n    <string>acutetonecomb.glif</string>\n    <key>adieresis</key>\n    <string>adieresis.glif</string>\n    <key>adotbelow</key>\n    <string>adotbelow.glif</string>\n    <key>ae</key>\n    <string>ae.glif</string>\n    <key>aeacute</key>\n    <string>aeacute.glif</string>\n    <key>agrave</key>\n    <string>agrave.glif</string>\n    <key>ahookabove</key>\n    <string>ahookabove.glif</string>\n    <key>alpha</key>\n    <string>alpha.glif</string>\n    <key>alpha-latin</key>\n    <string>alpha-latin.glif</string>\n    <key>alphatonos</key>\n    <string>alphatonos.glif</string>\n    <key>amacron</key>\n    <string>amacron.glif</string>\n    <key>ampersand</key>\n    <string>ampersand.glif</string>\n    <key>ampersand.BRACKET.600</key>\n    <string>ampersand.B_R_A_C_K_E_T_.600.glif</string>\n    <key>ampersand_ampersand.liga</key>\n    <string>ampersand_ampersand.liga.glif</string>\n    <key>ampersand_ampersand.liga.BRACKET.600</key>\n    <string>ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>anoteleia</key>\n    <string>anoteleia.glif</string>\n    <key>aogonek</key>\n    <string>aogonek.glif</string>\n    <key>apostrophemod</key>\n    <string>apostrophemod.glif</string>\n    <key>approxequal</key>\n    <string>approxequal.glif</string>\n    <key>aring</key>\n    <string>aring.glif</string>\n    <key>aringacute</key>\n    <string>aringacute.glif</string>\n    <key>asciicircum</key>\n    <string>asciicircum.glif</string>\n    <key>asciicircum_equal.liga</key>\n    <string>asciicircum_equal.liga.glif</string>\n    <key>asciitilde</key>\n    <string>asciitilde.glif</string>\n    <key>asciitilde_asciitilde.liga</key>\n    <string>asciitilde_asciitilde.liga.glif</string>\n    <key>asciitilde_asciitilde_greater.liga</key>\n    <string>asciitilde_asciitilde_greater.liga.glif</string>\n    <key>asciitilde_at.liga</key>\n    <string>asciitilde_at.liga.glif</string>\n    <key>asciitilde_equal.liga</key>\n    <string>asciitilde_equal.liga.glif</string>\n    <key>asciitilde_greater.liga</key>\n    <string>asciitilde_greater.liga.glif</string>\n    <key>asciitilde_hyphen.liga</key>\n    <string>asciitilde_hyphen.liga.glif</string>\n    <key>asterisk</key>\n    <string>asterisk.glif</string>\n    <key>asterisk_asterisk.liga</key>\n    <string>asterisk_asterisk.liga.glif</string>\n    <key>asterisk_asterisk_asterisk.liga</key>\n    <string>asterisk_asterisk_asterisk.liga.glif</string>\n    <key>asterisk_greater.liga</key>\n    <string>asterisk_greater.liga.glif</string>\n    <key>asterisk_parenright.liga</key>\n    <string>asterisk_parenright.liga.glif</string>\n    <key>asterisk_slash.liga</key>\n    <string>asterisk_slash.liga.glif</string>\n    <key>at</key>\n    <string>at.glif</string>\n    <key>atilde</key>\n    <string>atilde.glif</string>\n    <key>b</key>\n    <string>b.glif</string>\n    <key>b.alt</key>\n    <string>b.alt.glif</string>\n    <key>backslash</key>\n    <string>backslash.glif</string>\n    <key>backslash_backslash.liga</key>\n    <string>backslash_backslash.liga.glif</string>\n    <key>backslash_slash.liga</key>\n    <string>backslash_slash.liga.glif</string>\n    <key>backspaceControl</key>\n    <string>backspaceC_ontrol.glif</string>\n    <key>backspaceControl.ss20</key>\n    <string>backspaceC_ontrol.ss20.glif</string>\n    <key>baht</key>\n    <string>baht.glif</string>\n    <key>baht.BRACKET.600</key>\n    <string>baht.B_R_A_C_K_E_T_.600.glif</string>\n    <key>bar</key>\n    <string>bar.glif</string>\n    <key>bar_bar.liga</key>\n    <string>bar_bar.liga.glif</string>\n    <key>bar_bar_bar.liga</key>\n    <string>bar_bar_bar.liga.glif</string>\n    <key>bar_bar_bar_greater.liga</key>\n    <string>bar_bar_bar_greater.liga.glif</string>\n    <key>bar_bar_equal_end.seq</key>\n    <string>bar_bar_equal_end.seq.glif</string>\n    <key>bar_bar_equal_middle.seq</key>\n    <string>bar_bar_equal_middle.seq.glif</string>\n    <key>bar_bar_equal_start.seq</key>\n    <string>bar_bar_equal_start.seq.glif</string>\n    <key>bar_bar_greater.liga</key>\n    <string>bar_bar_greater.liga.glif</string>\n    <key>bar_bar_hyphen_end.seq</key>\n    <string>bar_bar_hyphen_end.seq.glif</string>\n    <key>bar_bar_hyphen_middle.seq</key>\n    <string>bar_bar_hyphen_middle.seq.glif</string>\n    <key>bar_bar_hyphen_start.seq</key>\n    <string>bar_bar_hyphen_start.seq.glif</string>\n    <key>bar_braceright.liga</key>\n    <string>bar_braceright.liga.glif</string>\n    <key>bar_bracketright.liga</key>\n    <string>bar_bracketright.liga.glif</string>\n    <key>bar_equal_end.seq</key>\n    <string>bar_equal_end.seq.glif</string>\n    <key>bar_equal_middle.seq</key>\n    <string>bar_equal_middle.seq.glif</string>\n    <key>bar_equal_start.seq</key>\n    <string>bar_equal_start.seq.glif</string>\n    <key>bar_greater.liga</key>\n    <string>bar_greater.liga.glif</string>\n    <key>bar_hyphen_end.seq</key>\n    <string>bar_hyphen_end.seq.glif</string>\n    <key>bar_hyphen_middle.seq</key>\n    <string>bar_hyphen_middle.seq.glif</string>\n    <key>bar_hyphen_start.seq</key>\n    <string>bar_hyphen_start.seq.glif</string>\n    <key>bar_underscore_middle.seq</key>\n    <string>bar_underscore_middle.seq.glif</string>\n    <key>be-cy</key>\n    <string>be-cy.glif</string>\n    <key>be-cy.loclSRB</key>\n    <string>be-cy.loclS_R_B_.glif</string>\n    <key>bellControl</key>\n    <string>bellC_ontrol.glif</string>\n    <key>bellControl.ss20</key>\n    <string>bellC_ontrol.ss20.glif</string>\n    <key>beta</key>\n    <string>beta.glif</string>\n    <key>bitcoin</key>\n    <string>bitcoin.glif</string>\n    <key>blackCircle</key>\n    <string>blackC_ircle.glif</string>\n    <key>blackDiamond</key>\n    <string>blackD_iamond.glif</string>\n    <key>blackHexagon</key>\n    <string>blackH_exagon.glif</string>\n    <key>blackHorizontalEllipse</key>\n    <string>blackH_orizontalE_llipse.glif</string>\n    <key>blackInWhiteDiamond</key>\n    <string>blackI_nW_hiteD_iamond.glif</string>\n    <key>blackLargeCircle</key>\n    <string>blackL_argeC_ircle.glif</string>\n    <key>blackLargeSquare</key>\n    <string>blackL_argeS_quare.glif</string>\n    <key>blackMediumDiamond</key>\n    <string>blackM_ediumD_iamond.glif</string>\n    <key>blackMediumDownTriangleCentred</key>\n    <string>blackM_ediumD_ownT_riangleC_entred.glif</string>\n    <key>blackMediumLeftTriangleCentred</key>\n    <string>blackM_ediumL_eftT_riangleC_entred.glif</string>\n    <key>blackMediumLozenge</key>\n    <string>blackM_ediumL_ozenge.glif</string>\n    <key>blackMediumRightTriangleCentred</key>\n    <string>blackM_ediumR_ightT_riangleC_entred.glif</string>\n    <key>blackMediumUpTriangleCentred</key>\n    <string>blackM_ediumU_pT_riangleC_entred.glif</string>\n    <key>blackParallelogram</key>\n    <string>blackP_arallelogram.glif</string>\n    <key>blackPentagon</key>\n    <string>blackP_entagon.glif</string>\n    <key>blackSmallDiamond</key>\n    <string>blackS_mallD_iamond.glif</string>\n    <key>blackSmallLozenge</key>\n    <string>blackS_mallL_ozenge.glif</string>\n    <key>blackSmallSquare</key>\n    <string>blackS_mallS_quare.glif</string>\n    <key>blackSmilingFace</key>\n    <string>blackS_milingF_ace.glif</string>\n    <key>blackSquare</key>\n    <string>blackS_quare.glif</string>\n    <key>blackVerticalEllipse</key>\n    <string>blackV_erticalE_llipse.glif</string>\n    <key>blackVerticalRect</key>\n    <string>blackV_erticalR_ect.glif</string>\n    <key>blackVerysmallSquare</key>\n    <string>blackV_erysmallS_quare.glif</string>\n    <key>blank</key>\n    <string>blank.glif</string>\n    <key>blank-braille</key>\n    <string>blank-braille.glif</string>\n    <key>blankSymbol</key>\n    <string>blankS_ymbol.glif</string>\n    <key>bottomHalfBlackCircle</key>\n    <string>bottomH_alfB_lackC_ircle.glif</string>\n    <key>bottomHalfBlackDiamond</key>\n    <string>bottomH_alfB_lackD_iamond.glif</string>\n    <key>boxDoubleDownAndHorizontal</key>\n    <string>boxD_oubleD_ownA_ndH_orizontal.glif</string>\n    <key>boxDoubleDownAndHorizontal.stypo</key>\n    <string>boxD_oubleD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleDownAndLeft</key>\n    <string>boxD_oubleD_ownA_ndL_eft.glif</string>\n    <key>boxDoubleDownAndLeft.stypo</key>\n    <string>boxD_oubleD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleDownAndRight</key>\n    <string>boxD_oubleD_ownA_ndR_ight.glif</string>\n    <key>boxDoubleDownAndRight.stypo</key>\n    <string>boxD_oubleD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxDoubleHorizontal</key>\n    <string>boxD_oubleH_orizontal.glif</string>\n    <key>boxDoubleHorizontal.stypo</key>\n    <string>boxD_oubleH_orizontal.stypo.glif</string>\n    <key>boxDoubleUpAndHorizontal</key>\n    <string>boxD_oubleU_pA_ndH_orizontal.glif</string>\n    <key>boxDoubleUpAndHorizontal.stypo</key>\n    <string>boxD_oubleU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleUpAndLeft</key>\n    <string>boxD_oubleU_pA_ndL_eft.glif</string>\n    <key>boxDoubleUpAndLeft.stypo</key>\n    <string>boxD_oubleU_pA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleUpAndRight</key>\n    <string>boxD_oubleU_pA_ndR_ight.glif</string>\n    <key>boxDoubleUpAndRight.stypo</key>\n    <string>boxD_oubleU_pA_ndR_ight.stypo.glif</string>\n    <key>boxDoubleVertical</key>\n    <string>boxD_oubleV_ertical.glif</string>\n    <key>boxDoubleVertical.stypo</key>\n    <string>boxD_oubleV_ertical.stypo.glif</string>\n    <key>boxDoubleVerticalAndHorizontal</key>\n    <string>boxD_oubleV_erticalA_ndH_orizontal.glif</string>\n    <key>boxDoubleVerticalAndHorizontal.stypo</key>\n    <string>boxD_oubleV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleVerticalAndLeft</key>\n    <string>boxD_oubleV_erticalA_ndL_eft.glif</string>\n    <key>boxDoubleVerticalAndLeft.stypo</key>\n    <string>boxD_oubleV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleVerticalAndRight</key>\n    <string>boxD_oubleV_erticalA_ndR_ight.glif</string>\n    <key>boxDoubleVerticalAndRight.stypo</key>\n    <string>boxD_oubleV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxDownDoubleAndHorizontalSingle</key>\n    <string>boxD_ownD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxDownDoubleAndHorizontalSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxDownDoubleAndLeftSingle</key>\n    <string>boxD_ownD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxDownDoubleAndLeftSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxDownDoubleAndRightSingle</key>\n    <string>boxD_ownD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxDownDoubleAndRightSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxDownHeavyAndHorizontalLight</key>\n    <string>boxD_ownH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxDownHeavyAndHorizontalLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndLeftLight</key>\n    <string>boxD_ownH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxDownHeavyAndLeftLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndLeftUpLight</key>\n    <string>boxD_ownH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxDownHeavyAndLeftUpLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndRightLight</key>\n    <string>boxD_ownH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxDownHeavyAndRightLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndRightUpLight</key>\n    <string>boxD_ownH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxDownHeavyAndRightUpLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndUpHorizontalLight</key>\n    <string>boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif</string>\n    <key>boxDownHeavyAndUpHorizontalLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif</string>\n    <key>boxDownLightAndHorizontalHeavy</key>\n    <string>boxD_ownL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxDownLightAndHorizontalHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxDownLightAndLeftHeavy</key>\n    <string>boxD_ownL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxDownLightAndLeftHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxDownLightAndLeftUpHeavy</key>\n    <string>boxD_ownL_ightA_ndL_eftU_pH_eavy.glif</string>\n    <key>boxDownLightAndLeftUpHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif</string>\n    <key>boxDownLightAndRightHeavy</key>\n    <string>boxD_ownL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxDownLightAndRightHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxDownLightAndRightUpHeavy</key>\n    <string>boxD_ownL_ightA_ndR_ightU_pH_eavy.glif</string>\n    <key>boxDownLightAndRightUpHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif</string>\n    <key>boxDownLightAndUpHorizontalHeavy</key>\n    <string>boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif</string>\n    <key>boxDownLightAndUpHorizontalHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif</string>\n    <key>boxDownSingleAndHorizontalDouble</key>\n    <string>boxD_ownS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxDownSingleAndHorizontalDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxDownSingleAndLeftDouble</key>\n    <string>boxD_ownS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxDownSingleAndLeftDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxDownSingleAndRightDouble</key>\n    <string>boxD_ownS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxDownSingleAndRightDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>boxHeavyDoubleDashHorizontal</key>\n    <string>boxH_eavyD_oubleD_ashH_orizontal.glif</string>\n    <key>boxHeavyDoubleDashHorizontal.stypo</key>\n    <string>boxH_eavyD_oubleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyDoubleDashVertical</key>\n    <string>boxH_eavyD_oubleD_ashV_ertical.glif</string>\n    <key>boxHeavyDoubleDashVertical.stypo</key>\n    <string>boxH_eavyD_oubleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyDown</key>\n    <string>boxH_eavyD_own.glif</string>\n    <key>boxHeavyDown.stypo</key>\n    <string>boxH_eavyD_own.stypo.glif</string>\n    <key>boxHeavyDownAndHorizontal</key>\n    <string>boxH_eavyD_ownA_ndH_orizontal.glif</string>\n    <key>boxHeavyDownAndHorizontal.stypo</key>\n    <string>boxH_eavyD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyDownAndLeft</key>\n    <string>boxH_eavyD_ownA_ndL_eft.glif</string>\n    <key>boxHeavyDownAndLeft.stypo</key>\n    <string>boxH_eavyD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyDownAndRight</key>\n    <string>boxH_eavyD_ownA_ndR_ight.glif</string>\n    <key>boxHeavyDownAndRight.stypo</key>\n    <string>boxH_eavyD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxHeavyHorizontal</key>\n    <string>boxH_eavyH_orizontal.glif</string>\n    <key>boxHeavyHorizontal.stypo</key>\n    <string>boxH_eavyH_orizontal.stypo.glif</string>\n    <key>boxHeavyLeft</key>\n    <string>boxH_eavyL_eft.glif</string>\n    <key>boxHeavyLeft.stypo</key>\n    <string>boxH_eavyL_eft.stypo.glif</string>\n    <key>boxHeavyLeftAndLightRight</key>\n    <string>boxH_eavyL_eftA_ndL_ightR_ight.glif</string>\n    <key>boxHeavyLeftAndLightRight.stypo</key>\n    <string>boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif</string>\n    <key>boxHeavyQuadrupleDashHorizontal</key>\n    <string>boxH_eavyQ_uadrupleD_ashH_orizontal.glif</string>\n    <key>boxHeavyQuadrupleDashHorizontal.stypo</key>\n    <string>boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyQuadrupleDashVertical</key>\n    <string>boxH_eavyQ_uadrupleD_ashV_ertical.glif</string>\n    <key>boxHeavyQuadrupleDashVertical.stypo</key>\n    <string>boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyRight</key>\n    <string>boxH_eavyR_ight.glif</string>\n    <key>boxHeavyRight.stypo</key>\n    <string>boxH_eavyR_ight.stypo.glif</string>\n    <key>boxHeavyTripleDashHorizontal</key>\n    <string>boxH_eavyT_ripleD_ashH_orizontal.glif</string>\n    <key>boxHeavyTripleDashHorizontal.stypo</key>\n    <string>boxH_eavyT_ripleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyTripleDashVertical</key>\n    <string>boxH_eavyT_ripleD_ashV_ertical.glif</string>\n    <key>boxHeavyTripleDashVertical.stypo</key>\n    <string>boxH_eavyT_ripleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyUp</key>\n    <string>boxH_eavyU_p.glif</string>\n    <key>boxHeavyUp.stypo</key>\n    <string>boxH_eavyU_p.stypo.glif</string>\n    <key>boxHeavyUpAndHorizontal</key>\n    <string>boxH_eavyU_pA_ndH_orizontal.glif</string>\n    <key>boxHeavyUpAndHorizontal.stypo</key>\n    <string>boxH_eavyU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyUpAndLeft</key>\n    <string>boxH_eavyU_pA_ndL_eft.glif</string>\n    <key>boxHeavyUpAndLeft.stypo</key>\n    <string>boxH_eavyU_pA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyUpAndLightDown</key>\n    <string>boxH_eavyU_pA_ndL_ightD_own.glif</string>\n    <key>boxHeavyUpAndLightDown.stypo</key>\n    <string>boxH_eavyU_pA_ndL_ightD_own.stypo.glif</string>\n    <key>boxHeavyUpAndRight</key>\n    <string>boxH_eavyU_pA_ndR_ight.glif</string>\n    <key>boxHeavyUpAndRight.stypo</key>\n    <string>boxH_eavyU_pA_ndR_ight.stypo.glif</string>\n    <key>boxHeavyVertical</key>\n    <string>boxH_eavyV_ertical.glif</string>\n    <key>boxHeavyVertical.stypo</key>\n    <string>boxH_eavyV_ertical.stypo.glif</string>\n    <key>boxHeavyVerticalAndHorizontal</key>\n    <string>boxH_eavyV_erticalA_ndH_orizontal.glif</string>\n    <key>boxHeavyVerticalAndHorizontal.stypo</key>\n    <string>boxH_eavyV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyVerticalAndLeft</key>\n    <string>boxH_eavyV_erticalA_ndL_eft.glif</string>\n    <key>boxHeavyVerticalAndLeft.stypo</key>\n    <string>boxH_eavyV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyVerticalAndRight</key>\n    <string>boxH_eavyV_erticalA_ndR_ight.glif</string>\n    <key>boxHeavyVerticalAndRight.stypo</key>\n    <string>boxH_eavyV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxLeftDownHeavyAndRightUpLight</key>\n    <string>boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxLeftDownHeavyAndRightUpLight.stypo</key>\n    <string>boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightDownLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxLeftHeavyAndRightDownLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightUpLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxLeftHeavyAndRightUpLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightVerticalLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif</string>\n    <key>boxLeftHeavyAndRightVerticalLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif</string>\n    <key>boxLeftLightAndRightDownHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif</string>\n    <key>boxLeftLightAndRightDownHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif</string>\n    <key>boxLeftLightAndRightUpHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightU_pH_eavy.glif</string>\n    <key>boxLeftLightAndRightUpHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif</string>\n    <key>boxLeftLightAndRightVerticalHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif</string>\n    <key>boxLeftLightAndRightVerticalHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif</string>\n    <key>boxLeftUpHeavyAndRightDownLight</key>\n    <string>boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxLeftUpHeavyAndRightDownLight.stypo</key>\n    <string>boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxLightArcDownAndLeft</key>\n    <string>boxL_ightA_rcD_ownA_ndL_eft.glif</string>\n    <key>boxLightArcDownAndLeft.stypo</key>\n    <string>boxL_ightA_rcD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxLightArcDownAndRight</key>\n    <string>boxL_ightA_rcD_ownA_ndR_ight.glif</string>\n    <key>boxLightArcDownAndRight.stypo</key>\n    <string>boxL_ightA_rcD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxLightArcUpAndLeft</key>\n    <string>boxL_ightA_rcU_pA_ndL_eft.glif</string>\n    <key>boxLightArcUpAndLeft.stypo</key>\n    <string>boxL_ightA_rcU_pA_ndL_eft.stypo.glif</string>\n    <key>boxLightArcUpAndRight</key>\n    <string>boxL_ightA_rcU_pA_ndR_ight.glif</string>\n    <key>boxLightArcUpAndRight.stypo</key>\n    <string>boxL_ightA_rcU_pA_ndR_ight.stypo.glif</string>\n    <key>boxLightDiagonalCross</key>\n    <string>boxL_ightD_iagonalC_ross.glif</string>\n    <key>boxLightDiagonalCross.stypo</key>\n    <string>boxL_ightD_iagonalC_ross.stypo.glif</string>\n    <key>boxLightDiagonalUpperLeftToLowerRight</key>\n    <string>boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif</string>\n    <key>boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n    <string>boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif</string>\n    <key>boxLightDiagonalUpperRightToLowerLeft</key>\n    <string>boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif</string>\n    <key>boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n    <string>boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif</string>\n    <key>boxLightDoubleDashHorizontal</key>\n    <string>boxL_ightD_oubleD_ashH_orizontal.glif</string>\n    <key>boxLightDoubleDashHorizontal.stypo</key>\n    <string>boxL_ightD_oubleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightDoubleDashVertical</key>\n    <string>boxL_ightD_oubleD_ashV_ertical.glif</string>\n    <key>boxLightDoubleDashVertical.stypo</key>\n    <string>boxL_ightD_oubleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightDown</key>\n    <string>boxL_ightD_own.glif</string>\n    <key>boxLightDown.stypo</key>\n    <string>boxL_ightD_own.stypo.glif</string>\n    <key>boxLightDownAndHorizontal</key>\n    <string>boxL_ightD_ownA_ndH_orizontal.glif</string>\n    <key>boxLightDownAndHorizontal.stypo</key>\n    <string>boxL_ightD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightDownAndLeft</key>\n    <string>boxL_ightD_ownA_ndL_eft.glif</string>\n    <key>boxLightDownAndLeft.stypo</key>\n    <string>boxL_ightD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxLightDownAndRight</key>\n    <string>boxL_ightD_ownA_ndR_ight.glif</string>\n    <key>boxLightDownAndRight.stypo</key>\n    <string>boxL_ightD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxLightHorizontal</key>\n    <string>boxL_ightH_orizontal.glif</string>\n    <key>boxLightHorizontal.stypo</key>\n    <string>boxL_ightH_orizontal.stypo.glif</string>\n    <key>boxLightLeft</key>\n    <string>boxL_ightL_eft.glif</string>\n    <key>boxLightLeft.stypo</key>\n    <string>boxL_ightL_eft.stypo.glif</string>\n    <key>boxLightLeftAndHeavyRight</key>\n    <string>boxL_ightL_eftA_ndH_eavyR_ight.glif</string>\n    <key>boxLightLeftAndHeavyRight.stypo</key>\n    <string>boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif</string>\n    <key>boxLightQuadrupleDashHorizontal</key>\n    <string>boxL_ightQ_uadrupleD_ashH_orizontal.glif</string>\n    <key>boxLightQuadrupleDashHorizontal.stypo</key>\n    <string>boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightQuadrupleDashVertical</key>\n    <string>boxL_ightQ_uadrupleD_ashV_ertical.glif</string>\n    <key>boxLightQuadrupleDashVertical.stypo</key>\n    <string>boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightRight</key>\n    <string>boxL_ightR_ight.glif</string>\n    <key>boxLightRight.stypo</key>\n    <string>boxL_ightR_ight.stypo.glif</string>\n    <key>boxLightTripleDashHorizontal</key>\n    <string>boxL_ightT_ripleD_ashH_orizontal.glif</string>\n    <key>boxLightTripleDashHorizontal.stypo</key>\n    <string>boxL_ightT_ripleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightTripleDashVertical</key>\n    <string>boxL_ightT_ripleD_ashV_ertical.glif</string>\n    <key>boxLightTripleDashVertical.stypo</key>\n    <string>boxL_ightT_ripleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightUp</key>\n    <string>boxL_ightU_p.glif</string>\n    <key>boxLightUp.stypo</key>\n    <string>boxL_ightU_p.stypo.glif</string>\n    <key>boxLightUpAndHeavyDown</key>\n    <string>boxL_ightU_pA_ndH_eavyD_own.glif</string>\n    <key>boxLightUpAndHeavyDown.stypo</key>\n    <string>boxL_ightU_pA_ndH_eavyD_own.stypo.glif</string>\n    <key>boxLightUpAndHorizontal</key>\n    <string>boxL_ightU_pA_ndH_orizontal.glif</string>\n    <key>boxLightUpAndHorizontal.stypo</key>\n    <string>boxL_ightU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightUpAndLeft</key>\n    <string>boxL_ightU_pA_ndL_eft.glif</string>\n    <key>boxLightUpAndLeft.stypo</key>\n    <string>boxL_ightU_pA_ndL_eft.stypo.glif</string>\n    <key>boxLightUpAndRight</key>\n    <string>boxL_ightU_pA_ndR_ight.glif</string>\n    <key>boxLightUpAndRight.stypo</key>\n    <string>boxL_ightU_pA_ndR_ight.stypo.glif</string>\n    <key>boxLightVertical</key>\n    <string>boxL_ightV_ertical.glif</string>\n    <key>boxLightVertical.stypo</key>\n    <string>boxL_ightV_ertical.stypo.glif</string>\n    <key>boxLightVerticalAndHorizontal</key>\n    <string>boxL_ightV_erticalA_ndH_orizontal.glif</string>\n    <key>boxLightVerticalAndHorizontal.stypo</key>\n    <string>boxL_ightV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightVerticalAndLeft</key>\n    <string>boxL_ightV_erticalA_ndL_eft.glif</string>\n    <key>boxLightVerticalAndLeft.stypo</key>\n    <string>boxL_ightV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxLightVerticalAndRight</key>\n    <string>boxL_ightV_erticalA_ndR_ight.glif</string>\n    <key>boxLightVerticalAndRight.stypo</key>\n    <string>boxL_ightV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxRightDownHeavyAndLeftUpLight</key>\n    <string>boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxRightDownHeavyAndLeftUpLight.stypo</key>\n    <string>boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftDownLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxRightHeavyAndLeftDownLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftUpLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxRightHeavyAndLeftUpLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftVerticalLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif</string>\n    <key>boxRightHeavyAndLeftVerticalLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif</string>\n    <key>boxRightLightAndLeftDownHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif</string>\n    <key>boxRightLightAndLeftDownHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif</string>\n    <key>boxRightLightAndLeftUpHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftU_pH_eavy.glif</string>\n    <key>boxRightLightAndLeftUpHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif</string>\n    <key>boxRightLightAndLeftVerticalHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif</string>\n    <key>boxRightLightAndLeftVerticalHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif</string>\n    <key>boxRightUpHeavyAndLeftDownLight</key>\n    <string>boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxRightUpHeavyAndLeftDownLight.stypo</key>\n    <string>boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxUpDoubleAndHorizontalSingle</key>\n    <string>boxU_pD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxUpDoubleAndHorizontalSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxUpDoubleAndLeftSingle</key>\n    <string>boxU_pD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxUpDoubleAndLeftSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxUpDoubleAndRightSingle</key>\n    <string>boxU_pD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxUpDoubleAndRightSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxUpHeavyAndDownHorizontalLight</key>\n    <string>boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif</string>\n    <key>boxUpHeavyAndDownHorizontalLight.stypo</key>\n    <string>boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndHorizontalLight</key>\n    <string>boxU_pH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxUpHeavyAndHorizontalLight.stypo</key>\n    <string>boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndLeftDownLight</key>\n    <string>boxU_pH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxUpHeavyAndLeftDownLight.stypo</key>\n    <string>boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndLeftLight</key>\n    <string>boxU_pH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxUpHeavyAndLeftLight.stypo</key>\n    <string>boxU_pH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndRightDownLight</key>\n    <string>boxU_pH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxUpHeavyAndRightDownLight.stypo</key>\n    <string>boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndRightLight</key>\n    <string>boxU_pH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxUpHeavyAndRightLight.stypo</key>\n    <string>boxU_pH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxUpLightAndDownHorizontalHeavy</key>\n    <string>boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif</string>\n    <key>boxUpLightAndDownHorizontalHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif</string>\n    <key>boxUpLightAndHorizontalHeavy</key>\n    <string>boxU_pL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxUpLightAndHorizontalHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxUpLightAndLeftDownHeavy</key>\n    <string>boxU_pL_ightA_ndL_eftD_ownH_eavy.glif</string>\n    <key>boxUpLightAndLeftDownHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif</string>\n    <key>boxUpLightAndLeftHeavy</key>\n    <string>boxU_pL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxUpLightAndLeftHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxUpLightAndRightDownHeavy</key>\n    <string>boxU_pL_ightA_ndR_ightD_ownH_eavy.glif</string>\n    <key>boxUpLightAndRightDownHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif</string>\n    <key>boxUpLightAndRightHeavy</key>\n    <string>boxU_pL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxUpLightAndRightHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxUpSingleAndHorizontalDouble</key>\n    <string>boxU_pS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxUpSingleAndHorizontalDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxUpSingleAndLeftDouble</key>\n    <string>boxU_pS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxUpSingleAndLeftDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxUpSingleAndRightDouble</key>\n    <string>boxU_pS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxUpSingleAndRightDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>boxVerticalDoubleAndHorizontalSingle</key>\n    <string>boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxVerticalDoubleAndHorizontalSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxVerticalDoubleAndLeftSingle</key>\n    <string>boxV_erticalD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxVerticalDoubleAndLeftSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxVerticalDoubleAndRightSingle</key>\n    <string>boxV_erticalD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxVerticalDoubleAndRightSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxVerticalHeavyAndHorizontalLight</key>\n    <string>boxV_erticalH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxVerticalHeavyAndHorizontalLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxVerticalHeavyAndLeftLight</key>\n    <string>boxV_erticalH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxVerticalHeavyAndLeftLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxVerticalHeavyAndRightLight</key>\n    <string>boxV_erticalH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxVerticalHeavyAndRightLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxVerticalLightAndHorizontalHeavy</key>\n    <string>boxV_erticalL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxVerticalLightAndHorizontalHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxVerticalLightAndLeftHeavy</key>\n    <string>boxV_erticalL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxVerticalLightAndLeftHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxVerticalLightAndRightHeavy</key>\n    <string>boxV_erticalL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxVerticalLightAndRightHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxVerticalSingleAndHorizontalDouble</key>\n    <string>boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxVerticalSingleAndHorizontalDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxVerticalSingleAndLeftDouble</key>\n    <string>boxV_erticalS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxVerticalSingleAndLeftDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxVerticalSingleAndRightDouble</key>\n    <string>boxV_erticalS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxVerticalSingleAndRightDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>braceleft</key>\n    <string>braceleft.glif</string>\n    <key>braceleft_bar.liga</key>\n    <string>braceleft_bar.liga.glif</string>\n    <key>braceright</key>\n    <string>braceright.glif</string>\n    <key>braceright_numbersign.liga</key>\n    <string>braceright_numbersign.liga.glif</string>\n    <key>bracketleft</key>\n    <string>bracketleft.glif</string>\n    <key>bracketleft_bar.liga</key>\n    <string>bracketleft_bar.liga.glif</string>\n    <key>bracketright</key>\n    <string>bracketright.glif</string>\n    <key>bracketright_numbersign.liga</key>\n    <string>bracketright_numbersign.liga.glif</string>\n    <key>breve</key>\n    <string>breve.glif</string>\n    <key>brevecomb</key>\n    <string>brevecomb.glif</string>\n    <key>brevecomb-cy</key>\n    <string>brevecomb-cy.glif</string>\n    <key>brevecomb-cy.case</key>\n    <string>brevecomb-cy.case.glif</string>\n    <key>brevecomb.case</key>\n    <string>brevecomb.case.glif</string>\n    <key>brokenbar</key>\n    <string>brokenbar.glif</string>\n    <key>bullet</key>\n    <string>bullet.glif</string>\n    <key>bulletoperator</key>\n    <string>bulletoperator.glif</string>\n    <key>bullseye</key>\n    <string>bullseye.glif</string>\n    <key>c</key>\n    <string>c.glif</string>\n    <key>cacute</key>\n    <string>cacute.glif</string>\n    <key>cacute.loclPLK</key>\n    <string>cacute.loclP_L_K_.glif</string>\n    <key>cancelControl</key>\n    <string>cancelC_ontrol.glif</string>\n    <key>cancelControl.ss20</key>\n    <string>cancelC_ontrol.ss20.glif</string>\n    <key>careof</key>\n    <string>careof.glif</string>\n    <key>caron</key>\n    <string>caron.glif</string>\n    <key>caroncomb</key>\n    <string>caroncomb.glif</string>\n    <key>caroncomb.case</key>\n    <string>caroncomb.case.glif</string>\n    <key>carriageReturnControl</key>\n    <string>carriageR_eturnC_ontrol.glif</string>\n    <key>carriageReturnControl.ss20</key>\n    <string>carriageR_eturnC_ontrol.ss20.glif</string>\n    <key>ccaron</key>\n    <string>ccaron.glif</string>\n    <key>ccedilla</key>\n    <string>ccedilla.glif</string>\n    <key>ccircumflex</key>\n    <string>ccircumflex.glif</string>\n    <key>cdotaccent</key>\n    <string>cdotaccent.glif</string>\n    <key>cedi</key>\n    <string>cedi.glif</string>\n    <key>cedilla</key>\n    <string>cedilla.glif</string>\n    <key>cedillacomb</key>\n    <string>cedillacomb.glif</string>\n    <key>cent</key>\n    <string>cent.glif</string>\n    <key>che-cy</key>\n    <string>che-cy.glif</string>\n    <key>che-cy.salt</key>\n    <string>che-cy.salt.glif</string>\n    <key>checkmark</key>\n    <string>checkmark.glif</string>\n    <key>chedescender-cy</key>\n    <string>chedescender-cy.glif</string>\n    <key>chedescender-cy.salt</key>\n    <string>chedescender-cy.salt.glif</string>\n    <key>chi</key>\n    <string>chi.glif</string>\n    <key>circumflex</key>\n    <string>circumflex.glif</string>\n    <key>circumflexcomb</key>\n    <string>circumflexcomb.glif</string>\n    <key>circumflexcomb.case</key>\n    <string>circumflexcomb.case.glif</string>\n    <key>clubBlackSuit</key>\n    <string>clubB_lackS_uit.glif</string>\n    <key>colon</key>\n    <string>colon.glif</string>\n    <key>colon.center</key>\n    <string>colon.center.glif</string>\n    <key>colon_colon.liga</key>\n    <string>colon_colon.liga.glif</string>\n    <key>colon_colon_colon.liga</key>\n    <string>colon_colon_colon.liga.glif</string>\n    <key>colon_colon_equal.liga</key>\n    <string>colon_colon_equal.liga.glif</string>\n    <key>colon_equal.liga</key>\n    <string>colon_equal.liga.glif</string>\n    <key>colon_equal_middle.seq</key>\n    <string>colon_equal_middle.seq.glif</string>\n    <key>colon_slash_slash.liga</key>\n    <string>colon_slash_slash.liga.glif</string>\n    <key>colonsign</key>\n    <string>colonsign.glif</string>\n    <key>colontriangularmod</key>\n    <string>colontriangularmod.glif</string>\n    <key>comma</key>\n    <string>comma.glif</string>\n    <key>commaabovecomb</key>\n    <string>commaabovecomb.glif</string>\n    <key>commaaboverightcomb</key>\n    <string>commaaboverightcomb.glif</string>\n    <key>commaaccentcomb</key>\n    <string>commaaccentcomb.glif</string>\n    <key>commaturnedabovecomb</key>\n    <string>commaturnedabovecomb.glif</string>\n    <key>commaturnedmod</key>\n    <string>commaturnedmod.glif</string>\n    <key>copyright</key>\n    <string>copyright.glif</string>\n    <key>crosshatchFillSquare</key>\n    <string>crosshatchF_illS_quare.glif</string>\n    <key>currency</key>\n    <string>currency.glif</string>\n    <key>d</key>\n    <string>d.glif</string>\n    <key>dagger</key>\n    <string>dagger.glif</string>\n    <key>daggerdbl</key>\n    <string>daggerdbl.glif</string>\n    <key>dashdownArrow</key>\n    <string>dashdownA_rrow.glif</string>\n    <key>dataLinkEscapeControl</key>\n    <string>dataL_inkE_scapeC_ontrol.glif</string>\n    <key>dataLinkEscapeControl.ss20</key>\n    <string>dataL_inkE_scapeC_ontrol.ss20.glif</string>\n    <key>dcaron</key>\n    <string>dcaron.glif</string>\n    <key>dcaron.alt</key>\n    <string>dcaron.alt.glif</string>\n    <key>dcroat</key>\n    <string>dcroat.glif</string>\n    <key>de-cy</key>\n    <string>de-cy.glif</string>\n    <key>de-cy.loclBGR</key>\n    <string>de-cy.loclB_G_R_.glif</string>\n    <key>degree</key>\n    <string>degree.glif</string>\n    <key>deleteControl</key>\n    <string>deleteC_ontrol.glif</string>\n    <key>deleteFormTwoControl</key>\n    <string>deleteF_ormT_woC_ontrol.glif</string>\n    <key>delta</key>\n    <string>delta.glif</string>\n    <key>deviceControlFourControl</key>\n    <string>deviceC_ontrolF_ourC_ontrol.glif</string>\n    <key>deviceControlOneControl</key>\n    <string>deviceC_ontrolO_neC_ontrol.glif</string>\n    <key>deviceControlThreeControl</key>\n    <string>deviceC_ontrolT_hreeC_ontrol.glif</string>\n    <key>deviceControlTwoControl</key>\n    <string>deviceC_ontrolT_woC_ontrol.glif</string>\n    <key>diagonalcrosshatchFillSquare</key>\n    <string>diagonalcrosshatchF_illS_quare.glif</string>\n    <key>diamondBlackSuit</key>\n    <string>diamondB_lackS_uit.glif</string>\n    <key>dieresis</key>\n    <string>dieresis.glif</string>\n    <key>dieresiscomb</key>\n    <string>dieresiscomb.glif</string>\n    <key>dieresiscomb.case</key>\n    <string>dieresiscomb.case.glif</string>\n    <key>dieresistonos</key>\n    <string>dieresistonos.glif</string>\n    <key>divide</key>\n    <string>divide.glif</string>\n    <key>divisionslash</key>\n    <string>divisionslash.glif</string>\n    <key>dje-cy</key>\n    <string>dje-cy.glif</string>\n    <key>dollar</key>\n    <string>dollar.glif</string>\n    <key>dollar.BRACKET.600</key>\n    <string>dollar.B_R_A_C_K_E_T_.600.glif</string>\n    <key>dollar_greater.liga</key>\n    <string>dollar_greater.liga.glif</string>\n    <key>dollar_greater.liga.BRACKET.600</key>\n    <string>dollar_greater.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>dong</key>\n    <string>dong.glif</string>\n    <key>dotaccent</key>\n    <string>dotaccent.glif</string>\n    <key>dotaccentcomb</key>\n    <string>dotaccentcomb.glif</string>\n    <key>dotaccentcomb.case</key>\n    <string>dotaccentcomb.case.glif</string>\n    <key>dotbelowcomb</key>\n    <string>dotbelowcomb.glif</string>\n    <key>dots1-braille</key>\n    <string>dots1-braille.glif</string>\n    <key>dots12-braille</key>\n    <string>dots12-braille.glif</string>\n    <key>dots123-braille</key>\n    <string>dots123-braille.glif</string>\n    <key>dots1234-braille</key>\n    <string>dots1234-braille.glif</string>\n    <key>dots12345-braille</key>\n    <string>dots12345-braille.glif</string>\n    <key>dots123456-braille</key>\n    <string>dots123456-braille.glif</string>\n    <key>dots1234567-braille</key>\n    <string>dots1234567-braille.glif</string>\n    <key>dots12345678-braille</key>\n    <string>dots12345678-braille.glif</string>\n    <key>dots1234568-braille</key>\n    <string>dots1234568-braille.glif</string>\n    <key>dots123457-braille</key>\n    <string>dots123457-braille.glif</string>\n    <key>dots1234578-braille</key>\n    <string>dots1234578-braille.glif</string>\n    <key>dots123458-braille</key>\n    <string>dots123458-braille.glif</string>\n    <key>dots12346-braille</key>\n    <string>dots12346-braille.glif</string>\n    <key>dots123467-braille</key>\n    <string>dots123467-braille.glif</string>\n    <key>dots1234678-braille</key>\n    <string>dots1234678-braille.glif</string>\n    <key>dots123468-braille</key>\n    <string>dots123468-braille.glif</string>\n    <key>dots12347-braille</key>\n    <string>dots12347-braille.glif</string>\n    <key>dots123478-braille</key>\n    <string>dots123478-braille.glif</string>\n    <key>dots12348-braille</key>\n    <string>dots12348-braille.glif</string>\n    <key>dots1235-braille</key>\n    <string>dots1235-braille.glif</string>\n    <key>dots12356-braille</key>\n    <string>dots12356-braille.glif</string>\n    <key>dots123567-braille</key>\n    <string>dots123567-braille.glif</string>\n    <key>dots1235678-braille</key>\n    <string>dots1235678-braille.glif</string>\n    <key>dots123568-braille</key>\n    <string>dots123568-braille.glif</string>\n    <key>dots12357-braille</key>\n    <string>dots12357-braille.glif</string>\n    <key>dots123578-braille</key>\n    <string>dots123578-braille.glif</string>\n    <key>dots12358-braille</key>\n    <string>dots12358-braille.glif</string>\n    <key>dots1236-braille</key>\n    <string>dots1236-braille.glif</string>\n    <key>dots12367-braille</key>\n    <string>dots12367-braille.glif</string>\n    <key>dots123678-braille</key>\n    <string>dots123678-braille.glif</string>\n    <key>dots12368-braille</key>\n    <string>dots12368-braille.glif</string>\n    <key>dots1237-braille</key>\n    <string>dots1237-braille.glif</string>\n    <key>dots12378-braille</key>\n    <string>dots12378-braille.glif</string>\n    <key>dots1238-braille</key>\n    <string>dots1238-braille.glif</string>\n    <key>dots124-braille</key>\n    <string>dots124-braille.glif</string>\n    <key>dots1245-braille</key>\n    <string>dots1245-braille.glif</string>\n    <key>dots12456-braille</key>\n    <string>dots12456-braille.glif</string>\n    <key>dots124567-braille</key>\n    <string>dots124567-braille.glif</string>\n    <key>dots1245678-braille</key>\n    <string>dots1245678-braille.glif</string>\n    <key>dots124568-braille</key>\n    <string>dots124568-braille.glif</string>\n    <key>dots12457-braille</key>\n    <string>dots12457-braille.glif</string>\n    <key>dots124578-braille</key>\n    <string>dots124578-braille.glif</string>\n    <key>dots12458-braille</key>\n    <string>dots12458-braille.glif</string>\n    <key>dots1246-braille</key>\n    <string>dots1246-braille.glif</string>\n    <key>dots12467-braille</key>\n    <string>dots12467-braille.glif</string>\n    <key>dots124678-braille</key>\n    <string>dots124678-braille.glif</string>\n    <key>dots12468-braille</key>\n    <string>dots12468-braille.glif</string>\n    <key>dots1247-braille</key>\n    <string>dots1247-braille.glif</string>\n    <key>dots12478-braille</key>\n    <string>dots12478-braille.glif</string>\n    <key>dots1248-braille</key>\n    <string>dots1248-braille.glif</string>\n    <key>dots125-braille</key>\n    <string>dots125-braille.glif</string>\n    <key>dots1256-braille</key>\n    <string>dots1256-braille.glif</string>\n    <key>dots12567-braille</key>\n    <string>dots12567-braille.glif</string>\n    <key>dots125678-braille</key>\n    <string>dots125678-braille.glif</string>\n    <key>dots12568-braille</key>\n    <string>dots12568-braille.glif</string>\n    <key>dots1257-braille</key>\n    <string>dots1257-braille.glif</string>\n    <key>dots12578-braille</key>\n    <string>dots12578-braille.glif</string>\n    <key>dots1258-braille</key>\n    <string>dots1258-braille.glif</string>\n    <key>dots126-braille</key>\n    <string>dots126-braille.glif</string>\n    <key>dots1267-braille</key>\n    <string>dots1267-braille.glif</string>\n    <key>dots12678-braille</key>\n    <string>dots12678-braille.glif</string>\n    <key>dots1268-braille</key>\n    <string>dots1268-braille.glif</string>\n    <key>dots127-braille</key>\n    <string>dots127-braille.glif</string>\n    <key>dots1278-braille</key>\n    <string>dots1278-braille.glif</string>\n    <key>dots128-braille</key>\n    <string>dots128-braille.glif</string>\n    <key>dots13-braille</key>\n    <string>dots13-braille.glif</string>\n    <key>dots134-braille</key>\n    <string>dots134-braille.glif</string>\n    <key>dots1345-braille</key>\n    <string>dots1345-braille.glif</string>\n    <key>dots13456-braille</key>\n    <string>dots13456-braille.glif</string>\n    <key>dots134567-braille</key>\n    <string>dots134567-braille.glif</string>\n    <key>dots1345678-braille</key>\n    <string>dots1345678-braille.glif</string>\n    <key>dots134568-braille</key>\n    <string>dots134568-braille.glif</string>\n    <key>dots13457-braille</key>\n    <string>dots13457-braille.glif</string>\n    <key>dots134578-braille</key>\n    <string>dots134578-braille.glif</string>\n    <key>dots13458-braille</key>\n    <string>dots13458-braille.glif</string>\n    <key>dots1346-braille</key>\n    <string>dots1346-braille.glif</string>\n    <key>dots13467-braille</key>\n    <string>dots13467-braille.glif</string>\n    <key>dots134678-braille</key>\n    <string>dots134678-braille.glif</string>\n    <key>dots13468-braille</key>\n    <string>dots13468-braille.glif</string>\n    <key>dots1347-braille</key>\n    <string>dots1347-braille.glif</string>\n    <key>dots13478-braille</key>\n    <string>dots13478-braille.glif</string>\n    <key>dots1348-braille</key>\n    <string>dots1348-braille.glif</string>\n    <key>dots135-braille</key>\n    <string>dots135-braille.glif</string>\n    <key>dots1356-braille</key>\n    <string>dots1356-braille.glif</string>\n    <key>dots13567-braille</key>\n    <string>dots13567-braille.glif</string>\n    <key>dots135678-braille</key>\n    <string>dots135678-braille.glif</string>\n    <key>dots13568-braille</key>\n    <string>dots13568-braille.glif</string>\n    <key>dots1357-braille</key>\n    <string>dots1357-braille.glif</string>\n    <key>dots13578-braille</key>\n    <string>dots13578-braille.glif</string>\n    <key>dots1358-braille</key>\n    <string>dots1358-braille.glif</string>\n    <key>dots136-braille</key>\n    <string>dots136-braille.glif</string>\n    <key>dots1367-braille</key>\n    <string>dots1367-braille.glif</string>\n    <key>dots13678-braille</key>\n    <string>dots13678-braille.glif</string>\n    <key>dots1368-braille</key>\n    <string>dots1368-braille.glif</string>\n    <key>dots137-braille</key>\n    <string>dots137-braille.glif</string>\n    <key>dots1378-braille</key>\n    <string>dots1378-braille.glif</string>\n    <key>dots138-braille</key>\n    <string>dots138-braille.glif</string>\n    <key>dots14-braille</key>\n    <string>dots14-braille.glif</string>\n    <key>dots145-braille</key>\n    <string>dots145-braille.glif</string>\n    <key>dots1456-braille</key>\n    <string>dots1456-braille.glif</string>\n    <key>dots14567-braille</key>\n    <string>dots14567-braille.glif</string>\n    <key>dots145678-braille</key>\n    <string>dots145678-braille.glif</string>\n    <key>dots14568-braille</key>\n    <string>dots14568-braille.glif</string>\n    <key>dots1457-braille</key>\n    <string>dots1457-braille.glif</string>\n    <key>dots14578-braille</key>\n    <string>dots14578-braille.glif</string>\n    <key>dots1458-braille</key>\n    <string>dots1458-braille.glif</string>\n    <key>dots146-braille</key>\n    <string>dots146-braille.glif</string>\n    <key>dots1467-braille</key>\n    <string>dots1467-braille.glif</string>\n    <key>dots14678-braille</key>\n    <string>dots14678-braille.glif</string>\n    <key>dots1468-braille</key>\n    <string>dots1468-braille.glif</string>\n    <key>dots147-braille</key>\n    <string>dots147-braille.glif</string>\n    <key>dots1478-braille</key>\n    <string>dots1478-braille.glif</string>\n    <key>dots148-braille</key>\n    <string>dots148-braille.glif</string>\n    <key>dots15-braille</key>\n    <string>dots15-braille.glif</string>\n    <key>dots156-braille</key>\n    <string>dots156-braille.glif</string>\n    <key>dots1567-braille</key>\n    <string>dots1567-braille.glif</string>\n    <key>dots15678-braille</key>\n    <string>dots15678-braille.glif</string>\n    <key>dots1568-braille</key>\n    <string>dots1568-braille.glif</string>\n    <key>dots157-braille</key>\n    <string>dots157-braille.glif</string>\n    <key>dots1578-braille</key>\n    <string>dots1578-braille.glif</string>\n    <key>dots158-braille</key>\n    <string>dots158-braille.glif</string>\n    <key>dots16-braille</key>\n    <string>dots16-braille.glif</string>\n    <key>dots167-braille</key>\n    <string>dots167-braille.glif</string>\n    <key>dots1678-braille</key>\n    <string>dots1678-braille.glif</string>\n    <key>dots168-braille</key>\n    <string>dots168-braille.glif</string>\n    <key>dots17-braille</key>\n    <string>dots17-braille.glif</string>\n    <key>dots178-braille</key>\n    <string>dots178-braille.glif</string>\n    <key>dots18-braille</key>\n    <string>dots18-braille.glif</string>\n    <key>dots2-braille</key>\n    <string>dots2-braille.glif</string>\n    <key>dots23-braille</key>\n    <string>dots23-braille.glif</string>\n    <key>dots234-braille</key>\n    <string>dots234-braille.glif</string>\n    <key>dots2345-braille</key>\n    <string>dots2345-braille.glif</string>\n    <key>dots23456-braille</key>\n    <string>dots23456-braille.glif</string>\n    <key>dots234567-braille</key>\n    <string>dots234567-braille.glif</string>\n    <key>dots2345678-braille</key>\n    <string>dots2345678-braille.glif</string>\n    <key>dots234568-braille</key>\n    <string>dots234568-braille.glif</string>\n    <key>dots23457-braille</key>\n    <string>dots23457-braille.glif</string>\n    <key>dots234578-braille</key>\n    <string>dots234578-braille.glif</string>\n    <key>dots23458-braille</key>\n    <string>dots23458-braille.glif</string>\n    <key>dots2346-braille</key>\n    <string>dots2346-braille.glif</string>\n    <key>dots23467-braille</key>\n    <string>dots23467-braille.glif</string>\n    <key>dots234678-braille</key>\n    <string>dots234678-braille.glif</string>\n    <key>dots23468-braille</key>\n    <string>dots23468-braille.glif</string>\n    <key>dots2347-braille</key>\n    <string>dots2347-braille.glif</string>\n    <key>dots23478-braille</key>\n    <string>dots23478-braille.glif</string>\n    <key>dots2348-braille</key>\n    <string>dots2348-braille.glif</string>\n    <key>dots235-braille</key>\n    <string>dots235-braille.glif</string>\n    <key>dots2356-braille</key>\n    <string>dots2356-braille.glif</string>\n    <key>dots23567-braille</key>\n    <string>dots23567-braille.glif</string>\n    <key>dots235678-braille</key>\n    <string>dots235678-braille.glif</string>\n    <key>dots23568-braille</key>\n    <string>dots23568-braille.glif</string>\n    <key>dots2357-braille</key>\n    <string>dots2357-braille.glif</string>\n    <key>dots23578-braille</key>\n    <string>dots23578-braille.glif</string>\n    <key>dots2358-braille</key>\n    <string>dots2358-braille.glif</string>\n    <key>dots236-braille</key>\n    <string>dots236-braille.glif</string>\n    <key>dots2367-braille</key>\n    <string>dots2367-braille.glif</string>\n    <key>dots23678-braille</key>\n    <string>dots23678-braille.glif</string>\n    <key>dots2368-braille</key>\n    <string>dots2368-braille.glif</string>\n    <key>dots237-braille</key>\n    <string>dots237-braille.glif</string>\n    <key>dots2378-braille</key>\n    <string>dots2378-braille.glif</string>\n    <key>dots238-braille</key>\n    <string>dots238-braille.glif</string>\n    <key>dots24-braille</key>\n    <string>dots24-braille.glif</string>\n    <key>dots245-braille</key>\n    <string>dots245-braille.glif</string>\n    <key>dots2456-braille</key>\n    <string>dots2456-braille.glif</string>\n    <key>dots24567-braille</key>\n    <string>dots24567-braille.glif</string>\n    <key>dots245678-braille</key>\n    <string>dots245678-braille.glif</string>\n    <key>dots24568-braille</key>\n    <string>dots24568-braille.glif</string>\n    <key>dots2457-braille</key>\n    <string>dots2457-braille.glif</string>\n    <key>dots24578-braille</key>\n    <string>dots24578-braille.glif</string>\n    <key>dots2458-braille</key>\n    <string>dots2458-braille.glif</string>\n    <key>dots246-braille</key>\n    <string>dots246-braille.glif</string>\n    <key>dots2467-braille</key>\n    <string>dots2467-braille.glif</string>\n    <key>dots24678-braille</key>\n    <string>dots24678-braille.glif</string>\n    <key>dots2468-braille</key>\n    <string>dots2468-braille.glif</string>\n    <key>dots247-braille</key>\n    <string>dots247-braille.glif</string>\n    <key>dots2478-braille</key>\n    <string>dots2478-braille.glif</string>\n    <key>dots248-braille</key>\n    <string>dots248-braille.glif</string>\n    <key>dots25-braille</key>\n    <string>dots25-braille.glif</string>\n    <key>dots256-braille</key>\n    <string>dots256-braille.glif</string>\n    <key>dots2567-braille</key>\n    <string>dots2567-braille.glif</string>\n    <key>dots25678-braille</key>\n    <string>dots25678-braille.glif</string>\n    <key>dots2568-braille</key>\n    <string>dots2568-braille.glif</string>\n    <key>dots257-braille</key>\n    <string>dots257-braille.glif</string>\n    <key>dots2578-braille</key>\n    <string>dots2578-braille.glif</string>\n    <key>dots258-braille</key>\n    <string>dots258-braille.glif</string>\n    <key>dots26-braille</key>\n    <string>dots26-braille.glif</string>\n    <key>dots267-braille</key>\n    <string>dots267-braille.glif</string>\n    <key>dots2678-braille</key>\n    <string>dots2678-braille.glif</string>\n    <key>dots268-braille</key>\n    <string>dots268-braille.glif</string>\n    <key>dots27-braille</key>\n    <string>dots27-braille.glif</string>\n    <key>dots278-braille</key>\n    <string>dots278-braille.glif</string>\n    <key>dots28-braille</key>\n    <string>dots28-braille.glif</string>\n    <key>dots3-braille</key>\n    <string>dots3-braille.glif</string>\n    <key>dots34-braille</key>\n    <string>dots34-braille.glif</string>\n    <key>dots345-braille</key>\n    <string>dots345-braille.glif</string>\n    <key>dots3456-braille</key>\n    <string>dots3456-braille.glif</string>\n    <key>dots34567-braille</key>\n    <string>dots34567-braille.glif</string>\n    <key>dots345678-braille</key>\n    <string>dots345678-braille.glif</string>\n    <key>dots34568-braille</key>\n    <string>dots34568-braille.glif</string>\n    <key>dots3457-braille</key>\n    <string>dots3457-braille.glif</string>\n    <key>dots34578-braille</key>\n    <string>dots34578-braille.glif</string>\n    <key>dots3458-braille</key>\n    <string>dots3458-braille.glif</string>\n    <key>dots346-braille</key>\n    <string>dots346-braille.glif</string>\n    <key>dots3467-braille</key>\n    <string>dots3467-braille.glif</string>\n    <key>dots34678-braille</key>\n    <string>dots34678-braille.glif</string>\n    <key>dots3468-braille</key>\n    <string>dots3468-braille.glif</string>\n    <key>dots347-braille</key>\n    <string>dots347-braille.glif</string>\n    <key>dots3478-braille</key>\n    <string>dots3478-braille.glif</string>\n    <key>dots348-braille</key>\n    <string>dots348-braille.glif</string>\n    <key>dots35-braille</key>\n    <string>dots35-braille.glif</string>\n    <key>dots356-braille</key>\n    <string>dots356-braille.glif</string>\n    <key>dots3567-braille</key>\n    <string>dots3567-braille.glif</string>\n    <key>dots35678-braille</key>\n    <string>dots35678-braille.glif</string>\n    <key>dots3568-braille</key>\n    <string>dots3568-braille.glif</string>\n    <key>dots357-braille</key>\n    <string>dots357-braille.glif</string>\n    <key>dots3578-braille</key>\n    <string>dots3578-braille.glif</string>\n    <key>dots358-braille</key>\n    <string>dots358-braille.glif</string>\n    <key>dots36-braille</key>\n    <string>dots36-braille.glif</string>\n    <key>dots367-braille</key>\n    <string>dots367-braille.glif</string>\n    <key>dots3678-braille</key>\n    <string>dots3678-braille.glif</string>\n    <key>dots368-braille</key>\n    <string>dots368-braille.glif</string>\n    <key>dots37-braille</key>\n    <string>dots37-braille.glif</string>\n    <key>dots378-braille</key>\n    <string>dots378-braille.glif</string>\n    <key>dots38-braille</key>\n    <string>dots38-braille.glif</string>\n    <key>dots4-braille</key>\n    <string>dots4-braille.glif</string>\n    <key>dots45-braille</key>\n    <string>dots45-braille.glif</string>\n    <key>dots456-braille</key>\n    <string>dots456-braille.glif</string>\n    <key>dots4567-braille</key>\n    <string>dots4567-braille.glif</string>\n    <key>dots45678-braille</key>\n    <string>dots45678-braille.glif</string>\n    <key>dots4568-braille</key>\n    <string>dots4568-braille.glif</string>\n    <key>dots457-braille</key>\n    <string>dots457-braille.glif</string>\n    <key>dots4578-braille</key>\n    <string>dots4578-braille.glif</string>\n    <key>dots458-braille</key>\n    <string>dots458-braille.glif</string>\n    <key>dots46-braille</key>\n    <string>dots46-braille.glif</string>\n    <key>dots467-braille</key>\n    <string>dots467-braille.glif</string>\n    <key>dots4678-braille</key>\n    <string>dots4678-braille.glif</string>\n    <key>dots468-braille</key>\n    <string>dots468-braille.glif</string>\n    <key>dots47-braille</key>\n    <string>dots47-braille.glif</string>\n    <key>dots478-braille</key>\n    <string>dots478-braille.glif</string>\n    <key>dots48-braille</key>\n    <string>dots48-braille.glif</string>\n    <key>dots5-braille</key>\n    <string>dots5-braille.glif</string>\n    <key>dots56-braille</key>\n    <string>dots56-braille.glif</string>\n    <key>dots567-braille</key>\n    <string>dots567-braille.glif</string>\n    <key>dots5678-braille</key>\n    <string>dots5678-braille.glif</string>\n    <key>dots568-braille</key>\n    <string>dots568-braille.glif</string>\n    <key>dots57-braille</key>\n    <string>dots57-braille.glif</string>\n    <key>dots578-braille</key>\n    <string>dots578-braille.glif</string>\n    <key>dots58-braille</key>\n    <string>dots58-braille.glif</string>\n    <key>dots6-braille</key>\n    <string>dots6-braille.glif</string>\n    <key>dots67-braille</key>\n    <string>dots67-braille.glif</string>\n    <key>dots678-braille</key>\n    <string>dots678-braille.glif</string>\n    <key>dots68-braille</key>\n    <string>dots68-braille.glif</string>\n    <key>dots7-braille</key>\n    <string>dots7-braille.glif</string>\n    <key>dots78-braille</key>\n    <string>dots78-braille.glif</string>\n    <key>dots8-braille</key>\n    <string>dots8-braille.glif</string>\n    <key>dottedCircle</key>\n    <string>dottedC_ircle.glif</string>\n    <key>dottedSquare</key>\n    <string>dottedS_quare.glif</string>\n    <key>downArrow</key>\n    <string>downA_rrow.glif</string>\n    <key>downBlackSmallTriangle</key>\n    <string>downB_lackS_mallT_riangle.glif</string>\n    <key>downBlackTriangle</key>\n    <string>downB_lackT_riangle.glif</string>\n    <key>downTipLeftArrow</key>\n    <string>downT_ipL_eftA_rrow.glif</string>\n    <key>downWhiteSmallTriangle</key>\n    <string>downW_hiteS_mallT_riangle.glif</string>\n    <key>downWhiteTriangle</key>\n    <string>downW_hiteT_riangle.glif</string>\n    <key>dtail</key>\n    <string>dtail.glif</string>\n    <key>dze-cy</key>\n    <string>dze-cy.glif</string>\n    <key>dzhe-cy</key>\n    <string>dzhe-cy.glif</string>\n    <key>e</key>\n    <string>e.glif</string>\n    <key>e-cy</key>\n    <string>e-cy.glif</string>\n    <key>eacute</key>\n    <string>eacute.glif</string>\n    <key>ebreve</key>\n    <string>ebreve.glif</string>\n    <key>ecaron</key>\n    <string>ecaron.glif</string>\n    <key>ecircumflex</key>\n    <string>ecircumflex.glif</string>\n    <key>ecircumflexacute</key>\n    <string>ecircumflexacute.glif</string>\n    <key>ecircumflexdotbelow</key>\n    <string>ecircumflexdotbelow.glif</string>\n    <key>ecircumflexgrave</key>\n    <string>ecircumflexgrave.glif</string>\n    <key>ecircumflexhookabove</key>\n    <string>ecircumflexhookabove.glif</string>\n    <key>ecircumflextilde</key>\n    <string>ecircumflextilde.glif</string>\n    <key>edieresis</key>\n    <string>edieresis.glif</string>\n    <key>edotaccent</key>\n    <string>edotaccent.glif</string>\n    <key>edotbelow</key>\n    <string>edotbelow.glif</string>\n    <key>ef-cy</key>\n    <string>ef-cy.glif</string>\n    <key>egrave</key>\n    <string>egrave.glif</string>\n    <key>ehookabove</key>\n    <string>ehookabove.glif</string>\n    <key>eight</key>\n    <string>eight.glif</string>\n    <key>eight.dnom</key>\n    <string>eight.dnom.glif</string>\n    <key>eight.numr</key>\n    <string>eight.numr.glif</string>\n    <key>eightinferior</key>\n    <string>eightinferior.glif</string>\n    <key>eightsuperior</key>\n    <string>eightsuperior.glif</string>\n    <key>el-cy</key>\n    <string>el-cy.glif</string>\n    <key>ellipsis</key>\n    <string>ellipsis.glif</string>\n    <key>em-cy</key>\n    <string>em-cy.glif</string>\n    <key>emacron</key>\n    <string>emacron.glif</string>\n    <key>emdash</key>\n    <string>emdash.glif</string>\n    <key>en-cy</key>\n    <string>en-cy.glif</string>\n    <key>endOfMediumControl</key>\n    <string>endO_fM_ediumC_ontrol.glif</string>\n    <key>endOfMediumControl.ss20</key>\n    <string>endO_fM_ediumC_ontrol.ss20.glif</string>\n    <key>endOfTextControl</key>\n    <string>endO_fT_extC_ontrol.glif</string>\n    <key>endOfTextControl.ss20</key>\n    <string>endO_fT_extC_ontrol.ss20.glif</string>\n    <key>endOfTransmissionBlockControl</key>\n    <string>endO_fT_ransmissionB_lockC_ontrol.glif</string>\n    <key>endOfTransmissionBlockControl.ss20</key>\n    <string>endO_fT_ransmissionB_lockC_ontrol.ss20.glif</string>\n    <key>endOfTransmissionControl</key>\n    <string>endO_fT_ransmissionC_ontrol.glif</string>\n    <key>endOfTransmissionControl.ss20</key>\n    <string>endO_fT_ransmissionC_ontrol.ss20.glif</string>\n    <key>endash</key>\n    <string>endash.glif</string>\n    <key>endescender-cy</key>\n    <string>endescender-cy.glif</string>\n    <key>eng</key>\n    <string>eng.glif</string>\n    <key>enquiryControl</key>\n    <string>enquiryC_ontrol.glif</string>\n    <key>enquiryControl.ss20</key>\n    <string>enquiryC_ontrol.ss20.glif</string>\n    <key>eogonek</key>\n    <string>eogonek.glif</string>\n    <key>eopen</key>\n    <string>eopen.glif</string>\n    <key>epsilon</key>\n    <string>epsilon.glif</string>\n    <key>epsilontonos</key>\n    <string>epsilontonos.glif</string>\n    <key>equal</key>\n    <string>equal.glif</string>\n    <key>equal_end.seq</key>\n    <string>equal_end.seq.glif</string>\n    <key>equal_equal.liga</key>\n    <string>equal_equal.liga.glif</string>\n    <key>equal_equal_equal.liga</key>\n    <string>equal_equal_equal.liga.glif</string>\n    <key>equal_greater_greater.liga</key>\n    <string>equal_greater_greater.liga.glif</string>\n    <key>equal_less_less.liga</key>\n    <string>equal_less_less.liga.glif</string>\n    <key>equal_middle.seq</key>\n    <string>equal_middle.seq.glif</string>\n    <key>equal_start.seq</key>\n    <string>equal_start.seq.glif</string>\n    <key>equivalence</key>\n    <string>equivalence.glif</string>\n    <key>er-cy</key>\n    <string>er-cy.glif</string>\n    <key>ereversed-cy</key>\n    <string>ereversed-cy.glif</string>\n    <key>es-cy</key>\n    <string>es-cy.glif</string>\n    <key>escapeControl</key>\n    <string>escapeC_ontrol.glif</string>\n    <key>escapeControl.ss20</key>\n    <string>escapeC_ontrol.ss20.glif</string>\n    <key>esh</key>\n    <string>esh.glif</string>\n    <key>estimated</key>\n    <string>estimated.glif</string>\n    <key>eta</key>\n    <string>eta.glif</string>\n    <key>etatonos</key>\n    <string>etatonos.glif</string>\n    <key>eth</key>\n    <string>eth.glif</string>\n    <key>etilde</key>\n    <string>etilde.glif</string>\n    <key>eturned</key>\n    <string>eturned.glif</string>\n    <key>euro</key>\n    <string>euro.glif</string>\n    <key>eurocurrency</key>\n    <string>eurocurrency.glif</string>\n    <key>exclam</key>\n    <string>exclam.glif</string>\n    <key>exclam_colon.liga</key>\n    <string>exclam_colon.liga.glif</string>\n    <key>exclam_equal.liga</key>\n    <string>exclam_equal.liga.glif</string>\n    <key>exclam_equal_equal.liga</key>\n    <string>exclam_equal_equal.liga.glif</string>\n    <key>exclam_equal_middle.seq</key>\n    <string>exclam_equal_middle.seq.glif</string>\n    <key>exclam_exclam.liga</key>\n    <string>exclam_exclam.liga.glif</string>\n    <key>exclam_exclam_period.liga</key>\n    <string>exclam_exclam_period.liga.glif</string>\n    <key>exclam_period.liga</key>\n    <string>exclam_period.liga.glif</string>\n    <key>exclamdouble</key>\n    <string>exclamdouble.glif</string>\n    <key>exclamdown</key>\n    <string>exclamdown.glif</string>\n    <key>ezh</key>\n    <string>ezh.glif</string>\n    <key>f</key>\n    <string>f.glif</string>\n    <key>f.locl</key>\n    <string>f.locl.glif</string>\n    <key>f.salt</key>\n    <string>f.salt.glif</string>\n    <key>fi</key>\n    <string>fi.glif</string>\n    <key>fileSeparatorControl</key>\n    <string>fileS_eparatorC_ontrol.glif</string>\n    <key>filledRect</key>\n    <string>filledR_ect.glif</string>\n    <key>firsttonechinese</key>\n    <string>firsttonechinese.glif</string>\n    <key>fisheye</key>\n    <string>fisheye.glif</string>\n    <key>five</key>\n    <string>five.glif</string>\n    <key>five.dnom</key>\n    <string>five.dnom.glif</string>\n    <key>five.numr</key>\n    <string>five.numr.glif</string>\n    <key>fiveeighths</key>\n    <string>fiveeighths.glif</string>\n    <key>fiveeighths.BRACKET.500</key>\n    <string>fiveeighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>fiveinferior</key>\n    <string>fiveinferior.glif</string>\n    <key>fivesuperior</key>\n    <string>fivesuperior.glif</string>\n    <key>fl</key>\n    <string>fl.glif</string>\n    <key>florin</key>\n    <string>florin.glif</string>\n    <key>formFeedControl</key>\n    <string>formF_eedC_ontrol.glif</string>\n    <key>formFeedControl.ss20</key>\n    <string>formF_eedC_ontrol.ss20.glif</string>\n    <key>four</key>\n    <string>four.glif</string>\n    <key>four.dnom</key>\n    <string>four.dnom.glif</string>\n    <key>four.half</key>\n    <string>four.half.glif</string>\n    <key>four.numr</key>\n    <string>four.numr.glif</string>\n    <key>fourinferior</key>\n    <string>fourinferior.glif</string>\n    <key>foursuperior</key>\n    <string>foursuperior.glif</string>\n    <key>fraction</key>\n    <string>fraction.glif</string>\n    <key>franc</key>\n    <string>franc.glif</string>\n    <key>fullBlock</key>\n    <string>fullB_lock.glif</string>\n    <key>fullBlock.stypo</key>\n    <string>fullB_lock.stypo.glif</string>\n    <key>g</key>\n    <string>g.glif</string>\n    <key>gamma</key>\n    <string>gamma.glif</string>\n    <key>gamma-latin</key>\n    <string>gamma-latin.glif</string>\n    <key>gbreve</key>\n    <string>gbreve.glif</string>\n    <key>gcaron</key>\n    <string>gcaron.glif</string>\n    <key>gcircumflex</key>\n    <string>gcircumflex.glif</string>\n    <key>gcommaaccent</key>\n    <string>gcommaaccent.glif</string>\n    <key>gdotaccent</key>\n    <string>gdotaccent.glif</string>\n    <key>ge-cy</key>\n    <string>ge-cy.glif</string>\n    <key>ge-cy.loclSRB</key>\n    <string>ge-cy.loclS_R_B_.glif</string>\n    <key>germandbls</key>\n    <string>germandbls.glif</string>\n    <key>ghestroke-cy</key>\n    <string>ghestroke-cy.glif</string>\n    <key>gheupturn-cy</key>\n    <string>gheupturn-cy.glif</string>\n    <key>gje-cy</key>\n    <string>gje-cy.glif</string>\n    <key>glottalstop</key>\n    <string>glottalstop.glif</string>\n    <key>glottalstopmod</key>\n    <string>glottalstopmod.glif</string>\n    <key>glottalstopreversed</key>\n    <string>glottalstopreversed.glif</string>\n    <key>grave</key>\n    <string>grave.glif</string>\n    <key>gravecomb</key>\n    <string>gravecomb.glif</string>\n    <key>gravecomb.case</key>\n    <string>gravecomb.case.glif</string>\n    <key>gravetonecomb</key>\n    <string>gravetonecomb.glif</string>\n    <key>greater</key>\n    <string>greater.glif</string>\n    <key>greater.alt</key>\n    <string>greater.alt.glif</string>\n    <key>greater.center</key>\n    <string>greater.center.glif</string>\n    <key>greater_equal.liga</key>\n    <string>greater_equal.liga.glif</string>\n    <key>greater_equal_end.seq</key>\n    <string>greater_equal_end.seq.glif</string>\n    <key>greater_equal_middle.seq</key>\n    <string>greater_equal_middle.seq.glif</string>\n    <key>greater_equal_start.seq</key>\n    <string>greater_equal_start.seq.glif</string>\n    <key>greater_greater.liga</key>\n    <string>greater_greater.liga.glif</string>\n    <key>greater_greater_equal.liga</key>\n    <string>greater_greater_equal.liga.glif</string>\n    <key>greater_greater_equal_end.seq</key>\n    <string>greater_greater_equal_end.seq.glif</string>\n    <key>greater_greater_equal_middle.seq</key>\n    <string>greater_greater_equal_middle.seq.glif</string>\n    <key>greater_greater_equal_start.seq</key>\n    <string>greater_greater_equal_start.seq.glif</string>\n    <key>greater_greater_greater.liga</key>\n    <string>greater_greater_greater.liga.glif</string>\n    <key>greater_greater_hyphen_end.seq</key>\n    <string>greater_greater_hyphen_end.seq.glif</string>\n    <key>greater_greater_hyphen_middle.seq</key>\n    <string>greater_greater_hyphen_middle.seq.glif</string>\n    <key>greater_greater_hyphen_start.seq</key>\n    <string>greater_greater_hyphen_start.seq.glif</string>\n    <key>greater_hyphen_end.seq</key>\n    <string>greater_hyphen_end.seq.glif</string>\n    <key>greater_hyphen_middle.seq</key>\n    <string>greater_hyphen_middle.seq.glif</string>\n    <key>greater_hyphen_start.seq</key>\n    <string>greater_hyphen_start.seq.glif</string>\n    <key>greaterequal</key>\n    <string>greaterequal.glif</string>\n    <key>groupSeparatorControl</key>\n    <string>groupS_eparatorC_ontrol.glif</string>\n    <key>gstroke</key>\n    <string>gstroke.glif</string>\n    <key>guarani</key>\n    <string>guarani.glif</string>\n    <key>guillemetleft</key>\n    <string>guillemetleft.glif</string>\n    <key>guillemetright</key>\n    <string>guillemetright.glif</string>\n    <key>guilsinglleft</key>\n    <string>guilsinglleft.glif</string>\n    <key>guilsinglright</key>\n    <string>guilsinglright.glif</string>\n    <key>h</key>\n    <string>h.glif</string>\n    <key>h.alt</key>\n    <string>h.alt.glif</string>\n    <key>ha-cy</key>\n    <string>ha-cy.glif</string>\n    <key>hadescender-cy</key>\n    <string>hadescender-cy.glif</string>\n    <key>hardsign-cy</key>\n    <string>hardsign-cy.glif</string>\n    <key>hbar</key>\n    <string>hbar.glif</string>\n    <key>hcaron</key>\n    <string>hcaron.glif</string>\n    <key>hcircumflex</key>\n    <string>hcircumflex.glif</string>\n    <key>hdotbelow</key>\n    <string>hdotbelow.glif</string>\n    <key>heartBlackSuit</key>\n    <string>heartB_lackS_uit.glif</string>\n    <key>heavyleftpointinganglebracketornament</key>\n    <string>heavyleftpointinganglebracketornament.glif</string>\n    <key>heavyleftpointinganglequotationmarkornament</key>\n    <string>heavyleftpointinganglequotationmarkornament.glif</string>\n    <key>heavyrightpointinganglebracketornament</key>\n    <string>heavyrightpointinganglebracketornament.glif</string>\n    <key>heavyrightpointinganglequotationmarkornament</key>\n    <string>heavyrightpointinganglequotationmarkornament.glif</string>\n    <key>hookabovecomb</key>\n    <string>hookabovecomb.glif</string>\n    <key>hookabovecomb.case</key>\n    <string>hookabovecomb.case.glif</string>\n    <key>horizontalBlackHexagon</key>\n    <string>horizontalB_lackH_exagon.glif</string>\n    <key>horizontalFillSquare</key>\n    <string>horizontalF_illS_quare.glif</string>\n    <key>horizontalTabulationControl</key>\n    <string>horizontalT_abulationC_ontrol.glif</string>\n    <key>horizontalTabulationControl.ss20</key>\n    <string>horizontalT_abulationC_ontrol.ss20.glif</string>\n    <key>horizontalbar</key>\n    <string>horizontalbar.glif</string>\n    <key>horizontallineextension</key>\n    <string>horizontallineextension.glif</string>\n    <key>horncomb</key>\n    <string>horncomb.glif</string>\n    <key>horncomb.case</key>\n    <string>horncomb.case.glif</string>\n    <key>house</key>\n    <string>house.glif</string>\n    <key>hryvnia</key>\n    <string>hryvnia.glif</string>\n    <key>hungarumlaut</key>\n    <string>hungarumlaut.glif</string>\n    <key>hungarumlautcomb</key>\n    <string>hungarumlautcomb.glif</string>\n    <key>hungarumlautcomb.case</key>\n    <string>hungarumlautcomb.case.glif</string>\n    <key>hyphen</key>\n    <string>hyphen.glif</string>\n    <key>hyphen_asciitilde.liga</key>\n    <string>hyphen_asciitilde.liga.glif</string>\n    <key>hyphen_end.seq</key>\n    <string>hyphen_end.seq.glif</string>\n    <key>hyphen_hyphen.liga</key>\n    <string>hyphen_hyphen.liga.glif</string>\n    <key>hyphen_hyphen_hyphen.liga</key>\n    <string>hyphen_hyphen_hyphen.liga.glif</string>\n    <key>hyphen_middle.seq</key>\n    <string>hyphen_middle.seq.glif</string>\n    <key>hyphen_start.seq</key>\n    <string>hyphen_start.seq.glif</string>\n    <key>hyphentwo</key>\n    <string>hyphentwo.glif</string>\n    <key>i</key>\n    <string>i.glif</string>\n    <key>i-cy</key>\n    <string>i-cy.glif</string>\n    <key>ia-cy</key>\n    <string>ia-cy.glif</string>\n    <key>iacute</key>\n    <string>iacute.glif</string>\n    <key>ibreve</key>\n    <string>ibreve.glif</string>\n    <key>icircumflex</key>\n    <string>icircumflex.glif</string>\n    <key>idieresis</key>\n    <string>idieresis.glif</string>\n    <key>idotbelow</key>\n    <string>idotbelow.glif</string>\n    <key>idotless</key>\n    <string>idotless.glif</string>\n    <key>ie-cy</key>\n    <string>ie-cy.glif</string>\n    <key>iegrave-cy</key>\n    <string>iegrave-cy.glif</string>\n    <key>igrave</key>\n    <string>igrave.glif</string>\n    <key>ihookabove</key>\n    <string>ihookabove.glif</string>\n    <key>ii-cy</key>\n    <string>ii-cy.glif</string>\n    <key>iigrave-cy</key>\n    <string>iigrave-cy.glif</string>\n    <key>iishort-cy</key>\n    <string>iishort-cy.glif</string>\n    <key>ij</key>\n    <string>ij.glif</string>\n    <key>ij_acute</key>\n    <string>ij_acute.glif</string>\n    <key>imacron</key>\n    <string>imacron.glif</string>\n    <key>imacron-cy</key>\n    <string>imacron-cy.glif</string>\n    <key>increment</key>\n    <string>increment.glif</string>\n    <key>infinity</key>\n    <string>infinity.glif</string>\n    <key>integral</key>\n    <string>integral.glif</string>\n    <key>integralbt</key>\n    <string>integralbt.glif</string>\n    <key>integraltp</key>\n    <string>integraltp.glif</string>\n    <key>intersection</key>\n    <string>intersection.glif</string>\n    <key>inverseBullet</key>\n    <string>inverseB_ullet.glif</string>\n    <key>inverseWhiteCircle</key>\n    <string>inverseW_hiteC_ircle.glif</string>\n    <key>io-cy</key>\n    <string>io-cy.glif</string>\n    <key>iogonek</key>\n    <string>iogonek.glif</string>\n    <key>iota</key>\n    <string>iota.glif</string>\n    <key>iota-latin</key>\n    <string>iota-latin.glif</string>\n    <key>iotadieresis</key>\n    <string>iotadieresis.glif</string>\n    <key>iotadieresistonos</key>\n    <string>iotadieresistonos.glif</string>\n    <key>iotatonos</key>\n    <string>iotatonos.glif</string>\n    <key>itilde</key>\n    <string>itilde.glif</string>\n    <key>iu-cy</key>\n    <string>iu-cy.glif</string>\n    <key>iu-cy.loclBGR</key>\n    <string>iu-cy.loclB_G_R_.glif</string>\n    <key>iu-cy.loclBGR.alt</key>\n    <string>iu-cy.loclB_G_R_.alt.glif</string>\n    <key>j</key>\n    <string>j.glif</string>\n    <key>jacute</key>\n    <string>jacute.glif</string>\n    <key>jcaron</key>\n    <string>jcaron.glif</string>\n    <key>jcircumflex</key>\n    <string>jcircumflex.glif</string>\n    <key>jdotless</key>\n    <string>jdotless.glif</string>\n    <key>je-cy</key>\n    <string>je-cy.glif</string>\n    <key>k</key>\n    <string>k.glif</string>\n    <key>k.alt</key>\n    <string>k.alt.glif</string>\n    <key>ka-cy</key>\n    <string>ka-cy.glif</string>\n    <key>ka-cy.loclBGR</key>\n    <string>ka-cy.loclB_G_R_.glif</string>\n    <key>ka-cy.loclBGR.alt</key>\n    <string>ka-cy.loclB_G_R_.alt.glif</string>\n    <key>kadescender-cy</key>\n    <string>kadescender-cy.glif</string>\n    <key>kaiSymbol</key>\n    <string>kaiS_ymbol.glif</string>\n    <key>kappa</key>\n    <string>kappa.glif</string>\n    <key>kcommaaccent</key>\n    <string>kcommaaccent.glif</string>\n    <key>kdotbelow</key>\n    <string>kdotbelow.glif</string>\n    <key>kgreenlandic</key>\n    <string>kgreenlandic.glif</string>\n    <key>kip</key>\n    <string>kip.glif</string>\n    <key>kje-cy</key>\n    <string>kje-cy.glif</string>\n    <key>klinebelow</key>\n    <string>klinebelow.glif</string>\n    <key>l</key>\n    <string>l.glif</string>\n    <key>l.salt</key>\n    <string>l.salt.glif</string>\n    <key>lacute</key>\n    <string>lacute.glif</string>\n    <key>lacute.salt</key>\n    <string>lacute.salt.glif</string>\n    <key>lambda</key>\n    <string>lambda.glif</string>\n    <key>lambdastroke</key>\n    <string>lambdastroke.glif</string>\n    <key>largeCircle</key>\n    <string>largeC_ircle.glif</string>\n    <key>lari</key>\n    <string>lari.glif</string>\n    <key>lbar</key>\n    <string>lbar.glif</string>\n    <key>lbar.salt</key>\n    <string>lbar.salt.glif</string>\n    <key>lbelt</key>\n    <string>lbelt.glif</string>\n    <key>lbelt.salt</key>\n    <string>lbelt.salt.glif</string>\n    <key>lcaron</key>\n    <string>lcaron.glif</string>\n    <key>lcaron.salt</key>\n    <string>lcaron.salt.glif</string>\n    <key>lcommaaccent</key>\n    <string>lcommaaccent.glif</string>\n    <key>lcommaaccent.salt</key>\n    <string>lcommaaccent.salt.glif</string>\n    <key>ldot</key>\n    <string>ldot.glif</string>\n    <key>ldot.salt</key>\n    <string>ldot.salt.glif</string>\n    <key>ldotbelow</key>\n    <string>ldotbelow.glif</string>\n    <key>ldotbelow.salt</key>\n    <string>ldotbelow.salt.glif</string>\n    <key>leftArrow</key>\n    <string>leftA_rrow.glif</string>\n    <key>leftBlackPointer</key>\n    <string>leftB_lackP_ointer.glif</string>\n    <key>leftBlackSmallTriangle</key>\n    <string>leftB_lackS_mallT_riangle.glif</string>\n    <key>leftBlackTriangle</key>\n    <string>leftB_lackT_riangle.glif</string>\n    <key>leftBlock</key>\n    <string>leftB_lock.glif</string>\n    <key>leftBlock.stypo</key>\n    <string>leftB_lock.stypo.glif</string>\n    <key>leftFiveEighthsBlock</key>\n    <string>leftF_iveE_ighthsB_lock.glif</string>\n    <key>leftFiveEighthsBlock.stypo</key>\n    <string>leftF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>leftHalfBlackCircle</key>\n    <string>leftH_alfB_lackC_ircle.glif</string>\n    <key>leftHalfBlackDiamond</key>\n    <string>leftH_alfB_lackD_iamond.glif</string>\n    <key>leftHalfBlackSquare</key>\n    <string>leftH_alfB_lackS_quare.glif</string>\n    <key>leftHalfBlackWhiteCircle</key>\n    <string>leftH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>leftOneEighthBlock</key>\n    <string>leftO_neE_ighthB_lock.glif</string>\n    <key>leftOneEighthBlock.stypo</key>\n    <string>leftO_neE_ighthB_lock.stypo.glif</string>\n    <key>leftOneQuarterBlock</key>\n    <string>leftO_neQ_uarterB_lock.glif</string>\n    <key>leftOneQuarterBlock.stypo</key>\n    <string>leftO_neQ_uarterB_lock.stypo.glif</string>\n    <key>leftRightArrow</key>\n    <string>leftR_ightA_rrow.glif</string>\n    <key>leftSevenEighthsBlock</key>\n    <string>leftS_evenE_ighthsB_lock.glif</string>\n    <key>leftSevenEighthsBlock.stypo</key>\n    <string>leftS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>leftThreeEighthsBlock</key>\n    <string>leftT_hreeE_ighthsB_lock.glif</string>\n    <key>leftThreeEighthsBlock.stypo</key>\n    <string>leftT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>leftThreeQuartersBlock</key>\n    <string>leftT_hreeQ_uartersB_lock.glif</string>\n    <key>leftThreeQuartersBlock.stypo</key>\n    <string>leftT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>leftWhitePointer</key>\n    <string>leftW_hiteP_ointer.glif</string>\n    <key>leftWhiteSmallTriangle</key>\n    <string>leftW_hiteS_mallT_riangle.glif</string>\n    <key>leftWhiteTriangle</key>\n    <string>leftW_hiteT_riangle.glif</string>\n    <key>less</key>\n    <string>less.glif</string>\n    <key>less.alt</key>\n    <string>less.alt.glif</string>\n    <key>less.center</key>\n    <string>less.center.glif</string>\n    <key>less_asciitilde.liga</key>\n    <string>less_asciitilde.liga.glif</string>\n    <key>less_asciitilde_asciitilde.liga</key>\n    <string>less_asciitilde_asciitilde.liga.glif</string>\n    <key>less_asciitilde_greater.liga</key>\n    <string>less_asciitilde_greater.liga.glif</string>\n    <key>less_asterisk.liga</key>\n    <string>less_asterisk.liga.glif</string>\n    <key>less_asterisk_greater.liga</key>\n    <string>less_asterisk_greater.liga.glif</string>\n    <key>less_bar.liga</key>\n    <string>less_bar.liga.glif</string>\n    <key>less_bar_bar.liga</key>\n    <string>less_bar_bar.liga.glif</string>\n    <key>less_bar_bar_bar.liga</key>\n    <string>less_bar_bar_bar.liga.glif</string>\n    <key>less_bar_greater.liga</key>\n    <string>less_bar_greater.liga.glif</string>\n    <key>less_dollar.liga</key>\n    <string>less_dollar.liga.glif</string>\n    <key>less_dollar.liga.BRACKET.600</key>\n    <string>less_dollar.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>less_dollar_greater.liga</key>\n    <string>less_dollar_greater.liga.glif</string>\n    <key>less_dollar_greater.liga.BRACKET.600</key>\n    <string>less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>less_equal.liga</key>\n    <string>less_equal.liga.glif</string>\n    <key>less_equal_end.seq</key>\n    <string>less_equal_end.seq.glif</string>\n    <key>less_equal_middle.seq</key>\n    <string>less_equal_middle.seq.glif</string>\n    <key>less_equal_start.seq</key>\n    <string>less_equal_start.seq.glif</string>\n    <key>less_exclam_hyphen_hyphen.liga</key>\n    <string>less_exclam_hyphen_hyphen.liga.glif</string>\n    <key>less_greater.liga</key>\n    <string>less_greater.liga.glif</string>\n    <key>less_hyphen_end.seq</key>\n    <string>less_hyphen_end.seq.glif</string>\n    <key>less_hyphen_middle.seq</key>\n    <string>less_hyphen_middle.seq.glif</string>\n    <key>less_hyphen_start.seq</key>\n    <string>less_hyphen_start.seq.glif</string>\n    <key>less_less.liga</key>\n    <string>less_less.liga.glif</string>\n    <key>less_less_equal.liga</key>\n    <string>less_less_equal.liga.glif</string>\n    <key>less_less_equal_end.seq</key>\n    <string>less_less_equal_end.seq.glif</string>\n    <key>less_less_equal_middle.seq</key>\n    <string>less_less_equal_middle.seq.glif</string>\n    <key>less_less_equal_start.seq</key>\n    <string>less_less_equal_start.seq.glif</string>\n    <key>less_less_hyphen_end.seq</key>\n    <string>less_less_hyphen_end.seq.glif</string>\n    <key>less_less_hyphen_middle.seq</key>\n    <string>less_less_hyphen_middle.seq.glif</string>\n    <key>less_less_hyphen_start.seq</key>\n    <string>less_less_hyphen_start.seq.glif</string>\n    <key>less_less_less.liga</key>\n    <string>less_less_less.liga.glif</string>\n    <key>less_plus.liga</key>\n    <string>less_plus.liga.glif</string>\n    <key>less_plus_greater.liga</key>\n    <string>less_plus_greater.liga.glif</string>\n    <key>less_slash.liga</key>\n    <string>less_slash.liga.glif</string>\n    <key>less_slash_greater.liga</key>\n    <string>less_slash_greater.liga.glif</string>\n    <key>lessequal</key>\n    <string>lessequal.glif</string>\n    <key>lineFeedControl</key>\n    <string>lineF_eedC_ontrol.glif</string>\n    <key>lineFeedControl.ss20</key>\n    <string>lineF_eedC_ontrol.ss20.glif</string>\n    <key>lineseparator</key>\n    <string>lineseparator.glif</string>\n    <key>lira</key>\n    <string>lira.glif</string>\n    <key>liraTurkish</key>\n    <string>liraT_urkish.glif</string>\n    <key>literSign</key>\n    <string>literS_ign.glif</string>\n    <key>lje-cy</key>\n    <string>lje-cy.glif</string>\n    <key>llinebelow</key>\n    <string>llinebelow.glif</string>\n    <key>llinebelow.salt</key>\n    <string>llinebelow.salt.glif</string>\n    <key>lmiddletilde</key>\n    <string>lmiddletilde.glif</string>\n    <key>lmiddletilde.salt</key>\n    <string>lmiddletilde.salt.glif</string>\n    <key>logicalnot</key>\n    <string>logicalnot.glif</string>\n    <key>logicalnotReversed</key>\n    <string>logicalnotR_eversed.glif</string>\n    <key>longs</key>\n    <string>longs.glif</string>\n    <key>lowerFiveEighthsBlock</key>\n    <string>lowerF_iveE_ighthsB_lock.glif</string>\n    <key>lowerFiveEighthsBlock.stypo</key>\n    <string>lowerF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>lowerHalfArc</key>\n    <string>lowerH_alfA_rc.glif</string>\n    <key>lowerHalfBlackWhiteCircle</key>\n    <string>lowerH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>lowerHalfBlock</key>\n    <string>lowerH_alfB_lock.glif</string>\n    <key>lowerHalfBlock.stypo</key>\n    <string>lowerH_alfB_lock.stypo.glif</string>\n    <key>lowerHalfInverseWhiteCircle</key>\n    <string>lowerH_alfI_nverseW_hiteC_ircle.glif</string>\n    <key>lowerHalfWhiteSquare</key>\n    <string>lowerH_alfW_hiteS_quare.glif</string>\n    <key>lowerLeftArc</key>\n    <string>lowerL_eftA_rc.glif</string>\n    <key>lowerLeftBlackTriangle</key>\n    <string>lowerL_eftB_lackT_riangle.glif</string>\n    <key>lowerLeftBlock</key>\n    <string>lowerL_eftB_lock.glif</string>\n    <key>lowerLeftBlock.stypo</key>\n    <string>lowerL_eftB_lock.stypo.glif</string>\n    <key>lowerLeftHalfWhiteSquare</key>\n    <string>lowerL_eftH_alfW_hiteS_quare.glif</string>\n    <key>lowerLeftQuadrantWhiteCircle</key>\n    <string>lowerL_eftQ_uadrantW_hiteC_ircle.glif</string>\n    <key>lowerLeftTriangle</key>\n    <string>lowerL_eftT_riangle.glif</string>\n    <key>lowerOneEighthBlock</key>\n    <string>lowerO_neE_ighthB_lock.glif</string>\n    <key>lowerOneEighthBlock.stypo</key>\n    <string>lowerO_neE_ighthB_lock.stypo.glif</string>\n    <key>lowerOneQuarterBlock</key>\n    <string>lowerO_neQ_uarterB_lock.glif</string>\n    <key>lowerOneQuarterBlock.stypo</key>\n    <string>lowerO_neQ_uarterB_lock.stypo.glif</string>\n    <key>lowerRightArc</key>\n    <string>lowerR_ightA_rc.glif</string>\n    <key>lowerRightBlackTriangle</key>\n    <string>lowerR_ightB_lackT_riangle.glif</string>\n    <key>lowerRightBlock</key>\n    <string>lowerR_ightB_lock.glif</string>\n    <key>lowerRightBlock.stypo</key>\n    <string>lowerR_ightB_lock.stypo.glif</string>\n    <key>lowerRightDiagonalHalfBlackSquare</key>\n    <string>lowerR_ightD_iagonalH_alfB_lackS_quare.glif</string>\n    <key>lowerRightQuadrantWhiteCircle</key>\n    <string>lowerR_ightQ_uadrantW_hiteC_ircle.glif</string>\n    <key>lowerRightTriangle</key>\n    <string>lowerR_ightT_riangle.glif</string>\n    <key>lowerSevenEighthsBlock</key>\n    <string>lowerS_evenE_ighthsB_lock.glif</string>\n    <key>lowerSevenEighthsBlock.stypo</key>\n    <string>lowerS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>lowerThreeEighthsBlock</key>\n    <string>lowerT_hreeE_ighthsB_lock.glif</string>\n    <key>lowerThreeEighthsBlock.stypo</key>\n    <string>lowerT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>lowerThreeQuartersBlock</key>\n    <string>lowerT_hreeQ_uartersB_lock.glif</string>\n    <key>lowerThreeQuartersBlock.stypo</key>\n    <string>lowerT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>lowernumeral-greek</key>\n    <string>lowernumeral-greek.glif</string>\n    <key>lowlinecomb</key>\n    <string>lowlinecomb.glif</string>\n    <key>lozenge</key>\n    <string>lozenge.glif</string>\n    <key>lslash</key>\n    <string>lslash.glif</string>\n    <key>lslash.salt</key>\n    <string>lslash.salt.glif</string>\n    <key>m</key>\n    <string>m.glif</string>\n    <key>macron</key>\n    <string>macron.glif</string>\n    <key>macronbelowcomb</key>\n    <string>macronbelowcomb.glif</string>\n    <key>macroncomb</key>\n    <string>macroncomb.glif</string>\n    <key>macroncomb.case</key>\n    <string>macroncomb.case.glif</string>\n    <key>manat</key>\n    <string>manat.glif</string>\n    <key>mars</key>\n    <string>mars.glif</string>\n    <key>mediumBlackSmallSquare</key>\n    <string>mediumB_lackS_mallS_quare.glif</string>\n    <key>mediumBlackSquare</key>\n    <string>mediumB_lackS_quare.glif</string>\n    <key>mediumWhiteSmallSquare</key>\n    <string>mediumW_hiteS_mallS_quare.glif</string>\n    <key>mediumWhiteSquare</key>\n    <string>mediumW_hiteS_quare.glif</string>\n    <key>mediumleftpointinganglebracketornament</key>\n    <string>mediumleftpointinganglebracketornament.glif</string>\n    <key>mediumrightpointinganglebracketornament</key>\n    <string>mediumrightpointinganglebracketornament.glif</string>\n    <key>micro</key>\n    <string>micro.glif</string>\n    <key>minus</key>\n    <string>minus.glif</string>\n    <key>minute</key>\n    <string>minute.glif</string>\n    <key>mu</key>\n    <string>mu.glif</string>\n    <key>multiply</key>\n    <string>multiply.glif</string>\n    <key>n</key>\n    <string>n.glif</string>\n    <key>nacute</key>\n    <string>nacute.glif</string>\n    <key>nacute.loclPLK</key>\n    <string>nacute.loclP_L_K_.glif</string>\n    <key>naira</key>\n    <string>naira.glif</string>\n    <key>napostrophe</key>\n    <string>napostrophe.glif</string>\n    <key>nbspace</key>\n    <string>nbspace.glif</string>\n    <key>ncaron</key>\n    <string>ncaron.glif</string>\n    <key>ncommaaccent</key>\n    <string>ncommaaccent.glif</string>\n    <key>negativeAcknowledgeControl</key>\n    <string>negativeA_cknowledgeC_ontrol.glif</string>\n    <key>negativeAcknowledgeControl.ss20</key>\n    <string>negativeA_cknowledgeC_ontrol.ss20.glif</string>\n    <key>newlineControl</key>\n    <string>newlineC_ontrol.glif</string>\n    <key>nhookleft</key>\n    <string>nhookleft.glif</string>\n    <key>nine</key>\n    <string>nine.glif</string>\n    <key>nine.dnom</key>\n    <string>nine.dnom.glif</string>\n    <key>nine.numr</key>\n    <string>nine.numr.glif</string>\n    <key>nineinferior</key>\n    <string>nineinferior.glif</string>\n    <key>ninesuperior</key>\n    <string>ninesuperior.glif</string>\n    <key>nje-cy</key>\n    <string>nje-cy.glif</string>\n    <key>nlinebelow</key>\n    <string>nlinebelow.glif</string>\n    <key>nmod</key>\n    <string>nmod.glif</string>\n    <key>nonbreakinghyphen</key>\n    <string>nonbreakinghyphen.glif</string>\n    <key>note-musical</key>\n    <string>note-musical.glif</string>\n    <key>notedbl-musical</key>\n    <string>notedbl-musical.glif</string>\n    <key>notequal</key>\n    <string>notequal.glif</string>\n    <key>notidentical</key>\n    <string>notidentical.glif</string>\n    <key>ntilde</key>\n    <string>ntilde.glif</string>\n    <key>nu</key>\n    <string>nu.glif</string>\n    <key>nullControl</key>\n    <string>nullC_ontrol.glif</string>\n    <key>numbersign</key>\n    <string>numbersign.glif</string>\n    <key>numbersign_braceleft.liga</key>\n    <string>numbersign_braceleft.liga.glif</string>\n    <key>numbersign_bracketleft.liga</key>\n    <string>numbersign_bracketleft.liga.glif</string>\n    <key>numbersign_colon.liga</key>\n    <string>numbersign_colon.liga.glif</string>\n    <key>numbersign_end.seq</key>\n    <string>numbersign_end.seq.glif</string>\n    <key>numbersign_equal.liga</key>\n    <string>numbersign_equal.liga.glif</string>\n    <key>numbersign_exclam.liga</key>\n    <string>numbersign_exclam.liga.glif</string>\n    <key>numbersign_middle.seq</key>\n    <string>numbersign_middle.seq.glif</string>\n    <key>numbersign_parenleft.liga</key>\n    <string>numbersign_parenleft.liga.glif</string>\n    <key>numbersign_question.liga</key>\n    <string>numbersign_question.liga.glif</string>\n    <key>numbersign_start.seq</key>\n    <string>numbersign_start.seq.glif</string>\n    <key>numbersign_underscore.liga</key>\n    <string>numbersign_underscore.liga.glif</string>\n    <key>numbersign_underscore_parenleft.liga</key>\n    <string>numbersign_underscore_parenleft.liga.glif</string>\n    <key>numeral-greek</key>\n    <string>numeral-greek.glif</string>\n    <key>numero</key>\n    <string>numero.glif</string>\n    <key>o</key>\n    <string>o.glif</string>\n    <key>o-cy</key>\n    <string>o-cy.glif</string>\n    <key>oacute</key>\n    <string>oacute.glif</string>\n    <key>oacute.loclPLK</key>\n    <string>oacute.loclP_L_K_.glif</string>\n    <key>obarred-cy</key>\n    <string>obarred-cy.glif</string>\n    <key>obreve</key>\n    <string>obreve.glif</string>\n    <key>ocircumflex</key>\n    <string>ocircumflex.glif</string>\n    <key>ocircumflexacute</key>\n    <string>ocircumflexacute.glif</string>\n    <key>ocircumflexdotbelow</key>\n    <string>ocircumflexdotbelow.glif</string>\n    <key>ocircumflexgrave</key>\n    <string>ocircumflexgrave.glif</string>\n    <key>ocircumflexhookabove</key>\n    <string>ocircumflexhookabove.glif</string>\n    <key>ocircumflextilde</key>\n    <string>ocircumflextilde.glif</string>\n    <key>odieresis</key>\n    <string>odieresis.glif</string>\n    <key>odotbelow</key>\n    <string>odotbelow.glif</string>\n    <key>oe</key>\n    <string>oe.glif</string>\n    <key>ogonek</key>\n    <string>ogonek.glif</string>\n    <key>ogonekcomb</key>\n    <string>ogonekcomb.glif</string>\n    <key>ograve</key>\n    <string>ograve.glif</string>\n    <key>ohookabove</key>\n    <string>ohookabove.glif</string>\n    <key>ohorn</key>\n    <string>ohorn.glif</string>\n    <key>ohornacute</key>\n    <string>ohornacute.glif</string>\n    <key>ohorndotbelow</key>\n    <string>ohorndotbelow.glif</string>\n    <key>ohorngrave</key>\n    <string>ohorngrave.glif</string>\n    <key>ohornhookabove</key>\n    <string>ohornhookabove.glif</string>\n    <key>ohorntilde</key>\n    <string>ohorntilde.glif</string>\n    <key>ohungarumlaut</key>\n    <string>ohungarumlaut.glif</string>\n    <key>omacron</key>\n    <string>omacron.glif</string>\n    <key>omacronacute</key>\n    <string>omacronacute.glif</string>\n    <key>omacrongrave</key>\n    <string>omacrongrave.glif</string>\n    <key>omega</key>\n    <string>omega.glif</string>\n    <key>omegatonos</key>\n    <string>omegatonos.glif</string>\n    <key>omicron</key>\n    <string>omicron.glif</string>\n    <key>omicrontonos</key>\n    <string>omicrontonos.glif</string>\n    <key>one</key>\n    <string>one.glif</string>\n    <key>one.dnom</key>\n    <string>one.dnom.glif</string>\n    <key>one.half</key>\n    <string>one.half.glif</string>\n    <key>one.numr</key>\n    <string>one.numr.glif</string>\n    <key>onedotenleader</key>\n    <string>onedotenleader.glif</string>\n    <key>oneeighth</key>\n    <string>oneeighth.glif</string>\n    <key>oneeighth.BRACKET.500</key>\n    <string>oneeighth.B_R_A_C_K_E_T_.500.glif</string>\n    <key>onehalf</key>\n    <string>onehalf.glif</string>\n    <key>onehalf.BRACKET.500</key>\n    <string>onehalf.B_R_A_C_K_E_T_.500.glif</string>\n    <key>oneinferior</key>\n    <string>oneinferior.glif</string>\n    <key>onequarter</key>\n    <string>onequarter.glif</string>\n    <key>onequarter.BRACKET.500</key>\n    <string>onequarter.B_R_A_C_K_E_T_.500.glif</string>\n    <key>onesuperior</key>\n    <string>onesuperior.glif</string>\n    <key>oogonek</key>\n    <string>oogonek.glif</string>\n    <key>oopen</key>\n    <string>oopen.glif</string>\n    <key>ordfeminine</key>\n    <string>ordfeminine.glif</string>\n    <key>ordmasculine</key>\n    <string>ordmasculine.glif</string>\n    <key>orthogonal</key>\n    <string>orthogonal.glif</string>\n    <key>oslash</key>\n    <string>oslash.glif</string>\n    <key>oslashacute</key>\n    <string>oslashacute.glif</string>\n    <key>otilde</key>\n    <string>otilde.glif</string>\n    <key>overline</key>\n    <string>overline.glif</string>\n    <key>p</key>\n    <string>p.glif</string>\n    <key>palochka-cy</key>\n    <string>palochka-cy.glif</string>\n    <key>paragraph</key>\n    <string>paragraph.glif</string>\n    <key>parenleft</key>\n    <string>parenleft.glif</string>\n    <key>parenleft_asterisk.liga</key>\n    <string>parenleft_asterisk.liga.glif</string>\n    <key>parenright</key>\n    <string>parenright.glif</string>\n    <key>partialdiff</key>\n    <string>partialdiff.glif</string>\n    <key>pe-cy</key>\n    <string>pe-cy.glif</string>\n    <key>pe-cy.loclSRB</key>\n    <string>pe-cy.loclS_R_B_.glif</string>\n    <key>percent</key>\n    <string>percent.glif</string>\n    <key>percent_percent.liga</key>\n    <string>percent_percent.liga.glif</string>\n    <key>period</key>\n    <string>period.glif</string>\n    <key>period_equal.liga</key>\n    <string>period_equal.liga.glif</string>\n    <key>period_hyphen.liga</key>\n    <string>period_hyphen.liga.glif</string>\n    <key>period_period.liga</key>\n    <string>period_period.liga.glif</string>\n    <key>period_period_equal.liga</key>\n    <string>period_period_equal.liga.glif</string>\n    <key>period_period_less.liga</key>\n    <string>period_period_less.liga.glif</string>\n    <key>period_period_period.liga</key>\n    <string>period_period_period.liga.glif</string>\n    <key>period_question.liga</key>\n    <string>period_question.liga.glif</string>\n    <key>periodcentered</key>\n    <string>periodcentered.glif</string>\n    <key>perispomenicomb</key>\n    <string>perispomenicomb.glif</string>\n    <key>perthousand</key>\n    <string>perthousand.glif</string>\n    <key>peseta</key>\n    <string>peseta.glif</string>\n    <key>peso</key>\n    <string>peso.glif</string>\n    <key>phi</key>\n    <string>phi.glif</string>\n    <key>pi</key>\n    <string>pi.glif</string>\n    <key>plus</key>\n    <string>plus.glif</string>\n    <key>plus_greater.liga</key>\n    <string>plus_greater.liga.glif</string>\n    <key>plus_plus.liga</key>\n    <string>plus_plus.liga.glif</string>\n    <key>plus_plus_plus.liga</key>\n    <string>plus_plus_plus.liga.glif</string>\n    <key>plusminus</key>\n    <string>plusminus.glif</string>\n    <key>prescription</key>\n    <string>prescription.glif</string>\n    <key>product</key>\n    <string>product.glif</string>\n    <key>psi</key>\n    <string>psi.glif</string>\n    <key>published</key>\n    <string>published.glif</string>\n    <key>punctuationspace</key>\n    <string>punctuationspace.glif</string>\n    <key>q</key>\n    <string>q.glif</string>\n    <key>question</key>\n    <string>question.glif</string>\n    <key>question_colon.liga</key>\n    <string>question_colon.liga.glif</string>\n    <key>question_equal.liga</key>\n    <string>question_equal.liga.glif</string>\n    <key>question_period.liga</key>\n    <string>question_period.liga.glif</string>\n    <key>question_question.liga</key>\n    <string>question_question.liga.glif</string>\n    <key>question_question_equal.liga</key>\n    <string>question_question_equal.liga.glif</string>\n    <key>questiondown</key>\n    <string>questiondown.glif</string>\n    <key>questiongreek</key>\n    <string>questiongreek.glif</string>\n    <key>quotedbl</key>\n    <string>quotedbl.glif</string>\n    <key>quotedblbase</key>\n    <string>quotedblbase.glif</string>\n    <key>quotedblleft</key>\n    <string>quotedblleft.glif</string>\n    <key>quotedblright</key>\n    <string>quotedblright.glif</string>\n    <key>quoteleft</key>\n    <string>quoteleft.glif</string>\n    <key>quotereversed</key>\n    <string>quotereversed.glif</string>\n    <key>quoteright</key>\n    <string>quoteright.glif</string>\n    <key>quotesinglbase</key>\n    <string>quotesinglbase.glif</string>\n    <key>quotesingle</key>\n    <string>quotesingle.glif</string>\n    <key>r</key>\n    <string>r.glif</string>\n    <key>r.salt</key>\n    <string>r.salt.glif</string>\n    <key>racute</key>\n    <string>racute.glif</string>\n    <key>racute.salt</key>\n    <string>racute.salt.glif</string>\n    <key>radical</key>\n    <string>radical.glif</string>\n    <key>ratio</key>\n    <string>ratio.glif</string>\n    <key>rcaron</key>\n    <string>rcaron.glif</string>\n    <key>rcaron.salt</key>\n    <string>rcaron.salt.glif</string>\n    <key>rcommaaccent</key>\n    <string>rcommaaccent.glif</string>\n    <key>rcommaaccent.salt</key>\n    <string>rcommaaccent.salt.glif</string>\n    <key>rdotbelow</key>\n    <string>rdotbelow.glif</string>\n    <key>rdotbelow.salt</key>\n    <string>rdotbelow.salt.glif</string>\n    <key>recordSeparatorControl</key>\n    <string>recordS_eparatorC_ontrol.glif</string>\n    <key>registered</key>\n    <string>registered.glif</string>\n    <key>replacementCharacter</key>\n    <string>replacementC_haracter.glif</string>\n    <key>returnsymbol</key>\n    <string>returnsymbol.glif</string>\n    <key>reversedRotatedFloralHeartBullet</key>\n    <string>reversedR_otatedF_loralH_eartB_ullet.glif</string>\n    <key>rho</key>\n    <string>rho.glif</string>\n    <key>rightArrow</key>\n    <string>rightA_rrow.glif</string>\n    <key>rightBlackPointer</key>\n    <string>rightB_lackP_ointer.glif</string>\n    <key>rightBlackSmallTriangle</key>\n    <string>rightB_lackS_mallT_riangle.glif</string>\n    <key>rightBlackTriangle</key>\n    <string>rightB_lackT_riangle.glif</string>\n    <key>rightBlock</key>\n    <string>rightB_lock.glif</string>\n    <key>rightBlock.stypo</key>\n    <string>rightB_lock.stypo.glif</string>\n    <key>rightHalfBlackCircle</key>\n    <string>rightH_alfB_lackC_ircle.glif</string>\n    <key>rightHalfBlackDiamond</key>\n    <string>rightH_alfB_lackD_iamond.glif</string>\n    <key>rightHalfBlackSquare</key>\n    <string>rightH_alfB_lackS_quare.glif</string>\n    <key>rightHalfBlackWhiteCircle</key>\n    <string>rightH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>rightOneEighthBlock</key>\n    <string>rightO_neE_ighthB_lock.glif</string>\n    <key>rightOneEighthBlock.stypo</key>\n    <string>rightO_neE_ighthB_lock.stypo.glif</string>\n    <key>rightWhitePointer</key>\n    <string>rightW_hiteP_ointer.glif</string>\n    <key>rightWhiteSmallTriangle</key>\n    <string>rightW_hiteS_mallT_riangle.glif</string>\n    <key>rightWhiteTriangle</key>\n    <string>rightW_hiteT_riangle.glif</string>\n    <key>ring</key>\n    <string>ring.glif</string>\n    <key>ringbelowcomb</key>\n    <string>ringbelowcomb.glif</string>\n    <key>ringcomb</key>\n    <string>ringcomb.glif</string>\n    <key>ringcomb.case</key>\n    <string>ringcomb.case.glif</string>\n    <key>rotatedFloralHeartBullet</key>\n    <string>rotatedF_loralH_eartB_ullet.glif</string>\n    <key>ruble</key>\n    <string>ruble.glif</string>\n    <key>rupee</key>\n    <string>rupee.glif</string>\n    <key>rupeeIndian</key>\n    <string>rupeeI_ndian.glif</string>\n    <key>s</key>\n    <string>s.glif</string>\n    <key>s.salt</key>\n    <string>s.salt.glif</string>\n    <key>sacute</key>\n    <string>sacute.glif</string>\n    <key>sacute.loclPLK</key>\n    <string>sacute.loclP_L_K_.glif</string>\n    <key>sacute.salt</key>\n    <string>sacute.salt.glif</string>\n    <key>scaron</key>\n    <string>scaron.glif</string>\n    <key>scaron.salt</key>\n    <string>scaron.salt.glif</string>\n    <key>scedilla</key>\n    <string>scedilla.glif</string>\n    <key>scedilla.salt</key>\n    <string>scedilla.salt.glif</string>\n    <key>schwa</key>\n    <string>schwa.glif</string>\n    <key>schwa-cy</key>\n    <string>schwa-cy.glif</string>\n    <key>scircumflex</key>\n    <string>scircumflex.glif</string>\n    <key>scircumflex.salt</key>\n    <string>scircumflex.salt.glif</string>\n    <key>scommaaccent</key>\n    <string>scommaaccent.glif</string>\n    <key>scommaaccent.salt</key>\n    <string>scommaaccent.salt.glif</string>\n    <key>sdotbelow</key>\n    <string>sdotbelow.glif</string>\n    <key>sdotbelow.salt</key>\n    <string>sdotbelow.salt.glif</string>\n    <key>second</key>\n    <string>second.glif</string>\n    <key>section</key>\n    <string>section.glif</string>\n    <key>semicolon</key>\n    <string>semicolon.glif</string>\n    <key>semicolon_semicolon.liga</key>\n    <string>semicolon_semicolon.liga.glif</string>\n    <key>seven</key>\n    <string>seven.glif</string>\n    <key>seven.dnom</key>\n    <string>seven.dnom.glif</string>\n    <key>seven.numr</key>\n    <string>seven.numr.glif</string>\n    <key>seveneighths</key>\n    <string>seveneighths.glif</string>\n    <key>seveneighths.BRACKET.500</key>\n    <string>seveneighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>seveninferior</key>\n    <string>seveninferior.glif</string>\n    <key>sevensuperior</key>\n    <string>sevensuperior.glif</string>\n    <key>sha-cy</key>\n    <string>sha-cy.glif</string>\n    <key>shadedark</key>\n    <string>shadedark.glif</string>\n    <key>shadedark.stypo</key>\n    <string>shadedark.stypo.glif</string>\n    <key>shadelight</key>\n    <string>shadelight.glif</string>\n    <key>shadelight.stypo</key>\n    <string>shadelight.stypo.glif</string>\n    <key>shademedium</key>\n    <string>shademedium.glif</string>\n    <key>shademedium.stypo</key>\n    <string>shademedium.stypo.glif</string>\n    <key>shcha-cy</key>\n    <string>shcha-cy.glif</string>\n    <key>sheqel</key>\n    <string>sheqel.glif</string>\n    <key>shha-cy</key>\n    <string>shha-cy.glif</string>\n    <key>shha-cy.alt</key>\n    <string>shha-cy.alt.glif</string>\n    <key>shiftInControl</key>\n    <string>shiftI_nC_ontrol.glif</string>\n    <key>shiftInControl.ss20</key>\n    <string>shiftI_nC_ontrol.ss20.glif</string>\n    <key>shiftOutControl</key>\n    <string>shiftO_utC_ontrol.glif</string>\n    <key>shiftOutControl.ss20</key>\n    <string>shiftO_utC_ontrol.ss20.glif</string>\n    <key>sigma</key>\n    <string>sigma.glif</string>\n    <key>sigmafinal</key>\n    <string>sigmafinal.glif</string>\n    <key>six</key>\n    <string>six.glif</string>\n    <key>six.dnom</key>\n    <string>six.dnom.glif</string>\n    <key>six.numr</key>\n    <string>six.numr.glif</string>\n    <key>sixinferior</key>\n    <string>sixinferior.glif</string>\n    <key>sixsuperior</key>\n    <string>sixsuperior.glif</string>\n    <key>slash</key>\n    <string>slash.glif</string>\n    <key>slash_asterisk.liga</key>\n    <string>slash_asterisk.liga.glif</string>\n    <key>slash_backslash.liga</key>\n    <string>slash_backslash.liga.glif</string>\n    <key>slash_equal_end.seq</key>\n    <string>slash_equal_end.seq.glif</string>\n    <key>slash_equal_middle.seq</key>\n    <string>slash_equal_middle.seq.glif</string>\n    <key>slash_equal_start.seq</key>\n    <string>slash_equal_start.seq.glif</string>\n    <key>slash_greater.liga</key>\n    <string>slash_greater.liga.glif</string>\n    <key>slash_slash.liga</key>\n    <string>slash_slash.liga.glif</string>\n    <key>slash_slash_equal_end.seq</key>\n    <string>slash_slash_equal_end.seq.glif</string>\n    <key>slash_slash_equal_middle.seq</key>\n    <string>slash_slash_equal_middle.seq.glif</string>\n    <key>slash_slash_equal_start.seq</key>\n    <string>slash_slash_equal_start.seq.glif</string>\n    <key>slash_slash_slash.liga</key>\n    <string>slash_slash_slash.liga.glif</string>\n    <key>softhyphen</key>\n    <string>softhyphen.glif</string>\n    <key>softsign-cy</key>\n    <string>softsign-cy.glif</string>\n    <key>space</key>\n    <string>space.glif</string>\n    <key>spaceControl</key>\n    <string>spaceC_ontrol.glif</string>\n    <key>spadeBlackSuit</key>\n    <string>spadeB_lackS_uit.glif</string>\n    <key>startOfHeadingControl</key>\n    <string>startO_fH_eadingC_ontrol.glif</string>\n    <key>startOfHeadingControl.ss20</key>\n    <string>startO_fH_eadingC_ontrol.ss20.glif</string>\n    <key>startOfTextControl</key>\n    <string>startO_fT_extC_ontrol.glif</string>\n    <key>startOfTextControl.ss20</key>\n    <string>startO_fT_extC_ontrol.ss20.glif</string>\n    <key>sterling</key>\n    <string>sterling.glif</string>\n    <key>strictlyequivalentto</key>\n    <string>strictlyequivalentto.glif</string>\n    <key>substituteControl</key>\n    <string>substituteC_ontrol.glif</string>\n    <key>substituteControl.ss20</key>\n    <string>substituteC_ontrol.ss20.glif</string>\n    <key>substituteFormTwoControl</key>\n    <string>substituteF_ormT_woC_ontrol.glif</string>\n    <key>summation</key>\n    <string>summation.glif</string>\n    <key>sunWithRays</key>\n    <string>sunW_ithR_ays.glif</string>\n    <key>synchronousIdleControl</key>\n    <string>synchronousI_dleC_ontrol.glif</string>\n    <key>synchronousIdleControl.ss20</key>\n    <string>synchronousI_dleC_ontrol.ss20.glif</string>\n    <key>t</key>\n    <string>t.glif</string>\n    <key>tau</key>\n    <string>tau.glif</string>\n    <key>tbar</key>\n    <string>tbar.glif</string>\n    <key>tcaron</key>\n    <string>tcaron.glif</string>\n    <key>tcedilla</key>\n    <string>tcedilla.glif</string>\n    <key>tcommaaccent</key>\n    <string>tcommaaccent.glif</string>\n    <key>te-cy</key>\n    <string>te-cy.glif</string>\n    <key>te-cy.loclSRB</key>\n    <string>te-cy.loclS_R_B_.glif</string>\n    <key>tenge</key>\n    <string>tenge.glif</string>\n    <key>tesh</key>\n    <string>tesh.glif</string>\n    <key>theta</key>\n    <string>theta.glif</string>\n    <key>thetamod</key>\n    <string>thetamod.glif</string>\n    <key>thorn</key>\n    <string>thorn.glif</string>\n    <key>three</key>\n    <string>three.glif</string>\n    <key>three.dnom</key>\n    <string>three.dnom.glif</string>\n    <key>three.half</key>\n    <string>three.half.glif</string>\n    <key>three.numr</key>\n    <string>three.numr.glif</string>\n    <key>threeeighths</key>\n    <string>threeeighths.glif</string>\n    <key>threeeighths.BRACKET.500</key>\n    <string>threeeighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>threeinferior</key>\n    <string>threeinferior.glif</string>\n    <key>threequarters</key>\n    <string>threequarters.glif</string>\n    <key>threequarters.BRACKET.500</key>\n    <string>threequarters.B_R_A_C_K_E_T_.500.glif</string>\n    <key>threesuperior</key>\n    <string>threesuperior.glif</string>\n    <key>tilde</key>\n    <string>tilde.glif</string>\n    <key>tildecomb</key>\n    <string>tildecomb.glif</string>\n    <key>tildecomb.case</key>\n    <string>tildecomb.case.glif</string>\n    <key>tonos</key>\n    <string>tonos.glif</string>\n    <key>tonos.case</key>\n    <string>tonos.case.glif</string>\n    <key>topHalfBlackCircle</key>\n    <string>topH_alfB_lackC_ircle.glif</string>\n    <key>topHalfBlackDiamond</key>\n    <string>topH_alfB_lackD_iamond.glif</string>\n    <key>topHalfWhiteSquare</key>\n    <string>topH_alfW_hiteS_quare.glif</string>\n    <key>topRightHalfWhiteSquare</key>\n    <string>topR_ightH_alfW_hiteS_quare.glif</string>\n    <key>trademark</key>\n    <string>trademark.glif</string>\n    <key>tse-cy</key>\n    <string>tse-cy.glif</string>\n    <key>tshe-cy</key>\n    <string>tshe-cy.glif</string>\n    <key>tugrik</key>\n    <string>tugrik.glif</string>\n    <key>two</key>\n    <string>two.glif</string>\n    <key>two.dnom</key>\n    <string>two.dnom.glif</string>\n    <key>two.half</key>\n    <string>two.half.glif</string>\n    <key>two.numr</key>\n    <string>two.numr.glif</string>\n    <key>twoinferior</key>\n    <string>twoinferior.glif</string>\n    <key>twosuperior</key>\n    <string>twosuperior.glif</string>\n    <key>u</key>\n    <string>u.glif</string>\n    <key>u-cy</key>\n    <string>u-cy.glif</string>\n    <key>uacute</key>\n    <string>uacute.glif</string>\n    <key>ubreve</key>\n    <string>ubreve.glif</string>\n    <key>ucircumflex</key>\n    <string>ucircumflex.glif</string>\n    <key>udieresis</key>\n    <string>udieresis.glif</string>\n    <key>udotbelow</key>\n    <string>udotbelow.glif</string>\n    <key>ugrave</key>\n    <string>ugrave.glif</string>\n    <key>uhookabove</key>\n    <string>uhookabove.glif</string>\n    <key>uhorn</key>\n    <string>uhorn.glif</string>\n    <key>uhornacute</key>\n    <string>uhornacute.glif</string>\n    <key>uhorndotbelow</key>\n    <string>uhorndotbelow.glif</string>\n    <key>uhorngrave</key>\n    <string>uhorngrave.glif</string>\n    <key>uhornhookabove</key>\n    <string>uhornhookabove.glif</string>\n    <key>uhorntilde</key>\n    <string>uhorntilde.glif</string>\n    <key>uhungarumlaut</key>\n    <string>uhungarumlaut.glif</string>\n    <key>umacron</key>\n    <string>umacron.glif</string>\n    <key>umacron-cy</key>\n    <string>umacron-cy.glif</string>\n    <key>underscore</key>\n    <string>underscore.glif</string>\n    <key>underscore_end.seq</key>\n    <string>underscore_end.seq.glif</string>\n    <key>underscore_middle.seq</key>\n    <string>underscore_middle.seq.glif</string>\n    <key>underscore_start.seq</key>\n    <string>underscore_start.seq.glif</string>\n    <key>underscore_underscore.liga</key>\n    <string>underscore_underscore.liga.glif</string>\n    <key>underscoredbl</key>\n    <string>underscoredbl.glif</string>\n    <key>unitSeparatorControl</key>\n    <string>unitS_eparatorC_ontrol.glif</string>\n    <key>uogonek</key>\n    <string>uogonek.glif</string>\n    <key>upArrow</key>\n    <string>upA_rrow.glif</string>\n    <key>upBlackSmallTriangle</key>\n    <string>upB_lackS_mallT_riangle.glif</string>\n    <key>upBlackTriangle</key>\n    <string>upB_lackT_riangle.glif</string>\n    <key>upDashArrow</key>\n    <string>upD_ashA_rrow.glif</string>\n    <key>upDownArrow</key>\n    <string>upD_ownA_rrow.glif</string>\n    <key>upDownbaseArrow</key>\n    <string>upD_ownbaseA_rrow.glif</string>\n    <key>upLeftHalfBlackTriangle</key>\n    <string>upL_eftH_alfB_lackT_riangle.glif</string>\n    <key>upRightHalfBlackTriangle</key>\n    <string>upR_ightH_alfB_lackT_riangle.glif</string>\n    <key>upWhiteSmallTriangle</key>\n    <string>upW_hiteS_mallT_riangle.glif</string>\n    <key>upWhiteTriangle</key>\n    <string>upW_hiteT_riangle.glif</string>\n    <key>upWhiteTriangleWithDot</key>\n    <string>upW_hiteT_riangleW_ithD_ot.glif</string>\n    <key>upperHalfArc</key>\n    <string>upperH_alfA_rc.glif</string>\n    <key>upperHalfBlackWhiteCircle</key>\n    <string>upperH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>upperHalfBlock</key>\n    <string>upperH_alfB_lock.glif</string>\n    <key>upperHalfBlock.stypo</key>\n    <string>upperH_alfB_lock.stypo.glif</string>\n    <key>upperHalfInverseWhiteCircle</key>\n    <string>upperH_alfI_nverseW_hiteC_ircle.glif</string>\n    <key>upperLeftAndLowerLeftAndLowerRightBlock</key>\n    <string>upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftAndLowerRightBlock</key>\n    <string>upperL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftAndUpperRightAndLowerLeftBlock</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif</string>\n    <key>upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif</string>\n    <key>upperLeftAndUpperRightAndLowerRightBlock</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftArc</key>\n    <string>upperL_eftA_rc.glif</string>\n    <key>upperLeftBlackTriangle</key>\n    <string>upperL_eftB_lackT_riangle.glif</string>\n    <key>upperLeftBlock</key>\n    <string>upperL_eftB_lock.glif</string>\n    <key>upperLeftBlock.stypo</key>\n    <string>upperL_eftB_lock.stypo.glif</string>\n    <key>upperLeftDiagonalHalfBlackSquare</key>\n    <string>upperL_eftD_iagonalH_alfB_lackS_quare.glif</string>\n    <key>upperLeftQuadrantWhiteCircle</key>\n    <string>upperL_eftQ_uadrantW_hiteC_ircle.glif</string>\n    <key>upperLeftTriangle</key>\n    <string>upperL_eftT_riangle.glif</string>\n    <key>upperLeftWhiteCircle</key>\n    <string>upperL_eftW_hiteC_ircle.glif</string>\n    <key>upperOneEighthBlock</key>\n    <string>upperO_neE_ighthB_lock.glif</string>\n    <key>upperOneEighthBlock.stypo</key>\n    <string>upperO_neE_ighthB_lock.stypo.glif</string>\n    <key>upperRightAndLowerLeftAndLowerRightBlock</key>\n    <string>upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n    <string>upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperRightAndLowerLeftBlock</key>\n    <string>upperR_ightA_ndL_owerL_eftB_lock.glif</string>\n    <key>upperRightAndLowerLeftBlock.stypo</key>\n    <string>upperR_ightA_ndL_owerL_eftB_lock.stypo.glif</string>\n    <key>upperRightArc</key>\n    <string>upperR_ightA_rc.glif</string>\n    <key>upperRightBlackCircle</key>\n    <string>upperR_ightB_lackC_ircle.glif</string>\n    <key>upperRightBlackTriangle</key>\n    <string>upperR_ightB_lackT_riangle.glif</string>\n    <key>upperRightBlock</key>\n    <string>upperR_ightB_lock.glif</string>\n    <key>upperRightBlock.stypo</key>\n    <string>upperR_ightB_lock.stypo.glif</string>\n    <key>upperRightQuadrantWhiteCircle</key>\n    <string>upperR_ightQ_uadrantW_hiteC_ircle.glif</string>\n    <key>upperRightTriangle</key>\n    <string>upperR_ightT_riangle.glif</string>\n    <key>upperlefttolowerrightFillSquare</key>\n    <string>upperlefttolowerrightF_illS_quare.glif</string>\n    <key>upperrighttolowerleftFillSquare</key>\n    <string>upperrighttolowerleftF_illS_quare.glif</string>\n    <key>upsilon</key>\n    <string>upsilon.glif</string>\n    <key>upsilon-latin</key>\n    <string>upsilon-latin.glif</string>\n    <key>upsilondieresis</key>\n    <string>upsilondieresis.glif</string>\n    <key>upsilondieresistonos</key>\n    <string>upsilondieresistonos.glif</string>\n    <key>upsilontonos</key>\n    <string>upsilontonos.glif</string>\n    <key>uring</key>\n    <string>uring.glif</string>\n    <key>ushort-cy</key>\n    <string>ushort-cy.glif</string>\n    <key>ustraight-cy</key>\n    <string>ustraight-cy.glif</string>\n    <key>ustraightstroke-cy</key>\n    <string>ustraightstroke-cy.glif</string>\n    <key>utilde</key>\n    <string>utilde.glif</string>\n    <key>v</key>\n    <string>v.glif</string>\n    <key>ve-cy</key>\n    <string>ve-cy.glif</string>\n    <key>ve-cy.salt</key>\n    <string>ve-cy.salt.glif</string>\n    <key>vectorOrCrossProduct</key>\n    <string>vectorO_rC_rossP_roduct.glif</string>\n    <key>venus</key>\n    <string>venus.glif</string>\n    <key>verticalBisectingLineWhiteSquare</key>\n    <string>verticalB_isectingL_ineW_hiteS_quare.glif</string>\n    <key>verticalFillCircle</key>\n    <string>verticalF_illC_ircle.glif</string>\n    <key>verticalFillSquare</key>\n    <string>verticalF_illS_quare.glif</string>\n    <key>verticalTabulationControl</key>\n    <string>verticalT_abulationC_ontrol.glif</string>\n    <key>verticalTabulationControl.ss20</key>\n    <string>verticalT_abulationC_ontrol.ss20.glif</string>\n    <key>vhook</key>\n    <string>vhook.glif</string>\n    <key>vturned</key>\n    <string>vturned.glif</string>\n    <key>w</key>\n    <string>w.glif</string>\n    <key>w_w_w.liga</key>\n    <string>w_w_w.liga.glif</string>\n    <key>wacute</key>\n    <string>wacute.glif</string>\n    <key>wcircumflex</key>\n    <string>wcircumflex.glif</string>\n    <key>wdieresis</key>\n    <string>wdieresis.glif</string>\n    <key>wgrave</key>\n    <string>wgrave.glif</string>\n    <key>whiteBullet</key>\n    <string>whiteB_ullet.glif</string>\n    <key>whiteCircle</key>\n    <string>whiteC_ircle.glif</string>\n    <key>whiteDiamond</key>\n    <string>whiteD_iamond.glif</string>\n    <key>whiteHexagon</key>\n    <string>whiteH_exagon.glif</string>\n    <key>whiteHorizontalEllipse</key>\n    <string>whiteH_orizontalE_llipse.glif</string>\n    <key>whiteInBlackSquare</key>\n    <string>whiteI_nB_lackS_quare.glif</string>\n    <key>whiteLargeSquare</key>\n    <string>whiteL_argeS_quare.glif</string>\n    <key>whiteLowerLeftQuadrantSquare</key>\n    <string>whiteL_owerL_eftQ_uadrantS_quare.glif</string>\n    <key>whiteLowerRightQuadrantSquare</key>\n    <string>whiteL_owerR_ightQ_uadrantS_quare.glif</string>\n    <key>whiteMediumDiamond</key>\n    <string>whiteM_ediumD_iamond.glif</string>\n    <key>whiteMediumLozenge</key>\n    <string>whiteM_ediumL_ozenge.glif</string>\n    <key>whiteParallelogram</key>\n    <string>whiteP_arallelogram.glif</string>\n    <key>whitePentagon</key>\n    <string>whiteP_entagon.glif</string>\n    <key>whiteRect</key>\n    <string>whiteR_ect.glif</string>\n    <key>whiteRoundedCornersSquare</key>\n    <string>whiteR_oundedC_ornersS_quare.glif</string>\n    <key>whiteSmallLozenge</key>\n    <string>whiteS_mallL_ozenge.glif</string>\n    <key>whiteSmallSquare</key>\n    <string>whiteS_mallS_quare.glif</string>\n    <key>whiteSmilingFace</key>\n    <string>whiteS_milingF_ace.glif</string>\n    <key>whiteSquare</key>\n    <string>whiteS_quare.glif</string>\n    <key>whiteUpperLeftQuadrantSquare</key>\n    <string>whiteU_pperL_eftQ_uadrantS_quare.glif</string>\n    <key>whiteUpperRightQuadrantSquare</key>\n    <string>whiteU_pperR_ightQ_uadrantS_quare.glif</string>\n    <key>whiteVerticalEllipse</key>\n    <string>whiteV_erticalE_llipse.glif</string>\n    <key>whiteVerticalRect</key>\n    <string>whiteV_erticalR_ect.glif</string>\n    <key>whiteVerysmallSquare</key>\n    <string>whiteV_erysmallS_quare.glif</string>\n    <key>wmod</key>\n    <string>wmod.glif</string>\n    <key>won</key>\n    <string>won.glif</string>\n    <key>x</key>\n    <string>x.glif</string>\n    <key>x.multiply</key>\n    <string>x.multiply.glif</string>\n    <key>xi</key>\n    <string>xi.glif</string>\n    <key>y</key>\n    <string>y.glif</string>\n    <key>yacute</key>\n    <string>yacute.glif</string>\n    <key>ycircumflex</key>\n    <string>ycircumflex.glif</string>\n    <key>ydieresis</key>\n    <string>ydieresis.glif</string>\n    <key>ydotbelow</key>\n    <string>ydotbelow.glif</string>\n    <key>yen</key>\n    <string>yen.glif</string>\n    <key>yeru-cy</key>\n    <string>yeru-cy.glif</string>\n    <key>ygrave</key>\n    <string>ygrave.glif</string>\n    <key>yhookabove</key>\n    <string>yhookabove.glif</string>\n    <key>yi-cy</key>\n    <string>yi-cy.glif</string>\n    <key>ymacron</key>\n    <string>ymacron.glif</string>\n    <key>ymod</key>\n    <string>ymod.glif</string>\n    <key>ytilde</key>\n    <string>ytilde.glif</string>\n    <key>z</key>\n    <string>z.glif</string>\n    <key>zacute</key>\n    <string>zacute.glif</string>\n    <key>zacute.loclPLK</key>\n    <string>zacute.loclP_L_K_.glif</string>\n    <key>zcaron</key>\n    <string>zcaron.glif</string>\n    <key>zdotaccent</key>\n    <string>zdotaccent.glif</string>\n    <key>ze-cy</key>\n    <string>ze-cy.glif</string>\n    <key>ze-cy.loclBGR</key>\n    <string>ze-cy.loclB_G_R_.glif</string>\n    <key>ze-cy.salt</key>\n    <string>ze-cy.salt.glif</string>\n    <key>zero</key>\n    <string>zero.glif</string>\n    <key>zero.dnom</key>\n    <string>zero.dnom.glif</string>\n    <key>zero.numr</key>\n    <string>zero.numr.glif</string>\n    <key>zero.zero</key>\n    <string>zero.zero.glif</string>\n    <key>zeroinferior</key>\n    <string>zeroinferior.glif</string>\n    <key>zerosuperior</key>\n    <string>zerosuperior.glif</string>\n    <key>zeta</key>\n    <string>zeta.glif</string>\n    <key>zhe-cy</key>\n    <string>zhe-cy.glif</string>\n    <key>zhe-cy.loclBGR</key>\n    <string>zhe-cy.loclB_G_R_.glif</string>\n    <key>zhedescender-cy</key>\n    <string>zhedescender-cy.glif</string>\n    <key>zmod</key>\n    <string>zmod.glif</string>\n    <key>checkerBoardDeleteApple2</key>\n    <string>checkerB_oardD_eleteA_pple2.glif</string>\n    <key>checkerBoardDeleteTrs80</key>\n    <string>checkerB_oardD_eleteT_rs80.glif</string>\n    <key>checkerBoardDeleteAmstradCpc</key>\n    <string>checkerB_oardD_eleteA_mstradC_pc.glif</string>\n    <key>checkerBoardDeleteAmstradCpc.stypo</key>\n    <string>checkerB_oardD_eleteA_mstradC_pc.stypo.glif</string>\n    <key>checkerBoardFill</key>\n    <string>checkerB_oardF_ill.glif</string>\n    <key>checkerBoardFill.stypo</key>\n    <string>checkerB_oardF_ill.stypo.glif</string>\n    <key>checkerBoardFillInverse</key>\n    <string>checkerB_oardF_illI_nverse.glif</string>\n    <key>checkerBoardFillInverse.stypo</key>\n    <string>checkerB_oardF_illI_nverse.stypo.glif</string>\n    <key>blockQuadrant-UC</key>\n    <string>blockQ_uadrant-UC.glif</string>\n    <key>blockQuadrant-UC.stypo</key>\n    <string>blockQ_uadrant-UC.stypo.glif</string>\n    <key>blockQuadrant-LC</key>\n    <string>blockQ_uadrant-LC.glif</string>\n    <key>blockQuadrant-LC.stypo</key>\n    <string>blockQ_uadrant-LC.stypo.glif</string>\n    <key>blockQuadrant-ML</key>\n    <string>blockQ_uadrant-ML.glif</string>\n    <key>blockQuadrant-ML.stypo</key>\n    <string>blockQ_uadrant-ML.stypo.glif</string>\n    <key>blockQuadrant-MR</key>\n    <string>blockQ_uadrant-MR.glif</string>\n    <key>blockQuadrant-MR.stypo</key>\n    <string>blockQ_uadrant-MR.stypo.glif</string>\n    <key>blockTriangle-1</key>\n    <string>blockT_riangle-1.glif</string>\n    <key>blockTriangle-1.stypo</key>\n    <string>blockT_riangle-1.stypo.glif</string>\n    <key>blockTriangle-2</key>\n    <string>blockT_riangle-2.glif</string>\n    <key>blockTriangle-2.stypo</key>\n    <string>blockT_riangle-2.stypo.glif</string>\n    <key>blockTriangle-3</key>\n    <string>blockT_riangle-3.glif</string>\n    <key>blockTriangle-3.stypo</key>\n    <string>blockT_riangle-3.stypo.glif</string>\n    <key>blockTriangle-4</key>\n    <string>blockT_riangle-4.glif</string>\n    <key>blockTriangle-4.stypo</key>\n    <string>blockT_riangle-4.stypo.glif</string>\n    <key>blockTriangle-14</key>\n    <string>blockT_riangle-14.glif</string>\n    <key>blockTriangle-14.stypo</key>\n    <string>blockT_riangle-14.stypo.glif</string>\n    <key>blockTriangle-23</key>\n    <string>blockT_riangle-23.glif</string>\n    <key>blockTriangle-23.stypo</key>\n    <string>blockT_riangle-23.stypo.glif</string>\n    <key>blockTriangle-123</key>\n    <string>blockT_riangle-123.glif</string>\n    <key>blockTriangle-123.stypo</key>\n    <string>blockT_riangle-123.stypo.glif</string>\n    <key>blockTriangle-124</key>\n    <string>blockT_riangle-124.glif</string>\n    <key>blockTriangle-124.stypo</key>\n    <string>blockT_riangle-124.stypo.glif</string>\n    <key>blockTriangle-134</key>\n    <string>blockT_riangle-134.glif</string>\n    <key>blockTriangle-134.stypo</key>\n    <string>blockT_riangle-134.stypo.glif</string>\n    <key>blockTriangle-234</key>\n    <string>blockT_riangle-234.glif</string>\n    <key>blockTriangle-234.stypo</key>\n    <string>blockT_riangle-234.stypo.glif</string>\n    <key>blockCircle-UC</key>\n    <string>blockC_ircle-UC.glif</string>\n    <key>blockCircle-UC.stypo</key>\n    <string>blockC_ircle-UC.stypo.glif</string>\n    <key>blockCircle-LC</key>\n    <string>blockC_ircle-LC.glif</string>\n    <key>blockCircle-LC.stypo</key>\n    <string>blockC_ircle-LC.stypo.glif</string>\n    <key>blockCircle-ML</key>\n    <string>blockC_ircle-ML.glif</string>\n    <key>blockCircle-ML.stypo</key>\n    <string>blockC_ircle-ML.stypo.glif</string>\n    <key>blockCircle-MR</key>\n    <string>blockC_ircle-MR.glif</string>\n    <key>blockCircle-MR.stypo</key>\n    <string>blockC_ircle-MR.stypo.glif</string>\n    <key>blockCircle-1</key>\n    <string>blockC_ircle-1.glif</string>\n    <key>blockCircle-1.stypo</key>\n    <string>blockC_ircle-1.stypo.glif</string>\n    <key>blockCircle-2</key>\n    <string>blockC_ircle-2.glif</string>\n    <key>blockCircle-2.stypo</key>\n    <string>blockC_ircle-2.stypo.glif</string>\n    <key>blockCircle-3</key>\n    <string>blockC_ircle-3.glif</string>\n    <key>blockCircle-3.stypo</key>\n    <string>blockC_ircle-3.stypo.glif</string>\n    <key>blockCircle-4</key>\n    <string>blockC_ircle-4.glif</string>\n    <key>blockCircle-4.stypo</key>\n    <string>blockC_ircle-4.stypo.glif</string>\n    <key>blockSextant-1</key>\n    <string>blockS_extant-1.glif</string>\n    <key>blockSextant-1.stypo</key>\n    <string>blockS_extant-1.stypo.glif</string>\n    <key>blockSextant-2</key>\n    <string>blockS_extant-2.glif</string>\n    <key>blockSextant-2.stypo</key>\n    <string>blockS_extant-2.stypo.glif</string>\n    <key>blockSextant-12</key>\n    <string>blockS_extant-12.glif</string>\n    <key>blockSextant-12.stypo</key>\n    <string>blockS_extant-12.stypo.glif</string>\n    <key>blockSextant-3</key>\n    <string>blockS_extant-3.glif</string>\n    <key>blockSextant-3.stypo</key>\n    <string>blockS_extant-3.stypo.glif</string>\n    <key>blockSextant-13</key>\n    <string>blockS_extant-13.glif</string>\n    <key>blockSextant-13.stypo</key>\n    <string>blockS_extant-13.stypo.glif</string>\n    <key>blockSextant-23</key>\n    <string>blockS_extant-23.glif</string>\n    <key>blockSextant-23.stypo</key>\n    <string>blockS_extant-23.stypo.glif</string>\n    <key>blockSextant-123</key>\n    <string>blockS_extant-123.glif</string>\n    <key>blockSextant-123.stypo</key>\n    <string>blockS_extant-123.stypo.glif</string>\n    <key>blockSextant-4</key>\n    <string>blockS_extant-4.glif</string>\n    <key>blockSextant-4.stypo</key>\n    <string>blockS_extant-4.stypo.glif</string>\n    <key>blockSextant-14</key>\n    <string>blockS_extant-14.glif</string>\n    <key>blockSextant-14.stypo</key>\n    <string>blockS_extant-14.stypo.glif</string>\n    <key>blockSextant-24</key>\n    <string>blockS_extant-24.glif</string>\n    <key>blockSextant-24.stypo</key>\n    <string>blockS_extant-24.stypo.glif</string>\n    <key>blockSextant-124</key>\n    <string>blockS_extant-124.glif</string>\n    <key>blockSextant-124.stypo</key>\n    <string>blockS_extant-124.stypo.glif</string>\n    <key>blockSextant-34</key>\n    <string>blockS_extant-34.glif</string>\n    <key>blockSextant-34.stypo</key>\n    <string>blockS_extant-34.stypo.glif</string>\n    <key>blockSextant-134</key>\n    <string>blockS_extant-134.glif</string>\n    <key>blockSextant-134.stypo</key>\n    <string>blockS_extant-134.stypo.glif</string>\n    <key>blockSextant-234</key>\n    <string>blockS_extant-234.glif</string>\n    <key>blockSextant-234.stypo</key>\n    <string>blockS_extant-234.stypo.glif</string>\n    <key>blockSextant-1234</key>\n    <string>blockS_extant-1234.glif</string>\n    <key>blockSextant-1234.stypo</key>\n    <string>blockS_extant-1234.stypo.glif</string>\n    <key>blockSextant-5</key>\n    <string>blockS_extant-5.glif</string>\n    <key>blockSextant-5.stypo</key>\n    <string>blockS_extant-5.stypo.glif</string>\n    <key>blockSextant-15</key>\n    <string>blockS_extant-15.glif</string>\n    <key>blockSextant-15.stypo</key>\n    <string>blockS_extant-15.stypo.glif</string>\n    <key>blockSextant-25</key>\n    <string>blockS_extant-25.glif</string>\n    <key>blockSextant-25.stypo</key>\n    <string>blockS_extant-25.stypo.glif</string>\n    <key>blockSextant-125</key>\n    <string>blockS_extant-125.glif</string>\n    <key>blockSextant-125.stypo</key>\n    <string>blockS_extant-125.stypo.glif</string>\n    <key>blockSextant-35</key>\n    <string>blockS_extant-35.glif</string>\n    <key>blockSextant-35.stypo</key>\n    <string>blockS_extant-35.stypo.glif</string>\n    <key>blockSextant-235</key>\n    <string>blockS_extant-235.glif</string>\n    <key>blockSextant-235.stypo</key>\n    <string>blockS_extant-235.stypo.glif</string>\n    <key>blockSextant-1235</key>\n    <string>blockS_extant-1235.glif</string>\n    <key>blockSextant-1235.stypo</key>\n    <string>blockS_extant-1235.stypo.glif</string>\n    <key>blockSextant-45</key>\n    <string>blockS_extant-45.glif</string>\n    <key>blockSextant-45.stypo</key>\n    <string>blockS_extant-45.stypo.glif</string>\n    <key>blockSextant-145</key>\n    <string>blockS_extant-145.glif</string>\n    <key>blockSextant-145.stypo</key>\n    <string>blockS_extant-145.stypo.glif</string>\n    <key>blockSextant-245</key>\n    <string>blockS_extant-245.glif</string>\n    <key>blockSextant-245.stypo</key>\n    <string>blockS_extant-245.stypo.glif</string>\n    <key>blockSextant-1245</key>\n    <string>blockS_extant-1245.glif</string>\n    <key>blockSextant-1245.stypo</key>\n    <string>blockS_extant-1245.stypo.glif</string>\n    <key>blockSextant-345</key>\n    <string>blockS_extant-345.glif</string>\n    <key>blockSextant-345.stypo</key>\n    <string>blockS_extant-345.stypo.glif</string>\n    <key>blockSextant-1345</key>\n    <string>blockS_extant-1345.glif</string>\n    <key>blockSextant-1345.stypo</key>\n    <string>blockS_extant-1345.stypo.glif</string>\n    <key>blockSextant-2345</key>\n    <string>blockS_extant-2345.glif</string>\n    <key>blockSextant-2345.stypo</key>\n    <string>blockS_extant-2345.stypo.glif</string>\n    <key>blockSextant-12345</key>\n    <string>blockS_extant-12345.glif</string>\n    <key>blockSextant-12345.stypo</key>\n    <string>blockS_extant-12345.stypo.glif</string>\n    <key>blockSextant-6</key>\n    <string>blockS_extant-6.glif</string>\n    <key>blockSextant-6.stypo</key>\n    <string>blockS_extant-6.stypo.glif</string>\n    <key>blockSextant-16</key>\n    <string>blockS_extant-16.glif</string>\n    <key>blockSextant-16.stypo</key>\n    <string>blockS_extant-16.stypo.glif</string>\n    <key>blockSextant-26</key>\n    <string>blockS_extant-26.glif</string>\n    <key>blockSextant-26.stypo</key>\n    <string>blockS_extant-26.stypo.glif</string>\n    <key>blockSextant-126</key>\n    <string>blockS_extant-126.glif</string>\n    <key>blockSextant-126.stypo</key>\n    <string>blockS_extant-126.stypo.glif</string>\n    <key>blockSextant-36</key>\n    <string>blockS_extant-36.glif</string>\n    <key>blockSextant-36.stypo</key>\n    <string>blockS_extant-36.stypo.glif</string>\n    <key>blockSextant-136</key>\n    <string>blockS_extant-136.glif</string>\n    <key>blockSextant-136.stypo</key>\n    <string>blockS_extant-136.stypo.glif</string>\n    <key>blockSextant-236</key>\n    <string>blockS_extant-236.glif</string>\n    <key>blockSextant-236.stypo</key>\n    <string>blockS_extant-236.stypo.glif</string>\n    <key>blockSextant-1236</key>\n    <string>blockS_extant-1236.glif</string>\n    <key>blockSextant-1236.stypo</key>\n    <string>blockS_extant-1236.stypo.glif</string>\n    <key>blockSextant-46</key>\n    <string>blockS_extant-46.glif</string>\n    <key>blockSextant-46.stypo</key>\n    <string>blockS_extant-46.stypo.glif</string>\n    <key>blockSextant-146</key>\n    <string>blockS_extant-146.glif</string>\n    <key>blockSextant-146.stypo</key>\n    <string>blockS_extant-146.stypo.glif</string>\n    <key>blockSextant-1246</key>\n    <string>blockS_extant-1246.glif</string>\n    <key>blockSextant-1246.stypo</key>\n    <string>blockS_extant-1246.stypo.glif</string>\n    <key>blockSextant-346</key>\n    <string>blockS_extant-346.glif</string>\n    <key>blockSextant-346.stypo</key>\n    <string>blockS_extant-346.stypo.glif</string>\n    <key>blockSextant-1346</key>\n    <string>blockS_extant-1346.glif</string>\n    <key>blockSextant-1346.stypo</key>\n    <string>blockS_extant-1346.stypo.glif</string>\n    <key>blockSextant-2346</key>\n    <string>blockS_extant-2346.glif</string>\n    <key>blockSextant-2346.stypo</key>\n    <string>blockS_extant-2346.stypo.glif</string>\n    <key>blockSextant-12346</key>\n    <string>blockS_extant-12346.glif</string>\n    <key>blockSextant-12346.stypo</key>\n    <string>blockS_extant-12346.stypo.glif</string>\n    <key>blockSextant-56</key>\n    <string>blockS_extant-56.glif</string>\n    <key>blockSextant-56.stypo</key>\n    <string>blockS_extant-56.stypo.glif</string>\n    <key>blockSextant-156</key>\n    <string>blockS_extant-156.glif</string>\n    <key>blockSextant-156.stypo</key>\n    <string>blockS_extant-156.stypo.glif</string>\n    <key>blockSextant-256</key>\n    <string>blockS_extant-256.glif</string>\n    <key>blockSextant-256.stypo</key>\n    <string>blockS_extant-256.stypo.glif</string>\n    <key>blockSextant-1256</key>\n    <string>blockS_extant-1256.glif</string>\n    <key>blockSextant-1256.stypo</key>\n    <string>blockS_extant-1256.stypo.glif</string>\n    <key>blockSextant-356</key>\n    <string>blockS_extant-356.glif</string>\n    <key>blockSextant-356.stypo</key>\n    <string>blockS_extant-356.stypo.glif</string>\n    <key>blockSextant-1356</key>\n    <string>blockS_extant-1356.glif</string>\n    <key>blockSextant-1356.stypo</key>\n    <string>blockS_extant-1356.stypo.glif</string>\n    <key>blockSextant-2356</key>\n    <string>blockS_extant-2356.glif</string>\n    <key>blockSextant-2356.stypo</key>\n    <string>blockS_extant-2356.stypo.glif</string>\n    <key>blockSextant-12356</key>\n    <string>blockS_extant-12356.glif</string>\n    <key>blockSextant-12356.stypo</key>\n    <string>blockS_extant-12356.stypo.glif</string>\n    <key>blockSextant-456</key>\n    <string>blockS_extant-456.glif</string>\n    <key>blockSextant-456.stypo</key>\n    <string>blockS_extant-456.stypo.glif</string>\n    <key>blockSextant-1456</key>\n    <string>blockS_extant-1456.glif</string>\n    <key>blockSextant-1456.stypo</key>\n    <string>blockS_extant-1456.stypo.glif</string>\n    <key>blockSextant-2456</key>\n    <string>blockS_extant-2456.glif</string>\n    <key>blockSextant-2456.stypo</key>\n    <string>blockS_extant-2456.stypo.glif</string>\n    <key>blockSextant-12456</key>\n    <string>blockS_extant-12456.glif</string>\n    <key>blockSextant-12456.stypo</key>\n    <string>blockS_extant-12456.stypo.glif</string>\n    <key>blockSextant-3456</key>\n    <string>blockS_extant-3456.glif</string>\n    <key>blockSextant-3456.stypo</key>\n    <string>blockS_extant-3456.stypo.glif</string>\n    <key>blockSextant-13456</key>\n    <string>blockS_extant-13456.glif</string>\n    <key>blockSextant-13456.stypo</key>\n    <string>blockS_extant-13456.stypo.glif</string>\n    <key>blockSextant-23456</key>\n    <string>blockS_extant-23456.glif</string>\n    <key>blockSextant-23456.stypo</key>\n    <string>blockS_extant-23456.stypo.glif</string>\n    <key>blockDiagonal-1FB3C</key>\n    <string>blockD_iagonal-1FB3C.glif</string>\n    <key>blockDiagonal-1FB3C.stypo</key>\n    <string>blockD_iagonal-1FB3C.stypo.glif</string>\n    <key>blockDiagonal-1FB3D</key>\n    <string>blockD_iagonal-1FB3D.glif</string>\n    <key>blockDiagonal-1FB3D.stypo</key>\n    <string>blockD_iagonal-1FB3D.stypo.glif</string>\n    <key>blockDiagonal-1FB3E</key>\n    <string>blockD_iagonal-1FB3E.glif</string>\n    <key>blockDiagonal-1FB3E.stypo</key>\n    <string>blockD_iagonal-1FB3E.stypo.glif</string>\n    <key>blockDiagonal-1FB3F</key>\n    <string>blockD_iagonal-1FB3F.glif</string>\n    <key>blockDiagonal-1FB3F.stypo</key>\n    <string>blockD_iagonal-1FB3F.stypo.glif</string>\n    <key>blockDiagonal-1FB40</key>\n    <string>blockD_iagonal-1FB40.glif</string>\n    <key>blockDiagonal-1FB40.stypo</key>\n    <string>blockD_iagonal-1FB40.stypo.glif</string>\n    <key>blockDiagonal-1FB41</key>\n    <string>blockD_iagonal-1FB41.glif</string>\n    <key>blockDiagonal-1FB41.stypo</key>\n    <string>blockD_iagonal-1FB41.stypo.glif</string>\n    <key>blockDiagonal-1FB42</key>\n    <string>blockD_iagonal-1FB42.glif</string>\n    <key>blockDiagonal-1FB42.stypo</key>\n    <string>blockD_iagonal-1FB42.stypo.glif</string>\n    <key>blockDiagonal-1FB43</key>\n    <string>blockD_iagonal-1FB43.glif</string>\n    <key>blockDiagonal-1FB43.stypo</key>\n    <string>blockD_iagonal-1FB43.stypo.glif</string>\n    <key>blockDiagonal-1FB44</key>\n    <string>blockD_iagonal-1FB44.glif</string>\n    <key>blockDiagonal-1FB44.stypo</key>\n    <string>blockD_iagonal-1FB44.stypo.glif</string>\n    <key>blockDiagonal-1FB45</key>\n    <string>blockD_iagonal-1FB45.glif</string>\n    <key>blockDiagonal-1FB45.stypo</key>\n    <string>blockD_iagonal-1FB45.stypo.glif</string>\n    <key>blockDiagonal-1FB46</key>\n    <string>blockD_iagonal-1FB46.glif</string>\n    <key>blockDiagonal-1FB46.stypo</key>\n    <string>blockD_iagonal-1FB46.stypo.glif</string>\n    <key>blockDiagonal-1FB47</key>\n    <string>blockD_iagonal-1FB47.glif</string>\n    <key>blockDiagonal-1FB47.stypo</key>\n    <string>blockD_iagonal-1FB47.stypo.glif</string>\n    <key>blockDiagonal-1FB48</key>\n    <string>blockD_iagonal-1FB48.glif</string>\n    <key>blockDiagonal-1FB48.stypo</key>\n    <string>blockD_iagonal-1FB48.stypo.glif</string>\n    <key>blockDiagonal-1FB49</key>\n    <string>blockD_iagonal-1FB49.glif</string>\n    <key>blockDiagonal-1FB49.stypo</key>\n    <string>blockD_iagonal-1FB49.stypo.glif</string>\n    <key>blockDiagonal-1FB4A</key>\n    <string>blockD_iagonal-1FB4A.glif</string>\n    <key>blockDiagonal-1FB4A.stypo</key>\n    <string>blockD_iagonal-1FB4A.stypo.glif</string>\n    <key>blockDiagonal-1FB4B</key>\n    <string>blockD_iagonal-1FB4B.glif</string>\n    <key>blockDiagonal-1FB4B.stypo</key>\n    <string>blockD_iagonal-1FB4B.stypo.glif</string>\n    <key>blockDiagonal-1FB4C</key>\n    <string>blockD_iagonal-1FB4C.glif</string>\n    <key>blockDiagonal-1FB4C.stypo</key>\n    <string>blockD_iagonal-1FB4C.stypo.glif</string>\n    <key>blockDiagonal-1FB4D</key>\n    <string>blockD_iagonal-1FB4D.glif</string>\n    <key>blockDiagonal-1FB4D.stypo</key>\n    <string>blockD_iagonal-1FB4D.stypo.glif</string>\n    <key>blockDiagonal-1FB4E</key>\n    <string>blockD_iagonal-1FB4E.glif</string>\n    <key>blockDiagonal-1FB4E.stypo</key>\n    <string>blockD_iagonal-1FB4E.stypo.glif</string>\n    <key>blockDiagonal-1FB4F</key>\n    <string>blockD_iagonal-1FB4F.glif</string>\n    <key>blockDiagonal-1FB4F.stypo</key>\n    <string>blockD_iagonal-1FB4F.stypo.glif</string>\n    <key>blockDiagonal-1FB50</key>\n    <string>blockD_iagonal-1FB50.glif</string>\n    <key>blockDiagonal-1FB50.stypo</key>\n    <string>blockD_iagonal-1FB50.stypo.glif</string>\n    <key>blockDiagonal-1FB51</key>\n    <string>blockD_iagonal-1FB51.glif</string>\n    <key>blockDiagonal-1FB51.stypo</key>\n    <string>blockD_iagonal-1FB51.stypo.glif</string>\n    <key>blockDiagonal-1FB52</key>\n    <string>blockD_iagonal-1FB52.glif</string>\n    <key>blockDiagonal-1FB52.stypo</key>\n    <string>blockD_iagonal-1FB52.stypo.glif</string>\n    <key>blockDiagonal-1FB53</key>\n    <string>blockD_iagonal-1FB53.glif</string>\n    <key>blockDiagonal-1FB53.stypo</key>\n    <string>blockD_iagonal-1FB53.stypo.glif</string>\n    <key>blockDiagonal-1FB54</key>\n    <string>blockD_iagonal-1FB54.glif</string>\n    <key>blockDiagonal-1FB54.stypo</key>\n    <string>blockD_iagonal-1FB54.stypo.glif</string>\n    <key>blockDiagonal-1FB55</key>\n    <string>blockD_iagonal-1FB55.glif</string>\n    <key>blockDiagonal-1FB55.stypo</key>\n    <string>blockD_iagonal-1FB55.stypo.glif</string>\n    <key>blockDiagonal-1FB56</key>\n    <string>blockD_iagonal-1FB56.glif</string>\n    <key>blockDiagonal-1FB56.stypo</key>\n    <string>blockD_iagonal-1FB56.stypo.glif</string>\n    <key>blockDiagonal-1FB57</key>\n    <string>blockD_iagonal-1FB57.glif</string>\n    <key>blockDiagonal-1FB57.stypo</key>\n    <string>blockD_iagonal-1FB57.stypo.glif</string>\n    <key>blockDiagonal-1FB58</key>\n    <string>blockD_iagonal-1FB58.glif</string>\n    <key>blockDiagonal-1FB58.stypo</key>\n    <string>blockD_iagonal-1FB58.stypo.glif</string>\n    <key>blockDiagonal-1FB59</key>\n    <string>blockD_iagonal-1FB59.glif</string>\n    <key>blockDiagonal-1FB59.stypo</key>\n    <string>blockD_iagonal-1FB59.stypo.glif</string>\n    <key>blockDiagonal-1FB5A</key>\n    <string>blockD_iagonal-1FB5A.glif</string>\n    <key>blockDiagonal-1FB5A.stypo</key>\n    <string>blockD_iagonal-1FB5A.stypo.glif</string>\n    <key>blockDiagonal-1FB5B</key>\n    <string>blockD_iagonal-1FB5B.glif</string>\n    <key>blockDiagonal-1FB5B.stypo</key>\n    <string>blockD_iagonal-1FB5B.stypo.glif</string>\n    <key>blockDiagonal-1FB5C</key>\n    <string>blockD_iagonal-1FB5C.glif</string>\n    <key>blockDiagonal-1FB5C.stypo</key>\n    <string>blockD_iagonal-1FB5C.stypo.glif</string>\n    <key>blockDiagonal-1FB5D</key>\n    <string>blockD_iagonal-1FB5D.glif</string>\n    <key>blockDiagonal-1FB5D.stypo</key>\n    <string>blockD_iagonal-1FB5D.stypo.glif</string>\n    <key>blockDiagonal-1FB5E</key>\n    <string>blockD_iagonal-1FB5E.glif</string>\n    <key>blockDiagonal-1FB5E.stypo</key>\n    <string>blockD_iagonal-1FB5E.stypo.glif</string>\n    <key>blockDiagonal-1FB5F</key>\n    <string>blockD_iagonal-1FB5F.glif</string>\n    <key>blockDiagonal-1FB5F.stypo</key>\n    <string>blockD_iagonal-1FB5F.stypo.glif</string>\n    <key>blockDiagonal-1FB60</key>\n    <string>blockD_iagonal-1FB60.glif</string>\n    <key>blockDiagonal-1FB60.stypo</key>\n    <string>blockD_iagonal-1FB60.stypo.glif</string>\n    <key>blockDiagonal-1FB61</key>\n    <string>blockD_iagonal-1FB61.glif</string>\n    <key>blockDiagonal-1FB61.stypo</key>\n    <string>blockD_iagonal-1FB61.stypo.glif</string>\n    <key>blockDiagonal-1FB62</key>\n    <string>blockD_iagonal-1FB62.glif</string>\n    <key>blockDiagonal-1FB62.stypo</key>\n    <string>blockD_iagonal-1FB62.stypo.glif</string>\n    <key>blockDiagonal-1FB63</key>\n    <string>blockD_iagonal-1FB63.glif</string>\n    <key>blockDiagonal-1FB63.stypo</key>\n    <string>blockD_iagonal-1FB63.stypo.glif</string>\n    <key>blockDiagonal-1FB64</key>\n    <string>blockD_iagonal-1FB64.glif</string>\n    <key>blockDiagonal-1FB64.stypo</key>\n    <string>blockD_iagonal-1FB64.stypo.glif</string>\n    <key>blockDiagonal-1FB65</key>\n    <string>blockD_iagonal-1FB65.glif</string>\n    <key>blockDiagonal-1FB65.stypo</key>\n    <string>blockD_iagonal-1FB65.stypo.glif</string>\n    <key>blockDiagonal-1FB66</key>\n    <string>blockD_iagonal-1FB66.glif</string>\n    <key>blockDiagonal-1FB66.stypo</key>\n    <string>blockD_iagonal-1FB66.stypo.glif</string>\n    <key>blockDiagonal-1FB67</key>\n    <string>blockD_iagonal-1FB67.glif</string>\n    <key>blockDiagonal-1FB67.stypo</key>\n    <string>blockD_iagonal-1FB67.stypo.glif</string>\n    <key>blockOctant-1</key>\n    <string>blockO_ctant-1.glif</string>\n    <key>blockOctant-1.stypo</key>\n    <string>blockO_ctant-1.stypo.glif</string>\n    <key>blockOctant-2</key>\n    <string>blockO_ctant-2.glif</string>\n    <key>blockOctant-2.stypo</key>\n    <string>blockO_ctant-2.stypo.glif</string>\n    <key>blockOctant-12</key>\n    <string>blockO_ctant-12.glif</string>\n    <key>blockOctant-12.stypo</key>\n    <string>blockO_ctant-12.stypo.glif</string>\n    <key>blockOctant-3</key>\n    <string>blockO_ctant-3.glif</string>\n    <key>blockOctant-3.stypo</key>\n    <string>blockO_ctant-3.stypo.glif</string>\n    <key>blockOctant-23</key>\n    <string>blockO_ctant-23.glif</string>\n    <key>blockOctant-23.stypo</key>\n    <string>blockO_ctant-23.stypo.glif</string>\n    <key>blockOctant-123</key>\n    <string>blockO_ctant-123.glif</string>\n    <key>blockOctant-123.stypo</key>\n    <string>blockO_ctant-123.stypo.glif</string>\n    <key>blockOctant-4</key>\n    <string>blockO_ctant-4.glif</string>\n    <key>blockOctant-4.stypo</key>\n    <string>blockO_ctant-4.stypo.glif</string>\n    <key>blockOctant-14</key>\n    <string>blockO_ctant-14.glif</string>\n    <key>blockOctant-14.stypo</key>\n    <string>blockO_ctant-14.stypo.glif</string>\n    <key>blockOctant-124</key>\n    <string>blockO_ctant-124.glif</string>\n    <key>blockOctant-124.stypo</key>\n    <string>blockO_ctant-124.stypo.glif</string>\n    <key>blockOctant-34</key>\n    <string>blockO_ctant-34.glif</string>\n    <key>blockOctant-34.stypo</key>\n    <string>blockO_ctant-34.stypo.glif</string>\n    <key>blockOctant-134</key>\n    <string>blockO_ctant-134.glif</string>\n    <key>blockOctant-134.stypo</key>\n    <string>blockO_ctant-134.stypo.glif</string>\n    <key>blockOctant-234</key>\n    <string>blockO_ctant-234.glif</string>\n    <key>blockOctant-234.stypo</key>\n    <string>blockO_ctant-234.stypo.glif</string>\n    <key>blockOctant-5</key>\n    <string>blockO_ctant-5.glif</string>\n    <key>blockOctant-5.stypo</key>\n    <string>blockO_ctant-5.stypo.glif</string>\n    <key>blockOctant-15</key>\n    <string>blockO_ctant-15.glif</string>\n    <key>blockOctant-15.stypo</key>\n    <string>blockO_ctant-15.stypo.glif</string>\n    <key>blockOctant-25</key>\n    <string>blockO_ctant-25.glif</string>\n    <key>blockOctant-25.stypo</key>\n    <string>blockO_ctant-25.stypo.glif</string>\n    <key>blockOctant-125</key>\n    <string>blockO_ctant-125.glif</string>\n    <key>blockOctant-125.stypo</key>\n    <string>blockO_ctant-125.stypo.glif</string>\n    <key>blockOctant-135</key>\n    <string>blockO_ctant-135.glif</string>\n    <key>blockOctant-135.stypo</key>\n    <string>blockO_ctant-135.stypo.glif</string>\n    <key>blockOctant-235</key>\n    <string>blockO_ctant-235.glif</string>\n    <key>blockOctant-235.stypo</key>\n    <string>blockO_ctant-235.stypo.glif</string>\n    <key>blockOctant-1235</key>\n    <string>blockO_ctant-1235.glif</string>\n    <key>blockOctant-1235.stypo</key>\n    <string>blockO_ctant-1235.stypo.glif</string>\n    <key>blockOctant-45</key>\n    <string>blockO_ctant-45.glif</string>\n    <key>blockOctant-45.stypo</key>\n    <string>blockO_ctant-45.stypo.glif</string>\n    <key>blockOctant-145</key>\n    <string>blockO_ctant-145.glif</string>\n    <key>blockOctant-145.stypo</key>\n    <string>blockO_ctant-145.stypo.glif</string>\n    <key>blockOctant-245</key>\n    <string>blockO_ctant-245.glif</string>\n    <key>blockOctant-245.stypo</key>\n    <string>blockO_ctant-245.stypo.glif</string>\n    <key>blockOctant-1245</key>\n    <string>blockO_ctant-1245.glif</string>\n    <key>blockOctant-1245.stypo</key>\n    <string>blockO_ctant-1245.stypo.glif</string>\n    <key>blockOctant-345</key>\n    <string>blockO_ctant-345.glif</string>\n    <key>blockOctant-345.stypo</key>\n    <string>blockO_ctant-345.stypo.glif</string>\n    <key>blockOctant-1345</key>\n    <string>blockO_ctant-1345.glif</string>\n    <key>blockOctant-1345.stypo</key>\n    <string>blockO_ctant-1345.stypo.glif</string>\n    <key>blockOctant-2345</key>\n    <string>blockO_ctant-2345.glif</string>\n    <key>blockOctant-2345.stypo</key>\n    <string>blockO_ctant-2345.stypo.glif</string>\n    <key>blockOctant-12345</key>\n    <string>blockO_ctant-12345.glif</string>\n    <key>blockOctant-12345.stypo</key>\n    <string>blockO_ctant-12345.stypo.glif</string>\n    <key>blockOctant-6</key>\n    <string>blockO_ctant-6.glif</string>\n    <key>blockOctant-6.stypo</key>\n    <string>blockO_ctant-6.stypo.glif</string>\n    <key>blockOctant-16</key>\n    <string>blockO_ctant-16.glif</string>\n    <key>blockOctant-16.stypo</key>\n    <string>blockO_ctant-16.stypo.glif</string>\n    <key>blockOctant-26</key>\n    <string>blockO_ctant-26.glif</string>\n    <key>blockOctant-26.stypo</key>\n    <string>blockO_ctant-26.stypo.glif</string>\n    <key>blockOctant-126</key>\n    <string>blockO_ctant-126.glif</string>\n    <key>blockOctant-126.stypo</key>\n    <string>blockO_ctant-126.stypo.glif</string>\n    <key>blockOctant-36</key>\n    <string>blockO_ctant-36.glif</string>\n    <key>blockOctant-36.stypo</key>\n    <string>blockO_ctant-36.stypo.glif</string>\n    <key>blockOctant-136</key>\n    <string>blockO_ctant-136.glif</string>\n    <key>blockOctant-136.stypo</key>\n    <string>blockO_ctant-136.stypo.glif</string>\n    <key>blockOctant-236</key>\n    <string>blockO_ctant-236.glif</string>\n    <key>blockOctant-236.stypo</key>\n    <string>blockO_ctant-236.stypo.glif</string>\n    <key>blockOctant-1236</key>\n    <string>blockO_ctant-1236.glif</string>\n    <key>blockOctant-1236.stypo</key>\n    <string>blockO_ctant-1236.stypo.glif</string>\n    <key>blockOctant-146</key>\n    <string>blockO_ctant-146.glif</string>\n    <key>blockOctant-146.stypo</key>\n    <string>blockO_ctant-146.stypo.glif</string>\n    <key>blockOctant-246</key>\n    <string>blockO_ctant-246.glif</string>\n    <key>blockOctant-246.stypo</key>\n    <string>blockO_ctant-246.stypo.glif</string>\n    <key>blockOctant-1246</key>\n    <string>blockO_ctant-1246.glif</string>\n    <key>blockOctant-1246.stypo</key>\n    <string>blockO_ctant-1246.stypo.glif</string>\n    <key>blockOctant-346</key>\n    <string>blockO_ctant-346.glif</string>\n    <key>blockOctant-346.stypo</key>\n    <string>blockO_ctant-346.stypo.glif</string>\n    <key>blockOctant-1346</key>\n    <string>blockO_ctant-1346.glif</string>\n    <key>blockOctant-1346.stypo</key>\n    <string>blockO_ctant-1346.stypo.glif</string>\n    <key>blockOctant-2346</key>\n    <string>blockO_ctant-2346.glif</string>\n    <key>blockOctant-2346.stypo</key>\n    <string>blockO_ctant-2346.stypo.glif</string>\n    <key>blockOctant-12346</key>\n    <string>blockO_ctant-12346.glif</string>\n    <key>blockOctant-12346.stypo</key>\n    <string>blockO_ctant-12346.stypo.glif</string>\n    <key>blockOctant-56</key>\n    <string>blockO_ctant-56.glif</string>\n    <key>blockOctant-56.stypo</key>\n    <string>blockO_ctant-56.stypo.glif</string>\n    <key>blockOctant-156</key>\n    <string>blockO_ctant-156.glif</string>\n    <key>blockOctant-156.stypo</key>\n    <string>blockO_ctant-156.stypo.glif</string>\n    <key>blockOctant-256</key>\n    <string>blockO_ctant-256.glif</string>\n    <key>blockOctant-256.stypo</key>\n    <string>blockO_ctant-256.stypo.glif</string>\n    <key>blockOctant-1256</key>\n    <string>blockO_ctant-1256.glif</string>\n    <key>blockOctant-1256.stypo</key>\n    <string>blockO_ctant-1256.stypo.glif</string>\n    <key>blockOctant-356</key>\n    <string>blockO_ctant-356.glif</string>\n    <key>blockOctant-356.stypo</key>\n    <string>blockO_ctant-356.stypo.glif</string>\n    <key>blockOctant-1356</key>\n    <string>blockO_ctant-1356.glif</string>\n    <key>blockOctant-1356.stypo</key>\n    <string>blockO_ctant-1356.stypo.glif</string>\n    <key>blockOctant-2356</key>\n    <string>blockO_ctant-2356.glif</string>\n    <key>blockOctant-2356.stypo</key>\n    <string>blockO_ctant-2356.stypo.glif</string>\n    <key>blockOctant-12356</key>\n    <string>blockO_ctant-12356.glif</string>\n    <key>blockOctant-12356.stypo</key>\n    <string>blockO_ctant-12356.stypo.glif</string>\n    <key>blockOctant-456</key>\n    <string>blockO_ctant-456.glif</string>\n    <key>blockOctant-456.stypo</key>\n    <string>blockO_ctant-456.stypo.glif</string>\n    <key>blockOctant-1456</key>\n    <string>blockO_ctant-1456.glif</string>\n    <key>blockOctant-1456.stypo</key>\n    <string>blockO_ctant-1456.stypo.glif</string>\n    <key>blockOctant-2456</key>\n    <string>blockO_ctant-2456.glif</string>\n    <key>blockOctant-2456.stypo</key>\n    <string>blockO_ctant-2456.stypo.glif</string>\n    <key>blockOctant-12456</key>\n    <string>blockO_ctant-12456.glif</string>\n    <key>blockOctant-12456.stypo</key>\n    <string>blockO_ctant-12456.stypo.glif</string>\n    <key>blockOctant-3456</key>\n    <string>blockO_ctant-3456.glif</string>\n    <key>blockOctant-3456.stypo</key>\n    <string>blockO_ctant-3456.stypo.glif</string>\n    <key>blockOctant-13456</key>\n    <string>blockO_ctant-13456.glif</string>\n    <key>blockOctant-13456.stypo</key>\n    <string>blockO_ctant-13456.stypo.glif</string>\n    <key>blockOctant-23456</key>\n    <string>blockO_ctant-23456.glif</string>\n    <key>blockOctant-23456.stypo</key>\n    <string>blockO_ctant-23456.stypo.glif</string>\n    <key>blockOctant-123456</key>\n    <string>blockO_ctant-123456.glif</string>\n    <key>blockOctant-123456.stypo</key>\n    <string>blockO_ctant-123456.stypo.glif</string>\n    <key>blockOctant-7</key>\n    <string>blockO_ctant-7.glif</string>\n    <key>blockOctant-7.stypo</key>\n    <string>blockO_ctant-7.stypo.glif</string>\n    <key>blockOctant-17</key>\n    <string>blockO_ctant-17.glif</string>\n    <key>blockOctant-17.stypo</key>\n    <string>blockO_ctant-17.stypo.glif</string>\n    <key>blockOctant-27</key>\n    <string>blockO_ctant-27.glif</string>\n    <key>blockOctant-27.stypo</key>\n    <string>blockO_ctant-27.stypo.glif</string>\n    <key>blockOctant-127</key>\n    <string>blockO_ctant-127.glif</string>\n    <key>blockOctant-127.stypo</key>\n    <string>blockO_ctant-127.stypo.glif</string>\n    <key>blockOctant-37</key>\n    <string>blockO_ctant-37.glif</string>\n    <key>blockOctant-37.stypo</key>\n    <string>blockO_ctant-37.stypo.glif</string>\n    <key>blockOctant-137</key>\n    <string>blockO_ctant-137.glif</string>\n    <key>blockOctant-137.stypo</key>\n    <string>blockO_ctant-137.stypo.glif</string>\n    <key>blockOctant-237</key>\n    <string>blockO_ctant-237.glif</string>\n    <key>blockOctant-237.stypo</key>\n    <string>blockO_ctant-237.stypo.glif</string>\n    <key>blockOctant-1237</key>\n    <string>blockO_ctant-1237.glif</string>\n    <key>blockOctant-1237.stypo</key>\n    <string>blockO_ctant-1237.stypo.glif</string>\n    <key>blockOctant-47</key>\n    <string>blockO_ctant-47.glif</string>\n    <key>blockOctant-47.stypo</key>\n    <string>blockO_ctant-47.stypo.glif</string>\n    <key>blockOctant-147</key>\n    <string>blockO_ctant-147.glif</string>\n    <key>blockOctant-147.stypo</key>\n    <string>blockO_ctant-147.stypo.glif</string>\n    <key>blockOctant-247</key>\n    <string>blockO_ctant-247.glif</string>\n    <key>blockOctant-247.stypo</key>\n    <string>blockO_ctant-247.stypo.glif</string>\n    <key>blockOctant-1247</key>\n    <string>blockO_ctant-1247.glif</string>\n    <key>blockOctant-1247.stypo</key>\n    <string>blockO_ctant-1247.stypo.glif</string>\n    <key>blockOctant-347</key>\n    <string>blockO_ctant-347.glif</string>\n    <key>blockOctant-347.stypo</key>\n    <string>blockO_ctant-347.stypo.glif</string>\n    <key>blockOctant-1347</key>\n    <string>blockO_ctant-1347.glif</string>\n    <key>blockOctant-1347.stypo</key>\n    <string>blockO_ctant-1347.stypo.glif</string>\n    <key>blockOctant-2347</key>\n    <string>blockO_ctant-2347.glif</string>\n    <key>blockOctant-2347.stypo</key>\n    <string>blockO_ctant-2347.stypo.glif</string>\n    <key>blockOctant-12347</key>\n    <string>blockO_ctant-12347.glif</string>\n    <key>blockOctant-12347.stypo</key>\n    <string>blockO_ctant-12347.stypo.glif</string>\n    <key>blockOctant-157</key>\n    <string>blockO_ctant-157.glif</string>\n    <key>blockOctant-157.stypo</key>\n    <string>blockO_ctant-157.stypo.glif</string>\n    <key>blockOctant-257</key>\n    <string>blockO_ctant-257.glif</string>\n    <key>blockOctant-257.stypo</key>\n    <string>blockO_ctant-257.stypo.glif</string>\n    <key>blockOctant-1257</key>\n    <string>blockO_ctant-1257.glif</string>\n    <key>blockOctant-1257.stypo</key>\n    <string>blockO_ctant-1257.stypo.glif</string>\n    <key>blockOctant-357</key>\n    <string>blockO_ctant-357.glif</string>\n    <key>blockOctant-357.stypo</key>\n    <string>blockO_ctant-357.stypo.glif</string>\n    <key>blockOctant-2357</key>\n    <string>blockO_ctant-2357.glif</string>\n    <key>blockOctant-2357.stypo</key>\n    <string>blockO_ctant-2357.stypo.glif</string>\n    <key>blockOctant-12357</key>\n    <string>blockO_ctant-12357.glif</string>\n    <key>blockOctant-12357.stypo</key>\n    <string>blockO_ctant-12357.stypo.glif</string>\n    <key>blockOctant-457</key>\n    <string>blockO_ctant-457.glif</string>\n    <key>blockOctant-457.stypo</key>\n    <string>blockO_ctant-457.stypo.glif</string>\n    <key>blockOctant-1457</key>\n    <string>blockO_ctant-1457.glif</string>\n    <key>blockOctant-1457.stypo</key>\n    <string>blockO_ctant-1457.stypo.glif</string>\n    <key>blockOctant-12457</key>\n    <string>blockO_ctant-12457.glif</string>\n    <key>blockOctant-12457.stypo</key>\n    <string>blockO_ctant-12457.stypo.glif</string>\n    <key>blockOctant-3457</key>\n    <string>blockO_ctant-3457.glif</string>\n    <key>blockOctant-3457.stypo</key>\n    <string>blockO_ctant-3457.stypo.glif</string>\n    <key>blockOctant-13457</key>\n    <string>blockO_ctant-13457.glif</string>\n    <key>blockOctant-13457.stypo</key>\n    <string>blockO_ctant-13457.stypo.glif</string>\n    <key>blockOctant-23457</key>\n    <string>blockO_ctant-23457.glif</string>\n    <key>blockOctant-23457.stypo</key>\n    <string>blockO_ctant-23457.stypo.glif</string>\n    <key>blockOctant-67</key>\n    <string>blockO_ctant-67.glif</string>\n    <key>blockOctant-67.stypo</key>\n    <string>blockO_ctant-67.stypo.glif</string>\n    <key>blockOctant-167</key>\n    <string>blockO_ctant-167.glif</string>\n    <key>blockOctant-167.stypo</key>\n    <string>blockO_ctant-167.stypo.glif</string>\n    <key>blockOctant-267</key>\n    <string>blockO_ctant-267.glif</string>\n    <key>blockOctant-267.stypo</key>\n    <string>blockO_ctant-267.stypo.glif</string>\n    <key>blockOctant-1267</key>\n    <string>blockO_ctant-1267.glif</string>\n    <key>blockOctant-1267.stypo</key>\n    <string>blockO_ctant-1267.stypo.glif</string>\n    <key>blockOctant-367</key>\n    <string>blockO_ctant-367.glif</string>\n    <key>blockOctant-367.stypo</key>\n    <string>blockO_ctant-367.stypo.glif</string>\n    <key>blockOctant-1367</key>\n    <string>blockO_ctant-1367.glif</string>\n    <key>blockOctant-1367.stypo</key>\n    <string>blockO_ctant-1367.stypo.glif</string>\n    <key>blockOctant-2367</key>\n    <string>blockO_ctant-2367.glif</string>\n    <key>blockOctant-2367.stypo</key>\n    <string>blockO_ctant-2367.stypo.glif</string>\n    <key>blockOctant-12367</key>\n    <string>blockO_ctant-12367.glif</string>\n    <key>blockOctant-12367.stypo</key>\n    <string>blockO_ctant-12367.stypo.glif</string>\n    <key>blockOctant-467</key>\n    <string>blockO_ctant-467.glif</string>\n    <key>blockOctant-467.stypo</key>\n    <string>blockO_ctant-467.stypo.glif</string>\n    <key>blockOctant-1467</key>\n    <string>blockO_ctant-1467.glif</string>\n    <key>blockOctant-1467.stypo</key>\n    <string>blockO_ctant-1467.stypo.glif</string>\n    <key>blockOctant-2467</key>\n    <string>blockO_ctant-2467.glif</string>\n    <key>blockOctant-2467.stypo</key>\n    <string>blockO_ctant-2467.stypo.glif</string>\n    <key>blockOctant-12467</key>\n    <string>blockO_ctant-12467.glif</string>\n    <key>blockOctant-12467.stypo</key>\n    <string>blockO_ctant-12467.stypo.glif</string>\n    <key>blockOctant-3467</key>\n    <string>blockO_ctant-3467.glif</string>\n    <key>blockOctant-3467.stypo</key>\n    <string>blockO_ctant-3467.stypo.glif</string>\n    <key>blockOctant-13467</key>\n    <string>blockO_ctant-13467.glif</string>\n    <key>blockOctant-13467.stypo</key>\n    <string>blockO_ctant-13467.stypo.glif</string>\n    <key>blockOctant-23467</key>\n    <string>blockO_ctant-23467.glif</string>\n    <key>blockOctant-23467.stypo</key>\n    <string>blockO_ctant-23467.stypo.glif</string>\n    <key>blockOctant-123467</key>\n    <string>blockO_ctant-123467.glif</string>\n    <key>blockOctant-123467.stypo</key>\n    <string>blockO_ctant-123467.stypo.glif</string>\n    <key>blockOctant-567</key>\n    <string>blockO_ctant-567.glif</string>\n    <key>blockOctant-567.stypo</key>\n    <string>blockO_ctant-567.stypo.glif</string>\n    <key>blockOctant-1567</key>\n    <string>blockO_ctant-1567.glif</string>\n    <key>blockOctant-1567.stypo</key>\n    <string>blockO_ctant-1567.stypo.glif</string>\n    <key>blockOctant-2567</key>\n    <string>blockO_ctant-2567.glif</string>\n    <key>blockOctant-2567.stypo</key>\n    <string>blockO_ctant-2567.stypo.glif</string>\n    <key>blockOctant-12567</key>\n    <string>blockO_ctant-12567.glif</string>\n    <key>blockOctant-12567.stypo</key>\n    <string>blockO_ctant-12567.stypo.glif</string>\n    <key>blockOctant-3567</key>\n    <string>blockO_ctant-3567.glif</string>\n    <key>blockOctant-3567.stypo</key>\n    <string>blockO_ctant-3567.stypo.glif</string>\n    <key>blockOctant-13567</key>\n    <string>blockO_ctant-13567.glif</string>\n    <key>blockOctant-13567.stypo</key>\n    <string>blockO_ctant-13567.stypo.glif</string>\n    <key>blockOctant-23567</key>\n    <string>blockO_ctant-23567.glif</string>\n    <key>blockOctant-23567.stypo</key>\n    <string>blockO_ctant-23567.stypo.glif</string>\n    <key>blockOctant-123567</key>\n    <string>blockO_ctant-123567.glif</string>\n    <key>blockOctant-123567.stypo</key>\n    <string>blockO_ctant-123567.stypo.glif</string>\n    <key>blockOctant-4567</key>\n    <string>blockO_ctant-4567.glif</string>\n    <key>blockOctant-4567.stypo</key>\n    <string>blockO_ctant-4567.stypo.glif</string>\n    <key>blockOctant-14567</key>\n    <string>blockO_ctant-14567.glif</string>\n    <key>blockOctant-14567.stypo</key>\n    <string>blockO_ctant-14567.stypo.glif</string>\n    <key>blockOctant-24567</key>\n    <string>blockO_ctant-24567.glif</string>\n    <key>blockOctant-24567.stypo</key>\n    <string>blockO_ctant-24567.stypo.glif</string>\n    <key>blockOctant-124567</key>\n    <string>blockO_ctant-124567.glif</string>\n    <key>blockOctant-124567.stypo</key>\n    <string>blockO_ctant-124567.stypo.glif</string>\n    <key>blockOctant-34567</key>\n    <string>blockO_ctant-34567.glif</string>\n    <key>blockOctant-34567.stypo</key>\n    <string>blockO_ctant-34567.stypo.glif</string>\n    <key>blockOctant-134567</key>\n    <string>blockO_ctant-134567.glif</string>\n    <key>blockOctant-134567.stypo</key>\n    <string>blockO_ctant-134567.stypo.glif</string>\n    <key>blockOctant-234567</key>\n    <string>blockO_ctant-234567.glif</string>\n    <key>blockOctant-234567.stypo</key>\n    <string>blockO_ctant-234567.stypo.glif</string>\n    <key>blockOctant-1234567</key>\n    <string>blockO_ctant-1234567.glif</string>\n    <key>blockOctant-1234567.stypo</key>\n    <string>blockO_ctant-1234567.stypo.glif</string>\n    <key>blockOctant-8</key>\n    <string>blockO_ctant-8.glif</string>\n    <key>blockOctant-8.stypo</key>\n    <string>blockO_ctant-8.stypo.glif</string>\n    <key>blockOctant-18</key>\n    <string>blockO_ctant-18.glif</string>\n    <key>blockOctant-18.stypo</key>\n    <string>blockO_ctant-18.stypo.glif</string>\n    <key>blockOctant-28</key>\n    <string>blockO_ctant-28.glif</string>\n    <key>blockOctant-28.stypo</key>\n    <string>blockO_ctant-28.stypo.glif</string>\n    <key>blockOctant-128</key>\n    <string>blockO_ctant-128.glif</string>\n    <key>blockOctant-128.stypo</key>\n    <string>blockO_ctant-128.stypo.glif</string>\n    <key>blockOctant-38</key>\n    <string>blockO_ctant-38.glif</string>\n    <key>blockOctant-38.stypo</key>\n    <string>blockO_ctant-38.stypo.glif</string>\n    <key>blockOctant-138</key>\n    <string>blockO_ctant-138.glif</string>\n    <key>blockOctant-138.stypo</key>\n    <string>blockO_ctant-138.stypo.glif</string>\n    <key>blockOctant-238</key>\n    <string>blockO_ctant-238.glif</string>\n    <key>blockOctant-238.stypo</key>\n    <string>blockO_ctant-238.stypo.glif</string>\n    <key>blockOctant-1238</key>\n    <string>blockO_ctant-1238.glif</string>\n    <key>blockOctant-1238.stypo</key>\n    <string>blockO_ctant-1238.stypo.glif</string>\n    <key>blockOctant-48</key>\n    <string>blockO_ctant-48.glif</string>\n    <key>blockOctant-48.stypo</key>\n    <string>blockO_ctant-48.stypo.glif</string>\n    <key>blockOctant-148</key>\n    <string>blockO_ctant-148.glif</string>\n    <key>blockOctant-148.stypo</key>\n    <string>blockO_ctant-148.stypo.glif</string>\n    <key>blockOctant-248</key>\n    <string>blockO_ctant-248.glif</string>\n    <key>blockOctant-248.stypo</key>\n    <string>blockO_ctant-248.stypo.glif</string>\n    <key>blockOctant-1248</key>\n    <string>blockO_ctant-1248.glif</string>\n    <key>blockOctant-1248.stypo</key>\n    <string>blockO_ctant-1248.stypo.glif</string>\n    <key>blockOctant-348</key>\n    <string>blockO_ctant-348.glif</string>\n    <key>blockOctant-348.stypo</key>\n    <string>blockO_ctant-348.stypo.glif</string>\n    <key>blockOctant-1348</key>\n    <string>blockO_ctant-1348.glif</string>\n    <key>blockOctant-1348.stypo</key>\n    <string>blockO_ctant-1348.stypo.glif</string>\n    <key>blockOctant-2348</key>\n    <string>blockO_ctant-2348.glif</string>\n    <key>blockOctant-2348.stypo</key>\n    <string>blockO_ctant-2348.stypo.glif</string>\n    <key>blockOctant-12348</key>\n    <string>blockO_ctant-12348.glif</string>\n    <key>blockOctant-12348.stypo</key>\n    <string>blockO_ctant-12348.stypo.glif</string>\n    <key>blockOctant-58</key>\n    <string>blockO_ctant-58.glif</string>\n    <key>blockOctant-58.stypo</key>\n    <string>blockO_ctant-58.stypo.glif</string>\n    <key>blockOctant-158</key>\n    <string>blockO_ctant-158.glif</string>\n    <key>blockOctant-158.stypo</key>\n    <string>blockO_ctant-158.stypo.glif</string>\n    <key>blockOctant-258</key>\n    <string>blockO_ctant-258.glif</string>\n    <key>blockOctant-258.stypo</key>\n    <string>blockO_ctant-258.stypo.glif</string>\n    <key>blockOctant-1258</key>\n    <string>blockO_ctant-1258.glif</string>\n    <key>blockOctant-1258.stypo</key>\n    <string>blockO_ctant-1258.stypo.glif</string>\n    <key>blockOctant-358</key>\n    <string>blockO_ctant-358.glif</string>\n    <key>blockOctant-358.stypo</key>\n    <string>blockO_ctant-358.stypo.glif</string>\n    <key>blockOctant-1358</key>\n    <string>blockO_ctant-1358.glif</string>\n    <key>blockOctant-1358.stypo</key>\n    <string>blockO_ctant-1358.stypo.glif</string>\n    <key>blockOctant-2358</key>\n    <string>blockO_ctant-2358.glif</string>\n    <key>blockOctant-2358.stypo</key>\n    <string>blockO_ctant-2358.stypo.glif</string>\n    <key>blockOctant-12358</key>\n    <string>blockO_ctant-12358.glif</string>\n    <key>blockOctant-12358.stypo</key>\n    <string>blockO_ctant-12358.stypo.glif</string>\n    <key>blockOctant-458</key>\n    <string>blockO_ctant-458.glif</string>\n    <key>blockOctant-458.stypo</key>\n    <string>blockO_ctant-458.stypo.glif</string>\n    <key>blockOctant-1458</key>\n    <string>blockO_ctant-1458.glif</string>\n    <key>blockOctant-1458.stypo</key>\n    <string>blockO_ctant-1458.stypo.glif</string>\n    <key>blockOctant-2458</key>\n    <string>blockO_ctant-2458.glif</string>\n    <key>blockOctant-2458.stypo</key>\n    <string>blockO_ctant-2458.stypo.glif</string>\n    <key>blockOctant-12458</key>\n    <string>blockO_ctant-12458.glif</string>\n    <key>blockOctant-12458.stypo</key>\n    <string>blockO_ctant-12458.stypo.glif</string>\n    <key>blockOctant-3458</key>\n    <string>blockO_ctant-3458.glif</string>\n    <key>blockOctant-3458.stypo</key>\n    <string>blockO_ctant-3458.stypo.glif</string>\n    <key>blockOctant-13458</key>\n    <string>blockO_ctant-13458.glif</string>\n    <key>blockOctant-13458.stypo</key>\n    <string>blockO_ctant-13458.stypo.glif</string>\n    <key>blockOctant-23458</key>\n    <string>blockO_ctant-23458.glif</string>\n    <key>blockOctant-23458.stypo</key>\n    <string>blockO_ctant-23458.stypo.glif</string>\n    <key>blockOctant-123458</key>\n    <string>blockO_ctant-123458.glif</string>\n    <key>blockOctant-123458.stypo</key>\n    <string>blockO_ctant-123458.stypo.glif</string>\n    <key>blockOctant-168</key>\n    <string>blockO_ctant-168.glif</string>\n    <key>blockOctant-168.stypo</key>\n    <string>blockO_ctant-168.stypo.glif</string>\n    <key>blockOctant-268</key>\n    <string>blockO_ctant-268.glif</string>\n    <key>blockOctant-268.stypo</key>\n    <string>blockO_ctant-268.stypo.glif</string>\n    <key>blockOctant-1268</key>\n    <string>blockO_ctant-1268.glif</string>\n    <key>blockOctant-1268.stypo</key>\n    <string>blockO_ctant-1268.stypo.glif</string>\n    <key>blockOctant-368</key>\n    <string>blockO_ctant-368.glif</string>\n    <key>blockOctant-368.stypo</key>\n    <string>blockO_ctant-368.stypo.glif</string>\n    <key>blockOctant-2368</key>\n    <string>blockO_ctant-2368.glif</string>\n    <key>blockOctant-2368.stypo</key>\n    <string>blockO_ctant-2368.stypo.glif</string>\n    <key>blockOctant-12368</key>\n    <string>blockO_ctant-12368.glif</string>\n    <key>blockOctant-12368.stypo</key>\n    <string>blockO_ctant-12368.stypo.glif</string>\n    <key>blockOctant-468</key>\n    <string>blockO_ctant-468.glif</string>\n    <key>blockOctant-468.stypo</key>\n    <string>blockO_ctant-468.stypo.glif</string>\n    <key>blockOctant-1468</key>\n    <string>blockO_ctant-1468.glif</string>\n    <key>blockOctant-1468.stypo</key>\n    <string>blockO_ctant-1468.stypo.glif</string>\n    <key>blockOctant-12468</key>\n    <string>blockO_ctant-12468.glif</string>\n    <key>blockOctant-12468.stypo</key>\n    <string>blockO_ctant-12468.stypo.glif</string>\n    <key>blockOctant-3468</key>\n    <string>blockO_ctant-3468.glif</string>\n    <key>blockOctant-3468.stypo</key>\n    <string>blockO_ctant-3468.stypo.glif</string>\n    <key>blockOctant-13468</key>\n    <string>blockO_ctant-13468.glif</string>\n    <key>blockOctant-13468.stypo</key>\n    <string>blockO_ctant-13468.stypo.glif</string>\n    <key>blockOctant-23468</key>\n    <string>blockO_ctant-23468.glif</string>\n    <key>blockOctant-23468.stypo</key>\n    <string>blockO_ctant-23468.stypo.glif</string>\n    <key>blockOctant-568</key>\n    <string>blockO_ctant-568.glif</string>\n    <key>blockOctant-568.stypo</key>\n    <string>blockO_ctant-568.stypo.glif</string>\n    <key>blockOctant-1568</key>\n    <string>blockO_ctant-1568.glif</string>\n    <key>blockOctant-1568.stypo</key>\n    <string>blockO_ctant-1568.stypo.glif</string>\n    <key>blockOctant-2568</key>\n    <string>blockO_ctant-2568.glif</string>\n    <key>blockOctant-2568.stypo</key>\n    <string>blockO_ctant-2568.stypo.glif</string>\n    <key>blockOctant-12568</key>\n    <string>blockO_ctant-12568.glif</string>\n    <key>blockOctant-12568.stypo</key>\n    <string>blockO_ctant-12568.stypo.glif</string>\n    <key>blockOctant-3568</key>\n    <string>blockO_ctant-3568.glif</string>\n    <key>blockOctant-3568.stypo</key>\n    <string>blockO_ctant-3568.stypo.glif</string>\n    <key>blockOctant-13568</key>\n    <string>blockO_ctant-13568.glif</string>\n    <key>blockOctant-13568.stypo</key>\n    <string>blockO_ctant-13568.stypo.glif</string>\n    <key>blockOctant-23568</key>\n    <string>blockO_ctant-23568.glif</string>\n    <key>blockOctant-23568.stypo</key>\n    <string>blockO_ctant-23568.stypo.glif</string>\n    <key>blockOctant-123568</key>\n    <string>blockO_ctant-123568.glif</string>\n    <key>blockOctant-123568.stypo</key>\n    <string>blockO_ctant-123568.stypo.glif</string>\n    <key>blockOctant-4568</key>\n    <string>blockO_ctant-4568.glif</string>\n    <key>blockOctant-4568.stypo</key>\n    <string>blockO_ctant-4568.stypo.glif</string>\n    <key>blockOctant-14568</key>\n    <string>blockO_ctant-14568.glif</string>\n    <key>blockOctant-14568.stypo</key>\n    <string>blockO_ctant-14568.stypo.glif</string>\n    <key>blockOctant-24568</key>\n    <string>blockO_ctant-24568.glif</string>\n    <key>blockOctant-24568.stypo</key>\n    <string>blockO_ctant-24568.stypo.glif</string>\n    <key>blockOctant-124568</key>\n    <string>blockO_ctant-124568.glif</string>\n    <key>blockOctant-124568.stypo</key>\n    <string>blockO_ctant-124568.stypo.glif</string>\n    <key>blockOctant-34568</key>\n    <string>blockO_ctant-34568.glif</string>\n    <key>blockOctant-34568.stypo</key>\n    <string>blockO_ctant-34568.stypo.glif</string>\n    <key>blockOctant-134568</key>\n    <string>blockO_ctant-134568.glif</string>\n    <key>blockOctant-134568.stypo</key>\n    <string>blockO_ctant-134568.stypo.glif</string>\n    <key>blockOctant-234568</key>\n    <string>blockO_ctant-234568.glif</string>\n    <key>blockOctant-234568.stypo</key>\n    <string>blockO_ctant-234568.stypo.glif</string>\n    <key>blockOctant-1234568</key>\n    <string>blockO_ctant-1234568.glif</string>\n    <key>blockOctant-1234568.stypo</key>\n    <string>blockO_ctant-1234568.stypo.glif</string>\n    <key>blockOctant-178</key>\n    <string>blockO_ctant-178.glif</string>\n    <key>blockOctant-178.stypo</key>\n    <string>blockO_ctant-178.stypo.glif</string>\n    <key>blockOctant-278</key>\n    <string>blockO_ctant-278.glif</string>\n    <key>blockOctant-278.stypo</key>\n    <string>blockO_ctant-278.stypo.glif</string>\n    <key>blockOctant-1278</key>\n    <string>blockO_ctant-1278.glif</string>\n    <key>blockOctant-1278.stypo</key>\n    <string>blockO_ctant-1278.stypo.glif</string>\n    <key>blockOctant-378</key>\n    <string>blockO_ctant-378.glif</string>\n    <key>blockOctant-378.stypo</key>\n    <string>blockO_ctant-378.stypo.glif</string>\n    <key>blockOctant-1378</key>\n    <string>blockO_ctant-1378.glif</string>\n    <key>blockOctant-1378.stypo</key>\n    <string>blockO_ctant-1378.stypo.glif</string>\n    <key>blockOctant-2378</key>\n    <string>blockO_ctant-2378.glif</string>\n    <key>blockOctant-2378.stypo</key>\n    <string>blockO_ctant-2378.stypo.glif</string>\n    <key>blockOctant-12378</key>\n    <string>blockO_ctant-12378.glif</string>\n    <key>blockOctant-12378.stypo</key>\n    <string>blockO_ctant-12378.stypo.glif</string>\n    <key>blockOctant-478</key>\n    <string>blockO_ctant-478.glif</string>\n    <key>blockOctant-478.stypo</key>\n    <string>blockO_ctant-478.stypo.glif</string>\n    <key>blockOctant-1478</key>\n    <string>blockO_ctant-1478.glif</string>\n    <key>blockOctant-1478.stypo</key>\n    <string>blockO_ctant-1478.stypo.glif</string>\n    <key>blockOctant-2478</key>\n    <string>blockO_ctant-2478.glif</string>\n    <key>blockOctant-2478.stypo</key>\n    <string>blockO_ctant-2478.stypo.glif</string>\n    <key>blockOctant-12478</key>\n    <string>blockO_ctant-12478.glif</string>\n    <key>blockOctant-12478.stypo</key>\n    <string>blockO_ctant-12478.stypo.glif</string>\n    <key>blockOctant-3478</key>\n    <string>blockO_ctant-3478.glif</string>\n    <key>blockOctant-3478.stypo</key>\n    <string>blockO_ctant-3478.stypo.glif</string>\n    <key>blockOctant-13478</key>\n    <string>blockO_ctant-13478.glif</string>\n    <key>blockOctant-13478.stypo</key>\n    <string>blockO_ctant-13478.stypo.glif</string>\n    <key>blockOctant-23478</key>\n    <string>blockO_ctant-23478.glif</string>\n    <key>blockOctant-23478.stypo</key>\n    <string>blockO_ctant-23478.stypo.glif</string>\n    <key>blockOctant-123478</key>\n    <string>blockO_ctant-123478.glif</string>\n    <key>blockOctant-123478.stypo</key>\n    <string>blockO_ctant-123478.stypo.glif</string>\n    <key>blockOctant-578</key>\n    <string>blockO_ctant-578.glif</string>\n    <key>blockOctant-578.stypo</key>\n    <string>blockO_ctant-578.stypo.glif</string>\n    <key>blockOctant-1578</key>\n    <string>blockO_ctant-1578.glif</string>\n    <key>blockOctant-1578.stypo</key>\n    <string>blockO_ctant-1578.stypo.glif</string>\n    <key>blockOctant-2578</key>\n    <string>blockO_ctant-2578.glif</string>\n    <key>blockOctant-2578.stypo</key>\n    <string>blockO_ctant-2578.stypo.glif</string>\n    <key>blockOctant-12578</key>\n    <string>blockO_ctant-12578.glif</string>\n    <key>blockOctant-12578.stypo</key>\n    <string>blockO_ctant-12578.stypo.glif</string>\n    <key>blockOctant-3578</key>\n    <string>blockO_ctant-3578.glif</string>\n    <key>blockOctant-3578.stypo</key>\n    <string>blockO_ctant-3578.stypo.glif</string>\n    <key>blockOctant-13578</key>\n    <string>blockO_ctant-13578.glif</string>\n    <key>blockOctant-13578.stypo</key>\n    <string>blockO_ctant-13578.stypo.glif</string>\n    <key>blockOctant-23578</key>\n    <string>blockO_ctant-23578.glif</string>\n    <key>blockOctant-23578.stypo</key>\n    <string>blockO_ctant-23578.stypo.glif</string>\n    <key>blockOctant-123578</key>\n    <string>blockO_ctant-123578.glif</string>\n    <key>blockOctant-123578.stypo</key>\n    <string>blockO_ctant-123578.stypo.glif</string>\n    <key>blockOctant-4578</key>\n    <string>blockO_ctant-4578.glif</string>\n    <key>blockOctant-4578.stypo</key>\n    <string>blockO_ctant-4578.stypo.glif</string>\n    <key>blockOctant-14578</key>\n    <string>blockO_ctant-14578.glif</string>\n    <key>blockOctant-14578.stypo</key>\n    <string>blockO_ctant-14578.stypo.glif</string>\n    <key>blockOctant-24578</key>\n    <string>blockO_ctant-24578.glif</string>\n    <key>blockOctant-24578.stypo</key>\n    <string>blockO_ctant-24578.stypo.glif</string>\n    <key>blockOctant-124578</key>\n    <string>blockO_ctant-124578.glif</string>\n    <key>blockOctant-124578.stypo</key>\n    <string>blockO_ctant-124578.stypo.glif</string>\n    <key>blockOctant-34578</key>\n    <string>blockO_ctant-34578.glif</string>\n    <key>blockOctant-34578.stypo</key>\n    <string>blockO_ctant-34578.stypo.glif</string>\n    <key>blockOctant-134578</key>\n    <string>blockO_ctant-134578.glif</string>\n    <key>blockOctant-134578.stypo</key>\n    <string>blockO_ctant-134578.stypo.glif</string>\n    <key>blockOctant-234578</key>\n    <string>blockO_ctant-234578.glif</string>\n    <key>blockOctant-234578.stypo</key>\n    <string>blockO_ctant-234578.stypo.glif</string>\n    <key>blockOctant-1234578</key>\n    <string>blockO_ctant-1234578.glif</string>\n    <key>blockOctant-1234578.stypo</key>\n    <string>blockO_ctant-1234578.stypo.glif</string>\n    <key>blockOctant-678</key>\n    <string>blockO_ctant-678.glif</string>\n    <key>blockOctant-678.stypo</key>\n    <string>blockO_ctant-678.stypo.glif</string>\n    <key>blockOctant-1678</key>\n    <string>blockO_ctant-1678.glif</string>\n    <key>blockOctant-1678.stypo</key>\n    <string>blockO_ctant-1678.stypo.glif</string>\n    <key>blockOctant-2678</key>\n    <string>blockO_ctant-2678.glif</string>\n    <key>blockOctant-2678.stypo</key>\n    <string>blockO_ctant-2678.stypo.glif</string>\n    <key>blockOctant-12678</key>\n    <string>blockO_ctant-12678.glif</string>\n    <key>blockOctant-12678.stypo</key>\n    <string>blockO_ctant-12678.stypo.glif</string>\n    <key>blockOctant-3678</key>\n    <string>blockO_ctant-3678.glif</string>\n    <key>blockOctant-3678.stypo</key>\n    <string>blockO_ctant-3678.stypo.glif</string>\n    <key>blockOctant-13678</key>\n    <string>blockO_ctant-13678.glif</string>\n    <key>blockOctant-13678.stypo</key>\n    <string>blockO_ctant-13678.stypo.glif</string>\n    <key>blockOctant-23678</key>\n    <string>blockO_ctant-23678.glif</string>\n    <key>blockOctant-23678.stypo</key>\n    <string>blockO_ctant-23678.stypo.glif</string>\n    <key>blockOctant-123678</key>\n    <string>blockO_ctant-123678.glif</string>\n    <key>blockOctant-123678.stypo</key>\n    <string>blockO_ctant-123678.stypo.glif</string>\n    <key>blockOctant-4678</key>\n    <string>blockO_ctant-4678.glif</string>\n    <key>blockOctant-4678.stypo</key>\n    <string>blockO_ctant-4678.stypo.glif</string>\n    <key>blockOctant-14678</key>\n    <string>blockO_ctant-14678.glif</string>\n    <key>blockOctant-14678.stypo</key>\n    <string>blockO_ctant-14678.stypo.glif</string>\n    <key>blockOctant-24678</key>\n    <string>blockO_ctant-24678.glif</string>\n    <key>blockOctant-24678.stypo</key>\n    <string>blockO_ctant-24678.stypo.glif</string>\n    <key>blockOctant-124678</key>\n    <string>blockO_ctant-124678.glif</string>\n    <key>blockOctant-124678.stypo</key>\n    <string>blockO_ctant-124678.stypo.glif</string>\n    <key>blockOctant-34678</key>\n    <string>blockO_ctant-34678.glif</string>\n    <key>blockOctant-34678.stypo</key>\n    <string>blockO_ctant-34678.stypo.glif</string>\n    <key>blockOctant-134678</key>\n    <string>blockO_ctant-134678.glif</string>\n    <key>blockOctant-134678.stypo</key>\n    <string>blockO_ctant-134678.stypo.glif</string>\n    <key>blockOctant-234678</key>\n    <string>blockO_ctant-234678.glif</string>\n    <key>blockOctant-234678.stypo</key>\n    <string>blockO_ctant-234678.stypo.glif</string>\n    <key>blockOctant-1234678</key>\n    <string>blockO_ctant-1234678.glif</string>\n    <key>blockOctant-1234678.stypo</key>\n    <string>blockO_ctant-1234678.stypo.glif</string>\n    <key>blockOctant-15678</key>\n    <string>blockO_ctant-15678.glif</string>\n    <key>blockOctant-15678.stypo</key>\n    <string>blockO_ctant-15678.stypo.glif</string>\n    <key>blockOctant-25678</key>\n    <string>blockO_ctant-25678.glif</string>\n    <key>blockOctant-25678.stypo</key>\n    <string>blockO_ctant-25678.stypo.glif</string>\n    <key>blockOctant-125678</key>\n    <string>blockO_ctant-125678.glif</string>\n    <key>blockOctant-125678.stypo</key>\n    <string>blockO_ctant-125678.stypo.glif</string>\n    <key>blockOctant-35678</key>\n    <string>blockO_ctant-35678.glif</string>\n    <key>blockOctant-35678.stypo</key>\n    <string>blockO_ctant-35678.stypo.glif</string>\n    <key>blockOctant-235678</key>\n    <string>blockO_ctant-235678.glif</string>\n    <key>blockOctant-235678.stypo</key>\n    <string>blockO_ctant-235678.stypo.glif</string>\n    <key>blockOctant-1235678</key>\n    <string>blockO_ctant-1235678.glif</string>\n    <key>blockOctant-1235678.stypo</key>\n    <string>blockO_ctant-1235678.stypo.glif</string>\n    <key>blockOctant-45678</key>\n    <string>blockO_ctant-45678.glif</string>\n    <key>blockOctant-45678.stypo</key>\n    <string>blockO_ctant-45678.stypo.glif</string>\n    <key>blockOctant-145678</key>\n    <string>blockO_ctant-145678.glif</string>\n    <key>blockOctant-145678.stypo</key>\n    <string>blockO_ctant-145678.stypo.glif</string>\n    <key>blockOctant-1245678</key>\n    <string>blockO_ctant-1245678.glif</string>\n    <key>blockOctant-1245678.stypo</key>\n    <string>blockO_ctant-1245678.stypo.glif</string>\n    <key>blockOctant-1345678</key>\n    <string>blockO_ctant-1345678.glif</string>\n    <key>blockOctant-1345678.stypo</key>\n    <string>blockO_ctant-1345678.stypo.glif</string>\n    <key>blockOctant-2345678</key>\n    <string>blockO_ctant-2345678.glif</string>\n    <key>blockOctant-2345678.stypo</key>\n    <string>blockO_ctant-2345678.stypo.glif</string>\n    <key>blockSedecimant-1</key>\n    <string>blockS_edecimant-1.glif</string>\n    <key>blockSedecimant-1.stypo</key>\n    <string>blockS_edecimant-1.stypo.glif</string>\n    <key>blockSedecimant-2</key>\n    <string>blockS_edecimant-2.glif</string>\n    <key>blockSedecimant-2.stypo</key>\n    <string>blockS_edecimant-2.stypo.glif</string>\n    <key>blockSedecimant-3</key>\n    <string>blockS_edecimant-3.glif</string>\n    <key>blockSedecimant-3.stypo</key>\n    <string>blockS_edecimant-3.stypo.glif</string>\n    <key>blockSedecimant-4</key>\n    <string>blockS_edecimant-4.glif</string>\n    <key>blockSedecimant-4.stypo</key>\n    <string>blockS_edecimant-4.stypo.glif</string>\n    <key>blockSedecimant-5</key>\n    <string>blockS_edecimant-5.glif</string>\n    <key>blockSedecimant-5.stypo</key>\n    <string>blockS_edecimant-5.stypo.glif</string>\n    <key>blockSedecimant-6</key>\n    <string>blockS_edecimant-6.glif</string>\n    <key>blockSedecimant-6.stypo</key>\n    <string>blockS_edecimant-6.stypo.glif</string>\n    <key>blockSedecimant-7</key>\n    <string>blockS_edecimant-7.glif</string>\n    <key>blockSedecimant-7.stypo</key>\n    <string>blockS_edecimant-7.stypo.glif</string>\n    <key>blockSedecimant-8</key>\n    <string>blockS_edecimant-8.glif</string>\n    <key>blockSedecimant-8.stypo</key>\n    <string>blockS_edecimant-8.stypo.glif</string>\n    <key>blockSedecimant-9</key>\n    <string>blockS_edecimant-9.glif</string>\n    <key>blockSedecimant-9.stypo</key>\n    <string>blockS_edecimant-9.stypo.glif</string>\n    <key>blockSedecimant-A</key>\n    <string>blockS_edecimant-A.glif</string>\n    <key>blockSedecimant-A.stypo</key>\n    <string>blockS_edecimant-A.stypo.glif</string>\n    <key>blockSedecimant-B</key>\n    <string>blockS_edecimant-B.glif</string>\n    <key>blockSedecimant-B.stypo</key>\n    <string>blockS_edecimant-B.stypo.glif</string>\n    <key>blockSedecimant-C</key>\n    <string>blockS_edecimant-C.glif</string>\n    <key>blockSedecimant-C.stypo</key>\n    <string>blockS_edecimant-C.stypo.glif</string>\n    <key>blockSedecimant-D</key>\n    <string>blockS_edecimant-D.glif</string>\n    <key>blockSedecimant-D.stypo</key>\n    <string>blockS_edecimant-D.stypo.glif</string>\n    <key>blockSedecimant-E</key>\n    <string>blockS_edecimant-E.glif</string>\n    <key>blockSedecimant-E.stypo</key>\n    <string>blockS_edecimant-E.stypo.glif</string>\n    <key>blockSedecimant-F</key>\n    <string>blockS_edecimant-F.glif</string>\n    <key>blockSedecimant-F.stypo</key>\n    <string>blockS_edecimant-F.stypo.glif</string>\n    <key>blockSedecimant-G</key>\n    <string>blockS_edecimant-G.glif</string>\n    <key>blockSedecimant-G.stypo</key>\n    <string>blockS_edecimant-G.stypo.glif</string>\n    <key>blockSedecimant-EFG</key>\n    <string>blockS_edecimant-EFG.glif</string>\n    <key>blockSedecimant-EFG.stypo</key>\n    <string>blockS_edecimant-EFG.stypo.glif</string>\n    <key>blockSedecimant-DEF</key>\n    <string>blockS_edecimant-DEF.glif</string>\n    <key>blockSedecimant-DEF.stypo</key>\n    <string>blockS_edecimant-DEF.stypo.glif</string>\n    <key>blockSedecimant-9D</key>\n    <string>blockS_edecimant-9D.glif</string>\n    <key>blockSedecimant-9D.stypo</key>\n    <string>blockS_edecimant-9D.stypo.glif</string>\n    <key>blockSedecimant-59D</key>\n    <string>blockS_edecimant-59D.glif</string>\n    <key>blockSedecimant-59D.stypo</key>\n    <string>blockS_edecimant-59D.stypo.glif</string>\n    <key>blockSedecimant-159</key>\n    <string>blockS_edecimant-159.glif</string>\n    <key>blockSedecimant-159.stypo</key>\n    <string>blockS_edecimant-159.stypo.glif</string>\n    <key>blockSedecimant-15</key>\n    <string>blockS_edecimant-15.glif</string>\n    <key>blockSedecimant-15.stypo</key>\n    <string>blockS_edecimant-15.stypo.glif</string>\n    <key>blockSedecimant-123</key>\n    <string>blockS_edecimant-123.glif</string>\n    <key>blockSedecimant-123.stypo</key>\n    <string>blockS_edecimant-123.stypo.glif</string>\n    <key>blockSedecimant-234</key>\n    <string>blockS_edecimant-234.glif</string>\n    <key>blockSedecimant-234.stypo</key>\n    <string>blockS_edecimant-234.stypo.glif</string>\n    <key>blockSedecimant-48</key>\n    <string>blockS_edecimant-48.glif</string>\n    <key>blockSedecimant-48.stypo</key>\n    <string>blockS_edecimant-48.stypo.glif</string>\n    <key>blockSedecimant-48C</key>\n    <string>blockS_edecimant-48C.glif</string>\n    <key>blockSedecimant-48C.stypo</key>\n    <string>blockS_edecimant-48C.stypo.glif</string>\n    <key>blockSedecimant-8CG</key>\n    <string>blockS_edecimant-8CG.glif</string>\n    <key>blockSedecimant-8CG.stypo</key>\n    <string>blockS_edecimant-8CG.stypo.glif</string>\n    <key>blockSedecimant-CG</key>\n    <string>blockS_edecimant-CG.glif</string>\n    <key>blockSedecimant-CG.stypo</key>\n    <string>blockS_edecimant-CG.stypo.glif</string>\n    <key>verticalOneEighthBlock-2</key>\n    <string>verticalO_neE_ighthB_lock-2.glif</string>\n    <key>verticalOneEighthBlock-2.stypo</key>\n    <string>verticalO_neE_ighthB_lock-2.stypo.glif</string>\n    <key>verticalOneEighthBlock-3</key>\n    <string>verticalO_neE_ighthB_lock-3.glif</string>\n    <key>verticalOneEighthBlock-3.stypo</key>\n    <string>verticalO_neE_ighthB_lock-3.stypo.glif</string>\n    <key>verticalOneEighthBlock-4</key>\n    <string>verticalO_neE_ighthB_lock-4.glif</string>\n    <key>verticalOneEighthBlock-4.stypo</key>\n    <string>verticalO_neE_ighthB_lock-4.stypo.glif</string>\n    <key>verticalOneEighthBlock-5</key>\n    <string>verticalO_neE_ighthB_lock-5.glif</string>\n    <key>verticalOneEighthBlock-5.stypo</key>\n    <string>verticalO_neE_ighthB_lock-5.stypo.glif</string>\n    <key>verticalOneEighthBlock-6</key>\n    <string>verticalO_neE_ighthB_lock-6.glif</string>\n    <key>verticalOneEighthBlock-6.stypo</key>\n    <string>verticalO_neE_ighthB_lock-6.stypo.glif</string>\n    <key>verticalOneEighthBlock-7</key>\n    <string>verticalO_neE_ighthB_lock-7.glif</string>\n    <key>verticalOneEighthBlock-7.stypo</key>\n    <string>verticalO_neE_ighthB_lock-7.stypo.glif</string>\n    <key>horizontalOneEightBlock-2</key>\n    <string>horizontalO_neE_ightB_lock-2.glif</string>\n    <key>horizontalOneEightBlock-2.stypo</key>\n    <string>horizontalO_neE_ightB_lock-2.stypo.glif</string>\n    <key>horizontalOneEightBlock-3</key>\n    <string>horizontalO_neE_ightB_lock-3.glif</string>\n    <key>horizontalOneEightBlock-3.stypo</key>\n    <string>horizontalO_neE_ightB_lock-3.stypo.glif</string>\n    <key>horizontalOneEightBlock-4</key>\n    <string>horizontalO_neE_ightB_lock-4.glif</string>\n    <key>horizontalOneEightBlock-4.stypo</key>\n    <string>horizontalO_neE_ightB_lock-4.stypo.glif</string>\n    <key>horizontalOneEightBlock-5</key>\n    <string>horizontalO_neE_ightB_lock-5.glif</string>\n    <key>horizontalOneEightBlock-5.stypo</key>\n    <string>horizontalO_neE_ightB_lock-5.stypo.glif</string>\n    <key>horizontalOneEightBlock-6</key>\n    <string>horizontalO_neE_ightB_lock-6.glif</string>\n    <key>horizontalOneEightBlock-6.stypo</key>\n    <string>horizontalO_neE_ightB_lock-6.stypo.glif</string>\n    <key>horizontalOneEightBlock-7</key>\n    <string>horizontalO_neE_ightB_lock-7.glif</string>\n    <key>horizontalOneEightBlock-7.stypo</key>\n    <string>horizontalO_neE_ightB_lock-7.stypo.glif</string>\n    <key>leftAndLowerOneEightBlock</key>\n    <string>leftA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>leftAndLowerOneEightBlock.stypo</key>\n    <string>leftA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>leftAndUpperOneEightBlock</key>\n    <string>leftA_ndU_pperO_neE_ightB_lock.glif</string>\n    <key>leftAndUpperOneEightBlock.stypo</key>\n    <string>leftA_ndU_pperO_neE_ightB_lock.stypo.glif</string>\n    <key>rightAndUpperOneEightBlock</key>\n    <string>rightA_ndU_pperO_neE_ightB_lock.glif</string>\n    <key>rightAndUpperOneEightBlock.stypo</key>\n    <string>rightA_ndU_pperO_neE_ightB_lock.stypo.glif</string>\n    <key>rightAndLowerOneEightBlock</key>\n    <string>rightA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>rightAndLowerOneEightBlock.stypo</key>\n    <string>rightA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>upperAndLowerOneEightBlock</key>\n    <string>upperA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>upperAndLowerOneEightBlock.stypo</key>\n    <string>upperA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>upperThreeEighthsBlock</key>\n    <string>upperT_hreeE_ighthsB_lock.glif</string>\n    <key>upperThreeEighthsBlock.stypo</key>\n    <string>upperT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>upperFiveEighthsBlock</key>\n    <string>upperF_iveE_ighthsB_lock.glif</string>\n    <key>upperFiveEighthsBlock.stypo</key>\n    <string>upperF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>upperSevenEighthsBlock</key>\n    <string>upperS_evenE_ighthsB_lock.glif</string>\n    <key>upperSevenEighthsBlock.stypo</key>\n    <string>upperS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>rightOneQuarterBlock</key>\n    <string>rightO_neQ_uarterB_lock.glif</string>\n    <key>rightOneQuarterBlock.stypo</key>\n    <string>rightO_neQ_uarterB_lock.stypo.glif</string>\n    <key>rightThreeEighthsBlock</key>\n    <string>rightT_hreeE_ighthsB_lock.glif</string>\n    <key>rightThreeEighthsBlock.stypo</key>\n    <string>rightT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>rightFiveEighthsBlock</key>\n    <string>rightF_iveE_ighthsB_lock.glif</string>\n    <key>rightFiveEighthsBlock.stypo</key>\n    <string>rightF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>rightThreeQuartersBlock</key>\n    <string>rightT_hreeQ_uartersB_lock.glif</string>\n    <key>rightThreeQuartersBlock.stypo</key>\n    <string>rightT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>rightSevenEighthsBlock</key>\n    <string>rightS_evenE_ighthsB_lock.glif</string>\n    <key>rightSevenEighthsBlock.stypo</key>\n    <string>rightS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>leftTwoThirdsBlock</key>\n    <string>leftT_woT_hirdsB_lock.glif</string>\n    <key>leftTwoThirdsBlock.stypo</key>\n    <string>leftT_woT_hirdsB_lock.stypo.glif</string>\n    <key>leftOneThirdBlock</key>\n    <string>leftO_neT_hirdB_lock.glif</string>\n    <key>leftOneThirdBlock.stypo</key>\n    <string>leftO_neT_hirdB_lock.stypo.glif</string>\n    <key>heavyHorizontalFill</key>\n    <string>heavyH_orizontalF_ill.glif</string>\n    <key>heavyHorizontalFill.stypo</key>\n    <string>heavyH_orizontalF_ill.stypo.glif</string>\n    <key>blockSeparatedQuadrant-1</key>\n    <string>blockS_eparatedQ_uadrant-1.glif</string>\n    <key>blockSeparatedQuadrant-1.stypo</key>\n    <string>blockS_eparatedQ_uadrant-1.stypo.glif</string>\n    <key>blockSeparatedQuadrant-2</key>\n    <string>blockS_eparatedQ_uadrant-2.glif</string>\n    <key>blockSeparatedQuadrant-2.stypo</key>\n    <string>blockS_eparatedQ_uadrant-2.stypo.glif</string>\n    <key>blockSeparatedQuadrant-12</key>\n    <string>blockS_eparatedQ_uadrant-12.glif</string>\n    <key>blockSeparatedQuadrant-12.stypo</key>\n    <string>blockS_eparatedQ_uadrant-12.stypo.glif</string>\n    <key>blockSeparatedQuadrant-3</key>\n    <string>blockS_eparatedQ_uadrant-3.glif</string>\n    <key>blockSeparatedQuadrant-3.stypo</key>\n    <string>blockS_eparatedQ_uadrant-3.stypo.glif</string>\n    <key>blockSeparatedQuadrant-13</key>\n    <string>blockS_eparatedQ_uadrant-13.glif</string>\n    <key>blockSeparatedQuadrant-13.stypo</key>\n    <string>blockS_eparatedQ_uadrant-13.stypo.glif</string>\n    <key>blockSeparatedQuadrant-23</key>\n    <string>blockS_eparatedQ_uadrant-23.glif</string>\n    <key>blockSeparatedQuadrant-23.stypo</key>\n    <string>blockS_eparatedQ_uadrant-23.stypo.glif</string>\n    <key>blockSeparatedQuadrant-123</key>\n    <string>blockS_eparatedQ_uadrant-123.glif</string>\n    <key>blockSeparatedQuadrant-123.stypo</key>\n    <string>blockS_eparatedQ_uadrant-123.stypo.glif</string>\n    <key>blockSeparatedQuadrant-4</key>\n    <string>blockS_eparatedQ_uadrant-4.glif</string>\n    <key>blockSeparatedQuadrant-4.stypo</key>\n    <string>blockS_eparatedQ_uadrant-4.stypo.glif</string>\n    <key>blockSeparatedQuadrant-14</key>\n    <string>blockS_eparatedQ_uadrant-14.glif</string>\n    <key>blockSeparatedQuadrant-14.stypo</key>\n    <string>blockS_eparatedQ_uadrant-14.stypo.glif</string>\n    <key>blockSeparatedQuadrant-24</key>\n    <string>blockS_eparatedQ_uadrant-24.glif</string>\n    <key>blockSeparatedQuadrant-24.stypo</key>\n    <string>blockS_eparatedQ_uadrant-24.stypo.glif</string>\n    <key>blockSeparatedQuadrant-124</key>\n    <string>blockS_eparatedQ_uadrant-124.glif</string>\n    <key>blockSeparatedQuadrant-124.stypo</key>\n    <string>blockS_eparatedQ_uadrant-124.stypo.glif</string>\n    <key>blockSeparatedQuadrant-34</key>\n    <string>blockS_eparatedQ_uadrant-34.glif</string>\n    <key>blockSeparatedQuadrant-34.stypo</key>\n    <string>blockS_eparatedQ_uadrant-34.stypo.glif</string>\n    <key>blockSeparatedQuadrant-134</key>\n    <string>blockS_eparatedQ_uadrant-134.glif</string>\n    <key>blockSeparatedQuadrant-134.stypo</key>\n    <string>blockS_eparatedQ_uadrant-134.stypo.glif</string>\n    <key>blockSeparatedQuadrant-234</key>\n    <string>blockS_eparatedQ_uadrant-234.glif</string>\n    <key>blockSeparatedQuadrant-234.stypo</key>\n    <string>blockS_eparatedQ_uadrant-234.stypo.glif</string>\n    <key>blockSeparatedQuadrant-1234</key>\n    <string>blockS_eparatedQ_uadrant-1234.glif</string>\n    <key>blockSeparatedQuadrant-1234.stypo</key>\n    <string>blockS_eparatedQ_uadrant-1234.stypo.glif</string>\n    <key>blockSeparatedSextant-1</key>\n    <string>blockS_eparatedS_extant-1.glif</string>\n    <key>blockSeparatedSextant-1.stypo</key>\n    <string>blockS_eparatedS_extant-1.stypo.glif</string>\n    <key>blockSeparatedSextant-2</key>\n    <string>blockS_eparatedS_extant-2.glif</string>\n    <key>blockSeparatedSextant-2.stypo</key>\n    <string>blockS_eparatedS_extant-2.stypo.glif</string>\n    <key>blockSeparatedSextant-12</key>\n    <string>blockS_eparatedS_extant-12.glif</string>\n    <key>blockSeparatedSextant-12.stypo</key>\n    <string>blockS_eparatedS_extant-12.stypo.glif</string>\n    <key>blockSeparatedSextant-3</key>\n    <string>blockS_eparatedS_extant-3.glif</string>\n    <key>blockSeparatedSextant-3.stypo</key>\n    <string>blockS_eparatedS_extant-3.stypo.glif</string>\n    <key>blockSeparatedSextant-13</key>\n    <string>blockS_eparatedS_extant-13.glif</string>\n    <key>blockSeparatedSextant-13.stypo</key>\n    <string>blockS_eparatedS_extant-13.stypo.glif</string>\n    <key>blockSeparatedSextant-23</key>\n    <string>blockS_eparatedS_extant-23.glif</string>\n    <key>blockSeparatedSextant-23.stypo</key>\n    <string>blockS_eparatedS_extant-23.stypo.glif</string>\n    <key>blockSeparatedSextant-123</key>\n    <string>blockS_eparatedS_extant-123.glif</string>\n    <key>blockSeparatedSextant-123.stypo</key>\n    <string>blockS_eparatedS_extant-123.stypo.glif</string>\n    <key>blockSeparatedSextant-4</key>\n    <string>blockS_eparatedS_extant-4.glif</string>\n    <key>blockSeparatedSextant-4.stypo</key>\n    <string>blockS_eparatedS_extant-4.stypo.glif</string>\n    <key>blockSeparatedSextant-14</key>\n    <string>blockS_eparatedS_extant-14.glif</string>\n    <key>blockSeparatedSextant-14.stypo</key>\n    <string>blockS_eparatedS_extant-14.stypo.glif</string>\n    <key>blockSeparatedSextant-24</key>\n    <string>blockS_eparatedS_extant-24.glif</string>\n    <key>blockSeparatedSextant-24.stypo</key>\n    <string>blockS_eparatedS_extant-24.stypo.glif</string>\n    <key>blockSeparatedSextant-124</key>\n    <string>blockS_eparatedS_extant-124.glif</string>\n    <key>blockSeparatedSextant-124.stypo</key>\n    <string>blockS_eparatedS_extant-124.stypo.glif</string>\n    <key>blockSeparatedSextant-34</key>\n    <string>blockS_eparatedS_extant-34.glif</string>\n    <key>blockSeparatedSextant-34.stypo</key>\n    <string>blockS_eparatedS_extant-34.stypo.glif</string>\n    <key>blockSeparatedSextant-134</key>\n    <string>blockS_eparatedS_extant-134.glif</string>\n    <key>blockSeparatedSextant-134.stypo</key>\n    <string>blockS_eparatedS_extant-134.stypo.glif</string>\n    <key>blockSeparatedSextant-234</key>\n    <string>blockS_eparatedS_extant-234.glif</string>\n    <key>blockSeparatedSextant-234.stypo</key>\n    <string>blockS_eparatedS_extant-234.stypo.glif</string>\n    <key>blockSeparatedSextant-1234</key>\n    <string>blockS_eparatedS_extant-1234.glif</string>\n    <key>blockSeparatedSextant-1234.stypo</key>\n    <string>blockS_eparatedS_extant-1234.stypo.glif</string>\n    <key>blockSeparatedSextant-5</key>\n    <string>blockS_eparatedS_extant-5.glif</string>\n    <key>blockSeparatedSextant-5.stypo</key>\n    <string>blockS_eparatedS_extant-5.stypo.glif</string>\n    <key>blockSeparatedSextant-15</key>\n    <string>blockS_eparatedS_extant-15.glif</string>\n    <key>blockSeparatedSextant-15.stypo</key>\n    <string>blockS_eparatedS_extant-15.stypo.glif</string>\n    <key>blockSeparatedSextant-25</key>\n    <string>blockS_eparatedS_extant-25.glif</string>\n    <key>blockSeparatedSextant-25.stypo</key>\n    <string>blockS_eparatedS_extant-25.stypo.glif</string>\n    <key>blockSeparatedSextant-125</key>\n    <string>blockS_eparatedS_extant-125.glif</string>\n    <key>blockSeparatedSextant-125.stypo</key>\n    <string>blockS_eparatedS_extant-125.stypo.glif</string>\n    <key>blockSeparatedSextant-35</key>\n    <string>blockS_eparatedS_extant-35.glif</string>\n    <key>blockSeparatedSextant-35.stypo</key>\n    <string>blockS_eparatedS_extant-35.stypo.glif</string>\n    <key>blockSeparatedSextant-135</key>\n    <string>blockS_eparatedS_extant-135.glif</string>\n    <key>blockSeparatedSextant-135.stypo</key>\n    <string>blockS_eparatedS_extant-135.stypo.glif</string>\n    <key>blockSeparatedSextant-235</key>\n    <string>blockS_eparatedS_extant-235.glif</string>\n    <key>blockSeparatedSextant-235.stypo</key>\n    <string>blockS_eparatedS_extant-235.stypo.glif</string>\n    <key>blockSeparatedSextant-1235</key>\n    <string>blockS_eparatedS_extant-1235.glif</string>\n    <key>blockSeparatedSextant-1235.stypo</key>\n    <string>blockS_eparatedS_extant-1235.stypo.glif</string>\n    <key>blockSeparatedSextant-45</key>\n    <string>blockS_eparatedS_extant-45.glif</string>\n    <key>blockSeparatedSextant-45.stypo</key>\n    <string>blockS_eparatedS_extant-45.stypo.glif</string>\n    <key>blockSeparatedSextant-145</key>\n    <string>blockS_eparatedS_extant-145.glif</string>\n    <key>blockSeparatedSextant-145.stypo</key>\n    <string>blockS_eparatedS_extant-145.stypo.glif</string>\n    <key>blockSeparatedSextant-245</key>\n    <string>blockS_eparatedS_extant-245.glif</string>\n    <key>blockSeparatedSextant-245.stypo</key>\n    <string>blockS_eparatedS_extant-245.stypo.glif</string>\n    <key>blockSeparatedSextant-1245</key>\n    <string>blockS_eparatedS_extant-1245.glif</string>\n    <key>blockSeparatedSextant-1245.stypo</key>\n    <string>blockS_eparatedS_extant-1245.stypo.glif</string>\n    <key>blockSeparatedSextant-345</key>\n    <string>blockS_eparatedS_extant-345.glif</string>\n    <key>blockSeparatedSextant-345.stypo</key>\n    <string>blockS_eparatedS_extant-345.stypo.glif</string>\n    <key>blockSeparatedSextant-1345</key>\n    <string>blockS_eparatedS_extant-1345.glif</string>\n    <key>blockSeparatedSextant-1345.stypo</key>\n    <string>blockS_eparatedS_extant-1345.stypo.glif</string>\n    <key>blockSeparatedSextant-2345</key>\n    <string>blockS_eparatedS_extant-2345.glif</string>\n    <key>blockSeparatedSextant-2345.stypo</key>\n    <string>blockS_eparatedS_extant-2345.stypo.glif</string>\n    <key>blockSeparatedSextant-12345</key>\n    <string>blockS_eparatedS_extant-12345.glif</string>\n    <key>blockSeparatedSextant-12345.stypo</key>\n    <string>blockS_eparatedS_extant-12345.stypo.glif</string>\n    <key>blockSeparatedSextant-6</key>\n    <string>blockS_eparatedS_extant-6.glif</string>\n    <key>blockSeparatedSextant-6.stypo</key>\n    <string>blockS_eparatedS_extant-6.stypo.glif</string>\n    <key>blockSeparatedSextant-16</key>\n    <string>blockS_eparatedS_extant-16.glif</string>\n    <key>blockSeparatedSextant-16.stypo</key>\n    <string>blockS_eparatedS_extant-16.stypo.glif</string>\n    <key>blockSeparatedSextant-26</key>\n    <string>blockS_eparatedS_extant-26.glif</string>\n    <key>blockSeparatedSextant-26.stypo</key>\n    <string>blockS_eparatedS_extant-26.stypo.glif</string>\n    <key>blockSeparatedSextant-126</key>\n    <string>blockS_eparatedS_extant-126.glif</string>\n    <key>blockSeparatedSextant-126.stypo</key>\n    <string>blockS_eparatedS_extant-126.stypo.glif</string>\n    <key>blockSeparatedSextant-36</key>\n    <string>blockS_eparatedS_extant-36.glif</string>\n    <key>blockSeparatedSextant-36.stypo</key>\n    <string>blockS_eparatedS_extant-36.stypo.glif</string>\n    <key>blockSeparatedSextant-136</key>\n    <string>blockS_eparatedS_extant-136.glif</string>\n    <key>blockSeparatedSextant-136.stypo</key>\n    <string>blockS_eparatedS_extant-136.stypo.glif</string>\n    <key>blockSeparatedSextant-236</key>\n    <string>blockS_eparatedS_extant-236.glif</string>\n    <key>blockSeparatedSextant-236.stypo</key>\n    <string>blockS_eparatedS_extant-236.stypo.glif</string>\n    <key>blockSeparatedSextant-1236</key>\n    <string>blockS_eparatedS_extant-1236.glif</string>\n    <key>blockSeparatedSextant-1236.stypo</key>\n    <string>blockS_eparatedS_extant-1236.stypo.glif</string>\n    <key>blockSeparatedSextant-46</key>\n    <string>blockS_eparatedS_extant-46.glif</string>\n    <key>blockSeparatedSextant-46.stypo</key>\n    <string>blockS_eparatedS_extant-46.stypo.glif</string>\n    <key>blockSeparatedSextant-146</key>\n    <string>blockS_eparatedS_extant-146.glif</string>\n    <key>blockSeparatedSextant-146.stypo</key>\n    <string>blockS_eparatedS_extant-146.stypo.glif</string>\n    <key>blockSeparatedSextant-246</key>\n    <string>blockS_eparatedS_extant-246.glif</string>\n    <key>blockSeparatedSextant-246.stypo</key>\n    <string>blockS_eparatedS_extant-246.stypo.glif</string>\n    <key>blockSeparatedSextant-1246</key>\n    <string>blockS_eparatedS_extant-1246.glif</string>\n    <key>blockSeparatedSextant-1246.stypo</key>\n    <string>blockS_eparatedS_extant-1246.stypo.glif</string>\n    <key>blockSeparatedSextant-346</key>\n    <string>blockS_eparatedS_extant-346.glif</string>\n    <key>blockSeparatedSextant-346.stypo</key>\n    <string>blockS_eparatedS_extant-346.stypo.glif</string>\n    <key>blockSeparatedSextant-1346</key>\n    <string>blockS_eparatedS_extant-1346.glif</string>\n    <key>blockSeparatedSextant-1346.stypo</key>\n    <string>blockS_eparatedS_extant-1346.stypo.glif</string>\n    <key>blockSeparatedSextant-2346</key>\n    <string>blockS_eparatedS_extant-2346.glif</string>\n    <key>blockSeparatedSextant-2346.stypo</key>\n    <string>blockS_eparatedS_extant-2346.stypo.glif</string>\n    <key>blockSeparatedSextant-12346</key>\n    <string>blockS_eparatedS_extant-12346.glif</string>\n    <key>blockSeparatedSextant-12346.stypo</key>\n    <string>blockS_eparatedS_extant-12346.stypo.glif</string>\n    <key>blockSeparatedSextant-56</key>\n    <string>blockS_eparatedS_extant-56.glif</string>\n    <key>blockSeparatedSextant-56.stypo</key>\n    <string>blockS_eparatedS_extant-56.stypo.glif</string>\n    <key>blockSeparatedSextant-156</key>\n    <string>blockS_eparatedS_extant-156.glif</string>\n    <key>blockSeparatedSextant-156.stypo</key>\n    <string>blockS_eparatedS_extant-156.stypo.glif</string>\n    <key>blockSeparatedSextant-256</key>\n    <string>blockS_eparatedS_extant-256.glif</string>\n    <key>blockSeparatedSextant-256.stypo</key>\n    <string>blockS_eparatedS_extant-256.stypo.glif</string>\n    <key>blockSeparatedSextant-1256</key>\n    <string>blockS_eparatedS_extant-1256.glif</string>\n    <key>blockSeparatedSextant-1256.stypo</key>\n    <string>blockS_eparatedS_extant-1256.stypo.glif</string>\n    <key>blockSeparatedSextant-356</key>\n    <string>blockS_eparatedS_extant-356.glif</string>\n    <key>blockSeparatedSextant-356.stypo</key>\n    <string>blockS_eparatedS_extant-356.stypo.glif</string>\n    <key>blockSeparatedSextant-1356</key>\n    <string>blockS_eparatedS_extant-1356.glif</string>\n    <key>blockSeparatedSextant-1356.stypo</key>\n    <string>blockS_eparatedS_extant-1356.stypo.glif</string>\n    <key>blockSeparatedSextant-2356</key>\n    <string>blockS_eparatedS_extant-2356.glif</string>\n    <key>blockSeparatedSextant-2356.stypo</key>\n    <string>blockS_eparatedS_extant-2356.stypo.glif</string>\n    <key>blockSeparatedSextant-12356</key>\n    <string>blockS_eparatedS_extant-12356.glif</string>\n    <key>blockSeparatedSextant-12356.stypo</key>\n    <string>blockS_eparatedS_extant-12356.stypo.glif</string>\n    <key>blockSeparatedSextant-456</key>\n    <string>blockS_eparatedS_extant-456.glif</string>\n    <key>blockSeparatedSextant-456.stypo</key>\n    <string>blockS_eparatedS_extant-456.stypo.glif</string>\n    <key>blockSeparatedSextant-1456</key>\n    <string>blockS_eparatedS_extant-1456.glif</string>\n    <key>blockSeparatedSextant-1456.stypo</key>\n    <string>blockS_eparatedS_extant-1456.stypo.glif</string>\n    <key>blockSeparatedSextant-2456</key>\n    <string>blockS_eparatedS_extant-2456.glif</string>\n    <key>blockSeparatedSextant-2456.stypo</key>\n    <string>blockS_eparatedS_extant-2456.stypo.glif</string>\n    <key>blockSeparatedSextant-12456</key>\n    <string>blockS_eparatedS_extant-12456.glif</string>\n    <key>blockSeparatedSextant-12456.stypo</key>\n    <string>blockS_eparatedS_extant-12456.stypo.glif</string>\n    <key>blockSeparatedSextant-3456</key>\n    <string>blockS_eparatedS_extant-3456.glif</string>\n    <key>blockSeparatedSextant-3456.stypo</key>\n    <string>blockS_eparatedS_extant-3456.stypo.glif</string>\n    <key>blockSeparatedSextant-13456</key>\n    <string>blockS_eparatedS_extant-13456.glif</string>\n    <key>blockSeparatedSextant-13456.stypo</key>\n    <string>blockS_eparatedS_extant-13456.stypo.glif</string>\n    <key>blockSeparatedSextant-23456</key>\n    <string>blockS_eparatedS_extant-23456.glif</string>\n    <key>blockSeparatedSextant-23456.stypo</key>\n    <string>blockS_eparatedS_extant-23456.stypo.glif</string>\n    <key>blockSeparatedSextant-123456</key>\n    <string>blockS_eparatedS_extant-123456.glif</string>\n    <key>blockSeparatedSextant-123456.stypo</key>\n    <string>blockS_eparatedS_extant-123456.stypo.glif</string>\n    <key>segmentedDigit0</key>\n    <string>segmentedD_igit0.glif</string>\n    <key>segmentedDigit1</key>\n    <string>segmentedD_igit1.glif</string>\n    <key>segmentedDigit2</key>\n    <string>segmentedD_igit2.glif</string>\n    <key>segmentedDigit3</key>\n    <string>segmentedD_igit3.glif</string>\n    <key>segmentedDigit4</key>\n    <string>segmentedD_igit4.glif</string>\n    <key>segmentedDigit5</key>\n    <string>segmentedD_igit5.glif</string>\n    <key>segmentedDigit6</key>\n    <string>segmentedD_igit6.glif</string>\n    <key>segmentedDigit7</key>\n    <string>segmentedD_igit7.glif</string>\n    <key>segmentedDigit8</key>\n    <string>segmentedD_igit8.glif</string>\n    <key>segmentedDigit9</key>\n    <string>segmentedD_igit9.glif</string>\n    <key>largeType-1CE1A</key>\n    <string>largeT_ype-1CE1A.glif</string>\n    <key>largeType-1CE1A.stypo</key>\n    <string>largeT_ype-1CE1A.stypo.glif</string>\n    <key>largeType-1CE1B</key>\n    <string>largeT_ype-1CE1B.glif</string>\n    <key>largeType-1CE1B.stypo</key>\n    <string>largeT_ype-1CE1B.stypo.glif</string>\n    <key>largeType-1CE1C</key>\n    <string>largeT_ype-1CE1C.glif</string>\n    <key>largeType-1CE1C.stypo</key>\n    <string>largeT_ype-1CE1C.stypo.glif</string>\n    <key>largeType-1CE1D</key>\n    <string>largeT_ype-1CE1D.glif</string>\n    <key>largeType-1CE1D.stypo</key>\n    <string>largeT_ype-1CE1D.stypo.glif</string>\n    <key>largeType-1CE1E</key>\n    <string>largeT_ype-1CE1E.glif</string>\n    <key>largeType-1CE1E.stypo</key>\n    <string>largeT_ype-1CE1E.stypo.glif</string>\n    <key>largeType-1CE1F</key>\n    <string>largeT_ype-1CE1F.glif</string>\n    <key>largeType-1CE1F.stypo</key>\n    <string>largeT_ype-1CE1F.stypo.glif</string>\n    <key>largeType-1CE20</key>\n    <string>largeT_ype-1CE20.glif</string>\n    <key>largeType-1CE20.stypo</key>\n    <string>largeT_ype-1CE20.stypo.glif</string>\n    <key>largeType-1CE21</key>\n    <string>largeT_ype-1CE21.glif</string>\n    <key>largeType-1CE21.stypo</key>\n    <string>largeT_ype-1CE21.stypo.glif</string>\n    <key>largeType-1CE22</key>\n    <string>largeT_ype-1CE22.glif</string>\n    <key>largeType-1CE22.stypo</key>\n    <string>largeT_ype-1CE22.stypo.glif</string>\n    <key>largeType-1CE23</key>\n    <string>largeT_ype-1CE23.glif</string>\n    <key>largeType-1CE23.stypo</key>\n    <string>largeT_ype-1CE23.stypo.glif</string>\n    <key>largeType-1CE24</key>\n    <string>largeT_ype-1CE24.glif</string>\n    <key>largeType-1CE24.stypo</key>\n    <string>largeT_ype-1CE24.stypo.glif</string>\n    <key>largeType-1CE25</key>\n    <string>largeT_ype-1CE25.glif</string>\n    <key>largeType-1CE25.stypo</key>\n    <string>largeT_ype-1CE25.stypo.glif</string>\n    <key>largeType-1CE26</key>\n    <string>largeT_ype-1CE26.glif</string>\n    <key>largeType-1CE26.stypo</key>\n    <string>largeT_ype-1CE26.stypo.glif</string>\n    <key>largeType-1CE27</key>\n    <string>largeT_ype-1CE27.glif</string>\n    <key>largeType-1CE27.stypo</key>\n    <string>largeT_ype-1CE27.stypo.glif</string>\n    <key>largeType-1CE28</key>\n    <string>largeT_ype-1CE28.glif</string>\n    <key>largeType-1CE28.stypo</key>\n    <string>largeT_ype-1CE28.stypo.glif</string>\n    <key>largeType-1CE29</key>\n    <string>largeT_ype-1CE29.glif</string>\n    <key>largeType-1CE29.stypo</key>\n    <string>largeT_ype-1CE29.stypo.glif</string>\n    <key>largeType-1CE2A</key>\n    <string>largeT_ype-1CE2A.glif</string>\n    <key>largeType-1CE2A.stypo</key>\n    <string>largeT_ype-1CE2A.stypo.glif</string>\n    <key>largeType-1CE2B</key>\n    <string>largeT_ype-1CE2B.glif</string>\n    <key>largeType-1CE2B.stypo</key>\n    <string>largeT_ype-1CE2B.stypo.glif</string>\n    <key>largeType-1CE2C</key>\n    <string>largeT_ype-1CE2C.glif</string>\n    <key>largeType-1CE2C.stypo</key>\n    <string>largeT_ype-1CE2C.stypo.glif</string>\n    <key>largeType-1CE2D</key>\n    <string>largeT_ype-1CE2D.glif</string>\n    <key>largeType-1CE2D.stypo</key>\n    <string>largeT_ype-1CE2D.stypo.glif</string>\n    <key>largeType-1CE2E</key>\n    <string>largeT_ype-1CE2E.glif</string>\n    <key>largeType-1CE2E.stypo</key>\n    <string>largeT_ype-1CE2E.stypo.glif</string>\n    <key>largeType-1CE2F</key>\n    <string>largeT_ype-1CE2F.glif</string>\n    <key>largeType-1CE2F.stypo</key>\n    <string>largeT_ype-1CE2F.stypo.glif</string>\n    <key>largeType-1CE30</key>\n    <string>largeT_ype-1CE30.glif</string>\n    <key>largeType-1CE30.stypo</key>\n    <string>largeT_ype-1CE30.stypo.glif</string>\n    <key>largeType-1CE31</key>\n    <string>largeT_ype-1CE31.glif</string>\n    <key>largeType-1CE31.stypo</key>\n    <string>largeT_ype-1CE31.stypo.glif</string>\n    <key>largeType-1CE32</key>\n    <string>largeT_ype-1CE32.glif</string>\n    <key>largeType-1CE32.stypo</key>\n    <string>largeT_ype-1CE32.stypo.glif</string>\n    <key>largeType-1CE33</key>\n    <string>largeT_ype-1CE33.glif</string>\n    <key>largeType-1CE33.stypo</key>\n    <string>largeT_ype-1CE33.stypo.glif</string>\n    <key>largeType-1CE34</key>\n    <string>largeT_ype-1CE34.glif</string>\n    <key>largeType-1CE34.stypo</key>\n    <string>largeT_ype-1CE34.stypo.glif</string>\n    <key>largeType-1CE35</key>\n    <string>largeT_ype-1CE35.glif</string>\n    <key>largeType-1CE35.stypo</key>\n    <string>largeT_ype-1CE35.stypo.glif</string>\n    <key>largeType-1CE36</key>\n    <string>largeT_ype-1CE36.glif</string>\n    <key>largeType-1CE36.stypo</key>\n    <string>largeT_ype-1CE36.stypo.glif</string>\n    <key>largeType-1CE37</key>\n    <string>largeT_ype-1CE37.glif</string>\n    <key>largeType-1CE37.stypo</key>\n    <string>largeT_ype-1CE37.stypo.glif</string>\n    <key>largeType-1CE38</key>\n    <string>largeT_ype-1CE38.glif</string>\n    <key>largeType-1CE38.stypo</key>\n    <string>largeT_ype-1CE38.stypo.glif</string>\n    <key>largeType-1CE39</key>\n    <string>largeT_ype-1CE39.glif</string>\n    <key>largeType-1CE39.stypo</key>\n    <string>largeT_ype-1CE39.stypo.glif</string>\n    <key>largeType-1CE3A</key>\n    <string>largeT_ype-1CE3A.glif</string>\n    <key>largeType-1CE3A.stypo</key>\n    <string>largeT_ype-1CE3A.stypo.glif</string>\n    <key>largeType-1CE3B</key>\n    <string>largeT_ype-1CE3B.glif</string>\n    <key>largeType-1CE3B.stypo</key>\n    <string>largeT_ype-1CE3B.stypo.glif</string>\n    <key>largeType-1CE3C</key>\n    <string>largeT_ype-1CE3C.glif</string>\n    <key>largeType-1CE3C.stypo</key>\n    <string>largeT_ype-1CE3C.stypo.glif</string>\n    <key>largeType-1CE3D</key>\n    <string>largeT_ype-1CE3D.glif</string>\n    <key>largeType-1CE3D.stypo</key>\n    <string>largeT_ype-1CE3D.stypo.glif</string>\n    <key>largeType-1CE3E</key>\n    <string>largeT_ype-1CE3E.glif</string>\n    <key>largeType-1CE3E.stypo</key>\n    <string>largeT_ype-1CE3E.stypo.glif</string>\n    <key>largeType-1CE3F</key>\n    <string>largeT_ype-1CE3F.glif</string>\n    <key>largeType-1CE3F.stypo</key>\n    <string>largeT_ype-1CE3F.stypo.glif</string>\n    <key>largeType-1CE40</key>\n    <string>largeT_ype-1CE40.glif</string>\n    <key>largeType-1CE40.stypo</key>\n    <string>largeT_ype-1CE40.stypo.glif</string>\n    <key>largeType-1CE41</key>\n    <string>largeT_ype-1CE41.glif</string>\n    <key>largeType-1CE41.stypo</key>\n    <string>largeT_ype-1CE41.stypo.glif</string>\n    <key>largeType-1CE42</key>\n    <string>largeT_ype-1CE42.glif</string>\n    <key>largeType-1CE42.stypo</key>\n    <string>largeT_ype-1CE42.stypo.glif</string>\n    <key>largeType-1CE43</key>\n    <string>largeT_ype-1CE43.glif</string>\n    <key>largeType-1CE43.stypo</key>\n    <string>largeT_ype-1CE43.stypo.glif</string>\n    <key>largeType-1CE44</key>\n    <string>largeT_ype-1CE44.glif</string>\n    <key>largeType-1CE44.stypo</key>\n    <string>largeT_ype-1CE44.stypo.glif</string>\n    <key>largeType-1CE45</key>\n    <string>largeT_ype-1CE45.glif</string>\n    <key>largeType-1CE45.stypo</key>\n    <string>largeT_ype-1CE45.stypo.glif</string>\n    <key>largeType-1CE46</key>\n    <string>largeT_ype-1CE46.glif</string>\n    <key>largeType-1CE46.stypo</key>\n    <string>largeT_ype-1CE46.stypo.glif</string>\n    <key>largeType-1CE47</key>\n    <string>largeT_ype-1CE47.glif</string>\n    <key>largeType-1CE47.stypo</key>\n    <string>largeT_ype-1CE47.stypo.glif</string>\n    <key>largeType-1CE48</key>\n    <string>largeT_ype-1CE48.glif</string>\n    <key>largeType-1CE48.stypo</key>\n    <string>largeT_ype-1CE48.stypo.glif</string>\n    <key>largeType-1CE49</key>\n    <string>largeT_ype-1CE49.glif</string>\n    <key>largeType-1CE49.stypo</key>\n    <string>largeT_ype-1CE49.stypo.glif</string>\n    <key>largeType-1CE4A</key>\n    <string>largeT_ype-1CE4A.glif</string>\n    <key>largeType-1CE4A.stypo</key>\n    <string>largeT_ype-1CE4A.stypo.glif</string>\n    <key>largeType-1CE4B</key>\n    <string>largeT_ype-1CE4B.glif</string>\n    <key>largeType-1CE4B.stypo</key>\n    <string>largeT_ype-1CE4B.stypo.glif</string>\n    <key>largeType-1CE4C</key>\n    <string>largeT_ype-1CE4C.glif</string>\n    <key>largeType-1CE4C.stypo</key>\n    <string>largeT_ype-1CE4C.stypo.glif</string>\n    <key>largeType-1CE4D</key>\n    <string>largeT_ype-1CE4D.glif</string>\n    <key>largeType-1CE4D.stypo</key>\n    <string>largeT_ype-1CE4D.stypo.glif</string>\n    <key>largeType-1CE4E</key>\n    <string>largeT_ype-1CE4E.glif</string>\n    <key>largeType-1CE4E.stypo</key>\n    <string>largeT_ype-1CE4E.stypo.glif</string>\n    <key>largeType-1CE4F</key>\n    <string>largeT_ype-1CE4F.glif</string>\n    <key>largeType-1CE4F.stypo</key>\n    <string>largeT_ype-1CE4F.stypo.glif</string>\n    <key>largeType-1CE50</key>\n    <string>largeT_ype-1CE50.glif</string>\n    <key>largeType-1CE50.stypo</key>\n    <string>largeT_ype-1CE50.stypo.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/copyright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"copyright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A9\"/>\n  <outline>\n    <contour>\n      <point x=\"509\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"15\"/>\n      <point x=\"1239\" y=\"345\"/>\n      <point x=\"1239\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1239\" y=\"1219\"/>\n      <point x=\"1059\" y=\"1405\"/>\n      <point x=\"754\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"1405\"/>\n      <point x=\"21\" y=\"1070\"/>\n      <point x=\"21\" y=\"502\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"21\" y=\"196\"/>\n      <point x=\"202\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"380\"/>\n      <point x=\"772\" y=\"384\"/>\n      <point x=\"832\" y=\"400\" type=\"curve\"/>\n      <point x=\"835\" y=\"599\" type=\"line\"/>\n      <point x=\"788\" y=\"589\"/>\n      <point x=\"737\" y=\"583\"/>\n      <point x=\"689\" y=\"583\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"614\" y=\"583\"/>\n      <point x=\"573\" y=\"620\"/>\n      <point x=\"573\" y=\"689\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"778\"/>\n      <point x=\"623\" y=\"837\"/>\n      <point x=\"699\" y=\"837\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"837\"/>\n      <point x=\"770\" y=\"819\"/>\n      <point x=\"796\" y=\"784\" type=\"curve\"/>\n      <point x=\"944\" y=\"936\" type=\"line\"/>\n      <point x=\"887\" y=\"1024\"/>\n      <point x=\"808\" y=\"1040\"/>\n      <point x=\"715\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"1040\"/>\n      <point x=\"336\" y=\"882\"/>\n      <point x=\"336\" y=\"645\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"474\"/>\n      <point x=\"446\" y=\"380\"/>\n    </contour>\n    <contour>\n      <point x=\"546\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"363\" y=\"227\"/>\n      <point x=\"255\" y=\"341\"/>\n      <point x=\"255\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"255\" y=\"948\"/>\n      <point x=\"426\" y=\"1193\"/>\n      <point x=\"716\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"1193\"/>\n      <point x=\"1005\" y=\"1074\"/>\n      <point x=\"1005\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1005\" y=\"467\"/>\n      <point x=\"835\" y=\"227\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/crosshatchF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"crosshatchFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A6\"/>\n  <note>\nuni25A6\n</note>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"756\" type=\"line\"/>\n      <point x=\"1051\" y=\"756\" type=\"line\"/>\n      <point x=\"1051\" y=\"914\" type=\"line\"/>\n      <point x=\"149\" y=\"914\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"396\" y=\"259\" type=\"line\"/>\n      <point x=\"554\" y=\"259\" type=\"line\"/>\n      <point x=\"554\" y=\"1161\" type=\"line\"/>\n      <point x=\"396\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"506\" type=\"line\"/>\n      <point x=\"1051\" y=\"506\" type=\"line\"/>\n      <point x=\"1051\" y=\"664\" type=\"line\"/>\n      <point x=\"149\" y=\"664\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"646\" y=\"259\" type=\"line\"/>\n      <point x=\"804\" y=\"259\" type=\"line\"/>\n      <point x=\"804\" y=\"1161\" type=\"line\"/>\n      <point x=\"646\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/currency.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"currency\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A4\"/>\n  <outline>\n    <contour>\n      <point x=\"563\" y=\"283\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"858\" y=\"283\"/>\n      <point x=\"1082\" y=\"498\"/>\n      <point x=\"1082\" y=\"782\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"986\"/>\n      <point x=\"940\" y=\"1117\"/>\n      <point x=\"704\" y=\"1117\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"1117\"/>\n      <point x=\"185\" y=\"902\"/>\n      <point x=\"185\" y=\"618\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"185\" y=\"414\"/>\n      <point x=\"326\" y=\"283\"/>\n    </contour>\n    <contour>\n      <point x=\"146\" y=\"122\" type=\"line\"/>\n      <point x=\"410\" y=\"357\" type=\"line\"/>\n      <point x=\"241\" y=\"480\" type=\"line\"/>\n      <point x=\"12\" y=\"281\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"922\" y=\"129\" type=\"line\"/>\n      <point x=\"1101\" y=\"269\" type=\"line\"/>\n      <point x=\"922\" y=\"491\" type=\"line\"/>\n      <point x=\"746\" y=\"362\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"596\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"520\"/>\n      <point x=\"456\" y=\"571\"/>\n      <point x=\"456\" y=\"653\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"781\"/>\n      <point x=\"549\" y=\"880\"/>\n      <point x=\"670\" y=\"880\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"880\"/>\n      <point x=\"810\" y=\"829\"/>\n      <point x=\"810\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"619\"/>\n      <point x=\"717\" y=\"520\"/>\n    </contour>\n    <contour>\n      <point x=\"325\" y=\"926\" type=\"line\"/>\n      <point x=\"516\" y=\"1034\" type=\"line\"/>\n      <point x=\"338\" y=\"1267\" type=\"line\"/>\n      <point x=\"159\" y=\"1127\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1026\" y=\"916\" type=\"line\"/>\n      <point x=\"1250\" y=\"1118\" type=\"line\"/>\n      <point x=\"1106\" y=\"1283\" type=\"line\"/>\n      <point x=\"861\" y=\"1040\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/d.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"d\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0064\"/>\n  <anchor x=\"486\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"548\" y=\"532\" name=\"center\"/>\n  <anchor x=\"1025\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1199\" y=\"1062\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"341\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"-21\"/>\n      <point x=\"693\" y=\"125\"/>\n      <point x=\"757\" y=\"379\" type=\"curve\"/>\n      <point x=\"653\" y=\"224\" type=\"line\"/>\n      <point x=\"769\" y=\"224\" type=\"line\"/>\n      <point x=\"774\" y=\"667\" type=\"line\"/>\n      <point x=\"720\" y=\"393\"/>\n      <point x=\"599\" y=\"236\"/>\n      <point x=\"436\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"236\"/>\n      <point x=\"314\" y=\"275\"/>\n      <point x=\"314\" y=\"359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"615\"/>\n      <point x=\"593\" y=\"809\"/>\n      <point x=\"947\" y=\"823\" type=\"curve\"/>\n      <point x=\"1108\" y=\"1080\" type=\"line\"/>\n      <point x=\"1090\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"1080\"/>\n      <point x=\"37\" y=\"765\"/>\n      <point x=\"37\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"88\"/>\n      <point x=\"147\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"1022\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"-10\" type=\"line\"/>\n      <point x=\"1160\" y=\"219\" type=\"line\"/>\n      <point x=\"1118\" y=\"219\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"980\" y=\"219\"/>\n      <point x=\"975\" y=\"258\"/>\n      <point x=\"995\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1108\" y=\"1017\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"1367\"/>\n      <point x=\"1059\" y=\"1521\"/>\n      <point x=\"785\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"1521\"/>\n      <point x=\"663\" y=\"1510\"/>\n      <point x=\"603\" y=\"1495\" type=\"curve\"/>\n      <point x=\"636\" y=\"1243\" type=\"line\"/>\n      <point x=\"682\" y=\"1258\"/>\n      <point x=\"720\" y=\"1264\"/>\n      <point x=\"761\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"1264\"/>\n      <point x=\"870\" y=\"1210\"/>\n      <point x=\"848\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"619\" type=\"line\"/>\n      <point x=\"746\" y=\"250\" type=\"line\"/>\n      <point x=\"700\" y=\"11\"/>\n      <point x=\"870\" y=\"-10\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dagger.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dagger\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2020\"/>\n  <outline>\n    <contour>\n      <point x=\"429\" y=\"272\" type=\"line\"/>\n      <point x=\"673\" y=\"272\" type=\"line\"/>\n      <point x=\"889\" y=\"1440\" type=\"line\"/>\n      <point x=\"625\" y=\"1440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"273\" y=\"928\" type=\"line\"/>\n      <point x=\"673\" y=\"937\" type=\"line\"/>\n      <point x=\"1067\" y=\"928\" type=\"line\"/>\n      <point x=\"1109\" y=\"1168\" type=\"line\"/>\n      <point x=\"713\" y=\"1160\" type=\"line\"/>\n      <point x=\"315\" y=\"1168\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/daggerdbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"daggerdbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2021\"/>\n  <outline>\n    <contour>\n      <point x=\"283\" y=\"984\" type=\"line\"/>\n      <point x=\"683\" y=\"992\" type=\"line\"/>\n      <point x=\"1077\" y=\"984\" type=\"line\"/>\n      <point x=\"1119\" y=\"1222\" type=\"line\"/>\n      <point x=\"722\" y=\"1214\" type=\"line\"/>\n      <point x=\"325\" y=\"1222\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"412\" y=\"272\" type=\"line\"/>\n      <point x=\"690\" y=\"272\" type=\"line\"/>\n      <point x=\"741\" y=\"620\" type=\"line\"/>\n      <point x=\"483\" y=\"620\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"199\" y=\"510\" type=\"line\"/>\n      <point x=\"599\" y=\"518\" type=\"line\"/>\n      <point x=\"993\" y=\"510\" type=\"line\"/>\n      <point x=\"1035\" y=\"748\" type=\"line\"/>\n      <point x=\"639\" y=\"740\" type=\"line\"/>\n      <point x=\"241\" y=\"748\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"490\" y=\"660\" type=\"line\"/>\n      <point x=\"748\" y=\"660\" type=\"line\"/>\n      <point x=\"827\" y=\"1104\" type=\"line\"/>\n      <point x=\"569\" y=\"1104\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"565\" y=\"1082\" type=\"line\"/>\n      <point x=\"823\" y=\"1082\" type=\"line\"/>\n      <point x=\"896\" y=\"1440\" type=\"line\"/>\n      <point x=\"618\" y=\"1440\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dashdownA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dashdownArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21E3\"/>\n  <outline>\n    <contour>\n      <point x=\"416\" y=\"228\" type=\"line\"/>\n      <point x=\"678\" y=\"228\" type=\"line\"/>\n      <point x=\"739\" y=\"574\" type=\"line\"/>\n      <point x=\"477\" y=\"574\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"489\" y=\"642\" type=\"line\"/>\n      <point x=\"751\" y=\"642\" type=\"line\"/>\n      <point x=\"787\" y=\"849\" type=\"line\"/>\n      <point x=\"525\" y=\"849\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"537\" y=\"917\" type=\"line\"/>\n      <point x=\"799\" y=\"917\" type=\"line\"/>\n      <point x=\"837\" y=\"1133\" type=\"line\"/>\n      <point x=\"575\" y=\"1133\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"587\" y=\"1201\" type=\"line\"/>\n      <point x=\"849\" y=\"1201\" type=\"line\"/>\n      <point x=\"888\" y=\"1420\" type=\"line\"/>\n      <point x=\"626\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"27\" y=\"440\" type=\"line\"/>\n      <point x=\"441\" y=\"-20\" type=\"line\"/>\n      <point x=\"563\" y=\"-20\" type=\"line\"/>\n      <point x=\"1119\" y=\"390\" type=\"line\"/>\n      <point x=\"962\" y=\"580\" type=\"line\"/>\n      <point x=\"557\" y=\"259\" type=\"line\"/>\n      <point x=\"539\" y=\"259\" type=\"line\"/>\n      <point x=\"215\" y=\"625\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dataLinkEscapeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2410\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dataLinkEscapeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"635\" type=\"line\"/>\n      <point x=\"1091\" y=\"635\" type=\"line\"/>\n      <point x=\"1091\" y=\"785\" type=\"line\"/>\n      <point x=\"109\" y=\"785\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dcaron.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcaron.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"486\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"548\" y=\"532\" name=\"center\"/>\n  <anchor x=\"970\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1144\" y=\"1062\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"1146\" y=\"1188\" type=\"line\"/>\n      <point x=\"1342\" y=\"1188\" type=\"line\"/>\n      <point x=\"1499\" y=\"1568\" type=\"line\"/>\n      <point x=\"1253\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"714\" y=\"224\" type=\"line\"/>\n      <point x=\"719\" y=\"667\" type=\"line\"/>\n      <point x=\"674\" y=\"393\"/>\n      <point x=\"572\" y=\"236\"/>\n      <point x=\"436\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"236\"/>\n      <point x=\"314\" y=\"275\"/>\n      <point x=\"314\" y=\"359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"615\"/>\n      <point x=\"569\" y=\"809\"/>\n      <point x=\"892\" y=\"823\" type=\"curve\"/>\n      <point x=\"1053\" y=\"1080\" type=\"line\"/>\n      <point x=\"1035\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"1080\"/>\n      <point x=\"37\" y=\"765\"/>\n      <point x=\"37\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"88\"/>\n      <point x=\"147\" y=\"-21\"/>\n      <point x=\"341\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"-21\"/>\n      <point x=\"646\" y=\"125\"/>\n      <point x=\"702\" y=\"379\" type=\"curve\"/>\n      <point x=\"598\" y=\"224\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"970\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1068\" y=\"-10\" type=\"line\"/>\n      <point x=\"1108\" y=\"219\" type=\"line\"/>\n      <point x=\"1066\" y=\"219\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"219\"/>\n      <point x=\"923\" y=\"258\"/>\n      <point x=\"943\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1056\" y=\"1017\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"1367\"/>\n      <point x=\"1007\" y=\"1521\"/>\n      <point x=\"733\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"1521\"/>\n      <point x=\"611\" y=\"1510\"/>\n      <point x=\"551\" y=\"1495\" type=\"curve\"/>\n      <point x=\"584\" y=\"1243\" type=\"line\"/>\n      <point x=\"630\" y=\"1258\"/>\n      <point x=\"668\" y=\"1264\"/>\n      <point x=\"709\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"1264\"/>\n      <point x=\"818\" y=\"1210\"/>\n      <point x=\"796\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"619\" type=\"line\"/>\n      <point x=\"694\" y=\"250\" type=\"line\"/>\n      <point x=\"648\" y=\"11\"/>\n      <point x=\"818\" y=\"-10\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010F\"/>\n  <outline>\n    <contour>\n      <point x=\"1231\" y=\"1188\" type=\"line\"/>\n      <point x=\"1427\" y=\"1188\" type=\"line\"/>\n      <point x=\"1584\" y=\"1568\" type=\"line\"/>\n      <point x=\"1338\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"d\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dcroat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcroat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0111\"/>\n  <anchor x=\"486\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"548\" y=\"532\" name=\"center\"/>\n  <anchor x=\"1059\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1199\" y=\"1062\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"921\" y=\"1500\" type=\"line\"/>\n      <point x=\"765\" y=\"619\" type=\"line\"/>\n      <point x=\"734\" y=\"289\" type=\"line\"/>\n      <point x=\"717\" y=\"-10\" type=\"line\"/>\n      <point x=\"1084\" y=\"0\" type=\"line\"/>\n      <point x=\"1123\" y=\"220\" type=\"line\"/>\n      <point x=\"902\" y=\"220\" type=\"line\"/>\n      <point x=\"951\" y=\"116\" type=\"line\"/>\n      <point x=\"1196\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"769\" y=\"224\" type=\"line\"/>\n      <point x=\"774\" y=\"667\" type=\"line\"/>\n      <point x=\"720\" y=\"393\"/>\n      <point x=\"599\" y=\"236\"/>\n      <point x=\"436\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"236\"/>\n      <point x=\"314\" y=\"275\"/>\n      <point x=\"314\" y=\"359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"615\"/>\n      <point x=\"593\" y=\"809\"/>\n      <point x=\"947\" y=\"823\" type=\"curve\"/>\n      <point x=\"1108\" y=\"1080\" type=\"line\"/>\n      <point x=\"1090\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"1080\"/>\n      <point x=\"37\" y=\"765\"/>\n      <point x=\"37\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"88\"/>\n      <point x=\"147\" y=\"-21\"/>\n      <point x=\"341\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"-21\"/>\n      <point x=\"693\" y=\"125\"/>\n      <point x=\"757\" y=\"379\" type=\"curve\"/>\n      <point x=\"653\" y=\"224\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"550\" y=\"1168\" type=\"line\"/>\n      <point x=\"1243\" y=\"1168\" type=\"line\"/>\n      <point x=\"1283\" y=\"1392\" type=\"line\"/>\n      <point x=\"590\" y=\"1392\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/de-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"de-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0434\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"501\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"987\" y=\"-20\"/>\n      <point x=\"1131\" y=\"469\"/>\n      <point x=\"1131\" y=\"906\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"1320\"/>\n      <point x=\"1004\" y=\"1520\"/>\n      <point x=\"660\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"1520\"/>\n      <point x=\"409\" y=\"1483\"/>\n      <point x=\"306\" y=\"1439\" type=\"curve\"/>\n      <point x=\"378\" y=\"1194\" type=\"line\"/>\n      <point x=\"460\" y=\"1234\"/>\n      <point x=\"544\" y=\"1263\"/>\n      <point x=\"634\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"1263\"/>\n      <point x=\"871\" y=\"1143\"/>\n      <point x=\"871\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"595\"/>\n      <point x=\"778\" y=\"237\"/>\n      <point x=\"525\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"237\"/>\n      <point x=\"388\" y=\"296\"/>\n      <point x=\"388\" y=\"416\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"613\"/>\n      <point x=\"488\" y=\"761\"/>\n      <point x=\"678\" y=\"761\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"761\"/>\n      <point x=\"844\" y=\"763\"/>\n      <point x=\"932\" y=\"692\" type=\"curve\"/>\n      <point x=\"1045\" y=\"897\" type=\"line\"/>\n      <point x=\"964\" y=\"971\"/>\n      <point x=\"823\" y=\"1007\"/>\n      <point x=\"682\" y=\"1007\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"1007\"/>\n      <point x=\"102\" y=\"759\"/>\n      <point x=\"101\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"100\" y=\"57\"/>\n      <point x=\"312\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/de-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"de-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"g\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/degree.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"degree\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B0\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"690\"/>\n      <point x=\"1048\" y=\"840\"/>\n      <point x=\"1088\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"1290\"/>\n      <point x=\"996\" y=\"1440\"/>\n      <point x=\"760\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"524\" y=\"1440\"/>\n      <point x=\"340\" y=\"1290\"/>\n      <point x=\"300\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"840\"/>\n      <point x=\"392\" y=\"690\"/>\n    </contour>\n    <contour>\n      <point x=\"663\" y=\"892\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"892\"/>\n      <point x=\"516\" y=\"961\"/>\n      <point x=\"534\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"1169\"/>\n      <point x=\"629\" y=\"1238\"/>\n      <point x=\"725\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"1238\"/>\n      <point x=\"872\" y=\"1169\"/>\n      <point x=\"854\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"961\"/>\n      <point x=\"759\" y=\"892\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/deleteC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deleteControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2421\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/deleteF_ormT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deleteFormTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2425\"/>\n  <outline>\n    <contour>\n      <point x=\"191\" y=\"261\" type=\"line\"/>\n      <point x=\"1103\" y=\"1028\" type=\"line\"/>\n      <point x=\"990\" y=\"1242\" type=\"line\"/>\n      <point x=\"78\" y=\"475\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"519\" y=\"61\" type=\"line\"/>\n      <point x=\"1116\" y=\"561\" type=\"line\"/>\n      <point x=\"1002\" y=\"774\" type=\"line\"/>\n      <point x=\"405\" y=\"272\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"712\" type=\"line\"/>\n      <point x=\"759\" y=\"1213\" type=\"line\"/>\n      <point x=\"647\" y=\"1427\" type=\"line\"/>\n      <point x=\"50\" y=\"925\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/delta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"delta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B4\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"548\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"913\" y=\"-20\"/>\n      <point x=\"1129\" y=\"161\"/>\n      <point x=\"1129\" y=\"467\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1129\" y=\"872\"/>\n      <point x=\"711\" y=\"905\"/>\n      <point x=\"711\" y=\"1170\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"1233\"/>\n      <point x=\"750\" y=\"1263\"/>\n      <point x=\"828\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"943\" y=\"1263\"/>\n      <point x=\"1054\" y=\"1218\"/>\n      <point x=\"1152\" y=\"1160\" type=\"curve\"/>\n      <point x=\"1303\" y=\"1413\" type=\"line\"/>\n      <point x=\"1173\" y=\"1483\"/>\n      <point x=\"1015\" y=\"1520\"/>\n      <point x=\"851\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"1520\"/>\n      <point x=\"424\" y=\"1400\"/>\n      <point x=\"424\" y=\"1169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"739\"/>\n      <point x=\"842\" y=\"709\"/>\n      <point x=\"842\" y=\"465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"322\"/>\n      <point x=\"749\" y=\"237\"/>\n      <point x=\"592\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"237\"/>\n      <point x=\"381\" y=\"297\"/>\n      <point x=\"381\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"540\"/>\n      <point x=\"511\" y=\"617\"/>\n      <point x=\"761\" y=\"761\" type=\"curve\"/>\n      <point x=\"582\" y=\"951\" type=\"line\"/>\n      <point x=\"261\" y=\"784\"/>\n      <point x=\"94\" y=\"639\"/>\n      <point x=\"94\" y=\"372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"94\" y=\"126\"/>\n      <point x=\"263\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlFourControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2414\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"four.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlOneControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2411\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"one.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>one.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlThreeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2413\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"three.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2412\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"two.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"diagonalcrosshatchFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A9\"/>\n  <note>\nuni25A9\n</note>\n  <outline>\n    <contour>\n      <point x=\"1003\" y=\"223\" type=\"line\"/>\n      <point x=\"1087\" y=\"317\" type=\"line\"/>\n      <point x=\"223\" y=\"1181\" type=\"line\"/>\n      <point x=\"129\" y=\"1097\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"620\" y=\"321\" type=\"line\"/>\n      <point x=\"798\" y=\"321\" type=\"line\"/>\n      <point x=\"200\" y=\"919\" type=\"line\"/>\n      <point x=\"200\" y=\"741\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"197\" y=\"223\" type=\"line\"/>\n      <point x=\"1071\" y=\"1097\" type=\"line\"/>\n      <point x=\"977\" y=\"1181\" type=\"line\"/>\n      <point x=\"113\" y=\"317\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"402\" y=\"321\" type=\"line\"/>\n      <point x=\"580\" y=\"321\" type=\"line\"/>\n      <point x=\"1000\" y=\"741\" type=\"line\"/>\n      <point x=\"1000\" y=\"919\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"170\" y=\"464\" type=\"line\"/>\n      <point x=\"791\" y=\"1102\" type=\"line\"/>\n      <point x=\"613\" y=\"1102\" type=\"line\"/>\n      <point x=\"170\" y=\"643\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1030\" y=\"464\" type=\"line\"/>\n      <point x=\"1030\" y=\"643\" type=\"line\"/>\n      <point x=\"587\" y=\"1102\" type=\"line\"/>\n      <point x=\"409\" y=\"1102\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/diamondB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"diamondBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2666\"/>\n  <outline>\n    <contour>\n      <point x=\"513\" y=\"40\" type=\"line\"/>\n      <point x=\"1149\" y=\"670\" type=\"line\"/>\n      <point x=\"736\" y=\"1300\" type=\"line\"/>\n      <point x=\"101\" y=\"670\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A8\"/>\n  <outline>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dieresiscomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresiscomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"832\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1058\" y=\"1586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1152\" y=\"1586\"/>\n      <point x=\"1229\" y=\"1662\"/>\n      <point x=\"1229\" y=\"1757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1229\" y=\"1852\"/>\n      <point x=\"1153\" y=\"1927\"/>\n      <point x=\"1058\" y=\"1927\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"1927\"/>\n      <point x=\"888\" y=\"1852\"/>\n      <point x=\"888\" y=\"1757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"1662\"/>\n      <point x=\"964\" y=\"1586\"/>\n    </contour>\n    <contour>\n      <point x=\"575\" y=\"1586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"1586\"/>\n      <point x=\"745\" y=\"1662\"/>\n      <point x=\"745\" y=\"1757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"745\" y=\"1852\"/>\n      <point x=\"670\" y=\"1927\"/>\n      <point x=\"575\" y=\"1927\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"480\" y=\"1927\"/>\n      <point x=\"404\" y=\"1852\"/>\n      <point x=\"404\" y=\"1757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"1662\"/>\n      <point x=\"480\" y=\"1586\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dieresiscomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresiscomb\" format=\"2\">\n  <unicode hex=\"0308\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"975\" y=\"1231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1062\" y=\"1231\"/>\n      <point x=\"1133\" y=\"1302\"/>\n      <point x=\"1133\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1133\" y=\"1477\"/>\n      <point x=\"1062\" y=\"1546\"/>\n      <point x=\"975\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"1546\"/>\n      <point x=\"818\" y=\"1477\"/>\n      <point x=\"818\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"1302\"/>\n      <point x=\"888\" y=\"1231\"/>\n    </contour>\n    <contour>\n      <point x=\"527\" y=\"1231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"614\" y=\"1231\"/>\n      <point x=\"684\" y=\"1302\"/>\n      <point x=\"684\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"1477\"/>\n      <point x=\"614\" y=\"1546\"/>\n      <point x=\"527\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1546\"/>\n      <point x=\"370\" y=\"1477\"/>\n      <point x=\"370\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"370\" y=\"1302\"/>\n      <point x=\"440\" y=\"1231\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0385\"/>\n  <anchor x=\"691\" y=\"1060\" name=\"_top\"/>\n  <outline>\n    <contour>\n      <point x=\"586\" y=\"1248\" type=\"line\"/>\n      <point x=\"833\" y=\"1248\" type=\"line\"/>\n      <point x=\"990\" y=\"1628\" type=\"line\"/>\n      <point x=\"693\" y=\"1628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"400\" y=\"1231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"1231\"/>\n      <point x=\"557\" y=\"1302\"/>\n      <point x=\"557\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"1477\"/>\n      <point x=\"487\" y=\"1546\"/>\n      <point x=\"400\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"1546\"/>\n      <point x=\"243\" y=\"1477\"/>\n      <point x=\"243\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"243\" y=\"1302\"/>\n      <point x=\"314\" y=\"1231\"/>\n    </contour>\n    <contour>\n      <point x=\"1120\" y=\"1231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1207\" y=\"1231\"/>\n      <point x=\"1277\" y=\"1302\"/>\n      <point x=\"1277\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1277\" y=\"1477\"/>\n      <point x=\"1207\" y=\"1546\"/>\n      <point x=\"1120\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"1546\"/>\n      <point x=\"963\" y=\"1477\"/>\n      <point x=\"963\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"1302\"/>\n      <point x=\"1033\" y=\"1231\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/divide.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"divide\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F7\"/>\n  <outline>\n    <contour>\n      <point x=\"110\" y=\"584\" type=\"line\"/>\n      <point x=\"1110\" y=\"584\" type=\"line\"/>\n      <point x=\"1154\" y=\"834\" type=\"line\"/>\n      <point x=\"154\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"100\"/>\n      <point x=\"735\" y=\"181\"/>\n      <point x=\"735\" y=\"279\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"378\"/>\n      <point x=\"654\" y=\"459\"/>\n      <point x=\"555\" y=\"459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"459\"/>\n      <point x=\"375\" y=\"378\"/>\n      <point x=\"375\" y=\"279\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"181\"/>\n      <point x=\"456\" y=\"100\"/>\n    </contour>\n    <contour>\n      <point x=\"705\" y=\"959\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"803\" y=\"959\"/>\n      <point x=\"885\" y=\"1040\"/>\n      <point x=\"885\" y=\"1139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"1237\"/>\n      <point x=\"804\" y=\"1318\"/>\n      <point x=\"705\" y=\"1318\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"1318\"/>\n      <point x=\"525\" y=\"1237\"/>\n      <point x=\"525\" y=\"1139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1040\"/>\n      <point x=\"606\" y=\"959\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/divisionslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"divisionslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2215\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"-18\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0452\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"689\" y=\"784\" name=\"center\"/>\n  <anchor x=\"498\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"563\" y=\"-469\" type=\"line\"/>\n      <point x=\"885\" y=\"-219\"/>\n      <point x=\"949\" y=\"-16\"/>\n      <point x=\"1013\" y=\"337\" type=\"curve\"/>\n      <point x=\"1048\" y=\"527\" type=\"line\"/>\n      <point x=\"1100\" y=\"812\"/>\n      <point x=\"1011\" y=\"961\"/>\n      <point x=\"798\" y=\"961\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"961\"/>\n      <point x=\"577\" y=\"885\"/>\n      <point x=\"536\" y=\"749\" type=\"curve\"/>\n      <point x=\"493\" y=\"749\" type=\"line\"/>\n      <point x=\"438\" y=\"394\" type=\"line\"/>\n      <point x=\"477\" y=\"622\"/>\n      <point x=\"568\" y=\"704\"/>\n      <point x=\"677\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"704\"/>\n      <point x=\"793\" y=\"641\"/>\n      <point x=\"771\" y=\"521\" type=\"curve\"/>\n      <point x=\"738\" y=\"335\" type=\"line\"/>\n      <point x=\"693\" y=\"88\"/>\n      <point x=\"650\" y=\"-72\"/>\n      <point x=\"387\" y=\"-279\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"94\" y=\"0\" type=\"line\"/>\n      <point x=\"369\" y=\"0\" type=\"line\"/>\n      <point x=\"635\" y=\"1500\" type=\"line\"/>\n      <point x=\"360\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"103\" y=\"1110\" type=\"line\"/>\n      <point x=\"887\" y=\"1110\" type=\"line\"/>\n      <point x=\"926\" y=\"1334\" type=\"line\"/>\n      <point x=\"142\" y=\"1334\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"1352\" type=\"line\"/>\n      <point x=\"892\" y=\"1352\" type=\"line\"/>\n      <point x=\"960\" y=\"1740\" type=\"line\"/>\n      <point x=\"696\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"333\" y=\"-320\" type=\"line\"/>\n      <point x=\"597\" y=\"-320\" type=\"line\"/>\n      <point x=\"664\" y=\"58\" type=\"line\"/>\n      <point x=\"400\" y=\"58\" type=\"line\"/>\n    </contour>\n    <component base=\"S\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=S</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=S</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dollar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0024\"/>\n  <outline>\n    <contour>\n      <point x=\"333\" y=\"-320\" type=\"line\"/>\n      <point x=\"597\" y=\"-320\" type=\"line\"/>\n      <point x=\"960\" y=\"1740\" type=\"line\"/>\n      <point x=\"696\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"S\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=S</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=S</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar_greater.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1229\" y=\"197\" type=\"line\"/>\n      <point x=\"2238\" y=\"575\" type=\"line\"/>\n      <point x=\"2285\" y=\"843\" type=\"line\"/>\n      <point x=\"845\" y=\"1451\" type=\"line\"/>\n      <point x=\"798\" y=\"1189\" type=\"line\"/>\n      <point x=\"1972\" y=\"727\" type=\"line\"/>\n      <point x=\"1968\" y=\"709\" type=\"line\"/>\n      <point x=\"1278\" y=\"476\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"390\" y=\"-320\" type=\"line\"/>\n      <point x=\"654\" y=\"-320\" type=\"line\"/>\n      <point x=\"752\" y=\"235\" type=\"line\"/>\n      <point x=\"488\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"526\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"-20\"/>\n      <point x=\"1107\" y=\"131\"/>\n      <point x=\"1107\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1107\" y=\"542\"/>\n      <point x=\"1064\" y=\"644\"/>\n      <point x=\"930\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"890\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"596\" y=\"931\"/>\n      <point x=\"561\" y=\"984\"/>\n      <point x=\"561\" y=\"1044\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"1137\"/>\n      <point x=\"632\" y=\"1186\"/>\n      <point x=\"767\" y=\"1186\" type=\"curve\"/>\n      <point x=\"779\" y=\"1440\" type=\"line\"/>\n      <point x=\"457\" y=\"1440\"/>\n      <point x=\"284\" y=\"1288\"/>\n      <point x=\"284\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"888\"/>\n      <point x=\"327\" y=\"762\"/>\n      <point x=\"453\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"508\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"470\"/>\n      <point x=\"830\" y=\"439\"/>\n      <point x=\"830\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"287\"/>\n      <point x=\"733\" y=\"234\"/>\n      <point x=\"545\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"421\" y=\"234\"/>\n      <point x=\"286\" y=\"263\"/>\n      <point x=\"150\" y=\"320\" type=\"curve\"/>\n      <point x=\"88\" y=\"68\" type=\"line\"/>\n      <point x=\"206\" y=\"10\"/>\n      <point x=\"356\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"656\" y=\"1186\" type=\"line\"/>\n      <point x=\"920\" y=\"1186\" type=\"line\"/>\n      <point x=\"1017\" y=\"1740\" type=\"line\"/>\n      <point x=\"753\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dollar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1229\" y=\"197\" type=\"line\"/>\n      <point x=\"2238\" y=\"575\" type=\"line\"/>\n      <point x=\"2285\" y=\"843\" type=\"line\"/>\n      <point x=\"845\" y=\"1451\" type=\"line\"/>\n      <point x=\"798\" y=\"1189\" type=\"line\"/>\n      <point x=\"1972\" y=\"727\" type=\"line\"/>\n      <point x=\"1968\" y=\"709\" type=\"line\"/>\n      <point x=\"1278\" y=\"476\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"526\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"-20\"/>\n      <point x=\"1107\" y=\"131\"/>\n      <point x=\"1107\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1107\" y=\"542\"/>\n      <point x=\"1064\" y=\"644\"/>\n      <point x=\"930\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"890\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"596\" y=\"931\"/>\n      <point x=\"561\" y=\"984\"/>\n      <point x=\"561\" y=\"1044\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"1137\"/>\n      <point x=\"632\" y=\"1186\"/>\n      <point x=\"767\" y=\"1186\" type=\"curve\"/>\n      <point x=\"779\" y=\"1440\" type=\"line\"/>\n      <point x=\"457\" y=\"1440\"/>\n      <point x=\"284\" y=\"1288\"/>\n      <point x=\"284\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"888\"/>\n      <point x=\"327\" y=\"762\"/>\n      <point x=\"453\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"508\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"470\"/>\n      <point x=\"830\" y=\"439\"/>\n      <point x=\"830\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"287\"/>\n      <point x=\"733\" y=\"234\"/>\n      <point x=\"545\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"421\" y=\"234\"/>\n      <point x=\"286\" y=\"263\"/>\n      <point x=\"150\" y=\"320\" type=\"curve\"/>\n      <point x=\"88\" y=\"68\" type=\"line\"/>\n      <point x=\"206\" y=\"10\"/>\n      <point x=\"356\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"389\" y=\"-320\" type=\"line\"/>\n      <point x=\"653\" y=\"-320\" type=\"line\"/>\n      <point x=\"1016\" y=\"1740\" type=\"line\"/>\n      <point x=\"752\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dong.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dong\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AB\"/>\n  <outline>\n    <contour>\n      <point x=\"42\" y=\"-330\" type=\"line\"/>\n      <point x=\"908\" y=\"-330\" type=\"line\"/>\n      <point x=\"939\" y=\"-154\" type=\"line\"/>\n      <point x=\"73\" y=\"-154\" type=\"line\"/>\n    </contour>\n    <component base=\"dcroat\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D9\"/>\n  <outline>\n    <component base=\"dotaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dotaccentcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccentcomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"832\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"813\" y=\"1572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"1572\"/>\n      <point x=\"984\" y=\"1648\"/>\n      <point x=\"984\" y=\"1742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"1838\"/>\n      <point x=\"907\" y=\"1913\"/>\n      <point x=\"813\" y=\"1913\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"1913\"/>\n      <point x=\"642\" y=\"1838\"/>\n      <point x=\"642\" y=\"1742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"1648\"/>\n      <point x=\"719\" y=\"1572\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dotaccentcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccentcomb\" format=\"2\">\n  <unicode hex=\"0307\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"773\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"748\" y=\"1198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"1198\"/>\n      <point x=\"919\" y=\"1275\"/>\n      <point x=\"919\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"919\" y=\"1465\"/>\n      <point x=\"842\" y=\"1539\"/>\n      <point x=\"748\" y=\"1539\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"1539\"/>\n      <point x=\"577\" y=\"1465\"/>\n      <point x=\"577\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"1275\"/>\n      <point x=\"654\" y=\"1198\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dotbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotbelowcomb\" format=\"2\">\n  <unicode hex=\"0323\"/>\n  <anchor x=\"507\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"437\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"458\" y=\"-448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"-448\"/>\n      <point x=\"629\" y=\"-372\"/>\n      <point x=\"629\" y=\"-278\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"-182\"/>\n      <point x=\"552\" y=\"-107\"/>\n      <point x=\"458\" y=\"-107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"-107\"/>\n      <point x=\"287\" y=\"-182\"/>\n      <point x=\"287\" y=\"-278\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"-372\"/>\n      <point x=\"364\" y=\"-448\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2801\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"1115\"/>\n      <point x=\"525\" y=\"1193\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1387\"/>\n      <point x=\"447\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"253\" y=\"1465\"/>\n      <point x=\"175\" y=\"1387\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1193\"/>\n      <point x=\"253\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2803\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2807\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1235-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1235-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2817\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2837\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2877\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1235678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1235678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2857\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2897\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1236-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1236-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2827\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2867\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1237-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1237-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2847\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1238-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1238-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2887\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1245-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1245-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1245678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1245678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1246-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1246-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1247-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1247-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1248-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1248-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots125-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots125-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2813\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1256-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1256-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2833\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2873\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots125678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots125678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1257-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1257-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2853\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1258-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1258-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2893\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots126-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots126-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2823\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1267-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1267-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2863\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1268-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1268-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots127-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots127-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2843\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1278-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1278-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots128-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots128-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2883\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2805\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28ED\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots135-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots135-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2815\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2835\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2875\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots135678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots135678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2855\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2895\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots136-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots136-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2825\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2865\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots137-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots137-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2845\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots138-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots138-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2885\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2809\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots145-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots145-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2819\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2839\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2879\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots145678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots145678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2859\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2899\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots146-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots146-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2829\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2869\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots147-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots147-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2849\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots148-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots148-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2889\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots15-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots15-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2811\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots156-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots156-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2831\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2871\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots15678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots15678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots157-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots157-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2851\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots158-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots158-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2891\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots16-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots16-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2821\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots167-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots167-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2861\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots168-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots168-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots17-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots17-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2841\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots178-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots178-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots18-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots18-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2881\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1115\"/>\n      <point x=\"525\" y=\"1194\"/>\n      <point x=\"525\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1386\"/>\n      <point x=\"446\" y=\"1465\"/>\n      <point x=\"350\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1465\"/>\n      <point x=\"175\" y=\"1386\"/>\n      <point x=\"175\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1194\"/>\n      <point x=\"254\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2802\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2806\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots235-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots235-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2816\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2836\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2876\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots235678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots235678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2856\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2896\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots236-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots236-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2826\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2866\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots237-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots237-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2846\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C6\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots238-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots238-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2886\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots245-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots245-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots245678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots245678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots246-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots246-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots247-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots247-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots248-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots248-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots25-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots25-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2812\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots256-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots256-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2832\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2872\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots25678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots25678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots257-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots257-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2852\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots258-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots258-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2892\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots26-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots26-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2822\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots267-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots267-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2862\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots268-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots268-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots27-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots27-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2842\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots278-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots278-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C2\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots28-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots28-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2882\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"678\"/>\n      <point x=\"525\" y=\"757\"/>\n      <point x=\"525\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"950\"/>\n      <point x=\"446\" y=\"1028\"/>\n      <point x=\"350\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1028\"/>\n      <point x=\"175\" y=\"950\"/>\n      <point x=\"175\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"757\"/>\n      <point x=\"254\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2804\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots35-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots35-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2814\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2834\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2874\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots35678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots35678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2854\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2894\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots36-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots36-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2824\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2864\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots37-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots37-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2844\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots38-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots38-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2884\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"242\"/>\n      <point x=\"525\" y=\"320\"/>\n      <point x=\"525\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"513\"/>\n      <point x=\"446\" y=\"592\"/>\n      <point x=\"350\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"592\"/>\n      <point x=\"175\" y=\"513\"/>\n      <point x=\"175\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"320\"/>\n      <point x=\"254\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2808\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots45-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots45-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2818\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2838\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2878\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots45678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots45678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2858\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2898\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots46-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots46-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2828\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2868\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots47-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots47-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2848\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots48-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots48-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2888\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1115\"/>\n      <point x=\"1025\" y=\"1194\"/>\n      <point x=\"1025\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1386\"/>\n      <point x=\"946\" y=\"1465\"/>\n      <point x=\"850\" y=\"1465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1465\"/>\n      <point x=\"675\" y=\"1386\"/>\n      <point x=\"675\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"1194\"/>\n      <point x=\"754\" y=\"1115\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots5-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots5-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2810\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots56-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots56-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2830\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2870\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots5678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots5678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots57-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots57-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2850\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots58-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots58-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2890\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"678\"/>\n      <point x=\"1025\" y=\"757\"/>\n      <point x=\"1025\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"950\"/>\n      <point x=\"946\" y=\"1028\"/>\n      <point x=\"850\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1028\"/>\n      <point x=\"675\" y=\"950\"/>\n      <point x=\"675\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"757\"/>\n      <point x=\"754\" y=\"678\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots6-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots6-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2820\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots67-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots67-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2860\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots68-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots68-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"242\"/>\n      <point x=\"1025\" y=\"320\"/>\n      <point x=\"1025\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"513\"/>\n      <point x=\"946\" y=\"592\"/>\n      <point x=\"850\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"592\"/>\n      <point x=\"675\" y=\"513\"/>\n      <point x=\"675\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"320\"/>\n      <point x=\"754\" y=\"242\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots7-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots7-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2840\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots78-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots78-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-195\"/>\n      <point x=\"525\" y=\"-116\"/>\n      <point x=\"525\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"76\"/>\n      <point x=\"446\" y=\"155\"/>\n      <point x=\"350\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"155\"/>\n      <point x=\"175\" y=\"76\"/>\n      <point x=\"175\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"-116\"/>\n      <point x=\"254\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dots8-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots8-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2880\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"-195\"/>\n      <point x=\"1025\" y=\"-116\"/>\n      <point x=\"1025\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"76\"/>\n      <point x=\"946\" y=\"155\"/>\n      <point x=\"850\" y=\"155\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"155\"/>\n      <point x=\"675\" y=\"76\"/>\n      <point x=\"675\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"-116\"/>\n      <point x=\"754\" y=\"-195\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dottedC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dottedCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CC\"/>\n  <note>\nuni25CC\n</note>\n  <outline>\n    <contour>\n      <point x=\"826\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"1011\"/>\n      <point x=\"914\" y=\"1047\"/>\n      <point x=\"914\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"1152\"/>\n      <point x=\"879\" y=\"1187\"/>\n      <point x=\"826\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"1187\"/>\n      <point x=\"738\" y=\"1152\"/>\n      <point x=\"738\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"1047\"/>\n      <point x=\"774\" y=\"1011\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"233\"/>\n      <point x=\"463\" y=\"269\"/>\n      <point x=\"463\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"374\"/>\n      <point x=\"428\" y=\"409\"/>\n      <point x=\"375\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"409\"/>\n      <point x=\"287\" y=\"374\"/>\n      <point x=\"287\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"269\"/>\n      <point x=\"323\" y=\"233\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"398\"/>\n      <point x=\"300\" y=\"434\"/>\n      <point x=\"300\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"539\"/>\n      <point x=\"265\" y=\"574\"/>\n      <point x=\"212\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"574\"/>\n      <point x=\"124\" y=\"539\"/>\n      <point x=\"124\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"434\"/>\n      <point x=\"160\" y=\"398\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"653\" y=\"172\"/>\n      <point x=\"688\" y=\"208\"/>\n      <point x=\"688\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"313\"/>\n      <point x=\"653\" y=\"348\"/>\n      <point x=\"600\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"348\"/>\n      <point x=\"512\" y=\"313\"/>\n      <point x=\"512\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"208\"/>\n      <point x=\"548\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"622\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"203\" y=\"622\"/>\n      <point x=\"238\" y=\"658\"/>\n      <point x=\"238\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"763\"/>\n      <point x=\"203\" y=\"798\"/>\n      <point x=\"150\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"98\" y=\"798\"/>\n      <point x=\"62\" y=\"763\"/>\n      <point x=\"62\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"658\"/>\n      <point x=\"98\" y=\"622\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"847\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"847\"/>\n      <point x=\"300\" y=\"883\"/>\n      <point x=\"300\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"988\"/>\n      <point x=\"265\" y=\"1023\"/>\n      <point x=\"212\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"1023\"/>\n      <point x=\"124\" y=\"988\"/>\n      <point x=\"124\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"883\"/>\n      <point x=\"160\" y=\"847\"/>\n    </contour>\n    <contour>\n      <point x=\"826\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"233\"/>\n      <point x=\"914\" y=\"269\"/>\n      <point x=\"914\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"374\"/>\n      <point x=\"879\" y=\"409\"/>\n      <point x=\"826\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"409\"/>\n      <point x=\"738\" y=\"374\"/>\n      <point x=\"738\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"269\"/>\n      <point x=\"774\" y=\"233\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"1011\"/>\n      <point x=\"463\" y=\"1047\"/>\n      <point x=\"463\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"1152\"/>\n      <point x=\"428\" y=\"1187\"/>\n      <point x=\"375\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"1187\"/>\n      <point x=\"287\" y=\"1152\"/>\n      <point x=\"287\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"1047\"/>\n      <point x=\"323\" y=\"1011\"/>\n    </contour>\n    <contour>\n      <point x=\"989\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1042\" y=\"398\"/>\n      <point x=\"1077\" y=\"434\"/>\n      <point x=\"1077\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"539\"/>\n      <point x=\"1042\" y=\"574\"/>\n      <point x=\"989\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"574\"/>\n      <point x=\"901\" y=\"539\"/>\n      <point x=\"901\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"434\"/>\n      <point x=\"937\" y=\"398\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"622\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1103\" y=\"622\"/>\n      <point x=\"1138\" y=\"658\"/>\n      <point x=\"1138\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"763\"/>\n      <point x=\"1103\" y=\"798\"/>\n      <point x=\"1050\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"998\" y=\"798\"/>\n      <point x=\"962\" y=\"763\"/>\n      <point x=\"962\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"658\"/>\n      <point x=\"998\" y=\"622\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"653\" y=\"1072\"/>\n      <point x=\"688\" y=\"1108\"/>\n      <point x=\"688\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"1213\"/>\n      <point x=\"653\" y=\"1248\"/>\n      <point x=\"600\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"1248\"/>\n      <point x=\"512\" y=\"1213\"/>\n      <point x=\"512\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"1108\"/>\n      <point x=\"548\" y=\"1072\"/>\n    </contour>\n    <contour>\n      <point x=\"989\" y=\"847\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1042\" y=\"847\"/>\n      <point x=\"1077\" y=\"883\"/>\n      <point x=\"1077\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"988\"/>\n      <point x=\"1042\" y=\"1023\"/>\n      <point x=\"989\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"1023\"/>\n      <point x=\"901\" y=\"988\"/>\n      <point x=\"901\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"883\"/>\n      <point x=\"937\" y=\"847\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dottedS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dottedSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1A\"/>\n  <note>\nuni2B1A\n</note>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"1072\"/>\n      <point x=\"1138\" y=\"1112\"/>\n      <point x=\"1138\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"1209\"/>\n      <point x=\"1099\" y=\"1248\"/>\n      <point x=\"1050\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"1248\"/>\n      <point x=\"962\" y=\"1209\"/>\n      <point x=\"962\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"1112\"/>\n      <point x=\"1002\" y=\"1072\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"172\"/>\n      <point x=\"238\" y=\"212\"/>\n      <point x=\"238\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"309\"/>\n      <point x=\"199\" y=\"348\"/>\n      <point x=\"150\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"348\"/>\n      <point x=\"62\" y=\"309\"/>\n      <point x=\"62\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"212\"/>\n      <point x=\"102\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"472\"/>\n      <point x=\"238\" y=\"512\"/>\n      <point x=\"238\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"609\"/>\n      <point x=\"199\" y=\"648\"/>\n      <point x=\"150\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"648\"/>\n      <point x=\"62\" y=\"609\"/>\n      <point x=\"62\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"512\"/>\n      <point x=\"102\" y=\"472\"/>\n    </contour>\n    <contour>\n      <point x=\"450\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"172\"/>\n      <point x=\"538\" y=\"212\"/>\n      <point x=\"538\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"309\"/>\n      <point x=\"499\" y=\"348\"/>\n      <point x=\"450\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"348\"/>\n      <point x=\"362\" y=\"309\"/>\n      <point x=\"362\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"212\"/>\n      <point x=\"402\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"772\"/>\n      <point x=\"238\" y=\"812\"/>\n      <point x=\"238\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"909\"/>\n      <point x=\"199\" y=\"948\"/>\n      <point x=\"150\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"948\"/>\n      <point x=\"62\" y=\"909\"/>\n      <point x=\"62\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"812\"/>\n      <point x=\"102\" y=\"772\"/>\n    </contour>\n    <contour>\n      <point x=\"750\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"172\"/>\n      <point x=\"838\" y=\"212\"/>\n      <point x=\"838\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"309\"/>\n      <point x=\"799\" y=\"348\"/>\n      <point x=\"750\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"348\"/>\n      <point x=\"662\" y=\"309\"/>\n      <point x=\"662\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"212\"/>\n      <point x=\"702\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"1072\"/>\n      <point x=\"238\" y=\"1112\"/>\n      <point x=\"238\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1209\"/>\n      <point x=\"199\" y=\"1248\"/>\n      <point x=\"150\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"1248\"/>\n      <point x=\"62\" y=\"1209\"/>\n      <point x=\"62\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"1112\"/>\n      <point x=\"102\" y=\"1072\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"172\"/>\n      <point x=\"1138\" y=\"212\"/>\n      <point x=\"1138\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"309\"/>\n      <point x=\"1099\" y=\"348\"/>\n      <point x=\"1050\" y=\"348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"348\"/>\n      <point x=\"962\" y=\"309\"/>\n      <point x=\"962\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"212\"/>\n      <point x=\"1002\" y=\"172\"/>\n    </contour>\n    <contour>\n      <point x=\"450\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"1072\"/>\n      <point x=\"538\" y=\"1112\"/>\n      <point x=\"538\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1209\"/>\n      <point x=\"499\" y=\"1248\"/>\n      <point x=\"450\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"1248\"/>\n      <point x=\"362\" y=\"1209\"/>\n      <point x=\"362\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"1112\"/>\n      <point x=\"402\" y=\"1072\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"472\"/>\n      <point x=\"1138\" y=\"512\"/>\n      <point x=\"1138\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"609\"/>\n      <point x=\"1099\" y=\"648\"/>\n      <point x=\"1050\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"648\"/>\n      <point x=\"962\" y=\"609\"/>\n      <point x=\"962\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"512\"/>\n      <point x=\"1002\" y=\"472\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"772\"/>\n      <point x=\"1138\" y=\"812\"/>\n      <point x=\"1138\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"909\"/>\n      <point x=\"1099\" y=\"948\"/>\n      <point x=\"1050\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"948\"/>\n      <point x=\"962\" y=\"909\"/>\n      <point x=\"962\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"812\"/>\n      <point x=\"1002\" y=\"772\"/>\n    </contour>\n    <contour>\n      <point x=\"750\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"1072\"/>\n      <point x=\"838\" y=\"1112\"/>\n      <point x=\"838\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"1209\"/>\n      <point x=\"799\" y=\"1248\"/>\n      <point x=\"750\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"1248\"/>\n      <point x=\"662\" y=\"1209\"/>\n      <point x=\"662\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"1112\"/>\n      <point x=\"702\" y=\"1072\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/downA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2193\"/>\n  <outline>\n    <contour>\n      <point x=\"625\" y=\"1420\" type=\"line\"/>\n      <point x=\"404\" y=\"169\" type=\"line\"/>\n      <point x=\"666\" y=\"169\" type=\"line\"/>\n      <point x=\"887\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"27\" y=\"440\" type=\"line\"/>\n      <point x=\"441\" y=\"-20\" type=\"line\"/>\n      <point x=\"563\" y=\"-20\" type=\"line\"/>\n      <point x=\"1119\" y=\"390\" type=\"line\"/>\n      <point x=\"962\" y=\"580\" type=\"line\"/>\n      <point x=\"567\" y=\"259\" type=\"line\"/>\n      <point x=\"549\" y=\"259\" type=\"line\"/>\n      <point x=\"215\" y=\"625\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/downB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BE\"/>\n  <note>\nuni25BE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"318\" type=\"line\"/>\n      <point x=\"1069\" y=\"1115\" type=\"line\"/>\n      <point x=\"131\" y=\"1115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/downB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BC\"/>\n  <note>\ntriagdn\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"170\" type=\"line\"/>\n      <point x=\"1200\" y=\"1190\" type=\"line\"/>\n      <point x=\"0\" y=\"1190\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/downT_ipL_eftA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downTipLeftArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21B2\"/>\n  <outline>\n    <contour>\n      <point x=\"858\" y=\"388\" type=\"line\"/>\n      <point x=\"1100\" y=\"388\" type=\"line\"/>\n      <point x=\"1230\" y=\"1127\" type=\"line\"/>\n      <point x=\"988\" y=\"1127\" type=\"line\"/>\n    </contour>\n    <component base=\"leftArrow\" xOffset=\"-35\" yOffset=\"-198\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/downW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BF\"/>\n  <note>\nuni25BF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"318\" type=\"line\"/>\n      <point x=\"1069\" y=\"1115\" type=\"line\"/>\n      <point x=\"131\" y=\"1115\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"517\" y=\"544\" type=\"line\"/>\n      <point x=\"683\" y=\"544\" type=\"line\"/>\n      <point x=\"394\" y=\"1035\" type=\"line\"/>\n      <point x=\"312\" y=\"923\" type=\"line\"/>\n      <point x=\"888\" y=\"923\" type=\"line\"/>\n      <point x=\"806\" y=\"1035\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/downW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BD\"/>\n  <note>\nuni25BD\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"170\" type=\"line\"/>\n      <point x=\"1200\" y=\"1190\" type=\"line\"/>\n      <point x=\"0\" y=\"1190\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"500\" y=\"422\" type=\"line\"/>\n      <point x=\"702\" y=\"423\" type=\"line\"/>\n      <point x=\"253\" y=\"1187\" type=\"line\"/>\n      <point x=\"144\" y=\"990\" type=\"line\"/>\n      <point x=\"1056\" y=\"990\" type=\"line\"/>\n      <point x=\"944\" y=\"1181\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dtail.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dtail\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0256\"/>\n  <anchor x=\"462\" y=\"-251\" name=\"bottom\"/>\n  <anchor x=\"548\" y=\"532\" name=\"center\"/>\n  <anchor x=\"1025\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1199\" y=\"1062\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"341\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"523\" y=\"-21\"/>\n      <point x=\"659\" y=\"125\"/>\n      <point x=\"717\" y=\"379\" type=\"curve\"/>\n      <point x=\"653\" y=\"224\" type=\"line\"/>\n      <point x=\"769\" y=\"224\" type=\"line\"/>\n      <point x=\"774\" y=\"667\" type=\"line\"/>\n      <point x=\"720\" y=\"393\"/>\n      <point x=\"599\" y=\"236\"/>\n      <point x=\"436\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"236\"/>\n      <point x=\"314\" y=\"275\"/>\n      <point x=\"314\" y=\"359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"615\"/>\n      <point x=\"593\" y=\"809\"/>\n      <point x=\"947\" y=\"823\" type=\"curve\"/>\n      <point x=\"1108\" y=\"1080\" type=\"line\"/>\n      <point x=\"1090\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"1080\"/>\n      <point x=\"37\" y=\"765\"/>\n      <point x=\"37\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"88\"/>\n      <point x=\"147\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"1111\" y=\"-469\" type=\"line\"/>\n      <point x=\"1176\" y=\"-194\" type=\"line\"/>\n      <point x=\"1129\" y=\"-184\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"-148\"/>\n      <point x=\"912\" y=\"-98\"/>\n      <point x=\"940\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"742\" type=\"line\"/>\n      <point x=\"787\" y=\"742\" type=\"line\"/>\n      <point x=\"673\" y=\"94\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"-286\"/>\n      <point x=\"723\" y=\"-445\"/>\n      <point x=\"1095\" y=\"-468\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"787\" y=\"742\" type=\"line\"/>\n      <point x=\"1060\" y=\"742\" type=\"line\"/>\n      <point x=\"1108\" y=\"1017\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"1367\"/>\n      <point x=\"1059\" y=\"1521\"/>\n      <point x=\"785\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"1521\"/>\n      <point x=\"663\" y=\"1510\"/>\n      <point x=\"603\" y=\"1495\" type=\"curve\"/>\n      <point x=\"636\" y=\"1243\" type=\"line\"/>\n      <point x=\"682\" y=\"1258\"/>\n      <point x=\"720\" y=\"1264\"/>\n      <point x=\"761\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"1264\"/>\n      <point x=\"870\" y=\"1210\"/>\n      <point x=\"848\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0455\"/>\n  <outline>\n    <component base=\"s\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/dzhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dzhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"529\" y=\"-480\" type=\"line\"/>\n      <point x=\"573\" y=\"-361\"/>\n      <point x=\"599\" y=\"-248\"/>\n      <point x=\"624\" y=\"-113\" type=\"curve\"/>\n      <point x=\"383\" y=\"-87\" type=\"line\"/>\n      <point x=\"352\" y=\"-198\"/>\n      <point x=\"289\" y=\"-376\"/>\n      <point x=\"254\" y=\"-460\" type=\"curve\"/>\n    </contour>\n    <component base=\"u\" xOffset=\"3\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0454\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"590\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"-20\"/>\n      <point x=\"925\" y=\"35\"/>\n      <point x=\"1051\" y=\"119\" type=\"curve\"/>\n      <point x=\"909\" y=\"339\" type=\"line\"/>\n      <point x=\"819\" y=\"278\"/>\n      <point x=\"739\" y=\"237\"/>\n      <point x=\"619\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"237\"/>\n      <point x=\"360\" y=\"315\"/>\n      <point x=\"359\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"675\"/>\n      <point x=\"489\" y=\"833\"/>\n      <point x=\"712\" y=\"833\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"833\"/>\n      <point x=\"904\" y=\"789\"/>\n      <point x=\"969\" y=\"711\" type=\"curve\"/>\n      <point x=\"1154\" y=\"890\" type=\"line\"/>\n      <point x=\"1063\" y=\"1023\"/>\n      <point x=\"939\" y=\"1080\"/>\n      <point x=\"740\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"1080\"/>\n      <point x=\"107\" y=\"814\"/>\n      <point x=\"107\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"107\" y=\"137\"/>\n      <point x=\"283\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"196\" y=\"422\" type=\"line\"/>\n      <point x=\"755\" y=\"422\" type=\"line\"/>\n      <point x=\"795\" y=\"645\" type=\"line\"/>\n      <point x=\"236\" y=\"645\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/e.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0065\"/>\n  <anchor x=\"521\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"990\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"708\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"618\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"237\"/>\n      <point x=\"375\" y=\"313\"/>\n      <point x=\"374\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"675\"/>\n      <point x=\"514\" y=\"832\"/>\n      <point x=\"721\" y=\"832\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"832\"/>\n      <point x=\"851\" y=\"801\"/>\n      <point x=\"851\" y=\"749\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"851\" y=\"646\"/>\n      <point x=\"647\" y=\"584\"/>\n      <point x=\"301\" y=\"581\" type=\"curve\"/>\n      <point x=\"342\" y=\"391\" type=\"line\"/>\n      <point x=\"849\" y=\"399\"/>\n      <point x=\"1118\" y=\"513\"/>\n      <point x=\"1118\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"965\"/>\n      <point x=\"988\" y=\"1080\"/>\n      <point x=\"769\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"1080\"/>\n      <point x=\"122\" y=\"812\"/>\n      <point x=\"122\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"122\" y=\"139\"/>\n      <point x=\"296\" y=\"-20\"/>\n      <point x=\"589\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"-20\"/>\n      <point x=\"872\" y=\"9\"/>\n      <point x=\"999\" y=\"84\" type=\"curve\"/>\n      <point x=\"930\" y=\"321\" type=\"line\"/>\n      <point x=\"829\" y=\"268\"/>\n      <point x=\"714\" y=\"237\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E9\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"acutecomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ebreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ebreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0115\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"brevecomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ecaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011B\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"caroncomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EA\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBF\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"15\"/>\n    <component base=\"acutecomb\" xOffset=\"483\" yOffset=\"339\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC7\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"14\"/>\n    <component base=\"circumflexcomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC1\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"15\"/>\n    <component base=\"gravecomb\" xOffset=\"484\" yOffset=\"340\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC3\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"15\"/>\n    <component base=\"hookabovecomb\" xOffset=\"443\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC5\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"15\"/>\n    <component base=\"tildecomb\" xOffset=\"103\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/edieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EB\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dieresiscomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/edotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0117\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/edotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB9\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"14\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ef-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ef-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0444\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"669\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"-480\"/>\n      <point x=\"797\" y=\"-474\"/>\n      <point x=\"875\" y=\"-452\" type=\"curve\"/>\n      <point x=\"854\" y=\"-216\" type=\"line\"/>\n      <point x=\"793\" y=\"-232\"/>\n      <point x=\"732\" y=\"-239\"/>\n      <point x=\"701\" y=\"-239\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"-239\"/>\n      <point x=\"578\" y=\"-200\"/>\n      <point x=\"594\" y=\"-106\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"619\" y=\"39\" type=\"line\"/>\n      <point x=\"631\" y=\"128\" type=\"line\"/>\n      <point x=\"775\" y=\"839\" type=\"line\"/>\n      <point x=\"768\" y=\"867\" type=\"line\"/>\n      <point x=\"797\" y=\"959\"/>\n      <point x=\"825\" y=\"1017\"/>\n      <point x=\"856\" y=\"1148\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"1395\"/>\n      <point x=\"819\" y=\"1522\"/>\n      <point x=\"526\" y=\"1522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"477\" y=\"1522\"/>\n      <point x=\"398\" y=\"1516\"/>\n      <point x=\"320\" y=\"1494\" type=\"curve\"/>\n      <point x=\"341\" y=\"1258\" type=\"line\"/>\n      <point x=\"402\" y=\"1274\"/>\n      <point x=\"463\" y=\"1281\"/>\n      <point x=\"494\" y=\"1281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"1281\"/>\n      <point x=\"617\" y=\"1242\"/>\n      <point x=\"601\" y=\"1148\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"576\" y=\"1003\" type=\"line\"/>\n      <point x=\"564\" y=\"914\" type=\"line\"/>\n      <point x=\"420\" y=\"203\" type=\"line\"/>\n      <point x=\"427\" y=\"175\" type=\"line\"/>\n      <point x=\"398\" y=\"83\"/>\n      <point x=\"370\" y=\"25\"/>\n      <point x=\"339\" y=\"-106\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"279\" y=\"-353\"/>\n      <point x=\"376\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"203\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"282\" y=\"-20\"/>\n      <point x=\"356\" y=\"46\"/>\n      <point x=\"380\" y=\"140\" type=\"curve\"/>\n      <point x=\"504\" y=\"140\" type=\"line\"/>\n      <point x=\"521\" y=\"700\" type=\"line\"/>\n      <point x=\"444\" y=\"317\"/>\n      <point x=\"412\" y=\"209\"/>\n      <point x=\"351\" y=\"209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"209\"/>\n      <point x=\"265\" y=\"229\"/>\n      <point x=\"273\" y=\"371\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"558\"/>\n      <point x=\"369\" y=\"838\"/>\n      <point x=\"538\" y=\"838\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"838\"/>\n      <point x=\"633\" y=\"833\"/>\n      <point x=\"679\" y=\"822\" type=\"curve\"/>\n      <point x=\"755\" y=\"1052\" type=\"line\"/>\n      <point x=\"711\" y=\"1066\"/>\n      <point x=\"623\" y=\"1079\"/>\n      <point x=\"557\" y=\"1079\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"185\" y=\"1079\"/>\n      <point x=\"13\" y=\"668\"/>\n      <point x=\"3\" y=\"317\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-3\" y=\"99\"/>\n      <point x=\"89\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"644\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"-20\"/>\n      <point x=\"1186\" y=\"391\"/>\n      <point x=\"1196\" y=\"742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1202\" y=\"960\"/>\n      <point x=\"1112\" y=\"1079\"/>\n      <point x=\"998\" y=\"1079\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"919\" y=\"1079\"/>\n      <point x=\"845\" y=\"1013\"/>\n      <point x=\"817\" y=\"919\" type=\"curve\"/>\n      <point x=\"697\" y=\"919\" type=\"line\"/>\n      <point x=\"678\" y=\"359\" type=\"line\"/>\n      <point x=\"752\" y=\"742\"/>\n      <point x=\"789\" y=\"850\"/>\n      <point x=\"850\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"850\"/>\n      <point x=\"934\" y=\"830\"/>\n      <point x=\"926\" y=\"688\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"501\"/>\n      <point x=\"832\" y=\"221\"/>\n      <point x=\"663\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"221\"/>\n      <point x=\"568\" y=\"226\"/>\n      <point x=\"522\" y=\"237\" type=\"curve\"/>\n      <point x=\"446\" y=\"7\" type=\"line\"/>\n      <point x=\"490\" y=\"-7\"/>\n      <point x=\"578\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/egrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"egrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E8\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"gravecomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBB\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"hookabovecomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eight.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eightsuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0038\"/>\n  <outline>\n    <contour>\n      <point x=\"500\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"849\" y=\"-20\"/>\n      <point x=\"1082\" y=\"170\"/>\n      <point x=\"1082\" y=\"454\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"646\"/>\n      <point x=\"905\" y=\"774\"/>\n      <point x=\"639\" y=\"774\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"774\"/>\n      <point x=\"66\" y=\"589\"/>\n      <point x=\"66\" y=\"312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"66\" y=\"113\"/>\n      <point x=\"240\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"232\"/>\n      <point x=\"344\" y=\"298\"/>\n      <point x=\"344\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"534\"/>\n      <point x=\"448\" y=\"624\"/>\n      <point x=\"603\" y=\"624\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"624\"/>\n      <point x=\"804\" y=\"558\"/>\n      <point x=\"804\" y=\"459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"323\"/>\n      <point x=\"704\" y=\"232\"/>\n    </contour>\n    <contour>\n      <point x=\"422\" y=\"706\" type=\"line\"/>\n      <point x=\"836\" y=\"706\" type=\"line\"/>\n      <point x=\"854\" y=\"808\" type=\"line\"/>\n      <point x=\"440\" y=\"808\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"667\" y=\"876\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"876\"/>\n      <point x=\"500\" y=\"929\"/>\n      <point x=\"500\" y=\"1009\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"1116\"/>\n      <point x=\"581\" y=\"1188\"/>\n      <point x=\"702\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"1188\"/>\n      <point x=\"886\" y=\"1133\"/>\n      <point x=\"886\" y=\"1051\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"946\"/>\n      <point x=\"798\" y=\"876\"/>\n    </contour>\n    <contour>\n      <point x=\"633\" y=\"736\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"736\"/>\n      <point x=\"1164\" y=\"895\"/>\n      <point x=\"1164\" y=\"1134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1164\" y=\"1318\"/>\n      <point x=\"1001\" y=\"1440\"/>\n      <point x=\"757\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1440\"/>\n      <point x=\"228\" y=\"1274\"/>\n      <point x=\"228\" y=\"1026\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"852\"/>\n      <point x=\"390\" y=\"736\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eight.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eightsuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eightinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eightinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2088\"/>\n  <outline>\n    <component base=\"eightsuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eightsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eightsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2078\"/>\n  <outline>\n    <contour>\n      <point x=\"645\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"793\"/>\n      <point x=\"973\" y=\"856\"/>\n      <point x=\"973\" y=\"991\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"973\" y=\"1085\"/>\n      <point x=\"877\" y=\"1137\"/>\n      <point x=\"706\" y=\"1137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1137\"/>\n      <point x=\"383\" y=\"1090\"/>\n      <point x=\"383\" y=\"957\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"853\"/>\n      <point x=\"477\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"672\" y=\"945\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"945\"/>\n      <point x=\"616\" y=\"964\"/>\n      <point x=\"616\" y=\"999\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"1047\"/>\n      <point x=\"647\" y=\"1076\"/>\n      <point x=\"695\" y=\"1076\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"1076\"/>\n      <point x=\"752\" y=\"1056\"/>\n      <point x=\"752\" y=\"1021\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"980\"/>\n      <point x=\"723\" y=\"945\"/>\n    </contour>\n    <contour>\n      <point x=\"622\" y=\"1117\" type=\"line\"/>\n      <point x=\"784\" y=\"1117\" type=\"line\"/>\n      <point x=\"792\" y=\"1161\" type=\"line\"/>\n      <point x=\"630\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"716\" y=\"1194\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"1194\"/>\n      <point x=\"666\" y=\"1210\"/>\n      <point x=\"666\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"1269\"/>\n      <point x=\"692\" y=\"1288\"/>\n      <point x=\"732\" y=\"1288\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"1288\"/>\n      <point x=\"783\" y=\"1273\"/>\n      <point x=\"783\" y=\"1246\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"1214\"/>\n      <point x=\"755\" y=\"1194\"/>\n    </contour>\n    <contour>\n      <point x=\"706\" y=\"1139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"1139\"/>\n      <point x=\"1010\" y=\"1198\"/>\n      <point x=\"1010\" y=\"1298\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"1388\"/>\n      <point x=\"920\" y=\"1439\"/>\n      <point x=\"759\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"1439\"/>\n      <point x=\"455\" y=\"1392\"/>\n      <point x=\"455\" y=\"1276\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"1189\"/>\n      <point x=\"545\" y=\"1139\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/el-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"el-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043B\"/>\n  <note>\nuni043B\n</note>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"679\" y=\"0\" type=\"curve\"/>\n      <point x=\"962\" y=\"0\" type=\"line\"/>\n      <point x=\"1014\" y=\"176\"/>\n      <point x=\"1067\" y=\"407\"/>\n      <point x=\"1067\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1067\" y=\"1033\"/>\n      <point x=\"823\" y=\"1080\"/>\n      <point x=\"294\" y=\"1080\" type=\"curve\"/>\n      <point x=\"252\" y=\"832\" type=\"line\"/>\n      <point x=\"627\" y=\"825\"/>\n      <point x=\"788\" y=\"837\"/>\n      <point x=\"788\" y=\"605\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"375\"/>\n      <point x=\"732\" y=\"193\"/>\n    </contour>\n    <contour>\n      <point x=\"90\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"-20\"/>\n      <point x=\"548\" y=\"305\"/>\n      <point x=\"640\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"901\" type=\"line\"/>\n      <point x=\"404\" y=\"851\" type=\"line\"/>\n      <point x=\"379\" y=\"735\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"486\"/>\n      <point x=\"234\" y=\"227\"/>\n      <point x=\"69\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"46\" y=\"227\"/>\n      <point x=\"46\" y=\"233\"/>\n      <point x=\"27\" y=\"238\" type=\"curve\"/>\n      <point x=\"-15\" y=\"0\" type=\"line\"/>\n      <point x=\"15\" y=\"-15\"/>\n      <point x=\"49\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ellipsis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ellipsis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2026\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"-398\"/>\n    <component base=\"period\" xOffset=\"398\"/>\n    <component base=\"period\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/em-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"em-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043C\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"528\" y=\"220\" type=\"line\"/>\n      <point x=\"637\" y=\"220\" type=\"line\"/>\n      <point x=\"846\" y=\"808\" type=\"line\"/>\n      <point x=\"916\" y=\"808\" type=\"line\"/>\n      <point x=\"960\" y=\"1060\" type=\"line\"/>\n      <point x=\"795\" y=\"1060\" type=\"line\"/>\n      <point x=\"605\" y=\"517\" type=\"line\"/>\n      <point x=\"593\" y=\"517\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"0\" type=\"line\"/>\n      <point x=\"463\" y=\"1060\" type=\"line\"/>\n      <point x=\"205\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"220\" type=\"line\"/>\n      <point x=\"558\" y=\"220\" type=\"line\"/>\n      <point x=\"598\" y=\"517\" type=\"line\"/>\n      <point x=\"590\" y=\"517\" type=\"line\"/>\n      <point x=\"592\" y=\"1060\" type=\"line\"/>\n      <point x=\"427\" y=\"1060\" type=\"line\"/>\n      <point x=\"383\" y=\"808\" type=\"line\"/>\n      <point x=\"453\" y=\"808\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"737\" y=\"0\" type=\"line\"/>\n      <point x=\"995\" y=\"0\" type=\"line\"/>\n      <point x=\"1182\" y=\"1060\" type=\"line\"/>\n      <point x=\"924\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/emacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"emacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0113\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"macroncomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/emdash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"emdash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2014\"/>\n  <outline>\n    <contour>\n      <point x=\"50\" y=\"584\" type=\"line\"/>\n      <point x=\"1170\" y=\"584\" type=\"line\"/>\n      <point x=\"1214\" y=\"834\" type=\"line\"/>\n      <point x=\"94\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/en-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"en-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"58\" y=\"0\" type=\"line\"/>\n      <point x=\"333\" y=\"0\" type=\"line\"/>\n      <point x=\"520\" y=\"1060\" type=\"line\"/>\n      <point x=\"245\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"309\" y=\"406\" type=\"line\"/>\n      <point x=\"854\" y=\"406\" type=\"line\"/>\n      <point x=\"898\" y=\"655\" type=\"line\"/>\n      <point x=\"353\" y=\"655\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"991\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"-20\"/>\n      <point x=\"1052\" y=\"-19\"/>\n      <point x=\"1077\" y=\"-17\" type=\"curve\"/>\n      <point x=\"1118\" y=\"220\" type=\"line\"/>\n      <point x=\"1105\" y=\"218\"/>\n      <point x=\"1093\" y=\"217\"/>\n      <point x=\"1082\" y=\"217\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"217\"/>\n      <point x=\"987\" y=\"263\"/>\n      <point x=\"1006\" y=\"362\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"1060\" type=\"line\"/>\n      <point x=\"868\" y=\"1060\" type=\"line\"/>\n      <point x=\"736\" y=\"365\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"102\"/>\n      <point x=\"769\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fM_ediumC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfMediumControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2419\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"M.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>M.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfMediumControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"479\" y=\"1234\" type=\"line\"/>\n      <point x=\"479\" y=\"185\" type=\"line\"/>\n      <point x=\"721\" y=\"185\" type=\"line\"/>\n      <point x=\"721\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"439\"/>\n      <point x=\"895\" y=\"558\"/>\n      <point x=\"895\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"855\"/>\n      <point x=\"778\" y=\"977\"/>\n      <point x=\"599\" y=\"977\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"977\"/>\n      <point x=\"303\" y=\"855\"/>\n      <point x=\"303\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"558\"/>\n      <point x=\"420\" y=\"439\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_extC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTextControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2403\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"X.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>X.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTextControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"883\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"883\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"1003\" y=\"186\" type=\"line\"/>\n      <point x=\"1003\" y=\"429\" type=\"line\"/>\n      <point x=\"75\" y=\"429\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionBlockControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2417\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"B.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionBlockControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"883\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"883\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"590\" type=\"line\"/>\n      <point x=\"1003\" y=\"590\" type=\"line\"/>\n      <point x=\"1003\" y=\"833\" type=\"line\"/>\n      <point x=\"75\" y=\"833\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2404\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"495\" y=\"770\" type=\"line\"/>\n      <point x=\"182\" y=\"1196\" type=\"line\"/>\n      <point x=\"25\" y=\"1057\" type=\"line\"/>\n      <point x=\"485\" y=\"436\" type=\"line\"/>\n      <point x=\"703\" y=\"662\" type=\"line\"/>\n      <point x=\"1020\" y=\"235\" type=\"line\"/>\n      <point x=\"1175\" y=\"392\" type=\"line\"/>\n      <point x=\"711\" y=\"1006\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2013\"/>\n  <outline>\n    <contour>\n      <point x=\"80\" y=\"584\" type=\"line\"/>\n      <point x=\"1140\" y=\"584\" type=\"line\"/>\n      <point x=\"1184\" y=\"835\" type=\"line\"/>\n      <point x=\"124\" y=\"835\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/endescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04A3\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1001\" y=\"-318\" type=\"line\"/>\n      <point x=\"1047\" y=\"-187\"/>\n      <point x=\"1114\" y=\"98\"/>\n      <point x=\"1118\" y=\"219\" type=\"curve\"/>\n      <point x=\"883\" y=\"203\" type=\"line\"/>\n      <point x=\"853\" y=\"47\" type=\"line\"/>\n      <point x=\"835\" y=\"-41\"/>\n      <point x=\"806\" y=\"-146\"/>\n      <point x=\"765\" y=\"-269\" type=\"curve\"/>\n    </contour>\n    <component base=\"en-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>en-cy</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eng.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eng\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014B\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"305\" y=\"-480\" type=\"line\"/>\n      <point x=\"395\" y=\"-472\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"-436\"/>\n      <point x=\"907\" y=\"-266\"/>\n      <point x=\"978\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"931\"/>\n      <point x=\"1026\" y=\"1080\"/>\n      <point x=\"800\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1080\"/>\n      <point x=\"551\" y=\"1003\"/>\n      <point x=\"506\" y=\"868\" type=\"curve\"/>\n      <point x=\"471\" y=\"868\" type=\"line\"/>\n      <point x=\"423\" y=\"511\" type=\"line\"/>\n      <point x=\"461\" y=\"745\"/>\n      <point x=\"563\" y=\"823\"/>\n      <point x=\"677\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"823\"/>\n      <point x=\"814\" y=\"760\"/>\n      <point x=\"793\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"-98\"/>\n      <point x=\"607\" y=\"-187\"/>\n      <point x=\"402\" y=\"-213\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"-227\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"58\" y=\"0\" type=\"line\"/>\n      <point x=\"333\" y=\"0\" type=\"line\"/>\n      <point x=\"475\" y=\"807\" type=\"line\"/>\n      <point x=\"482\" y=\"1060\" type=\"line\"/>\n      <point x=\"245\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/enquiryC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"enquiryControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2405\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"Q.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>Q.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/enquiryC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"enquiryControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1028\" y=\"219\" type=\"line\"/>\n      <point x=\"1091\" y=\"275\" type=\"line\"/>\n      <point x=\"158\" y=\"1210\" type=\"line\"/>\n      <point x=\"95\" y=\"1152\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"221\" type=\"line\"/>\n      <point x=\"1097\" y=\"1145\" type=\"line\"/>\n      <point x=\"1034\" y=\"1203\" type=\"line\"/>\n      <point x=\"111\" y=\"277\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0119\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"727\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"-424\"/>\n      <point x=\"881\" y=\"-404\"/>\n      <point x=\"939\" y=\"-376\" type=\"curve\"/>\n      <point x=\"897\" y=\"-162\" type=\"line\"/>\n      <point x=\"858\" y=\"-176\"/>\n      <point x=\"820\" y=\"-185\"/>\n      <point x=\"784\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"-185\"/>\n      <point x=\"715\" y=\"-167\"/>\n      <point x=\"715\" y=\"-132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"-57\"/>\n      <point x=\"797\" y=\"-9\"/>\n      <point x=\"888\" y=\"32\" type=\"curve\"/>\n      <point x=\"849\" y=\"62\" type=\"line\"/>\n      <point x=\"629\" y=\"7\" type=\"line\"/>\n      <point x=\"629\" y=\"-48\" type=\"line\"/>\n      <point x=\"546\" y=\"-86\"/>\n      <point x=\"498\" y=\"-161\"/>\n      <point x=\"498\" y=\"-250\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"-366\"/>\n      <point x=\"576\" y=\"-424\"/>\n    </contour>\n    <component base=\"e\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eopen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"025B\"/>\n  <outline>\n    <component base=\"epsilon\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/epsilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"epsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B5\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"529\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"-20\"/>\n      <point x=\"852\" y=\"-1\"/>\n      <point x=\"968\" y=\"28\" type=\"curve\"/>\n      <point x=\"960\" y=\"281\" type=\"line\"/>\n      <point x=\"866\" y=\"262\"/>\n      <point x=\"755\" y=\"236\"/>\n      <point x=\"582\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"236\"/>\n      <point x=\"399\" y=\"259\"/>\n      <point x=\"399\" y=\"306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"399\" y=\"373\"/>\n      <point x=\"517\" y=\"406\"/>\n      <point x=\"756\" y=\"406\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"406\" type=\"line\"/>\n      <point x=\"852\" y=\"648\" type=\"line\"/>\n      <point x=\"560\" y=\"524\" type=\"line\"/>\n      <point x=\"305\" y=\"506\"/>\n      <point x=\"97\" y=\"427\"/>\n      <point x=\"97\" y=\"211\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"97\" y=\"56\"/>\n      <point x=\"241\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"488\" y=\"431\" type=\"line\"/>\n      <point x=\"808\" y=\"406\" type=\"line\"/>\n      <point x=\"852\" y=\"648\" type=\"line\"/>\n      <point x=\"610\" y=\"655\"/>\n      <point x=\"506\" y=\"686\"/>\n      <point x=\"506\" y=\"742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"798\"/>\n      <point x=\"585\" y=\"824\"/>\n      <point x=\"716\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"824\"/>\n      <point x=\"953\" y=\"809\"/>\n      <point x=\"1046\" y=\"778\" type=\"curve\"/>\n      <point x=\"1151\" y=\"1020\" type=\"line\"/>\n      <point x=\"1050\" y=\"1061\"/>\n      <point x=\"914\" y=\"1080\"/>\n      <point x=\"739\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"1080\"/>\n      <point x=\"228\" y=\"1011\"/>\n      <point x=\"228\" y=\"789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"675\"/>\n      <point x=\"322\" y=\"597\"/>\n      <point x=\"509\" y=\"554\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/epsilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"epsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AD\"/>\n  <outline>\n    <component base=\"epsilon\"/>\n    <component base=\"tonos\" xOffset=\"68\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/equal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003D\"/>\n  <outline>\n    <contour>\n      <point x=\"137\" y=\"835\" type=\"line\"/>\n      <point x=\"1170\" y=\"835\" type=\"line\"/>\n      <point x=\"1214\" y=\"1085\" type=\"line\"/>\n      <point x=\"181\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"49\" y=\"333\" type=\"line\"/>\n      <point x=\"1082\" y=\"333\" type=\"line\"/>\n      <point x=\"1126\" y=\"583\" type=\"line\"/>\n      <point x=\"93\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"34\" y=\"835\" type=\"line\"/>\n      <point x=\"1170\" y=\"835\" type=\"line\"/>\n      <point x=\"1214\" y=\"1085\" type=\"line\"/>\n      <point x=\"78\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-54\" y=\"333\" type=\"line\"/>\n      <point x=\"1082\" y=\"333\" type=\"line\"/>\n      <point x=\"1126\" y=\"583\" type=\"line\"/>\n      <point x=\"-10\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1344\" y=\"835\" type=\"line\"/>\n      <point x=\"2274\" y=\"835\" type=\"line\"/>\n      <point x=\"2318\" y=\"1085\" type=\"line\"/>\n      <point x=\"1388\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"146\" y=\"333\" type=\"line\"/>\n      <point x=\"1076\" y=\"333\" type=\"line\"/>\n      <point x=\"1120\" y=\"583\" type=\"line\"/>\n      <point x=\"190\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"234\" y=\"835\" type=\"line\"/>\n      <point x=\"1164\" y=\"835\" type=\"line\"/>\n      <point x=\"1208\" y=\"1085\" type=\"line\"/>\n      <point x=\"278\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1256\" y=\"333\" type=\"line\"/>\n      <point x=\"2186\" y=\"333\" type=\"line\"/>\n      <point x=\"2230\" y=\"583\" type=\"line\"/>\n      <point x=\"1300\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"263\" y=\"998\" type=\"line\"/>\n      <point x=\"3502\" y=\"998\" type=\"line\"/>\n      <point x=\"3545\" y=\"1240\" type=\"line\"/>\n      <point x=\"306\" y=\"1240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"118\" y=\"178\" type=\"line\"/>\n      <point x=\"3357\" y=\"178\" type=\"line\"/>\n      <point x=\"3400\" y=\"420\" type=\"line\"/>\n      <point x=\"161\" y=\"420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"191\" y=\"588\" type=\"line\"/>\n      <point x=\"3430\" y=\"588\" type=\"line\"/>\n      <point x=\"3472\" y=\"830\" type=\"line\"/>\n      <point x=\"233\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2370\" yOffset=\"-3\"/>\n    <component base=\"greater\" xOffset=\"1240\"/>\n    <component base=\"equal\" xOffset=\"56\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"2374\"/>\n    <component base=\"less\" xOffset=\"1254\"/>\n    <component base=\"equal\" xOffset=\"56\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"4\" y=\"835\" type=\"line\"/>\n      <point x=\"1303\" y=\"835\" type=\"line\"/>\n      <point x=\"1347\" y=\"1085\" type=\"line\"/>\n      <point x=\"48\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-84\" y=\"333\" type=\"line\"/>\n      <point x=\"1215\" y=\"333\" type=\"line\"/>\n      <point x=\"1259\" y=\"583\" type=\"line\"/>\n      <point x=\"-40\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"137\" y=\"835\" type=\"line\"/>\n      <point x=\"1273\" y=\"835\" type=\"line\"/>\n      <point x=\"1317\" y=\"1085\" type=\"line\"/>\n      <point x=\"181\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"49\" y=\"333\" type=\"line\"/>\n      <point x=\"1185\" y=\"333\" type=\"line\"/>\n      <point x=\"1229\" y=\"583\" type=\"line\"/>\n      <point x=\"93\" y=\"583\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/equivalence.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equivalence\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2261\"/>\n  <outline>\n    <contour>\n      <point x=\"179\" y=\"974\" type=\"line\"/>\n      <point x=\"1178\" y=\"974\" type=\"line\"/>\n      <point x=\"1222\" y=\"1224\" type=\"line\"/>\n      <point x=\"223\" y=\"1224\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"41\" y=\"194\" type=\"line\"/>\n      <point x=\"1040\" y=\"194\" type=\"line\"/>\n      <point x=\"1084\" y=\"444\" type=\"line\"/>\n      <point x=\"85\" y=\"444\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"110\" y=\"584\" type=\"line\"/>\n      <point x=\"1109\" y=\"584\" type=\"line\"/>\n      <point x=\"1153\" y=\"834\" type=\"line\"/>\n      <point x=\"154\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/er-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"er-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0440\"/>\n  <outline>\n    <component base=\"p\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ereversed-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ereversed-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"460\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"-20\"/>\n      <point x=\"1093\" y=\"246\"/>\n      <point x=\"1093\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1093\" y=\"923\"/>\n      <point x=\"917\" y=\"1080\"/>\n      <point x=\"610\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"1080\"/>\n      <point x=\"302\" y=\"1033\"/>\n      <point x=\"180\" y=\"960\" type=\"curve\"/>\n      <point x=\"282\" y=\"741\" type=\"line\"/>\n      <point x=\"367\" y=\"792\"/>\n      <point x=\"475\" y=\"833\"/>\n      <point x=\"581\" y=\"833\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"833\"/>\n      <point x=\"840\" y=\"745\"/>\n      <point x=\"841\" y=\"609\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"385\"/>\n      <point x=\"711\" y=\"237\"/>\n      <point x=\"488\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"237\"/>\n      <point x=\"296\" y=\"271\"/>\n      <point x=\"231\" y=\"349\" type=\"curve\"/>\n      <point x=\"46\" y=\"170\" type=\"line\"/>\n      <point x=\"137\" y=\"37\"/>\n      <point x=\"261\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"407\" y=\"428\" type=\"line\"/>\n      <point x=\"964\" y=\"428\" type=\"line\"/>\n      <point x=\"1004\" y=\"651\" type=\"line\"/>\n      <point x=\"447\" y=\"651\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/es-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"es-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0441\"/>\n  <outline>\n    <component base=\"c\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/escapeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"escapeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241B\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"C.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/escapeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"escapeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"635\" type=\"line\"/>\n      <point x=\"1091\" y=\"635\" type=\"line\"/>\n      <point x=\"1091\" y=\"785\" type=\"line\"/>\n      <point x=\"109\" y=\"785\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/esh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"esh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0283\"/>\n  <anchor x=\"388\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-85\" y=\"-477\" type=\"line\"/>\n      <point x=\"84\" y=\"-459\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"-425\"/>\n      <point x=\"584\" y=\"-291\"/>\n      <point x=\"622\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"1181\"/>\n      <point x=\"842\" y=\"1263\"/>\n      <point x=\"1028\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"1263\"/>\n      <point x=\"1148\" y=\"1259\"/>\n      <point x=\"1242\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1312\" y=\"1500\" type=\"line\"/>\n      <point x=\"1235\" y=\"1514\"/>\n      <point x=\"1166\" y=\"1520\"/>\n      <point x=\"1079\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1520\"/>\n      <point x=\"484\" y=\"1360\"/>\n      <point x=\"444\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"92\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"-117\"/>\n      <point x=\"222\" y=\"-187\"/>\n      <point x=\"48\" y=\"-206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-92\" y=\"-221\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/estimated.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"estimated\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"212E\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"-20\"/>\n      <point x=\"924\" y=\"59\"/>\n      <point x=\"1049\" y=\"248\" type=\"curve\"/>\n      <point x=\"984\" y=\"289\" type=\"line\"/>\n      <point x=\"888\" y=\"132\"/>\n      <point x=\"768\" y=\"50\"/>\n      <point x=\"596\" y=\"50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"50\"/>\n      <point x=\"386\" y=\"89\"/>\n      <point x=\"305\" y=\"167\" type=\"curve\"/>\n      <point x=\"305\" y=\"529\" type=\"line\"/>\n      <point x=\"1120\" y=\"529\" type=\"line\"/>\n      <point x=\"1105\" y=\"855\"/>\n      <point x=\"910\" y=\"1080\"/>\n      <point x=\"596\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"1080\"/>\n      <point x=\"80\" y=\"851\"/>\n      <point x=\"80\" y=\"531\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"222\"/>\n      <point x=\"280\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"305\" y=\"598\" type=\"line\"/>\n      <point x=\"305\" y=\"893\" type=\"line\"/>\n      <point x=\"383\" y=\"972\"/>\n      <point x=\"479\" y=\"1013\"/>\n      <point x=\"592\" y=\"1013\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"1013\"/>\n      <point x=\"808\" y=\"968\"/>\n      <point x=\"886\" y=\"891\" type=\"curve\"/>\n      <point x=\"886\" y=\"598\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B7\"/>\n  <anchor x=\"425\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"691\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"58\" y=\"0\" type=\"line\"/>\n      <point x=\"333\" y=\"0\" type=\"line\"/>\n      <point x=\"475\" y=\"807\" type=\"line\"/>\n      <point x=\"482\" y=\"1060\" type=\"line\"/>\n      <point x=\"245\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"800\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1080\"/>\n      <point x=\"551\" y=\"1003\"/>\n      <point x=\"506\" y=\"868\" type=\"curve\"/>\n      <point x=\"471\" y=\"868\" type=\"line\"/>\n      <point x=\"423\" y=\"511\" type=\"line\"/>\n      <point x=\"461\" y=\"745\"/>\n      <point x=\"563\" y=\"823\"/>\n      <point x=\"677\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"823\"/>\n      <point x=\"815\" y=\"760\"/>\n      <point x=\"793\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"335\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"88\"/>\n      <point x=\"650\" y=\"-72\"/>\n      <point x=\"387\" y=\"-279\" type=\"curve\"/>\n      <point x=\"563\" y=\"-469\" type=\"line\"/>\n      <point x=\"885\" y=\"-219\"/>\n      <point x=\"949\" y=\"-16\"/>\n      <point x=\"1013\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"930\"/>\n      <point x=\"1026\" y=\"1080\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/etatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"etatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AE\"/>\n  <outline>\n    <component base=\"eta\"/>\n    <component base=\"tonos\" xOffset=\"18\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eth.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F0\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"467\" y=\"1359\" type=\"line\"/>\n      <point x=\"805\" y=\"1225\"/>\n      <point x=\"858\" y=\"1010\"/>\n      <point x=\"828\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"379\"/>\n      <point x=\"690\" y=\"237\"/>\n      <point x=\"490\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"237\"/>\n      <point x=\"353\" y=\"285\"/>\n      <point x=\"353\" y=\"376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"588\"/>\n      <point x=\"592\" y=\"713\"/>\n      <point x=\"989\" y=\"713\" type=\"curve\"/>\n      <point x=\"943\" y=\"970\" type=\"line\"/>\n      <point x=\"422\" y=\"970\"/>\n      <point x=\"66\" y=\"713\"/>\n      <point x=\"66\" y=\"339\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"66\" y=\"103\"/>\n      <point x=\"196\" y=\"-20\"/>\n      <point x=\"445\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"-20\"/>\n      <point x=\"1057\" y=\"176\"/>\n      <point x=\"1107\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1172\" y=\"1087\"/>\n      <point x=\"1041\" y=\"1366\"/>\n      <point x=\"550\" y=\"1516\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"389\" y=\"972\" type=\"line\"/>\n      <point x=\"1216\" y=\"1214\" type=\"line\"/>\n      <point x=\"1164\" y=\"1439\" type=\"line\"/>\n      <point x=\"337\" y=\"1197\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/etilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"etilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBD\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"tildecomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eturned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01DD\"/>\n  <outline>\n    <component base=\"schwa\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/euro.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"euro\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AC\"/>\n  <outline>\n    <contour>\n      <point x=\"672\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"-20\"/>\n      <point x=\"918\" y=\"2\"/>\n      <point x=\"1041\" y=\"48\" type=\"curve\"/>\n      <point x=\"1027\" y=\"292\" type=\"line\"/>\n      <point x=\"929\" y=\"252\"/>\n      <point x=\"833\" y=\"232\"/>\n      <point x=\"739\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"232\"/>\n      <point x=\"472\" y=\"331\"/>\n      <point x=\"472\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"909\"/>\n      <point x=\"656\" y=\"1188\"/>\n      <point x=\"906\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"985\" y=\"1188\"/>\n      <point x=\"1049\" y=\"1166\"/>\n      <point x=\"1107\" y=\"1116\" type=\"curve\"/>\n      <point x=\"1260\" y=\"1331\" type=\"line\"/>\n      <point x=\"1180\" y=\"1406\"/>\n      <point x=\"1078\" y=\"1440\"/>\n      <point x=\"935\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"1440\"/>\n      <point x=\"194\" y=\"1063\"/>\n      <point x=\"194\" y=\"523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"194\" y=\"161\"/>\n      <point x=\"354\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"67\" y=\"458\" type=\"line\"/>\n      <point x=\"885\" y=\"458\" type=\"line\"/>\n      <point x=\"918\" y=\"646\" type=\"line\"/>\n      <point x=\"100\" y=\"646\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"121\" y=\"764\" type=\"line\"/>\n      <point x=\"939\" y=\"764\" type=\"line\"/>\n      <point x=\"972\" y=\"952\" type=\"line\"/>\n      <point x=\"154\" y=\"952\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/eurocurrency.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eurocurrency\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A0\"/>\n  <outline>\n    <contour>\n      <point x=\"558\" y=\"511\" type=\"curve\"/>\n      <point x=\"587\" y=\"766\" type=\"line\"/>\n      <point x=\"475\" y=\"766\"/>\n      <point x=\"410\" y=\"833\"/>\n      <point x=\"409\" y=\"950\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1090\"/>\n      <point x=\"499\" y=\"1182\"/>\n      <point x=\"635\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"722\" y=\"1182\"/>\n      <point x=\"768\" y=\"1159\"/>\n      <point x=\"827\" y=\"1104\" type=\"curve\"/>\n      <point x=\"1002\" y=\"1314\" type=\"line\"/>\n      <point x=\"905\" y=\"1401\"/>\n      <point x=\"804\" y=\"1439\"/>\n      <point x=\"623\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"1439\"/>\n      <point x=\"109\" y=\"1232\"/>\n      <point x=\"109\" y=\"918\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"660\"/>\n      <point x=\"273\" y=\"511\"/>\n    </contour>\n    <contour>\n      <point x=\"392\" y=\"0\" type=\"line\"/>\n      <point x=\"1002\" y=\"0\" type=\"line\"/>\n      <point x=\"1046\" y=\"251\" type=\"line\"/>\n      <point x=\"436\" y=\"251\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"392\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"802\" y=\"880\" type=\"line\"/>\n      <point x=\"547\" y=\"880\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"453\" y=\"348\" type=\"line\"/>\n      <point x=\"963\" y=\"348\" type=\"line\"/>\n      <point x=\"996\" y=\"534\" type=\"line\"/>\n      <point x=\"486\" y=\"534\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"503\" y=\"629\" type=\"line\"/>\n      <point x=\"1113\" y=\"629\" type=\"line\"/>\n      <point x=\"1157\" y=\"880\" type=\"line\"/>\n      <point x=\"547\" y=\"880\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0021\"/>\n  <outline>\n    <contour>\n      <point x=\"490\" y=\"556\" type=\"line\"/>\n      <point x=\"714\" y=\"556\" type=\"line\"/>\n      <point x=\"907\" y=\"1430\" type=\"line\"/>\n      <point x=\"612\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <component base=\"period\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"242\"/>\n    <component base=\"colon\" xOffset=\"1113\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"546\" y=\"-100\" type=\"line\"/>\n      <point x=\"820\" y=\"-100\" type=\"line\"/>\n      <point x=\"1882\" y=\"1520\" type=\"line\"/>\n      <point x=\"1608\" y=\"1520\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"146\" y=\"333\" type=\"line\"/>\n      <point x=\"2186\" y=\"333\" type=\"line\"/>\n      <point x=\"2230\" y=\"583\" type=\"line\"/>\n      <point x=\"190\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"234\" y=\"835\" type=\"line\"/>\n      <point x=\"2274\" y=\"835\" type=\"line\"/>\n      <point x=\"2318\" y=\"1085\" type=\"line\"/>\n      <point x=\"278\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1195\" y=\"-100\" type=\"line\"/>\n      <point x=\"1468\" y=\"-100\" type=\"line\"/>\n      <point x=\"2530\" y=\"1520\" type=\"line\"/>\n      <point x=\"2256\" y=\"1520\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"195\" type=\"line\"/>\n      <point x=\"3351\" y=\"195\" type=\"line\"/>\n      <point x=\"3394\" y=\"437\" type=\"line\"/>\n      <point x=\"154\" y=\"437\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"181\" y=\"589\" type=\"line\"/>\n      <point x=\"3421\" y=\"589\" type=\"line\"/>\n      <point x=\"3463\" y=\"830\" type=\"line\"/>\n      <point x=\"223\" y=\"830\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"250\" y=\"981\" type=\"line\"/>\n      <point x=\"3490\" y=\"981\" type=\"line\"/>\n      <point x=\"3532\" y=\"1223\" type=\"line\"/>\n      <point x=\"292\" y=\"1223\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1036\" y=\"835\" type=\"line\"/>\n      <point x=\"1303\" y=\"835\" type=\"line\"/>\n      <point x=\"1347\" y=\"1085\" type=\"line\"/>\n      <point x=\"1080\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"948\" y=\"333\" type=\"line\"/>\n      <point x=\"1215\" y=\"333\" type=\"line\"/>\n      <point x=\"1259\" y=\"583\" type=\"line\"/>\n      <point x=\"992\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"3\" y=\"835\" type=\"line\"/>\n      <point x=\"270\" y=\"835\" type=\"line\"/>\n      <point x=\"314\" y=\"1085\" type=\"line\"/>\n      <point x=\"47\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-85\" y=\"333\" type=\"line\"/>\n      <point x=\"182\" y=\"333\" type=\"line\"/>\n      <point x=\"226\" y=\"583\" type=\"line\"/>\n      <point x=\"-41\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"exclam\" xOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_exclam.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_exclam.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"142\"/>\n    <component base=\"exclam\" xOffset=\"1057\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_exclam_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_exclam_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"102\"/>\n    <component base=\"exclam\" xOffset=\"1200\"/>\n    <component base=\"period\" xOffset=\"2298\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"242\"/>\n    <component base=\"period\" xOffset=\"1098\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclamdouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclamdouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203C\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"-267\"/>\n    <component base=\"exclam\" xOffset=\"267\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/exclamdown.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclamdown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A1\"/>\n  <outline>\n    <contour>\n      <point x=\"305\" y=\"-302\" type=\"line\"/>\n      <point x=\"600\" y=\"-302\" type=\"line\"/>\n      <point x=\"722\" y=\"572\" type=\"line\"/>\n      <point x=\"498\" y=\"572\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"142\" yOffset=\"804\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ezh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ezh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0292\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"694\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"363\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"-480\"/>\n      <point x=\"994\" y=\"-278\"/>\n      <point x=\"994\" y=\"40\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"304\"/>\n      <point x=\"841\" y=\"453\"/>\n      <point x=\"560\" y=\"460\" type=\"curve\"/>\n      <point x=\"380\" y=\"460\" type=\"line\"/>\n      <point x=\"348\" y=\"231\" type=\"line\"/>\n      <point x=\"434\" y=\"231\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"231\"/>\n      <point x=\"714\" y=\"162\"/>\n      <point x=\"714\" y=\"37\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"-116\"/>\n      <point x=\"588\" y=\"-223\"/>\n      <point x=\"419\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"-223\"/>\n      <point x=\"191\" y=\"-176\"/>\n      <point x=\"97\" y=\"-66\" type=\"curve\"/>\n      <point x=\"-81\" y=\"-281\" type=\"line\"/>\n      <point x=\"17\" y=\"-413\"/>\n      <point x=\"167\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"390\" y=\"231\" type=\"line\"/>\n      <point x=\"633\" y=\"409\" type=\"line\"/>\n      <point x=\"1062\" y=\"784\" type=\"line\"/>\n      <point x=\"1040\" y=\"1060\" type=\"line\"/>\n      <point x=\"253\" y=\"1060\" type=\"line\"/>\n      <point x=\"209\" y=\"811\" type=\"line\"/>\n      <point x=\"893\" y=\"811\" type=\"line\"/>\n      <point x=\"791\" y=\"860\" type=\"line\"/>\n      <point x=\"300\" y=\"423\" type=\"line\"/>\n      <point x=\"334\" y=\"231\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/f.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"f\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0066\"/>\n  <anchor x=\"388\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-85\" y=\"-477\" type=\"line\"/>\n      <point x=\"84\" y=\"-459\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"-425\"/>\n      <point x=\"584\" y=\"-291\"/>\n      <point x=\"622\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"1181\"/>\n      <point x=\"842\" y=\"1263\"/>\n      <point x=\"1028\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"1263\"/>\n      <point x=\"1148\" y=\"1259\"/>\n      <point x=\"1242\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1312\" y=\"1500\" type=\"line\"/>\n      <point x=\"1235\" y=\"1514\"/>\n      <point x=\"1166\" y=\"1520\"/>\n      <point x=\"1079\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1520\"/>\n      <point x=\"484\" y=\"1360\"/>\n      <point x=\"444\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"92\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"-117\"/>\n      <point x=\"222\" y=\"-187\"/>\n      <point x=\"48\" y=\"-206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-92\" y=\"-221\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"67\" y=\"617\" type=\"line\"/>\n      <point x=\"1081\" y=\"617\" type=\"line\"/>\n      <point x=\"1122\" y=\"849\" type=\"line\"/>\n      <point x=\"108\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/f.locl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"f.locl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"388\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"196\" y=\"-460\" type=\"line\"/>\n      <point x=\"467\" y=\"-460\" type=\"line\"/>\n      <point x=\"721\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"1179\"/>\n      <point x=\"848\" y=\"1263\"/>\n      <point x=\"1028\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"1263\"/>\n      <point x=\"1148\" y=\"1259\"/>\n      <point x=\"1242\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1312\" y=\"1500\" type=\"line\"/>\n      <point x=\"1235\" y=\"1514\"/>\n      <point x=\"1166\" y=\"1520\"/>\n      <point x=\"1079\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"1520\"/>\n      <point x=\"517\" y=\"1356\"/>\n      <point x=\"449\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"67\" y=\"617\" type=\"line\"/>\n      <point x=\"1081\" y=\"617\" type=\"line\"/>\n      <point x=\"1122\" y=\"849\" type=\"line\"/>\n      <point x=\"108\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/f.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"f.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"488\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"-480\"/>\n      <point x=\"1025\" y=\"-346\"/>\n      <point x=\"1025\" y=\"-78\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"105\"/>\n      <point x=\"935\" y=\"296\"/>\n      <point x=\"783\" y=\"443\" type=\"curve\"/>\n      <point x=\"568\" y=\"279\" type=\"line\"/>\n      <point x=\"695\" y=\"166\"/>\n      <point x=\"768\" y=\"32\"/>\n      <point x=\"768\" y=\"-88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"-178\"/>\n      <point x=\"730\" y=\"-223\"/>\n      <point x=\"656\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"526\" y=\"-223\"/>\n      <point x=\"450\" y=\"-86\"/>\n      <point x=\"450\" y=\"153\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"858\"/>\n      <point x=\"631\" y=\"1263\"/>\n      <point x=\"946\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"1263\"/>\n      <point x=\"1100\" y=\"1229\"/>\n      <point x=\"1147\" y=\"1170\" type=\"curve\"/>\n      <point x=\"1294\" y=\"1373\" type=\"line\"/>\n      <point x=\"1225\" y=\"1466\"/>\n      <point x=\"1109\" y=\"1520\"/>\n      <point x=\"977\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"1520\"/>\n      <point x=\"193\" y=\"1018\"/>\n      <point x=\"193\" y=\"143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"193\" y=\"-253\"/>\n      <point x=\"359\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"71\" y=\"609\" type=\"line\"/>\n      <point x=\"1015\" y=\"609\" type=\"line\"/>\n      <point x=\"1059\" y=\"857\" type=\"line\"/>\n      <point x=\"115\" y=\"857\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB01\"/>\n  <outline>\n    <contour>\n      <point x=\"-201\" y=\"-477\" type=\"line\"/>\n      <point x=\"-32\" y=\"-459\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"-425\"/>\n      <point x=\"468\" y=\"-291\"/>\n      <point x=\"506\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"600\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"1181\"/>\n      <point x=\"726\" y=\"1263\"/>\n      <point x=\"912\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"1263\"/>\n      <point x=\"1032\" y=\"1259\"/>\n      <point x=\"1126\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1196\" y=\"1500\" type=\"line\"/>\n      <point x=\"1119\" y=\"1514\"/>\n      <point x=\"1050\" y=\"1520\"/>\n      <point x=\"963\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"1520\"/>\n      <point x=\"368\" y=\"1360\"/>\n      <point x=\"328\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"92\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"217\" y=\"-117\"/>\n      <point x=\"106\" y=\"-187\"/>\n      <point x=\"-68\" y=\"-206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-208\" y=\"-221\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"617\" type=\"line\"/>\n      <point x=\"1064\" y=\"617\" type=\"line\"/>\n      <point x=\"1105\" y=\"849\" type=\"line\"/>\n      <point x=\"107\" y=\"849\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"685\" y=\"0\" type=\"line\"/>\n      <point x=\"955\" y=\"0\" type=\"line\"/>\n      <point x=\"1105\" y=\"849\" type=\"line\"/>\n      <point x=\"835\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fileS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fileSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241C\"/>\n  <outline>\n    <component base=\"F.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/filledR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"filledRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AC\"/>\n  <note>\nfilledrect\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"0\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/firsttonechinese.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"firsttonechinese\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C9\"/>\n  <outline>\n    <component base=\"macron\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fisheye.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fisheye\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C9\"/>\n  <note>\nuni25C9\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"518\"/>\n      <point x=\"793\" y=\"594\"/>\n      <point x=\"793\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"826\"/>\n      <point x=\"716\" y=\"903\"/>\n      <point x=\"600\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"903\"/>\n      <point x=\"408\" y=\"826\"/>\n      <point x=\"408\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"594\"/>\n      <point x=\"484\" y=\"518\"/>\n    </contour>\n    <component base=\"whiteCircle\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/five.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fivesuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/five.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0035\"/>\n  <outline>\n    <contour>\n      <point x=\"546\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"-20\"/>\n      <point x=\"1113\" y=\"188\"/>\n      <point x=\"1113\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1113\" y=\"785\"/>\n      <point x=\"975\" y=\"930\"/>\n      <point x=\"741\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"930\"/>\n      <point x=\"530\" y=\"909\"/>\n      <point x=\"384\" y=\"830\" type=\"curve\"/>\n      <point x=\"386\" y=\"610\" type=\"line\"/>\n      <point x=\"446\" y=\"654\"/>\n      <point x=\"529\" y=\"678\"/>\n      <point x=\"629\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"759\" y=\"678\"/>\n      <point x=\"835\" y=\"608\"/>\n      <point x=\"835\" y=\"489\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"327\"/>\n      <point x=\"737\" y=\"232\"/>\n      <point x=\"571\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"427\" y=\"232\"/>\n      <point x=\"355\" y=\"306\"/>\n      <point x=\"375\" y=\"430\" type=\"curve\"/>\n      <point x=\"98\" y=\"430\" type=\"line\"/>\n      <point x=\"50\" y=\"147\"/>\n      <point x=\"214\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"610\" type=\"line\"/>\n      <point x=\"386\" y=\"610\" type=\"line\"/>\n      <point x=\"521\" y=\"804\" type=\"line\"/>\n      <point x=\"628\" y=\"1420\" type=\"line\"/>\n      <point x=\"354\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"427\" y=\"1177\" type=\"line\"/>\n      <point x=\"1137\" y=\"1177\" type=\"line\"/>\n      <point x=\"1180\" y=\"1420\" type=\"line\"/>\n      <point x=\"452\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/five.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fivesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveeighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"763\" y=\"698\" type=\"line\"/>\n      <point x=\"1202\" y=\"959\" type=\"line\"/>\n      <point x=\"1071\" y=\"1176\" type=\"line\"/>\n      <point x=\"684\" y=\"835\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"231\" type=\"line\"/>\n      <point x=\"553\" y=\"565\" type=\"line\"/>\n      <point x=\"478\" y=\"704\" type=\"line\"/>\n      <point x=\"41\" y=\"451\" type=\"line\"/>\n    </contour>\n    <component base=\"fivesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fiveeighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveeighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215D\"/>\n  <outline>\n    <contour>\n      <point x=\"168\" y=\"241\" type=\"line\"/>\n      <point x=\"1195\" y=\"969\" type=\"line\"/>\n      <point x=\"1074\" y=\"1166\" type=\"line\"/>\n      <point x=\"54\" y=\"441\" type=\"line\"/>\n    </contour>\n    <component base=\"fivesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fiveinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2085\"/>\n  <outline>\n    <component base=\"fivesuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fivesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fivesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2075\"/>\n  <outline>\n    <contour>\n      <point x=\"644\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"793\"/>\n      <point x=\"974\" y=\"875\"/>\n      <point x=\"974\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1130\"/>\n      <point x=\"902\" y=\"1190\"/>\n      <point x=\"769\" y=\"1190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"1190\"/>\n      <point x=\"653\" y=\"1178\"/>\n      <point x=\"604\" y=\"1158\" type=\"curve\"/>\n      <point x=\"597\" y=\"1021\" type=\"line\"/>\n      <point x=\"630\" y=\"1046\"/>\n      <point x=\"665\" y=\"1057\"/>\n      <point x=\"698\" y=\"1057\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"1057\"/>\n      <point x=\"744\" y=\"1043\"/>\n      <point x=\"744\" y=\"1016\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"983\"/>\n      <point x=\"717\" y=\"962\"/>\n      <point x=\"675\" y=\"962\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"962\"/>\n      <point x=\"625\" y=\"971\"/>\n      <point x=\"628\" y=\"987\" type=\"curve\"/>\n      <point x=\"395\" y=\"987\" type=\"line\"/>\n      <point x=\"371\" y=\"852\"/>\n      <point x=\"483\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"427\" y=\"1021\" type=\"line\"/>\n      <point x=\"597\" y=\"1021\" type=\"line\"/>\n      <point x=\"669\" y=\"1139\" type=\"line\"/>\n      <point x=\"722\" y=\"1420\" type=\"line\"/>\n      <point x=\"506\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"602\" y=\"1238\" type=\"line\"/>\n      <point x=\"973\" y=\"1238\" type=\"line\"/>\n      <point x=\"1005\" y=\"1420\" type=\"line\"/>\n      <point x=\"626\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB02\"/>\n  <outline>\n    <contour>\n      <point x=\"-202\" y=\"-477\" type=\"line\"/>\n      <point x=\"-33\" y=\"-459\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"-426\"/>\n      <point x=\"439\" y=\"-290\"/>\n      <point x=\"485\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"624\" y=\"1180\"/>\n      <point x=\"725\" y=\"1263\"/>\n      <point x=\"911\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"1263\"/>\n      <point x=\"1064\" y=\"1259\"/>\n      <point x=\"1183\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1253\" y=\"1500\" type=\"line\"/>\n      <point x=\"1157\" y=\"1514\"/>\n      <point x=\"1071\" y=\"1520\"/>\n      <point x=\"962\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"1520\"/>\n      <point x=\"376\" y=\"1359\"/>\n      <point x=\"327\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"217\" y=\"92\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"191\" y=\"-116\"/>\n      <point x=\"94\" y=\"-189\"/>\n      <point x=\"-69\" y=\"-206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-209\" y=\"-221\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"67\" y=\"617\" type=\"line\"/>\n      <point x=\"703\" y=\"617\" type=\"line\"/>\n      <point x=\"744\" y=\"849\" type=\"line\"/>\n      <point x=\"108\" y=\"849\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"717\" y=\"0\" type=\"line\"/>\n      <point x=\"989\" y=\"0\" type=\"line\"/>\n      <point x=\"1253\" y=\"1500\" type=\"line\"/>\n      <point x=\"981\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/florin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"florin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0192\"/>\n  <outline>\n    <component base=\"f.salt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/formF_eedC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"formFeedControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240C\"/>\n  <outline>\n    <component base=\"F.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"F.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/formF_eedC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"formFeedControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"589\" y=\"599\" type=\"line\"/>\n      <point x=\"611\" y=\"599\" type=\"line\"/>\n      <point x=\"1126\" y=\"1236\" type=\"line\"/>\n      <point x=\"856\" y=\"1236\" type=\"line\"/>\n      <point x=\"779\" y=\"979\" type=\"line\"/>\n      <point x=\"421\" y=\"979\" type=\"line\"/>\n      <point x=\"344\" y=\"1236\" type=\"line\"/>\n      <point x=\"74\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"589\" y=\"180\" type=\"line\"/>\n      <point x=\"611\" y=\"180\" type=\"line\"/>\n      <point x=\"1126\" y=\"817\" type=\"line\"/>\n      <point x=\"856\" y=\"817\" type=\"line\"/>\n      <point x=\"779\" y=\"560\" type=\"line\"/>\n      <point x=\"421\" y=\"560\" type=\"line\"/>\n      <point x=\"344\" y=\"817\" type=\"line\"/>\n      <point x=\"74\" y=\"817\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"426\" type=\"line\"/>\n      <point x=\"731\" y=\"426\" type=\"line\"/>\n      <point x=\"731\" y=\"1235\" type=\"line\"/>\n      <point x=\"469\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/four.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"foursuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/four.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0034\"/>\n  <outline>\n    <contour>\n      <point x=\"13\" y=\"286\" type=\"line\"/>\n      <point x=\"285\" y=\"286\" type=\"line\"/>\n      <point x=\"648\" y=\"1340\" type=\"line\"/>\n      <point x=\"374\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"13\" y=\"286\" type=\"line\"/>\n      <point x=\"713\" y=\"286\" type=\"line\"/>\n      <point x=\"756\" y=\"527\" type=\"line\"/>\n      <point x=\"213\" y=\"527\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"936\" y=\"286\" type=\"line\"/>\n      <point x=\"1093\" y=\"286\" type=\"line\"/>\n      <point x=\"1136\" y=\"527\" type=\"line\"/>\n      <point x=\"979\" y=\"527\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"640\" y=\"0\" type=\"line\"/>\n      <point x=\"906\" y=\"0\" type=\"line\"/>\n      <point x=\"1156\" y=\"1420\" type=\"line\"/>\n      <point x=\"890\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/four.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"89\" y=\"132\" type=\"line\"/>\n      <point x=\"253\" y=\"132\" type=\"line\"/>\n      <point x=\"425\" y=\"603\" type=\"line\"/>\n      <point x=\"259\" y=\"603\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"89\" y=\"132\" type=\"line\"/>\n      <point x=\"557\" y=\"132\" type=\"line\"/>\n      <point x=\"557\" y=\"267\" type=\"line\"/>\n      <point x=\"192\" y=\"267\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"682\" y=\"132\" type=\"line\"/>\n      <point x=\"787\" y=\"132\" type=\"line\"/>\n      <point x=\"787\" y=\"267\" type=\"line\"/>\n      <point x=\"682\" y=\"267\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"543\" y=\"0\" type=\"line\"/>\n      <point x=\"696\" y=\"0\" type=\"line\"/>\n      <point x=\"696\" y=\"639\" type=\"line\"/>\n      <point x=\"543\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/four.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"foursuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fourinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2084\"/>\n  <outline>\n    <component base=\"foursuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/foursuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"foursuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2074\"/>\n  <outline>\n    <contour>\n      <point x=\"670\" y=\"802\" type=\"line\"/>\n      <point x=\"870\" y=\"802\" type=\"line\"/>\n      <point x=\"978\" y=\"1420\" type=\"line\"/>\n      <point x=\"778\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"374\" y=\"900\" type=\"line\"/>\n      <point x=\"697\" y=\"900\" type=\"line\"/>\n      <point x=\"729\" y=\"1081\" type=\"line\"/>\n      <point x=\"486\" y=\"1081\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"900\" type=\"line\"/>\n      <point x=\"579\" y=\"900\" type=\"line\"/>\n      <point x=\"722\" y=\"1387\" type=\"line\"/>\n      <point x=\"513\" y=\"1387\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"877\" y=\"900\" type=\"line\"/>\n      <point x=\"956\" y=\"900\" type=\"line\"/>\n      <point x=\"988\" y=\"1081\" type=\"line\"/>\n      <point x=\"909\" y=\"1081\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fraction.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fraction\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2044\"/>\n  <outline>\n    <contour>\n      <point x=\"174\" y=\"241\" type=\"line\"/>\n      <point x=\"1201\" y=\"969\" type=\"line\"/>\n      <point x=\"1080\" y=\"1166\" type=\"line\"/>\n      <point x=\"60\" y=\"441\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/franc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"franc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A3\"/>\n  <outline>\n    <contour>\n      <point x=\"-44\" y=\"199\" type=\"line\"/>\n      <point x=\"638\" y=\"199\" type=\"line\"/>\n      <point x=\"670\" y=\"386\" type=\"line\"/>\n      <point x=\"-12\" y=\"386\" type=\"line\"/>\n    </contour>\n    <component base=\"F\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fullB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2588\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/fullB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/g.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"g\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0067\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"59\" y=\"-480\" type=\"line\"/>\n      <point x=\"239\" y=\"-472\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"-449\"/>\n      <point x=\"925\" y=\"-174\"/>\n      <point x=\"991\" y=\"201\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1145\" y=\"1070\" type=\"line\"/>\n      <point x=\"1137\" y=\"1070\" type=\"line\"/>\n      <point x=\"843\" y=\"923\" type=\"line\"/>\n      <point x=\"710\" y=\"169\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"-26\"/>\n      <point x=\"565\" y=\"-213\"/>\n      <point x=\"259\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"49\" y=\"-245\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"929\" y=\"811\" type=\"curve\"/>\n      <point x=\"1144\" y=\"1070\" type=\"line\"/>\n      <point x=\"1126\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"1070\"/>\n      <point x=\"63\" y=\"754\"/>\n      <point x=\"63\" y=\"267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"63\" y=\"84\"/>\n      <point x=\"158\" y=\"-21\"/>\n      <point x=\"326\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"-21\"/>\n      <point x=\"664\" y=\"103\"/>\n      <point x=\"727\" y=\"319\" type=\"curve\"/>\n      <point x=\"659\" y=\"221\" type=\"line\"/>\n      <point x=\"815\" y=\"221\" type=\"line\"/>\n      <point x=\"931\" y=\"623\" type=\"line\"/>\n      <point x=\"805\" y=\"707\" type=\"line\"/>\n      <point x=\"798\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"370\"/>\n      <point x=\"619\" y=\"209\"/>\n      <point x=\"441\" y=\"209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"209\"/>\n      <point x=\"340\" y=\"247\"/>\n      <point x=\"340\" y=\"312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"340\" y=\"587\"/>\n      <point x=\"598\" y=\"797\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gamma-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gamma-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0263\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"307\" y=\"0\" type=\"line\"/>\n      <point x=\"496\" y=\"45\" type=\"line\"/>\n      <point x=\"626\" y=\"0\" type=\"line\"/>\n      <point x=\"977\" y=\"272\"/>\n      <point x=\"1157\" y=\"624\"/>\n      <point x=\"1174\" y=\"1060\" type=\"curve\"/>\n      <point x=\"897\" y=\"1060\" type=\"line\"/>\n      <point x=\"885\" y=\"732\"/>\n      <point x=\"778\" y=\"467\"/>\n      <point x=\"568\" y=\"258\" type=\"curve\"/>\n      <point x=\"546\" y=\"258\" type=\"line\"/>\n      <point x=\"444\" y=\"1080\" type=\"line\"/>\n      <point x=\"162\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"391\" y=\"-480\" type=\"curve\"/>\n      <point x=\"428\" y=\"-259\" type=\"line\"/>\n      <point x=\"379\" y=\"-259\"/>\n      <point x=\"345\" y=\"-227\"/>\n      <point x=\"345\" y=\"-179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"345\" y=\"-118\"/>\n      <point x=\"385\" y=\"-68\"/>\n      <point x=\"541\" y=\"61\" type=\"curve\"/>\n      <point x=\"355\" y=\"106\" type=\"line\"/>\n      <point x=\"195\" y=\"14\"/>\n      <point x=\"80\" y=\"-91\"/>\n      <point x=\"80\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"-381\"/>\n      <point x=\"204\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"391\" y=\"-480\" type=\"line\"/>\n      <point x=\"637\" y=\"-480\"/>\n      <point x=\"801\" y=\"-355\"/>\n      <point x=\"801\" y=\"-167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"-82\"/>\n      <point x=\"760\" y=\"4\"/>\n      <point x=\"637\" y=\"106\" type=\"curve\"/>\n      <point x=\"453\" y=\"61\" type=\"line\"/>\n      <point x=\"518\" y=\"-49\"/>\n      <point x=\"541\" y=\"-105\"/>\n      <point x=\"541\" y=\"-152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"541\" y=\"-216\"/>\n      <point x=\"496\" y=\"-259\"/>\n      <point x=\"428\" y=\"-259\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gamma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gamma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B3\"/>\n  <anchor x=\"425\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"253\" y=\"-460\" type=\"curve\"/>\n      <point x=\"525\" y=\"-460\" type=\"line\"/>\n      <point x=\"631\" y=\"131\"/>\n      <point x=\"565\" y=\"703\"/>\n      <point x=\"339\" y=\"1080\" type=\"curve\"/>\n      <point x=\"86\" y=\"925\" type=\"line\"/>\n      <point x=\"309\" y=\"563\"/>\n      <point x=\"357\" y=\"74\"/>\n    </contour>\n    <contour>\n      <point x=\"410\" y=\"-31\" type=\"line\"/>\n      <point x=\"880\" y=\"116\"/>\n      <point x=\"1079\" y=\"399\"/>\n      <point x=\"1188\" y=\"1060\" type=\"curve\"/>\n      <point x=\"916\" y=\"1060\" type=\"line\"/>\n      <point x=\"837\" y=\"578\"/>\n      <point x=\"692\" y=\"333\"/>\n      <point x=\"350\" y=\"213\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gbreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gbreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011F\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E7\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011D\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0123\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"commaturnedabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0121\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"dotaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ge-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ge-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0433\"/>\n  <anchor x=\"503\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"690\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"-20\"/>\n      <point x=\"874\" y=\"5\"/>\n      <point x=\"1028\" y=\"96\" type=\"curve\"/>\n      <point x=\"969\" y=\"336\" type=\"line\"/>\n      <point x=\"829\" y=\"272\"/>\n      <point x=\"664\" y=\"237\"/>\n      <point x=\"545\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"237\"/>\n      <point x=\"398\" y=\"262\"/>\n      <point x=\"398\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"398\" y=\"456\"/>\n      <point x=\"1084\" y=\"427\"/>\n      <point x=\"1084\" y=\"804\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"973\"/>\n      <point x=\"945\" y=\"1080\"/>\n      <point x=\"677\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"494\" y=\"1080\"/>\n      <point x=\"302\" y=\"1030\"/>\n      <point x=\"147\" y=\"942\" type=\"curve\"/>\n      <point x=\"231\" y=\"708\" type=\"line\"/>\n      <point x=\"422\" y=\"792\"/>\n      <point x=\"552\" y=\"823\"/>\n      <point x=\"659\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"823\"/>\n      <point x=\"799\" y=\"798\"/>\n      <point x=\"799\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"607\"/>\n      <point x=\"119\" y=\"650\"/>\n      <point x=\"119\" y=\"263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"47\"/>\n      <point x=\"331\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ge-cy.loclS_R_B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ge-cy.loclSRB\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"281\" y=\"1251\" type=\"line\"/>\n      <point x=\"982\" y=\"1251\" type=\"line\"/>\n      <point x=\"1027\" y=\"1500\" type=\"line\"/>\n      <point x=\"326\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <component base=\"idotless\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>idotless</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/germandbls.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"germandbls\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DF\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"805\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"709\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"-20\"/>\n      <point x=\"1141\" y=\"127\"/>\n      <point x=\"1141\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"450\"/>\n      <point x=\"1074\" y=\"522\"/>\n      <point x=\"1009\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"648\"/>\n      <point x=\"930\" y=\"702\"/>\n      <point x=\"930\" y=\"758\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"829\"/>\n      <point x=\"995\" y=\"902\"/>\n      <point x=\"1018\" y=\"926\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1056\" y=\"965\"/>\n      <point x=\"1171\" y=\"1069\"/>\n      <point x=\"1171\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1171\" y=\"1422\"/>\n      <point x=\"1049\" y=\"1520\"/>\n      <point x=\"826\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"1520\"/>\n      <point x=\"338\" y=\"1355\"/>\n      <point x=\"266\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"19\" y=\"-460\" type=\"line\"/>\n      <point x=\"285\" y=\"-460\" type=\"line\"/>\n      <point x=\"535\" y=\"953\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"574\" y=\"1175\"/>\n      <point x=\"645\" y=\"1264\"/>\n      <point x=\"781\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"1262\"/>\n      <point x=\"883\" y=\"1229\"/>\n      <point x=\"883\" y=\"1178\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"1102\"/>\n      <point x=\"805\" y=\"1026\"/>\n      <point x=\"788\" y=\"1005\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"946\"/>\n      <point x=\"667\" y=\"847\"/>\n      <point x=\"667\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"605\"/>\n      <point x=\"723\" y=\"538\"/>\n      <point x=\"772\" y=\"490\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"443\"/>\n      <point x=\"872\" y=\"402\"/>\n      <point x=\"872\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"272\"/>\n      <point x=\"823\" y=\"237\"/>\n      <point x=\"742\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"237\"/>\n      <point x=\"619\" y=\"249\"/>\n      <point x=\"530\" y=\"269\" type=\"curve\"/>\n      <point x=\"462\" y=\"10\" type=\"line\"/>\n      <point x=\"524\" y=\"-9\"/>\n      <point x=\"602\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ghestroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghestroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0493\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"515\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"-20\"/>\n      <point x=\"843\" y=\"1\"/>\n      <point x=\"1028\" y=\"96\" type=\"curve\"/>\n      <point x=\"969\" y=\"336\" type=\"line\"/>\n      <point x=\"781\" y=\"262\"/>\n      <point x=\"655\" y=\"237\"/>\n      <point x=\"549\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"237\"/>\n      <point x=\"405\" y=\"258\"/>\n      <point x=\"405\" y=\"300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"348\"/>\n      <point x=\"402\" y=\"382\"/>\n      <point x=\"786\" y=\"522\" type=\"curve\"/>\n      <point x=\"811\" y=\"607\" type=\"line\"/>\n      <point x=\"997\" y=\"639\"/>\n      <point x=\"1079\" y=\"704\"/>\n      <point x=\"1079\" y=\"835\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"974\"/>\n      <point x=\"943\" y=\"1080\"/>\n      <point x=\"702\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"1080\"/>\n      <point x=\"321\" y=\"1037\"/>\n      <point x=\"147\" y=\"942\" type=\"curve\"/>\n      <point x=\"231\" y=\"708\" type=\"line\"/>\n      <point x=\"435\" y=\"796\"/>\n      <point x=\"559\" y=\"823\"/>\n      <point x=\"673\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"823\"/>\n      <point x=\"796\" y=\"799\"/>\n      <point x=\"796\" y=\"762\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"669\"/>\n      <point x=\"466\" y=\"585\"/>\n      <point x=\"405\" y=\"530\" type=\"curve\"/>\n      <point x=\"385\" y=\"418\" type=\"line\"/>\n      <point x=\"311\" y=\"423\"/>\n      <point x=\"127\" y=\"373\"/>\n      <point x=\"127\" y=\"222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"127\" y=\"43\"/>\n      <point x=\"336\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"412\" type=\"line\"/>\n      <point x=\"453\" y=\"457\" type=\"line\"/>\n      <point x=\"478\" y=\"419\" type=\"line\"/>\n      <point x=\"737\" y=\"631\" type=\"line\"/>\n      <point x=\"145\" y=\"631\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"467\" y=\"398\" type=\"line\"/>\n      <point x=\"1050\" y=\"398\" type=\"line\"/>\n      <point x=\"1086\" y=\"618\" type=\"line\"/>\n      <point x=\"755\" y=\"573\" type=\"line\"/>\n      <point x=\"727\" y=\"610\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gheupturn-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gheupturn-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0491\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"-20\"/>\n      <point x=\"874\" y=\"5\"/>\n      <point x=\"1028\" y=\"96\" type=\"curve\"/>\n      <point x=\"969\" y=\"336\" type=\"line\"/>\n      <point x=\"829\" y=\"272\"/>\n      <point x=\"664\" y=\"237\"/>\n      <point x=\"545\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"237\"/>\n      <point x=\"398\" y=\"262\"/>\n      <point x=\"398\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"398\" y=\"453\"/>\n      <point x=\"1084\" y=\"433\"/>\n      <point x=\"1084\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"962\"/>\n      <point x=\"945\" y=\"1080\"/>\n      <point x=\"701\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"1080\"/>\n      <point x=\"440\" y=\"1017\"/>\n      <point x=\"366\" y=\"934\" type=\"curve\"/>\n      <point x=\"147\" y=\"962\" type=\"line\"/>\n      <point x=\"273\" y=\"681\" type=\"line\"/>\n      <point x=\"417\" y=\"787\"/>\n      <point x=\"544\" y=\"823\"/>\n      <point x=\"660\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"823\"/>\n      <point x=\"799\" y=\"798\"/>\n      <point x=\"799\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"607\"/>\n      <point x=\"119\" y=\"650\"/>\n      <point x=\"119\" y=\"263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"47\"/>\n      <point x=\"331\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"273\" y=\"681\" type=\"line\"/>\n      <point x=\"339\" y=\"912\" type=\"line\"/>\n      <point x=\"463\" y=\"1320\" type=\"line\"/>\n      <point x=\"199\" y=\"1320\" type=\"line\"/>\n      <point x=\"97\" y=\"733\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0453\"/>\n  <outline>\n    <component base=\"iacute\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/glottalstop.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstop\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0294\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"335\" y=\"0\" type=\"line\"/>\n      <point x=\"613\" y=\"0\" type=\"line\"/>\n      <point x=\"673\" y=\"341\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"461\"/>\n      <point x=\"738\" y=\"560\"/>\n      <point x=\"837\" y=\"655\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"820\"/>\n      <point x=\"1145\" y=\"969\"/>\n      <point x=\"1145\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1145\" y=\"1400\"/>\n      <point x=\"1004\" y=\"1520\"/>\n      <point x=\"747\" y=\"1520\" type=\"curve\"/>\n      <point x=\"701\" y=\"1263\" type=\"line\"/>\n      <point x=\"806\" y=\"1263\"/>\n      <point x=\"859\" y=\"1222\"/>\n      <point x=\"859\" y=\"1139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"1032\"/>\n      <point x=\"792\" y=\"946\"/>\n      <point x=\"703\" y=\"871\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"729\"/>\n      <point x=\"442\" y=\"603\"/>\n      <point x=\"401\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"346\" y=\"1096\" type=\"line\"/>\n      <point x=\"455\" y=\"1206\"/>\n      <point x=\"576\" y=\"1263\"/>\n      <point x=\"701\" y=\"1263\" type=\"curve\"/>\n      <point x=\"747\" y=\"1520\" type=\"line\"/>\n      <point x=\"533\" y=\"1520\"/>\n      <point x=\"353\" y=\"1446\"/>\n      <point x=\"223\" y=\"1304\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/glottalstopmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstopmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C0\"/>\n  <outline>\n    <contour>\n      <point x=\"469\" y=\"790\" type=\"line\"/>\n      <point x=\"739\" y=\"790\" type=\"line\"/>\n      <point x=\"751\" y=\"859\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"896\"/>\n      <point x=\"768\" y=\"925\"/>\n      <point x=\"813\" y=\"955\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"1069\"/>\n      <point x=\"1081\" y=\"1157\"/>\n      <point x=\"1081\" y=\"1302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"1472\"/>\n      <point x=\"991\" y=\"1568\"/>\n      <point x=\"745\" y=\"1568\" type=\"curve\"/>\n      <point x=\"695\" y=\"1324\" type=\"line\"/>\n      <point x=\"763\" y=\"1324\"/>\n      <point x=\"794\" y=\"1304\"/>\n      <point x=\"794\" y=\"1259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"1213\"/>\n      <point x=\"753\" y=\"1168\"/>\n      <point x=\"662\" y=\"1117\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"1059\"/>\n      <point x=\"506\" y=\"993\"/>\n      <point x=\"490\" y=\"907\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"458\" y=\"1261\" type=\"line\"/>\n      <point x=\"517\" y=\"1290\"/>\n      <point x=\"600\" y=\"1324\"/>\n      <point x=\"695\" y=\"1324\" type=\"curve\"/>\n      <point x=\"745\" y=\"1568\" type=\"line\"/>\n      <point x=\"566\" y=\"1568\"/>\n      <point x=\"449\" y=\"1520\"/>\n      <point x=\"348\" y=\"1462\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/glottalstopreversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstopreversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0295\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"406\" y=\"0\" type=\"line\"/>\n      <point x=\"670\" y=\"0\" type=\"line\"/>\n      <point x=\"736\" y=\"373\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"581\"/>\n      <point x=\"735\" y=\"704\"/>\n      <point x=\"615\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"925\"/>\n      <point x=\"539\" y=\"977\"/>\n      <point x=\"539\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"1184\"/>\n      <point x=\"616\" y=\"1263\"/>\n      <point x=\"762\" y=\"1263\" type=\"curve\"/>\n      <point x=\"798\" y=\"1520\" type=\"line\"/>\n      <point x=\"478\" y=\"1520\"/>\n      <point x=\"262\" y=\"1333\"/>\n      <point x=\"262\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"891\"/>\n      <point x=\"319\" y=\"786\"/>\n      <point x=\"409\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"573\"/>\n      <point x=\"488\" y=\"467\"/>\n      <point x=\"466\" y=\"341\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1052\" y=\"1126\" type=\"curve\"/>\n      <point x=\"1231\" y=\"1314\" type=\"line\"/>\n      <point x=\"1164\" y=\"1438\"/>\n      <point x=\"997\" y=\"1520\"/>\n      <point x=\"798\" y=\"1520\" type=\"curve\"/>\n      <point x=\"762\" y=\"1263\" type=\"line\"/>\n      <point x=\"880\" y=\"1263\"/>\n      <point x=\"989\" y=\"1209\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"grave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0060\"/>\n  <outline>\n    <contour>\n      <point x=\"700\" y=\"1068\" type=\"line\"/>\n      <point x=\"946\" y=\"1068\" type=\"line\"/>\n      <point x=\"709\" y=\"1628\" type=\"line\"/>\n      <point x=\"375\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gravecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravecomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"_viet_top\"/>\n  <anchor x=\"818\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"654\" y=\"1580\" type=\"line\"/>\n      <point x=\"931\" y=\"1580\" type=\"line\"/>\n      <point x=\"762\" y=\"1855\" type=\"line\"/>\n      <point x=\"404\" y=\"1855\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gravecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravecomb\" format=\"2\">\n  <unicode hex=\"0300\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"692\" y=\"1060\" name=\"_viet_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"598\" y=\"1248\" type=\"line\"/>\n      <point x=\"855\" y=\"1248\" type=\"line\"/>\n      <point x=\"708\" y=\"1628\" type=\"line\"/>\n      <point x=\"431\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gravetonecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravetonecomb\" format=\"2\">\n  <unicode hex=\"0340\"/>\n  <outline>\n    <component base=\"gravecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"285\" y=\"2\" type=\"line\"/>\n      <point x=\"1019\" y=\"658\" type=\"line\"/>\n      <point x=\"1041\" y=\"780\" type=\"line\"/>\n      <point x=\"540\" y=\"1426\" type=\"line\"/>\n      <point x=\"348\" y=\"1276\" type=\"line\"/>\n      <point x=\"770\" y=\"743\" type=\"line\"/>\n      <point x=\"766\" y=\"725\" type=\"line\"/>\n      <point x=\"139\" y=\"169\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-18\" y=\"197\" type=\"line\"/>\n      <point x=\"1192\" y=\"575\" type=\"line\"/>\n      <point x=\"1239\" y=\"843\" type=\"line\"/>\n      <point x=\"163\" y=\"1221\" type=\"line\"/>\n      <point x=\"115\" y=\"954\" type=\"line\"/>\n      <point x=\"925\" y=\"722\" type=\"line\"/>\n      <point x=\"921\" y=\"704\" type=\"line\"/>\n      <point x=\"30\" y=\"471\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003E\"/>\n  <outline>\n    <contour>\n      <point x=\"55\" y=\"197\" type=\"line\"/>\n      <point x=\"1144\" y=\"575\" type=\"line\"/>\n      <point x=\"1191\" y=\"843\" type=\"line\"/>\n      <point x=\"236\" y=\"1221\" type=\"line\"/>\n      <point x=\"189\" y=\"959\" type=\"line\"/>\n      <point x=\"878\" y=\"727\" type=\"line\"/>\n      <point x=\"874\" y=\"709\" type=\"line\"/>\n      <point x=\"104\" y=\"476\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"496\" y=\"477\" type=\"line\"/>\n      <point x=\"2002\" y=\"825\" type=\"line\"/>\n      <point x=\"2049\" y=\"1093\" type=\"line\"/>\n      <point x=\"668\" y=\"1451\" type=\"line\"/>\n      <point x=\"620\" y=\"1179\" type=\"line\"/>\n      <point x=\"1679\" y=\"975\" type=\"line\"/>\n      <point x=\"1675\" y=\"957\" type=\"line\"/>\n      <point x=\"545\" y=\"746\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"432\" y=\"117\" type=\"line\"/>\n      <point x=\"1876\" y=\"117\" type=\"line\"/>\n      <point x=\"1920\" y=\"367\" type=\"line\"/>\n      <point x=\"476\" y=\"367\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-54\" y=\"333\" type=\"line\"/>\n      <point x=\"562\" y=\"333\" type=\"line\"/>\n      <point x=\"866\" y=\"583\" type=\"line\"/>\n      <point x=\"-10\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"34\" y=\"835\" type=\"line\"/>\n      <point x=\"887\" y=\"835\" type=\"line\"/>\n      <point x=\"714\" y=\"1085\" type=\"line\"/>\n      <point x=\"78\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"139\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater.alt\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"212\" y=\"2\" type=\"line\"/>\n      <point x=\"864\" y=\"583\" type=\"line\"/>\n      <point x=\"535\" y=\"583\" type=\"line\"/>\n      <point x=\"66\" y=\"169\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"536\" y=\"333\" type=\"line\"/>\n      <point x=\"1185\" y=\"333\" type=\"line\"/>\n      <point x=\"1229\" y=\"583\" type=\"line\"/>\n      <point x=\"580\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"624\" y=\"835\" type=\"line\"/>\n      <point x=\"925\" y=\"835\" type=\"line\"/>\n      <point x=\"467\" y=\"1426\" type=\"line\"/>\n      <point x=\"275\" y=\"1276\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"624\" y=\"835\" type=\"line\"/>\n      <point x=\"1273\" y=\"835\" type=\"line\"/>\n      <point x=\"1318\" y=\"1085\" type=\"line\"/>\n      <point x=\"668\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"217\" y=\"167\" type=\"line\"/>\n      <point x=\"1246\" y=\"575\" type=\"line\"/>\n      <point x=\"1293\" y=\"843\" type=\"line\"/>\n      <point x=\"409\" y=\"1251\" type=\"line\"/>\n      <point x=\"362\" y=\"989\" type=\"line\"/>\n      <point x=\"980\" y=\"727\" type=\"line\"/>\n      <point x=\"976\" y=\"709\" type=\"line\"/>\n      <point x=\"266\" y=\"446\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1140\" y=\"167\" type=\"line\"/>\n      <point x=\"2169\" y=\"575\" type=\"line\"/>\n      <point x=\"2216\" y=\"843\" type=\"line\"/>\n      <point x=\"1332\" y=\"1251\" type=\"line\"/>\n      <point x=\"1285\" y=\"989\" type=\"line\"/>\n      <point x=\"1903\" y=\"727\" type=\"line\"/>\n      <point x=\"1899\" y=\"709\" type=\"line\"/>\n      <point x=\"1189\" y=\"446\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"1140\" yOffset=\"-3\"/>\n    <component base=\"greater\" xOffset=\"26\"/>\n    <component base=\"equal\" xOffset=\"2344\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-54\" y=\"333\" type=\"line\"/>\n      <point x=\"1062\" y=\"333\" type=\"line\"/>\n      <point x=\"1366\" y=\"583\" type=\"line\"/>\n      <point x=\"-10\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"34\" y=\"835\" type=\"line\"/>\n      <point x=\"1387\" y=\"835\" type=\"line\"/>\n      <point x=\"1214\" y=\"1085\" type=\"line\"/>\n      <point x=\"78\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"559\"/>\n    <component base=\"greater.alt\" xOffset=\"1179\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1260\" y=\"2\" type=\"line\"/>\n      <point x=\"1912\" y=\"583\" type=\"line\"/>\n      <point x=\"1583\" y=\"583\" type=\"line\"/>\n      <point x=\"1114\" y=\"169\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-84\" y=\"333\" type=\"line\"/>\n      <point x=\"762\" y=\"333\" type=\"line\"/>\n      <point x=\"1066\" y=\"583\" type=\"line\"/>\n      <point x=\"-40\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"4\" y=\"835\" type=\"line\"/>\n      <point x=\"1087\" y=\"835\" type=\"line\"/>\n      <point x=\"914\" y=\"1085\" type=\"line\"/>\n      <point x=\"48\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1584\" y=\"333\" type=\"line\"/>\n      <point x=\"2415\" y=\"333\" type=\"line\"/>\n      <point x=\"2459\" y=\"583\" type=\"line\"/>\n      <point x=\"1628\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1672\" y=\"835\" type=\"line\"/>\n      <point x=\"1973\" y=\"835\" type=\"line\"/>\n      <point x=\"1515\" y=\"1426\" type=\"line\"/>\n      <point x=\"1323\" y=\"1276\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1672\" y=\"835\" type=\"line\"/>\n      <point x=\"2503\" y=\"835\" type=\"line\"/>\n      <point x=\"2548\" y=\"1085\" type=\"line\"/>\n      <point x=\"1716\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"357\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"2\" type=\"line\"/>\n      <point x=\"1702\" y=\"583\" type=\"line\"/>\n      <point x=\"1373\" y=\"583\" type=\"line\"/>\n      <point x=\"904\" y=\"169\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1374\" y=\"333\" type=\"line\"/>\n      <point x=\"2385\" y=\"333\" type=\"line\"/>\n      <point x=\"2429\" y=\"583\" type=\"line\"/>\n      <point x=\"1418\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1462\" y=\"835\" type=\"line\"/>\n      <point x=\"1763\" y=\"835\" type=\"line\"/>\n      <point x=\"1305\" y=\"1426\" type=\"line\"/>\n      <point x=\"1113\" y=\"1276\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1462\" y=\"835\" type=\"line\"/>\n      <point x=\"2473\" y=\"835\" type=\"line\"/>\n      <point x=\"2518\" y=\"1085\" type=\"line\"/>\n      <point x=\"1506\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"147\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2257\"/>\n    <component base=\"greater\" xOffset=\"134\"/>\n    <component base=\"greater\" xOffset=\"1196\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-10\" y=\"584\" type=\"line\"/>\n      <point x=\"1357\" y=\"584\" type=\"line\"/>\n      <point x=\"1401\" y=\"834\" type=\"line\"/>\n      <point x=\"34\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"539\"/>\n    <component base=\"greater.alt\" xOffset=\"1179\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-40\" y=\"584\" type=\"line\"/>\n      <point x=\"1097\" y=\"584\" type=\"line\"/>\n      <point x=\"1141\" y=\"834\" type=\"line\"/>\n      <point x=\"4\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1621\" y=\"584\" type=\"line\"/>\n      <point x=\"2458\" y=\"584\" type=\"line\"/>\n      <point x=\"2502\" y=\"834\" type=\"line\"/>\n      <point x=\"1665\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"231\"/>\n    <component base=\"greater.alt\" xOffset=\"822\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1603\" y=\"584\" type=\"line\"/>\n      <point x=\"2430\" y=\"584\" type=\"line\"/>\n      <point x=\"2474\" y=\"834\" type=\"line\"/>\n      <point x=\"1647\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"147\"/>\n    <component base=\"greater.alt\" xOffset=\"787\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-10\" y=\"584\" type=\"line\"/>\n      <point x=\"957\" y=\"584\" type=\"line\"/>\n      <point x=\"1001\" y=\"834\" type=\"line\"/>\n      <point x=\"34\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"139\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hyphen_middle.seq\"/>\n    <component base=\"greater.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"763\" y=\"584\" type=\"line\"/>\n      <point x=\"1230\" y=\"584\" type=\"line\"/>\n      <point x=\"1274\" y=\"834\" type=\"line\"/>\n      <point x=\"807\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"-73\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/greaterequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greaterequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2265\"/>\n  <outline>\n    <contour>\n      <point x=\"65\" y=\"277\" type=\"line\"/>\n      <point x=\"1118\" y=\"625\" type=\"line\"/>\n      <point x=\"1165\" y=\"893\" type=\"line\"/>\n      <point x=\"236\" y=\"1241\" type=\"line\"/>\n      <point x=\"189\" y=\"979\" type=\"line\"/>\n      <point x=\"852\" y=\"777\" type=\"line\"/>\n      <point x=\"848\" y=\"759\" type=\"line\"/>\n      <point x=\"114\" y=\"556\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"29\" y=\"70\" type=\"line\"/>\n      <point x=\"1019\" y=\"70\" type=\"line\"/>\n      <point x=\"1062\" y=\"315\" type=\"line\"/>\n      <point x=\"72\" y=\"315\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/groupS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"groupSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241D\"/>\n  <outline>\n    <component base=\"G.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>G.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/gstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E5\"/>\n  <outline>\n    <contour>\n      <point x=\"-81\" y=\"-173\" type=\"line\"/>\n      <point x=\"1031\" y=\"-173\" type=\"line\"/>\n      <point x=\"1051\" y=\"-65\" type=\"line\"/>\n      <point x=\"-61\" y=\"-65\" type=\"line\"/>\n    </contour>\n    <component base=\"g\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/guarani.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guarani\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B2\"/>\n  <outline>\n    <contour>\n      <point x=\"359\" y=\"-320\" type=\"line\"/>\n      <point x=\"623\" y=\"-320\" type=\"line\"/>\n      <point x=\"691\" y=\"64\" type=\"line\"/>\n      <point x=\"624\" y=\"139\" type=\"line\"/>\n      <point x=\"701\" y=\"576\" type=\"line\"/>\n      <point x=\"794\" y=\"648\" type=\"line\"/>\n      <point x=\"986\" y=\"1740\" type=\"line\"/>\n      <point x=\"722\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"G\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/guillemetleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guillemetleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AB\"/>\n  <outline>\n    <component base=\"guilsinglleft\" xOffset=\"-250\"/>\n    <component base=\"guilsinglleft\" xOffset=\"285\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/guillemetright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guillemetright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BB\"/>\n  <guideline x=\"500\" y=\"519\" angle=\"0\"/>\n  <outline>\n    <component base=\"guilsinglright\" xOffset=\"-285\"/>\n    <component base=\"guilsinglright\" xOffset=\"250\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/guilsinglleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guilsinglleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2039\"/>\n  <outline>\n    <contour>\n      <point x=\"609\" y=\"13\" type=\"line\"/>\n      <point x=\"805\" y=\"172\" type=\"line\"/>\n      <point x=\"543\" y=\"501\" type=\"line\"/>\n      <point x=\"546\" y=\"519\" type=\"line\"/>\n      <point x=\"927\" y=\"855\" type=\"line\"/>\n      <point x=\"776\" y=\"1035\" type=\"line\"/>\n      <point x=\"271\" y=\"590\" type=\"line\"/>\n      <point x=\"250\" y=\"468\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/guilsinglright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guilsinglright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203A\"/>\n  <outline>\n    <contour>\n      <point x=\"422\" y=\"13\" type=\"line\"/>\n      <point x=\"927\" y=\"458\" type=\"line\"/>\n      <point x=\"948\" y=\"580\" type=\"line\"/>\n      <point x=\"589\" y=\"1035\" type=\"line\"/>\n      <point x=\"393\" y=\"876\" type=\"line\"/>\n      <point x=\"655\" y=\"547\" type=\"line\"/>\n      <point x=\"652\" y=\"529\" type=\"line\"/>\n      <point x=\"271\" y=\"193\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/h.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"h.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"689\" y=\"784\" name=\"center\"/>\n  <anchor x=\"443\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"54\" y=\"0\" type=\"line\"/>\n      <point x=\"329\" y=\"0\" type=\"line\"/>\n      <point x=\"580\" y=\"1420\" type=\"line\"/>\n      <point x=\"305\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"679\" y=\"0\" type=\"line\"/>\n      <point x=\"954\" y=\"0\" type=\"line\"/>\n      <point x=\"1068\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"931\"/>\n      <point x=\"1025\" y=\"1080\"/>\n      <point x=\"800\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1080\"/>\n      <point x=\"559\" y=\"1003\"/>\n      <point x=\"517\" y=\"868\" type=\"curve\"/>\n      <point x=\"467\" y=\"868\" type=\"line\"/>\n      <point x=\"419\" y=\"511\" type=\"line\"/>\n      <point x=\"458\" y=\"745\"/>\n      <point x=\"561\" y=\"823\"/>\n      <point x=\"677\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"823\"/>\n      <point x=\"813\" y=\"760\"/>\n      <point x=\"792\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/h.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"h\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0068\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"689\" y=\"784\" name=\"center\"/>\n  <anchor x=\"385\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"679\" y=\"0\" type=\"line\"/>\n      <point x=\"954\" y=\"0\" type=\"line\"/>\n      <point x=\"1068\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"931\"/>\n      <point x=\"1025\" y=\"1080\"/>\n      <point x=\"800\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1080\"/>\n      <point x=\"559\" y=\"1003\"/>\n      <point x=\"517\" y=\"868\" type=\"curve\"/>\n      <point x=\"467\" y=\"868\" type=\"line\"/>\n      <point x=\"419\" y=\"511\" type=\"line\"/>\n      <point x=\"458\" y=\"745\"/>\n      <point x=\"561\" y=\"823\"/>\n      <point x=\"677\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"823\"/>\n      <point x=\"813\" y=\"760\"/>\n      <point x=\"792\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"55\" y=\"0\" type=\"line\"/>\n      <point x=\"330\" y=\"0\" type=\"line\"/>\n      <point x=\"527\" y=\"1117\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"1400\"/>\n      <point x=\"481\" y=\"1521\"/>\n      <point x=\"205\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"154\" y=\"1521\"/>\n      <point x=\"103\" y=\"1517\"/>\n      <point x=\"53\" y=\"1505\" type=\"curve\"/>\n      <point x=\"82\" y=\"1253\" type=\"line\"/>\n      <point x=\"108\" y=\"1261\"/>\n      <point x=\"135\" y=\"1264\"/>\n      <point x=\"161\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"1264\"/>\n      <point x=\"268\" y=\"1210\"/>\n      <point x=\"246\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0445\"/>\n  <outline>\n    <component base=\"x\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hadescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B3\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"188\" y=\"-51\" type=\"line\"/>\n      <point x=\"632\" y=\"418\" type=\"line\"/>\n      <point x=\"1167\" y=\"920\" type=\"line\"/>\n      <point x=\"981\" y=\"1110\" type=\"line\"/>\n      <point x=\"572\" y=\"650\" type=\"line\"/>\n      <point x=\"12\" y=\"139\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"962\" y=\"-319\" type=\"line\"/>\n      <point x=\"1003\" y=\"-167\"/>\n      <point x=\"1046\" y=\"23\"/>\n      <point x=\"1064\" y=\"165\" type=\"curve\"/>\n      <point x=\"987\" y=\"263\" type=\"line\"/>\n      <point x=\"837\" y=\"175\" type=\"line\"/>\n      <point x=\"810\" y=\"46\" type=\"line\"/>\n      <point x=\"792\" y=\"-42\"/>\n      <point x=\"754\" y=\"-174\"/>\n      <point x=\"722\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"830\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"-20\"/>\n      <point x=\"937\" y=\"-10\"/>\n      <point x=\"991\" y=\"12\" type=\"curve\"/>\n      <point x=\"1027\" y=\"134\" type=\"line\"/>\n      <point x=\"987\" y=\"263\" type=\"line\"/>\n      <point x=\"948\" y=\"245\"/>\n      <point x=\"916\" y=\"237\"/>\n      <point x=\"879\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"237\"/>\n      <point x=\"766\" y=\"277\"/>\n      <point x=\"747\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"668\" y=\"771\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"625\" y=\"987\"/>\n      <point x=\"540\" y=\"1080\"/>\n      <point x=\"371\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"1080\"/>\n      <point x=\"238\" y=\"1064\"/>\n      <point x=\"146\" y=\"1026\" type=\"curve\"/>\n      <point x=\"211\" y=\"801\" type=\"line\"/>\n      <point x=\"250\" y=\"817\"/>\n      <point x=\"283\" y=\"823\"/>\n      <point x=\"322\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"823\"/>\n      <point x=\"408\" y=\"782\"/>\n      <point x=\"429\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"289\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"559\" y=\"74\"/>\n      <point x=\"647\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hardsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hardsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"597\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"-20\"/>\n      <point x=\"1123\" y=\"217\"/>\n      <point x=\"1123\" y=\"449\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1123\" y=\"635\"/>\n      <point x=\"974\" y=\"740\"/>\n      <point x=\"787\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"740\"/>\n      <point x=\"601\" y=\"711\"/>\n      <point x=\"549\" y=\"680\" type=\"curve\"/>\n      <point x=\"491\" y=\"759\" type=\"line\"/>\n      <point x=\"429\" y=\"467\" type=\"line\"/>\n      <point x=\"554\" y=\"524\"/>\n      <point x=\"636\" y=\"545\"/>\n      <point x=\"697\" y=\"545\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"545\"/>\n      <point x=\"855\" y=\"509\"/>\n      <point x=\"855\" y=\"421\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"335\"/>\n      <point x=\"788\" y=\"221\"/>\n      <point x=\"621\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"511\" y=\"221\"/>\n      <point x=\"442\" y=\"261\"/>\n      <point x=\"442\" y=\"349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"410\"/>\n      <point x=\"475\" y=\"507\"/>\n      <point x=\"528\" y=\"626\" type=\"curve\"/>\n      <point x=\"577\" y=\"721\"/>\n      <point x=\"637\" y=\"815\"/>\n      <point x=\"707\" y=\"910\" type=\"curve\"/>\n      <point x=\"657\" y=\"1062\" type=\"line\"/>\n      <point x=\"91\" y=\"1060\" type=\"line\"/>\n      <point x=\"51\" y=\"813\" type=\"line\"/>\n      <point x=\"550\" y=\"812\" type=\"line\"/>\n      <point x=\"403\" y=\"838\" type=\"line\"/>\n      <point x=\"285\" y=\"681\"/>\n      <point x=\"175\" y=\"499\"/>\n      <point x=\"175\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"147\"/>\n      <point x=\"306\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0127\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"689\" y=\"784\" name=\"center\"/>\n  <anchor x=\"457\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"679\" y=\"0\" type=\"line\"/>\n      <point x=\"954\" y=\"0\" type=\"line\"/>\n      <point x=\"1068\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"931\"/>\n      <point x=\"1025\" y=\"1080\"/>\n      <point x=\"800\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1080\"/>\n      <point x=\"559\" y=\"1003\"/>\n      <point x=\"517\" y=\"868\" type=\"curve\"/>\n      <point x=\"467\" y=\"868\" type=\"line\"/>\n      <point x=\"419\" y=\"511\" type=\"line\"/>\n      <point x=\"458\" y=\"745\"/>\n      <point x=\"561\" y=\"823\"/>\n      <point x=\"677\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"823\"/>\n      <point x=\"813\" y=\"760\"/>\n      <point x=\"792\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"0\" type=\"line\"/>\n      <point x=\"329\" y=\"0\" type=\"line\"/>\n      <point x=\"594\" y=\"1500\" type=\"line\"/>\n      <point x=\"320\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"120\" y=\"1185\" type=\"line\"/>\n      <point x=\"853\" y=\"1185\" type=\"line\"/>\n      <point x=\"893\" y=\"1409\" type=\"line\"/>\n      <point x=\"160\" y=\"1409\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021F\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-372\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0125\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-372\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E25\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/heartB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heartBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2665\"/>\n  <guideline x=\"637\" y=\"60\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1280\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1260\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"80\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"40\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"510\" y=\"60\" type=\"curve\"/>\n      <point x=\"927\" y=\"260\"/>\n      <point x=\"1237\" y=\"658\"/>\n      <point x=\"1237\" y=\"995\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1237\" y=\"1162\"/>\n      <point x=\"1148\" y=\"1260\"/>\n      <point x=\"996\" y=\"1260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"1260\"/>\n      <point x=\"739\" y=\"1152\"/>\n      <point x=\"685\" y=\"969\" type=\"curve\"/>\n      <point x=\"668\" y=\"969\" type=\"line\"/>\n      <point x=\"678\" y=\"1152\"/>\n      <point x=\"600\" y=\"1260\"/>\n      <point x=\"456\" y=\"1260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"1260\"/>\n      <point x=\"92\" y=\"1072\"/>\n      <point x=\"92\" y=\"755\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"92\" y=\"481\"/>\n      <point x=\"247\" y=\"214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyH_orizontalF_ill.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"heavyHorizontalFill\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"heavyHorizontalFill.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyleftpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyleftpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2770\"/>\n  <outline>\n    <contour>\n      <point x=\"412\" y=\"0\" type=\"line\"/>\n      <point x=\"860\" y=\"0\" type=\"line\"/>\n      <point x=\"717\" y=\"701\" type=\"line\"/>\n      <point x=\"721\" y=\"719\" type=\"line\"/>\n      <point x=\"1110\" y=\"1420\" type=\"line\"/>\n      <point x=\"632\" y=\"1420\" type=\"line\"/>\n      <point x=\"269\" y=\"719\" type=\"line\"/>\n      <point x=\"265\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyleftpointinganglequotationmarkornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276E\"/>\n  <outline>\n    <contour>\n      <point x=\"507\" y=\"0\" type=\"line\"/>\n      <point x=\"985\" y=\"0\" type=\"line\"/>\n      <point x=\"652\" y=\"701\" type=\"line\"/>\n      <point x=\"656\" y=\"719\" type=\"line\"/>\n      <point x=\"1235\" y=\"1420\" type=\"line\"/>\n      <point x=\"717\" y=\"1420\" type=\"line\"/>\n      <point x=\"174\" y=\"719\" type=\"line\"/>\n      <point x=\"170\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyrightpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyrightpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2771\"/>\n  <outline>\n    <contour>\n      <point x=\"153\" y=\"0\" type=\"line\"/>\n      <point x=\"631\" y=\"0\" type=\"line\"/>\n      <point x=\"994\" y=\"701\" type=\"line\"/>\n      <point x=\"998\" y=\"719\" type=\"line\"/>\n      <point x=\"851\" y=\"1420\" type=\"line\"/>\n      <point x=\"403\" y=\"1420\" type=\"line\"/>\n      <point x=\"546\" y=\"719\" type=\"line\"/>\n      <point x=\"542\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyrightpointinganglequotationmarkornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276F\"/>\n  <outline>\n    <contour>\n      <point x=\"28\" y=\"0\" type=\"line\"/>\n      <point x=\"546\" y=\"0\" type=\"line\"/>\n      <point x=\"1089\" y=\"701\" type=\"line\"/>\n      <point x=\"1093\" y=\"719\" type=\"line\"/>\n      <point x=\"756\" y=\"1420\" type=\"line\"/>\n      <point x=\"278\" y=\"1420\" type=\"line\"/>\n      <point x=\"611\" y=\"719\" type=\"line\"/>\n      <point x=\"607\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hookabovecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hookabovecomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"_viet_top\"/>\n  <anchor x=\"831\" y=\"1840\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"684\" y=\"1610\" type=\"curve\"/>\n      <point x=\"733\" y=\"1487\" type=\"line\"/>\n      <point x=\"967\" y=\"1534\"/>\n      <point x=\"1032\" y=\"1647\"/>\n      <point x=\"1032\" y=\"1731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1032\" y=\"1844\"/>\n      <point x=\"931\" y=\"1912\"/>\n      <point x=\"760\" y=\"1912\" type=\"curve\"/>\n      <point x=\"713\" y=\"1728\" type=\"line\"/>\n      <point x=\"763\" y=\"1728\"/>\n      <point x=\"793\" y=\"1713\"/>\n      <point x=\"793\" y=\"1686\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"1662\"/>\n      <point x=\"777\" y=\"1644\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"1695\" type=\"line\"/>\n      <point x=\"603\" y=\"1715\"/>\n      <point x=\"662\" y=\"1728\"/>\n      <point x=\"713\" y=\"1728\" type=\"curve\"/>\n      <point x=\"760\" y=\"1912\" type=\"line\"/>\n      <point x=\"656\" y=\"1912\"/>\n      <point x=\"568\" y=\"1892\"/>\n      <point x=\"497\" y=\"1857\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hookabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hookabovecomb\" format=\"2\">\n  <unicode hex=\"0309\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"733\" y=\"1100\" name=\"_viet_top\"/>\n  <anchor x=\"791\" y=\"1618\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"634\" y=\"1350\" type=\"curve\"/>\n      <point x=\"753\" y=\"1197\" type=\"line\"/>\n      <point x=\"940\" y=\"1312\"/>\n      <point x=\"992\" y=\"1433\"/>\n      <point x=\"992\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"1628\"/>\n      <point x=\"913\" y=\"1692\"/>\n      <point x=\"780\" y=\"1692\" type=\"curve\"/>\n      <point x=\"703\" y=\"1508\" type=\"line\"/>\n      <point x=\"734\" y=\"1508\"/>\n      <point x=\"753\" y=\"1493\"/>\n      <point x=\"753\" y=\"1466\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"1444\"/>\n      <point x=\"735\" y=\"1402\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"1485\" type=\"line\"/>\n      <point x=\"628\" y=\"1499\"/>\n      <point x=\"668\" y=\"1508\"/>\n      <point x=\"703\" y=\"1508\" type=\"curve\"/>\n      <point x=\"780\" y=\"1692\" type=\"line\"/>\n      <point x=\"686\" y=\"1692\"/>\n      <point x=\"598\" y=\"1668\"/>\n      <point x=\"543\" y=\"1627\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalB_lackH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalBlackHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B23\"/>\n  <note>\nuni2B23\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"190\" type=\"line\"/>\n      <point x=\"900\" y=\"190\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"900\" y=\"1230\" type=\"line\"/>\n      <point x=\"300\" y=\"1230\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A4\"/>\n  <note>\nuni25A4\n</note>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"743\" type=\"line\"/>\n      <point x=\"1051\" y=\"743\" type=\"line\"/>\n      <point x=\"1051\" y=\"927\" type=\"line\"/>\n      <point x=\"149\" y=\"927\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"493\" type=\"line\"/>\n      <point x=\"1051\" y=\"493\" type=\"line\"/>\n      <point x=\"1051\" y=\"677\" type=\"line\"/>\n      <point x=\"149\" y=\"677\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB76\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-2.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB77\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-3.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB78\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-4.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB79\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-5.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-6.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-7.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalT_abulationC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalTabulationControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2409\"/>\n  <outline>\n    <component base=\"H.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>H.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalTabulationControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"183\" type=\"line\"/>\n      <point x=\"1130\" y=\"698\" type=\"line\"/>\n      <point x=\"1130\" y=\"720\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"985\" type=\"line\"/>\n      <point x=\"623\" y=\"859\" type=\"line\"/>\n      <point x=\"623\" y=\"559\" type=\"line\"/>\n      <point x=\"75\" y=\"432\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"882\" y=\"587\" type=\"line\"/>\n      <point x=\"882\" y=\"830\" type=\"line\"/>\n      <point x=\"75\" y=\"830\" type=\"line\"/>\n      <point x=\"75\" y=\"587\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2015\"/>\n  <outline>\n    <component base=\"emdash\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontallineextension.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontallineextension\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"23AF\"/>\n  <outline>\n    <component base=\"boxLightHorizontal\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horncomb.case\" format=\"2\">\n  <anchor x=\"925\" y=\"1420\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"557\" y=\"1188\" type=\"line\"/>\n      <point x=\"619\" y=\"1198\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"1239\"/>\n      <point x=\"1016\" y=\"1389\"/>\n      <point x=\"1063\" y=\"1653\" type=\"curve\"/>\n      <point x=\"799\" y=\"1653\" type=\"line\"/>\n      <point x=\"774\" y=\"1508\"/>\n      <point x=\"710\" y=\"1422\"/>\n      <point x=\"605\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"1395\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/horncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horncomb\" format=\"2\">\n  <unicode hex=\"031B\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"442\" y=\"865\" type=\"line\"/>\n      <point x=\"504\" y=\"875\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"920\"/>\n      <point x=\"944\" y=\"1071\"/>\n      <point x=\"991\" y=\"1343\" type=\"curve\"/>\n      <point x=\"711\" y=\"1343\" type=\"line\"/>\n      <point x=\"685\" y=\"1184\"/>\n      <point x=\"609\" y=\"1091\"/>\n      <point x=\"478\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/house.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"house\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2302\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"706\" type=\"line\"/>\n      <point x=\"600\" y=\"1142\" type=\"line\"/>\n      <point x=\"100\" y=\"706\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"340\" y=\"240\" type=\"line\"/>\n      <point x=\"340\" y=\"596.849\" type=\"line\"/>\n      <point x=\"598.398\" y=\"822.172\" type=\"line\"/>\n      <point x=\"860\" y=\"598\" type=\"line\"/>\n      <point x=\"860\" y=\"240\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hryvnia.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hryvnia\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B4\"/>\n  <outline>\n    <contour>\n      <point x=\"712\" y=\"930\" type=\"curve\"/>\n      <point x=\"1010\" y=\"901\" type=\"line\"/>\n      <point x=\"1010\" y=\"989\" type=\"line\"/>\n      <point x=\"1120\" y=\"1054\"/>\n      <point x=\"1172\" y=\"1128\"/>\n      <point x=\"1172\" y=\"1219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1172\" y=\"1360\"/>\n      <point x=\"1041\" y=\"1440\"/>\n      <point x=\"805\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"610\" y=\"1440\"/>\n      <point x=\"407\" y=\"1375\"/>\n      <point x=\"248\" y=\"1261\" type=\"curve\"/>\n      <point x=\"350\" y=\"1055\" type=\"line\"/>\n      <point x=\"485\" y=\"1139\"/>\n      <point x=\"628\" y=\"1188\"/>\n      <point x=\"741\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"1188\"/>\n      <point x=\"871\" y=\"1155\"/>\n      <point x=\"871\" y=\"1095\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"1015\"/>\n      <point x=\"788\" y=\"962\"/>\n    </contour>\n    <contour>\n      <point x=\"512\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"-20\"/>\n      <point x=\"865\" y=\"8\"/>\n      <point x=\"1003\" y=\"58\" type=\"curve\"/>\n      <point x=\"1024\" y=\"328\" type=\"line\"/>\n      <point x=\"859\" y=\"267\"/>\n      <point x=\"690\" y=\"232\"/>\n      <point x=\"560\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"232\"/>\n      <point x=\"367\" y=\"261\"/>\n      <point x=\"367\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"382\"/>\n      <point x=\"436\" y=\"429\"/>\n      <point x=\"500\" y=\"460\" type=\"curve\"/>\n      <point x=\"230\" y=\"480\" type=\"line\"/>\n      <point x=\"230\" y=\"397\" type=\"line\"/>\n      <point x=\"143\" y=\"360\"/>\n      <point x=\"66\" y=\"285\"/>\n      <point x=\"66\" y=\"180\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"66\" y=\"53\"/>\n      <point x=\"225\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"34\" y=\"428\" type=\"line\"/>\n      <point x=\"1128\" y=\"428\" type=\"line\"/>\n      <point x=\"1166\" y=\"642\" type=\"line\"/>\n      <point x=\"72\" y=\"642\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"312\" y=\"515\" type=\"line\"/>\n      <point x=\"502\" y=\"515\" type=\"line\"/>\n      <point x=\"917\" y=\"878\" type=\"line\"/>\n      <point x=\"728\" y=\"878\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"91\" y=\"748\" type=\"line\"/>\n      <point x=\"1185\" y=\"748\" type=\"line\"/>\n      <point x=\"1222\" y=\"962\" type=\"line\"/>\n      <point x=\"128\" y=\"962\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DD\"/>\n  <outline>\n    <component base=\"hungarumlautcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hungarumlautcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlautcomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"818\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"424\" y=\"1580\" type=\"line\"/>\n      <point x=\"716\" y=\"1580\" type=\"line\"/>\n      <point x=\"913\" y=\"1831\" type=\"line\"/>\n      <point x=\"579\" y=\"1831\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"884\" y=\"1580\" type=\"line\"/>\n      <point x=\"1156\" y=\"1580\" type=\"line\"/>\n      <point x=\"1373\" y=\"1831\" type=\"line\"/>\n      <point x=\"1019\" y=\"1831\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hungarumlautcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlautcomb\" format=\"2\">\n  <unicode hex=\"030B\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"723\" y=\"1248\" type=\"line\"/>\n      <point x=\"975\" y=\"1248\" type=\"line\"/>\n      <point x=\"1232\" y=\"1628\" type=\"line\"/>\n      <point x=\"950\" y=\"1628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"363\" y=\"1248\" type=\"line\"/>\n      <point x=\"605\" y=\"1248\" type=\"line\"/>\n      <point x=\"852\" y=\"1628\" type=\"line\"/>\n      <point x=\"570\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002D\"/>\n  <outline>\n    <component base=\"minus\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1918\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2123\" y=\"488\"/>\n      <point x=\"2228\" y=\"587\"/>\n      <point x=\"2269\" y=\"818\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2295\" y=\"963\" type=\"line\"/>\n      <point x=\"2032\" y=\"963\" type=\"line\"/>\n      <point x=\"2013\" y=\"858\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2002\" y=\"798\"/>\n      <point x=\"1973\" y=\"772\"/>\n      <point x=\"1913\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1846\" y=\"772\"/>\n      <point x=\"1792\" y=\"808\"/>\n      <point x=\"1734\" y=\"852\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1655\" y=\"912\"/>\n      <point x=\"1577\" y=\"951\"/>\n      <point x=\"1473\" y=\"951\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1246\" y=\"951\"/>\n      <point x=\"1133\" y=\"859\"/>\n      <point x=\"1095\" y=\"644\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"599\" type=\"line\"/>\n      <point x=\"1353\" y=\"599\" type=\"line\"/>\n      <point x=\"1354\" y=\"604\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1363\" y=\"647\"/>\n      <point x=\"1399\" y=\"666\"/>\n      <point x=\"1478\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1547\" y=\"666\"/>\n      <point x=\"1592\" y=\"627\"/>\n      <point x=\"1660\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1735\" y=\"526\"/>\n      <point x=\"1817\" y=\"488\"/>\n    </contour>\n    <contour>\n      <point x=\"291\" y=\"592\" type=\"line\"/>\n      <point x=\"1351\" y=\"592\" type=\"line\"/>\n      <point x=\"1394\" y=\"834\" type=\"line\"/>\n      <point x=\"334\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-10\" y=\"584\" type=\"line\"/>\n      <point x=\"1127\" y=\"584\" type=\"line\"/>\n      <point x=\"1171\" y=\"834\" type=\"line\"/>\n      <point x=\"34\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1341\" y=\"588\" type=\"line\"/>\n      <point x=\"2131\" y=\"588\" type=\"line\"/>\n      <point x=\"2173\" y=\"830\" type=\"line\"/>\n      <point x=\"1383\" y=\"830\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"291\" y=\"588\" type=\"line\"/>\n      <point x=\"1081\" y=\"588\" type=\"line\"/>\n      <point x=\"1123\" y=\"830\" type=\"line\"/>\n      <point x=\"333\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2538\" y=\"588\" type=\"line\"/>\n      <point x=\"3331\" y=\"588\" type=\"line\"/>\n      <point x=\"3373\" y=\"830\" type=\"line\"/>\n      <point x=\"2580\" y=\"830\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"291\" y=\"588\" type=\"line\"/>\n      <point x=\"1078\" y=\"588\" type=\"line\"/>\n      <point x=\"1120\" y=\"830\" type=\"line\"/>\n      <point x=\"333\" y=\"830\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1408\" y=\"588\" type=\"line\"/>\n      <point x=\"2208\" y=\"588\" type=\"line\"/>\n      <point x=\"2250\" y=\"830\" type=\"line\"/>\n      <point x=\"1450\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-40\" y=\"584\" type=\"line\"/>\n      <point x=\"1260\" y=\"584\" type=\"line\"/>\n      <point x=\"1304\" y=\"834\" type=\"line\"/>\n      <point x=\"4\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"93\" y=\"584\" type=\"line\"/>\n      <point x=\"1230\" y=\"584\" type=\"line\"/>\n      <point x=\"1274\" y=\"834\" type=\"line\"/>\n      <point x=\"137\" y=\"834\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphentwo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphentwo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2010\"/>\n  <outline>\n    <component base=\"hyphen\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"i-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0456\"/>\n  <outline>\n    <component base=\"i\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"i\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0069\"/>\n  <guideline x=\"339\" y=\"0\" angle=\"80\"/>\n  <guideline x=\"614\" y=\"0\" angle=\"80\"/>\n  <guideline x=\"51\" y=\"0\" angle=\"80\"/>\n  <anchor x=\"488\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"738\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"1203\"/>\n      <point x=\"911\" y=\"1273\"/>\n      <point x=\"911\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"1479\"/>\n      <point x=\"841\" y=\"1549\"/>\n      <point x=\"738\" y=\"1549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"635\" y=\"1549\"/>\n      <point x=\"565\" y=\"1479\"/>\n      <point x=\"565\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"565\" y=\"1273\"/>\n      <point x=\"635\" y=\"1203\"/>\n    </contour>\n    <contour>\n      <point x=\"966\" y=\"292\" type=\"line\"/>\n      <point x=\"897\" y=\"252\"/>\n      <point x=\"855\" y=\"237\"/>\n      <point x=\"789\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"237\"/>\n      <point x=\"657\" y=\"276\"/>\n      <point x=\"662\" y=\"353\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"481\"/>\n      <point x=\"729\" y=\"576\"/>\n      <point x=\"760\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"953\"/>\n      <point x=\"703\" y=\"1080\"/>\n      <point x=\"410\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"1080\"/>\n      <point x=\"252\" y=\"1074\"/>\n      <point x=\"174\" y=\"1052\" type=\"curve\"/>\n      <point x=\"195\" y=\"800\" type=\"line\"/>\n      <point x=\"256\" y=\"816\"/>\n      <point x=\"317\" y=\"823\"/>\n      <point x=\"378\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"823\"/>\n      <point x=\"504\" y=\"783\"/>\n      <point x=\"484\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"590\"/>\n      <point x=\"392\" y=\"456\"/>\n      <point x=\"383\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"369\" y=\"95\"/>\n      <point x=\"494\" y=\"-20\"/>\n      <point x=\"750\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"-20\"/>\n      <point x=\"953\" y=\"17\"/>\n      <point x=\"1035\" y=\"64\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ia-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ia-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"636\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"302\"/>\n      <point x=\"721\" y=\"306\"/>\n      <point x=\"748\" y=\"313\" type=\"curve\"/>\n      <point x=\"790\" y=\"541\" type=\"line\"/>\n      <point x=\"726\" y=\"516\"/>\n      <point x=\"663\" y=\"517\"/>\n      <point x=\"624\" y=\"517\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"517\"/>\n      <point x=\"449\" y=\"561\"/>\n      <point x=\"449\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"679\"/>\n      <point x=\"462\" y=\"809\"/>\n      <point x=\"782\" y=\"809\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"809\" type=\"line\"/>\n      <point x=\"867\" y=\"1060\" type=\"line\"/>\n      <point x=\"850\" y=\"1060\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"1060\"/>\n      <point x=\"172\" y=\"806\"/>\n      <point x=\"172\" y=\"636\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"431\"/>\n      <point x=\"316\" y=\"302\"/>\n    </contour>\n    <contour>\n      <point x=\"139\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"-20\"/>\n      <point x=\"565\" y=\"233\"/>\n      <point x=\"625\" y=\"461\" type=\"curve\"/>\n      <point x=\"397\" y=\"529\" type=\"line\"/>\n      <point x=\"386\" y=\"374\"/>\n      <point x=\"237\" y=\"237\"/>\n      <point x=\"123\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"111\" y=\"237\"/>\n      <point x=\"80\" y=\"238\"/>\n      <point x=\"56\" y=\"246\" type=\"curve\"/>\n      <point x=\"17\" y=\"7\" type=\"line\"/>\n      <point x=\"51\" y=\"-9\"/>\n      <point x=\"85\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"675\" y=\"0\" type=\"line\"/>\n      <point x=\"950\" y=\"0\" type=\"line\"/>\n      <point x=\"1137\" y=\"1060\" type=\"line\"/>\n      <point x=\"862\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00ED\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ibreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ibreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012D\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/icircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"icircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EE\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/idieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EF\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/idotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECB\"/>\n  <outline>\n    <component base=\"i\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-19\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/idotless.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idotless\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0131\"/>\n  <anchor x=\"488\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"966\" y=\"292\" type=\"line\"/>\n      <point x=\"897\" y=\"252\"/>\n      <point x=\"855\" y=\"237\"/>\n      <point x=\"789\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"237\"/>\n      <point x=\"657\" y=\"276\"/>\n      <point x=\"662\" y=\"353\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"481\"/>\n      <point x=\"729\" y=\"576\"/>\n      <point x=\"760\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"953\"/>\n      <point x=\"703\" y=\"1080\"/>\n      <point x=\"410\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"1080\"/>\n      <point x=\"252\" y=\"1074\"/>\n      <point x=\"174\" y=\"1052\" type=\"curve\"/>\n      <point x=\"195\" y=\"800\" type=\"line\"/>\n      <point x=\"256\" y=\"816\"/>\n      <point x=\"317\" y=\"823\"/>\n      <point x=\"378\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"823\"/>\n      <point x=\"504\" y=\"783\"/>\n      <point x=\"484\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"590\"/>\n      <point x=\"392\" y=\"456\"/>\n      <point x=\"383\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"369\" y=\"95\"/>\n      <point x=\"494\" y=\"-20\"/>\n      <point x=\"750\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"-20\"/>\n      <point x=\"953\" y=\"17\"/>\n      <point x=\"1035\" y=\"64\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ie-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ie-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0435\"/>\n  <outline>\n    <component base=\"e\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iegrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iegrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0450\"/>\n  <outline>\n    <component base=\"ie-cy\"/>\n    <component base=\"gravecomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/igrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"igrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EC\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"gravecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ihookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ihookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC9\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ii-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ii-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0438\"/>\n  <outline>\n    <component base=\"u\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iigrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iigrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045D\"/>\n  <outline>\n    <component base=\"gravecomb\" xOffset=\"-10\"/>\n    <component base=\"ii-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iishort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iishort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0439\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"brevecomb-cy\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ij.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ij\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0133\"/>\n  <anchor x=\"448\" y=\"-329\" name=\"bottom\"/>\n  <anchor x=\"795\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"84\" y=\"-480\" type=\"line\"/>\n      <point x=\"274\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"-440\"/>\n      <point x=\"836\" y=\"-267\"/>\n      <point x=\"907\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"1060\" type=\"line\"/>\n      <point x=\"797\" y=\"1060\" type=\"line\"/>\n      <point x=\"627\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"591\" y=\"-99\"/>\n      <point x=\"525\" y=\"-190\"/>\n      <point x=\"291\" y=\"-209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"71\" y=\"-227\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"133\" y=\"0\" type=\"line\"/>\n      <point x=\"408\" y=\"0\" type=\"line\"/>\n      <point x=\"596\" y=\"1060\" type=\"line\"/>\n      <point x=\"321\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"503\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"1203\"/>\n      <point x=\"676\" y=\"1273\"/>\n      <point x=\"676\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"1479\"/>\n      <point x=\"606\" y=\"1549\"/>\n      <point x=\"503\" y=\"1549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1549\"/>\n      <point x=\"330\" y=\"1479\"/>\n      <point x=\"330\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"1273\"/>\n      <point x=\"400\" y=\"1203\"/>\n    </contour>\n    <contour>\n      <point x=\"978\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"1203\"/>\n      <point x=\"1151\" y=\"1273\"/>\n      <point x=\"1151\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1151\" y=\"1479\"/>\n      <point x=\"1081\" y=\"1549\"/>\n      <point x=\"978\" y=\"1549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"1549\"/>\n      <point x=\"805\" y=\"1479\"/>\n      <point x=\"805\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"1273\"/>\n      <point x=\"875\" y=\"1203\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ij_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ij_acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"84\" y=\"-480\" type=\"line\"/>\n      <point x=\"274\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"-440\"/>\n      <point x=\"836\" y=\"-267\"/>\n      <point x=\"907\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"1060\" type=\"line\"/>\n      <point x=\"797\" y=\"1060\" type=\"line\"/>\n      <point x=\"627\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"591\" y=\"-99\"/>\n      <point x=\"525\" y=\"-190\"/>\n      <point x=\"291\" y=\"-209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"71\" y=\"-227\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"133\" y=\"0\" type=\"line\"/>\n      <point x=\"408\" y=\"0\" type=\"line\"/>\n      <point x=\"596\" y=\"1060\" type=\"line\"/>\n      <point x=\"321\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <component base=\"acutecomb\" xOffset=\"239\"/>\n    <component base=\"acutecomb\" xOffset=\"-240\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/imacron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"imacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E3\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"macroncomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/imacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"imacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012B\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/increment.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"increment\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2206\"/>\n  <outline>\n    <component base=\"Delta\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/infinity.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"infinity\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221E\"/>\n  <outline>\n    <contour>\n      <point x=\"316\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"344\"/>\n      <point x=\"541\" y=\"397\"/>\n      <point x=\"633\" y=\"580\" type=\"curve\"/>\n      <point x=\"593\" y=\"580\" type=\"line\"/>\n      <point x=\"623\" y=\"416\"/>\n      <point x=\"689\" y=\"344\"/>\n      <point x=\"818\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1018\" y=\"344\"/>\n      <point x=\"1180\" y=\"553\"/>\n      <point x=\"1180\" y=\"811\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1180\" y=\"973\"/>\n      <point x=\"1093\" y=\"1070\"/>\n      <point x=\"947\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"1070\"/>\n      <point x=\"722\" y=\"1017\"/>\n      <point x=\"630\" y=\"833\" type=\"curve\"/>\n      <point x=\"670\" y=\"833\" type=\"line\"/>\n      <point x=\"640\" y=\"998\"/>\n      <point x=\"574\" y=\"1070\"/>\n      <point x=\"445\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"1070\"/>\n      <point x=\"83\" y=\"862\"/>\n      <point x=\"83\" y=\"606\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"83\" y=\"446\"/>\n      <point x=\"169\" y=\"344\"/>\n    </contour>\n    <contour>\n      <point x=\"425\" y=\"578\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"578\"/>\n      <point x=\"344\" y=\"614\"/>\n      <point x=\"344\" y=\"669\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"761\"/>\n      <point x=\"404\" y=\"838\"/>\n      <point x=\"474\" y=\"838\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"541\" y=\"838\"/>\n      <point x=\"562\" y=\"771\"/>\n      <point x=\"558\" y=\"670\" type=\"curve\"/>\n      <point x=\"580\" y=\"741\" type=\"line\"/>\n      <point x=\"544\" y=\"639\"/>\n      <point x=\"494\" y=\"578\"/>\n    </contour>\n    <contour>\n      <point x=\"788\" y=\"578\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"578\"/>\n      <point x=\"700\" y=\"646\"/>\n      <point x=\"703\" y=\"741\" type=\"curve\"/>\n      <point x=\"691\" y=\"700\" type=\"line\"/>\n      <point x=\"731\" y=\"783\"/>\n      <point x=\"766\" y=\"838\"/>\n      <point x=\"827\" y=\"838\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"838\"/>\n      <point x=\"918\" y=\"803\"/>\n      <point x=\"918\" y=\"746\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"654\"/>\n      <point x=\"859\" y=\"578\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/integral.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integral\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"222B\"/>\n  <outline>\n    <contour>\n      <point x=\"-36\" y=\"-477\" type=\"line\"/>\n      <point x=\"43\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"-423\"/>\n      <point x=\"588\" y=\"-300\"/>\n      <point x=\"657\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"1010\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"1137\"/>\n      <point x=\"914\" y=\"1188\"/>\n      <point x=\"1069\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1123\" y=\"1188\"/>\n      <point x=\"1177\" y=\"1184\"/>\n      <point x=\"1250\" y=\"1174\" type=\"curve\"/>\n      <point x=\"1313\" y=\"1420\" type=\"line\"/>\n      <point x=\"1242\" y=\"1431\"/>\n      <point x=\"1177\" y=\"1440\"/>\n      <point x=\"1096\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"1440\"/>\n      <point x=\"605\" y=\"1314\"/>\n      <point x=\"550\" y=\"1000\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"-132\"/>\n      <point x=\"278\" y=\"-196\"/>\n      <point x=\"97\" y=\"-215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-43\" y=\"-230\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/integralbt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integralbt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2321\"/>\n  <outline>\n    <contour>\n      <point x=\"111\" y=\"-477\" type=\"line\"/>\n      <point x=\"206\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"-433\"/>\n      <point x=\"733\" y=\"-284\"/>\n      <point x=\"733\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"2226\" type=\"line\"/>\n      <point x=\"467\" y=\"2226\" type=\"line\"/>\n      <point x=\"467\" y=\"88\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"-109\"/>\n      <point x=\"394\" y=\"-195\"/>\n      <point x=\"226\" y=\"-215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"101\" y=\"-230\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/integraltp.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integraltp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2320\"/>\n  <outline>\n    <contour>\n      <point x=\"467\" y=\"-750\" type=\"line\"/>\n      <point x=\"733\" y=\"-750\" type=\"line\"/>\n      <point x=\"733\" y=\"971\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"1115\"/>\n      <point x=\"788\" y=\"1188\"/>\n      <point x=\"898\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"1188\"/>\n      <point x=\"1028\" y=\"1184\"/>\n      <point x=\"1119\" y=\"1174\" type=\"curve\"/>\n      <point x=\"1141\" y=\"1420\" type=\"line\"/>\n      <point x=\"1061\" y=\"1434\"/>\n      <point x=\"990\" y=\"1440\"/>\n      <point x=\"904\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"1440\"/>\n      <point x=\"467\" y=\"1291\"/>\n      <point x=\"467\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/intersection.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"intersection\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2229\"/>\n  <outline>\n    <contour>\n      <point x=\"26\" y=\"0\" type=\"line\"/>\n      <point x=\"301\" y=\"0\" type=\"line\"/>\n      <point x=\"405\" y=\"590\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"746\"/>\n      <point x=\"514\" y=\"823\"/>\n      <point x=\"652\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"823\"/>\n      <point x=\"844\" y=\"746\"/>\n      <point x=\"817\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"0\" type=\"line\"/>\n      <point x=\"988\" y=\"0\" type=\"line\"/>\n      <point x=\"1092\" y=\"590\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1150\" y=\"918\"/>\n      <point x=\"1018\" y=\"1080\"/>\n      <point x=\"697\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"376\" y=\"1080\"/>\n      <point x=\"188\" y=\"918\"/>\n      <point x=\"130\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/inverseB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"inverseBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D8\"/>\n  <note>\ninvbullet\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"400\"/>\n      <point x=\"304\" y=\"518\"/>\n      <point x=\"304\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"874\"/>\n      <point x=\"422\" y=\"992\"/>\n      <point x=\"600\" y=\"992\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"992\"/>\n      <point x=\"896\" y=\"874\"/>\n      <point x=\"896\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"518\"/>\n      <point x=\"778\" y=\"400\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/inverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"inverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D9\"/>\n  <note>\ninvcircle\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"185\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"916\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"393\"/>\n      <point x=\"917\" y=\"519\"/>\n      <point x=\"917\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"901\"/>\n      <point x=\"791\" y=\"1027\"/>\n      <point x=\"600\" y=\"1027\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"1027\"/>\n      <point x=\"283\" y=\"901\"/>\n      <point x=\"283\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"519\"/>\n      <point x=\"409\" y=\"393\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/io-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"io-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0451\"/>\n  <outline>\n    <component base=\"ie-cy\"/>\n    <component base=\"dieresiscomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012F\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"591\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"-424\"/>\n      <point x=\"745\" y=\"-404\"/>\n      <point x=\"803\" y=\"-376\" type=\"curve\"/>\n      <point x=\"761\" y=\"-162\" type=\"line\"/>\n      <point x=\"722\" y=\"-176\"/>\n      <point x=\"684\" y=\"-185\"/>\n      <point x=\"648\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"602\" y=\"-185\"/>\n      <point x=\"579\" y=\"-169\"/>\n      <point x=\"579\" y=\"-138\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"579\" y=\"-80\"/>\n      <point x=\"679\" y=\"-52\"/>\n      <point x=\"851\" y=\"-10\" type=\"curve\"/>\n      <point x=\"827\" y=\"19\" type=\"line\"/>\n      <point x=\"586\" y=\"30\" type=\"line\"/>\n      <point x=\"586\" y=\"-25\" type=\"line\"/>\n      <point x=\"445\" y=\"-68\"/>\n      <point x=\"362\" y=\"-153\"/>\n      <point x=\"362\" y=\"-255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"-368\"/>\n      <point x=\"440\" y=\"-424\"/>\n    </contour>\n    <component base=\"i\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iota-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iota-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0269\"/>\n  <outline>\n    <component base=\"iota\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iota.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iota\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B9\"/>\n  <outline>\n    <component base=\"idotless\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iotadieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotadieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CA\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iotadieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotadieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0390\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"dieresistonos\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iotatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AF\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"tonos\" xOffset=\"-36\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/itilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"itilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0129\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iu-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"700\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"-20\"/>\n      <point x=\"1067\" y=\"111\"/>\n      <point x=\"1135\" y=\"495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1148\" y=\"569\"/>\n      <point x=\"1155\" y=\"641\"/>\n      <point x=\"1155\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1155\" y=\"922\"/>\n      <point x=\"1081\" y=\"1080\"/>\n      <point x=\"881\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"1080\"/>\n      <point x=\"530\" y=\"943\"/>\n      <point x=\"464\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"487\"/>\n      <point x=\"442\" y=\"409\"/>\n      <point x=\"442\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"134\"/>\n      <point x=\"506\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"447\" y=\"1060\" type=\"line\"/>\n      <point x=\"187\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"253\" y=\"406\" type=\"line\"/>\n      <point x=\"473\" y=\"406\" type=\"line\"/>\n      <point x=\"519\" y=\"655\" type=\"line\"/>\n      <point x=\"299\" y=\"655\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"707\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"663\" y=\"221\"/>\n      <point x=\"650\" y=\"276\"/>\n      <point x=\"650\" y=\"345\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"397\"/>\n      <point x=\"656\" y=\"458\"/>\n      <point x=\"665\" y=\"510\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"792\"/>\n      <point x=\"773\" y=\"839\"/>\n      <point x=\"824\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"839\"/>\n      <point x=\"879\" y=\"791\"/>\n      <point x=\"879\" y=\"728\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"672\"/>\n      <point x=\"870\" y=\"603\"/>\n      <point x=\"860\" y=\"546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"257\"/>\n      <point x=\"750\" y=\"221\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iu-cy.loclB_G_R_.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy.loclBGR.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"385\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1\" y=\"0\" type=\"line\"/>\n      <point x=\"261\" y=\"0\" type=\"line\"/>\n      <point x=\"521\" y=\"1420\" type=\"line\"/>\n      <point x=\"249\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"iu-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/iu-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"400\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"0\" type=\"line\"/>\n      <point x=\"261\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"1137\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"1379\"/>\n      <point x=\"444\" y=\"1521\"/>\n      <point x=\"193\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"1521\"/>\n      <point x=\"98\" y=\"1517\"/>\n      <point x=\"48\" y=\"1505\" type=\"curve\"/>\n      <point x=\"77\" y=\"1253\" type=\"line\"/>\n      <point x=\"95\" y=\"1259\"/>\n      <point x=\"129\" y=\"1264\"/>\n      <point x=\"147\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"1264\"/>\n      <point x=\"211\" y=\"1205\"/>\n      <point x=\"200\" y=\"1137\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"iu-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/j.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"j\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006A\"/>\n  <guideline x=\"552\" y=\"0\" angle=\"80\"/>\n  <guideline x=\"827\" y=\"0\" angle=\"80\"/>\n  <guideline x=\"111\" y=\"0\" angle=\"80\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"947\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"27\" y=\"-480\" type=\"line\"/>\n      <point x=\"217\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"-440\"/>\n      <point x=\"779\" y=\"-266\"/>\n      <point x=\"850\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"707\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"995\" y=\"953\"/>\n      <point x=\"894\" y=\"1080\"/>\n      <point x=\"601\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"1080\"/>\n      <point x=\"324\" y=\"1067\"/>\n      <point x=\"185\" y=\"1042\" type=\"curve\"/>\n      <point x=\"206\" y=\"790\" type=\"line\"/>\n      <point x=\"354\" y=\"812\"/>\n      <point x=\"475\" y=\"823\"/>\n      <point x=\"569\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"823\"/>\n      <point x=\"691\" y=\"783\"/>\n      <point x=\"677\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"-98\"/>\n      <point x=\"468\" y=\"-190\"/>\n      <point x=\"234\" y=\"-209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"-227\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"921\" y=\"1203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1024\" y=\"1203\"/>\n      <point x=\"1094\" y=\"1273\"/>\n      <point x=\"1094\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1094\" y=\"1479\"/>\n      <point x=\"1024\" y=\"1549\"/>\n      <point x=\"921\" y=\"1549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"1549\"/>\n      <point x=\"748\" y=\"1479\"/>\n      <point x=\"748\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"1273\"/>\n      <point x=\"818\" y=\"1203\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/jacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"acutecomb\" xOffset=\"144\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/jcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01F0\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"caroncomb\" xOffset=\"144\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/jcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0135\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"circumflexcomb\" xOffset=\"144\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/jdotless.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jdotless\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0237\"/>\n  <anchor x=\"411\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"837\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"27\" y=\"-480\" type=\"line\"/>\n      <point x=\"217\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"-440\"/>\n      <point x=\"779\" y=\"-266\"/>\n      <point x=\"850\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"707\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"995\" y=\"954\"/>\n      <point x=\"894\" y=\"1081\"/>\n      <point x=\"601\" y=\"1081\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"1081\"/>\n      <point x=\"324\" y=\"1068\"/>\n      <point x=\"185\" y=\"1043\" type=\"curve\"/>\n      <point x=\"206\" y=\"791\" type=\"line\"/>\n      <point x=\"354\" y=\"813\"/>\n      <point x=\"475\" y=\"824\"/>\n      <point x=\"569\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"824\"/>\n      <point x=\"691\" y=\"784\"/>\n      <point x=\"677\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"-98\"/>\n      <point x=\"468\" y=\"-190\"/>\n      <point x=\"234\" y=\"-209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"-227\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"je-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0458\"/>\n  <outline>\n    <component base=\"j\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/k.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"k.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"443\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"984\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"-20\"/>\n      <point x=\"1057\" y=\"-15\"/>\n      <point x=\"1088\" y=\"-9\" type=\"curve\"/>\n      <point x=\"1069\" y=\"239\" type=\"line\"/>\n      <point x=\"1056\" y=\"237\"/>\n      <point x=\"1048\" y=\"237\"/>\n      <point x=\"1028\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"237\"/>\n      <point x=\"763\" y=\"311\"/>\n      <point x=\"766\" y=\"519\" type=\"curve\"/>\n      <point x=\"746\" y=\"336\" type=\"line\"/>\n      <point x=\"980\" y=\"428\"/>\n      <point x=\"1116\" y=\"595\"/>\n      <point x=\"1116\" y=\"797\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"968\"/>\n      <point x=\"1004\" y=\"1080\"/>\n      <point x=\"834\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"1080\"/>\n      <point x=\"549\" y=\"995\"/>\n      <point x=\"512\" y=\"868\" type=\"curve\"/>\n      <point x=\"463\" y=\"868\" type=\"line\"/>\n      <point x=\"419\" y=\"533\" type=\"line\"/>\n      <point x=\"453\" y=\"737\"/>\n      <point x=\"611\" y=\"823\"/>\n      <point x=\"734\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"823\"/>\n      <point x=\"839\" y=\"793\"/>\n      <point x=\"839\" y=\"735\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"655\"/>\n      <point x=\"764\" y=\"559\"/>\n      <point x=\"522\" y=\"465\" type=\"curve\"/>\n      <point x=\"545\" y=\"152\"/>\n      <point x=\"704\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"0\" type=\"line\"/>\n      <point x=\"329\" y=\"0\" type=\"line\"/>\n      <point x=\"580\" y=\"1420\" type=\"line\"/>\n      <point x=\"305\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/k.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"k\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"455\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"984\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"-20\"/>\n      <point x=\"1057\" y=\"-15\"/>\n      <point x=\"1088\" y=\"-9\" type=\"curve\"/>\n      <point x=\"1069\" y=\"239\" type=\"line\"/>\n      <point x=\"1056\" y=\"237\"/>\n      <point x=\"1048\" y=\"237\"/>\n      <point x=\"1028\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"237\"/>\n      <point x=\"763\" y=\"311\"/>\n      <point x=\"766\" y=\"519\" type=\"curve\"/>\n      <point x=\"746\" y=\"336\" type=\"line\"/>\n      <point x=\"980\" y=\"428\"/>\n      <point x=\"1116\" y=\"595\"/>\n      <point x=\"1116\" y=\"797\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"968\"/>\n      <point x=\"1004\" y=\"1080\"/>\n      <point x=\"834\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"1080\"/>\n      <point x=\"549\" y=\"995\"/>\n      <point x=\"512\" y=\"868\" type=\"curve\"/>\n      <point x=\"463\" y=\"868\" type=\"line\"/>\n      <point x=\"419\" y=\"533\" type=\"line\"/>\n      <point x=\"453\" y=\"737\"/>\n      <point x=\"611\" y=\"823\"/>\n      <point x=\"734\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"823\"/>\n      <point x=\"839\" y=\"793\"/>\n      <point x=\"839\" y=\"735\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"655\"/>\n      <point x=\"764\" y=\"559\"/>\n      <point x=\"522\" y=\"465\" type=\"curve\"/>\n      <point x=\"545\" y=\"152\"/>\n      <point x=\"704\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"325\" y=\"0\" type=\"line\"/>\n      <point x=\"522\" y=\"1117\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"1400\"/>\n      <point x=\"476\" y=\"1521\"/>\n      <point x=\"200\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"149\" y=\"1521\"/>\n      <point x=\"98\" y=\"1517\"/>\n      <point x=\"48\" y=\"1505\" type=\"curve\"/>\n      <point x=\"77\" y=\"1253\" type=\"line\"/>\n      <point x=\"103\" y=\"1261\"/>\n      <point x=\"130\" y=\"1264\"/>\n      <point x=\"156\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"1264\"/>\n      <point x=\"263\" y=\"1210\"/>\n      <point x=\"241\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"952\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"-20\"/>\n      <point x=\"1048\" y=\"-16\"/>\n      <point x=\"1088\" y=\"-7\" type=\"curve\"/>\n      <point x=\"1068\" y=\"236\" type=\"line\"/>\n      <point x=\"1035\" y=\"237\"/>\n      <point x=\"1028\" y=\"235\"/>\n      <point x=\"987\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"235\"/>\n      <point x=\"768\" y=\"277\"/>\n      <point x=\"729\" y=\"522\" type=\"curve\"/>\n      <point x=\"709\" y=\"416\" type=\"line\"/>\n      <point x=\"850\" y=\"494\"/>\n      <point x=\"1098\" y=\"644\"/>\n      <point x=\"1161\" y=\"1080\" type=\"curve\"/>\n      <point x=\"856\" y=\"1050\" type=\"line\"/>\n      <point x=\"821\" y=\"806\"/>\n      <point x=\"717\" y=\"637\"/>\n      <point x=\"492\" y=\"548\" type=\"curve\"/>\n      <point x=\"511\" y=\"140\"/>\n      <point x=\"717\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"48\" y=\"0\" type=\"line\"/>\n      <point x=\"323\" y=\"0\" type=\"line\"/>\n      <point x=\"510\" y=\"1060\" type=\"line\"/>\n      <point x=\"235\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ka-cy.loclB_G_R_.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy.loclBGR.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"443\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"952\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"-20\"/>\n      <point x=\"1048\" y=\"-16\"/>\n      <point x=\"1088\" y=\"-7\" type=\"curve\"/>\n      <point x=\"1068\" y=\"236\" type=\"line\"/>\n      <point x=\"1035\" y=\"237\"/>\n      <point x=\"1028\" y=\"235\"/>\n      <point x=\"987\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"235\"/>\n      <point x=\"768\" y=\"277\"/>\n      <point x=\"729\" y=\"522\" type=\"curve\"/>\n      <point x=\"709\" y=\"416\" type=\"line\"/>\n      <point x=\"850\" y=\"494\"/>\n      <point x=\"1098\" y=\"644\"/>\n      <point x=\"1161\" y=\"1080\" type=\"curve\"/>\n      <point x=\"856\" y=\"1050\" type=\"line\"/>\n      <point x=\"821\" y=\"806\"/>\n      <point x=\"717\" y=\"637\"/>\n      <point x=\"492\" y=\"548\" type=\"curve\"/>\n      <point x=\"511\" y=\"140\"/>\n      <point x=\"717\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"0\" type=\"line\"/>\n      <point x=\"329\" y=\"0\" type=\"line\"/>\n      <point x=\"580\" y=\"1420\" type=\"line\"/>\n      <point x=\"305\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ka-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"452\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"952\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"-20\"/>\n      <point x=\"1048\" y=\"-16\"/>\n      <point x=\"1088\" y=\"-7\" type=\"curve\"/>\n      <point x=\"1068\" y=\"236\" type=\"line\"/>\n      <point x=\"1035\" y=\"237\"/>\n      <point x=\"1028\" y=\"235\"/>\n      <point x=\"987\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"235\"/>\n      <point x=\"768\" y=\"277\"/>\n      <point x=\"729\" y=\"522\" type=\"curve\"/>\n      <point x=\"709\" y=\"416\" type=\"line\"/>\n      <point x=\"850\" y=\"494\"/>\n      <point x=\"1098\" y=\"644\"/>\n      <point x=\"1161\" y=\"1080\" type=\"curve\"/>\n      <point x=\"856\" y=\"1050\" type=\"line\"/>\n      <point x=\"821\" y=\"806\"/>\n      <point x=\"717\" y=\"637\"/>\n      <point x=\"492\" y=\"548\" type=\"curve\"/>\n      <point x=\"511\" y=\"140\"/>\n      <point x=\"717\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"325\" y=\"0\" type=\"line\"/>\n      <point x=\"522\" y=\"1117\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"1400\"/>\n      <point x=\"476\" y=\"1521\"/>\n      <point x=\"200\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"149\" y=\"1521\"/>\n      <point x=\"98\" y=\"1517\"/>\n      <point x=\"48\" y=\"1505\" type=\"curve\"/>\n      <point x=\"77\" y=\"1253\" type=\"line\"/>\n      <point x=\"103\" y=\"1261\"/>\n      <point x=\"130\" y=\"1264\"/>\n      <point x=\"156\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"1264\"/>\n      <point x=\"263\" y=\"1210\"/>\n      <point x=\"241\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/kadescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"049B\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"952\" y=\"-11\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"-11\"/>\n      <point x=\"1048\" y=\"-8\"/>\n      <point x=\"1067\" y=\"0\" type=\"curve\"/>\n      <point x=\"1125\" y=\"241\" type=\"line\"/>\n      <point x=\"1056\" y=\"236\"/>\n      <point x=\"1049\" y=\"236\"/>\n      <point x=\"1008\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"236\"/>\n      <point x=\"768\" y=\"277\"/>\n      <point x=\"729\" y=\"522\" type=\"curve\"/>\n      <point x=\"709\" y=\"416\" type=\"line\"/>\n      <point x=\"850\" y=\"494\"/>\n      <point x=\"1098\" y=\"644\"/>\n      <point x=\"1161\" y=\"1080\" type=\"curve\"/>\n      <point x=\"856\" y=\"1050\" type=\"line\"/>\n      <point x=\"821\" y=\"806\"/>\n      <point x=\"717\" y=\"637\"/>\n      <point x=\"492\" y=\"548\" type=\"curve\"/>\n      <point x=\"511\" y=\"140\"/>\n      <point x=\"717\" y=\"-11\"/>\n    </contour>\n    <contour>\n      <point x=\"48\" y=\"0\" type=\"line\"/>\n      <point x=\"323\" y=\"0\" type=\"line\"/>\n      <point x=\"510\" y=\"1060\" type=\"line\"/>\n      <point x=\"235\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1004\" y=\"-319\" type=\"line\"/>\n      <point x=\"1050\" y=\"-188\"/>\n      <point x=\"1117\" y=\"97\"/>\n      <point x=\"1125\" y=\"241\" type=\"curve\"/>\n      <point x=\"856\" y=\"46\" type=\"line\"/>\n      <point x=\"838\" y=\"-42\"/>\n      <point x=\"809\" y=\"-147\"/>\n      <point x=\"768\" y=\"-270\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/kaiS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaiSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03D7\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"321\" y=\"248\" type=\"line\"/>\n      <point x=\"1171\" y=\"881\" type=\"line\"/>\n      <point x=\"1022\" y=\"1080\" type=\"line\"/>\n      <point x=\"157\" y=\"425\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"635\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"-480\"/>\n      <point x=\"1048\" y=\"-367\"/>\n      <point x=\"1048\" y=\"-148\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"-79\"/>\n      <point x=\"1023\" y=\"14\"/>\n      <point x=\"966\" y=\"103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"563\" type=\"line\"/>\n      <point x=\"442\" y=\"436\" type=\"line\"/>\n      <point x=\"728\" y=\"-11\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"-48\"/>\n      <point x=\"760\" y=\"-84\"/>\n      <point x=\"760\" y=\"-115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-186\"/>\n      <point x=\"699\" y=\"-223\"/>\n      <point x=\"581\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"-223\"/>\n      <point x=\"489\" y=\"-216\"/>\n      <point x=\"426\" y=\"-203\" type=\"curve\"/>\n      <point x=\"376\" y=\"-459\" type=\"line\"/>\n      <point x=\"484\" y=\"-478\"/>\n      <point x=\"572\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"48\" y=\"0\" type=\"line\"/>\n      <point x=\"319\" y=\"0\" type=\"line\"/>\n      <point x=\"506\" y=\"1060\" type=\"line\"/>\n      <point x=\"235\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/kappa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kappa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BA\"/>\n  <guideline x=\"485\" y=\"714\" angle=\"231.3928\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"321\" y=\"248\" type=\"line\"/>\n      <point x=\"1171\" y=\"881\" type=\"line\"/>\n      <point x=\"1022\" y=\"1080\" type=\"line\"/>\n      <point x=\"157\" y=\"425\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"48\" y=\"0\" type=\"line\"/>\n      <point x=\"319\" y=\"0\" type=\"line\"/>\n      <point x=\"506\" y=\"1060\" type=\"line\"/>\n      <point x=\"235\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"965\" y=\"-20\"/>\n      <point x=\"1035\" y=\"1\"/>\n      <point x=\"1121\" y=\"54\" type=\"curve\"/>\n      <point x=\"1033\" y=\"276\" type=\"line\"/>\n      <point x=\"984\" y=\"248\"/>\n      <point x=\"948\" y=\"237\"/>\n      <point x=\"905\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"866\" y=\"237\"/>\n      <point x=\"842\" y=\"260\"/>\n      <point x=\"815\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"681\" y=\"583\" type=\"line\"/>\n      <point x=\"421\" y=\"516\" type=\"line\"/>\n      <point x=\"594\" y=\"159\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"25\"/>\n      <point x=\"751\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/kcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0137\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"94\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/kdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E33\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"93\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/kgreenlandic.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kgreenlandic\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0138\"/>\n  <anchor x=\"534\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"721\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"984\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"-20\"/>\n      <point x=\"1057\" y=\"-15\"/>\n      <point x=\"1088\" y=\"-9\" type=\"curve\"/>\n      <point x=\"1069\" y=\"239\" type=\"line\"/>\n      <point x=\"1056\" y=\"237\"/>\n      <point x=\"1048\" y=\"237\"/>\n      <point x=\"1028\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"237\"/>\n      <point x=\"763\" y=\"311\"/>\n      <point x=\"766\" y=\"519\" type=\"curve\"/>\n      <point x=\"746\" y=\"336\" type=\"line\"/>\n      <point x=\"980\" y=\"428\"/>\n      <point x=\"1116\" y=\"595\"/>\n      <point x=\"1116\" y=\"797\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"968\"/>\n      <point x=\"1004\" y=\"1080\"/>\n      <point x=\"834\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"1080\"/>\n      <point x=\"549\" y=\"995\"/>\n      <point x=\"512\" y=\"868\" type=\"curve\"/>\n      <point x=\"463\" y=\"868\" type=\"line\"/>\n      <point x=\"419\" y=\"533\" type=\"line\"/>\n      <point x=\"453\" y=\"737\"/>\n      <point x=\"611\" y=\"823\"/>\n      <point x=\"734\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"823\"/>\n      <point x=\"839\" y=\"793\"/>\n      <point x=\"839\" y=\"735\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"655\"/>\n      <point x=\"764\" y=\"559\"/>\n      <point x=\"522\" y=\"465\" type=\"curve\"/>\n      <point x=\"545\" y=\"152\"/>\n      <point x=\"704\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"237\" y=\"1060\" type=\"line\"/>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"325\" y=\"0\" type=\"line\"/>\n      <point x=\"512\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/kip.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kip\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AD\"/>\n  <outline>\n    <contour>\n      <point x=\"704\" y=\"551\" type=\"line\"/>\n      <point x=\"1204\" y=\"551\" type=\"line\"/>\n      <point x=\"1240\" y=\"756\" type=\"line\"/>\n      <point x=\"740\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"4\" y=\"551\" type=\"line\"/>\n      <point x=\"301\" y=\"551\" type=\"line\"/>\n      <point x=\"337\" y=\"756\" type=\"line\"/>\n      <point x=\"40\" y=\"756\" type=\"line\"/>\n    </contour>\n    <component base=\"K\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/kje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045C\"/>\n  <outline>\n    <component base=\"ka-cy\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/klinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"klinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E35\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"94\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/l.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"l\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006C\"/>\n  <anchor x=\"600\" y=\"1\" name=\"bottom\"/>\n  <anchor x=\"579\" y=\"784\" name=\"center\"/>\n  <anchor x=\"587\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1191\" y=\"1500\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"-20\"/>\n      <point x=\"981\" y=\"13\"/>\n      <point x=\"1075\" y=\"54\" type=\"curve\"/>\n      <point x=\"1006\" y=\"292\" type=\"line\"/>\n      <point x=\"929\" y=\"252\"/>\n      <point x=\"882\" y=\"237\"/>\n      <point x=\"809\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"237\"/>\n      <point x=\"623\" y=\"283\"/>\n      <point x=\"624\" y=\"373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"624\" y=\"404\"/>\n      <point x=\"633\" y=\"472\"/>\n      <point x=\"672\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"1107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"1377\"/>\n      <point x=\"757\" y=\"1520\"/>\n      <point x=\"486\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"1520\"/>\n      <point x=\"288\" y=\"1514\"/>\n      <point x=\"190\" y=\"1492\" type=\"curve\"/>\n      <point x=\"231\" y=\"1240\" type=\"line\"/>\n      <point x=\"295\" y=\"1256\"/>\n      <point x=\"360\" y=\"1263\"/>\n      <point x=\"424\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"1263\"/>\n      <point x=\"557\" y=\"1208\"/>\n      <point x=\"530\" y=\"1107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"397\" y=\"615\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"463\"/>\n      <point x=\"347\" y=\"385\"/>\n      <point x=\"347\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"347\" y=\"100\"/>\n      <point x=\"483\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/l.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"l.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"679\" y=\"784\" name=\"center\"/>\n  <anchor x=\"807\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1191\" y=\"1500\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"1011\" y=\"273\" type=\"line\"/>\n      <point x=\"939\" y=\"248\"/>\n      <point x=\"875\" y=\"237\"/>\n      <point x=\"796\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"237\"/>\n      <point x=\"502\" y=\"373\"/>\n      <point x=\"502\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"1037\"/>\n      <point x=\"604\" y=\"1263\"/>\n      <point x=\"760\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"1263\"/>\n      <point x=\"832\" y=\"1234\"/>\n      <point x=\"834\" y=\"1171\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"772\"/>\n      <point x=\"519\" y=\"465\"/>\n      <point x=\"10\" y=\"345\" type=\"curve\"/>\n      <point x=\"69\" y=\"116\" type=\"line\"/>\n      <point x=\"715\" y=\"275\"/>\n      <point x=\"1109\" y=\"670\"/>\n      <point x=\"1109\" y=\"1179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1109\" y=\"1385\"/>\n      <point x=\"991\" y=\"1520\"/>\n      <point x=\"811\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"1520\"/>\n      <point x=\"252\" y=\"1196\"/>\n      <point x=\"252\" y=\"703\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"252\" y=\"196\"/>\n      <point x=\"412\" y=\"-20\"/>\n      <point x=\"791\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"-20\"/>\n      <point x=\"957\" y=\"-7\"/>\n      <point x=\"1064\" y=\"25\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013A\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-170\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lacute.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lacute.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"acutecomb.case\" xOffset=\"50\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lambda.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lambda\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BB\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"763\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"971\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1015\" y=\"-20\"/>\n      <point x=\"1052\" y=\"-17\"/>\n      <point x=\"1099\" y=\"-8\" type=\"curve\"/>\n      <point x=\"1114\" y=\"232\" type=\"line\"/>\n      <point x=\"1082\" y=\"231\"/>\n      <point x=\"1064\" y=\"230\"/>\n      <point x=\"1051\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"230\"/>\n      <point x=\"920\" y=\"265\"/>\n      <point x=\"896\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"1306\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"1453\"/>\n      <point x=\"580\" y=\"1520\"/>\n      <point x=\"392\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"1520\"/>\n      <point x=\"231\" y=\"1510\"/>\n      <point x=\"154\" y=\"1488\" type=\"curve\"/>\n      <point x=\"195\" y=\"1251\" type=\"line\"/>\n      <point x=\"271\" y=\"1267\"/>\n      <point x=\"316\" y=\"1274\"/>\n      <point x=\"338\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"1274\"/>\n      <point x=\"468\" y=\"1235\"/>\n      <point x=\"490\" y=\"1150\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"205\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"45\"/>\n      <point x=\"792\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"-43\" y=\"0\" type=\"line\"/>\n      <point x=\"269\" y=\"0\" type=\"line\"/>\n      <point x=\"426\" y=\"248\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"348\"/>\n      <point x=\"584\" y=\"453\"/>\n      <point x=\"577\" y=\"568\" type=\"curve\"/>\n      <point x=\"720\" y=\"609\" type=\"line\"/>\n      <point x=\"575\" y=\"950\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lambdastroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lambdastroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019B\"/>\n  <outline>\n    <contour>\n      <point x=\"104\" y=\"837\" type=\"line\"/>\n      <point x=\"1065\" y=\"1127\" type=\"line\"/>\n      <point x=\"1002\" y=\"1361\" type=\"line\"/>\n      <point x=\"39\" y=\"1071\" type=\"line\"/>\n    </contour>\n    <component base=\"lambda\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"largeCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EF\"/>\n  <note>\nuni25EF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"110\"/>\n      <point x=\"1200\" y=\"350\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1070\"/>\n      <point x=\"960\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1310\"/>\n      <point x=\"0\" y=\"1070\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"350\"/>\n      <point x=\"240\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"343\"/>\n      <point x=\"233\" y=\"490\"/>\n      <point x=\"233\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"930\"/>\n      <point x=\"380\" y=\"1077\"/>\n      <point x=\"600\" y=\"1077\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"1077\"/>\n      <point x=\"967\" y=\"930\"/>\n      <point x=\"967\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"967\" y=\"490\"/>\n      <point x=\"820\" y=\"343\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"332\"/>\r\n      <point x=\"800\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"602\"/>\r\n      <point x=\"800\" y=\"61\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"234\"/>\r\n      <point x=\"800\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"472\"/>\r\n      <point x=\"800\" y=\"-4\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"560\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"560\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE20\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE20.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE20.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE21.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE21\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE21.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE21.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE22.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE22\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE22.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE22.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"1144\"/>\r\n      <point x=\"800\" y=\"332\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"948\"/>\r\n      <point x=\"800\" y=\"234\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"640\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"640\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE27.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE27\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE27.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE27.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE28.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE28\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE28.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE28.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE29.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE29\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE29.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE29.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1685\"/>\r\n      <point x=\"1000\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"602\"/>\r\n      <point x=\"800\" y=\"61\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"332\"/>\r\n      <point x=\"800\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"602\"/>\r\n      <point x=\"400\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1424\"/>\r\n      <point x=\"1000\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"472\"/>\r\n      <point x=\"800\" y=\"-4\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"234\"/>\r\n      <point x=\"800\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"472\"/>\r\n      <point x=\"400\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1144\"/>\r\n      <point x=\"900\" y=\"1437\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"986\"/>\r\n      <point x=\"600\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1144\"/>\r\n      <point x=\"900\" y=\"760\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"309\"/>\r\n      <point x=\"600\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"948\"/>\r\n      <point x=\"900\" y=\"1206\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"810\"/>\r\n      <point x=\"600\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"948\"/>\r\n      <point x=\"900\" y=\"610\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"214\"/>\r\n      <point x=\"600\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE30.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE30\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2000\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE30.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE30.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1702\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE31.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE31\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-255\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE31.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE31.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-282\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE32.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE32\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE32.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE32.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE33.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE33\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"800\" y=\"873\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"800\" y=\"873\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE33.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE33.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"800\" y=\"710\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"800\" y=\"710\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"648\"/>\r\n      <point x=\"800\" y=\"1324\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"1098\"/>\r\n      <point x=\"800\" y=\"422\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"511\"/>\r\n      <point x=\"800\" y=\"1107\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"908\"/>\r\n      <point x=\"800\" y=\"313\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE37.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE37\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"1144\"/>\r\n      <point x=\"400\" y=\"1685\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"1144\"/>\r\n      <point x=\"800\" y=\"332\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE37.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE37.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"948\"/>\r\n      <point x=\"400\" y=\"1424\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"948\"/>\r\n      <point x=\"800\" y=\"234\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE38.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE38\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE38.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE38.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE39.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE39\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE39.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE39.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1685\"/>\r\n      <point x=\"1000\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"602\"/>\r\n      <point x=\"400\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1424\"/>\r\n      <point x=\"1000\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"472\"/>\r\n      <point x=\"400\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"560\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"560\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE40.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE40\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE40.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE40.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE41.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE41\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"647\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE41.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE41.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"600\" y=\"908\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"512\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE42.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE42\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE42.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE42.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE43.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE43\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"1144\"/>\r\n      <point x=\"400\" y=\"1685\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE43.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE43.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"948\"/>\r\n      <point x=\"400\" y=\"1424\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE44.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE44\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE44.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE44.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE45\"/>\r\n  <outline>\r\n    <component base=\"largeType-1CE43\"/>\r\n    <contour>\r\n      <point x=\"200\" y=\"1009\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"500\" y=\"602\"/>\r\n      <point x=\"500\" y=\"602\"/>\r\n      <point x=\"700\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"600\" y=\"61\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <component base=\"largeType-1CE43.stypo\"/>\r\n    <contour>\r\n      <point x=\"200\" y=\"829\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"500\" y=\"472\"/>\r\n      <point x=\"500\" y=\"472\"/>\r\n      <point x=\"700\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-4\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"640\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"640\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE49.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE49\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE49.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE49.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE50.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE50\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE50.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE50.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lari.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lari\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BE\"/>\n  <outline>\n    <contour>\n      <point x=\"284\" y=\"228\" type=\"line\"/>\n      <point x=\"702\" y=\"251\" type=\"line\"/>\n      <point x=\"488\" y=\"251\"/>\n      <point x=\"361\" y=\"398\"/>\n      <point x=\"361\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"935\"/>\n      <point x=\"529\" y=\"1187\"/>\n      <point x=\"734\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1187\"/>\n      <point x=\"972\" y=\"1076\"/>\n      <point x=\"938\" y=\"880\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"708\" type=\"line\"/>\n      <point x=\"1172\" y=\"708\" type=\"line\"/>\n      <point x=\"1202\" y=\"880\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"1236\"/>\n      <point x=\"1113\" y=\"1440\"/>\n      <point x=\"778\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"384\" y=\"1440\"/>\n      <point x=\"83\" y=\"1084\"/>\n      <point x=\"83\" y=\"618\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"83\" y=\"443\"/>\n      <point x=\"160\" y=\"335\"/>\n      <point x=\"286\" y=\"297\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"-25\" y=\"0\" type=\"line\"/>\n      <point x=\"1029\" y=\"0\" type=\"line\"/>\n      <point x=\"1073\" y=\"251\" type=\"line\"/>\n      <point x=\"19\" y=\"251\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"452\" y=\"708\" type=\"line\"/>\n      <point x=\"602\" y=\"708\" type=\"line\"/>\n      <point x=\"754\" y=\"1568\" type=\"line\"/>\n      <point x=\"604\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"676\" y=\"708\" type=\"line\"/>\n      <point x=\"825\" y=\"708\" type=\"line\"/>\n      <point x=\"977\" y=\"1568\" type=\"line\"/>\n      <point x=\"828\" y=\"1568\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/layerinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>lib</key>\n    <dict>\n      <key>com.schriftgestaltung.layerId</key>\n      <string>84EC96F5-B4D5-4389-883B-FBB110B3398F</string>\n      <key>com.schriftgestaltung.layerOrderInGlyph..notdef</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.AE</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.AEacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abreveacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevedotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevegrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevehookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevetilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexgrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflextilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Adieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Adotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Agrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ahookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alpha</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alpha-latin</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alphatonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Amacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aring</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aringacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Asmall</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Astroke</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Atilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.B</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.B.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Be-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Beta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.C</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.C.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.CR</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccedilla</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cdotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Che-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Chedescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Chi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cstroke</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.D</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.D.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dafrican</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dcroat</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.De-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.De-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Delta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dze-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dzhe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ebreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexgrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflextilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ef-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ef-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Egrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ehookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.El-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.El-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Em-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Emacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.En-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Endescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eng</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eopen</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Epsilon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Epsilontonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Er-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ereversed</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ereversed-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Es-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Esh</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Etatonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eth</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Etilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ezh</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.F</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.F.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Fhook</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.G</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.G.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gamma</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gammaafrican</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gbreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gdotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ge-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Germandbls</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ghestroke-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gheupturn-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gsmall</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gstroke</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.H</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.H.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hadescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hardsign-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hbar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hcircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.IJ</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.IJ_acute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ia-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ibreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Icircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ie-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iegrave-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Igrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ihookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ii-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iigrave-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iishort-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Imacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Imacron-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Io-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iota</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotaafrican</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotadieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotatonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ismall</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Itilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iu-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.J</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Jacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Jcircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Je-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.K</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.K.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ka-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kadescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.KaiSymbol</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kappa</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Klinebelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.L</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.L.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.LIG</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lambda</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lbar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ldot</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ldotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Llinebelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lmiddletilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lslash</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lsmall</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.M</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.M.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Mu</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.N</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.N.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ncaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ncommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nhookleft</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nlinebelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ntilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nu</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.OE</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Obarred-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Obreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexgrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflextilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Odieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Odotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ograve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohm</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorn</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohornacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorndotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorngrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohornhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorntilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohungarumlaut</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacronacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacrongrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omega</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omegatonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omicron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omicrontonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oopen</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oslash</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oslashacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Otilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.P</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.P.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Palochka-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Pe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Phi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Pi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Psi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Q</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Q.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.R</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.R.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Racute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rho</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.S</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.S.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scedilla</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Schwa</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Schwa-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Shcha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Shha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sigma</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Softsign-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.T</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.T.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tau</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tbar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcedilla</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tdiagonalstroke</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Te-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Theta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Thorn</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tlinebelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tse-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tshe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ubreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ucircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Udieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Udotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ugrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorn</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhornacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorndotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorngrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhornhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorntilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhungarumlaut</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Umacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Umacron-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilonafrican</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilondieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilontonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uring</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ushort-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ustraight-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ustraightstroke-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Utilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.V</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.V.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ve-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Vhook</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Vturned</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.W</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wcircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wdieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wgrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.X</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.X.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Xi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Y</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Y.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ycircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ydieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ydotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yeru-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ygrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yi-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ymacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ytilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Z</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zdotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ze-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zeta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zhe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zhedescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.a</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.a-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abreveacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevedotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevegrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevehookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevetilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexgrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflextilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.case.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutetonecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.adieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.adotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ae</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aeacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.agrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ahookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alpha</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alpha-latin</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alphatonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.amacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ampersand</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ampersand_ampersand.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.anoteleia</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.apostrophemod</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.approxequal</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aring</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aringacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciicircum</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciicircum_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_at.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_hyphen.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk_asterisk.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_parenright.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_slash.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.at</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.atilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.b</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.b.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash_backslash.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash_slash.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backspaceControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backspaceControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.baht</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_braceright.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bracketright.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_underscore_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.be-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.be-cy.loclSRB</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bellControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bellControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bitcoin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackHexagon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackHorizontalEllipse</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackInWhiteDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackLargeCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackLargeSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumDownTriangleCentred</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumLeftTriangleCentred</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumLozenge</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumRightTriangleCentred</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumUpTriangleCentred</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackParallelogram</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackPentagon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallLozenge</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmilingFace</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerticalEllipse</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerticalRect</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerysmallSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blank</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blank-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blankSymbol</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDown.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUp</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUp.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVertical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVertical.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceleft</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceleft_bar.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceright</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceright_numbersign.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketleft</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketleft_bar.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketright</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketright_numbersign.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.breve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brokenbar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bullet</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bulletoperator</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bullseye</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.c</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cancelControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cancelControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.careof</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caroncomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caroncomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccedilla</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cdotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedilla</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedillacomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.che-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.che-cy.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.checkmark</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chedescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chedescender-cy.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflexcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflexcomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.clubBlackSuit</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon.center</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon_colon.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_slash_slash.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colonsign</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colontriangularmod</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.comma</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaabovecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaaboverightcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaaccentcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaturnedabovecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaturnedmod</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.copyright</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.crosshatchFillSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.currency</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.d</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dagger</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.daggerdbl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dashdownArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcaron.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcroat</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.de-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.de-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.degree</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deleteControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deleteFormTwoControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.delta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlFourControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlOneControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlThreeControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlTwoControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.diagonalcrosshatchFillSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.diamondBlackSuit</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresiscomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresiscomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresistonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.divide</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.divisionslash</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dollar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dollar_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dong</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotbelowcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12345-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123456-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12345678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123457-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123458-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12346-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123467-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123468-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12347-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123478-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12348-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1235-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12356-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1235678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12357-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12358-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1236-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12367-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12368-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1237-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12378-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1238-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1245-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12456-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1245678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12457-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12458-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1246-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12467-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12468-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1247-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12478-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1248-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots125-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1256-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots125678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1257-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1258-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots126-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1267-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1268-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots127-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1278-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots128-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1345-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13456-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1345678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13457-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13458-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1346-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13467-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13468-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1347-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13478-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1348-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots135-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1356-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots135678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1357-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1358-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots136-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1367-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1368-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots137-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1378-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots138-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots145-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1456-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots145678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1457-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1458-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots146-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1467-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1468-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots147-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1478-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots148-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots15-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots156-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots15678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots157-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots158-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots16-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots167-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots168-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots17-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots178-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots18-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2345-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23456-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2345678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23457-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23458-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2346-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23467-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23468-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2347-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23478-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2348-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots235-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2356-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots235678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2357-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2358-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots236-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2367-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2368-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots237-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2378-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots238-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots245-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2456-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots245678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2457-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2458-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots246-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2467-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2468-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots247-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2478-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots248-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots25-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots256-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots25678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots257-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots258-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots26-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots267-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots268-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots27-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots278-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots28-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots345-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3456-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots345678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3457-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3458-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots346-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3467-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3468-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots347-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3478-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots348-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots35-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots356-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots35678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots357-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots358-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots36-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots367-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots368-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots37-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots378-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots38-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots45-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots456-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots45678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots457-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots458-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots46-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots467-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots468-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots47-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots478-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots48-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots5-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots56-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots567-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots5678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots568-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots57-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots578-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots58-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots6-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots67-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots678-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots68-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots7-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots78-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots8-braille</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dottedCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dottedSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downBlackSmallTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downTipLeftArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downWhiteSmallTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downWhiteTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dtail</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dze-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dzhe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ebreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexgrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflextilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ef-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.egrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ehookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eightinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eightsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.el-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ellipsis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.em-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.emacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.emdash</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.en-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTextControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTextControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endash</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eng</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.enquiryControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.enquiryControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eopen</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.epsilon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.epsilontonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_equal_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_greater_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_less_less.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equivalence</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.er-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ereversed-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.es-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.escapeControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.escapeControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.esh</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.estimated</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.etatonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eth</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.etilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eturned</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.euro</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eurocurrency</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_colon.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_exclam.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_exclam_period.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_period.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclamdouble</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclamdown</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ezh</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.f</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.f.locl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.f.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fileSeparatorControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.filledRect</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.firsttonechinese</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fisheye</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fiveeighths</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fiveinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fivesuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.florin</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.formFeedControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.formFeedControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.foursuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fraction</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.franc</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.g</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gamma</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gamma-latin</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gbreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gdotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ge-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ge-cy.loclSRB</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.germandbls</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghestroke-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gheupturn-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstop</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstopmod</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstopreversed</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.grave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravecomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravetonecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater.center</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greaterequal</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.groupSeparatorControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gstroke</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guarani</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guillemetleft</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guillemetright</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guilsinglleft</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guilsinglright</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.h</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.h.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hadescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hardsign-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hbar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hcircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heartBlackSuit</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglebracketornament</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglequotationmarkornament</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglebracketornament</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglequotationmarkornament</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hookabovecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hookabovecomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalBlackHexagon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalFillSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalbar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontallineextension</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horncomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horncomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.house</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hryvnia</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlaut</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_asciitilde.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen_hyphen.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphentwo</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.i</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.i-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ia-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ibreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.icircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idotless</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ie-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iegrave-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.igrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ihookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ii-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iigrave-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iishort-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ij</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ij_acute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.imacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.imacron-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.increment</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.infinity</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integral</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integralbt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integraltp</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.intersection</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.inverseBullet</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.inverseWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.io-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iota</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iota-latin</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotadieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotadieresistonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotatonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.itilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.j</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jcircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jdotless</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.je-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.k</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.k.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kadescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaiSymbol</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kappa</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kgreenlandic</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kip</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.klinebelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.l</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.l.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lacute.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lambda</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lambdastroke</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.largeCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lari</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbar.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbelt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbelt.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcaron.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcommaaccent.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldot</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldot.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldotbelow.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackPointer</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackSmallTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftRightArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhitePointer</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhiteSmallTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhiteTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less.center</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_asciitilde.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asterisk.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asterisk_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_bar.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_bar_bar.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_dollar.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_dollar_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_exclam_hyphen_hyphen.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_less.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_plus.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_plus_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_slash.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_slash_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lessequal</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineFeedControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineFeedControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineseparator</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lira</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.liraTurkish</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.literSign</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.llinebelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.llinebelow.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lmiddletilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lmiddletilde.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.logicalnot</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.logicalnotReversed</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.longs</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfArc</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlackWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfInverseWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfWhiteSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftArc</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftHalfWhiteSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftQuadrantWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightArc</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightDiagonalHalfBlackSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightQuadrantWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowernumeral-greek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowlinecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lozenge</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lslash</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lslash.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.m</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macronbelowcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macroncomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macroncomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.manat</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mars</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumBlackSmallSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumBlackSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSmallSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumleftpointinganglebracketornament</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumrightpointinganglebracketornament</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.micro</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.minus</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.minute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mu</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.multiply</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.n</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.naira</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.napostrophe</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nbspace</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ncaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ncommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.newlineControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nhookleft</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nineinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ninesuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nje-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nlinebelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nmod</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nonbreakinghyphen</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.note-musical</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notedbl-musical</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notequal</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notidentical</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ntilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nu</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nullControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_braceleft.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_bracketleft.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_colon.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_exclam.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_parenleft.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_question.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore_parenleft.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numeral-greek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numero</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.o</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.o-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.obarred-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.obreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexgrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflextilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.odieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.odotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oe</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ogonekcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ograve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorn</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohornacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorndotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorngrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohornhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorntilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohungarumlaut</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacronacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacrongrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omega</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omegatonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omicron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omicrontonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onedotenleader</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oneeighth</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onehalf</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oneinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onequarter</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onesuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oopen</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ordfeminine</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ordmasculine</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.orthogonal</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oslash</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oslashacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.otilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.overline</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.p</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.palochka-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.paragraph</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft_asterisk.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenright</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.partialdiff</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-cy.loclSRB</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent_percent.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_hyphen.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_less.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_period.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_question.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.periodcentered</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perispomenicomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perthousand</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peseta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peso</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.phi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_plus.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_plus_plus.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plusminus</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.prescription</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.product</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.psi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.published</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.punctuationspace</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.q</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_colon.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_period.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_question.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_question_equal.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.questiondown</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.questiongreek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedbl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblbase</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblleft</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblright</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quoteleft</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotereversed</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quoteright</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotesinglbase</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotesingle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.r</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.r.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.racute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.racute.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.radical</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ratio</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcaron.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcommaaccent.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rdotbelow.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.recordSeparatorControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.registered</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.replacementCharacter</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.returnsymbol</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reversedRotatedFloralHeartBullet</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rho</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackPointer</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackSmallTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhitePointer</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhiteSmallTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhiteTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ring</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringbelowcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringcomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringcomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rotatedFloralHeartBullet</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ruble</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rupee</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rupeeIndian</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.s</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.s.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scaron.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scedilla</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scedilla.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.schwa</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.schwa-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scircumflex.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scommaaccent.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sdotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sdotbelow.salt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.second</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.section</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon_semicolon.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seveneighths</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seveninferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sevensuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadedark</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadedark.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadelight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadelight.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shademedium</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shademedium.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shcha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheqel</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shha-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shha-cy.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftInControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftInControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftOutControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftOutControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sigma</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sigmafinal</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sixinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sixsuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_asterisk.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_backslash.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_greater.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_slash.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softhyphen</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softsign-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.space</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.spaceControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.spadeBlackSuit</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfTextControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfTextControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sterling</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.strictlyequivalentto</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteFormTwoControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.summation</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sunWithRays</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.t</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tau</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tbar</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcedilla</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcommaaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.te-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.te-cy.loclSRB</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tenge</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tesh</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thetamod</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thorn</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threeeighths</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threeinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threequarters</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threesuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tildecomb</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tildecomb.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tonos.case</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfBlackCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfBlackDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfWhiteSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topRightHalfWhiteSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.trademark</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tse-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tshe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tugrik</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.half</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twoinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twosuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ubreve</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ucircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.udieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.udotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ugrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorn</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhornacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorndotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorngrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhornhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorntilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhungarumlaut</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.umacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.umacron-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_end.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_middle.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_start.seq</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_underscore.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscoredbl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.unitSeparatorControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uogonek</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upBlackSmallTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDashArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDownArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDownbaseArrow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upLeftHalfBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upRightHalfBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteSmallTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangleWithDot</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfArc</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlackWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfInverseWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftArc</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftDiagonalHalfBlackSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftQuadrantWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightArc</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlackCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlackTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlock</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlock.stypo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightQuadrantWhiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightTriangle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperlefttolowerrightFillSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperrighttolowerleftFillSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilon-latin</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilondieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilondieresistonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilontonos</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uring</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ushort-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ustraight-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ustraightstroke-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.utilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.v</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-cy.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vectorOrCrossProduct</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.venus</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalBisectingLineWhiteSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalFillCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalFillSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl.ss20</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vhook</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vturned</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.w</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.w_w_w.liga</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wcircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wdieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wgrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteBullet</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteCircle</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteHexagon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteHorizontalEllipse</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteInBlackSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLargeSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLowerLeftQuadrantSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLowerRightQuadrantSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteMediumDiamond</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteMediumLozenge</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteParallelogram</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whitePentagon</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteRect</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteRoundedCornersSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmallLozenge</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmallSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmilingFace</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteUpperLeftQuadrantSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteUpperRightQuadrantSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerticalEllipse</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerticalRect</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerysmallSquare</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wmod</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.won</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.x</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.x.multiply</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.xi</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.y</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ycircumflex</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ydieresis</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ydotbelow</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yen</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeru-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ygrave</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yhookabove</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yi-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ymacron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ymod</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ytilde</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.z</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zacute</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zacute.loclPLK</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zcaron</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zdotaccent</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.dnom</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.numr</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.zero</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zeroinferior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zerosuperior</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zeta</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhe-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhe-cy.loclBGR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhedescender-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zmod</key>\n      <integer>1</integer>\n    </dict>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019A\"/>\n  <outline>\n    <contour>\n      <point x=\"135\" y=\"639\" type=\"line\"/>\n      <point x=\"995\" y=\"639\" type=\"line\"/>\n      <point x=\"1037\" y=\"881\" type=\"line\"/>\n      <point x=\"177\" y=\"881\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lbar.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbar.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"77\" y=\"786\" type=\"line\"/>\n      <point x=\"1185\" y=\"786\" type=\"line\"/>\n      <point x=\"1227\" y=\"1028\" type=\"line\"/>\n      <point x=\"119\" y=\"1028\" type=\"line\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lbelt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbelt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026C\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"900\"/>\n      <point x=\"456\" y=\"885\"/>\n      <point x=\"505\" y=\"860\" type=\"curve\"/>\n      <point x=\"613\" y=\"1060\" type=\"line\"/>\n      <point x=\"546\" y=\"1104\"/>\n      <point x=\"459\" y=\"1130\"/>\n      <point x=\"376\" y=\"1130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"1130\"/>\n      <point x=\"22\" y=\"1008\"/>\n      <point x=\"22\" y=\"796\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"22\" y=\"560\"/>\n      <point x=\"199\" y=\"425\"/>\n      <point x=\"508\" y=\"425\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"425\"/>\n      <point x=\"928\" y=\"494\"/>\n      <point x=\"1135\" y=\"615\" type=\"curve\"/>\n      <point x=\"1045\" y=\"831\" type=\"line\"/>\n      <point x=\"854\" y=\"736\"/>\n      <point x=\"666\" y=\"682\"/>\n      <point x=\"531\" y=\"682\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"682\"/>\n      <point x=\"256\" y=\"729\"/>\n      <point x=\"256\" y=\"812\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"256\" y=\"868\"/>\n      <point x=\"299\" y=\"900\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lbelt.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbelt.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"333\" y=\"1250\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"1250\"/>\n      <point x=\"404\" y=\"1235\"/>\n      <point x=\"445\" y=\"1210\" type=\"curve\"/>\n      <point x=\"543\" y=\"1380\" type=\"line\"/>\n      <point x=\"483\" y=\"1424\"/>\n      <point x=\"403\" y=\"1450\"/>\n      <point x=\"326\" y=\"1450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"123\" y=\"1450\"/>\n      <point x=\"2\" y=\"1333\"/>\n      <point x=\"2\" y=\"1136\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2\" y=\"908\"/>\n      <point x=\"223\" y=\"775\"/>\n      <point x=\"598\" y=\"775\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"775\"/>\n      <point x=\"1076\" y=\"845\"/>\n      <point x=\"1345\" y=\"1005\" type=\"curve\"/>\n      <point x=\"1255\" y=\"1221\" type=\"line\"/>\n      <point x=\"1018\" y=\"1102\"/>\n      <point x=\"783\" y=\"1032\"/>\n      <point x=\"621\" y=\"1032\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"379\" y=\"1032\"/>\n      <point x=\"236\" y=\"1076\"/>\n      <point x=\"236\" y=\"1152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"236\" y=\"1214\"/>\n      <point x=\"272\" y=\"1250\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013E\"/>\n  <outline>\n    <contour>\n      <point x=\"911\" y=\"1188\" type=\"line\"/>\n      <point x=\"1137\" y=\"1188\" type=\"line\"/>\n      <point x=\"1294\" y=\"1568\" type=\"line\"/>\n      <point x=\"1018\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lcaron.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcaron.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1161\" y=\"1188\" type=\"line\"/>\n      <point x=\"1387\" y=\"1188\" type=\"line\"/>\n      <point x=\"1544\" y=\"1568\" type=\"line\"/>\n      <point x=\"1268\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013C\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"94\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lcommaaccent.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcommaaccent.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ldot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0140\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"periodcentered\" xOffset=\"556\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ldot.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldot.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"periodcentered\" xOffset=\"611\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ldotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E37\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"93\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ldotbelow.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldotbelow.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7C\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndUpperOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7D\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"150\" y=\"1888\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndUpperOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"150\" y=\"1602\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2190\"/>\n  <outline>\n    <contour>\n      <point x=\"473\" y=\"139\" type=\"line\"/>\n      <point x=\"665\" y=\"289\" type=\"line\"/>\n      <point x=\"355\" y=\"690\" type=\"line\"/>\n      <point x=\"359\" y=\"708\" type=\"line\"/>\n      <point x=\"830\" y=\"1156\" type=\"line\"/>\n      <point x=\"684\" y=\"1323\" type=\"line\"/>\n      <point x=\"106\" y=\"765\" type=\"line\"/>\n      <point x=\"84\" y=\"643\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"183\" y=\"587\" type=\"line\"/>\n      <point x=\"1110\" y=\"587\" type=\"line\"/>\n      <point x=\"1152\" y=\"830\" type=\"line\"/>\n      <point x=\"225\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lackP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackPointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C4\"/>\n  <note>\ntriaglf\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"350\" type=\"line\"/>\n      <point x=\"1080\" y=\"1070\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C2\"/>\n  <note>\nuni25C2\n</note>\n  <outline>\n    <contour>\n      <point x=\"1005\" y=\"241\" type=\"line\"/>\n      <point x=\"1005\" y=\"1179\" type=\"line\"/>\n      <point x=\"208\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C0\"/>\n  <note>\nuni25C0\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"110\" type=\"line\"/>\n      <point x=\"1080\" y=\"1310\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258C\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D6\"/>\n  <note>\nuni25D6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\"/>\n      <point x=\"600\" y=\"1235\" type=\"line\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B16\"/>\n  <note>\nuni2B16\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteDiamond</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E7\"/>\n  <note>\nuni25E7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"235\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n      <point x=\"115\" y=\"1185\" type=\"line\"/>\n      <point x=\"115\" y=\"235\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D0\"/>\n  <note>\nuni25D0\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"261\" type=\"line\"/>\n      <point x=\"600\" y=\"1114\" type=\"line\"/>\n      <point x=\"302\" y=\"1114\" type=\"line\"/>\n      <point x=\"142\" y=\"704\" type=\"line\"/>\n      <point x=\"349\" y=\"291\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258F\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neT_hirdB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneThirdBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBCF\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneThirdBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftR_ightA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftRightArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2194\"/>\n  <outline>\n    <contour>\n      <point x=\"770\" y=\"160\" type=\"line\"/>\n      <point x=\"1158\" y=\"658\" type=\"line\"/>\n      <point x=\"1180\" y=\"780\" type=\"line\"/>\n      <point x=\"921\" y=\"1224\" type=\"line\"/>\n      <point x=\"719\" y=\"1094\" type=\"line\"/>\n      <point x=\"929\" y=\"733\" type=\"line\"/>\n      <point x=\"925\" y=\"715\" type=\"line\"/>\n      <point x=\"604\" y=\"307\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"333\" y=\"179\" type=\"line\"/>\n      <point x=\"535\" y=\"309\" type=\"line\"/>\n      <point x=\"335\" y=\"690\" type=\"line\"/>\n      <point x=\"339\" y=\"708\" type=\"line\"/>\n      <point x=\"650\" y=\"1096\" type=\"line\"/>\n      <point x=\"464\" y=\"1243\" type=\"line\"/>\n      <point x=\"106\" y=\"765\" type=\"line\"/>\n      <point x=\"84\" y=\"643\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"183\" y=\"587\" type=\"line\"/>\n      <point x=\"1010\" y=\"587\" type=\"line\"/>\n      <point x=\"1052\" y=\"830\" type=\"line\"/>\n      <point x=\"225\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2589\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258D\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_woT_hirdsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftTwoThirdsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBCE\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftTwoThirdsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftW_hiteP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhitePointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C5\"/>\n  <note>\nuni25C5\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"350\" type=\"line\"/>\n      <point x=\"1080\" y=\"1070\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"880\" y=\"478\" type=\"line\"/>\n      <point x=\"1008\" y=\"571\" type=\"line\"/>\n      <point x=\"345\" y=\"787\" type=\"line\"/>\n      <point x=\"345\" y=\"633\" type=\"line\"/>\n      <point x=\"1008\" y=\"849\" type=\"line\"/>\n      <point x=\"880\" y=\"942\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C3\"/>\n  <note>\nuni25C3\n</note>\n  <outline>\n    <contour>\n      <point x=\"1005\" y=\"241\" type=\"line\"/>\n      <point x=\"1005\" y=\"1179\" type=\"line\"/>\n      <point x=\"208\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"813\" y=\"422\" type=\"line\"/>\n      <point x=\"925\" y=\"504\" type=\"line\"/>\n      <point x=\"434\" y=\"793\" type=\"line\"/>\n      <point x=\"434\" y=\"627\" type=\"line\"/>\n      <point x=\"925\" y=\"916\" type=\"line\"/>\n      <point x=\"813\" y=\"998\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/leftW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C1\"/>\n  <note>\nuni25C1\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"110\" type=\"line\"/>\n      <point x=\"1080\" y=\"1310\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"880\" y=\"253\" type=\"line\"/>\n      <point x=\"1076\" y=\"363\" type=\"line\"/>\n      <point x=\"313\" y=\"812\" type=\"line\"/>\n      <point x=\"312\" y=\"610\" type=\"line\"/>\n      <point x=\"1072\" y=\"1055\" type=\"line\"/>\n      <point x=\"880\" y=\"1164\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"725\" y=\"2\" type=\"line\"/>\n      <point x=\"917\" y=\"152\" type=\"line\"/>\n      <point x=\"495\" y=\"685\" type=\"line\"/>\n      <point x=\"499\" y=\"703\" type=\"line\"/>\n      <point x=\"1126\" y=\"1259\" type=\"line\"/>\n      <point x=\"980\" y=\"1426\" type=\"line\"/>\n      <point x=\"246\" y=\"770\" type=\"line\"/>\n      <point x=\"224\" y=\"648\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1100\" y=\"197\" type=\"line\"/>\n      <point x=\"1148\" y=\"464\" type=\"line\"/>\n      <point x=\"338\" y=\"696\" type=\"line\"/>\n      <point x=\"342\" y=\"714\" type=\"line\"/>\n      <point x=\"1233\" y=\"947\" type=\"line\"/>\n      <point x=\"1281\" y=\"1221\" type=\"line\"/>\n      <point x=\"71\" y=\"843\" type=\"line\"/>\n      <point x=\"24\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003C\"/>\n  <outline>\n    <contour>\n      <point x=\"1027\" y=\"197\" type=\"line\"/>\n      <point x=\"1074\" y=\"459\" type=\"line\"/>\n      <point x=\"384\" y=\"691\" type=\"line\"/>\n      <point x=\"388\" y=\"709\" type=\"line\"/>\n      <point x=\"1159\" y=\"942\" type=\"line\"/>\n      <point x=\"1208\" y=\"1221\" type=\"line\"/>\n      <point x=\"118\" y=\"843\" type=\"line\"/>\n      <point x=\"71\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1905\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2111\" y=\"482\"/>\n      <point x=\"2232\" y=\"606\"/>\n      <point x=\"2276\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2294\" y=\"963\" type=\"line\"/>\n      <point x=\"2030\" y=\"963\" type=\"line\"/>\n      <point x=\"2015\" y=\"880\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2001\" y=\"803\"/>\n      <point x=\"1961\" y=\"766\"/>\n      <point x=\"1895\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1821\" y=\"766\"/>\n      <point x=\"1761\" y=\"814\"/>\n      <point x=\"1713\" y=\"851\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1628\" y=\"919\"/>\n      <point x=\"1548\" y=\"946\"/>\n      <point x=\"1437\" y=\"946\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1253\" y=\"946\"/>\n      <point x=\"1114\" y=\"801\"/>\n      <point x=\"898\" y=\"801\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"801\"/>\n      <point x=\"655\" y=\"827\"/>\n      <point x=\"508\" y=\"827\" type=\"curve\"/>\n      <point x=\"467\" y=\"597\" type=\"line\"/>\n      <point x=\"621\" y=\"597\"/>\n      <point x=\"750\" y=\"550\"/>\n      <point x=\"904\" y=\"550\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1098\" y=\"550\"/>\n      <point x=\"1226\" y=\"687\"/>\n      <point x=\"1385\" y=\"687\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1470\" y=\"687\"/>\n      <point x=\"1527\" y=\"629\"/>\n      <point x=\"1597\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1683\" y=\"528\"/>\n      <point x=\"1782\" y=\"482\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"35\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1991\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2086\" y=\"482\"/>\n      <point x=\"2205\" y=\"539\"/>\n      <point x=\"2320\" y=\"594\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2409\" y=\"637\"/>\n      <point x=\"2503\" y=\"667\"/>\n      <point x=\"2576\" y=\"667\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2650\" y=\"667\"/>\n      <point x=\"2708\" y=\"625\"/>\n      <point x=\"2773\" y=\"589\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2863\" y=\"540\"/>\n      <point x=\"2954\" y=\"482\"/>\n      <point x=\"3071\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3300\" y=\"482\"/>\n      <point x=\"3431\" y=\"606\"/>\n      <point x=\"3475\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3493\" y=\"963\" type=\"line\"/>\n      <point x=\"3232\" y=\"963\" type=\"line\"/>\n      <point x=\"3226\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"3206\" y=\"820\"/>\n      <point x=\"3162\" y=\"766\"/>\n      <point x=\"3094\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3002\" y=\"766\"/>\n      <point x=\"2935\" y=\"820\"/>\n      <point x=\"2855\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2791\" y=\"901\"/>\n      <point x=\"2707\" y=\"926\"/>\n      <point x=\"2616\" y=\"926\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2513\" y=\"926\"/>\n      <point x=\"2386\" y=\"882\"/>\n      <point x=\"2266\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2177\" y=\"781\"/>\n      <point x=\"2089\" y=\"741\"/>\n      <point x=\"2015\" y=\"741\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1931\" y=\"741\"/>\n      <point x=\"1872\" y=\"772\"/>\n      <point x=\"1815\" y=\"807\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1733\" y=\"856\"/>\n      <point x=\"1651\" y=\"906\"/>\n      <point x=\"1518\" y=\"906\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1302\" y=\"906\"/>\n      <point x=\"1200\" y=\"803\"/>\n      <point x=\"978\" y=\"803\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"763\" y=\"803\"/>\n      <point x=\"701\" y=\"821\"/>\n      <point x=\"516\" y=\"821\" type=\"curve\"/>\n      <point x=\"477\" y=\"600\" type=\"line\"/>\n      <point x=\"670\" y=\"600\"/>\n      <point x=\"731\" y=\"563\"/>\n      <point x=\"957\" y=\"563\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1176\" y=\"563\"/>\n      <point x=\"1276\" y=\"647\"/>\n      <point x=\"1486\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1584\" y=\"647\"/>\n      <point x=\"1650\" y=\"608\"/>\n      <point x=\"1720\" y=\"567\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1792\" y=\"523\"/>\n      <point x=\"1871\" y=\"482\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"37\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2257\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"asciitilde\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"131\"/>\n    <component base=\"asterisk\" xOffset=\"1133\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asterisk_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asterisk_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2257\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"asterisk\" xOffset=\"1222\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1997\" y=\"1421\" type=\"line\"/>\n      <point x=\"412\" y=\"844\" type=\"line\"/>\n      <point x=\"365\" y=\"576\" type=\"line\"/>\n      <point x=\"1997\" y=\"-109\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1733\" y=\"1059\" type=\"line\"/>\n      <point x=\"1733\" y=\"291\" type=\"line\"/>\n      <point x=\"735\" y=\"688\" type=\"line\"/>\n      <point x=\"741\" y=\"722\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"2240\"/>\n    <component base=\"less_bar.liga\" xOffset=\"139\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_bar_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"2274\"/>\n    <component base=\"bar\" xOffset=\"3244\"/>\n    <component base=\"less_bar.liga\" xOffset=\"139\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2255\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"bar\" xOffset=\"1209\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1658\" y=\"-51\" type=\"line\"/>\n      <point x=\"1705\" y=\"211\" type=\"line\"/>\n      <point x=\"492\" y=\"691\" type=\"line\"/>\n      <point x=\"496\" y=\"709\" type=\"line\"/>\n      <point x=\"1177\" y=\"942\" type=\"line\"/>\n      <point x=\"1226\" y=\"1221\" type=\"line\"/>\n      <point x=\"226\" y=\"843\" type=\"line\"/>\n      <point x=\"179\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1450\" y=\"-320\" type=\"line\"/>\n      <point x=\"1714\" y=\"-320\" type=\"line\"/>\n      <point x=\"1812\" y=\"235\" type=\"line\"/>\n      <point x=\"1548\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1586\" y=\"-20\" type=\"line\"/>\n      <point x=\"1967\" y=\"-20\"/>\n      <point x=\"2167\" y=\"131\"/>\n      <point x=\"2167\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2167\" y=\"542\"/>\n      <point x=\"2124\" y=\"644\"/>\n      <point x=\"1990\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1722\" y=\"890\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1656\" y=\"931\"/>\n      <point x=\"1621\" y=\"984\"/>\n      <point x=\"1621\" y=\"1044\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1621\" y=\"1137\"/>\n      <point x=\"1692\" y=\"1186\"/>\n      <point x=\"1827\" y=\"1186\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1934\" y=\"1186\"/>\n      <point x=\"2043\" y=\"1142\"/>\n      <point x=\"2143\" y=\"1059\" type=\"curve\"/>\n      <point x=\"2288\" y=\"1281\" type=\"line\"/>\n      <point x=\"2180\" y=\"1385\"/>\n      <point x=\"2025\" y=\"1440\"/>\n      <point x=\"1839\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1517\" y=\"1440\"/>\n      <point x=\"1344\" y=\"1288\"/>\n      <point x=\"1344\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1344\" y=\"888\"/>\n      <point x=\"1387\" y=\"762\"/>\n      <point x=\"1513\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1803\" y=\"508\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1865\" y=\"470\"/>\n      <point x=\"1890\" y=\"439\"/>\n      <point x=\"1890\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1890\" y=\"287\"/>\n      <point x=\"1793\" y=\"234\"/>\n      <point x=\"1605\" y=\"234\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1716\" y=\"1186\" type=\"line\"/>\n      <point x=\"1980\" y=\"1186\" type=\"line\"/>\n      <point x=\"2077\" y=\"1740\" type=\"line\"/>\n      <point x=\"1813\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_dollar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1450\" y=\"-320\" type=\"line\"/>\n      <point x=\"1714\" y=\"-320\" type=\"line\"/>\n      <point x=\"2077\" y=\"1740\" type=\"line\"/>\n      <point x=\"1813\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1586\" y=\"-20\" type=\"line\"/>\n      <point x=\"1967\" y=\"-20\"/>\n      <point x=\"2167\" y=\"131\"/>\n      <point x=\"2167\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2167\" y=\"542\"/>\n      <point x=\"2124\" y=\"644\"/>\n      <point x=\"1990\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1722\" y=\"890\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1656\" y=\"931\"/>\n      <point x=\"1621\" y=\"984\"/>\n      <point x=\"1621\" y=\"1044\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1621\" y=\"1137\"/>\n      <point x=\"1692\" y=\"1186\"/>\n      <point x=\"1827\" y=\"1186\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1934\" y=\"1186\"/>\n      <point x=\"2043\" y=\"1142\"/>\n      <point x=\"2143\" y=\"1059\" type=\"curve\"/>\n      <point x=\"2288\" y=\"1281\" type=\"line\"/>\n      <point x=\"2180\" y=\"1385\"/>\n      <point x=\"2025\" y=\"1440\"/>\n      <point x=\"1839\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1517\" y=\"1440\"/>\n      <point x=\"1344\" y=\"1288\"/>\n      <point x=\"1344\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1344\" y=\"888\"/>\n      <point x=\"1387\" y=\"762\"/>\n      <point x=\"1513\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1803\" y=\"508\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1865\" y=\"470\"/>\n      <point x=\"1890\" y=\"439\"/>\n      <point x=\"1890\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1890\" y=\"287\"/>\n      <point x=\"1793\" y=\"234\"/>\n      <point x=\"1605\" y=\"234\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1658\" y=\"-51\" type=\"line\"/>\n      <point x=\"1705\" y=\"211\" type=\"line\"/>\n      <point x=\"492\" y=\"691\" type=\"line\"/>\n      <point x=\"496\" y=\"709\" type=\"line\"/>\n      <point x=\"1177\" y=\"942\" type=\"line\"/>\n      <point x=\"1226\" y=\"1221\" type=\"line\"/>\n      <point x=\"226\" y=\"843\" type=\"line\"/>\n      <point x=\"179\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar_greater.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1727\" y=\"-51\" type=\"line\"/>\n      <point x=\"1774\" y=\"211\" type=\"line\"/>\n      <point x=\"561\" y=\"691\" type=\"line\"/>\n      <point x=\"565\" y=\"709\" type=\"line\"/>\n      <point x=\"1246\" y=\"942\" type=\"line\"/>\n      <point x=\"1295\" y=\"1221\" type=\"line\"/>\n      <point x=\"295\" y=\"843\" type=\"line\"/>\n      <point x=\"248\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1519\" y=\"-320\" type=\"line\"/>\n      <point x=\"1783\" y=\"-320\" type=\"line\"/>\n      <point x=\"1881\" y=\"235\" type=\"line\"/>\n      <point x=\"1617\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1655\" y=\"-20\" type=\"line\"/>\n      <point x=\"2036\" y=\"-20\"/>\n      <point x=\"2236\" y=\"131\"/>\n      <point x=\"2236\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2236\" y=\"542\"/>\n      <point x=\"2193\" y=\"644\"/>\n      <point x=\"2059\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1791\" y=\"890\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1725\" y=\"931\"/>\n      <point x=\"1690\" y=\"984\"/>\n      <point x=\"1690\" y=\"1044\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1690\" y=\"1137\"/>\n      <point x=\"1761\" y=\"1186\"/>\n      <point x=\"1896\" y=\"1186\" type=\"curve\"/>\n      <point x=\"1908\" y=\"1440\" type=\"line\"/>\n      <point x=\"1586\" y=\"1440\"/>\n      <point x=\"1413\" y=\"1288\"/>\n      <point x=\"1413\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1413\" y=\"888\"/>\n      <point x=\"1456\" y=\"762\"/>\n      <point x=\"1582\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1872\" y=\"508\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1934\" y=\"470\"/>\n      <point x=\"1959\" y=\"439\"/>\n      <point x=\"1959\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1959\" y=\"287\"/>\n      <point x=\"1862\" y=\"234\"/>\n      <point x=\"1674\" y=\"234\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1785\" y=\"1186\" type=\"line\"/>\n      <point x=\"2049\" y=\"1186\" type=\"line\"/>\n      <point x=\"2146\" y=\"1740\" type=\"line\"/>\n      <point x=\"1882\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2359\" y=\"197\" type=\"line\"/>\n      <point x=\"3368\" y=\"575\" type=\"line\"/>\n      <point x=\"3415\" y=\"843\" type=\"line\"/>\n      <point x=\"1975\" y=\"1451\" type=\"line\"/>\n      <point x=\"1928\" y=\"1189\" type=\"line\"/>\n      <point x=\"3102\" y=\"727\" type=\"line\"/>\n      <point x=\"3098\" y=\"709\" type=\"line\"/>\n      <point x=\"2408\" y=\"476\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_dollar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1727\" y=\"-51\" type=\"line\"/>\n      <point x=\"1774\" y=\"211\" type=\"line\"/>\n      <point x=\"561\" y=\"691\" type=\"line\"/>\n      <point x=\"565\" y=\"709\" type=\"line\"/>\n      <point x=\"1246\" y=\"942\" type=\"line\"/>\n      <point x=\"1295\" y=\"1221\" type=\"line\"/>\n      <point x=\"295\" y=\"843\" type=\"line\"/>\n      <point x=\"248\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1519\" y=\"-320\" type=\"line\"/>\n      <point x=\"1783\" y=\"-320\" type=\"line\"/>\n      <point x=\"2146\" y=\"1740\" type=\"line\"/>\n      <point x=\"1882\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1655\" y=\"-20\" type=\"line\"/>\n      <point x=\"2036\" y=\"-20\"/>\n      <point x=\"2236\" y=\"131\"/>\n      <point x=\"2236\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2236\" y=\"542\"/>\n      <point x=\"2193\" y=\"644\"/>\n      <point x=\"2059\" y=\"726\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1791\" y=\"890\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1725\" y=\"931\"/>\n      <point x=\"1690\" y=\"984\"/>\n      <point x=\"1690\" y=\"1044\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1690\" y=\"1137\"/>\n      <point x=\"1761\" y=\"1186\"/>\n      <point x=\"1896\" y=\"1186\" type=\"curve\"/>\n      <point x=\"1908\" y=\"1440\" type=\"line\"/>\n      <point x=\"1586\" y=\"1440\"/>\n      <point x=\"1413\" y=\"1288\"/>\n      <point x=\"1413\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1413\" y=\"888\"/>\n      <point x=\"1456\" y=\"762\"/>\n      <point x=\"1582\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1872\" y=\"508\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1934\" y=\"470\"/>\n      <point x=\"1959\" y=\"439\"/>\n      <point x=\"1959\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1959\" y=\"287\"/>\n      <point x=\"1862\" y=\"234\"/>\n      <point x=\"1674\" y=\"234\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"2359\" y=\"197\" type=\"line\"/>\n      <point x=\"3368\" y=\"575\" type=\"line\"/>\n      <point x=\"3415\" y=\"843\" type=\"line\"/>\n      <point x=\"1975\" y=\"1451\" type=\"line\"/>\n      <point x=\"1928\" y=\"1189\" type=\"line\"/>\n      <point x=\"3102\" y=\"727\" type=\"line\"/>\n      <point x=\"3098\" y=\"709\" type=\"line\"/>\n      <point x=\"2408\" y=\"476\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1941\" y=\"477\" type=\"line\"/>\n      <point x=\"1989\" y=\"749\" type=\"line\"/>\n      <point x=\"930\" y=\"953\" type=\"line\"/>\n      <point x=\"934\" y=\"971\" type=\"line\"/>\n      <point x=\"2064\" y=\"1182\" type=\"line\"/>\n      <point x=\"2113\" y=\"1451\" type=\"line\"/>\n      <point x=\"607\" y=\"1103\" type=\"line\"/>\n      <point x=\"560\" y=\"835\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"432\" y=\"117\" type=\"line\"/>\n      <point x=\"1876\" y=\"117\" type=\"line\"/>\n      <point x=\"1920\" y=\"367\" type=\"line\"/>\n      <point x=\"476\" y=\"367\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"397\" y=\"835\" type=\"line\"/>\n      <point x=\"726\" y=\"835\" type=\"line\"/>\n      <point x=\"1199\" y=\"1259\" type=\"line\"/>\n      <point x=\"1053\" y=\"1426\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-54\" y=\"333\" type=\"line\"/>\n      <point x=\"598\" y=\"333\" type=\"line\"/>\n      <point x=\"642\" y=\"583\" type=\"line\"/>\n      <point x=\"-10\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"798\" y=\"2\" type=\"line\"/>\n      <point x=\"990\" y=\"152\" type=\"line\"/>\n      <point x=\"645\" y=\"583\" type=\"line\"/>\n      <point x=\"344\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"34\" y=\"835\" type=\"line\"/>\n      <point x=\"686\" y=\"835\" type=\"line\"/>\n      <point x=\"730\" y=\"1085\" type=\"line\"/>\n      <point x=\"78\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"equal_middle.seq\"/>\n    <component base=\"less.alt\" xOffset=\"28\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"418\" y=\"835\" type=\"line\"/>\n      <point x=\"1273\" y=\"835\" type=\"line\"/>\n      <point x=\"1317\" y=\"1085\" type=\"line\"/>\n      <point x=\"679\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"567\" y=\"333\" type=\"line\"/>\n      <point x=\"1185\" y=\"333\" type=\"line\"/>\n      <point x=\"1229\" y=\"583\" type=\"line\"/>\n      <point x=\"351\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-141\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_exclam_hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2328\" y=\"587\" type=\"line\"/>\n      <point x=\"4530\" y=\"587\" type=\"line\"/>\n      <point x=\"4573\" y=\"830\" type=\"line\"/>\n      <point x=\"2371\" y=\"830\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"451\" y=\"584\" type=\"line\"/>\n      <point x=\"1608\" y=\"584\" type=\"line\"/>\n      <point x=\"1652\" y=\"834\" type=\"line\"/>\n      <point x=\"495\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"37\"/>\n    <component base=\"exclam\" xOffset=\"1360\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1152\" y=\"197\" type=\"line\"/>\n      <point x=\"2242\" y=\"575\" type=\"line\"/>\n      <point x=\"2289\" y=\"843\" type=\"line\"/>\n      <point x=\"1333\" y=\"1221\" type=\"line\"/>\n      <point x=\"241\" y=\"843\" type=\"line\"/>\n      <point x=\"194\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1173\" y=\"467\" type=\"line\"/>\n      <point x=\"507\" y=\"691\" type=\"line\"/>\n      <point x=\"511\" y=\"709\" type=\"line\"/>\n      <point x=\"1311\" y=\"951\" type=\"line\"/>\n      <point x=\"1976\" y=\"727\" type=\"line\"/>\n      <point x=\"1972\" y=\"709\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"457\" y=\"584\" type=\"line\"/>\n      <point x=\"501\" y=\"834\" type=\"line\"/>\n      <point x=\"34\" y=\"834\" type=\"line\"/>\n      <point x=\"-10\" y=\"584\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"73\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hyphen_middle.seq\"/>\n    <component base=\"less.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1230\" y=\"584\" type=\"line\"/>\n      <point x=\"1274\" y=\"834\" type=\"line\"/>\n      <point x=\"307\" y=\"834\" type=\"line\"/>\n      <point x=\"263\" y=\"584\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-161\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2055\" y=\"167\" type=\"line\"/>\n      <point x=\"2102\" y=\"429\" type=\"line\"/>\n      <point x=\"1484\" y=\"691\" type=\"line\"/>\n      <point x=\"1488\" y=\"709\" type=\"line\"/>\n      <point x=\"2198\" y=\"972\" type=\"line\"/>\n      <point x=\"2247\" y=\"1251\" type=\"line\"/>\n      <point x=\"1218\" y=\"843\" type=\"line\"/>\n      <point x=\"1171\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1132\" y=\"167\" type=\"line\"/>\n      <point x=\"1179\" y=\"429\" type=\"line\"/>\n      <point x=\"561\" y=\"691\" type=\"line\"/>\n      <point x=\"565\" y=\"709\" type=\"line\"/>\n      <point x=\"1275\" y=\"972\" type=\"line\"/>\n      <point x=\"1324\" y=\"1251\" type=\"line\"/>\n      <point x=\"295\" y=\"843\" type=\"line\"/>\n      <point x=\"248\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"equal\" xOffset=\"2344\"/>\n    <component base=\"less\" xOffset=\"1159\"/>\n    <component base=\"less\" xOffset=\"31\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"707\" y=\"835\" type=\"line\"/>\n      <point x=\"1036\" y=\"835\" type=\"line\"/>\n      <point x=\"1509\" y=\"1259\" type=\"line\"/>\n      <point x=\"1363\" y=\"1426\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-54\" y=\"333\" type=\"line\"/>\n      <point x=\"908\" y=\"333\" type=\"line\"/>\n      <point x=\"952\" y=\"583\" type=\"line\"/>\n      <point x=\"-10\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1108\" y=\"2\" type=\"line\"/>\n      <point x=\"1300\" y=\"152\" type=\"line\"/>\n      <point x=\"955\" y=\"583\" type=\"line\"/>\n      <point x=\"654\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"34\" y=\"835\" type=\"line\"/>\n      <point x=\"996\" y=\"835\" type=\"line\"/>\n      <point x=\"1040\" y=\"1085\" type=\"line\"/>\n      <point x=\"78\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"1053\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"547\" y=\"835\" type=\"line\"/>\n      <point x=\"876\" y=\"835\" type=\"line\"/>\n      <point x=\"1349\" y=\"1259\" type=\"line\"/>\n      <point x=\"1203\" y=\"1426\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-84\" y=\"333\" type=\"line\"/>\n      <point x=\"748\" y=\"333\" type=\"line\"/>\n      <point x=\"792\" y=\"583\" type=\"line\"/>\n      <point x=\"-40\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"948\" y=\"2\" type=\"line\"/>\n      <point x=\"1140\" y=\"152\" type=\"line\"/>\n      <point x=\"795\" y=\"583\" type=\"line\"/>\n      <point x=\"494\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"4\" y=\"835\" type=\"line\"/>\n      <point x=\"836\" y=\"835\" type=\"line\"/>\n      <point x=\"880\" y=\"1085\" type=\"line\"/>\n      <point x=\"48\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1570\" y=\"333\" type=\"line\"/>\n      <point x=\"2416\" y=\"333\" type=\"line\"/>\n      <point x=\"2460\" y=\"583\" type=\"line\"/>\n      <point x=\"1354\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1421\" y=\"835\" type=\"line\"/>\n      <point x=\"2504\" y=\"835\" type=\"line\"/>\n      <point x=\"2548\" y=\"1085\" type=\"line\"/>\n      <point x=\"1682\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"893\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2385\" y=\"333\" type=\"line\"/>\n      <point x=\"2429\" y=\"583\" type=\"line\"/>\n      <point x=\"1131\" y=\"583\" type=\"line\"/>\n      <point x=\"1347\" y=\"333\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2473\" y=\"835\" type=\"line\"/>\n      <point x=\"2517\" y=\"1085\" type=\"line\"/>\n      <point x=\"1459\" y=\"1085\" type=\"line\"/>\n      <point x=\"1198\" y=\"835\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-1\"/>\n    <component base=\"less.alt\" xOffset=\"671\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-10\" y=\"584\" type=\"line\"/>\n      <point x=\"857\" y=\"584\" type=\"line\"/>\n      <point x=\"901\" y=\"834\" type=\"line\"/>\n      <point x=\"34\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"423\"/>\n    <component base=\"less.alt\" xOffset=\"1053\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1293\" y=\"584\" type=\"line\"/>\n      <point x=\"2460\" y=\"584\" type=\"line\"/>\n      <point x=\"2504\" y=\"834\" type=\"line\"/>\n      <point x=\"1337\" y=\"834\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-40\" y=\"584\" type=\"line\"/>\n      <point x=\"727\" y=\"584\" type=\"line\"/>\n      <point x=\"771\" y=\"834\" type=\"line\"/>\n      <point x=\"4\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"321\"/>\n    <component base=\"less.alt\" xOffset=\"913\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1063\" y=\"584\" type=\"line\"/>\n      <point x=\"2430\" y=\"584\" type=\"line\"/>\n      <point x=\"2474\" y=\"834\" type=\"line\"/>\n      <point x=\"1107\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-1\"/>\n    <component base=\"less.alt\" xOffset=\"639\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"2286\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"less\" xOffset=\"1225\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"81\"/>\n    <component base=\"plus\" xOffset=\"1152\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_plus_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_plus_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2257\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"plus\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1479\" y=\"87\" type=\"line\"/>\n      <point x=\"1526\" y=\"349\" type=\"line\"/>\n      <point x=\"561\" y=\"691\" type=\"line\"/>\n      <point x=\"565\" y=\"709\" type=\"line\"/>\n      <point x=\"1429\" y=\"942\" type=\"line\"/>\n      <point x=\"1478\" y=\"1221\" type=\"line\"/>\n      <point x=\"295\" y=\"843\" type=\"line\"/>\n      <point x=\"248\" y=\"575\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"1117\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/less_slash_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_slash_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1572\" y=\"87\" type=\"line\"/>\n      <point x=\"1619\" y=\"349\" type=\"line\"/>\n      <point x=\"561\" y=\"691\" type=\"line\"/>\n      <point x=\"565\" y=\"709\" type=\"line\"/>\n      <point x=\"1429\" y=\"942\" type=\"line\"/>\n      <point x=\"1478\" y=\"1221\" type=\"line\"/>\n      <point x=\"295\" y=\"843\" type=\"line\"/>\n      <point x=\"248\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2241\" y=\"197\" type=\"line\"/>\n      <point x=\"3368\" y=\"575\" type=\"line\"/>\n      <point x=\"3415\" y=\"843\" type=\"line\"/>\n      <point x=\"2197\" y=\"1297\" type=\"line\"/>\n      <point x=\"2150\" y=\"1035\" type=\"line\"/>\n      <point x=\"3102\" y=\"727\" type=\"line\"/>\n      <point x=\"3098\" y=\"709\" type=\"line\"/>\n      <point x=\"2290\" y=\"476\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lessequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lessequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2264\"/>\n  <outline>\n    <contour>\n      <point x=\"1055\" y=\"277\" type=\"line\"/>\n      <point x=\"1102\" y=\"539\" type=\"line\"/>\n      <point x=\"439\" y=\"741\" type=\"line\"/>\n      <point x=\"443\" y=\"759\" type=\"line\"/>\n      <point x=\"1177\" y=\"962\" type=\"line\"/>\n      <point x=\"1226\" y=\"1241\" type=\"line\"/>\n      <point x=\"173\" y=\"893\" type=\"line\"/>\n      <point x=\"126\" y=\"625\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"29\" y=\"70\" type=\"line\"/>\n      <point x=\"1019\" y=\"70\" type=\"line\"/>\n      <point x=\"1062\" y=\"315\" type=\"line\"/>\n      <point x=\"72\" y=\"315\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lineF_eedC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineFeedControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240A\"/>\n  <outline>\n    <component base=\"L.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"F.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lineF_eedC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineFeedControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"992\" type=\"line\"/>\n      <point x=\"1125\" y=\"992\" type=\"line\"/>\n      <point x=\"1125\" y=\"1234\" type=\"line\"/>\n      <point x=\"75\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"430\" type=\"line\"/>\n      <point x=\"75\" y=\"430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"590\" type=\"line\"/>\n      <point x=\"1125\" y=\"590\" type=\"line\"/>\n      <point x=\"1125\" y=\"832\" type=\"line\"/>\n      <point x=\"75\" y=\"832\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lineseparator.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineseparator\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2028\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lira.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lira\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A4\"/>\n  <outline>\n    <contour>\n      <point x=\"66\" y=\"0\" type=\"line\"/>\n      <point x=\"350\" y=\"0\" type=\"line\"/>\n      <point x=\"343\" y=\"243\" type=\"line\"/>\n      <point x=\"475\" y=\"376\"/>\n      <point x=\"550\" y=\"494\"/>\n      <point x=\"573\" y=\"627\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"634\" y=\"973\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"1111\"/>\n      <point x=\"746\" y=\"1187\"/>\n      <point x=\"857\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"1187\"/>\n      <point x=\"994\" y=\"1147\"/>\n      <point x=\"1022\" y=\"1077\" type=\"curve\"/>\n      <point x=\"1252\" y=\"1233\" type=\"line\"/>\n      <point x=\"1212\" y=\"1364\"/>\n      <point x=\"1083\" y=\"1440\"/>\n      <point x=\"893\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"1440\"/>\n      <point x=\"409\" y=\"1294\"/>\n      <point x=\"364\" y=\"1036\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"627\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"269\" y=\"494\"/>\n      <point x=\"188\" y=\"377\"/>\n      <point x=\"44\" y=\"243\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"168\" y=\"0\" type=\"line\"/>\n      <point x=\"1019\" y=\"0\" type=\"line\"/>\n      <point x=\"1062\" y=\"243\" type=\"line\"/>\n      <point x=\"211\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"438\" type=\"line\"/>\n      <point x=\"880\" y=\"438\" type=\"line\"/>\n      <point x=\"913\" y=\"626\" type=\"line\"/>\n      <point x=\"108\" y=\"626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"714\" type=\"line\"/>\n      <point x=\"929\" y=\"714\" type=\"line\"/>\n      <point x=\"962\" y=\"902\" type=\"line\"/>\n      <point x=\"157\" y=\"902\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/liraT_urkish.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"liraTurkish\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BA\"/>\n  <outline>\n    <contour>\n      <point x=\"631\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"-20\"/>\n      <point x=\"914\" y=\"19\"/>\n      <point x=\"1067\" y=\"112\" type=\"curve\"/>\n      <point x=\"1004\" y=\"331\" type=\"line\"/>\n      <point x=\"882\" y=\"266\"/>\n      <point x=\"776\" y=\"233\"/>\n      <point x=\"686\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"541\" y=\"233\"/>\n      <point x=\"527\" y=\"305\"/>\n      <point x=\"557\" y=\"473\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"1420\" type=\"line\"/>\n      <point x=\"460\" y=\"1420\" type=\"line\"/>\n      <point x=\"280\" y=\"400\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"106\"/>\n      <point x=\"329\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"81\" y=\"403\" type=\"line\"/>\n      <point x=\"1000\" y=\"543\" type=\"line\"/>\n      <point x=\"1041\" y=\"776\" type=\"line\"/>\n      <point x=\"122\" y=\"636\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"148\" y=\"783\" type=\"line\"/>\n      <point x=\"1067\" y=\"923\" type=\"line\"/>\n      <point x=\"1108\" y=\"1156\" type=\"line\"/>\n      <point x=\"189\" y=\"1016\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/literS_ign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"literSign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2113\"/>\n  <outline>\n    <contour>\n      <point x=\"997\" y=\"0\" type=\"curve\"/>\n      <point x=\"1027\" y=\"252\" type=\"line\"/>\n      <point x=\"697\" y=\"252\"/>\n      <point x=\"503\" y=\"448\"/>\n      <point x=\"503\" y=\"783\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"503\" y=\"1041\"/>\n      <point x=\"577\" y=\"1189\"/>\n      <point x=\"705\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1189\"/>\n      <point x=\"824\" y=\"1116\"/>\n      <point x=\"824\" y=\"989\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"696\"/>\n      <point x=\"531\" y=\"528\"/>\n      <point x=\"20\" y=\"528\" type=\"curve\"/>\n      <point x=\"20\" y=\"277\" type=\"line\"/>\n      <point x=\"707\" y=\"277\"/>\n      <point x=\"1101\" y=\"549\"/>\n      <point x=\"1101\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"1288\"/>\n      <point x=\"957\" y=\"1440\"/>\n      <point x=\"705\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1440\"/>\n      <point x=\"226\" y=\"1201\"/>\n      <point x=\"226\" y=\"783\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"290\"/>\n      <point x=\"511\" y=\"0\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0459\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"724\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"-20\"/>\n      <point x=\"1168\" y=\"231\"/>\n      <point x=\"1178\" y=\"516\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1185\" y=\"710\"/>\n      <point x=\"1097\" y=\"810\"/>\n      <point x=\"954\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"810\"/>\n      <point x=\"813\" y=\"767\"/>\n      <point x=\"799\" y=\"751\" type=\"curve\"/>\n      <point x=\"784\" y=\"565\" type=\"line\"/>\n      <point x=\"796\" y=\"589\"/>\n      <point x=\"829\" y=\"603\"/>\n      <point x=\"854\" y=\"603\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"603\"/>\n      <point x=\"909\" y=\"571\"/>\n      <point x=\"909\" y=\"515\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"407\"/>\n      <point x=\"853\" y=\"238\"/>\n      <point x=\"767\" y=\"238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"238\"/>\n      <point x=\"724\" y=\"252\"/>\n      <point x=\"728\" y=\"283\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"372\"/>\n      <point x=\"769\" y=\"491\"/>\n      <point x=\"804\" y=\"646\" type=\"curve\"/>\n      <point x=\"834\" y=\"624\" type=\"line\"/>\n      <point x=\"834\" y=\"690\" type=\"line\"/>\n      <point x=\"861\" y=\"903\"/>\n      <point x=\"770\" y=\"1045\"/>\n      <point x=\"472\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"389\" y=\"1073\"/>\n      <point x=\"236\" y=\"1080\"/>\n      <point x=\"207\" y=\"1080\" type=\"curve\"/>\n      <point x=\"161\" y=\"873\" type=\"line\"/>\n      <point x=\"305\" y=\"866\"/>\n      <point x=\"393\" y=\"857\"/>\n      <point x=\"469\" y=\"848\" type=\"curve\"/>\n      <point x=\"496\" y=\"845\" type=\"line\"/>\n      <point x=\"624\" y=\"840\"/>\n      <point x=\"598\" y=\"721\"/>\n      <point x=\"568\" y=\"571\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"414\"/>\n      <point x=\"500\" y=\"249\"/>\n      <point x=\"500\" y=\"186\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"87\"/>\n      <point x=\"558\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"62\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"185\" y=\"-20\"/>\n      <point x=\"282\" y=\"59\"/>\n      <point x=\"354\" y=\"220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"396\"/>\n      <point x=\"483\" y=\"650\"/>\n      <point x=\"518\" y=\"914\" type=\"curve\"/>\n      <point x=\"272\" y=\"916\" type=\"line\"/>\n      <point x=\"253\" y=\"743\"/>\n      <point x=\"190\" y=\"459\"/>\n      <point x=\"136\" y=\"346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"267\"/>\n      <point x=\"69\" y=\"237\"/>\n      <point x=\"36\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"20\" y=\"237\"/>\n      <point x=\"6\" y=\"243\"/>\n      <point x=\"-4\" y=\"248\" type=\"curve\"/>\n      <point x=\"-44\" y=\"8\" type=\"line\"/>\n      <point x=\"-38\" y=\"-1\"/>\n      <point x=\"-4\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/llinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"llinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E3B\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"94\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/llinebelow.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"llinebelow.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lmiddletilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lmiddletilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026B\"/>\n  <outline>\n    <contour>\n      <point x=\"41\" y=\"563\" type=\"line\"/>\n      <point x=\"307\" y=\"563\" type=\"line\"/>\n      <point x=\"314\" y=\"609\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"685\"/>\n      <point x=\"355\" y=\"719\"/>\n      <point x=\"417\" y=\"719\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"719\"/>\n      <point x=\"506\" y=\"694\"/>\n      <point x=\"552\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"614\"/>\n      <point x=\"685\" y=\"590\"/>\n      <point x=\"773\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"590\"/>\n      <point x=\"1077\" y=\"685\"/>\n      <point x=\"1121\" y=\"907\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1136\" y=\"983\" type=\"line\"/>\n      <point x=\"872\" y=\"983\" type=\"line\"/>\n      <point x=\"864\" y=\"947\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"846\" y=\"867\"/>\n      <point x=\"817\" y=\"829\"/>\n      <point x=\"748\" y=\"829\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"829\"/>\n      <point x=\"636\" y=\"834\"/>\n      <point x=\"594\" y=\"864\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"530\" y=\"913\"/>\n      <point x=\"452\" y=\"943\"/>\n      <point x=\"358\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"181\" y=\"943\"/>\n      <point x=\"88\" y=\"855\"/>\n      <point x=\"55\" y=\"649\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lmiddletilde.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lmiddletilde.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-11\" y=\"440\" type=\"curve\"/>\n      <point x=\"190\" y=\"541\" type=\"line\"/>\n      <point x=\"163\" y=\"592\"/>\n      <point x=\"152\" y=\"632\"/>\n      <point x=\"152\" y=\"667\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"732\"/>\n      <point x=\"187\" y=\"763\"/>\n      <point x=\"266\" y=\"778\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"936\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1331\" y=\"977\"/>\n      <point x=\"1434\" y=\"1069\"/>\n      <point x=\"1434\" y=\"1261\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1434\" y=\"1330\"/>\n      <point x=\"1412\" y=\"1405\"/>\n      <point x=\"1360\" y=\"1496\" type=\"curve\"/>\n      <point x=\"1159\" y=\"1395\" type=\"line\"/>\n      <point x=\"1186\" y=\"1344\"/>\n      <point x=\"1197\" y=\"1304\"/>\n      <point x=\"1197\" y=\"1269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1197\" y=\"1204\"/>\n      <point x=\"1162\" y=\"1172\"/>\n      <point x=\"1083\" y=\"1158\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1012\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"19\" y=\"974\"/>\n      <point x=\"-85\" y=\"874\"/>\n      <point x=\"-85\" y=\"675\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-85\" y=\"606\"/>\n      <point x=\"-63\" y=\"531\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/logicalnot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"logicalnot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AC\"/>\n  <outline>\n    <contour>\n      <point x=\"112\" y=\"689\" type=\"line\"/>\n      <point x=\"1145\" y=\"689\" type=\"line\"/>\n      <point x=\"1187\" y=\"931\" type=\"line\"/>\n      <point x=\"154\" y=\"931\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"819\" y=\"350\" type=\"line\"/>\n      <point x=\"1085\" y=\"350\" type=\"line\"/>\n      <point x=\"1167\" y=\"817\" type=\"line\"/>\n      <point x=\"901\" y=\"817\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/logicalnotR_eversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"logicalnotReversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2310\"/>\n  <outline>\n    <contour>\n      <point x=\"112\" y=\"689\" type=\"line\"/>\n      <point x=\"1145\" y=\"689\" type=\"line\"/>\n      <point x=\"1187\" y=\"931\" type=\"line\"/>\n      <point x=\"154\" y=\"931\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"52\" y=\"350\" type=\"line\"/>\n      <point x=\"318\" y=\"350\" type=\"line\"/>\n      <point x=\"400\" y=\"817\" type=\"line\"/>\n      <point x=\"134\" y=\"817\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/longs.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"longs\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017F\"/>\n  <anchor x=\"418\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-85\" y=\"-477\" type=\"line\"/>\n      <point x=\"84\" y=\"-459\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"-425\"/>\n      <point x=\"584\" y=\"-291\"/>\n      <point x=\"622\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"1181\"/>\n      <point x=\"842\" y=\"1263\"/>\n      <point x=\"1028\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"1263\"/>\n      <point x=\"1148\" y=\"1259\"/>\n      <point x=\"1242\" y=\"1249\" type=\"curve\"/>\n      <point x=\"1312\" y=\"1500\" type=\"line\"/>\n      <point x=\"1235\" y=\"1514\"/>\n      <point x=\"1166\" y=\"1520\"/>\n      <point x=\"1079\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1520\"/>\n      <point x=\"484\" y=\"1360\"/>\n      <point x=\"444\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"92\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"-117\"/>\n      <point x=\"222\" y=\"-187\"/>\n      <point x=\"48\" y=\"-206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-92\" y=\"-221\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"67\" y=\"617\" type=\"line\"/>\n      <point x=\"581\" y=\"617\" type=\"line\"/>\n      <point x=\"622\" y=\"849\" type=\"line\"/>\n      <point x=\"108\" y=\"849\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2585\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E1\"/>\n  <note>\nuni25E1\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"917\" y=\"710\" type=\"line\"/>\n      <point x=\"917\" y=\"519\"/>\n      <point x=\"791\" y=\"393\"/>\n      <point x=\"600\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"393\"/>\n      <point x=\"283\" y=\"519\"/>\n      <point x=\"283\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D2\"/>\n  <note>\nuni25D2\n</note>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"252\" type=\"line\"/>\n      <point x=\"1015\" y=\"412\" type=\"line\"/>\n      <point x=\"1015\" y=\"710\" type=\"line\"/>\n      <point x=\"181\" y=\"710\" type=\"line\"/>\n      <point x=\"181\" y=\"459\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2584\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfInverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DB\"/>\n  <note>\nuni25DB\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"185\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"393\"/>\n      <point x=\"917\" y=\"519\"/>\n      <point x=\"917\" y=\"710\" type=\"curve\"/>\n      <point x=\"283\" y=\"710\" type=\"line\"/>\n      <point x=\"283\" y=\"519\"/>\n      <point x=\"409\" y=\"393\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B12\"/>\n  <note>\nuni2B12\n</note>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"1195\" type=\"line\"/>\n      <point x=\"125\" y=\"1195\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DF\"/>\n  <note>\nuni25DF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\"/>\n      <point x=\"600\" y=\"393\" type=\"line\"/>\n      <point x=\"409\" y=\"393\"/>\n      <point x=\"283\" y=\"519\"/>\n      <point x=\"283\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E3\"/>\n  <note>\nuni25E3\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2596\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B14\"/>\n  <note>\nuni2B14\n</note>\n  <outline>\n    <contour>\n      <point x=\"111\" y=\"1209\" type=\"line\"/>\n      <point x=\"1090\" y=\"221\" type=\"line\"/>\n      <point x=\"1090\" y=\"1209\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F5\"/>\n  <note>\nuni25F5\n</note>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"263\" type=\"line\"/>\n      <point x=\"692\" y=\"263\" type=\"line\"/>\n      <point x=\"692\" y=\"802\" type=\"line\"/>\n      <point x=\"162\" y=\"802\" type=\"line\"/>\n      <point x=\"162\" y=\"618\" type=\"line\"/>\n      <point x=\"508\" y=\"618\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FA\"/>\n  <note>\nuni25FA\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"913\" type=\"line\"/>\n      <point x=\"753\" y=\"261\" type=\"line\"/>\n      <point x=\"844\" y=\"402\" type=\"line\"/>\n      <point x=\"144\" y=\"402\" type=\"line\"/>\n      <point x=\"292\" y=\"254\" type=\"line\"/>\n      <point x=\"292\" y=\"954\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2581\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2582\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DE\"/>\n  <note>\nuni25DE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"line\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"917\" y=\"710\" type=\"line\"/>\n      <point x=\"917\" y=\"519\"/>\n      <point x=\"791\" y=\"393\"/>\n      <point x=\"600\" y=\"393\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E2\"/>\n  <note>\nuni25E2\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2597\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightDiagonalHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EA\"/>\n  <note>\nuni25EA\n</note>\n  <outline>\n    <contour>\n      <point x=\"1099\" y=\"1199\" type=\"line\"/>\n      <point x=\"111\" y=\"220\" type=\"line\"/>\n      <point x=\"1099\" y=\"220\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F6\"/>\n  <note>\nuni25F6\n</note>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"263\" type=\"line\"/>\n      <point x=\"692\" y=\"263\" type=\"line\"/>\n      <point x=\"692\" y=\"618\" type=\"line\"/>\n      <point x=\"1058\" y=\"618\" type=\"line\"/>\n      <point x=\"1058\" y=\"802\" type=\"line\"/>\n      <point x=\"508\" y=\"802\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FF\"/>\n  <note>\nuni25FF\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1099\" y=\"913\" type=\"line\"/>\n      <point x=\"908\" y=\"954\" type=\"line\"/>\n      <point x=\"908\" y=\"254\" type=\"line\"/>\n      <point x=\"1056\" y=\"402\" type=\"line\"/>\n      <point x=\"356\" y=\"402\" type=\"line\"/>\n      <point x=\"447\" y=\"261\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2587\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2583\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2586\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowernumeral-greek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowernumeral-greek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0375\"/>\n  <outline>\n    <component base=\"comma\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lowlinecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowlinecomb\" format=\"2\">\n  <unicode hex=\"0332\"/>\n  <anchor x=\"506\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"432\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"-224\" y=\"-459\" type=\"line\"/>\n      <point x=\"1076\" y=\"-459\" type=\"line\"/>\n      <point x=\"1120\" y=\"-208\" type=\"line\"/>\n      <point x=\"-180\" y=\"-208\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CA\"/>\n  <outline>\n    <contour>\n      <point x=\"454\" y=\"0\" type=\"line\"/>\n      <point x=\"736\" y=\"0\" type=\"line\"/>\n      <point x=\"1120\" y=\"710\" type=\"line\"/>\n      <point x=\"736\" y=\"1420\" type=\"line\"/>\n      <point x=\"454\" y=\"1420\" type=\"line\"/>\n      <point x=\"80\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"230\" type=\"line\"/>\n      <point x=\"353\" y=\"710\" type=\"line\"/>\n      <point x=\"595\" y=\"1190\" type=\"line\"/>\n      <point x=\"847\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0142\"/>\n  <outline>\n    <contour>\n      <point x=\"114\" y=\"422\" type=\"line\"/>\n      <point x=\"1110\" y=\"893\" type=\"line\"/>\n      <point x=\"1042\" y=\"1087\" type=\"line\"/>\n      <point x=\"47\" y=\"616\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/lslash.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lslash.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"69\" y=\"570\" type=\"line\"/>\n      <point x=\"1306\" y=\"1139\" type=\"line\"/>\n      <point x=\"1238\" y=\"1333\" type=\"line\"/>\n      <point x=\"2\" y=\"764\" type=\"line\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/m.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"m\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006D\"/>\n  <guideline x=\"602\" y=\"0\" angle=\"80\"/>\n  <guideline x=\"410\" y=\"0\" angle=\"80\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"425\" y=\"1060\" type=\"line\"/>\n      <point x=\"191\" y=\"1060\" type=\"line\"/>\n      <point x=\"2\" y=\"0\" type=\"line\"/>\n      <point x=\"273\" y=\"0\" type=\"line\"/>\n      <point x=\"411\" y=\"787\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"410\" y=\"0\" type=\"line\"/>\n      <point x=\"602\" y=\"0\" type=\"line\"/>\n      <point x=\"743\" y=\"800\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"995\"/>\n      <point x=\"734\" y=\"1080\"/>\n      <point x=\"628\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"1080\"/>\n      <point x=\"487\" y=\"1037\"/>\n      <point x=\"447\" y=\"928\" type=\"curve\"/>\n      <point x=\"387\" y=\"928\" type=\"line\"/>\n      <point x=\"391\" y=\"677\" type=\"line\"/>\n      <point x=\"411\" y=\"778\"/>\n      <point x=\"443\" y=\"828\"/>\n      <point x=\"492\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"828\"/>\n      <point x=\"550\" y=\"794\"/>\n      <point x=\"540\" y=\"736\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1153\" y=\"800\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1186\" y=\"985\"/>\n      <point x=\"1132\" y=\"1080\"/>\n      <point x=\"987\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"1080\"/>\n      <point x=\"824\" y=\"1039\"/>\n      <point x=\"781\" y=\"928\" type=\"curve\"/>\n      <point x=\"717\" y=\"928\" type=\"line\"/>\n      <point x=\"721\" y=\"677\" type=\"line\"/>\n      <point x=\"738\" y=\"778\"/>\n      <point x=\"779\" y=\"828\"/>\n      <point x=\"828\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"828\"/>\n      <point x=\"880\" y=\"794\"/>\n      <point x=\"870\" y=\"736\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"739\" y=\"0\" type=\"line\"/>\n      <point x=\"1010\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AF\"/>\n  <outline>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/macronbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macronbelowcomb\" format=\"2\">\n  <unicode hex=\"0331\"/>\n  <anchor x=\"506\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"432\" y=\"-418\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"-4\" y=\"-459\" type=\"line\"/>\n      <point x=\"856\" y=\"-459\" type=\"line\"/>\n      <point x=\"900\" y=\"-208\" type=\"line\"/>\n      <point x=\"40\" y=\"-208\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/macroncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macroncomb.case\" format=\"2\">\n  <anchor x=\"755\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"816\" y=\"1761\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"395\" y=\"1563\" type=\"line\"/>\n      <point x=\"1169\" y=\"1563\" type=\"line\"/>\n      <point x=\"1211\" y=\"1801\" type=\"line\"/>\n      <point x=\"437\" y=\"1801\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/macroncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macroncomb\" format=\"2\">\n  <unicode hex=\"0304\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"763\" y=\"1459\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"297\" y=\"1248\" type=\"line\"/>\n      <point x=\"1157\" y=\"1248\" type=\"line\"/>\n      <point x=\"1201\" y=\"1499\" type=\"line\"/>\n      <point x=\"341\" y=\"1499\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/manat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"manat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BC\"/>\n  <outline>\n    <contour>\n      <point x=\"-34\" y=\"0\" type=\"line\"/>\n      <point x=\"232\" y=\"0\" type=\"line\"/>\n      <point x=\"327\" y=\"540\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"370\" y=\"784\"/>\n      <point x=\"484\" y=\"905\"/>\n      <point x=\"666\" y=\"905\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"905\"/>\n      <point x=\"920\" y=\"784\"/>\n      <point x=\"877\" y=\"540\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"0\" type=\"line\"/>\n      <point x=\"1143\" y=\"540\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1215\" y=\"952\"/>\n      <point x=\"1070\" y=\"1157\"/>\n      <point x=\"711\" y=\"1157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"352\" y=\"1157\"/>\n      <point x=\"133\" y=\"952\"/>\n      <point x=\"61\" y=\"540\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"404\" y=\"0\" type=\"line\"/>\n      <point x=\"610\" y=\"0\" type=\"line\"/>\n      <point x=\"860\" y=\"1420\" type=\"line\"/>\n      <point x=\"654\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/mars.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mars\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2642\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"-20\"/>\n      <point x=\"856\" y=\"162\"/>\n      <point x=\"912\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"966\" y=\"785\"/>\n      <point x=\"832\" y=\"960\"/>\n      <point x=\"546\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"960\"/>\n      <point x=\"64\" y=\"785\"/>\n      <point x=\"10\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-46\" y=\"162\"/>\n      <point x=\"87\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"418\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"233\"/>\n      <point x=\"261\" y=\"322\"/>\n      <point x=\"289\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"315\" y=\"625\"/>\n      <point x=\"391\" y=\"708\"/>\n      <point x=\"501\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"708\"/>\n      <point x=\"659\" y=\"625\"/>\n      <point x=\"633\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"322\"/>\n      <point x=\"528\" y=\"233\"/>\n    </contour>\n    <contour>\n      <point x=\"729\" y=\"717\" type=\"line\"/>\n      <point x=\"1224\" y=\"1195\" type=\"line\"/>\n      <point x=\"1036\" y=\"1335\" type=\"line\"/>\n      <point x=\"569\" y=\"901\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"976\" y=\"747\" type=\"line\"/>\n      <point x=\"1236\" y=\"747\" type=\"line\"/>\n      <point x=\"1295\" y=\"1410\" type=\"line\"/>\n      <point x=\"1145\" y=\"1410\" type=\"line\"/>\n      <point x=\"1038\" y=\"1068\" type=\"line\"/>\n      <point x=\"1086\" y=\"1020\" type=\"line\"/>\n      <point x=\"1012\" y=\"939\"/>\n      <point x=\"992\" y=\"885\"/>\n      <point x=\"987\" y=\"841\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"618\" y=\"1150\" type=\"line\"/>\n      <point x=\"689\" y=\"1150\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"742\" y=\"1150\"/>\n      <point x=\"797\" y=\"1158\"/>\n      <point x=\"871\" y=\"1229\" type=\"curve\"/>\n      <point x=\"927\" y=\"1172\" type=\"line\"/>\n      <point x=\"1263\" y=\"1230\" type=\"line\"/>\n      <point x=\"1295\" y=\"1410\" type=\"line\"/>\n      <point x=\"618\" y=\"1410\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumB_lackS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumBlackSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FE\"/>\n  <note>\nuni25FE\n</note>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FC\"/>\n  <note>\nuni25FC\n</note>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"1160\" type=\"line\"/>\n      <point x=\"150\" y=\"1160\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumW_hiteS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumWhiteSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FD\"/>\n  <note>\nuni25FD\n</note>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FB\"/>\n  <note>\nuni25FB\n</note>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"1160\" type=\"line\"/>\n      <point x=\"150\" y=\"1160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"333\" y=\"443\" type=\"line\"/>\n      <point x=\"333\" y=\"977\" type=\"line\"/>\n      <point x=\"867\" y=\"977\" type=\"line\"/>\n      <point x=\"867\" y=\"443\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumleftpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumleftpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276C\"/>\n  <outline>\n    <contour>\n      <point x=\"588\" y=\"0\" type=\"line\"/>\n      <point x=\"896\" y=\"0\" type=\"line\"/>\n      <point x=\"549\" y=\"701\" type=\"line\"/>\n      <point x=\"553\" y=\"719\" type=\"line\"/>\n      <point x=\"1172\" y=\"1420\" type=\"line\"/>\n      <point x=\"834\" y=\"1420\" type=\"line\"/>\n      <point x=\"235\" y=\"719\" type=\"line\"/>\n      <point x=\"231\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumrightpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumrightpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276D\"/>\n  <outline>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"429\" y=\"0\" type=\"line\"/>\n      <point x=\"1028\" y=\"701\" type=\"line\"/>\n      <point x=\"1032\" y=\"719\" type=\"line\"/>\n      <point x=\"675\" y=\"1420\" type=\"line\"/>\n      <point x=\"367\" y=\"1420\" type=\"line\"/>\n      <point x=\"714\" y=\"719\" type=\"line\"/>\n      <point x=\"710\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/micro.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"micro\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B5\"/>\n  <outline>\n    <component base=\"mu\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/minus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"minus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2212\"/>\n  <outline>\n    <contour>\n      <point x=\"94\" y=\"587\" type=\"line\"/>\n      <point x=\"1127\" y=\"587\" type=\"line\"/>\n      <point x=\"1169\" y=\"830\" type=\"line\"/>\n      <point x=\"136\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/minute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"minute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2032\"/>\n  <outline>\n    <contour>\n      <point x=\"471\" y=\"780\" type=\"line\"/>\n      <point x=\"693\" y=\"780\" type=\"line\"/>\n      <point x=\"991\" y=\"1420\" type=\"line\"/>\n      <point x=\"679\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/mu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BC\"/>\n  <anchor x=\"425\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"511\" y=\"-469\" type=\"line\"/>\n      <point x=\"576\" y=\"-194\" type=\"line\"/>\n      <point x=\"545\" y=\"-189\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"-163\"/>\n      <point x=\"330\" y=\"-122\"/>\n      <point x=\"335\" y=\"-14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"243\"/>\n      <point x=\"388\" y=\"578\"/>\n      <point x=\"475\" y=\"1051\" type=\"curve\"/>\n      <point x=\"198\" y=\"1080\" type=\"line\"/>\n      <point x=\"132\" y=\"720\"/>\n      <point x=\"82\" y=\"413\"/>\n      <point x=\"67\" y=\"103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"53\" y=\"-242\"/>\n      <point x=\"209\" y=\"-450\"/>\n      <point x=\"495\" y=\"-468\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"313\" y=\"-21\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"-27\"/>\n      <point x=\"665\" y=\"94\"/>\n      <point x=\"719\" y=\"279\" type=\"curve\"/>\n      <point x=\"660\" y=\"224\" type=\"line\"/>\n      <point x=\"746\" y=\"224\" type=\"line\"/>\n      <point x=\"756\" y=\"667\" type=\"line\"/>\n      <point x=\"711\" y=\"388\"/>\n      <point x=\"586\" y=\"236\"/>\n      <point x=\"408\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"236\" type=\"line\"/>\n      <point x=\"272\" y=\"-20\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1032\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1104\" y=\"-9\" type=\"line\"/>\n      <point x=\"1144\" y=\"219\" type=\"line\"/>\n      <point x=\"1095\" y=\"219\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"993\" y=\"219\"/>\n      <point x=\"956\" y=\"247\"/>\n      <point x=\"969\" y=\"318\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1059\" type=\"line\"/>\n      <point x=\"826\" y=\"1059\" type=\"line\"/>\n      <point x=\"723\" y=\"481\" type=\"line\"/>\n      <point x=\"727\" y=\"376\" type=\"line\"/>\n      <point x=\"727\" y=\"236\" type=\"line\"/>\n      <point x=\"703\" y=\"33\"/>\n      <point x=\"805\" y=\"-13\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/multiply.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"multiply\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D7\"/>\n  <guideline x=\"314\" y=\"114\" angle=\"0\"/>\n  <guideline x=\"314\" y=\"574\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"244\" y=\"173\" type=\"line\"/>\n      <point x=\"91\" y=\"359\" type=\"line\"/>\n      <point x=\"1012\" y=\"1203\" type=\"line\"/>\n      <point x=\"1165\" y=\"1017\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"846\" y=\"193\" type=\"line\"/>\n      <point x=\"207\" y=\"1015\" type=\"line\"/>\n      <point x=\"410\" y=\"1183\" type=\"line\"/>\n      <point x=\"1049\" y=\"359\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/n.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"n\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"58\" y=\"0\" type=\"line\"/>\n      <point x=\"333\" y=\"0\" type=\"line\"/>\n      <point x=\"475\" y=\"807\" type=\"line\"/>\n      <point x=\"482\" y=\"1060\" type=\"line\"/>\n      <point x=\"245\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"680\" y=\"0\" type=\"line\"/>\n      <point x=\"955\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1119\" y=\"931\"/>\n      <point x=\"1026\" y=\"1080\"/>\n      <point x=\"800\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1080\"/>\n      <point x=\"551\" y=\"1003\"/>\n      <point x=\"506\" y=\"868\" type=\"curve\"/>\n      <point x=\"471\" y=\"868\" type=\"line\"/>\n      <point x=\"423\" y=\"511\" type=\"line\"/>\n      <point x=\"461\" y=\"745\"/>\n      <point x=\"563\" y=\"823\"/>\n      <point x=\"677\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"823\"/>\n      <point x=\"814\" y=\"760\"/>\n      <point x=\"793\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0144\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"acutecomb.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/naira.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"naira\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A6\"/>\n  <outline>\n    <contour>\n      <point x=\"12\" y=\"599\" type=\"line\"/>\n      <point x=\"1211\" y=\"599\" type=\"line\"/>\n      <point x=\"1251\" y=\"821\" type=\"line\"/>\n      <point x=\"52\" y=\"821\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/napostrophe.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"napostrophe\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0149\"/>\n  <outline>\n    <contour>\n      <point x=\"302\" y=\"1110\" type=\"line\"/>\n      <point x=\"374\" y=\"1173\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"1277\"/>\n      <point x=\"575\" y=\"1382\"/>\n      <point x=\"575\" y=\"1509\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"1661\"/>\n      <point x=\"485\" y=\"1740\"/>\n      <point x=\"305\" y=\"1740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"230\" y=\"1740\" type=\"line\"/>\n      <point x=\"186\" y=\"1496\" type=\"line\"/>\n      <point x=\"231\" y=\"1496\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"277\" y=\"1496\"/>\n      <point x=\"301\" y=\"1479\"/>\n      <point x=\"301\" y=\"1447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"301\" y=\"1407\"/>\n      <point x=\"263\" y=\"1371\"/>\n      <point x=\"219\" y=\"1333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"154\" y=\"1277\" type=\"line\"/>\n    </contour>\n    <component base=\"n\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nbspace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nbspace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A0\"/>\n  <outline>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ncaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ncaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0148\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ncommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ncommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0146\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"negativeAcknowledgeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2415\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"K.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>K.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"negativeAcknowledgeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"535\" type=\"line\"/>\n      <point x=\"1125\" y=\"775\" type=\"line\"/>\n      <point x=\"459\" y=\"1020\" type=\"line\"/>\n      <point x=\"459\" y=\"780\" type=\"line\"/>\n    </contour>\n    <component base=\"acknowledgeControl.ss20\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/newlineC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"newlineControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2424\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nhookleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nhookleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0272\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-286\" y=\"-472\" type=\"line\"/>\n      <point x=\"-246\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"-426\"/>\n      <point x=\"287\" y=\"-267\"/>\n      <point x=\"357\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"807\" type=\"line\"/>\n      <point x=\"482\" y=\"1060\" type=\"line\"/>\n      <point x=\"244\" y=\"1060\" type=\"line\"/>\n      <point x=\"75\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"38\" y=\"-107\"/>\n      <point x=\"-17\" y=\"-194\"/>\n      <point x=\"-226\" y=\"-224\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-296\" y=\"-234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"680\" y=\"0\" type=\"line\"/>\n      <point x=\"955\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1119\" y=\"931\"/>\n      <point x=\"1026\" y=\"1080\"/>\n      <point x=\"800\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1080\"/>\n      <point x=\"551\" y=\"1003\"/>\n      <point x=\"506\" y=\"868\" type=\"curve\"/>\n      <point x=\"471\" y=\"868\" type=\"line\"/>\n      <point x=\"423\" y=\"511\" type=\"line\"/>\n      <point x=\"461\" y=\"745\"/>\n      <point x=\"563\" y=\"823\"/>\n      <point x=\"677\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"823\"/>\n      <point x=\"814\" y=\"760\"/>\n      <point x=\"793\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nine.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ninesuperior\" xOffset=\"-144\" yOffset=\"-814\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0039\"/>\n  <outline>\n    <contour>\n      <point x=\"128\" y=\"-20\" type=\"line\"/>\n      <point x=\"831\" y=\"12\"/>\n      <point x=\"1168\" y=\"395\"/>\n      <point x=\"1168\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1168\" y=\"1284\"/>\n      <point x=\"1017\" y=\"1426\"/>\n      <point x=\"729\" y=\"1426\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"1426\"/>\n      <point x=\"152\" y=\"1197\"/>\n      <point x=\"152\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"635\"/>\n      <point x=\"272\" y=\"506\"/>\n      <point x=\"499\" y=\"506\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"506\"/>\n      <point x=\"777\" y=\"596\"/>\n      <point x=\"836\" y=\"754\" type=\"curve\"/>\n      <point x=\"861\" y=\"754\" type=\"line\"/>\n      <point x=\"804\" y=\"420\"/>\n      <point x=\"562\" y=\"250\"/>\n      <point x=\"142\" y=\"232\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"626\" y=\"758\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"758\"/>\n      <point x=\"435\" y=\"822\"/>\n      <point x=\"435\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"435\" y=\"1072\"/>\n      <point x=\"547\" y=\"1174\"/>\n      <point x=\"695\" y=\"1174\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"1174\"/>\n      <point x=\"879\" y=\"1116\"/>\n      <point x=\"879\" y=\"1001\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"856\"/>\n      <point x=\"777\" y=\"758\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nine.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ninesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nineinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nineinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2089\"/>\n  <outline>\n    <component base=\"ninesuperior\" xOffset=\"-144\" yOffset=\"-814\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ninesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ninesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2079\"/>\n  <outline>\n    <contour>\n      <point x=\"423\" y=\"793\" type=\"line\"/>\n      <point x=\"774\" y=\"803\"/>\n      <point x=\"1009\" y=\"914\"/>\n      <point x=\"1009\" y=\"1226\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1009\" y=\"1372\"/>\n      <point x=\"925\" y=\"1440\"/>\n      <point x=\"747\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"1440\"/>\n      <point x=\"417\" y=\"1359\"/>\n      <point x=\"417\" y=\"1199\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"1097\"/>\n      <point x=\"467\" y=\"1040\"/>\n      <point x=\"562\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"1040\"/>\n      <point x=\"713\" y=\"1072\"/>\n      <point x=\"742\" y=\"1128\" type=\"curve\"/>\n      <point x=\"767\" y=\"1128\" type=\"line\"/>\n      <point x=\"748\" y=\"1026\"/>\n      <point x=\"653\" y=\"980\"/>\n      <point x=\"447\" y=\"976\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"707\" y=\"1183\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"668\" y=\"1183\"/>\n      <point x=\"647\" y=\"1200\"/>\n      <point x=\"647\" y=\"1228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1263\"/>\n      <point x=\"678\" y=\"1285\"/>\n      <point x=\"725\" y=\"1285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"1285\"/>\n      <point x=\"788\" y=\"1270\"/>\n      <point x=\"788\" y=\"1240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"1204\"/>\n      <point x=\"756\" y=\"1183\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"724\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"-20\"/>\n      <point x=\"1168\" y=\"231\"/>\n      <point x=\"1178\" y=\"516\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1185\" y=\"710\"/>\n      <point x=\"1097\" y=\"810\"/>\n      <point x=\"954\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"897\" y=\"810\"/>\n      <point x=\"841\" y=\"783\"/>\n      <point x=\"815\" y=\"764\" type=\"curve\"/>\n      <point x=\"749\" y=\"764\" type=\"line\"/>\n      <point x=\"768\" y=\"560\" type=\"line\"/>\n      <point x=\"779\" y=\"587\"/>\n      <point x=\"814\" y=\"603\"/>\n      <point x=\"854\" y=\"603\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"603\"/>\n      <point x=\"909\" y=\"571\"/>\n      <point x=\"909\" y=\"515\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"407\"/>\n      <point x=\"853\" y=\"237\"/>\n      <point x=\"770\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"237\"/>\n      <point x=\"726\" y=\"279\"/>\n      <point x=\"730\" y=\"307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"414\"/>\n      <point x=\"773\" y=\"555\"/>\n      <point x=\"797\" y=\"690\" type=\"curve\"/>\n      <point x=\"857\" y=\"706\" type=\"line\"/>\n      <point x=\"919\" y=\"1060\" type=\"line\"/>\n      <point x=\"648\" y=\"1060\" type=\"line\"/>\n      <point x=\"508\" y=\"265\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"232\"/>\n      <point x=\"500\" y=\"205\"/>\n      <point x=\"500\" y=\"186\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"87\"/>\n      <point x=\"558\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"-22\" y=\"0\" type=\"line\"/>\n      <point x=\"253\" y=\"0\" type=\"line\"/>\n      <point x=\"440\" y=\"1060\" type=\"line\"/>\n      <point x=\"165\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"234\" y=\"500\" type=\"line\"/>\n      <point x=\"729\" y=\"500\" type=\"line\"/>\n      <point x=\"773\" y=\"736\" type=\"line\"/>\n      <point x=\"278\" y=\"736\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nlinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E49\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"207F\"/>\n  <outline>\n    <contour>\n      <point x=\"707\" y=\"790\" type=\"line\"/>\n      <point x=\"969\" y=\"790\" type=\"line\"/>\n      <point x=\"1051\" y=\"1256\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"1372\"/>\n      <point x=\"1018\" y=\"1440\"/>\n      <point x=\"907\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"1440\"/>\n      <point x=\"738\" y=\"1388\"/>\n      <point x=\"703\" y=\"1296\" type=\"curve\"/>\n      <point x=\"639\" y=\"1296\" type=\"line\"/>\n      <point x=\"656\" y=\"1179\" type=\"line\"/>\n      <point x=\"665\" y=\"1228\"/>\n      <point x=\"692\" y=\"1252\"/>\n      <point x=\"731\" y=\"1252\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"771\" y=\"1252\"/>\n      <point x=\"784\" y=\"1230\"/>\n      <point x=\"776\" y=\"1185\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"790\" type=\"line\"/>\n      <point x=\"588\" y=\"790\" type=\"line\"/>\n      <point x=\"676\" y=\"1293\" type=\"line\"/>\n      <point x=\"688\" y=\"1428\" type=\"line\"/>\n      <point x=\"436\" y=\"1428\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nonbreakinghyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nonbreakinghyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2011\"/>\n  <outline>\n    <component base=\"hyphentwo\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/note-musical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"note-musical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"266A\"/>\n  <outline>\n    <contour>\n      <point x=\"885\" y=\"574\" type=\"line\"/>\n      <point x=\"1100\" y=\"736\"/>\n      <point x=\"1206\" y=\"901\"/>\n      <point x=\"1206\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1206\" y=\"1306\"/>\n      <point x=\"1034\" y=\"1420\"/>\n      <point x=\"687\" y=\"1420\" type=\"curve\"/>\n      <point x=\"687\" y=\"1124\" type=\"line\"/>\n      <point x=\"859\" y=\"1124\"/>\n      <point x=\"944\" y=\"1063\"/>\n      <point x=\"944\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"826\"/>\n      <point x=\"900\" y=\"728\"/>\n      <point x=\"811\" y=\"646\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"301\" y=\"-17\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"-17\"/>\n      <point x=\"559\" y=\"71\"/>\n      <point x=\"585\" y=\"205\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"302\"/>\n      <point x=\"497\" y=\"368\"/>\n      <point x=\"361\" y=\"368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"368\"/>\n      <point x=\"97\" y=\"301\"/>\n      <point x=\"97\" y=\"165\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"97\" y=\"44\"/>\n      <point x=\"165\" y=\"-17\"/>\n    </contour>\n    <contour>\n      <point x=\"463\" y=\"185\" type=\"line\"/>\n      <point x=\"585\" y=\"205\" type=\"line\"/>\n      <point x=\"809\" y=\"1370\" type=\"line\"/>\n      <point x=\"687\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/notedbl-musical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notedbl-musical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"266B\"/>\n  <outline>\n    <contour>\n      <point x=\"430\" y=\"204\" type=\"line\"/>\n      <point x=\"637\" y=\"1380\" type=\"line\"/>\n      <point x=\"480\" y=\"1380\" type=\"line\"/>\n      <point x=\"276\" y=\"218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"-20\"/>\n      <point x=\"406\" y=\"64\"/>\n      <point x=\"430\" y=\"204\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"347\"/>\n      <point x=\"346\" y=\"435\"/>\n      <point x=\"204\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"35\" y=\"435\"/>\n      <point x=\"-66\" y=\"346\"/>\n      <point x=\"-66\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-66\" y=\"60\"/>\n      <point x=\"20\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"815\" y=\"97\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"97\"/>\n      <point x=\"1056\" y=\"181\"/>\n      <point x=\"1081\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1107\" y=\"464\"/>\n      <point x=\"997\" y=\"552\"/>\n      <point x=\"855\" y=\"552\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"552\"/>\n      <point x=\"585\" y=\"463\"/>\n      <point x=\"585\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"585\" y=\"177\"/>\n      <point x=\"671\" y=\"97\"/>\n    </contour>\n    <contour>\n      <point x=\"1081\" y=\"321\" type=\"line\"/>\n      <point x=\"1283\" y=\"1460\" type=\"line\"/>\n      <point x=\"1140\" y=\"1420\" type=\"line\"/>\n      <point x=\"945\" y=\"335\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"419\" y=\"1016\" type=\"line\"/>\n      <point x=\"1211\" y=\"1096\" type=\"line\"/>\n      <point x=\"1283\" y=\"1460\" type=\"line\"/>\n      <point x=\"480\" y=\"1380\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/notequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2260\"/>\n  <outline>\n    <contour>\n      <point x=\"16\" y=\"0\" type=\"line\"/>\n      <point x=\"294\" y=\"0\" type=\"line\"/>\n      <point x=\"1248\" y=\"1420\" type=\"line\"/>\n      <point x=\"970\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"equal\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/notidentical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notidentical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2262\"/>\n  <outline>\n    <contour>\n      <point x=\"47\" y=\"0\" type=\"line\"/>\n      <point x=\"326\" y=\"0\" type=\"line\"/>\n      <point x=\"1213\" y=\"1420\" type=\"line\"/>\n      <point x=\"934\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"equivalence\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F1\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BD\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"287\" y=\"0\" type=\"line\"/>\n      <point x=\"546\" y=\"79\" type=\"line\"/>\n      <point x=\"509\" y=\"608\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"908\"/>\n      <point x=\"390\" y=\"1016\"/>\n      <point x=\"224\" y=\"1080\" type=\"curve\"/>\n      <point x=\"78\" y=\"833\" type=\"line\"/>\n      <point x=\"166\" y=\"809\"/>\n      <point x=\"230\" y=\"728\"/>\n      <point x=\"243\" y=\"562\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"603\" y=\"-6\" type=\"line\"/>\n      <point x=\"955\" y=\"143\"/>\n      <point x=\"1105\" y=\"419\"/>\n      <point x=\"1188\" y=\"1060\" type=\"curve\"/>\n      <point x=\"901\" y=\"1060\" type=\"line\"/>\n      <point x=\"850\" y=\"575\"/>\n      <point x=\"754\" y=\"343\"/>\n      <point x=\"520\" y=\"234\" type=\"curve\"/>\n      <point x=\"287\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/nullC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nullControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2400\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"U.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>U.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0023\"/>\n  <outline>\n    <contour>\n      <point x=\"534\" y=\"0\" type=\"line\"/>\n      <point x=\"777\" y=\"0\" type=\"line\"/>\n      <point x=\"1147\" y=\"1420\" type=\"line\"/>\n      <point x=\"904\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"44\" y=\"310\" type=\"line\"/>\n      <point x=\"1077\" y=\"310\" type=\"line\"/>\n      <point x=\"1121\" y=\"558\" type=\"line\"/>\n      <point x=\"88\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"0\" type=\"line\"/>\n      <point x=\"358\" y=\"0\" type=\"line\"/>\n      <point x=\"728\" y=\"1420\" type=\"line\"/>\n      <point x=\"485\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"142\" y=\"862\" type=\"line\"/>\n      <point x=\"1175\" y=\"862\" type=\"line\"/>\n      <point x=\"1219\" y=\"1110\" type=\"line\"/>\n      <point x=\"186\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_braceleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_braceleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1897\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1988\" y=\"-214\"/>\n      <point x=\"2043\" y=\"-205\"/>\n      <point x=\"2091\" y=\"-194\" type=\"curve\"/>\n      <point x=\"2097\" y=\"45\" type=\"line\"/>\n      <point x=\"2056\" y=\"39\"/>\n      <point x=\"2017\" y=\"35\"/>\n      <point x=\"1987\" y=\"35\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1922\" y=\"35\"/>\n      <point x=\"1883\" y=\"65\"/>\n      <point x=\"1887\" y=\"118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1897\" y=\"257\"/>\n      <point x=\"2027\" y=\"312\"/>\n      <point x=\"2027\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2027\" y=\"610\"/>\n      <point x=\"1932\" y=\"680\"/>\n      <point x=\"1767\" y=\"684\" type=\"curve\"/>\n      <point x=\"1773\" y=\"728\" type=\"line\"/>\n      <point x=\"1999\" y=\"732\"/>\n      <point x=\"2110\" y=\"832\"/>\n      <point x=\"2110\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2110\" y=\"1095\"/>\n      <point x=\"2094\" y=\"1162\"/>\n      <point x=\"2087\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2075\" y=\"1317\"/>\n      <point x=\"2141\" y=\"1374\"/>\n      <point x=\"2228\" y=\"1374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2258\" y=\"1374\"/>\n      <point x=\"2295\" y=\"1370\"/>\n      <point x=\"2334\" y=\"1364\" type=\"curve\"/>\n      <point x=\"2398\" y=\"1606\" type=\"line\"/>\n      <point x=\"2353\" y=\"1618\"/>\n      <point x=\"2304\" y=\"1626\"/>\n      <point x=\"2222\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1979\" y=\"1626\"/>\n      <point x=\"1790\" y=\"1467\"/>\n      <point x=\"1828\" y=\"1215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1836\" y=\"1162\"/>\n      <point x=\"1846\" y=\"1098\"/>\n      <point x=\"1846\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1846\" y=\"844\"/>\n      <point x=\"1749\" y=\"771\"/>\n      <point x=\"1485\" y=\"771\" type=\"curve\"/>\n      <point x=\"1462\" y=\"640\" type=\"line\"/>\n      <point x=\"1634\" y=\"640\"/>\n      <point x=\"1749\" y=\"565\"/>\n      <point x=\"1749\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1749\" y=\"312\"/>\n      <point x=\"1625\" y=\"264\"/>\n      <point x=\"1599\" y=\"99\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1568\" y=\"-99\"/>\n      <point x=\"1705\" y=\"-214\"/>\n    </contour>\n    <contour>\n      <point x=\"292\" y=\"0\" type=\"line\"/>\n      <point x=\"535\" y=\"0\" type=\"line\"/>\n      <point x=\"905\" y=\"1420\" type=\"line\"/>\n      <point x=\"662\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"221\" y=\"310\" type=\"line\"/>\n      <point x=\"1787\" y=\"310\" type=\"line\"/>\n      <point x=\"1831\" y=\"558\" type=\"line\"/>\n      <point x=\"265\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"711\" y=\"0\" type=\"line\"/>\n      <point x=\"954\" y=\"0\" type=\"line\"/>\n      <point x=\"1324\" y=\"1420\" type=\"line\"/>\n      <point x=\"1081\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"319\" y=\"862\" type=\"line\"/>\n      <point x=\"1885\" y=\"862\" type=\"line\"/>\n      <point x=\"1929\" y=\"1110\" type=\"line\"/>\n      <point x=\"363\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_bracketleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_bracketleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"711\" y=\"0\" type=\"line\"/>\n      <point x=\"954\" y=\"0\" type=\"line\"/>\n      <point x=\"1324\" y=\"1420\" type=\"line\"/>\n      <point x=\"1081\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"292\" y=\"0\" type=\"line\"/>\n      <point x=\"535\" y=\"0\" type=\"line\"/>\n      <point x=\"905\" y=\"1420\" type=\"line\"/>\n      <point x=\"662\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"221\" y=\"310\" type=\"line\"/>\n      <point x=\"1657\" y=\"310\" type=\"line\"/>\n      <point x=\"1701\" y=\"558\" type=\"line\"/>\n      <point x=\"265\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"319\" y=\"862\" type=\"line\"/>\n      <point x=\"1755\" y=\"862\" type=\"line\"/>\n      <point x=\"1799\" y=\"1110\" type=\"line\"/>\n      <point x=\"363\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <component base=\"bracketleft\" xOffset=\"1204\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n    <component base=\"colon\" xOffset=\"1267\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"534\" y=\"0\" type=\"line\"/>\n      <point x=\"777\" y=\"0\" type=\"line\"/>\n      <point x=\"1147\" y=\"1420\" type=\"line\"/>\n      <point x=\"904\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-59\" y=\"310\" type=\"line\"/>\n      <point x=\"1077\" y=\"310\" type=\"line\"/>\n      <point x=\"1121\" y=\"558\" type=\"line\"/>\n      <point x=\"-15\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"0\" type=\"line\"/>\n      <point x=\"358\" y=\"0\" type=\"line\"/>\n      <point x=\"728\" y=\"1420\" type=\"line\"/>\n      <point x=\"485\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"39\" y=\"862\" type=\"line\"/>\n      <point x=\"1175\" y=\"862\" type=\"line\"/>\n      <point x=\"1219\" y=\"1110\" type=\"line\"/>\n      <point x=\"83\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1417\" y=\"860\" type=\"line\"/>\n      <point x=\"2177\" y=\"860\" type=\"line\"/>\n      <point x=\"2222\" y=\"1110\" type=\"line\"/>\n      <point x=\"1462\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1320\" y=\"310\" type=\"line\"/>\n      <point x=\"2080\" y=\"310\" type=\"line\"/>\n      <point x=\"2125\" y=\"560\" type=\"line\"/>\n      <point x=\"1365\" y=\"560\" type=\"line\"/>\n    </contour>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_exclam.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_exclam.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n    <component base=\"exclam\" xOffset=\"1219\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"534\" y=\"0\" type=\"line\"/>\n      <point x=\"777\" y=\"0\" type=\"line\"/>\n      <point x=\"1147\" y=\"1420\" type=\"line\"/>\n      <point x=\"904\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-89\" y=\"310\" type=\"line\"/>\n      <point x=\"1210\" y=\"310\" type=\"line\"/>\n      <point x=\"1254\" y=\"558\" type=\"line\"/>\n      <point x=\"-45\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"0\" type=\"line\"/>\n      <point x=\"358\" y=\"0\" type=\"line\"/>\n      <point x=\"728\" y=\"1420\" type=\"line\"/>\n      <point x=\"485\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"9\" y=\"862\" type=\"line\"/>\n      <point x=\"1308\" y=\"862\" type=\"line\"/>\n      <point x=\"1352\" y=\"1110\" type=\"line\"/>\n      <point x=\"53\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_parenleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_parenleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"714\" y=\"0\" type=\"line\"/>\n      <point x=\"957\" y=\"0\" type=\"line\"/>\n      <point x=\"1327\" y=\"1420\" type=\"line\"/>\n      <point x=\"1084\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"224\" y=\"310\" type=\"line\"/>\n      <point x=\"1557\" y=\"310\" type=\"line\"/>\n      <point x=\"1601\" y=\"558\" type=\"line\"/>\n      <point x=\"268\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"295\" y=\"0\" type=\"line\"/>\n      <point x=\"538\" y=\"0\" type=\"line\"/>\n      <point x=\"908\" y=\"1420\" type=\"line\"/>\n      <point x=\"665\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"322\" y=\"862\" type=\"line\"/>\n      <point x=\"1655\" y=\"862\" type=\"line\"/>\n      <point x=\"1699\" y=\"1110\" type=\"line\"/>\n      <point x=\"366\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <component base=\"parenleft\" xOffset=\"1180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"714\" y=\"0\" type=\"line\"/>\n      <point x=\"957\" y=\"0\" type=\"line\"/>\n      <point x=\"1327\" y=\"1420\" type=\"line\"/>\n      <point x=\"1084\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"224\" y=\"310\" type=\"line\"/>\n      <point x=\"1257\" y=\"310\" type=\"line\"/>\n      <point x=\"1301\" y=\"558\" type=\"line\"/>\n      <point x=\"268\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"295\" y=\"0\" type=\"line\"/>\n      <point x=\"538\" y=\"0\" type=\"line\"/>\n      <point x=\"908\" y=\"1420\" type=\"line\"/>\n      <point x=\"665\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"322\" y=\"862\" type=\"line\"/>\n      <point x=\"1555\" y=\"862\" type=\"line\"/>\n      <point x=\"1599\" y=\"1110\" type=\"line\"/>\n      <point x=\"366\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1329\" y=\"910\" type=\"curve\"/>\n      <point x=\"1566\" y=\"926\" type=\"line\"/>\n      <point x=\"1603\" y=\"1134\"/>\n      <point x=\"1725\" y=\"1190\"/>\n      <point x=\"1835\" y=\"1190\" type=\"curve\"/>\n      <point x=\"1881\" y=\"1440\" type=\"line\"/>\n      <point x=\"1567\" y=\"1440\"/>\n      <point x=\"1329\" y=\"1278\"/>\n    </contour>\n    <contour>\n      <point x=\"1555\" y=\"489\" type=\"line\"/>\n      <point x=\"1819\" y=\"489\" type=\"line\"/>\n      <point x=\"1822\" y=\"505\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1836\" y=\"578\"/>\n      <point x=\"1898\" y=\"643\"/>\n      <point x=\"2025\" y=\"738\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2193\" y=\"863\"/>\n      <point x=\"2280\" y=\"978\"/>\n      <point x=\"2280\" y=\"1142\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2280\" y=\"1329\"/>\n      <point x=\"2132\" y=\"1440\"/>\n      <point x=\"1881\" y=\"1440\" type=\"curve\"/>\n      <point x=\"1835\" y=\"1190\" type=\"line\"/>\n      <point x=\"1931\" y=\"1190\"/>\n      <point x=\"1988\" y=\"1151\"/>\n      <point x=\"1988\" y=\"1085\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1988\" y=\"1012\"/>\n      <point x=\"1945\" y=\"965\"/>\n      <point x=\"1866\" y=\"904\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1697\" y=\"773\"/>\n      <point x=\"1574\" y=\"681\"/>\n      <point x=\"1558\" y=\"519\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"1112\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"534\" y=\"0\" type=\"line\"/>\n      <point x=\"777\" y=\"0\" type=\"line\"/>\n      <point x=\"1147\" y=\"1420\" type=\"line\"/>\n      <point x=\"904\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"44\" y=\"310\" type=\"line\"/>\n      <point x=\"1180\" y=\"310\" type=\"line\"/>\n      <point x=\"1224\" y=\"558\" type=\"line\"/>\n      <point x=\"88\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"0\" type=\"line\"/>\n      <point x=\"358\" y=\"0\" type=\"line\"/>\n      <point x=\"728\" y=\"1420\" type=\"line\"/>\n      <point x=\"485\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"142\" y=\"862\" type=\"line\"/>\n      <point x=\"1278\" y=\"862\" type=\"line\"/>\n      <point x=\"1322\" y=\"1110\" type=\"line\"/>\n      <point x=\"186\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_underscore.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_underscore.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"653\" y=\"-242\" type=\"line\"/>\n      <point x=\"896\" y=\"-242\" type=\"line\"/>\n      <point x=\"1327\" y=\"1420\" type=\"line\"/>\n      <point x=\"1084\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"224\" y=\"310\" type=\"line\"/>\n      <point x=\"1257\" y=\"310\" type=\"line\"/>\n      <point x=\"1301\" y=\"558\" type=\"line\"/>\n      <point x=\"268\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"295\" y=\"0\" type=\"line\"/>\n      <point x=\"538\" y=\"0\" type=\"line\"/>\n      <point x=\"908\" y=\"1420\" type=\"line\"/>\n      <point x=\"665\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"765\" y=\"-241\" type=\"line\"/>\n      <point x=\"2025\" y=\"-241\" type=\"line\"/>\n      <point x=\"2067\" y=\"0\" type=\"line\"/>\n      <point x=\"809\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"322\" y=\"862\" type=\"line\"/>\n      <point x=\"1355\" y=\"862\" type=\"line\"/>\n      <point x=\"1399\" y=\"1110\" type=\"line\"/>\n      <point x=\"366\" y=\"1110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_underscore_parenleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_underscore_parenleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"3217\" y=\"-240\" type=\"line\"/>\n      <point x=\"3260\" y=\"-240\" type=\"line\"/>\n      <point x=\"3302\" y=\"0\" type=\"line\"/>\n      <point x=\"3259\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2981\" y=\"0\"/>\n      <point x=\"2868\" y=\"258\"/>\n      <point x=\"2939\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3013\" y=\"1166\"/>\n      <point x=\"3215\" y=\"1369\"/>\n      <point x=\"3499\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3542\" y=\"1369\" type=\"line\"/>\n      <point x=\"3586\" y=\"1620\" type=\"line\"/>\n      <point x=\"3543\" y=\"1620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"3086\" y=\"1620\"/>\n      <point x=\"2765\" y=\"1417\"/>\n      <point x=\"2662\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2616\" y=\"390\"/>\n      <point x=\"2718\" y=\"107\"/>\n      <point x=\"2858\" y=\"32\" type=\"curve\"/>\n      <point x=\"2858\" y=\"-53\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"224\" y=\"310\" type=\"line\"/>\n      <point x=\"1257\" y=\"310\" type=\"line\"/>\n      <point x=\"1301\" y=\"558\" type=\"line\"/>\n      <point x=\"268\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"295\" y=\"0\" type=\"line\"/>\n      <point x=\"538\" y=\"0\" type=\"line\"/>\n      <point x=\"908\" y=\"1420\" type=\"line\"/>\n      <point x=\"665\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"653\" y=\"-242\" type=\"line\"/>\n      <point x=\"896\" y=\"-242\" type=\"line\"/>\n      <point x=\"1327\" y=\"1420\" type=\"line\"/>\n      <point x=\"1084\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"322\" y=\"862\" type=\"line\"/>\n      <point x=\"1355\" y=\"862\" type=\"line\"/>\n      <point x=\"1399\" y=\"1110\" type=\"line\"/>\n      <point x=\"366\" y=\"1110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"3255\" y=\"-241\" type=\"line\"/>\n      <point x=\"3067\" y=\"0\" type=\"line\"/>\n      <point x=\"809\" y=\"0\" type=\"line\"/>\n      <point x=\"765\" y=\"-241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numeral-greek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numeral-greek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0374\"/>\n  <outline>\n    <component base=\"quoteright\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/numero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2116\"/>\n  <outline>\n    <contour>\n      <point x=\"789\" y=\"220\" type=\"curve\"/>\n      <point x=\"1007\" y=\"220\"/>\n      <point x=\"1169\" y=\"381\"/>\n      <point x=\"1169\" y=\"589\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"747\"/>\n      <point x=\"1068\" y=\"846\"/>\n      <point x=\"899\" y=\"846\" type=\"curve\"/>\n      <point x=\"679\" y=\"846\"/>\n      <point x=\"517\" y=\"685\"/>\n      <point x=\"517\" y=\"475\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"319\"/>\n      <point x=\"619\" y=\"220\"/>\n    </contour>\n    <contour>\n      <point x=\"429\" y=\"0\" type=\"line\"/>\n      <point x=\"1069\" y=\"0\" type=\"line\"/>\n      <point x=\"1101\" y=\"180\" type=\"line\"/>\n      <point x=\"461\" y=\"180\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"85\" y=\"840\" type=\"line\"/>\n      <point x=\"293\" y=\"840\" type=\"line\"/>\n      <point x=\"395\" y=\"1420\" type=\"line\"/>\n      <point x=\"187\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"823\" y=\"413\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"413\"/>\n      <point x=\"748\" y=\"451\"/>\n      <point x=\"748\" y=\"509\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"578\"/>\n      <point x=\"790\" y=\"653\"/>\n      <point x=\"865\" y=\"653\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"653\"/>\n      <point x=\"938\" y=\"615\"/>\n      <point x=\"938\" y=\"555\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"938\" y=\"487\"/>\n      <point x=\"895\" y=\"413\"/>\n    </contour>\n    <contour>\n      <point x=\"390\" y=\"840\" type=\"line\"/>\n      <point x=\"505\" y=\"840\" type=\"line\"/>\n      <point x=\"540\" y=\"1040\" type=\"line\"/>\n      <point x=\"482\" y=\"1040\" type=\"line\"/>\n      <point x=\"480\" y=\"1420\" type=\"line\"/>\n      <point x=\"323\" y=\"1420\" type=\"line\"/>\n      <point x=\"288\" y=\"1220\" type=\"line\"/>\n      <point x=\"388\" y=\"1220\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"475\" y=\"840\" type=\"line\"/>\n      <point x=\"683\" y=\"840\" type=\"line\"/>\n      <point x=\"785\" y=\"1420\" type=\"line\"/>\n      <point x=\"577\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/o-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"o-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043E\"/>\n  <outline>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/o.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"o\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"604\" y=\"530\" name=\"center\"/>\n  <anchor x=\"508\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <anchor x=\"1114\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"502\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"-20\"/>\n      <point x=\"1092\" y=\"242\"/>\n      <point x=\"1092\" y=\"686\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1092\" y=\"934\"/>\n      <point x=\"945\" y=\"1080\"/>\n      <point x=\"696\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"1080\"/>\n      <point x=\"106\" y=\"814\"/>\n      <point x=\"106\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"123\"/>\n      <point x=\"253\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"550\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"237\"/>\n      <point x=\"385\" y=\"304\"/>\n      <point x=\"385\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"672\"/>\n      <point x=\"485\" y=\"823\"/>\n      <point x=\"653\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"823\"/>\n      <point x=\"813\" y=\"756\"/>\n      <point x=\"813\" y=\"643\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"388\"/>\n      <point x=\"715\" y=\"237\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F3\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"acutecomb.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/obarred-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"obarred-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E9\"/>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"436\" type=\"line\"/>\n      <point x=\"1001\" y=\"436\" type=\"line\"/>\n      <point x=\"1001\" y=\"624\" type=\"line\"/>\n      <point x=\"230\" y=\"624\" type=\"line\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/obreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"obreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014F\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F4\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED1\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"acutecomb\" xOffset=\"468\" yOffset=\"339\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED9\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED3\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"gravecomb\" xOffset=\"469\" yOffset=\"340\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED5\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"hookabovecomb\" xOffset=\"428\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED7\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"tildecomb\" xOffset=\"88\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/odieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"odieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F6\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/odotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"odotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECD\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oe.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oe\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0153\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"908\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"232\"/>\n      <point x=\"724\" y=\"314\"/>\n      <point x=\"723\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"674\"/>\n      <point x=\"797\" y=\"824\"/>\n      <point x=\"906\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"824\"/>\n      <point x=\"971\" y=\"798\"/>\n      <point x=\"971\" y=\"757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"643\"/>\n      <point x=\"853\" y=\"575\"/>\n      <point x=\"652\" y=\"571\" type=\"curve\"/>\n      <point x=\"673\" y=\"351\" type=\"line\"/>\n      <point x=\"1018\" y=\"360\"/>\n      <point x=\"1223\" y=\"524\"/>\n      <point x=\"1223\" y=\"790\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1223\" y=\"972\"/>\n      <point x=\"1131\" y=\"1080\"/>\n      <point x=\"974\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"1080\"/>\n      <point x=\"551\" y=\"804\"/>\n      <point x=\"551\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"132\"/>\n      <point x=\"681\" y=\"-20\"/>\n      <point x=\"899\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"-20\"/>\n      <point x=\"1034\" y=\"-7\"/>\n      <point x=\"1094\" y=\"14\" type=\"curve\"/>\n      <point x=\"1053\" y=\"252\" type=\"line\"/>\n      <point x=\"1006\" y=\"239\"/>\n      <point x=\"952\" y=\"232\"/>\n    </contour>\n    <contour>\n      <point x=\"264\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"-20\"/>\n      <point x=\"692\" y=\"249\"/>\n      <point x=\"692\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"972\"/>\n      <point x=\"605\" y=\"1080\"/>\n      <point x=\"438\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"138\" y=\"1080\"/>\n      <point x=\"-18\" y=\"831\"/>\n      <point x=\"-18\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-18\" y=\"108\"/>\n      <point x=\"79\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"327\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"271\" y=\"228\"/>\n      <point x=\"242\" y=\"278\"/>\n      <point x=\"242\" y=\"375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"670\"/>\n      <point x=\"302\" y=\"824\"/>\n      <point x=\"418\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"824\"/>\n      <point x=\"501\" y=\"769\"/>\n      <point x=\"501\" y=\"663\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"377\"/>\n      <point x=\"441\" y=\"228\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DB\"/>\n  <outline>\n    <component base=\"ogonekcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ogonekcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ogonekcomb\" format=\"2\">\n  <unicode hex=\"0328\"/>\n  <anchor x=\"650\" y=\"10\" name=\"_ogonek\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"486\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"-424\"/>\n      <point x=\"611\" y=\"-408\"/>\n      <point x=\"658\" y=\"-386\" type=\"curve\"/>\n      <point x=\"616\" y=\"-172\" type=\"line\"/>\n      <point x=\"591\" y=\"-180\"/>\n      <point x=\"566\" y=\"-185\"/>\n      <point x=\"543\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"504\" y=\"-185\"/>\n      <point x=\"484\" y=\"-170\"/>\n      <point x=\"484\" y=\"-142\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"-77\"/>\n      <point x=\"600\" y=\"-33\"/>\n      <point x=\"727\" y=\"0\" type=\"curve\"/>\n      <point x=\"727\" y=\"30\" type=\"line\"/>\n      <point x=\"458\" y=\"30\" type=\"line\"/>\n      <point x=\"458\" y=\"-33\" type=\"line\"/>\n      <point x=\"338\" y=\"-75\"/>\n      <point x=\"267\" y=\"-157\"/>\n      <point x=\"267\" y=\"-255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"-368\"/>\n      <point x=\"342\" y=\"-424\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ograve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ograve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F2\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"gravecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ohookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECF\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ohorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A1\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"horncomb\" xOffset=\"421\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ohornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDB\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ohorndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE3\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ohorngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDD\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"gravecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ohornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDF\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ohorntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE1\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ohungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0151\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"hungarumlautcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/omacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014D\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/omacronacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacronacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E53\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n    <component base=\"acutecomb\" xOffset=\"70\" yOffset=\"399\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/omacrongrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacrongrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E51\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n    <component base=\"gravecomb\" xOffset=\"70\" yOffset=\"399\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/omega.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omega\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C9\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"745\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"-20\"/>\n      <point x=\"1024\" y=\"103\"/>\n      <point x=\"1062\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1192\" y=\"1060\" type=\"line\"/>\n      <point x=\"919\" y=\"1060\" type=\"line\"/>\n      <point x=\"789\" y=\"320\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"266\"/>\n      <point x=\"753\" y=\"235\"/>\n      <point x=\"713\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"235\"/>\n      <point x=\"653\" y=\"260\"/>\n      <point x=\"665\" y=\"327\" type=\"curve\"/>\n      <point x=\"677\" y=\"396\" type=\"line\"/>\n      <point x=\"574\" y=\"361\" type=\"line\"/>\n      <point x=\"542\" y=\"94\"/>\n      <point x=\"600\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"239\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"392\" y=\"-20\"/>\n      <point x=\"494\" y=\"94\"/>\n      <point x=\"554\" y=\"361\" type=\"curve\"/>\n      <point x=\"463\" y=\"396\" type=\"line\"/>\n      <point x=\"451\" y=\"327\" type=\"line\"/>\n      <point x=\"439\" y=\"260\"/>\n      <point x=\"413\" y=\"235\"/>\n      <point x=\"372\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"332\" y=\"235\"/>\n      <point x=\"315\" y=\"266\"/>\n      <point x=\"325\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"1060\" type=\"line\"/>\n      <point x=\"182\" y=\"1060\" type=\"line\"/>\n      <point x=\"52\" y=\"320\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"103\"/>\n      <point x=\"78\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"456\" y=\"357\" type=\"line\"/>\n      <point x=\"670\" y=\"357\" type=\"line\"/>\n      <point x=\"759\" y=\"860\" type=\"line\"/>\n      <point x=\"545\" y=\"860\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/omegatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omegatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CE\"/>\n  <outline>\n    <component base=\"omega\"/>\n    <component base=\"tonos\" xOffset=\"27\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/omicron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omicron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BF\"/>\n  <outline>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/omicrontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omicrontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CC\"/>\n  <outline>\n    <component base=\"omicron\"/>\n    <component base=\"tonos\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/one.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"onesuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/one.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0031\"/>\n  <outline>\n    <contour>\n      <point x=\"404\" y=\"0\" type=\"line\"/>\n      <point x=\"670\" y=\"0\" type=\"line\"/>\n      <point x=\"920\" y=\"1420\" type=\"line\"/>\n      <point x=\"654\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"60\" y=\"0\" type=\"line\"/>\n      <point x=\"424\" y=\"0\" type=\"line\"/>\n      <point x=\"465\" y=\"234\" type=\"line\"/>\n      <point x=\"101\" y=\"234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"650\" y=\"0\" type=\"line\"/>\n      <point x=\"976\" y=\"0\" type=\"line\"/>\n      <point x=\"1017\" y=\"234\" type=\"line\"/>\n      <point x=\"691\" y=\"234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"265\" y=\"1048\" type=\"line\"/>\n      <point x=\"609\" y=\"1164\" type=\"line\"/>\n      <point x=\"654\" y=\"1420\" type=\"line\"/>\n      <point x=\"309\" y=\"1300\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/one.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"361\" y=\"0\" type=\"line\"/>\n      <point x=\"521\" y=\"0\" type=\"line\"/>\n      <point x=\"521\" y=\"639\" type=\"line\"/>\n      <point x=\"361\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"116\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"0\" type=\"line\"/>\n      <point x=\"375\" y=\"135\" type=\"line\"/>\n      <point x=\"116\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"507\" y=\"0\" type=\"line\"/>\n      <point x=\"739\" y=\"0\" type=\"line\"/>\n      <point x=\"739\" y=\"135\" type=\"line\"/>\n      <point x=\"507\" y=\"135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"130\" y=\"438\" type=\"line\"/>\n      <point x=\"361\" y=\"490\" type=\"line\"/>\n      <point x=\"361\" y=\"639\" type=\"line\"/>\n      <point x=\"130\" y=\"585\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/one.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"onesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/onedotenleader.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onedotenleader\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2024\"/>\n  <outline>\n    <component base=\"period\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneeighth.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"818\" y=\"698\" type=\"line\"/>\n      <point x=\"1257\" y=\"959\" type=\"line\"/>\n      <point x=\"1126\" y=\"1176\" type=\"line\"/>\n      <point x=\"739\" y=\"835\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"220\" y=\"231\" type=\"line\"/>\n      <point x=\"608\" y=\"565\" type=\"line\"/>\n      <point x=\"533\" y=\"704\" type=\"line\"/>\n      <point x=\"96\" y=\"451\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oneeighth.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneeighth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215B\"/>\n  <outline>\n    <contour>\n      <point x=\"220\" y=\"241\" type=\"line\"/>\n      <point x=\"1247\" y=\"969\" type=\"line\"/>\n      <point x=\"1126\" y=\"1166\" type=\"line\"/>\n      <point x=\"106\" y=\"441\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onehalf.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"788\" y=\"698\" type=\"line\"/>\n      <point x=\"1227\" y=\"959\" type=\"line\"/>\n      <point x=\"1096\" y=\"1176\" type=\"line\"/>\n      <point x=\"709\" y=\"835\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"190\" y=\"231\" type=\"line\"/>\n      <point x=\"578\" y=\"565\" type=\"line\"/>\n      <point x=\"503\" y=\"704\" type=\"line\"/>\n      <point x=\"66\" y=\"451\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"twoinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/onehalf.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onehalf\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BD\"/>\n  <outline>\n    <contour>\n      <point x=\"190\" y=\"241\" type=\"line\"/>\n      <point x=\"1217\" y=\"969\" type=\"line\"/>\n      <point x=\"1096\" y=\"1166\" type=\"line\"/>\n      <point x=\"76\" y=\"441\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"twoinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oneinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2081\"/>\n  <outline>\n    <component base=\"onesuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onequarter.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"808\" y=\"698\" type=\"line\"/>\n      <point x=\"1247\" y=\"959\" type=\"line\"/>\n      <point x=\"1116\" y=\"1176\" type=\"line\"/>\n      <point x=\"729\" y=\"835\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"210\" y=\"231\" type=\"line\"/>\n      <point x=\"598\" y=\"565\" type=\"line\"/>\n      <point x=\"523\" y=\"704\" type=\"line\"/>\n      <point x=\"86\" y=\"451\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"fourinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/onequarter.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onequarter\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BC\"/>\n  <outline>\n    <contour>\n      <point x=\"217\" y=\"241\" type=\"line\"/>\n      <point x=\"1244\" y=\"969\" type=\"line\"/>\n      <point x=\"1123\" y=\"1166\" type=\"line\"/>\n      <point x=\"103\" y=\"441\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"fourinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/onesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B9\"/>\n  <outline>\n    <contour>\n      <point x=\"562\" y=\"802\" type=\"line\"/>\n      <point x=\"770\" y=\"802\" type=\"line\"/>\n      <point x=\"878\" y=\"1420\" type=\"line\"/>\n      <point x=\"670\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"372\" y=\"802\" type=\"line\"/>\n      <point x=\"571\" y=\"802\" type=\"line\"/>\n      <point x=\"607\" y=\"1009\" type=\"line\"/>\n      <point x=\"408\" y=\"1009\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"760\" y=\"802\" type=\"line\"/>\n      <point x=\"924\" y=\"802\" type=\"line\"/>\n      <point x=\"960\" y=\"1009\" type=\"line\"/>\n      <point x=\"796\" y=\"1009\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"443\" y=\"1155\" type=\"line\"/>\n      <point x=\"633\" y=\"1206\" type=\"line\"/>\n      <point x=\"670\" y=\"1420\" type=\"line\"/>\n      <point x=\"480\" y=\"1367\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01EB\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"490\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"-424\"/>\n      <point x=\"644\" y=\"-404\"/>\n      <point x=\"702\" y=\"-376\" type=\"curve\"/>\n      <point x=\"660\" y=\"-162\" type=\"line\"/>\n      <point x=\"621\" y=\"-176\"/>\n      <point x=\"583\" y=\"-185\"/>\n      <point x=\"547\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"-185\"/>\n      <point x=\"478\" y=\"-166\"/>\n      <point x=\"478\" y=\"-128\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"-70\"/>\n      <point x=\"515\" y=\"-43\"/>\n      <point x=\"665\" y=\"-1\" type=\"curve\"/>\n      <point x=\"626\" y=\"29\" type=\"line\"/>\n      <point x=\"404\" y=\"14\" type=\"line\"/>\n      <point x=\"404\" y=\"-41\" type=\"line\"/>\n      <point x=\"314\" y=\"-79\"/>\n      <point x=\"261\" y=\"-154\"/>\n      <point x=\"261\" y=\"-245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"-365\"/>\n      <point x=\"339\" y=\"-424\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oopen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0254\"/>\n  <anchor x=\"500\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"727\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"576\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"823\"/>\n      <point x=\"810\" y=\"745\"/>\n      <point x=\"811\" y=\"609\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"385\"/>\n      <point x=\"681\" y=\"237\"/>\n      <point x=\"483\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"237\"/>\n      <point x=\"276\" y=\"265\"/>\n      <point x=\"206\" y=\"329\" type=\"curve\"/>\n      <point x=\"44\" y=\"126\" type=\"line\"/>\n      <point x=\"134\" y=\"24\"/>\n      <point x=\"257\" y=\"-20\"/>\n      <point x=\"455\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"837\" y=\"-20\"/>\n      <point x=\"1088\" y=\"246\"/>\n      <point x=\"1088\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1088\" y=\"923\"/>\n      <point x=\"912\" y=\"1080\"/>\n      <point x=\"605\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"1080\"/>\n      <point x=\"335\" y=\"1057\"/>\n      <point x=\"234\" y=\"1021\" type=\"curve\"/>\n      <point x=\"266\" y=\"771\" type=\"line\"/>\n      <point x=\"351\" y=\"802\"/>\n      <point x=\"463\" y=\"823\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ordfeminine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ordfeminine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AA\"/>\n  <outline>\n    <contour>\n      <point x=\"985\" y=\"1440\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"587\" y=\"1440\"/>\n      <point x=\"278\" y=\"1253\"/>\n      <point x=\"278\" y=\"965\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"839\"/>\n      <point x=\"338\" y=\"773\"/>\n      <point x=\"454\" y=\"773\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"566\" y=\"773\"/>\n      <point x=\"655\" y=\"849\"/>\n      <point x=\"695\" y=\"982\" type=\"curve\"/>\n      <point x=\"652\" y=\"924\" type=\"line\"/>\n      <point x=\"778\" y=\"924\" type=\"line\"/>\n      <point x=\"701\" y=\"999\" type=\"line\"/>\n      <point x=\"691\" y=\"778\" type=\"line\"/>\n      <point x=\"996\" y=\"786\" type=\"line\"/>\n      <point x=\"1026\" y=\"955\" type=\"line\"/>\n      <point x=\"890\" y=\"967\" type=\"line\"/>\n      <point x=\"905\" y=\"868\" type=\"line\"/>\n      <point x=\"1004\" y=\"1440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"567\" y=\"945\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"945\"/>\n      <point x=\"525\" y=\"962\"/>\n      <point x=\"525\" y=\"995\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1145\"/>\n      <point x=\"651\" y=\"1259\"/>\n      <point x=\"809\" y=\"1267\" type=\"curve\"/>\n      <point x=\"769\" y=\"1327\" type=\"line\"/>\n      <point x=\"746\" y=\"1213\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"1041\"/>\n      <point x=\"656\" y=\"945\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ordmasculine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ordmasculine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BA\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"770\"/>\n      <point x=\"1066\" y=\"933\"/>\n      <point x=\"1066\" y=\"1154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1066\" y=\"1334\"/>\n      <point x=\"952\" y=\"1440\"/>\n      <point x=\"760\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"1440\"/>\n      <point x=\"336\" y=\"1277\"/>\n      <point x=\"336\" y=\"1056\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"876\"/>\n      <point x=\"450\" y=\"770\"/>\n    </contour>\n    <contour>\n      <point x=\"677\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"622\" y=\"970\"/>\n      <point x=\"591\" y=\"1013\"/>\n      <point x=\"591\" y=\"1079\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"591\" y=\"1158\"/>\n      <point x=\"641\" y=\"1240\"/>\n      <point x=\"725\" y=\"1240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1240\"/>\n      <point x=\"811\" y=\"1197\"/>\n      <point x=\"811\" y=\"1131\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"1052\"/>\n      <point x=\"761\" y=\"970\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/orthogonal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"orthogonal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221F\"/>\n  <outline>\n    <contour>\n      <point x=\"-10\" y=\"0\" type=\"line\"/>\n      <point x=\"256\" y=\"0\" type=\"line\"/>\n      <point x=\"442\" y=\"1060\" type=\"line\"/>\n      <point x=\"176\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-10\" y=\"0\" type=\"line\"/>\n      <point x=\"1024\" y=\"0\" type=\"line\"/>\n      <point x=\"1066\" y=\"243\" type=\"line\"/>\n      <point x=\"32\" y=\"243\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F8\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"-124\" type=\"line\"/>\n      <point x=\"1109\" y=\"1096\" type=\"line\"/>\n      <point x=\"983\" y=\"1188\" type=\"line\"/>\n      <point x=\"60\" y=\"-32\" type=\"line\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/oslashacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oslashacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FF\"/>\n  <outline>\n    <component base=\"oslash\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/otilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"otilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F5\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/overline.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"overline\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203E\"/>\n  <outline>\n    <contour>\n      <point x=\"283\" y=\"1568\" type=\"line\"/>\n      <point x=\"1283\" y=\"1568\" type=\"line\"/>\n      <point x=\"1327\" y=\"1817\" type=\"line\"/>\n      <point x=\"327\" y=\"1817\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"p\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0070\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"252\" y=\"-460\" type=\"line\"/>\n      <point x=\"475\" y=\"809\" type=\"line\"/>\n      <point x=\"489\" y=\"1060\" type=\"line\"/>\n      <point x=\"244\" y=\"1060\" type=\"line\"/>\n      <point x=\"-23\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"306\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"-20\"/>\n      <point x=\"1141\" y=\"298\"/>\n      <point x=\"1141\" y=\"720\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"950\"/>\n      <point x=\"1031\" y=\"1080\"/>\n      <point x=\"840\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"1080\"/>\n      <point x=\"525\" y=\"983\"/>\n      <point x=\"487\" y=\"813\" type=\"curve\"/>\n      <point x=\"528\" y=\"869\" type=\"line\"/>\n      <point x=\"441\" y=\"869\" type=\"line\"/>\n      <point x=\"401\" y=\"388\" type=\"line\"/>\n      <point x=\"459\" y=\"693\"/>\n      <point x=\"604\" y=\"823\"/>\n      <point x=\"738\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"823\"/>\n      <point x=\"864\" y=\"774\"/>\n      <point x=\"864\" y=\"686\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"430\"/>\n      <point x=\"647\" y=\"237\"/>\n      <point x=\"359\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"237\"/>\n      <point x=\"210\" y=\"247\"/>\n      <point x=\"177\" y=\"262\" type=\"curve\"/>\n      <point x=\"58\" y=\"0\" type=\"line\"/>\n      <point x=\"142\" y=\"-12\"/>\n      <point x=\"222\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/palochka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"palochka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04CF\"/>\n  <outline>\n    <component base=\"idotless\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/paragraph.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"paragraph\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B6\"/>\n  <outline>\n    <contour>\n      <point x=\"719\" y=\"0\" type=\"line\"/>\n      <point x=\"982\" y=\"0\" type=\"line\"/>\n      <point x=\"1232\" y=\"1420\" type=\"line\"/>\n      <point x=\"969\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"329\" y=\"0\" type=\"line\"/>\n      <point x=\"592\" y=\"0\" type=\"line\"/>\n      <point x=\"819\" y=\"1286\" type=\"line\"/>\n      <point x=\"556\" y=\"1286\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"504\" y=\"537\" type=\"curve\"/>\n      <point x=\"744\" y=\"1420\" type=\"line\"/>\n      <point x=\"332\" y=\"1420\"/>\n      <point x=\"88\" y=\"1235\"/>\n      <point x=\"88\" y=\"922\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"715\"/>\n      <point x=\"243\" y=\"572\"/>\n    </contour>\n    <contour>\n      <point x=\"658\" y=\"1177\" type=\"line\"/>\n      <point x=\"1291\" y=\"1177\" type=\"line\"/>\n      <point x=\"1334\" y=\"1420\" type=\"line\"/>\n      <point x=\"744\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/parenleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0028\"/>\n  <outline>\n    <contour>\n      <point x=\"1205\" y=\"1620\" type=\"line\"/>\n      <point x=\"1162\" y=\"1620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"1620\"/>\n      <point x=\"384\" y=\"1417\"/>\n      <point x=\"281\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"198\" y=\"129\"/>\n      <point x=\"385\" y=\"-200\"/>\n      <point x=\"842\" y=\"-200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"-200\" type=\"line\"/>\n      <point x=\"929\" y=\"51\" type=\"line\"/>\n      <point x=\"886\" y=\"51\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"602\" y=\"51\"/>\n      <point x=\"492\" y=\"290\"/>\n      <point x=\"558\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"1166\"/>\n      <point x=\"834\" y=\"1369\"/>\n      <point x=\"1118\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1161\" y=\"1369\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/parenleft_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1337\" y=\"1620\" type=\"line\"/>\n      <point x=\"1294\" y=\"1620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"785\" y=\"1620\"/>\n      <point x=\"416\" y=\"1419\"/>\n      <point x=\"313\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"230\" y=\"129\"/>\n      <point x=\"446\" y=\"-200\"/>\n      <point x=\"974\" y=\"-200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1017\" y=\"-200\" type=\"line\"/>\n      <point x=\"1061\" y=\"51\" type=\"line\"/>\n      <point x=\"1018\" y=\"51\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"51\"/>\n      <point x=\"524\" y=\"290\"/>\n      <point x=\"590\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"1168\"/>\n      <point x=\"915\" y=\"1369\"/>\n      <point x=\"1250\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1293\" y=\"1369\" type=\"line\"/>\n    </contour>\n    <component base=\"asterisk\" xOffset=\"1100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/parenright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0029\"/>\n  <outline>\n    <contour>\n      <point x=\"58\" y=\"-200\" type=\"line\"/>\n      <point x=\"101\" y=\"-200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"-200\"/>\n      <point x=\"881\" y=\"3\"/>\n      <point x=\"984\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1067\" y=\"1291\"/>\n      <point x=\"880\" y=\"1620\"/>\n      <point x=\"421\" y=\"1620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"1620\" type=\"line\"/>\n      <point x=\"334\" y=\"1369\" type=\"line\"/>\n      <point x=\"377\" y=\"1369\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"663\" y=\"1369\"/>\n      <point x=\"773\" y=\"1130\"/>\n      <point x=\"707\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"633\" y=\"254\"/>\n      <point x=\"431\" y=\"51\"/>\n      <point x=\"145\" y=\"51\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"51\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/partialdiff.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"partialdiff\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2202\"/>\n  <outline>\n    <contour>\n      <point x=\"515\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"829\" y=\"-20\"/>\n      <point x=\"1049\" y=\"168\"/>\n      <point x=\"1103\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1119\" y=\"581\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1210\" y=\"1120\"/>\n      <point x=\"981\" y=\"1398\"/>\n      <point x=\"398\" y=\"1426\" type=\"curve\"/>\n      <point x=\"334\" y=\"1174\" type=\"line\"/>\n      <point x=\"740\" y=\"1157\"/>\n      <point x=\"910\" y=\"991\"/>\n      <point x=\"854\" y=\"668\" type=\"curve\"/>\n      <point x=\"828\" y=\"668\" type=\"line\"/>\n      <point x=\"818\" y=\"816\"/>\n      <point x=\"720\" y=\"900\"/>\n      <point x=\"564\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"900\"/>\n      <point x=\"140\" y=\"736\"/>\n      <point x=\"96\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"51\" y=\"152\"/>\n      <point x=\"195\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"557\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"232\"/>\n      <point x=\"351\" y=\"310\"/>\n      <point x=\"375\" y=\"448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"398\" y=\"577\"/>\n      <point x=\"487\" y=\"649\"/>\n      <point x=\"626\" y=\"649\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"649\"/>\n      <point x=\"839\" y=\"571\"/>\n      <point x=\"815\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"307\"/>\n      <point x=\"697\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/pe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043F\"/>\n  <outline>\n    <component base=\"n\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/pe-cy.loclS_R_B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-cy.loclSRB\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1251\" type=\"line\"/>\n      <point x=\"1102\" y=\"1251\" type=\"line\"/>\n      <point x=\"1147\" y=\"1500\" type=\"line\"/>\n      <point x=\"395\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <component base=\"u\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>u</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/percent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0025\"/>\n  <outline>\n    <contour>\n      <point x=\"165\" y=\"261\" type=\"line\"/>\n      <point x=\"1192\" y=\"989\" type=\"line\"/>\n      <point x=\"1091\" y=\"1146\" type=\"line\"/>\n      <point x=\"71\" y=\"421\" type=\"line\"/>\n    </contour>\n    <component base=\"zerosuperior\" xOffset=\"-260\"/>\n    <component base=\"zeroinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/percent_percent.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent_percent.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"235\" y=\"261\" type=\"line\"/>\n      <point x=\"1448\" y=\"1121\" type=\"line\"/>\n      <point x=\"1347\" y=\"1278\" type=\"line\"/>\n      <point x=\"141\" y=\"421\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1130\" y=\"151\" type=\"line\"/>\n      <point x=\"2312\" y=\"989\" type=\"line\"/>\n      <point x=\"2211\" y=\"1146\" type=\"line\"/>\n      <point x=\"1036\" y=\"311\" type=\"line\"/>\n    </contour>\n    <component base=\"zerosuperior\" xOffset=\"-190\"/>\n    <component base=\"zeroinferior\" xOffset=\"340\"/>\n    <component base=\"zerosuperior\" xOffset=\"860\"/>\n    <component base=\"zeroinferior\" xOffset=\"1390\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/period.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002E\"/>\n  <outline>\n    <contour>\n      <point x=\"535\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"-20\"/>\n      <point x=\"717\" y=\"62\"/>\n      <point x=\"717\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"263\"/>\n      <point x=\"636\" y=\"344\"/>\n      <point x=\"535\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"434\" y=\"344\"/>\n      <point x=\"353\" y=\"263\"/>\n      <point x=\"353\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"62\"/>\n      <point x=\"434\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/period_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1153\" y=\"835\" type=\"line\"/>\n      <point x=\"2173\" y=\"835\" type=\"line\"/>\n      <point x=\"2217\" y=\"1085\" type=\"line\"/>\n      <point x=\"1197\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1065\" y=\"333\" type=\"line\"/>\n      <point x=\"2085\" y=\"333\" type=\"line\"/>\n      <point x=\"2129\" y=\"583\" type=\"line\"/>\n      <point x=\"1109\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"40\" yOffset=\"548\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/period_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1030\" y=\"584\" type=\"line\"/>\n      <point x=\"2130\" y=\"584\" type=\"line\"/>\n      <point x=\"2174\" y=\"834\" type=\"line\"/>\n      <point x=\"1074\" y=\"834\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"40\" yOffset=\"550\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/period_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"143\"/>\n    <component base=\"period\" xOffset=\"1059\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/period_period_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1953\" y=\"835\" type=\"line\"/>\n      <point x=\"3373\" y=\"835\" type=\"line\"/>\n      <point x=\"3417\" y=\"1085\" type=\"line\"/>\n      <point x=\"1997\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1865\" y=\"333\" type=\"line\"/>\n      <point x=\"3285\" y=\"333\" type=\"line\"/>\n      <point x=\"3329\" y=\"583\" type=\"line\"/>\n      <point x=\"1909\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-118\"/>\n    <component base=\"period\" xOffset=\"652\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/period_period_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"3260\" y=\"197\" type=\"line\"/>\n      <point x=\"3307\" y=\"459\" type=\"line\"/>\n      <point x=\"2503\" y=\"691\" type=\"line\"/>\n      <point x=\"2507\" y=\"709\" type=\"line\"/>\n      <point x=\"3392\" y=\"942\" type=\"line\"/>\n      <point x=\"3441\" y=\"1221\" type=\"line\"/>\n      <point x=\"2237\" y=\"843\" type=\"line\"/>\n      <point x=\"2190\" y=\"575\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"39\" yOffset=\"545\"/>\n    <component base=\"period\" xOffset=\"934\" yOffset=\"545\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/period_period_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"402\"/>\n    <component base=\"period\" xOffset=\"1200\"/>\n    <component base=\"period\" xOffset=\"1998\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/period_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"102\"/>\n    <component base=\"question\" xOffset=\"954\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/periodcentered.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"periodcentered\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B7\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"103\" yOffset=\"582\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/perispomenicomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"perispomenicomb\" format=\"2\">\n  <unicode hex=\"0342\"/>\n  <outline>\n    <component base=\"tildecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/perthousand.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"perthousand\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2030\"/>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"261\" type=\"line\"/>\n      <point x=\"1147\" y=\"989\" type=\"line\"/>\n      <point x=\"1046\" y=\"1146\" type=\"line\"/>\n      <point x=\"26\" y=\"421\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"477\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"648\" y=\"-20\"/>\n      <point x=\"770\" y=\"109\"/>\n      <point x=\"770\" y=\"267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"399\"/>\n      <point x=\"693\" y=\"483\"/>\n      <point x=\"565\" y=\"483\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"483\"/>\n      <point x=\"270\" y=\"354\"/>\n      <point x=\"270\" y=\"196\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"270\" y=\"64\"/>\n      <point x=\"348\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"157\"/>\n      <point x=\"460\" y=\"182\"/>\n      <point x=\"460\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"261\"/>\n      <point x=\"487\" y=\"306\"/>\n      <point x=\"534\" y=\"306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"306\"/>\n      <point x=\"581\" y=\"281\"/>\n      <point x=\"581\" y=\"241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"581\" y=\"193\"/>\n      <point x=\"548\" y=\"157\"/>\n    </contour>\n    <contour>\n      <point x=\"946\" y=\"306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"306\"/>\n      <point x=\"1240\" y=\"435\"/>\n      <point x=\"1240\" y=\"593\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1240\" y=\"725\"/>\n      <point x=\"1162\" y=\"809\"/>\n      <point x=\"1034\" y=\"809\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"809\"/>\n      <point x=\"740\" y=\"680\"/>\n      <point x=\"740\" y=\"521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"390\"/>\n      <point x=\"817\" y=\"306\"/>\n    </contour>\n    <contour>\n      <point x=\"977\" y=\"483\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"483\"/>\n      <point x=\"929\" y=\"508\"/>\n      <point x=\"929\" y=\"547\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"587\"/>\n      <point x=\"956\" y=\"632\"/>\n      <point x=\"1003\" y=\"632\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1032\" y=\"632\"/>\n      <point x=\"1050\" y=\"607\"/>\n      <point x=\"1050\" y=\"567\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1050\" y=\"519\"/>\n      <point x=\"1017\" y=\"483\"/>\n    </contour>\n    <component base=\"zerosuperior\" xOffset=\"-260\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/peseta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peseta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A7\"/>\n  <outline>\n    <contour>\n      <point x=\"44\" y=\"779\" type=\"line\"/>\n      <point x=\"1243\" y=\"779\" type=\"line\"/>\n      <point x=\"1283\" y=\"1001\" type=\"line\"/>\n      <point x=\"84\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/peso.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peso\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B1\"/>\n  <outline>\n    <contour>\n      <point x=\"70\" y=\"921\" type=\"line\"/>\n      <point x=\"1269\" y=\"921\" type=\"line\"/>\n      <point x=\"1297\" y=\"1084\" type=\"line\"/>\n      <point x=\"98\" y=\"1084\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"28\" y=\"684\" type=\"line\"/>\n      <point x=\"1227\" y=\"684\" type=\"line\"/>\n      <point x=\"1255\" y=\"847\" type=\"line\"/>\n      <point x=\"56\" y=\"847\" type=\"line\"/>\n    </contour>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/phi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"phi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C6\"/>\n  <anchor x=\"428\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"763\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"560\" y=\"-460\" type=\"line\"/>\n      <point x=\"644\" y=\"31\" type=\"line\"/>\n      <point x=\"380\" y=\"31\" type=\"line\"/>\n      <point x=\"290\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"269\" y=\"1015\" type=\"line\"/>\n      <point x=\"123\" y=\"826\"/>\n      <point x=\"56\" y=\"634\"/>\n      <point x=\"56\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"56\" y=\"138\"/>\n      <point x=\"216\" y=\"-20\"/>\n      <point x=\"502\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"-20\"/>\n      <point x=\"1142\" y=\"227\"/>\n      <point x=\"1142\" y=\"646\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"944\"/>\n      <point x=\"1046\" y=\"1080\"/>\n      <point x=\"836\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"1080\"/>\n      <point x=\"592\" y=\"989\"/>\n      <point x=\"557\" y=\"791\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"199\" type=\"line\"/>\n      <point x=\"631\" y=\"199\" type=\"line\"/>\n      <point x=\"726\" y=\"741\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"791\"/>\n      <point x=\"752\" y=\"811\"/>\n      <point x=\"785\" y=\"811\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"811\"/>\n      <point x=\"873\" y=\"729\"/>\n      <point x=\"873\" y=\"643\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"369\"/>\n      <point x=\"749\" y=\"207\"/>\n      <point x=\"542\" y=\"207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"207\"/>\n      <point x=\"325\" y=\"292\"/>\n      <point x=\"325\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"600\"/>\n      <point x=\"377\" y=\"734\"/>\n      <point x=\"490\" y=\"865\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/pi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C0\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"911\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"995\" y=\"-20\"/>\n      <point x=\"1037\" y=\"-15\"/>\n      <point x=\"1106\" y=\"2\" type=\"curve\"/>\n      <point x=\"1077\" y=\"245\" type=\"line\"/>\n      <point x=\"1047\" y=\"240\"/>\n      <point x=\"1026\" y=\"237\"/>\n      <point x=\"1006\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"237\"/>\n      <point x=\"913\" y=\"283\"/>\n      <point x=\"930\" y=\"382\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1060\" type=\"line\"/>\n      <point x=\"778\" y=\"1060\" type=\"line\"/>\n      <point x=\"656\" y=\"365\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"610\" y=\"101\"/>\n      <point x=\"689\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"102\" y=\"808\" type=\"line\"/>\n      <point x=\"1196\" y=\"808\" type=\"line\"/>\n      <point x=\"1240\" y=\"1060\" type=\"line\"/>\n      <point x=\"146\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"381\" y=\"0\" type=\"line\"/>\n      <point x=\"568\" y=\"1060\" type=\"line\"/>\n      <point x=\"298\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/plus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002B\"/>\n  <outline>\n    <contour>\n      <point x=\"407\" y=\"190\" type=\"line\"/>\n      <point x=\"672\" y=\"190\" type=\"line\"/>\n      <point x=\"855\" y=\"1228\" type=\"line\"/>\n      <point x=\"591\" y=\"1228\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"110\" y=\"588\" type=\"line\"/>\n      <point x=\"1110\" y=\"588\" type=\"line\"/>\n      <point x=\"1153\" y=\"831\" type=\"line\"/>\n      <point x=\"153\" y=\"831\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/plus_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"plus\" xOffset=\"72\"/>\n    <component base=\"greater\" xOffset=\"1066\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/plus_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"plus\" xOffset=\"140\"/>\n    <component base=\"plus\" xOffset=\"1060\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/plus_plus_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus_plus_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1904\" y=\"588\" type=\"line\"/>\n      <point x=\"2789\" y=\"588\" type=\"line\"/>\n      <point x=\"2822\" y=\"831\" type=\"line\"/>\n      <point x=\"1937\" y=\"831\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"904\" y=\"588\" type=\"line\"/>\n      <point x=\"1789\" y=\"588\" type=\"line\"/>\n      <point x=\"1822\" y=\"831\" type=\"line\"/>\n      <point x=\"937\" y=\"831\" type=\"line\"/>\n    </contour>\n    <component base=\"plus\" xOffset=\"180\"/>\n    <component base=\"plus\" xOffset=\"2220\"/>\n    <component base=\"plus\" xOffset=\"1200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/plusminus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plusminus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B1\"/>\n  <outline>\n    <contour>\n      <point x=\"419\" y=\"246\" type=\"line\"/>\n      <point x=\"681\" y=\"246\" type=\"line\"/>\n      <point x=\"853\" y=\"1224\" type=\"line\"/>\n      <point x=\"591\" y=\"1224\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"121\" y=\"651\" type=\"line\"/>\n      <point x=\"1121\" y=\"651\" type=\"line\"/>\n      <point x=\"1165\" y=\"901\" type=\"line\"/>\n      <point x=\"165\" y=\"901\" type=\"line\"/>\n    </contour>\n    <component base=\"minus\" xOffset=\"-76\" yOffset=\"-430\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/prescription.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"prescription\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"211E\"/>\n  <outline>\n    <contour>\n      <point x=\"141\" y=\"420\" type=\"line\"/>\n      <point x=\"253\" y=\"420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"420\"/>\n      <point x=\"1181\" y=\"623\"/>\n      <point x=\"1181\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1181\" y=\"1293\"/>\n      <point x=\"984\" y=\"1440\"/>\n      <point x=\"605\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"1440\"/>\n      <point x=\"348\" y=\"1433\"/>\n      <point x=\"260\" y=\"1420\" type=\"curve\"/>\n      <point x=\"227\" y=\"1168\" type=\"line\"/>\n      <point x=\"320\" y=\"1181\"/>\n      <point x=\"445\" y=\"1188\"/>\n      <point x=\"592\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"1188\"/>\n      <point x=\"904\" y=\"1123\"/>\n      <point x=\"904\" y=\"998\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"782\"/>\n      <point x=\"693\" y=\"670\"/>\n      <point x=\"286\" y=\"670\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"174\" y=\"670\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"10\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"0\" type=\"line\"/>\n      <point x=\"526\" y=\"1420\" type=\"line\"/>\n      <point x=\"260\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"472\" y=\"-185\" type=\"line\"/>\n      <point x=\"1202\" y=\"282\" type=\"line\"/>\n      <point x=\"1077\" y=\"482\" type=\"line\"/>\n      <point x=\"347\" y=\"15\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"810\" y=\"-260\" type=\"line\"/>\n      <point x=\"1114\" y=\"-260\" type=\"line\"/>\n      <point x=\"769\" y=\"630\" type=\"line\"/>\n      <point x=\"479\" y=\"630\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/product.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"product\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"220F\"/>\n  <outline>\n    <contour>\n      <point x=\"614\" y=\"-200\" type=\"line\"/>\n      <point x=\"880\" y=\"-200\" type=\"line\"/>\n      <point x=\"1166\" y=\"1420\" type=\"line\"/>\n      <point x=\"900\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"62\" y=\"-200\" type=\"line\"/>\n      <point x=\"328\" y=\"-200\" type=\"line\"/>\n      <point x=\"614\" y=\"1420\" type=\"line\"/>\n      <point x=\"348\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"175\" y=\"1168\" type=\"line\"/>\n      <point x=\"1249\" y=\"1168\" type=\"line\"/>\n      <point x=\"1294\" y=\"1420\" type=\"line\"/>\n      <point x=\"220\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/psi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"psi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C8\"/>\n  <anchor x=\"428\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"503\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"-20\"/>\n      <point x=\"1046\" y=\"162\"/>\n      <point x=\"1111\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1204\" y=\"1060\" type=\"line\"/>\n      <point x=\"933\" y=\"1060\" type=\"line\"/>\n      <point x=\"840\" y=\"530\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"333\"/>\n      <point x=\"709\" y=\"235\"/>\n      <point x=\"548\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"235\"/>\n      <point x=\"325\" y=\"333\"/>\n      <point x=\"360\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"1060\" type=\"line\"/>\n      <point x=\"182\" y=\"1060\" type=\"line\"/>\n      <point x=\"89\" y=\"530\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"24\" y=\"162\"/>\n      <point x=\"162\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"282\" y=\"-460\" type=\"line\"/>\n      <point x=\"568\" y=\"-460\" type=\"line\"/>\n      <point x=\"663\" y=\"75\" type=\"line\"/>\n      <point x=\"377\" y=\"75\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"430\" y=\"141\" type=\"line\"/>\n      <point x=\"632\" y=\"141\" type=\"line\"/>\n      <point x=\"794\" y=\"1060\" type=\"line\"/>\n      <point x=\"592\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/published.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"published\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2117\"/>\n  <outline>\n    <contour>\n      <point x=\"509\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"15\"/>\n      <point x=\"1239\" y=\"345\"/>\n      <point x=\"1239\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1239\" y=\"1219\"/>\n      <point x=\"1059\" y=\"1405\"/>\n      <point x=\"754\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"1405\"/>\n      <point x=\"21\" y=\"1070\"/>\n      <point x=\"21\" y=\"502\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"21\" y=\"196\"/>\n      <point x=\"202\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"342\" y=\"396\" type=\"line\"/>\n      <point x=\"543\" y=\"396\" type=\"line\"/>\n      <point x=\"654\" y=\"1030\" type=\"line\"/>\n      <point x=\"453\" y=\"1030\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"546\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"363\" y=\"227\"/>\n      <point x=\"255\" y=\"341\"/>\n      <point x=\"255\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"255\" y=\"948\"/>\n      <point x=\"426\" y=\"1193\"/>\n      <point x=\"716\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"1193\"/>\n      <point x=\"1005\" y=\"1074\"/>\n      <point x=\"1005\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1005\" y=\"467\"/>\n      <point x=\"835\" y=\"227\"/>\n    </contour>\n    <contour>\n      <point x=\"486\" y=\"543\" type=\"line\"/>\n      <point x=\"650\" y=\"543\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"543\"/>\n      <point x=\"950\" y=\"652\"/>\n      <point x=\"950\" y=\"809\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"949\"/>\n      <point x=\"870\" y=\"1030\"/>\n      <point x=\"726\" y=\"1030\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"1030\" type=\"line\"/>\n      <point x=\"539\" y=\"858\" type=\"line\"/>\n      <point x=\"693\" y=\"858\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"858\"/>\n      <point x=\"753\" y=\"836\"/>\n      <point x=\"753\" y=\"797\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"748\"/>\n      <point x=\"719\" y=\"715\"/>\n      <point x=\"669\" y=\"715\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"715\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/punctuationspace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"punctuationspace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2008\"/>\n  <outline>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>period</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/q.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"q\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0071\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"353\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"-21\"/>\n      <point x=\"681\" y=\"125\"/>\n      <point x=\"740\" y=\"379\" type=\"curve\"/>\n      <point x=\"677\" y=\"224\" type=\"line\"/>\n      <point x=\"793\" y=\"224\" type=\"line\"/>\n      <point x=\"798\" y=\"667\" type=\"line\"/>\n      <point x=\"742\" y=\"393\"/>\n      <point x=\"617\" y=\"236\"/>\n      <point x=\"448\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"365\" y=\"236\"/>\n      <point x=\"326\" y=\"273\"/>\n      <point x=\"326\" y=\"351\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"606\"/>\n      <point x=\"610\" y=\"799\"/>\n      <point x=\"971\" y=\"813\" type=\"curve\"/>\n      <point x=\"1132\" y=\"1070\" type=\"line\"/>\n      <point x=\"1114\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"1070\"/>\n      <point x=\"49\" y=\"760\"/>\n      <point x=\"49\" y=\"279\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"49\" y=\"89\"/>\n      <point x=\"159\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"999\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1017\" y=\"-480\" type=\"line\"/>\n      <point x=\"1058\" y=\"-251\" type=\"line\"/>\n      <point x=\"1040\" y=\"-251\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"-251\"/>\n      <point x=\"919\" y=\"-197\"/>\n      <point x=\"946\" y=\"-48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1144\" y=\"1070\" type=\"line\"/>\n      <point x=\"1124\" y=\"1070\" type=\"line\"/>\n      <point x=\"857\" y=\"1006\" type=\"line\"/>\n      <point x=\"669\" y=\"-62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"-369\"/>\n      <point x=\"702\" y=\"-480\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/question.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003F\"/>\n  <outline>\n    <contour>\n      <point x=\"405\" y=\"489\" type=\"line\"/>\n      <point x=\"669\" y=\"489\" type=\"line\"/>\n      <point x=\"672\" y=\"505\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"578\"/>\n      <point x=\"748\" y=\"643\"/>\n      <point x=\"875\" y=\"738\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1043\" y=\"863\"/>\n      <point x=\"1130\" y=\"978\"/>\n      <point x=\"1130\" y=\"1142\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1130\" y=\"1329\"/>\n      <point x=\"993\" y=\"1440\"/>\n      <point x=\"761\" y=\"1440\" type=\"curve\"/>\n      <point x=\"715\" y=\"1190\" type=\"line\"/>\n      <point x=\"792\" y=\"1190\"/>\n      <point x=\"838\" y=\"1151\"/>\n      <point x=\"838\" y=\"1085\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"1012\"/>\n      <point x=\"795\" y=\"965\"/>\n      <point x=\"716\" y=\"904\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"773\"/>\n      <point x=\"424\" y=\"681\"/>\n      <point x=\"408\" y=\"519\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"365\" y=\"1025\" type=\"line\"/>\n      <point x=\"462\" y=\"1125\"/>\n      <point x=\"598\" y=\"1190\"/>\n      <point x=\"715\" y=\"1190\" type=\"curve\"/>\n      <point x=\"761\" y=\"1440\" type=\"line\"/>\n      <point x=\"549\" y=\"1440\"/>\n      <point x=\"334\" y=\"1357\"/>\n      <point x=\"212\" y=\"1231\" type=\"curve\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-38\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/question_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"question\" xOffset=\"235\"/>\n    <component base=\"colon\" xOffset=\"1113\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/question_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1067\" y=\"333\" type=\"line\"/>\n      <point x=\"2085\" y=\"333\" type=\"line\"/>\n      <point x=\"2129\" y=\"583\" type=\"line\"/>\n      <point x=\"1111\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1192\" y=\"835\" type=\"curve\"/>\n      <point x=\"2173\" y=\"835\" type=\"line\"/>\n      <point x=\"2217\" y=\"1085\" type=\"line\"/>\n      <point x=\"1317\" y=\"1085\" type=\"line\"/>\n      <point x=\"1300\" y=\"1007\"/>\n      <point x=\"1251\" y=\"908\"/>\n    </contour>\n    <component base=\"question\" xOffset=\"47\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/question_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"question\" xOffset=\"235\"/>\n    <component base=\"period\" xOffset=\"1097\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/question_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"question\" xOffset=\"101\"/>\n    <component base=\"question\" xOffset=\"1087\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/question_question_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_question_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2096\" y=\"333\" type=\"line\"/>\n      <point x=\"3074\" y=\"333\" type=\"line\"/>\n      <point x=\"3118\" y=\"583\" type=\"line\"/>\n      <point x=\"2140\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2221\" y=\"835\" type=\"curve\"/>\n      <point x=\"3162\" y=\"835\" type=\"line\"/>\n      <point x=\"3206\" y=\"1085\" type=\"line\"/>\n      <point x=\"2346\" y=\"1085\" type=\"line\"/>\n      <point x=\"2329\" y=\"1007\"/>\n      <point x=\"2280\" y=\"908\"/>\n    </contour>\n    <component base=\"question\" xOffset=\"81\"/>\n    <component base=\"question\" xOffset=\"1070\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/questiondown.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"questiondown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BF\"/>\n  <outline>\n    <contour>\n      <point x=\"445\" y=\"-380\" type=\"curve\"/>\n      <point x=\"491\" y=\"-130\" type=\"line\"/>\n      <point x=\"414\" y=\"-130\"/>\n      <point x=\"368\" y=\"-91\"/>\n      <point x=\"368\" y=\"-25\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"368\" y=\"48\"/>\n      <point x=\"411\" y=\"95\"/>\n      <point x=\"490\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"287\"/>\n      <point x=\"782\" y=\"379\"/>\n      <point x=\"798\" y=\"541\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"571\" type=\"line\"/>\n      <point x=\"537\" y=\"571\" type=\"line\"/>\n      <point x=\"534\" y=\"555\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"482\"/>\n      <point x=\"458\" y=\"417\"/>\n      <point x=\"331\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"163\" y=\"197\"/>\n      <point x=\"76\" y=\"82\"/>\n      <point x=\"76\" y=\"-82\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"76\" y=\"-269\"/>\n      <point x=\"213\" y=\"-380\"/>\n    </contour>\n    <contour>\n      <point x=\"445\" y=\"-380\" type=\"line\"/>\n      <point x=\"657\" y=\"-380\"/>\n      <point x=\"872\" y=\"-297\"/>\n      <point x=\"994\" y=\"-171\" type=\"curve\"/>\n      <point x=\"841\" y=\"35\" type=\"line\"/>\n      <point x=\"744\" y=\"-65\"/>\n      <point x=\"608\" y=\"-130\"/>\n      <point x=\"491\" y=\"-130\" type=\"curve\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"174\" yOffset=\"736\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/questiongreek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"questiongreek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"037E\"/>\n  <outline>\n    <component base=\"semicolon\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/quotedbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0022\"/>\n  <outline>\n    <component base=\"quotesingle\" xOffset=\"-222\"/>\n    <component base=\"quotesingle\" xOffset=\"222\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/quotedblbase.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedblbase\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201E\"/>\n  <outline>\n    <component base=\"quoteright\" xOffset=\"98\" yOffset=\"-1238\"/>\n    <component base=\"quoteright\" xOffset=\"-422\" yOffset=\"-1238\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/quotedblleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedblleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201C\"/>\n  <outline>\n    <component base=\"quoteleft\" xOffset=\"-262\"/>\n    <component base=\"quoteleft\" xOffset=\"258\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/quotedblright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedblright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201D\"/>\n  <outline>\n    <component base=\"quoteright\" xOffset=\"258\"/>\n    <component base=\"quoteright\" xOffset=\"-262\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/quoteleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quoteleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2018\"/>\n  <outline>\n    <contour>\n      <point x=\"745\" y=\"1443\" type=\"line\"/>\n      <point x=\"678\" y=\"1382\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"1248\"/>\n      <point x=\"438\" y=\"1115\"/>\n      <point x=\"415\" y=\"977\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"759\"/>\n      <point x=\"473\" y=\"645\"/>\n      <point x=\"691\" y=\"645\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"645\" type=\"line\"/>\n      <point x=\"847\" y=\"910\" type=\"line\"/>\n      <point x=\"779\" y=\"910\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"910\"/>\n      <point x=\"670\" y=\"939\"/>\n      <point x=\"680\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1062\"/>\n      <point x=\"753\" y=\"1121\"/>\n      <point x=\"833\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"1258\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/quotereversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotereversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201B\"/>\n  <outline>\n    <contour>\n      <point x=\"666\" y=\"624\" type=\"line\"/>\n      <point x=\"879\" y=\"797\" type=\"line\"/>\n      <point x=\"828\" y=\"865\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"926\"/>\n      <point x=\"742\" y=\"987\"/>\n      <point x=\"742\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"742\" y=\"1122\"/>\n      <point x=\"788\" y=\"1160\"/>\n      <point x=\"876\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"931\" y=\"1160\" type=\"line\"/>\n      <point x=\"931\" y=\"1420\" type=\"line\"/>\n      <point x=\"846\" y=\"1420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"597\" y=\"1420\"/>\n      <point x=\"467\" y=\"1288\"/>\n      <point x=\"467\" y=\"1038\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"927\"/>\n      <point x=\"519\" y=\"817\"/>\n      <point x=\"615\" y=\"691\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/quoteright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quoteright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2019\"/>\n  <outline>\n    <contour>\n      <point x=\"582\" y=\"645\" type=\"line\"/>\n      <point x=\"649\" y=\"706\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"840\"/>\n      <point x=\"889\" y=\"973\"/>\n      <point x=\"912\" y=\"1111\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"949\" y=\"1329\"/>\n      <point x=\"854\" y=\"1443\"/>\n      <point x=\"636\" y=\"1443\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"528\" y=\"1443\" type=\"line\"/>\n      <point x=\"480\" y=\"1178\" type=\"line\"/>\n      <point x=\"548\" y=\"1178\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"624\" y=\"1178\"/>\n      <point x=\"657\" y=\"1149\"/>\n      <point x=\"647\" y=\"1091\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"1026\"/>\n      <point x=\"574\" y=\"967\"/>\n      <point x=\"494\" y=\"895\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/quotesinglbase.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotesinglbase\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201A\"/>\n  <outline>\n    <component base=\"quoteright\" xOffset=\"-141\" yOffset=\"-1238\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/quotesingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotesingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0027\"/>\n  <outline>\n    <contour>\n      <point x=\"524\" y=\"780\" type=\"line\"/>\n      <point x=\"766\" y=\"780\" type=\"line\"/>\n      <point x=\"915\" y=\"1420\" type=\"line\"/>\n      <point x=\"599\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/r.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"r\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0072\"/>\n  <anchor x=\"332\" y=\"1\" name=\"bottom\"/>\n  <anchor x=\"650\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"194\" y=\"0\" type=\"line\"/>\n      <point x=\"469\" y=\"0\" type=\"line\"/>\n      <point x=\"586\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"634\" y=\"942\"/>\n      <point x=\"549\" y=\"1080\"/>\n      <point x=\"314\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"223\" y=\"1080\"/>\n      <point x=\"132\" y=\"1067\"/>\n      <point x=\"38\" y=\"1042\" type=\"curve\"/>\n      <point x=\"69\" y=\"800\" type=\"line\"/>\n      <point x=\"126\" y=\"815\"/>\n      <point x=\"180\" y=\"823\"/>\n      <point x=\"232\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"823\"/>\n      <point x=\"332\" y=\"785\"/>\n      <point x=\"318\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"-30\" y=\"0\" type=\"line\"/>\n      <point x=\"712\" y=\"0\" type=\"line\"/>\n      <point x=\"753\" y=\"232\" type=\"line\"/>\n      <point x=\"11\" y=\"232\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"559\" y=\"511\" type=\"line\"/>\n      <point x=\"597\" y=\"745\"/>\n      <point x=\"699\" y=\"823\"/>\n      <point x=\"813\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"823\"/>\n      <point x=\"932\" y=\"761\"/>\n      <point x=\"914\" y=\"648\" type=\"curve\"/>\n      <point x=\"1190\" y=\"648\" type=\"line\"/>\n      <point x=\"1237\" y=\"932\"/>\n      <point x=\"1149\" y=\"1080\"/>\n      <point x=\"936\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"1080\"/>\n      <point x=\"674\" y=\"992\"/>\n      <point x=\"627\" y=\"838\" type=\"curve\"/>\n      <point x=\"572\" y=\"838\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/r.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"r.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"910\" y=\"-18\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"973\" y=\"-18\"/>\n      <point x=\"1035\" y=\"-12\"/>\n      <point x=\"1092\" y=\"0\" type=\"curve\"/>\n      <point x=\"1078\" y=\"228\" type=\"line\"/>\n      <point x=\"1056\" y=\"224\"/>\n      <point x=\"1030\" y=\"222\"/>\n      <point x=\"1000\" y=\"222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"926\" y=\"222\"/>\n      <point x=\"892\" y=\"251\"/>\n      <point x=\"894\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"354\"/>\n      <point x=\"911\" y=\"430\"/>\n      <point x=\"946\" y=\"550\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1097\" y=\"1065\" type=\"line\"/>\n      <point x=\"373\" y=\"1064\" type=\"line\"/>\n      <point x=\"373\" y=\"816\" type=\"line\"/>\n      <point x=\"970\" y=\"816\" type=\"line\"/>\n      <point x=\"794\" y=\"971\" type=\"line\"/>\n      <point x=\"670\" y=\"540\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"635\" y=\"417\"/>\n      <point x=\"618\" y=\"327\"/>\n      <point x=\"617\" y=\"257\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"614\" y=\"69\"/>\n      <point x=\"706\" y=\"-18\"/>\n    </contour>\n    <contour>\n      <point x=\"178\" y=\"184\" type=\"line\"/>\n      <point x=\"430\" y=\"458\"/>\n      <point x=\"517\" y=\"689\"/>\n      <point x=\"517\" y=\"1082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"1166\" type=\"line\"/>\n      <point x=\"260\" y=\"1166\" type=\"line\"/>\n      <point x=\"260\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"744\"/>\n      <point x=\"188\" y=\"555\"/>\n      <point x=\"-19\" y=\"347\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/racute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"racute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0155\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"acutecomb\" xOffset=\"-43\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/racute.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"racute.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"r.salt\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/radical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"radical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221A\"/>\n  <outline>\n    <contour>\n      <point x=\"105\" y=\"-200\" type=\"line\"/>\n      <point x=\"480\" y=\"-200\" type=\"line\"/>\n      <point x=\"1083\" y=\"1420\" type=\"line\"/>\n      <point x=\"810\" y=\"1420\" type=\"line\"/>\n      <point x=\"332\" y=\"80\" type=\"line\"/>\n      <point x=\"305\" y=\"80\" type=\"line\"/>\n      <point x=\"284\" y=\"401\" type=\"line\"/>\n      <point x=\"38\" y=\"401\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"794\" y=\"1177\" type=\"line\"/>\n      <point x=\"1261\" y=\"1177\" type=\"line\"/>\n      <point x=\"1304\" y=\"1420\" type=\"line\"/>\n      <point x=\"837\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ratio.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ratio\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2236\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"28\" yOffset=\"160\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0159\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"caroncomb\" xOffset=\"-43\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rcaron.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rcaron.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"r.salt\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0157\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"-174\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rcommaaccent.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rcommaaccent.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"r.salt\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E5B\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-175\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rdotbelow.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rdotbelow.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"r.salt\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/recordS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"recordSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241E\"/>\n  <outline>\n    <component base=\"R.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>R.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/registered.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"registered\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AE\"/>\n  <outline>\n    <contour>\n      <point x=\"509\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"15\"/>\n      <point x=\"1239\" y=\"345\"/>\n      <point x=\"1239\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1239\" y=\"1219\"/>\n      <point x=\"1059\" y=\"1405\"/>\n      <point x=\"754\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"1405\"/>\n      <point x=\"21\" y=\"1070\"/>\n      <point x=\"21\" y=\"502\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"21\" y=\"196\"/>\n      <point x=\"202\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"342\" y=\"396\" type=\"line\"/>\n      <point x=\"543\" y=\"396\" type=\"line\"/>\n      <point x=\"654\" y=\"1030\" type=\"line\"/>\n      <point x=\"453\" y=\"1030\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"665\" y=\"396\" type=\"line\"/>\n      <point x=\"877\" y=\"396\" type=\"line\"/>\n      <point x=\"800\" y=\"652\" type=\"line\"/>\n      <point x=\"616\" y=\"625\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"546\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"363\" y=\"227\"/>\n      <point x=\"255\" y=\"341\"/>\n      <point x=\"255\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"255\" y=\"948\"/>\n      <point x=\"426\" y=\"1193\"/>\n      <point x=\"716\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"1193\"/>\n      <point x=\"1005\" y=\"1074\"/>\n      <point x=\"1005\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1005\" y=\"467\"/>\n      <point x=\"835\" y=\"227\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"583\" type=\"line\"/>\n      <point x=\"645\" y=\"583\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"583\"/>\n      <point x=\"927\" y=\"690\"/>\n      <point x=\"927\" y=\"844\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"962\"/>\n      <point x=\"854\" y=\"1030\"/>\n      <point x=\"721\" y=\"1030\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"1030\" type=\"line\"/>\n      <point x=\"539\" y=\"867\" type=\"line\"/>\n      <point x=\"678\" y=\"867\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"867\"/>\n      <point x=\"732\" y=\"849\"/>\n      <point x=\"732\" y=\"819\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"776\"/>\n      <point x=\"698\" y=\"747\"/>\n      <point x=\"648\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"747\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/replacementC_haracter.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"replacementCharacter\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FFFD\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1160\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"40\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"355\"/>\n      <point x=\"521\" y=\"390\"/>\n      <point x=\"521\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"479\"/>\n      <point x=\"556\" y=\"514\"/>\n      <point x=\"600\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"514\"/>\n      <point x=\"680\" y=\"479\"/>\n      <point x=\"680\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"390\"/>\n      <point x=\"645\" y=\"355\"/>\n    </contour>\n    <contour>\n      <point x=\"544\" y=\"575\" type=\"line\"/>\n      <point x=\"544\" y=\"606\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"663\"/>\n      <point x=\"561\" y=\"706\"/>\n      <point x=\"610\" y=\"748\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"779\"/>\n      <point x=\"666\" y=\"792\"/>\n      <point x=\"666\" y=\"816\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"847\"/>\n      <point x=\"647\" y=\"861\"/>\n      <point x=\"604\" y=\"861\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"861\"/>\n      <point x=\"503\" y=\"847\"/>\n      <point x=\"450\" y=\"817\" type=\"curve\"/>\n      <point x=\"402\" y=\"917\" type=\"line\"/>\n      <point x=\"456\" y=\"955\"/>\n      <point x=\"520\" y=\"973\"/>\n      <point x=\"606\" y=\"973\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"973\"/>\n      <point x=\"788\" y=\"927\"/>\n      <point x=\"788\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"775\"/>\n      <point x=\"768\" y=\"741\"/>\n      <point x=\"728\" y=\"709\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"660\"/>\n      <point x=\"659\" y=\"631\"/>\n      <point x=\"659\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/returnsymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"returnsymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"23CE\"/>\n  <outline>\n    <contour>\n      <point x=\"923\" y=\"328\" type=\"line\"/>\n      <point x=\"1165\" y=\"328\" type=\"line\"/>\n      <point x=\"1165\" y=\"1167\" type=\"line\"/>\n      <point x=\"923\" y=\"1167\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"917\" type=\"line\"/>\n      <point x=\"1100\" y=\"1167\" type=\"line\"/>\n      <point x=\"774\" y=\"1167\" type=\"line\"/>\n      <point x=\"774\" y=\"917\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"326\" type=\"line\"/>\n      <point x=\"1050\" y=\"576\" type=\"line\"/>\n      <point x=\"203\" y=\"576\" type=\"line\"/>\n      <point x=\"203\" y=\"326\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"504\" y=\"-110\" type=\"line\"/>\n      <point x=\"684\" y=\"45\" type=\"line\"/>\n      <point x=\"298\" y=\"442\" type=\"line\"/>\n      <point x=\"298\" y=\"460\" type=\"line\"/>\n      <point x=\"684\" y=\"857\" type=\"line\"/>\n      <point x=\"504\" y=\"1012\" type=\"line\"/>\n      <point x=\"14\" y=\"512\" type=\"line\"/>\n      <point x=\"14\" y=\"390\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/reversedR_otatedF_loralH_eartB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"reversedRotatedFloralHeartBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2619\"/>\n  <outline>\n    <contour>\n      <point x=\"992\" y=\"433\" type=\"curve\"/>\n      <point x=\"1206\" y=\"476\" type=\"line\"/>\n      <point x=\"1181\" y=\"724\"/>\n      <point x=\"1088\" y=\"835\"/>\n      <point x=\"791\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"1031\"/>\n      <point x=\"461\" y=\"1112\"/>\n      <point x=\"427\" y=\"1285\" type=\"curve\"/>\n      <point x=\"194\" y=\"1237\" type=\"line\"/>\n      <point x=\"236\" y=\"993\"/>\n      <point x=\"336\" y=\"888\"/>\n      <point x=\"631\" y=\"776\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"675\"/>\n      <point x=\"978\" y=\"606\"/>\n    </contour>\n    <contour>\n      <point x=\"330\" y=\"8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"8\"/>\n      <point x=\"880\" y=\"214\"/>\n      <point x=\"880\" y=\"463\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"562\"/>\n      <point x=\"814\" y=\"625\"/>\n      <point x=\"706\" y=\"625\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"625\"/>\n      <point x=\"534\" y=\"541\"/>\n      <point x=\"470\" y=\"418\" type=\"curve\"/>\n      <point x=\"428\" y=\"442\" type=\"line\"/>\n      <point x=\"445\" y=\"475\"/>\n      <point x=\"506\" y=\"557\"/>\n      <point x=\"506\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"731\"/>\n      <point x=\"439\" y=\"786\"/>\n      <point x=\"329\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"193\" y=\"786\"/>\n      <point x=\"96\" y=\"696\"/>\n      <point x=\"96\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"96\" y=\"472\"/>\n      <point x=\"186\" y=\"451\"/>\n      <point x=\"186\" y=\"379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"186\" y=\"342\"/>\n      <point x=\"162\" y=\"314\"/>\n      <point x=\"127\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"314\"/>\n      <point x=\"89\" y=\"324\"/>\n      <point x=\"56\" y=\"349\" type=\"curve\"/>\n      <point x=\"-66\" y=\"153\" type=\"line\"/>\n      <point x=\"17\" y=\"61\"/>\n      <point x=\"130\" y=\"8\"/>\n    </contour>\n    <contour>\n      <point x=\"794\" y=\"821\" type=\"line\"/>\n      <point x=\"888\" y=\"997\"/>\n      <point x=\"954\" y=\"1049\"/>\n      <point x=\"1082\" y=\"1049\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1134\" y=\"1049\"/>\n      <point x=\"1178\" y=\"1042\"/>\n      <point x=\"1207\" y=\"1029\" type=\"curve\"/>\n      <point x=\"1262\" y=\"1236\" type=\"line\"/>\n      <point x=\"1214\" y=\"1260\"/>\n      <point x=\"1155\" y=\"1272\"/>\n      <point x=\"1087\" y=\"1272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"1272\"/>\n      <point x=\"743\" y=\"1187\"/>\n      <point x=\"566\" y=\"899\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rho.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rho\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C1\"/>\n  <anchor x=\"534\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"760\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"1080\"/>\n      <point x=\"215\" y=\"891\"/>\n      <point x=\"142\" y=\"479\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-23\" y=\"-460\" type=\"line\"/>\n      <point x=\"252\" y=\"-460\" type=\"line\"/>\n      <point x=\"415\" y=\"470\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"710\"/>\n      <point x=\"556\" y=\"820\"/>\n      <point x=\"730\" y=\"820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"820\"/>\n      <point x=\"855\" y=\"772\"/>\n      <point x=\"855\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"432\"/>\n      <point x=\"655\" y=\"237\"/>\n      <point x=\"390\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"237\"/>\n      <point x=\"241\" y=\"247\"/>\n      <point x=\"208\" y=\"262\" type=\"curve\"/>\n      <point x=\"169\" y=\"1\" type=\"line\"/>\n      <point x=\"236\" y=\"-12\"/>\n      <point x=\"301\" y=\"-20\"/>\n      <point x=\"368\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"-20\"/>\n      <point x=\"1142\" y=\"289\"/>\n      <point x=\"1142\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"939\"/>\n      <point x=\"1000\" y=\"1080\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7F\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n      <point x=\"1050\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n      <point x=\"1050\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndUpperOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndUpperOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2192\"/>\n  <outline>\n    <contour>\n      <point x=\"581\" y=\"100\" type=\"line\"/>\n      <point x=\"1159\" y=\"658\" type=\"line\"/>\n      <point x=\"1181\" y=\"780\" type=\"line\"/>\n      <point x=\"792\" y=\"1284\" type=\"line\"/>\n      <point x=\"600\" y=\"1134\" type=\"line\"/>\n      <point x=\"910\" y=\"733\" type=\"line\"/>\n      <point x=\"906\" y=\"715\" type=\"line\"/>\n      <point x=\"435\" y=\"267\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"587\" type=\"line\"/>\n      <point x=\"974\" y=\"587\" type=\"line\"/>\n      <point x=\"1016\" y=\"830\" type=\"line\"/>\n      <point x=\"153\" y=\"830\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lackP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlackPointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BA\"/>\n  <note>\ntriagrt\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"350\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1070\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B8\"/>\n  <note>\nuni25B8\n</note>\n  <outline>\n    <contour>\n      <point x=\"195\" y=\"241\" type=\"line\"/>\n      <point x=\"992\" y=\"710\" type=\"line\"/>\n      <point x=\"195\" y=\"1179\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B6\"/>\n  <note>\nuni25B6\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"110\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2590\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB89\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D7\"/>\n  <note>\nuni25D7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"line\"/>\n      <point x=\"915\" y=\"185\"/>\n      <point x=\"1125\" y=\"395\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1025\"/>\n      <point x=\"915\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B17\"/>\n  <note>\nuni2B17\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E8\"/>\n  <note>\nuni25E8\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"235\" type=\"line\"/>\n      <point x=\"1085\" y=\"235\" type=\"line\"/>\n      <point x=\"1085\" y=\"1185\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D1\"/>\n  <note>\nuni25D1\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"291\" type=\"line\"/>\n      <point x=\"851\" y=\"291\" type=\"line\"/>\n      <point x=\"1058\" y=\"704\" type=\"line\"/>\n      <point x=\"898\" y=\"1125\" type=\"line\"/>\n      <point x=\"600\" y=\"1125\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2595\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB87\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB8B\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB88\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB8A\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightW_hiteP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightWhitePointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BB\"/>\n  <note>\nuni25BB\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"350\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1070\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"320\" y=\"481\" type=\"line\"/>\n      <point x=\"320\" y=\"939\" type=\"line\"/>\n      <point x=\"192\" y=\"849\" type=\"line\"/>\n      <point x=\"847\" y=\"635\" type=\"line\"/>\n      <point x=\"847\" y=\"785\" type=\"line\"/>\n      <point x=\"192\" y=\"571\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B9\"/>\n  <note>\nuni25B9\n</note>\n  <outline>\n    <contour>\n      <point x=\"195\" y=\"241\" type=\"line\"/>\n      <point x=\"992\" y=\"710\" type=\"line\"/>\n      <point x=\"195\" y=\"1179\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"387\" y=\"422\" type=\"line\"/>\n      <point x=\"387\" y=\"998\" type=\"line\"/>\n      <point x=\"275\" y=\"916\" type=\"line\"/>\n      <point x=\"766\" y=\"627\" type=\"line\"/>\n      <point x=\"766\" y=\"793\" type=\"line\"/>\n      <point x=\"275\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rightW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B7\"/>\n  <note>\nuni25B7\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"110\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"320\" y=\"253\" type=\"line\"/>\n      <point x=\"320\" y=\"1164\" type=\"line\"/>\n      <point x=\"128\" y=\"1055\" type=\"line\"/>\n      <point x=\"888\" y=\"610\" type=\"line\"/>\n      <point x=\"887\" y=\"812\" type=\"line\"/>\n      <point x=\"124\" y=\"363\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DA\"/>\n  <outline>\n    <component base=\"ringcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ringbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringbelowcomb\" format=\"2\">\n  <unicode hex=\"0325\"/>\n  <anchor x=\"506\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"437\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <component base=\"ringcomb\" xOffset=\"-304\" yOffset=\"-1698\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ringcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringcomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"827\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"767\" y=\"1480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"965\" y=\"1480\"/>\n      <point x=\"1097\" y=\"1578\"/>\n      <point x=\"1097\" y=\"1725\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1097\" y=\"1835\"/>\n      <point x=\"995\" y=\"1908\"/>\n      <point x=\"843\" y=\"1908\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"1908\"/>\n      <point x=\"513\" y=\"1810\"/>\n      <point x=\"513\" y=\"1663\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"1553\"/>\n      <point x=\"615\" y=\"1480\"/>\n    </contour>\n    <contour>\n      <point x=\"794\" y=\"1629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"1629\"/>\n      <point x=\"725\" y=\"1649\"/>\n      <point x=\"725\" y=\"1680\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"1728\"/>\n      <point x=\"762\" y=\"1760\"/>\n      <point x=\"817\" y=\"1760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"858\" y=\"1760\"/>\n      <point x=\"885\" y=\"1739\"/>\n      <point x=\"885\" y=\"1708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"1661\"/>\n      <point x=\"849\" y=\"1629\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ringcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringcomb\" format=\"2\">\n  <unicode hex=\"030A\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"785\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"715\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"1188\"/>\n      <point x=\"1037\" y=\"1294\"/>\n      <point x=\"1037\" y=\"1453\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"1565\"/>\n      <point x=\"940\" y=\"1640\"/>\n      <point x=\"795\" y=\"1640\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"1640\"/>\n      <point x=\"472\" y=\"1534\"/>\n      <point x=\"472\" y=\"1375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"1263\"/>\n      <point x=\"569\" y=\"1188\"/>\n    </contour>\n    <contour>\n      <point x=\"742\" y=\"1339\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"1339\"/>\n      <point x=\"680\" y=\"1363\"/>\n      <point x=\"680\" y=\"1398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"1453\"/>\n      <point x=\"715\" y=\"1489\"/>\n      <point x=\"768\" y=\"1489\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"1489\"/>\n      <point x=\"829\" y=\"1465\"/>\n      <point x=\"829\" y=\"1430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"829\" y=\"1375\"/>\n      <point x=\"794\" y=\"1339\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rotatedF_loralH_eartB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rotatedFloralHeartBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2767\"/>\n  <outline>\n    <contour>\n      <point x=\"696\" y=\"8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"8\"/>\n      <point x=\"1018\" y=\"59\"/>\n      <point x=\"1134\" y=\"153\" type=\"curve\"/>\n      <point x=\"1062\" y=\"339\" type=\"line\"/>\n      <point x=\"1032\" y=\"321\"/>\n      <point x=\"1017\" y=\"314\"/>\n      <point x=\"1002\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"314\"/>\n      <point x=\"958\" y=\"327\"/>\n      <point x=\"958\" y=\"352\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"958\" y=\"456\"/>\n      <point x=\"1131\" y=\"447\"/>\n      <point x=\"1131\" y=\"616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"724\"/>\n      <point x=\"1071\" y=\"786\"/>\n      <point x=\"962\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"786\"/>\n      <point x=\"720\" y=\"688\"/>\n      <point x=\"720\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"507\"/>\n      <point x=\"743\" y=\"460\"/>\n      <point x=\"747\" y=\"438\" type=\"curve\"/>\n      <point x=\"693\" y=\"421\" type=\"line\"/>\n      <point x=\"668\" y=\"532\"/>\n      <point x=\"652\" y=\"625\"/>\n      <point x=\"528\" y=\"625\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"625\"/>\n      <point x=\"278\" y=\"540\"/>\n      <point x=\"278\" y=\"339\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"137\"/>\n      <point x=\"436\" y=\"8\"/>\n    </contour>\n    <contour>\n      <point x=\"533\" y=\"831\" type=\"curve\"/>\n      <point x=\"755\" y=\"899\" type=\"line\"/>\n      <point x=\"694\" y=\"1148\"/>\n      <point x=\"558\" y=\"1272\"/>\n      <point x=\"335\" y=\"1272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"259\" y=\"1272\"/>\n      <point x=\"188\" y=\"1256\"/>\n      <point x=\"134\" y=\"1225\" type=\"curve\"/>\n      <point x=\"192\" y=\"1018\" type=\"line\"/>\n      <point x=\"235\" y=\"1039\"/>\n      <point x=\"284\" y=\"1049\"/>\n      <point x=\"328\" y=\"1049\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"1049\"/>\n      <point x=\"515\" y=\"977\"/>\n    </contour>\n    <contour>\n      <point x=\"193\" y=\"426\" type=\"line\"/>\n      <point x=\"212\" y=\"599\"/>\n      <point x=\"338\" y=\"644\"/>\n      <point x=\"677\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"908\"/>\n      <point x=\"1182\" y=\"989\"/>\n      <point x=\"1236\" y=\"1237\" type=\"curve\"/>\n      <point x=\"1019\" y=\"1282\" type=\"line\"/>\n      <point x=\"977\" y=\"1118\"/>\n      <point x=\"880\" y=\"1062\"/>\n      <point x=\"577\" y=\"957\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"161\" y=\"812\"/>\n      <point x=\"12\" y=\"731\"/>\n      <point x=\"-24\" y=\"476\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ruble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ruble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BD\"/>\n  <outline>\n    <contour>\n      <point x=\"-82\" y=\"65\" type=\"line\"/>\n      <point x=\"706\" y=\"65\" type=\"line\"/>\n      <point x=\"742\" y=\"270\" type=\"line\"/>\n      <point x=\"-46\" y=\"270\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-33\" y=\"341\" type=\"line\"/>\n      <point x=\"404\" y=\"341\" type=\"line\"/>\n      <point x=\"446\" y=\"581\" type=\"line\"/>\n      <point x=\"9\" y=\"581\" type=\"line\"/>\n    </contour>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rupee.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rupee\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A8\"/>\n  <outline>\n    <contour>\n      <point x=\"781\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"987\" y=\"-20\"/>\n      <point x=\"1107\" y=\"39\"/>\n      <point x=\"1138\" y=\"239\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1158\" y=\"369\"/>\n      <point x=\"1130\" y=\"468\"/>\n      <point x=\"1075\" y=\"571\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"672\"/>\n      <point x=\"984\" y=\"725\"/>\n      <point x=\"991\" y=\"765\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"999\" y=\"805\"/>\n      <point x=\"1028\" y=\"823\"/>\n      <point x=\"1077\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"823\"/>\n      <point x=\"1131\" y=\"818\"/>\n      <point x=\"1170\" y=\"809\" type=\"curve\"/>\n      <point x=\"1236\" y=\"1060\" type=\"line\"/>\n      <point x=\"1184\" y=\"1073\"/>\n      <point x=\"1124\" y=\"1080\"/>\n      <point x=\"1053\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"1080\"/>\n      <point x=\"773\" y=\"992\"/>\n      <point x=\"742\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"697\"/>\n      <point x=\"742\" y=\"611\"/>\n      <point x=\"807\" y=\"494\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"394\"/>\n      <point x=\"897\" y=\"332\"/>\n      <point x=\"891\" y=\"295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"256\"/>\n      <point x=\"854\" y=\"237\"/>\n      <point x=\"801\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"763\" y=\"237\"/>\n      <point x=\"714\" y=\"249\"/>\n      <point x=\"653\" y=\"273\" type=\"curve\"/>\n      <point x=\"583\" y=\"20\" type=\"line\"/>\n      <point x=\"635\" y=\"-6\"/>\n      <point x=\"701\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"329\" y=\"0\" type=\"line\"/>\n      <point x=\"564\" y=\"0\" type=\"line\"/>\n      <point x=\"561\" y=\"668\" type=\"line\"/>\n      <point x=\"346\" y=\"668\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-30\" y=\"0\" type=\"line\"/>\n      <point x=\"222\" y=\"0\" type=\"line\"/>\n      <point x=\"472\" y=\"1420\" type=\"line\"/>\n      <point x=\"220\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"458\" type=\"line\"/>\n      <point x=\"143\" y=\"458\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"458\"/>\n      <point x=\"767\" y=\"673\"/>\n      <point x=\"767\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"1312\"/>\n      <point x=\"649\" y=\"1430\"/>\n      <point x=\"425\" y=\"1430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"1430\"/>\n      <point x=\"285\" y=\"1427\"/>\n      <point x=\"237\" y=\"1420\" type=\"curve\"/>\n      <point x=\"224\" y=\"1170\" type=\"line\"/>\n      <point x=\"277\" y=\"1177\"/>\n      <point x=\"348\" y=\"1180\"/>\n      <point x=\"432\" y=\"1180\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"503\" y=\"1180\"/>\n      <point x=\"540\" y=\"1127\"/>\n      <point x=\"540\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"798\"/>\n      <point x=\"414\" y=\"677\"/>\n      <point x=\"176\" y=\"677\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"134\" y=\"677\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/rupeeI_ndian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rupeeIndian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B9\"/>\n  <outline>\n    <contour>\n      <point x=\"107\" y=\"480\" type=\"line\"/>\n      <point x=\"457\" y=\"480\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"480\"/>\n      <point x=\"1028\" y=\"662\"/>\n      <point x=\"1028\" y=\"924\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"1043\"/>\n      <point x=\"978\" y=\"1127\"/>\n      <point x=\"875\" y=\"1147\" type=\"curve\"/>\n      <point x=\"875\" y=\"1215\" type=\"line\"/>\n      <point x=\"265\" y=\"1177\" type=\"line\"/>\n      <point x=\"579\" y=\"1177\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"1177\"/>\n      <point x=\"757\" y=\"1097\"/>\n      <point x=\"757\" y=\"956\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"816\"/>\n      <point x=\"651\" y=\"724\"/>\n      <point x=\"490\" y=\"724\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"724\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"0\" type=\"line\"/>\n      <point x=\"924\" y=\"0\" type=\"line\"/>\n      <point x=\"664\" y=\"668\" type=\"line\"/>\n      <point x=\"397\" y=\"668\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"169\" y=\"834\" type=\"line\"/>\n      <point x=\"1139\" y=\"834\" type=\"line\"/>\n      <point x=\"1180\" y=\"1068\" type=\"line\"/>\n      <point x=\"210\" y=\"1068\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"229\" y=\"1177\" type=\"line\"/>\n      <point x=\"1191\" y=\"1177\" type=\"line\"/>\n      <point x=\"1234\" y=\"1420\" type=\"line\"/>\n      <point x=\"272\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/s.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"s\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0073\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"695\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"421\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"-20\"/>\n      <point x=\"1033\" y=\"104\"/>\n      <point x=\"1033\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"478\"/>\n      <point x=\"955\" y=\"560\"/>\n      <point x=\"802\" y=\"605\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"687\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"696\"/>\n      <point x=\"470\" y=\"708\"/>\n      <point x=\"470\" y=\"728\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"792\"/>\n      <point x=\"573\" y=\"823\"/>\n      <point x=\"782\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"823\"/>\n      <point x=\"942\" y=\"818\"/>\n      <point x=\"1053\" y=\"809\" type=\"curve\"/>\n      <point x=\"1126\" y=\"1060\" type=\"line\"/>\n      <point x=\"1019\" y=\"1073\"/>\n      <point x=\"922\" y=\"1080\"/>\n      <point x=\"833\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"398\" y=\"1080\"/>\n      <point x=\"182\" y=\"948\"/>\n      <point x=\"182\" y=\"682\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"182\" y=\"585\"/>\n      <point x=\"226\" y=\"517\"/>\n      <point x=\"319\" y=\"489\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"377\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"367\"/>\n      <point x=\"738\" y=\"356\"/>\n      <point x=\"738\" y=\"335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"269\"/>\n      <point x=\"648\" y=\"237\"/>\n      <point x=\"466\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"237\"/>\n      <point x=\"295\" y=\"248\"/>\n      <point x=\"125\" y=\"269\" type=\"curve\"/>\n      <point x=\"47\" y=\"10\" type=\"line\"/>\n      <point x=\"139\" y=\"-10\"/>\n      <point x=\"263\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/s.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"s.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"768\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"630\" y=\"1060\" type=\"line\"/>\n      <point x=\"498\" y=\"937\"/>\n      <point x=\"196\" y=\"745\"/>\n      <point x=\"62\" y=\"669\" type=\"curve\"/>\n      <point x=\"197\" y=\"438\" type=\"line\"/>\n      <point x=\"316\" y=\"497\"/>\n      <point x=\"685\" y=\"725\"/>\n      <point x=\"798\" y=\"828\" type=\"curve\"/>\n      <point x=\"749\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"640\" y=\"900\" type=\"line\"/>\n      <point x=\"712\" y=\"734\"/>\n      <point x=\"794\" y=\"567\"/>\n      <point x=\"794\" y=\"419\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"303\"/>\n      <point x=\"693\" y=\"237\"/>\n      <point x=\"520\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"412\" y=\"237\"/>\n      <point x=\"327\" y=\"255\"/>\n      <point x=\"222\" y=\"298\" type=\"curve\"/>\n      <point x=\"148\" y=\"59\" type=\"line\"/>\n      <point x=\"258\" y=\"2\"/>\n      <point x=\"365\" y=\"-20\"/>\n      <point x=\"520\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"-20\"/>\n      <point x=\"1072\" y=\"132\"/>\n      <point x=\"1071\" y=\"399\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"590\"/>\n      <point x=\"985\" y=\"700\"/>\n      <point x=\"889\" y=\"1060\" type=\"curve\"/>\n      <point x=\"631\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015B\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"acutecomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sacute.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sacute.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"s.salt\"/>\n    <component base=\"acutecomb\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/scaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0161\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"caroncomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/scaron.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scaron.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"s.salt\"/>\n    <component base=\"caroncomb\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/scedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015F\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"cedillacomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/scedilla.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scedilla.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"s.salt\"/>\n    <component base=\"cedillacomb\" xOffset=\"94\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/schwa-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"schwa-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04D9\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"428\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"816\" y=\"-20\"/>\n      <point x=\"1075\" y=\"248\"/>\n      <point x=\"1075\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1075\" y=\"921\"/>\n      <point x=\"901\" y=\"1080\"/>\n      <point x=\"608\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"1080\"/>\n      <point x=\"325\" y=\"1051\"/>\n      <point x=\"198\" y=\"976\" type=\"curve\"/>\n      <point x=\"267\" y=\"739\" type=\"line\"/>\n      <point x=\"368\" y=\"792\"/>\n      <point x=\"483\" y=\"823\"/>\n      <point x=\"579\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"823\"/>\n      <point x=\"822\" y=\"747\"/>\n      <point x=\"823\" y=\"619\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"385\"/>\n      <point x=\"683\" y=\"228\"/>\n      <point x=\"476\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"228\"/>\n      <point x=\"346\" y=\"259\"/>\n      <point x=\"346\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"391\"/>\n      <point x=\"448\" y=\"466\"/>\n      <point x=\"646\" y=\"466\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"466\"/>\n      <point x=\"799\" y=\"456\"/>\n      <point x=\"894\" y=\"434\" type=\"curve\"/>\n      <point x=\"853\" y=\"639\" type=\"line\"/>\n      <point x=\"757\" y=\"657\"/>\n      <point x=\"670\" y=\"665\"/>\n      <point x=\"592\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"665\"/>\n      <point x=\"79\" y=\"505\"/>\n      <point x=\"79\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"79\" y=\"95\"/>\n      <point x=\"209\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/schwa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"schwa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0259\"/>\n  <anchor x=\"507\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"225\" y=\"1050\" name=\"ogonek\"/>\n  <anchor x=\"694\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"591\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"823\"/>\n      <point x=\"834\" y=\"747\"/>\n      <point x=\"835\" y=\"619\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"385\"/>\n      <point x=\"691\" y=\"228\"/>\n      <point x=\"478\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"399\" y=\"228\"/>\n      <point x=\"358\" y=\"256\"/>\n      <point x=\"358\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"423\"/>\n      <point x=\"562\" y=\"491\"/>\n      <point x=\"908\" y=\"494\" type=\"curve\"/>\n      <point x=\"867\" y=\"684\" type=\"line\"/>\n      <point x=\"360\" y=\"676\"/>\n      <point x=\"91\" y=\"557\"/>\n      <point x=\"91\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"91\" y=\"86\"/>\n      <point x=\"207\" y=\"-20\"/>\n      <point x=\"430\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"-20\"/>\n      <point x=\"1087\" y=\"248\"/>\n      <point x=\"1087\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"921\"/>\n      <point x=\"913\" y=\"1080\"/>\n      <point x=\"620\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"1080\"/>\n      <point x=\"330\" y=\"1051\"/>\n      <point x=\"200\" y=\"976\" type=\"curve\"/>\n      <point x=\"289\" y=\"759\" type=\"line\"/>\n      <point x=\"387\" y=\"799\"/>\n      <point x=\"498\" y=\"823\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/scircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015D\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"circumflexcomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/scircumflex.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scircumflex.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"s.salt\"/>\n    <component base=\"circumflexcomb\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/scommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0219\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/scommaaccent.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scommaaccent.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"s.salt\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"94\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E63\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sdotbelow.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sdotbelow.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"s.salt\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"93\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/second.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"second\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2033\"/>\n  <outline>\n    <contour>\n      <point x=\"663\" y=\"780\" type=\"line\"/>\n      <point x=\"885\" y=\"780\" type=\"line\"/>\n      <point x=\"1183\" y=\"1420\" type=\"line\"/>\n      <point x=\"871\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"249\" y=\"780\" type=\"line\"/>\n      <point x=\"471\" y=\"780\" type=\"line\"/>\n      <point x=\"769\" y=\"1420\" type=\"line\"/>\n      <point x=\"457\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/section.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"section\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A7\"/>\n  <outline>\n    <contour>\n      <point x=\"465\" y=\"-219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"-219\"/>\n      <point x=\"976\" y=\"-96\"/>\n      <point x=\"976\" y=\"113\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"231\"/>\n      <point x=\"899\" y=\"339\"/>\n      <point x=\"769\" y=\"405\" type=\"curve\"/>\n      <point x=\"786\" y=\"305\" type=\"line\"/>\n      <point x=\"843\" y=\"461\" type=\"line\"/>\n      <point x=\"758\" y=\"408\" type=\"line\"/>\n      <point x=\"1025\" y=\"399\"/>\n      <point x=\"1183\" y=\"504\"/>\n      <point x=\"1183\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1183\" y=\"818\"/>\n      <point x=\"1111\" y=\"929\"/>\n      <point x=\"990\" y=\"989\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"639\" y=\"1168\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"1186\"/>\n      <point x=\"584\" y=\"1212\"/>\n      <point x=\"584\" y=\"1237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"1284\"/>\n      <point x=\"637\" y=\"1312\"/>\n      <point x=\"727\" y=\"1312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"1312\"/>\n      <point x=\"966\" y=\"1288\"/>\n      <point x=\"1066\" y=\"1247\" type=\"curve\"/>\n      <point x=\"1201\" y=\"1479\" type=\"line\"/>\n      <point x=\"1102\" y=\"1535\"/>\n      <point x=\"948\" y=\"1568\"/>\n      <point x=\"787\" y=\"1568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"1568\"/>\n      <point x=\"318\" y=\"1437\"/>\n      <point x=\"318\" y=\"1215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"1120\"/>\n      <point x=\"360\" y=\"1038\"/>\n      <point x=\"430\" y=\"995\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"942\" type=\"line\"/>\n      <point x=\"456\" y=\"1056\" type=\"line\"/>\n      <point x=\"415\" y=\"926\" type=\"line\"/>\n      <point x=\"445\" y=\"965\" type=\"line\"/>\n      <point x=\"217\" y=\"970\"/>\n      <point x=\"82\" y=\"867\"/>\n      <point x=\"82\" y=\"688\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"82\" y=\"586\"/>\n      <point x=\"137\" y=\"493\"/>\n      <point x=\"230\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"622\" y=\"219\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"186\"/>\n      <point x=\"710\" y=\"149\"/>\n      <point x=\"710\" y=\"120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"710\" y=\"65\"/>\n      <point x=\"626\" y=\"33\"/>\n      <point x=\"484\" y=\"33\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"33\"/>\n      <point x=\"197\" y=\"51\"/>\n      <point x=\"59\" y=\"81\" type=\"curve\"/>\n      <point x=\"17\" y=\"-171\" type=\"line\"/>\n      <point x=\"125\" y=\"-201\"/>\n      <point x=\"292\" y=\"-219\"/>\n    </contour>\n    <contour>\n      <point x=\"755\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"492\"/>\n      <point x=\"632\" y=\"518\"/>\n      <point x=\"561\" y=\"563\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"631\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"392\" y=\"663\"/>\n      <point x=\"360\" y=\"709\"/>\n      <point x=\"360\" y=\"755\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"843\"/>\n      <point x=\"421\" y=\"895\"/>\n      <point x=\"525\" y=\"895\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"895\"/>\n      <point x=\"677\" y=\"870\"/>\n      <point x=\"748\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"808\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"760\"/>\n      <point x=\"905\" y=\"696\"/>\n      <point x=\"905\" y=\"636\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"545\"/>\n      <point x=\"849\" y=\"492\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit0.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit0\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF0\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit1\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF1\"/>\n  <outline>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF2\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF3\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF4\"/>\n  <outline>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF5\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF6\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF7\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit8\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF8\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit9.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit9\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF9\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/semicolon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"semicolon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003B\"/>\n  <outline>\n    <contour>\n      <point x=\"679\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"716\"/>\n      <point x=\"861\" y=\"798\"/>\n      <point x=\"861\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"999\"/>\n      <point x=\"780\" y=\"1080\"/>\n      <point x=\"679\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"1080\"/>\n      <point x=\"497\" y=\"999\"/>\n      <point x=\"497\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"798\"/>\n      <point x=\"578\" y=\"716\"/>\n    </contour>\n    <component base=\"comma\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/semicolon_semicolon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"semicolon_semicolon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"semicolon\" xOffset=\"167\"/>\n    <component base=\"semicolon\" xOffset=\"1083\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/seven.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sevensuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/seven.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0037\"/>\n  <outline>\n    <contour>\n      <point x=\"384\" y=\"0\" type=\"line\"/>\n      <point x=\"653\" y=\"0\" type=\"line\"/>\n      <point x=\"1328\" y=\"1420\" type=\"line\"/>\n      <point x=\"1042\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"156\" y=\"872\" type=\"line\"/>\n      <point x=\"422\" y=\"872\" type=\"line\"/>\n      <point x=\"518\" y=\"1420\" type=\"line\"/>\n      <point x=\"253\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"220\" y=\"1177\" type=\"line\"/>\n      <point x=\"1126\" y=\"1177\" type=\"line\"/>\n      <point x=\"1328\" y=\"1420\" type=\"line\"/>\n      <point x=\"253\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/seven.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sevensuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/seveneighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seveneighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"763\" y=\"698\" type=\"line\"/>\n      <point x=\"1202\" y=\"959\" type=\"line\"/>\n      <point x=\"1071\" y=\"1176\" type=\"line\"/>\n      <point x=\"684\" y=\"835\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"231\" type=\"line\"/>\n      <point x=\"553\" y=\"565\" type=\"line\"/>\n      <point x=\"478\" y=\"704\" type=\"line\"/>\n      <point x=\"41\" y=\"451\" type=\"line\"/>\n    </contour>\n    <component base=\"sevensuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/seveneighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seveneighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215E\"/>\n  <outline>\n    <contour>\n      <point x=\"170\" y=\"241\" type=\"line\"/>\n      <point x=\"1197\" y=\"969\" type=\"line\"/>\n      <point x=\"1076\" y=\"1166\" type=\"line\"/>\n      <point x=\"56\" y=\"441\" type=\"line\"/>\n    </contour>\n    <component base=\"sevensuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/seveninferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seveninferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2087\"/>\n  <outline>\n    <component base=\"sevensuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sevensuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sevensuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2077\"/>\n  <outline>\n    <contour>\n      <point x=\"633\" y=\"802\" type=\"line\"/>\n      <point x=\"854\" y=\"802\" type=\"line\"/>\n      <point x=\"1073\" y=\"1420\" type=\"line\"/>\n      <point x=\"851\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"442\" y=\"1125\" type=\"line\"/>\n      <point x=\"648\" y=\"1125\" type=\"line\"/>\n      <point x=\"698\" y=\"1406\" type=\"line\"/>\n      <point x=\"492\" y=\"1406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"461\" y=\"1230\" type=\"line\"/>\n      <point x=\"960\" y=\"1230\" type=\"line\"/>\n      <point x=\"1073\" y=\"1420\" type=\"line\"/>\n      <point x=\"494\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0448\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"223\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"-20\"/>\n      <point x=\"420\" y=\"37\"/>\n      <point x=\"434\" y=\"215\" type=\"curve\"/>\n      <point x=\"334\" y=\"132\" type=\"line\"/>\n      <point x=\"537\" y=\"132\" type=\"line\"/>\n      <point x=\"449\" y=\"201\" type=\"line\"/>\n      <point x=\"447\" y=\"75\"/>\n      <point x=\"477\" y=\"-20\"/>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"-20\"/>\n      <point x=\"766\" y=\"80\"/>\n      <point x=\"802\" y=\"191\" type=\"curve\"/>\n      <point x=\"697\" y=\"132\" type=\"line\"/>\n      <point x=\"900\" y=\"132\" type=\"line\"/>\n      <point x=\"818\" y=\"236\" type=\"line\"/>\n      <point x=\"787\" y=\"-10\"/>\n      <point x=\"918\" y=\"-10\"/>\n      <point x=\"1019\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1113\" y=\"-10\" type=\"line\"/>\n      <point x=\"1153\" y=\"219\" type=\"line\"/>\n      <point x=\"1115\" y=\"219\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1054\" y=\"219\"/>\n      <point x=\"1057\" y=\"269\"/>\n      <point x=\"1077\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1198\" y=\"1059\" type=\"line\"/>\n      <point x=\"927\" y=\"1060\" type=\"line\"/>\n      <point x=\"840\" y=\"557\" type=\"line\"/>\n      <point x=\"794\" y=\"329\"/>\n      <point x=\"772\" y=\"231\"/>\n      <point x=\"699\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"231\"/>\n      <point x=\"649\" y=\"285\"/>\n      <point x=\"668\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"562\"/>\n      <point x=\"766\" y=\"864\"/>\n      <point x=\"819\" y=\"1041\" type=\"curve\"/>\n      <point x=\"642\" y=\"1060\" type=\"line\"/>\n      <point x=\"592\" y=\"917\"/>\n      <point x=\"516\" y=\"643\"/>\n      <point x=\"472\" y=\"398\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"274\"/>\n      <point x=\"408\" y=\"231\"/>\n      <point x=\"372\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"231\"/>\n      <point x=\"328\" y=\"270\"/>\n      <point x=\"328\" y=\"308\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"328\" y=\"437\"/>\n      <point x=\"424\" y=\"761\"/>\n      <point x=\"527\" y=\"1041\" type=\"curve\"/>\n      <point x=\"249\" y=\"1080\" type=\"line\"/>\n      <point x=\"102\" y=\"715\"/>\n      <point x=\"54\" y=\"386\"/>\n      <point x=\"51\" y=\"284\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"41\" y=\"39\"/>\n      <point x=\"146\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shadedark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadedark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2593\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"926\" type=\"line\"/>\n      <point x=\"1200\" y=\"2126\" type=\"line\"/>\n      <point x=\"1200\" y=\"2166\" type=\"line\"/>\n      <point x=\"0\" y=\"966\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-480\" type=\"line\"/>\n      <point x=\"94\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"-480\" type=\"line\"/>\n      <point x=\"194\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"526\" type=\"line\"/>\n      <point x=\"1200\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"254\" y=\"-480\" type=\"line\"/>\n      <point x=\"294\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"354\" y=\"-480\" type=\"line\"/>\n      <point x=\"394\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"326\" type=\"line\"/>\n      <point x=\"1200\" y=\"366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"-480\" type=\"line\"/>\n      <point x=\"494\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"-480\" type=\"line\"/>\n      <point x=\"594\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"126\" type=\"line\"/>\n      <point x=\"1200\" y=\"166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"654\" y=\"-480\" type=\"line\"/>\n      <point x=\"694\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"754\" y=\"-480\" type=\"line\"/>\n      <point x=\"794\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-74\" type=\"line\"/>\n      <point x=\"1200\" y=\"-34\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"-480\" type=\"line\"/>\n      <point x=\"894\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"954\" y=\"-480\" type=\"line\"/>\n      <point x=\"994\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-274\" type=\"line\"/>\n      <point x=\"1200\" y=\"-234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1054\" y=\"-480\" type=\"line\"/>\n      <point x=\"1094\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1154\" y=\"-480\" type=\"line\"/>\n      <point x=\"1194\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-474\" type=\"line\"/>\n      <point x=\"1200\" y=\"-434\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-474\" type=\"line\"/>\n      <point x=\"1200\" y=\"726\" type=\"line\"/>\n      <point x=\"1200\" y=\"766\" type=\"line\"/>\n      <point x=\"0\" y=\"-434\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"866\" type=\"line\"/>\n      <point x=\"0\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-274\" type=\"line\"/>\n      <point x=\"1200\" y=\"926\" type=\"line\"/>\n      <point x=\"1200\" y=\"966\" type=\"line\"/>\n      <point x=\"0\" y=\"-234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"1066\" type=\"line\"/>\n      <point x=\"0\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-74\" type=\"line\"/>\n      <point x=\"1200\" y=\"1126\" type=\"line\"/>\n      <point x=\"1200\" y=\"1166\" type=\"line\"/>\n      <point x=\"0\" y=\"-34\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"1226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1266\" type=\"line\"/>\n      <point x=\"0\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"126\" type=\"line\"/>\n      <point x=\"1200\" y=\"1326\" type=\"line\"/>\n      <point x=\"1200\" y=\"1366\" type=\"line\"/>\n      <point x=\"0\" y=\"166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1466\" type=\"line\"/>\n      <point x=\"0\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"326\" type=\"line\"/>\n      <point x=\"1200\" y=\"1526\" type=\"line\"/>\n      <point x=\"1200\" y=\"1566\" type=\"line\"/>\n      <point x=\"0\" y=\"366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1666\" type=\"line\"/>\n      <point x=\"0\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"526\" type=\"line\"/>\n      <point x=\"1200\" y=\"1726\" type=\"line\"/>\n      <point x=\"1200\" y=\"1766\" type=\"line\"/>\n      <point x=\"0\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1826\" type=\"line\"/>\n      <point x=\"1200\" y=\"1866\" type=\"line\"/>\n      <point x=\"0\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"726\" type=\"line\"/>\n      <point x=\"1200\" y=\"1926\" type=\"line\"/>\n      <point x=\"1200\" y=\"1966\" type=\"line\"/>\n      <point x=\"0\" y=\"766\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"2026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2066\" type=\"line\"/>\n      <point x=\"0\" y=\"866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"2126\" type=\"line\"/>\n      <point x=\"100\" y=\"2226\" type=\"line\"/>\n      <point x=\"60\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"2026\" type=\"line\"/>\n      <point x=\"200\" y=\"2226\" type=\"line\"/>\n      <point x=\"160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2066\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1926\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"260\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1966\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1826\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"360\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1726\" type=\"line\"/>\n      <point x=\"500\" y=\"2226\" type=\"line\"/>\n      <point x=\"460\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1766\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1626\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"560\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1526\" type=\"line\"/>\n      <point x=\"700\" y=\"2226\" type=\"line\"/>\n      <point x=\"660\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1426\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"760\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1326\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"860\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1226\" type=\"line\"/>\n      <point x=\"1000\" y=\"2226\" type=\"line\"/>\n      <point x=\"960\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1126\" type=\"line\"/>\n      <point x=\"1100\" y=\"2226\" type=\"line\"/>\n      <point x=\"1060\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1066\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shadedark.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadedark.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"600\" type=\"line\"/>\n      <point x=\"1200\" y=\"1800\" type=\"line\"/>\n      <point x=\"1200\" y=\"1840\" type=\"line\"/>\n      <point x=\"0\" y=\"640\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"80\" y=\"-480\" type=\"line\"/>\n      <point x=\"120\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"600\" type=\"line\"/>\n      <point x=\"1200\" y=\"640\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"-480\" type=\"line\"/>\n      <point x=\"220\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"-480\" type=\"line\"/>\n      <point x=\"320\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"400\" type=\"line\"/>\n      <point x=\"1200\" y=\"440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"-480\" type=\"line\"/>\n      <point x=\"420\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"480\" y=\"-480\" type=\"line\"/>\n      <point x=\"520\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"200\" type=\"line\"/>\n      <point x=\"1200\" y=\"240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"-480\" type=\"line\"/>\n      <point x=\"620\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"680\" y=\"-480\" type=\"line\"/>\n      <point x=\"720\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"0\" type=\"line\"/>\n      <point x=\"1200\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"-480\" type=\"line\"/>\n      <point x=\"820\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"880\" y=\"-480\" type=\"line\"/>\n      <point x=\"920\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-200\" type=\"line\"/>\n      <point x=\"1200\" y=\"-160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"980\" y=\"-480\" type=\"line\"/>\n      <point x=\"1020\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1080\" y=\"-480\" type=\"line\"/>\n      <point x=\"1120\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-400\" type=\"line\"/>\n      <point x=\"1200\" y=\"-360\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1180\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"740\" type=\"line\"/>\n      <point x=\"0\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-400\" type=\"line\"/>\n      <point x=\"1200\" y=\"800\" type=\"line\"/>\n      <point x=\"1200\" y=\"840\" type=\"line\"/>\n      <point x=\"0\" y=\"-360\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"900\" type=\"line\"/>\n      <point x=\"1200\" y=\"940\" type=\"line\"/>\n      <point x=\"0\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-200\" type=\"line\"/>\n      <point x=\"1200\" y=\"1000\" type=\"line\"/>\n      <point x=\"1200\" y=\"1040\" type=\"line\"/>\n      <point x=\"0\" y=\"-160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1140\" type=\"line\"/>\n      <point x=\"0\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"0\" type=\"line\"/>\n      <point x=\"1200\" y=\"1200\" type=\"line\"/>\n      <point x=\"1200\" y=\"1240\" type=\"line\"/>\n      <point x=\"0\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1340\" type=\"line\"/>\n      <point x=\"0\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"200\" type=\"line\"/>\n      <point x=\"1200\" y=\"1400\" type=\"line\"/>\n      <point x=\"1200\" y=\"1440\" type=\"line\"/>\n      <point x=\"0\" y=\"240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1540\" type=\"line\"/>\n      <point x=\"0\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"400\" type=\"line\"/>\n      <point x=\"1200\" y=\"1600\" type=\"line\"/>\n      <point x=\"1200\" y=\"1640\" type=\"line\"/>\n      <point x=\"0\" y=\"440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1740\" type=\"line\"/>\n      <point x=\"0\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1800\" type=\"line\"/>\n      <point x=\"100\" y=\"1900\" type=\"line\"/>\n      <point x=\"60\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1840\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1700\" type=\"line\"/>\n      <point x=\"200\" y=\"1900\" type=\"line\"/>\n      <point x=\"160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1600\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"260\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1640\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1500\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"360\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1400\" type=\"line\"/>\n      <point x=\"500\" y=\"1900\" type=\"line\"/>\n      <point x=\"460\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1300\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"560\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1200\" type=\"line\"/>\n      <point x=\"700\" y=\"1900\" type=\"line\"/>\n      <point x=\"660\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1100\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"760\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1000\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"860\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1040\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"900\" type=\"line\"/>\n      <point x=\"1000\" y=\"1900\" type=\"line\"/>\n      <point x=\"960\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"940\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"800\" type=\"line\"/>\n      <point x=\"1100\" y=\"1900\" type=\"line\"/>\n      <point x=\"1060\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"840\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shadelight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadelight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2591\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1826\" type=\"line\"/>\n      <point x=\"1200\" y=\"1866\" type=\"line\"/>\n      <point x=\"0\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-480\" type=\"line\"/>\n      <point x=\"94\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"-480\" type=\"line\"/>\n      <point x=\"494\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"-480\" type=\"line\"/>\n      <point x=\"894\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"1066\" type=\"line\"/>\n      <point x=\"0\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1466\" type=\"line\"/>\n      <point x=\"0\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1826\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"360\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1426\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"760\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1066\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shadelight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadelight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1540\" type=\"line\"/>\n      <point x=\"0\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"-480\" type=\"line\"/>\n      <point x=\"420\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"-480\" type=\"line\"/>\n      <point x=\"820\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1180\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"740\" type=\"line\"/>\n      <point x=\"0\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1140\" type=\"line\"/>\n      <point x=\"0\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1500\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"360\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1100\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"760\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shademedium.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shademedium\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2592\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"2026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2066\" type=\"line\"/>\n      <point x=\"0\" y=\"866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-480\" type=\"line\"/>\n      <point x=\"94\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"254\" y=\"-480\" type=\"line\"/>\n      <point x=\"294\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"-480\" type=\"line\"/>\n      <point x=\"494\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"654\" y=\"-480\" type=\"line\"/>\n      <point x=\"694\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"-480\" type=\"line\"/>\n      <point x=\"894\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1054\" y=\"-480\" type=\"line\"/>\n      <point x=\"1094\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"866\" type=\"line\"/>\n      <point x=\"0\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"1066\" type=\"line\"/>\n      <point x=\"0\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"1226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1266\" type=\"line\"/>\n      <point x=\"0\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1466\" type=\"line\"/>\n      <point x=\"0\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1666\" type=\"line\"/>\n      <point x=\"0\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1826\" type=\"line\"/>\n      <point x=\"1200\" y=\"1866\" type=\"line\"/>\n      <point x=\"0\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"2026\" type=\"line\"/>\n      <point x=\"200\" y=\"2226\" type=\"line\"/>\n      <point x=\"160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2066\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1826\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"360\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1626\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"560\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1426\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"760\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1226\" type=\"line\"/>\n      <point x=\"1000\" y=\"2226\" type=\"line\"/>\n      <point x=\"960\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1066\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shademedium.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shademedium.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1740\" type=\"line\"/>\n      <point x=\"0\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"-480\" type=\"line\"/>\n      <point x=\"220\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"-480\" type=\"line\"/>\n      <point x=\"420\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"-480\" type=\"line\"/>\n      <point x=\"620\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"-480\" type=\"line\"/>\n      <point x=\"820\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"980\" y=\"-480\" type=\"line\"/>\n      <point x=\"1020\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1180\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"740\" type=\"line\"/>\n      <point x=\"0\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"900\" type=\"line\"/>\n      <point x=\"1200\" y=\"940\" type=\"line\"/>\n      <point x=\"0\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1140\" type=\"line\"/>\n      <point x=\"0\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1340\" type=\"line\"/>\n      <point x=\"0\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1540\" type=\"line\"/>\n      <point x=\"0\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1700\" type=\"line\"/>\n      <point x=\"200\" y=\"1900\" type=\"line\"/>\n      <point x=\"160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1500\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"360\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1300\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"560\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1100\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"760\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"900\" type=\"line\"/>\n      <point x=\"1000\" y=\"1900\" type=\"line\"/>\n      <point x=\"960\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"940\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shcha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shcha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0449\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"551\" y=\"-480\" type=\"line\"/>\n      <point x=\"837\" y=\"-480\"/>\n      <point x=\"991\" y=\"-348\"/>\n      <point x=\"1066\" y=\"-154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"-98\"/>\n      <point x=\"1101\" y=\"-30\"/>\n      <point x=\"1114\" y=\"43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1145\" y=\"219\" type=\"line\"/>\n      <point x=\"928\" y=\"219\" type=\"line\"/>\n      <point x=\"898\" y=\"44\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"2\"/>\n      <point x=\"878\" y=\"-52\"/>\n      <point x=\"863\" y=\"-82\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"-178\"/>\n      <point x=\"739\" y=\"-226\"/>\n      <point x=\"538\" y=\"-239\" type=\"curve\"/>\n    </contour>\n    <component base=\"sha-cy\" xOffset=\"-10\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sheqel.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheqel\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AA\"/>\n  <outline>\n    <contour>\n      <point x=\"779\" y=\"0\" type=\"line\"/>\n      <point x=\"1044\" y=\"0\" type=\"line\"/>\n      <point x=\"1230\" y=\"1060\" type=\"line\"/>\n      <point x=\"965\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-30\" y=\"0\" type=\"line\"/>\n      <point x=\"235\" y=\"0\" type=\"line\"/>\n      <point x=\"421\" y=\"1060\" type=\"line\"/>\n      <point x=\"156\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"309\" y=\"0\" type=\"line\"/>\n      <point x=\"1044\" y=\"0\" type=\"line\"/>\n      <point x=\"1074\" y=\"170\" type=\"line\"/>\n      <point x=\"339\" y=\"170\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"309\" y=\"0\" type=\"line\"/>\n      <point x=\"469\" y=\"0\" type=\"line\"/>\n      <point x=\"613\" y=\"822\" type=\"line\"/>\n      <point x=\"453\" y=\"822\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"587\" y=\"238\" type=\"line\"/>\n      <point x=\"747\" y=\"238\" type=\"line\"/>\n      <point x=\"891\" y=\"1060\" type=\"line\"/>\n      <point x=\"731\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"126\" y=\"890\" type=\"line\"/>\n      <point x=\"861\" y=\"890\" type=\"line\"/>\n      <point x=\"891\" y=\"1060\" type=\"line\"/>\n      <point x=\"156\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shha-cy.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shha-cy.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"h.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04BB\"/>\n  <outline>\n    <component base=\"h\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shiftI_nC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftInControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240F\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"I.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>I.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shiftI_nC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftInControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"570\"/>\n      <point x=\"740\" y=\"626\"/>\n      <point x=\"740\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"794\"/>\n      <point x=\"684\" y=\"850\"/>\n      <point x=\"600\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"850\"/>\n      <point x=\"460\" y=\"794\"/>\n      <point x=\"460\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"626\"/>\n      <point x=\"516\" y=\"570\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shiftO_utC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftOutControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240E\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"O.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>O.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/shiftO_utC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftOutControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"934\" y=\"309\" type=\"line\"/>\n      <point x=\"997\" y=\"365\" type=\"line\"/>\n      <point x=\"246\" y=\"1086\" type=\"line\"/>\n      <point x=\"183\" y=\"1028\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"266\" y=\"309\" type=\"line\"/>\n      <point x=\"1009\" y=\"1021\" type=\"line\"/>\n      <point x=\"946\" y=\"1079\" type=\"line\"/>\n      <point x=\"203\" y=\"365\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sigma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sigma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C3\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"515\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"-20\"/>\n      <point x=\"1011\" y=\"167\"/>\n      <point x=\"1011\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"605\"/>\n      <point x=\"971\" y=\"722\"/>\n      <point x=\"887\" y=\"830\" type=\"curve\"/>\n      <point x=\"596\" y=\"830\" type=\"line\"/>\n      <point x=\"690\" y=\"715\"/>\n      <point x=\"732\" y=\"594\"/>\n      <point x=\"732\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"330\"/>\n      <point x=\"659\" y=\"237\"/>\n      <point x=\"530\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"411\" y=\"237\"/>\n      <point x=\"343\" y=\"311\"/>\n      <point x=\"343\" y=\"438\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"343\" y=\"658\"/>\n      <point x=\"486\" y=\"803\"/>\n      <point x=\"702\" y=\"803\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1179\" y=\"803\" type=\"line\"/>\n      <point x=\"1223\" y=\"1063\" type=\"line\"/>\n      <point x=\"713\" y=\"1063\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"322\" y=\"1063\"/>\n      <point x=\"64\" y=\"816\"/>\n      <point x=\"64\" y=\"442\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"64\" y=\"148\"/>\n      <point x=\"228\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sigmafinal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sigmafinal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C2\"/>\n  <anchor x=\"421\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"435\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"-480\"/>\n      <point x=\"933\" y=\"-362\"/>\n      <point x=\"933\" y=\"-103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"933\" y=\"77\"/>\n      <point x=\"832\" y=\"175\"/>\n      <point x=\"612\" y=\"240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"291\"/>\n      <point x=\"384\" y=\"372\"/>\n      <point x=\"384\" y=\"491\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"691\"/>\n      <point x=\"514\" y=\"823\"/>\n      <point x=\"712\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"823\"/>\n      <point x=\"904\" y=\"789\"/>\n      <point x=\"969\" y=\"711\" type=\"curve\"/>\n      <point x=\"1154\" y=\"890\" type=\"line\"/>\n      <point x=\"1063\" y=\"1023\"/>\n      <point x=\"939\" y=\"1080\"/>\n      <point x=\"740\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"1080\"/>\n      <point x=\"107\" y=\"827\"/>\n      <point x=\"107\" y=\"466\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"113\" y=\"212\"/>\n      <point x=\"232\" y=\"63\"/>\n      <point x=\"485\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"620\" y=\"-49\"/>\n      <point x=\"646\" y=\"-62\"/>\n      <point x=\"646\" y=\"-120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"-195\"/>\n      <point x=\"568\" y=\"-223\"/>\n      <point x=\"435\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"371\" y=\"-223\"/>\n      <point x=\"307\" y=\"-214\"/>\n      <point x=\"208\" y=\"-193\" type=\"curve\"/>\n      <point x=\"159\" y=\"-450\" type=\"line\"/>\n      <point x=\"283\" y=\"-471\"/>\n      <point x=\"362\" y=\"-480\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/six.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sixsuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/six.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0036\"/>\n  <outline>\n    <contour>\n      <point x=\"538\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"-20\"/>\n      <point x=\"1115\" y=\"209\"/>\n      <point x=\"1115\" y=\"541\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1115\" y=\"771\"/>\n      <point x=\"995\" y=\"900\"/>\n      <point x=\"768\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"900\"/>\n      <point x=\"490\" y=\"810\"/>\n      <point x=\"431\" y=\"652\" type=\"curve\"/>\n      <point x=\"406\" y=\"652\" type=\"line\"/>\n      <point x=\"493\" y=\"986\"/>\n      <point x=\"705\" y=\"1156\"/>\n      <point x=\"1125\" y=\"1174\" type=\"curve\"/>\n      <point x=\"1139\" y=\"1426\" type=\"line\"/>\n      <point x=\"436\" y=\"1394\"/>\n      <point x=\"99\" y=\"1011\"/>\n      <point x=\"99\" y=\"396\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"122\"/>\n      <point x=\"250\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"572\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"232\"/>\n      <point x=\"388\" y=\"290\"/>\n      <point x=\"388\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"550\"/>\n      <point x=\"490\" y=\"648\"/>\n      <point x=\"641\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"648\"/>\n      <point x=\"832\" y=\"584\"/>\n      <point x=\"832\" y=\"468\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"334\"/>\n      <point x=\"720\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/six.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sixsuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sixinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sixinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2086\"/>\n  <outline>\n    <component base=\"sixsuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sixsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sixsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2076\"/>\n  <outline>\n    <contour>\n      <point x=\"653\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"793\"/>\n      <point x=\"983\" y=\"874\"/>\n      <point x=\"983\" y=\"1034\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"1136\"/>\n      <point x=\"933\" y=\"1193\"/>\n      <point x=\"838\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1193\"/>\n      <point x=\"687\" y=\"1161\"/>\n      <point x=\"658\" y=\"1105\" type=\"curve\"/>\n      <point x=\"633\" y=\"1105\" type=\"line\"/>\n      <point x=\"652\" y=\"1207\"/>\n      <point x=\"747\" y=\"1253\"/>\n      <point x=\"953\" y=\"1257\" type=\"curve\"/>\n      <point x=\"977\" y=\"1440\" type=\"line\"/>\n      <point x=\"626\" y=\"1430\"/>\n      <point x=\"391\" y=\"1319\"/>\n      <point x=\"391\" y=\"1007\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"391\" y=\"861\"/>\n      <point x=\"475\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"675\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"635\" y=\"948\"/>\n      <point x=\"612\" y=\"963\"/>\n      <point x=\"612\" y=\"993\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"1029\"/>\n      <point x=\"644\" y=\"1050\"/>\n      <point x=\"693\" y=\"1050\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"1050\"/>\n      <point x=\"753\" y=\"1033\"/>\n      <point x=\"753\" y=\"1005\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"970\"/>\n      <point x=\"722\" y=\"948\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002F\"/>\n  <outline>\n    <contour>\n      <point x=\"-13\" y=\"-190\" type=\"line\"/>\n      <point x=\"261\" y=\"-190\" type=\"line\"/>\n      <point x=\"1320\" y=\"1610\" type=\"line\"/>\n      <point x=\"1045\" y=\"1610\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"93\"/>\n    <component base=\"asterisk\" xOffset=\"1147\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_backslash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_backslash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"126\"/>\n    <component base=\"backslash\" xOffset=\"1040\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"34\" y=\"835\" type=\"line\"/>\n      <point x=\"725\" y=\"835\" type=\"line\"/>\n      <point x=\"876\" y=\"1085\" type=\"line\"/>\n      <point x=\"78\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-54\" y=\"333\" type=\"line\"/>\n      <point x=\"412\" y=\"333\" type=\"line\"/>\n      <point x=\"563\" y=\"583\" type=\"line\"/>\n      <point x=\"-10\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"388\" y=\"333\" type=\"line\"/>\n      <point x=\"1185\" y=\"333\" type=\"line\"/>\n      <point x=\"1229\" y=\"583\" type=\"line\"/>\n      <point x=\"539\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"701\" y=\"835\" type=\"line\"/>\n      <point x=\"1273\" y=\"835\" type=\"line\"/>\n      <point x=\"1317\" y=\"1085\" type=\"line\"/>\n      <point x=\"852\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1124\" y=\"197\" type=\"line\"/>\n      <point x=\"2251\" y=\"575\" type=\"line\"/>\n      <point x=\"2298\" y=\"843\" type=\"line\"/>\n      <point x=\"1080\" y=\"1297\" type=\"line\"/>\n      <point x=\"1033\" y=\"1035\" type=\"line\"/>\n      <point x=\"1985\" y=\"727\" type=\"line\"/>\n      <point x=\"1981\" y=\"709\" type=\"line\"/>\n      <point x=\"1173\" y=\"476\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"93\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"183\"/>\n    <component base=\"slash\" xOffset=\"1075\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"34\" y=\"835\" type=\"line\"/>\n      <point x=\"925\" y=\"835\" type=\"line\"/>\n      <point x=\"1076\" y=\"1085\" type=\"line\"/>\n      <point x=\"78\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-54\" y=\"333\" type=\"line\"/>\n      <point x=\"612\" y=\"333\" type=\"line\"/>\n      <point x=\"763\" y=\"583\" type=\"line\"/>\n      <point x=\"-10\" y=\"583\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"232\"/>\n    <component base=\"slash\" xOffset=\"914\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1358\" y=\"333\" type=\"line\"/>\n      <point x=\"2415\" y=\"333\" type=\"line\"/>\n      <point x=\"2459\" y=\"583\" type=\"line\"/>\n      <point x=\"1509\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-84\" y=\"333\" type=\"line\"/>\n      <point x=\"612\" y=\"333\" type=\"line\"/>\n      <point x=\"763\" y=\"583\" type=\"line\"/>\n      <point x=\"-40\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"4\" y=\"835\" type=\"line\"/>\n      <point x=\"885\" y=\"835\" type=\"line\"/>\n      <point x=\"1026\" y=\"1085\" type=\"line\"/>\n      <point x=\"48\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1671\" y=\"835\" type=\"line\"/>\n      <point x=\"2503\" y=\"835\" type=\"line\"/>\n      <point x=\"2547\" y=\"1085\" type=\"line\"/>\n      <point x=\"1822\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"234\"/>\n    <component base=\"slash\" xOffset=\"916\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1358\" y=\"333\" type=\"line\"/>\n      <point x=\"2415\" y=\"333\" type=\"line\"/>\n      <point x=\"2459\" y=\"583\" type=\"line\"/>\n      <point x=\"1509\" y=\"583\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1671\" y=\"835\" type=\"line\"/>\n      <point x=\"2503\" y=\"835\" type=\"line\"/>\n      <point x=\"2547\" y=\"1085\" type=\"line\"/>\n      <point x=\"1822\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"234\"/>\n    <component base=\"slash\" xOffset=\"916\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"2253\"/>\n    <component base=\"slash\" xOffset=\"233\"/>\n    <component base=\"slash\" xOffset=\"1258\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/softhyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"softhyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AD\"/>\n  <outline>\n    <component base=\"hyphen\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/softsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"softsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044C\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"529\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"-20\"/>\n      <point x=\"1105\" y=\"196\"/>\n      <point x=\"1105\" y=\"483\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1105\" y=\"700\"/>\n      <point x=\"951\" y=\"821\"/>\n      <point x=\"732\" y=\"821\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"821\"/>\n      <point x=\"497\" y=\"772\"/>\n      <point x=\"405\" y=\"706\" type=\"curve\"/>\n      <point x=\"394\" y=\"520\" type=\"line\"/>\n      <point x=\"480\" y=\"572\"/>\n      <point x=\"568\" y=\"596\"/>\n      <point x=\"651\" y=\"596\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"596\"/>\n      <point x=\"826\" y=\"556\"/>\n      <point x=\"826\" y=\"460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"342\"/>\n      <point x=\"726\" y=\"237\"/>\n      <point x=\"565\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"237\"/>\n      <point x=\"393\" y=\"297\"/>\n      <point x=\"393\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"490\"/>\n      <point x=\"445\" y=\"694\"/>\n      <point x=\"570\" y=\"1060\" type=\"curve\"/>\n      <point x=\"288\" y=\"1060\" type=\"line\"/>\n      <point x=\"161\" y=\"736\"/>\n      <point x=\"114\" y=\"503\"/>\n      <point x=\"114\" y=\"367\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"114\" y=\"126\"/>\n      <point x=\"261\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/space.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"space\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0020\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/spaceC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"spaceControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2420\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"P.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>P.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/spadeB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"spadeBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2660\"/>\n  <guideline x=\"637\" y=\"60\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1280\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1260\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"80\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"40\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"162\"/>\n      <point x=\"410\" y=\"231\"/>\n      <point x=\"440\" y=\"363\" type=\"curve\"/>\n      <point x=\"721\" y=\"363\" type=\"line\"/>\n      <point x=\"706\" y=\"231\"/>\n      <point x=\"751\" y=\"162\"/>\n      <point x=\"867\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1046\" y=\"162\"/>\n      <point x=\"1140\" y=\"309\"/>\n      <point x=\"1140\" y=\"591\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1140\" y=\"872\"/>\n      <point x=\"1001\" y=\"1108\"/>\n      <point x=\"743\" y=\"1280\" type=\"curve\"/>\n      <point x=\"325\" y=\"1067\"/>\n      <point x=\"38\" y=\"705\"/>\n      <point x=\"38\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"38\" y=\"237\"/>\n      <point x=\"97\" y=\"162\"/>\n    </contour>\n    <contour>\n      <point x=\"421\" y=\"60\" type=\"line\"/>\n      <point x=\"633\" y=\"60\" type=\"line\"/>\n      <point x=\"809\" y=\"1060\" type=\"line\"/>\n      <point x=\"597\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/startO_fH_eadingC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfHeadingControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2401\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"H.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>H.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/startO_fH_eadingC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfHeadingControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"317\" y=\"1236\" type=\"line\"/>\n      <point x=\"75\" y=\"1236\" type=\"line\"/>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"317\" y=\"186\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"197\" y=\"1236\" type=\"line\"/>\n      <point x=\"197\" y=\"993\" type=\"line\"/>\n      <point x=\"1125\" y=\"993\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/startO_fT_extC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfTextControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2402\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"X.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>X.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/startO_fT_extC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfTextControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"429\" type=\"line\"/>\n      <point x=\"75\" y=\"429\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"479\" y=\"186\" type=\"line\"/>\n      <point x=\"721\" y=\"186\" type=\"line\"/>\n      <point x=\"721\" y=\"1236\" type=\"line\"/>\n      <point x=\"479\" y=\"1236\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sterling.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sterling\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A3\"/>\n  <outline>\n    <contour>\n      <point x=\"66\" y=\"0\" type=\"line\"/>\n      <point x=\"350\" y=\"0\" type=\"line\"/>\n      <point x=\"343\" y=\"243\" type=\"line\"/>\n      <point x=\"475\" y=\"376\"/>\n      <point x=\"550\" y=\"494\"/>\n      <point x=\"573\" y=\"627\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"634\" y=\"973\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"1111\"/>\n      <point x=\"746\" y=\"1187\"/>\n      <point x=\"857\" y=\"1187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"1187\"/>\n      <point x=\"994\" y=\"1147\"/>\n      <point x=\"1022\" y=\"1077\" type=\"curve\"/>\n      <point x=\"1252\" y=\"1233\" type=\"line\"/>\n      <point x=\"1212\" y=\"1364\"/>\n      <point x=\"1083\" y=\"1440\"/>\n      <point x=\"893\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"1440\"/>\n      <point x=\"409\" y=\"1294\"/>\n      <point x=\"364\" y=\"1036\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"627\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"269\" y=\"494\"/>\n      <point x=\"188\" y=\"377\"/>\n      <point x=\"44\" y=\"243\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"168\" y=\"0\" type=\"line\"/>\n      <point x=\"1019\" y=\"0\" type=\"line\"/>\n      <point x=\"1062\" y=\"243\" type=\"line\"/>\n      <point x=\"211\" y=\"243\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"109\" y=\"533\" type=\"line\"/>\n      <point x=\"897\" y=\"533\" type=\"line\"/>\n      <point x=\"938\" y=\"767\" type=\"line\"/>\n      <point x=\"150\" y=\"767\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/strictlyequivalentto.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"strictlyequivalentto\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2263\"/>\n  <outline>\n    <contour>\n      <point x=\"199\" y=\"1088\" type=\"line\"/>\n      <point x=\"1198\" y=\"1088\" type=\"line\"/>\n      <point x=\"1239\" y=\"1320\" type=\"line\"/>\n      <point x=\"240\" y=\"1320\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"26\" y=\"108\" type=\"line\"/>\n      <point x=\"1025\" y=\"108\" type=\"line\"/>\n      <point x=\"1066\" y=\"340\" type=\"line\"/>\n      <point x=\"67\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"84\" y=\"434\" type=\"line\"/>\n      <point x=\"1083\" y=\"434\" type=\"line\"/>\n      <point x=\"1124\" y=\"667\" type=\"line\"/>\n      <point x=\"125\" y=\"667\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"141\" y=\"761\" type=\"line\"/>\n      <point x=\"1140\" y=\"761\" type=\"line\"/>\n      <point x=\"1181\" y=\"994\" type=\"line\"/>\n      <point x=\"182\" y=\"994\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/substituteC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"substituteControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241A\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"B.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/substituteC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"substituteControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"747\" y=\"604\" type=\"line\"/>\n      <point x=\"747\" y=\"625\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"740\"/>\n      <point x=\"663\" y=\"818\"/>\n      <point x=\"500\" y=\"868\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"884\"/>\n      <point x=\"428\" y=\"900\"/>\n      <point x=\"428\" y=\"923\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"969\"/>\n      <point x=\"469\" y=\"990\"/>\n      <point x=\"560\" y=\"990\" type=\"curve\"/>\n      <point x=\"558\" y=\"1240\" type=\"line\"/>\n      <point x=\"277\" y=\"1240\"/>\n      <point x=\"148\" y=\"1152\"/>\n      <point x=\"148\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"856\"/>\n      <point x=\"200\" y=\"770\"/>\n      <point x=\"310\" y=\"733\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"692\"/>\n      <point x=\"485\" y=\"657\"/>\n      <point x=\"485\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"604\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"920\" y=\"912\" type=\"curve\"/>\n      <point x=\"1038\" y=\"1128\" type=\"line\"/>\n      <point x=\"933\" y=\"1205\"/>\n      <point x=\"782\" y=\"1240\"/>\n      <point x=\"558\" y=\"1240\" type=\"curve\"/>\n      <point x=\"560\" y=\"990\" type=\"line\"/>\n      <point x=\"705\" y=\"990\"/>\n      <point x=\"818\" y=\"965\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"83\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/substituteF_ormT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"substituteFormTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2426\"/>\n  <outline>\n    <contour>\n      <point x=\"753\" y=\"489\" type=\"line\"/>\n      <point x=\"753\" y=\"573\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"710\"/>\n      <point x=\"689\" y=\"799\"/>\n      <point x=\"556\" y=\"887\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"934\"/>\n      <point x=\"444\" y=\"998\"/>\n      <point x=\"444\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"1144\"/>\n      <point x=\"501\" y=\"1188\"/>\n      <point x=\"603\" y=\"1188\" type=\"curve\"/>\n      <point x=\"584\" y=\"1440\" type=\"line\"/>\n      <point x=\"313\" y=\"1440\"/>\n      <point x=\"157\" y=\"1316\"/>\n      <point x=\"157\" y=\"1102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"157\" y=\"941\"/>\n      <point x=\"236\" y=\"807\"/>\n      <point x=\"396\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"662\"/>\n      <point x=\"491\" y=\"608\"/>\n      <point x=\"491\" y=\"526\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"489\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"943\" y=\"1016\" type=\"curve\"/>\n      <point x=\"1089\" y=\"1204\" type=\"line\"/>\n      <point x=\"991\" y=\"1346\"/>\n      <point x=\"796\" y=\"1440\"/>\n      <point x=\"584\" y=\"1440\" type=\"curve\"/>\n      <point x=\"603\" y=\"1188\" type=\"line\"/>\n      <point x=\"728\" y=\"1188\"/>\n      <point x=\"858\" y=\"1120\"/>\n    </contour>\n    <component base=\"period\" xScale=\"-1\" xOffset=\"1152\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>period</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/summation.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"summation\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2211\"/>\n  <outline>\n    <contour>\n      <point x=\"259\" y=\"-111\" type=\"line\"/>\n      <point x=\"881\" y=\"614\" type=\"line\"/>\n      <point x=\"519\" y=\"1269\" type=\"line\"/>\n      <point x=\"247\" y=\"1177\" type=\"line\"/>\n      <point x=\"549\" y=\"614\" type=\"line\"/>\n      <point x=\"47\" y=\"41\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"58\" y=\"-200\" type=\"line\"/>\n      <point x=\"974\" y=\"-200\" type=\"line\"/>\n      <point x=\"1017\" y=\"41\" type=\"line\"/>\n      <point x=\"47\" y=\"41\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"247\" y=\"1177\" type=\"line\"/>\n      <point x=\"1197\" y=\"1177\" type=\"line\"/>\n      <point x=\"1240\" y=\"1420\" type=\"line\"/>\n      <point x=\"330\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/sunW_ithR_ays.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sunWithRays\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263C\"/>\n  <outline>\n    <contour>\n      <point x=\"567\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"355\"/>\n      <point x=\"1010\" y=\"520\"/>\n      <point x=\"1010\" y=\"767\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"946\"/>\n      <point x=\"883\" y=\"1065\"/>\n      <point x=\"693\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"427\" y=\"1065\"/>\n      <point x=\"250\" y=\"896\"/>\n      <point x=\"250\" y=\"643\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"470\"/>\n      <point x=\"377\" y=\"355\"/>\n    </contour>\n    <contour>\n      <point x=\"200\" y=\"228\" type=\"line\"/>\n      <point x=\"445\" y=\"436\" type=\"line\"/>\n      <point x=\"330\" y=\"574\" type=\"line\"/>\n      <point x=\"85\" y=\"366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"435\" y=\"122\" type=\"line\"/>\n      <point x=\"624\" y=\"123\" type=\"line\"/>\n      <point x=\"676\" y=\"418\" type=\"line\"/>\n      <point x=\"488\" y=\"418\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"28\" y=\"615\" type=\"line\"/>\n      <point x=\"324\" y=\"615\" type=\"line\"/>\n      <point x=\"357\" y=\"803\" type=\"line\"/>\n      <point x=\"60\" y=\"803\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"896\" y=\"227\" type=\"line\"/>\n      <point x=\"1043\" y=\"351\" type=\"line\"/>\n      <point x=\"869\" y=\"561\" type=\"line\"/>\n      <point x=\"722\" y=\"439\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"604\" y=\"555\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"555\"/>\n      <point x=\"465\" y=\"605\"/>\n      <point x=\"465\" y=\"680\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"791\"/>\n      <point x=\"542\" y=\"865\"/>\n      <point x=\"658\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"865\"/>\n      <point x=\"795\" y=\"815\"/>\n      <point x=\"795\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"629\"/>\n      <point x=\"719\" y=\"555\"/>\n    </contour>\n    <contour>\n      <point x=\"395\" y=\"859\" type=\"line\"/>\n      <point x=\"541\" y=\"982\" type=\"line\"/>\n      <point x=\"369\" y=\"1191\" type=\"line\"/>\n      <point x=\"222\" y=\"1067\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"904\" y=\"615\" type=\"line\"/>\n      <point x=\"1203\" y=\"615\" type=\"line\"/>\n      <point x=\"1236\" y=\"803\" type=\"line\"/>\n      <point x=\"937\" y=\"803\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"590\" y=\"998\" type=\"line\"/>\n      <point x=\"778\" y=\"998\" type=\"line\"/>\n      <point x=\"831\" y=\"1297\" type=\"line\"/>\n      <point x=\"643\" y=\"1297\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"932\" y=\"842\" type=\"line\"/>\n      <point x=\"1180\" y=\"1052\" type=\"line\"/>\n      <point x=\"1066\" y=\"1191\" type=\"line\"/>\n      <point x=\"818\" y=\"979\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/synchronousI_dleC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"synchronousIdleControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2416\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"Y.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>Y.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/synchronousI_dleC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"synchronousIdleControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"267\" y=\"185\" type=\"line\"/>\n      <point x=\"509\" y=\"185\" type=\"line\"/>\n      <point x=\"509\" y=\"1236\" type=\"line\"/>\n      <point x=\"267\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"306\" y=\"185\" type=\"line\"/>\n      <point x=\"306\" y=\"429\" type=\"line\"/>\n      <point x=\"75\" y=\"429\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"933\" y=\"185\" type=\"line\"/>\n      <point x=\"933\" y=\"1236\" type=\"line\"/>\n      <point x=\"691\" y=\"1236\" type=\"line\"/>\n      <point x=\"691\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"429\" type=\"line\"/>\n      <point x=\"834\" y=\"429\" type=\"line\"/>\n      <point x=\"834\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"305\" y=\"992\" type=\"line\"/>\n      <point x=\"836\" y=\"992\" type=\"line\"/>\n      <point x=\"836\" y=\"1236\" type=\"line\"/>\n      <point x=\"305\" y=\"1236\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/t.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"t\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0074\"/>\n  <guideline x=\"109\" y=\"788\" angle=\"80\"/>\n  <anchor x=\"596\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"428\" y=\"570\" name=\"center\"/>\n  <anchor x=\"567\" y=\"1350\" name=\"top\"/>\n  <anchor x=\"1153\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"663\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"-20\"/>\n      <point x=\"924\" y=\"9\"/>\n      <point x=\"1028\" y=\"44\" type=\"curve\"/>\n      <point x=\"979\" y=\"282\" type=\"line\"/>\n      <point x=\"875\" y=\"248\"/>\n      <point x=\"812\" y=\"237\"/>\n      <point x=\"712\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"607\" y=\"237\"/>\n      <point x=\"561\" y=\"275\"/>\n      <point x=\"561\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"438\"/>\n      <point x=\"568\" y=\"488\"/>\n      <point x=\"591\" y=\"617\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"1380\" type=\"line\"/>\n      <point x=\"450\" y=\"1380\" type=\"line\"/>\n      <point x=\"316\" y=\"617\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"463\"/>\n      <point x=\"284\" y=\"396\"/>\n      <point x=\"284\" y=\"304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"97\"/>\n      <point x=\"423\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"113\" y=\"811\" type=\"line\"/>\n      <point x=\"1083\" y=\"811\" type=\"line\"/>\n      <point x=\"1127\" y=\"1060\" type=\"line\"/>\n      <point x=\"157\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tau.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tau\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C4\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"737\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"-20\"/>\n      <point x=\"900\" y=\"-9\"/>\n      <point x=\"971\" y=\"12\" type=\"curve\"/>\n      <point x=\"986\" y=\"265\" type=\"line\"/>\n      <point x=\"904\" y=\"247\"/>\n      <point x=\"831\" y=\"237\"/>\n      <point x=\"772\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"237\"/>\n      <point x=\"613\" y=\"319\"/>\n      <point x=\"641\" y=\"477\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"1060\" type=\"line\"/>\n      <point x=\"474\" y=\"1060\" type=\"line\"/>\n      <point x=\"368\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"141\"/>\n      <point x=\"440\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"142\" y=\"808\" type=\"line\"/>\n      <point x=\"1116\" y=\"808\" type=\"line\"/>\n      <point x=\"1160\" y=\"1060\" type=\"line\"/>\n      <point x=\"186\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0167\"/>\n  <outline>\n    <contour>\n      <point x=\"44\" y=\"421\" type=\"line\"/>\n      <point x=\"1015\" y=\"421\" type=\"line\"/>\n      <point x=\"1059\" y=\"670\" type=\"line\"/>\n      <point x=\"88\" y=\"670\" type=\"line\"/>\n    </contour>\n    <component base=\"t\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0165\"/>\n  <outline>\n    <contour>\n      <point x=\"834\" y=\"1228\" type=\"line\"/>\n      <point x=\"1060\" y=\"1228\" type=\"line\"/>\n      <point x=\"1217\" y=\"1608\" type=\"line\"/>\n      <point x=\"941\" y=\"1608\" type=\"line\"/>\n    </contour>\n    <component base=\"t\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tcedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0163\"/>\n  <outline>\n    <component base=\"t\"/>\n    <component base=\"cedillacomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021B\"/>\n  <outline>\n    <component base=\"t\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/te-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"te-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0442\"/>\n  <outline>\n    <component base=\"m\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/te-cy.loclS_R_B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"te-cy.loclSRB\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"280\" y=\"1250\" type=\"line\"/>\n      <point x=\"1172\" y=\"1250\" type=\"line\"/>\n      <point x=\"1216\" y=\"1499\" type=\"line\"/>\n      <point x=\"324\" y=\"1499\" type=\"line\"/>\n    </contour>\n    <component base=\"sha-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>sha-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B8\"/>\n  <outline>\n    <contour>\n      <point x=\"374\" y=\"0\" type=\"line\"/>\n      <point x=\"640\" y=\"0\" type=\"line\"/>\n      <point x=\"826\" y=\"1057\" type=\"line\"/>\n      <point x=\"560\" y=\"1057\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"113\" y=\"813\" type=\"line\"/>\n      <point x=\"1187\" y=\"813\" type=\"line\"/>\n      <point x=\"1230\" y=\"1057\" type=\"line\"/>\n      <point x=\"156\" y=\"1057\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"177\" y=\"1177\" type=\"line\"/>\n      <point x=\"1251\" y=\"1177\" type=\"line\"/>\n      <point x=\"1294\" y=\"1420\" type=\"line\"/>\n      <point x=\"220\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tesh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tesh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02A7\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"234\" y=\"-477\" type=\"line\"/>\n      <point x=\"383\" y=\"-464\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"-427\"/>\n      <point x=\"939\" y=\"-283\"/>\n      <point x=\"978\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"1090\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1089\" y=\"1160\"/>\n      <point x=\"1136\" y=\"1188\"/>\n      <point x=\"1223\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1259\" y=\"1188\"/>\n      <point x=\"1295\" y=\"1184\"/>\n      <point x=\"1344\" y=\"1174\" type=\"curve\"/>\n      <point x=\"1407\" y=\"1420\" type=\"line\"/>\n      <point x=\"1356\" y=\"1431\"/>\n      <point x=\"1309\" y=\"1440\"/>\n      <point x=\"1250\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"1440\"/>\n      <point x=\"842\" y=\"1339\"/>\n      <point x=\"814\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"708\" y=\"93\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"-110\"/>\n      <point x=\"629\" y=\"-185\"/>\n      <point x=\"437\" y=\"-202\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"-221\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"528\" y=\"-20\"/>\n      <point x=\"571\" y=\"-9\"/>\n      <point x=\"611\" y=\"5\" type=\"curve\"/>\n      <point x=\"562\" y=\"243\" type=\"line\"/>\n      <point x=\"545\" y=\"238\"/>\n      <point x=\"535\" y=\"237\"/>\n      <point x=\"519\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"237\"/>\n      <point x=\"436\" y=\"257\"/>\n      <point x=\"436\" y=\"304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"375\"/>\n      <point x=\"444\" y=\"423\"/>\n      <point x=\"466\" y=\"547\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"1380\" type=\"line\"/>\n      <point x=\"337\" y=\"1380\" type=\"line\"/>\n      <point x=\"191\" y=\"547\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"407\"/>\n      <point x=\"159\" y=\"347\"/>\n      <point x=\"159\" y=\"264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"83\"/>\n      <point x=\"273\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"60\" y=\"811\" type=\"line\"/>\n      <point x=\"970\" y=\"811\" type=\"line\"/>\n      <point x=\"1014\" y=\"1060\" type=\"line\"/>\n      <point x=\"104\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/theta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B8\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"503\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"965\" y=\"-20\"/>\n      <point x=\"1155\" y=\"541\"/>\n      <point x=\"1155\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1155\" y=\"1358\"/>\n      <point x=\"1014\" y=\"1520\"/>\n      <point x=\"745\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"1520\"/>\n      <point x=\"234\" y=\"1341\"/>\n      <point x=\"234\" y=\"1038\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"234\" y=\"712\"/>\n      <point x=\"468\" y=\"520\"/>\n      <point x=\"863\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"520\" type=\"line\"/>\n      <point x=\"1003\" y=\"777\" type=\"line\"/>\n      <point x=\"863\" y=\"777\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"648\" y=\"777\"/>\n      <point x=\"521\" y=\"878\"/>\n      <point x=\"521\" y=\"1052\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"1185\"/>\n      <point x=\"592\" y=\"1264\"/>\n      <point x=\"709\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"1264\"/>\n      <point x=\"876\" y=\"1192\"/>\n      <point x=\"876\" y=\"1028\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"678\"/>\n      <point x=\"780\" y=\"236\"/>\n      <point x=\"548\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"236\"/>\n      <point x=\"399\" y=\"293\"/>\n      <point x=\"399\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"399\" y=\"459\"/>\n      <point x=\"401\" y=\"496\"/>\n      <point x=\"402\" y=\"533\" type=\"curve\"/>\n      <point x=\"129\" y=\"533\" type=\"line\"/>\n      <point x=\"126\" y=\"488\"/>\n      <point x=\"123\" y=\"445\"/>\n      <point x=\"123\" y=\"402\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"123\" y=\"137\"/>\n      <point x=\"264\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/thetamod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thetamod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1DBF\"/>\n  <outline>\n    <contour>\n      <point x=\"431\" y=\"1122\" type=\"line\"/>\n      <point x=\"997\" y=\"1122\" type=\"line\"/>\n      <point x=\"1013\" y=\"1216\" type=\"line\"/>\n      <point x=\"447\" y=\"1216\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"643\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"770\"/>\n      <point x=\"1082\" y=\"989\"/>\n      <point x=\"1082\" y=\"1267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"1460\"/>\n      <point x=\"977\" y=\"1568\"/>\n      <point x=\"783\" y=\"1568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"1568\"/>\n      <point x=\"344\" y=\"1349\"/>\n      <point x=\"344\" y=\"1071\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"878\"/>\n      <point x=\"449\" y=\"770\"/>\n    </contour>\n    <contour>\n      <point x=\"678\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"613\" y=\"970\"/>\n      <point x=\"578\" y=\"1012\"/>\n      <point x=\"578\" y=\"1090\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"1205\"/>\n      <point x=\"633\" y=\"1368\"/>\n      <point x=\"748\" y=\"1368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"1368\"/>\n      <point x=\"848\" y=\"1326\"/>\n      <point x=\"848\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"1133\"/>\n      <point x=\"793\" y=\"970\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/thorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FE\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"485\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"306\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"-20\"/>\n      <point x=\"1141\" y=\"298\"/>\n      <point x=\"1141\" y=\"720\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1141\" y=\"950\"/>\n      <point x=\"1031\" y=\"1080\"/>\n      <point x=\"840\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"1080\"/>\n      <point x=\"534\" y=\"983\"/>\n      <point x=\"497\" y=\"813\" type=\"curve\"/>\n      <point x=\"528\" y=\"869\" type=\"line\"/>\n      <point x=\"441\" y=\"869\" type=\"line\"/>\n      <point x=\"401\" y=\"388\" type=\"line\"/>\n      <point x=\"459\" y=\"693\"/>\n      <point x=\"604\" y=\"823\"/>\n      <point x=\"738\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"823\"/>\n      <point x=\"864\" y=\"774\"/>\n      <point x=\"864\" y=\"686\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"430\"/>\n      <point x=\"647\" y=\"237\"/>\n      <point x=\"359\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"237\"/>\n      <point x=\"210\" y=\"247\"/>\n      <point x=\"177\" y=\"262\" type=\"curve\"/>\n      <point x=\"98\" y=\"0\" type=\"line\"/>\n      <point x=\"168\" y=\"-12\"/>\n      <point x=\"236\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"252\" y=\"-460\" type=\"line\"/>\n      <point x=\"528\" y=\"1117\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"1400\"/>\n      <point x=\"482\" y=\"1521\"/>\n      <point x=\"206\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"155\" y=\"1521\"/>\n      <point x=\"104\" y=\"1517\"/>\n      <point x=\"54\" y=\"1505\" type=\"curve\"/>\n      <point x=\"83\" y=\"1253\" type=\"line\"/>\n      <point x=\"109\" y=\"1261\"/>\n      <point x=\"136\" y=\"1264\"/>\n      <point x=\"162\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1264\"/>\n      <point x=\"269\" y=\"1210\"/>\n      <point x=\"247\" y=\"1087\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-23\" y=\"-459\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/three.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"threesuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/three.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0033\"/>\n  <outline>\n    <contour>\n      <point x=\"426\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"-20\"/>\n      <point x=\"1042\" y=\"155\"/>\n      <point x=\"1042\" y=\"426\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1042\" y=\"615\"/>\n      <point x=\"908\" y=\"714\"/>\n      <point x=\"700\" y=\"744\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"828\" type=\"line\"/>\n      <point x=\"399\" y=\"600\" type=\"line\"/>\n      <point x=\"502\" y=\"596\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"589\"/>\n      <point x=\"764\" y=\"535\"/>\n      <point x=\"764\" y=\"430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"310\"/>\n      <point x=\"635\" y=\"232\"/>\n      <point x=\"440\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"232\"/>\n      <point x=\"198\" y=\"261\"/>\n      <point x=\"121\" y=\"282\" type=\"curve\"/>\n      <point x=\"40\" y=\"28\" type=\"line\"/>\n      <point x=\"137\" y=\"-1\"/>\n      <point x=\"267\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"399\" y=\"600\" type=\"line\"/>\n      <point x=\"790\" y=\"600\" type=\"line\"/>\n      <point x=\"790\" y=\"758\" type=\"line\"/>\n      <point x=\"1018\" y=\"809\"/>\n      <point x=\"1143\" y=\"969\"/>\n      <point x=\"1143\" y=\"1147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1143\" y=\"1336\"/>\n      <point x=\"1010\" y=\"1440\"/>\n      <point x=\"767\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"1440\"/>\n      <point x=\"360\" y=\"1377\"/>\n      <point x=\"199\" y=\"1231\" type=\"curve\"/>\n      <point x=\"353\" y=\"1054\" type=\"line\"/>\n      <point x=\"481\" y=\"1145\"/>\n      <point x=\"617\" y=\"1188\"/>\n      <point x=\"723\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"1188\"/>\n      <point x=\"865\" y=\"1145\"/>\n      <point x=\"865\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"944\"/>\n      <point x=\"701\" y=\"859\"/>\n      <point x=\"394\" y=\"828\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/three.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"360\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"598\" y=\"-9\"/>\n      <point x=\"734\" y=\"56\"/>\n      <point x=\"734\" y=\"169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"266\"/>\n      <point x=\"629\" y=\"327\"/>\n      <point x=\"467\" y=\"323\" type=\"curve\"/>\n      <point x=\"249\" y=\"359\" type=\"line\"/>\n      <point x=\"267\" y=\"276\" type=\"line\"/>\n      <point x=\"289\" y=\"276\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"276\"/>\n      <point x=\"572\" y=\"252\"/>\n      <point x=\"572\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"152\"/>\n      <point x=\"491\" y=\"126\"/>\n      <point x=\"354\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"126\"/>\n      <point x=\"178\" y=\"143\"/>\n      <point x=\"121\" y=\"155\" type=\"curve\"/>\n      <point x=\"102\" y=\"13\" type=\"line\"/>\n      <point x=\"171\" y=\"-1\"/>\n      <point x=\"260\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"267\" y=\"276\" type=\"line\"/>\n      <point x=\"469\" y=\"276\" type=\"line\"/>\n      <point x=\"469\" y=\"343\" type=\"line\"/>\n      <point x=\"614\" y=\"365\"/>\n      <point x=\"713\" y=\"428\"/>\n      <point x=\"713\" y=\"505\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"597\"/>\n      <point x=\"602\" y=\"648\"/>\n      <point x=\"405\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"648\"/>\n      <point x=\"170\" y=\"635\"/>\n      <point x=\"85\" y=\"600\" type=\"curve\"/>\n      <point x=\"126\" y=\"474\" type=\"line\"/>\n      <point x=\"208\" y=\"498\"/>\n      <point x=\"309\" y=\"513\"/>\n      <point x=\"390\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"494\" y=\"513\"/>\n      <point x=\"551\" y=\"493\"/>\n      <point x=\"551\" y=\"462\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"410\"/>\n      <point x=\"469\" y=\"377\"/>\n      <point x=\"249\" y=\"359\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/three.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"threesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/threeeighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threeeighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"768\" y=\"698\" type=\"line\"/>\n      <point x=\"1207\" y=\"959\" type=\"line\"/>\n      <point x=\"1076\" y=\"1176\" type=\"line\"/>\n      <point x=\"689\" y=\"835\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"170\" y=\"231\" type=\"line\"/>\n      <point x=\"558\" y=\"565\" type=\"line\"/>\n      <point x=\"483\" y=\"704\" type=\"line\"/>\n      <point x=\"46\" y=\"451\" type=\"line\"/>\n    </contour>\n    <component base=\"threesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/threeeighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threeeighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215C\"/>\n  <outline>\n    <contour>\n      <point x=\"169\" y=\"241\" type=\"line\"/>\n      <point x=\"1196\" y=\"969\" type=\"line\"/>\n      <point x=\"1075\" y=\"1166\" type=\"line\"/>\n      <point x=\"55\" y=\"441\" type=\"line\"/>\n    </contour>\n    <component base=\"threesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/threeinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threeinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2083\"/>\n  <outline>\n    <component base=\"threesuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/threequarters.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threequarters.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"788\" y=\"698\" type=\"line\"/>\n      <point x=\"1227\" y=\"959\" type=\"line\"/>\n      <point x=\"1096\" y=\"1176\" type=\"line\"/>\n      <point x=\"709\" y=\"835\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"190\" y=\"231\" type=\"line\"/>\n      <point x=\"578\" y=\"565\" type=\"line\"/>\n      <point x=\"503\" y=\"704\" type=\"line\"/>\n      <point x=\"66\" y=\"451\" type=\"line\"/>\n    </contour>\n    <component base=\"threesuperior\" xOffset=\"-260\"/>\n    <component base=\"fourinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/threequarters.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threequarters\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BE\"/>\n  <outline>\n    <contour>\n      <point x=\"190\" y=\"241\" type=\"line\"/>\n      <point x=\"1217\" y=\"969\" type=\"line\"/>\n      <point x=\"1096\" y=\"1166\" type=\"line\"/>\n      <point x=\"76\" y=\"441\" type=\"line\"/>\n    </contour>\n    <component base=\"threesuperior\" xOffset=\"-260\"/>\n    <component base=\"fourinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/threesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B3\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"793\"/>\n      <point x=\"952\" y=\"858\"/>\n      <point x=\"952\" y=\"984\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"1055\"/>\n      <point x=\"889\" y=\"1103\"/>\n      <point x=\"769\" y=\"1123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"569\" y=\"1155\" type=\"line\"/>\n      <point x=\"555\" y=\"1042\" type=\"line\"/>\n      <point x=\"646\" y=\"1042\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"695\" y=\"1042\"/>\n      <point x=\"718\" y=\"1031\"/>\n      <point x=\"718\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"990\"/>\n      <point x=\"679\" y=\"969\"/>\n      <point x=\"626\" y=\"969\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"969\"/>\n      <point x=\"494\" y=\"982\"/>\n      <point x=\"450\" y=\"990\" type=\"curve\"/>\n      <point x=\"379\" y=\"819\" type=\"line\"/>\n      <point x=\"435\" y=\"803\"/>\n      <point x=\"508\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"1042\" type=\"line\"/>\n      <point x=\"788\" y=\"1089\" type=\"line\"/>\n      <point x=\"799\" y=\"1153\" type=\"line\"/>\n      <point x=\"927\" y=\"1175\"/>\n      <point x=\"994\" y=\"1229\"/>\n      <point x=\"994\" y=\"1311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"1396\"/>\n      <point x=\"908\" y=\"1440\"/>\n      <point x=\"743\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"653\" y=\"1440\"/>\n      <point x=\"569\" y=\"1431\"/>\n      <point x=\"495\" y=\"1410\" type=\"curve\"/>\n      <point x=\"485\" y=\"1236\" type=\"line\"/>\n      <point x=\"544\" y=\"1255\"/>\n      <point x=\"608\" y=\"1265\"/>\n      <point x=\"682\" y=\"1265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"722\" y=\"1265\"/>\n      <point x=\"739\" y=\"1256\"/>\n      <point x=\"739\" y=\"1240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"739\" y=\"1221\"/>\n      <point x=\"683\" y=\"1198\"/>\n      <point x=\"565\" y=\"1192\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DC\"/>\n  <outline>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tildecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tildecomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"831\" y=\"1840\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"380\" y=\"1566\" type=\"line\"/>\n      <point x=\"642\" y=\"1566\" type=\"line\"/>\n      <point x=\"653\" y=\"1626\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"1666\"/>\n      <point x=\"680\" y=\"1683\"/>\n      <point x=\"720\" y=\"1683\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"1683\"/>\n      <point x=\"898\" y=\"1620\"/>\n      <point x=\"989\" y=\"1620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1132\" y=\"1620\"/>\n      <point x=\"1209\" y=\"1701\"/>\n      <point x=\"1241\" y=\"1885\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"1935\" type=\"line\"/>\n      <point x=\"988\" y=\"1935\" type=\"line\"/>\n      <point x=\"979\" y=\"1883\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"973\" y=\"1850\"/>\n      <point x=\"959\" y=\"1836\"/>\n      <point x=\"937\" y=\"1836\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"1836\"/>\n      <point x=\"755\" y=\"1891\"/>\n      <point x=\"665\" y=\"1891\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"1891\"/>\n      <point x=\"423\" y=\"1807\"/>\n      <point x=\"389\" y=\"1616\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tildecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tildecomb\" format=\"2\">\n  <unicode hex=\"0303\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"336\" y=\"1256\" type=\"line\"/>\n      <point x=\"594\" y=\"1256\" type=\"line\"/>\n      <point x=\"600\" y=\"1288\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"1351\"/>\n      <point x=\"638\" y=\"1372\"/>\n      <point x=\"687\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"1372\"/>\n      <point x=\"821\" y=\"1300\"/>\n      <point x=\"923\" y=\"1300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1065\" y=\"1300\"/>\n      <point x=\"1148\" y=\"1379\"/>\n      <point x=\"1176\" y=\"1540\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1193\" y=\"1657\" type=\"line\"/>\n      <point x=\"946\" y=\"1657\" type=\"line\"/>\n      <point x=\"938\" y=\"1597\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"1551\"/>\n      <point x=\"905\" y=\"1527\"/>\n      <point x=\"863\" y=\"1527\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"1527\"/>\n      <point x=\"734\" y=\"1588\"/>\n      <point x=\"630\" y=\"1588\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"1588\"/>\n      <point x=\"377\" y=\"1491\"/>\n      <point x=\"343\" y=\"1296\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tonos.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tonos.case\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tonos\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0384\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/topH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BCA\"/>\n  <note>\nuni2BCA\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/topH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B18\"/>\n  <note>\nuni2B18\n</note>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/topH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B13\"/>\n  <note>\nuni2B13\n</note>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"125\" y=\"225\" type=\"line\"/>\n      <point x=\"1075\" y=\"225\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/topR_ightH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topRightHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B15\"/>\n  <note>\nuni2B15\n</note>\n  <outline>\n    <contour>\n      <point x=\"1089\" y=\"211\" type=\"line\"/>\n      <point x=\"110\" y=\"1199\" type=\"line\"/>\n      <point x=\"110\" y=\"211\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/trademark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"trademark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2122\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"774\" type=\"line\"/>\n      <point x=\"390\" y=\"774\" type=\"line\"/>\n      <point x=\"504\" y=\"1420\" type=\"line\"/>\n      <point x=\"318\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"137\" y=\"1238\" type=\"line\"/>\n      <point x=\"624\" y=\"1238\" type=\"line\"/>\n      <point x=\"656\" y=\"1420\" type=\"line\"/>\n      <point x=\"169\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"920\" y=\"982\" type=\"line\"/>\n      <point x=\"1005\" y=\"982\" type=\"line\"/>\n      <point x=\"1088\" y=\"1198\" type=\"line\"/>\n      <point x=\"1127\" y=\"1198\" type=\"line\"/>\n      <point x=\"1166\" y=\"1420\" type=\"line\"/>\n      <point x=\"1058\" y=\"1420\" type=\"line\"/>\n      <point x=\"982\" y=\"1235\" type=\"line\"/>\n      <point x=\"976\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"774\" type=\"line\"/>\n      <point x=\"756\" y=\"774\" type=\"line\"/>\n      <point x=\"870\" y=\"1420\" type=\"line\"/>\n      <point x=\"694\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"870\" y=\"982\" type=\"line\"/>\n      <point x=\"948\" y=\"982\" type=\"line\"/>\n      <point x=\"978\" y=\"1235\" type=\"line\"/>\n      <point x=\"974\" y=\"1235\" type=\"line\"/>\n      <point x=\"963\" y=\"1420\" type=\"line\"/>\n      <point x=\"853\" y=\"1420\" type=\"line\"/>\n      <point x=\"814\" y=\"1198\" type=\"line\"/>\n      <point x=\"854\" y=\"1198\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1035\" y=\"774\" type=\"line\"/>\n      <point x=\"1203\" y=\"774\" type=\"line\"/>\n      <point x=\"1317\" y=\"1420\" type=\"line\"/>\n      <point x=\"1149\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tse-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tse-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0446\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"517\" y=\"-480\" type=\"line\"/>\n      <point x=\"803\" y=\"-480\"/>\n      <point x=\"957\" y=\"-348\"/>\n      <point x=\"1032\" y=\"-154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"-98\"/>\n      <point x=\"1068\" y=\"-30\"/>\n      <point x=\"1080\" y=\"43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"219\" type=\"line\"/>\n      <point x=\"894\" y=\"219\" type=\"line\"/>\n      <point x=\"864\" y=\"44\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"857\" y=\"2\"/>\n      <point x=\"844\" y=\"-52\"/>\n      <point x=\"829\" y=\"-82\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"-178\"/>\n      <point x=\"705\" y=\"-226\"/>\n      <point x=\"504\" y=\"-239\" type=\"curve\"/>\n    </contour>\n    <component base=\"u\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tshe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tshe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045B\"/>\n  <anchor x=\"511\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"691\" y=\"784\" name=\"center\"/>\n  <anchor x=\"478\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"678\" y=\"0\" type=\"line\"/>\n      <point x=\"953\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"812\"/>\n      <point x=\"1011\" y=\"961\"/>\n      <point x=\"798\" y=\"961\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"961\"/>\n      <point x=\"577\" y=\"885\"/>\n      <point x=\"536\" y=\"749\" type=\"curve\"/>\n      <point x=\"493\" y=\"749\" type=\"line\"/>\n      <point x=\"438\" y=\"392\" type=\"line\"/>\n      <point x=\"475\" y=\"621\"/>\n      <point x=\"568\" y=\"704\"/>\n      <point x=\"677\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"704\"/>\n      <point x=\"792\" y=\"641\"/>\n      <point x=\"771\" y=\"521\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"94\" y=\"0\" type=\"line\"/>\n      <point x=\"369\" y=\"0\" type=\"line\"/>\n      <point x=\"635\" y=\"1500\" type=\"line\"/>\n      <point x=\"360\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"103\" y=\"1110\" type=\"line\"/>\n      <point x=\"887\" y=\"1110\" type=\"line\"/>\n      <point x=\"926\" y=\"1334\" type=\"line\"/>\n      <point x=\"142\" y=\"1334\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/tugrik.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tugrik\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AE\"/>\n  <outline>\n    <contour>\n      <point x=\"168\" y=\"629\" type=\"line\"/>\n      <point x=\"1104\" y=\"769\" type=\"line\"/>\n      <point x=\"1147\" y=\"1011\" type=\"line\"/>\n      <point x=\"211\" y=\"871\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"105\" y=\"274\" type=\"line\"/>\n      <point x=\"1041\" y=\"414\" type=\"line\"/>\n      <point x=\"1084\" y=\"656\" type=\"line\"/>\n      <point x=\"148\" y=\"516\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/two.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"twosuperior\" xOffset=\"-142\" yOffset=\"-803\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/two.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0032\"/>\n  <outline>\n    <contour>\n      <point x=\"59\" y=\"0\" type=\"line\"/>\n      <point x=\"509\" y=\"0\" type=\"line\"/>\n      <point x=\"517\" y=\"276\" type=\"line\"/>\n      <point x=\"906\" y=\"515\"/>\n      <point x=\"1132\" y=\"794\"/>\n      <point x=\"1132\" y=\"1107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1132\" y=\"1329\"/>\n      <point x=\"998\" y=\"1440\"/>\n      <point x=\"729\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"1440\"/>\n      <point x=\"325\" y=\"1349\"/>\n      <point x=\"203\" y=\"1211\" type=\"curve\"/>\n      <point x=\"342\" y=\"1041\" type=\"line\"/>\n      <point x=\"447\" y=\"1132\"/>\n      <point x=\"586\" y=\"1188\"/>\n      <point x=\"692\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"1188\"/>\n      <point x=\"844\" y=\"1145\"/>\n      <point x=\"844\" y=\"1061\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"792\"/>\n      <point x=\"558\" y=\"512\"/>\n      <point x=\"47\" y=\"272\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"119\" y=\"0\" type=\"line\"/>\n      <point x=\"983\" y=\"0\" type=\"line\"/>\n      <point x=\"1024\" y=\"234\" type=\"line\"/>\n      <point x=\"110\" y=\"234\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/two.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two.half\" format=\"2\">\n  <advance width=\"839\"/>\n  <outline>\n    <contour>\n      <point x=\"117\" y=\"0\" type=\"line\"/>\n      <point x=\"357\" y=\"0\" type=\"line\"/>\n      <point x=\"357\" y=\"157\" type=\"line\"/>\n      <point x=\"608\" y=\"236\"/>\n      <point x=\"727\" y=\"352\"/>\n      <point x=\"727\" y=\"449\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"588\"/>\n      <point x=\"624\" y=\"648\"/>\n      <point x=\"411\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"648\"/>\n      <point x=\"182\" y=\"626\"/>\n      <point x=\"74\" y=\"581\" type=\"curve\"/>\n      <point x=\"127\" y=\"460\" type=\"line\"/>\n      <point x=\"212\" y=\"495\"/>\n      <point x=\"305\" y=\"513\"/>\n      <point x=\"408\" y=\"513\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"513\"/>\n      <point x=\"568\" y=\"487\"/>\n      <point x=\"568\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"568\" y=\"324\"/>\n      <point x=\"420\" y=\"234\"/>\n      <point x=\"117\" y=\"150\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"159\" y=\"0\" type=\"line\"/>\n      <point x=\"769\" y=\"0\" type=\"line\"/>\n      <point x=\"769\" y=\"135\" type=\"line\"/>\n      <point x=\"159\" y=\"135\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/two.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"twosuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/twoinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twoinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2082\"/>\n  <outline>\n    <component base=\"twosuperior\" xOffset=\"-142\" yOffset=\"-803\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/twosuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twosuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B2\"/>\n  <outline>\n    <contour>\n      <point x=\"430\" y=\"802\" type=\"line\"/>\n      <point x=\"766\" y=\"802\" type=\"line\"/>\n      <point x=\"766\" y=\"1047\" type=\"line\"/>\n      <point x=\"924\" y=\"1119\"/>\n      <point x=\"992\" y=\"1188\"/>\n      <point x=\"992\" y=\"1278\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"1377\"/>\n      <point x=\"905\" y=\"1440\"/>\n      <point x=\"763\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"1440\"/>\n      <point x=\"536\" y=\"1419\"/>\n      <point x=\"462\" y=\"1380\" type=\"curve\"/>\n      <point x=\"495\" y=\"1192\" type=\"line\"/>\n      <point x=\"551\" y=\"1217\"/>\n      <point x=\"608\" y=\"1230\"/>\n      <point x=\"655\" y=\"1230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"697\" y=\"1230\"/>\n      <point x=\"718\" y=\"1219\"/>\n      <point x=\"718\" y=\"1195\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"1135\"/>\n      <point x=\"612\" y=\"1077\"/>\n      <point x=\"404\" y=\"1026\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"456\" y=\"802\" type=\"line\"/>\n      <point x=\"935\" y=\"802\" type=\"line\"/>\n      <point x=\"971\" y=\"1009\" type=\"line\"/>\n      <point x=\"427\" y=\"1009\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/u-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0443\"/>\n  <outline>\n    <component base=\"y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0075\"/>\n  <anchor x=\"456\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"987\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"683\" y=\"1060\" name=\"top\"/>\n  <anchor x=\"1113\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"383\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"602\" y=\"-21\"/>\n      <point x=\"665\" y=\"114\"/>\n      <point x=\"729\" y=\"329\" type=\"curve\"/>\n      <point x=\"690\" y=\"224\" type=\"line\"/>\n      <point x=\"756\" y=\"224\" type=\"line\"/>\n      <point x=\"766\" y=\"667\" type=\"line\"/>\n      <point x=\"712\" y=\"388\"/>\n      <point x=\"626\" y=\"236\"/>\n      <point x=\"478\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"397\" y=\"236\"/>\n      <point x=\"351\" y=\"282\"/>\n      <point x=\"351\" y=\"362\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"504\"/>\n      <point x=\"410\" y=\"707\"/>\n      <point x=\"545\" y=\"1041\" type=\"curve\"/>\n      <point x=\"273\" y=\"1080\" type=\"line\"/>\n      <point x=\"133\" y=\"753\"/>\n      <point x=\"74\" y=\"531\"/>\n      <point x=\"74\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"74\" y=\"110\"/>\n      <point x=\"186\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"960\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"-10\" type=\"line\"/>\n      <point x=\"1109\" y=\"219\" type=\"line\"/>\n      <point x=\"1061\" y=\"219\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"987\" y=\"219\"/>\n      <point x=\"968\" y=\"247\"/>\n      <point x=\"984\" y=\"341\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1110\" y=\"1060\" type=\"line\"/>\n      <point x=\"836\" y=\"1060\" type=\"line\"/>\n      <point x=\"733\" y=\"481\" type=\"line\"/>\n      <point x=\"740\" y=\"250\" type=\"line\"/>\n      <point x=\"717\" y=\"76\"/>\n      <point x=\"790\" y=\"-10\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FA\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"acutecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ubreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ubreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016D\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"brevecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ucircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ucircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FB\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/udieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"udieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FC\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/udotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"udotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE5\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-51\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ugrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ugrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F9\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"gravecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE7\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"hookabovecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uhorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B0\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"horncomb\" xOffset=\"420\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uhornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE9\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"acutecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uhorndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF1\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-51\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uhorngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEB\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"gravecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uhornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EED\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"hookabovecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uhorntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEF\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"tildecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uhungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0171\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"hungarumlautcomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/umacron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"umacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04EF\"/>\n  <outline>\n    <component base=\"u-cy\"/>\n    <component base=\"macroncomb\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/umacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"umacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016B\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"macroncomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005F\"/>\n  <outline>\n    <contour>\n      <point x=\"-35\" y=\"-241\" type=\"line\"/>\n      <point x=\"964\" y=\"-241\" type=\"line\"/>\n      <point x=\"1006\" y=\"0\" type=\"line\"/>\n      <point x=\"7\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-157\" y=\"-250\" type=\"line\"/>\n      <point x=\"962\" y=\"-250\" type=\"line\"/>\n      <point x=\"1006\" y=\"0\" type=\"line\"/>\n      <point x=\"-113\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-187\" y=\"-250\" type=\"line\"/>\n      <point x=\"1112\" y=\"-250\" type=\"line\"/>\n      <point x=\"1156\" y=\"0\" type=\"line\"/>\n      <point x=\"-143\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-37\" y=\"-250\" type=\"line\"/>\n      <point x=\"1082\" y=\"-250\" type=\"line\"/>\n      <point x=\"1126\" y=\"0\" type=\"line\"/>\n      <point x=\"7\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore_underscore.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_underscore.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"143\" y=\"-250\" type=\"line\"/>\n      <point x=\"1983\" y=\"-250\" type=\"line\"/>\n      <point x=\"2027\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/underscoredbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscoredbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2017\"/>\n  <guideline x=\"1099\" y=\"366\" angle=\"261.2025\"/>\n  <guideline x=\"99\" y=\"366\" angle=\"261.2025\"/>\n  <outline>\n    <component base=\"underscore\" xOffset=\"-3\"/>\n    <component base=\"underscore\" xOffset=\"-50\" yOffset=\"-304\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/unitS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"unitSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241F\"/>\n  <outline>\n    <component base=\"U.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>U.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0173\"/>\n  <outline>\n    <contour>\n      <point x=\"832\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"-424\"/>\n      <point x=\"957\" y=\"-408\"/>\n      <point x=\"1004\" y=\"-386\" type=\"curve\"/>\n      <point x=\"962\" y=\"-172\" type=\"line\"/>\n      <point x=\"937\" y=\"-180\"/>\n      <point x=\"912\" y=\"-185\"/>\n      <point x=\"889\" y=\"-185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"-185\"/>\n      <point x=\"830\" y=\"-170\"/>\n      <point x=\"830\" y=\"-142\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"-82\"/>\n      <point x=\"943\" y=\"-10\"/>\n      <point x=\"1066\" y=\"-10\" type=\"curve\"/>\n      <point x=\"1027\" y=\"20\" type=\"line\"/>\n      <point x=\"844\" y=\"47\" type=\"line\"/>\n      <point x=\"844\" y=\"-3\" type=\"line\"/>\n      <point x=\"699\" y=\"-51\"/>\n      <point x=\"613\" y=\"-144\"/>\n      <point x=\"613\" y=\"-255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"613\" y=\"-368\"/>\n      <point x=\"688\" y=\"-424\"/>\n    </contour>\n    <component base=\"u\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2191\"/>\n  <outline>\n    <contour>\n      <point x=\"638\" y=\"0\" type=\"line\"/>\n      <point x=\"859\" y=\"1251\" type=\"line\"/>\n      <point x=\"597\" y=\"1251\" type=\"line\"/>\n      <point x=\"376\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1236\" y=\"980\" type=\"line\"/>\n      <point x=\"822\" y=\"1440\" type=\"line\"/>\n      <point x=\"700\" y=\"1440\" type=\"line\"/>\n      <point x=\"144\" y=\"1030\" type=\"line\"/>\n      <point x=\"301\" y=\"840\" type=\"line\"/>\n      <point x=\"696\" y=\"1161\" type=\"line\"/>\n      <point x=\"714\" y=\"1161\" type=\"line\"/>\n      <point x=\"1048\" y=\"795\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B4\"/>\n  <note>\nuni25B4\n</note>\n  <outline>\n    <contour>\n      <point x=\"131\" y=\"305\" type=\"line\"/>\n      <point x=\"1069\" y=\"305\" type=\"line\"/>\n      <point x=\"600\" y=\"1102\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B2\"/>\n  <note>\ntriagup\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"230\" type=\"line\"/>\n      <point x=\"1200\" y=\"230\" type=\"line\"/>\n      <point x=\"600\" y=\"1250\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upD_ashA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upDashArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21E1\"/>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"0\" type=\"line\"/>\n      <point x=\"637\" y=\"0\" type=\"line\"/>\n      <point x=\"676\" y=\"219\" type=\"line\"/>\n      <point x=\"414\" y=\"219\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"426\" y=\"287\" type=\"line\"/>\n      <point x=\"688\" y=\"287\" type=\"line\"/>\n      <point x=\"726\" y=\"503\" type=\"line\"/>\n      <point x=\"464\" y=\"503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"476\" y=\"571\" type=\"line\"/>\n      <point x=\"738\" y=\"571\" type=\"line\"/>\n      <point x=\"774\" y=\"778\" type=\"line\"/>\n      <point x=\"512\" y=\"778\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"524\" y=\"846\" type=\"line\"/>\n      <point x=\"786\" y=\"846\" type=\"line\"/>\n      <point x=\"847\" y=\"1192\" type=\"line\"/>\n      <point x=\"585\" y=\"1192\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1236\" y=\"980\" type=\"line\"/>\n      <point x=\"822\" y=\"1440\" type=\"line\"/>\n      <point x=\"700\" y=\"1440\" type=\"line\"/>\n      <point x=\"144\" y=\"1030\" type=\"line\"/>\n      <point x=\"301\" y=\"840\" type=\"line\"/>\n      <point x=\"696\" y=\"1161\" type=\"line\"/>\n      <point x=\"714\" y=\"1161\" type=\"line\"/>\n      <point x=\"1048\" y=\"795\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upD_ownA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upDownArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2195\"/>\n  <outline>\n    <contour>\n      <point x=\"1048\" y=\"795\" type=\"line\"/>\n      <point x=\"1236\" y=\"980\" type=\"line\"/>\n      <point x=\"822\" y=\"1440\" type=\"line\"/>\n      <point x=\"700\" y=\"1440\" type=\"line\"/>\n      <point x=\"144\" y=\"1030\" type=\"line\"/>\n      <point x=\"301\" y=\"840\" type=\"line\"/>\n      <point x=\"696\" y=\"1161\" type=\"line\"/>\n      <point x=\"714\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"441\" y=\"-20\" type=\"line\"/>\n      <point x=\"563\" y=\"-20\" type=\"line\"/>\n      <point x=\"1119\" y=\"390\" type=\"line\"/>\n      <point x=\"962\" y=\"580\" type=\"line\"/>\n      <point x=\"557\" y=\"259\" type=\"line\"/>\n      <point x=\"539\" y=\"259\" type=\"line\"/>\n      <point x=\"215\" y=\"625\" type=\"line\"/>\n      <point x=\"27\" y=\"440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"398\" y=\"125\" type=\"line\"/>\n      <point x=\"660\" y=\"125\" type=\"line\"/>\n      <point x=\"866\" y=\"1296\" type=\"line\"/>\n      <point x=\"604\" y=\"1296\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upD_ownbaseA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upDownbaseArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21A8\"/>\n  <outline>\n    <contour>\n      <point x=\"-16\" y=\"-243\" type=\"line\"/>\n      <point x=\"944\" y=\"-243\" type=\"line\"/>\n      <point x=\"986\" y=\"0\" type=\"line\"/>\n      <point x=\"26\" y=\"0\" type=\"line\"/>\n    </contour>\n    <component base=\"upDownArrow\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upL_eftH_alfB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upLeftHalfBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25ED\"/>\n  <note>\nuni25ED\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"280\" type=\"line\"/>\n      <point x=\"600\" y=\"1104\" type=\"line\"/>\n      <point x=\"110\" y=\"280\" type=\"line\"/>\n    </contour>\n    <component base=\"upWhiteTriangle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>upWhiteTriangle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upR_ightH_alfB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upRightHalfBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EE\"/>\n  <note>\nuni25EE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"280\" type=\"line\"/>\n      <point x=\"1090\" y=\"280\" type=\"line\"/>\n      <point x=\"600\" y=\"1104\" type=\"line\"/>\n    </contour>\n    <component base=\"upWhiteTriangle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B5\"/>\n  <note>\nuni25B5\n</note>\n  <outline>\n    <contour>\n      <point x=\"131\" y=\"305\" type=\"line\"/>\n      <point x=\"1069\" y=\"305\" type=\"line\"/>\n      <point x=\"600\" y=\"1102\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"394\" y=\"385\" type=\"line\"/>\n      <point x=\"683\" y=\"876\" type=\"line\"/>\n      <point x=\"517\" y=\"876\" type=\"line\"/>\n      <point x=\"806\" y=\"385\" type=\"line\"/>\n      <point x=\"888\" y=\"497\" type=\"line\"/>\n      <point x=\"312\" y=\"497\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B3\"/>\n  <note>\nuni25B3\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"230\" type=\"line\"/>\n      <point x=\"1200\" y=\"230\" type=\"line\"/>\n      <point x=\"600\" y=\"1250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"253\" y=\"250\" type=\"line\"/>\n      <point x=\"702\" y=\"1013\" type=\"line\"/>\n      <point x=\"500\" y=\"1015\" type=\"line\"/>\n      <point x=\"944\" y=\"256\" type=\"line\"/>\n      <point x=\"1056\" y=\"447\" type=\"line\"/>\n      <point x=\"144\" y=\"447\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upW_hiteT_riangleW_ithD_ot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upWhiteTriangleWithDot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EC\"/>\n  <note>\nuni25EC\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"515\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"515\"/>\n      <point x=\"675\" y=\"549\"/>\n      <point x=\"675\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"631\"/>\n      <point x=\"641\" y=\"665\"/>\n      <point x=\"600\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"559\" y=\"665\"/>\n      <point x=\"525\" y=\"631\"/>\n      <point x=\"525\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"549\"/>\n      <point x=\"559\" y=\"515\"/>\n    </contour>\n    <component base=\"upWhiteTriangle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>upWhiteTriangle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB80\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperFiveEighthsBlock\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\r\n      <point x=\"0\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperFiveEighthsBlock.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\r\n      <point x=\"0\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E0\"/>\n  <note>\nuni25E0\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"283\" y=\"710\" type=\"line\"/>\n      <point x=\"283\" y=\"901\"/>\n      <point x=\"409\" y=\"1027\"/>\n      <point x=\"600\" y=\"1027\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"1027\"/>\n      <point x=\"917\" y=\"901\"/>\n      <point x=\"917\" y=\"710\" type=\"curve\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D3\"/>\n  <note>\nuni25D3\n</note>\n  <outline>\n    <contour>\n      <point x=\"181\" y=\"710\" type=\"line\"/>\n      <point x=\"1015\" y=\"710\" type=\"line\"/>\n      <point x=\"1015\" y=\"1008\" type=\"line\"/>\n      <point x=\"594\" y=\"1168\" type=\"line\"/>\n      <point x=\"181\" y=\"961\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2580\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfI_nverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfInverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DA\"/>\n  <note>\nuni25DA\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"283\" y=\"710\" type=\"curve\"/>\n      <point x=\"917\" y=\"710\" type=\"line\"/>\n      <point x=\"917\" y=\"901\"/>\n      <point x=\"791\" y=\"1027\"/>\n      <point x=\"600\" y=\"1027\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"1027\"/>\n      <point x=\"283\" y=\"901\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerLeftAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2599\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerLeftAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259C\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DC\"/>\n  <note>\nuni25DC\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"283\" y=\"710\" type=\"line\"/>\n      <point x=\"283\" y=\"901\"/>\n      <point x=\"409\" y=\"1027\"/>\n      <point x=\"600\" y=\"1027\" type=\"curve\"/>\n      <point x=\"600\" y=\"1235\" type=\"line\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E4\"/>\n  <note>\nuni25E4\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2598\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftD_iagonalH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftDiagonalHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E9\"/>\n  <note>\nuni25E9\n</note>\n  <outline>\n    <contour>\n      <point x=\"101\" y=\"221\" type=\"line\"/>\n      <point x=\"1089\" y=\"1200\" type=\"line\"/>\n      <point x=\"101\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F4\"/>\n  <note>\nuni25F4\n</note>\n  <outline>\n    <contour>\n      <point x=\"153\" y=\"618\" type=\"line\"/>\n      <point x=\"692\" y=\"618\" type=\"line\"/>\n      <point x=\"692\" y=\"1148\" type=\"line\"/>\n      <point x=\"508\" y=\"1148\" type=\"line\"/>\n      <point x=\"508\" y=\"802\" type=\"line\"/>\n      <point x=\"153\" y=\"802\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F8\"/>\n  <note>\nuni25F8\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"507\" type=\"line\"/>\n      <point x=\"292\" y=\"466\" type=\"line\"/>\n      <point x=\"292\" y=\"1166\" type=\"line\"/>\n      <point x=\"144\" y=\"1018\" type=\"line\"/>\n      <point x=\"844\" y=\"1018\" type=\"line\"/>\n      <point x=\"753\" y=\"1159\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D5\"/>\n  <note>\nuni25D5\n</note>\n  <outline>\n    <contour>\n      <point x=\"431\" y=\"225\" type=\"line\"/>\n      <point x=\"875\" y=\"276\" type=\"line\"/>\n      <point x=\"1072\" y=\"561\" type=\"line\"/>\n      <point x=\"1072\" y=\"901\" type=\"line\"/>\n      <point x=\"780\" y=\"1185\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"125\" y=\"534\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2594\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259F\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DD\"/>\n  <note>\nuni25DD\n</note>\n  <outline>\n    <contour>\n      <point x=\"917\" y=\"710\" type=\"curve\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\"/>\n      <point x=\"600\" y=\"1027\" type=\"line\"/>\n      <point x=\"791\" y=\"1027\"/>\n      <point x=\"917\" y=\"901\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D4\"/>\n  <note>\nuni25D4\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n      <point x=\"959\" y=\"1080\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteCircle</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E5\"/>\n  <note>\nuni25E5\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259D\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F7\"/>\n  <note>\nuni25F7\n</note>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"618\" type=\"line\"/>\n      <point x=\"1058\" y=\"618\" type=\"line\"/>\n      <point x=\"1058\" y=\"802\" type=\"line\"/>\n      <point x=\"692\" y=\"802\" type=\"line\"/>\n      <point x=\"692\" y=\"1157\" type=\"line\"/>\n      <point x=\"508\" y=\"1157\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F9\"/>\n  <note>\nuni25F9\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1099\" y=\"507\" type=\"line\"/>\n      <point x=\"447\" y=\"1159\" type=\"line\"/>\n      <point x=\"356\" y=\"1018\" type=\"line\"/>\n      <point x=\"1056\" y=\"1018\" type=\"line\"/>\n      <point x=\"908\" y=\"1166\" type=\"line\"/>\n      <point x=\"908\" y=\"466\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperSevenEighthsBlock\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperSevenEighthsBlock.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperThreeEighthsBlock\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperThreeEighthsBlock.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperlefttolowerrightF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperlefttolowerrightFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A7\"/>\n  <note>\nuni25A7\n</note>\n  <outline>\n    <contour>\n      <point x=\"129\" y=\"1063\" type=\"line\"/>\n      <point x=\"969\" y=\"223\" type=\"line\"/>\n      <point x=\"1087\" y=\"351\" type=\"line\"/>\n      <point x=\"257\" y=\"1181\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"183\" y=\"682\" type=\"line\"/>\n      <point x=\"586\" y=\"279\" type=\"line\"/>\n      <point x=\"815\" y=\"279\" type=\"line\"/>\n      <point x=\"183\" y=\"911\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"409\" y=\"1127\" type=\"line\"/>\n      <point x=\"1063\" y=\"472\" type=\"line\"/>\n      <point x=\"1063\" y=\"718\" type=\"line\"/>\n      <point x=\"637\" y=\"1127\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upperrighttolowerleftF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperrighttolowerleftFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A8\"/>\n  <note>\nuni25A8\n</note>\n  <outline>\n    <contour>\n      <point x=\"1084\" y=\"1063\" type=\"line\"/>\n      <point x=\"957\" y=\"1181\" type=\"line\"/>\n      <point x=\"126\" y=\"351\" type=\"line\"/>\n      <point x=\"244\" y=\"223\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1030\" y=\"682\" type=\"line\"/>\n      <point x=\"1030\" y=\"911\" type=\"line\"/>\n      <point x=\"398\" y=\"279\" type=\"line\"/>\n      <point x=\"627\" y=\"279\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"805\" y=\"1127\" type=\"line\"/>\n      <point x=\"576\" y=\"1127\" type=\"line\"/>\n      <point x=\"150\" y=\"718\" type=\"line\"/>\n      <point x=\"150\" y=\"472\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilon-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilon-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"028A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1059\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"366\" y=\"854\" type=\"line\"/>\n      <point x=\"366\" y=\"779\" type=\"line\"/>\n      <point x=\"164\" y=\"746\"/>\n      <point x=\"29\" y=\"559\"/>\n      <point x=\"29\" y=\"372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"29\" y=\"129\"/>\n      <point x=\"204\" y=\"-15\"/>\n      <point x=\"501\" y=\"-15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"-15\"/>\n      <point x=\"1129\" y=\"195\"/>\n      <point x=\"1129\" y=\"511\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1129\" y=\"628\"/>\n      <point x=\"1075\" y=\"751\"/>\n      <point x=\"950\" y=\"777\" type=\"curve\"/>\n      <point x=\"950\" y=\"848\" type=\"line\"/>\n      <point x=\"710\" y=\"810\" type=\"line\"/>\n      <point x=\"802\" y=\"789\"/>\n      <point x=\"863\" y=\"716\"/>\n      <point x=\"863\" y=\"580\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"377\"/>\n      <point x=\"738\" y=\"242\"/>\n      <point x=\"549\" y=\"242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"406\" y=\"242\"/>\n      <point x=\"322\" y=\"309\"/>\n      <point x=\"322\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"322\" y=\"613\"/>\n      <point x=\"440\" y=\"773\"/>\n      <point x=\"614\" y=\"810\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"1059\" type=\"line\"/>\n      <point x=\"137\" y=\"810\" type=\"line\"/>\n      <point x=\"614\" y=\"810\" type=\"line\"/>\n      <point x=\"658\" y=\"1059\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"754\" y=\"1059\" type=\"line\"/>\n      <point x=\"710\" y=\"810\" type=\"line\"/>\n      <point x=\"1162\" y=\"810\" type=\"line\"/>\n      <point x=\"1206\" y=\"1059\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C5\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"543\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"-20\"/>\n      <point x=\"989\" y=\"122\"/>\n      <point x=\"1040\" y=\"410\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1154\" y=\"1060\" type=\"line\"/>\n      <point x=\"867\" y=\"1060\" type=\"line\"/>\n      <point x=\"754\" y=\"418\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"298\"/>\n      <point x=\"680\" y=\"237\"/>\n      <point x=\"588\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"237\"/>\n      <point x=\"464\" y=\"298\"/>\n      <point x=\"485\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"720\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"943\"/>\n      <point x=\"471\" y=\"1060\"/>\n      <point x=\"228\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"98\" y=\"1060\" type=\"line\"/>\n      <point x=\"54\" y=\"808\" type=\"line\"/>\n      <point x=\"155\" y=\"808\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"808\"/>\n      <point x=\"260\" y=\"771\"/>\n      <point x=\"242\" y=\"668\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"197\" y=\"410\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"140\"/>\n      <point x=\"279\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilondieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilondieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CB\"/>\n  <outline>\n    <component base=\"upsilon\"/>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilondieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilondieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B0\"/>\n  <outline>\n    <component base=\"upsilon\"/>\n    <component base=\"dieresistonos\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CD\"/>\n  <outline>\n    <component base=\"upsilon\"/>\n    <component base=\"tonos\" xOffset=\"28\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/uring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016F\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"ringcomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ushort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ushort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045E\"/>\n  <outline>\n    <component base=\"u-cy\"/>\n    <component base=\"brevecomb-cy\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ustraight-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ustraight-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04AF\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"374\" y=\"-7\" type=\"line\"/>\n      <point x=\"625\" y=\"3\" type=\"line\"/>\n      <point x=\"1007\" y=\"336\"/>\n      <point x=\"1145\" y=\"644\"/>\n      <point x=\"1174\" y=\"1060\" type=\"curve\"/>\n      <point x=\"896\" y=\"1060\" type=\"line\"/>\n      <point x=\"868\" y=\"732\"/>\n      <point x=\"781\" y=\"519\"/>\n      <point x=\"597\" y=\"296\" type=\"curve\"/>\n      <point x=\"579\" y=\"296\" type=\"line\"/>\n      <point x=\"444\" y=\"1080\" type=\"line\"/>\n      <point x=\"162\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"282\" y=\"-460\" type=\"line\"/>\n      <point x=\"557\" y=\"-460\" type=\"line\"/>\n      <point x=\"659\" y=\"121\" type=\"line\"/>\n      <point x=\"384\" y=\"121\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ustraightstroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ustraightstroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B1\"/>\n  <outline>\n    <contour>\n      <point x=\"56\" y=\"-224\" type=\"line\"/>\n      <point x=\"861\" y=\"-224\" type=\"line\"/>\n      <point x=\"901\" y=\"0\" type=\"line\"/>\n      <point x=\"96\" y=\"0\" type=\"line\"/>\n    </contour>\n    <component base=\"ustraight-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>ustraight-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/utilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"utilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0169\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"tildecomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/v.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"v\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0076\"/>\n  <guideline x=\"120\" y=\"70\" angle=\"0\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"267\" y=\"0\" type=\"line\"/>\n      <point x=\"586\" y=\"0\" type=\"line\"/>\n      <point x=\"943\" y=\"272\"/>\n      <point x=\"1127\" y=\"624\"/>\n      <point x=\"1144\" y=\"1060\" type=\"curve\"/>\n      <point x=\"867\" y=\"1060\" type=\"line\"/>\n      <point x=\"855\" y=\"732\"/>\n      <point x=\"744\" y=\"467\"/>\n      <point x=\"528\" y=\"258\" type=\"curve\"/>\n      <point x=\"506\" y=\"258\" type=\"line\"/>\n      <point x=\"424\" y=\"1080\" type=\"line\"/>\n      <point x=\"142\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ve-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0432\"/>\n  <anchor x=\"507\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"772\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"290\" y=\"516\" type=\"line\"/>\n      <point x=\"774\" y=\"566\"/>\n      <point x=\"1204\" y=\"766\"/>\n      <point x=\"1204\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1204\" y=\"1347\"/>\n      <point x=\"1099\" y=\"1520\"/>\n      <point x=\"810\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"581\" y=\"1520\"/>\n      <point x=\"414\" y=\"1412\"/>\n      <point x=\"303\" y=\"1236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"187\" y=\"1052\"/>\n      <point x=\"124\" y=\"810\"/>\n      <point x=\"124\" y=\"533\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"171\"/>\n      <point x=\"238\" y=\"-20\"/>\n      <point x=\"577\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"-20\"/>\n      <point x=\"1091\" y=\"154\"/>\n      <point x=\"1091\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"541\"/>\n      <point x=\"1003\" y=\"641\"/>\n      <point x=\"870\" y=\"642\" type=\"curve\"/>\n      <point x=\"870\" y=\"693\" type=\"line\"/>\n      <point x=\"630\" y=\"635\" type=\"line\"/>\n      <point x=\"751\" y=\"615\"/>\n      <point x=\"820\" y=\"559\"/>\n      <point x=\"820\" y=\"465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"317\"/>\n      <point x=\"725\" y=\"237\"/>\n      <point x=\"591\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"237\"/>\n      <point x=\"387\" y=\"318\"/>\n      <point x=\"387\" y=\"501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"713\"/>\n      <point x=\"431\" y=\"939\"/>\n      <point x=\"518\" y=\"1088\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"1196\"/>\n      <point x=\"670\" y=\"1263\"/>\n      <point x=\"791\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"1263\"/>\n      <point x=\"931\" y=\"1218\"/>\n      <point x=\"931\" y=\"1137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"931\" y=\"902\"/>\n      <point x=\"642\" y=\"761\"/>\n      <point x=\"290\" y=\"748\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ve-cy.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-cy.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"582\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"-20\"/>\n      <point x=\"1106\" y=\"196\"/>\n      <point x=\"1106\" y=\"446\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"589\"/>\n      <point x=\"1019\" y=\"681\"/>\n      <point x=\"892\" y=\"722\" type=\"curve\"/>\n      <point x=\"654\" y=\"665\" type=\"line\"/>\n      <point x=\"769\" y=\"635\"/>\n      <point x=\"839\" y=\"600\"/>\n      <point x=\"839\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"358\"/>\n      <point x=\"751\" y=\"237\"/>\n      <point x=\"611\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"237\"/>\n      <point x=\"441\" y=\"307\"/>\n      <point x=\"441\" y=\"498\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"622\"/>\n      <point x=\"460\" y=\"811\"/>\n      <point x=\"500\" y=\"954\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"1119\"/>\n      <point x=\"630\" y=\"1263\"/>\n      <point x=\"808\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"1263\"/>\n      <point x=\"941\" y=\"1218\"/>\n      <point x=\"941\" y=\"1139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"826\"/>\n      <point x=\"397\" y=\"680\"/>\n      <point x=\"68\" y=\"647\" type=\"curve\"/>\n      <point x=\"81\" y=\"407\" type=\"line\"/>\n      <point x=\"546\" y=\"462\"/>\n      <point x=\"1210\" y=\"683\"/>\n      <point x=\"1210\" y=\"1163\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1210\" y=\"1348\"/>\n      <point x=\"1115\" y=\"1520\"/>\n      <point x=\"833\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"1520\"/>\n      <point x=\"326\" y=\"1300\"/>\n      <point x=\"245\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"208\" y=\"877\"/>\n      <point x=\"181\" y=\"683\"/>\n      <point x=\"181\" y=\"515\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"181\" y=\"218\"/>\n      <point x=\"266\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/vectorO_rC_rossP_roduct.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vectorOrCrossProduct\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2A2F\"/>\n  <outline>\n    <component base=\"multiply\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/venus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"venus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2640\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"520\"/>\n      <point x=\"1172\" y=\"731\"/>\n      <point x=\"1172\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1172\" y=\"1283\"/>\n      <point x=\"1007\" y=\"1440\"/>\n      <point x=\"759\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"1440\"/>\n      <point x=\"187\" y=\"1229\"/>\n      <point x=\"187\" y=\"913\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"187\" y=\"677\"/>\n      <point x=\"351\" y=\"520\"/>\n    </contour>\n    <contour>\n      <point x=\"99\" y=\"157\" type=\"line\"/>\n      <point x=\"974\" y=\"157\" type=\"line\"/>\n      <point x=\"1016\" y=\"397\" type=\"line\"/>\n      <point x=\"141\" y=\"397\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"374\" y=\"0\" type=\"line\"/>\n      <point x=\"638\" y=\"0\" type=\"line\"/>\n      <point x=\"740\" y=\"580\" type=\"line\"/>\n      <point x=\"476\" y=\"580\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"642\" y=\"773\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"773\"/>\n      <point x=\"465\" y=\"833\"/>\n      <point x=\"465\" y=\"923\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"1082\"/>\n      <point x=\"565\" y=\"1188\"/>\n      <point x=\"715\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"1188\"/>\n      <point x=\"894\" y=\"1120\"/>\n      <point x=\"894\" y=\"1018\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"871\"/>\n      <point x=\"793\" y=\"773\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalB_isectingL_ineW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalBisectingLineWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EB\"/>\n  <note>\nuni25EB\n</note>\n  <outline>\n    <contour>\n      <point x=\"708\" y=\"219\" type=\"line\"/>\n      <point x=\"708\" y=\"1201\" type=\"line\"/>\n      <point x=\"492\" y=\"1201\" type=\"line\"/>\n      <point x=\"492\" y=\"219\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalF_illC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalFillCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CD\"/>\n  <note>\nuni25CD\n</note>\n  <outline>\n    <contour>\n      <point x=\"395\" y=\"274\" type=\"line\"/>\n      <point x=\"562\" y=\"274\" type=\"line\"/>\n      <point x=\"562\" y=\"1168\" type=\"line\"/>\n      <point x=\"395\" y=\"1169\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"638\" y=\"274\" type=\"line\"/>\n      <point x=\"804\" y=\"274\" type=\"line\"/>\n      <point x=\"804\" y=\"1168\" type=\"line\"/>\n      <point x=\"638\" y=\"1169\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A5\"/>\n  <note>\nuni25A5\n</note>\n  <outline>\n    <contour>\n      <point x=\"567\" y=\"259\" type=\"line\"/>\n      <point x=\"567\" y=\"1161\" type=\"line\"/>\n      <point x=\"383\" y=\"1161\" type=\"line\"/>\n      <point x=\"383\" y=\"259\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"817\" y=\"259\" type=\"line\"/>\n      <point x=\"817\" y=\"1161\" type=\"line\"/>\n      <point x=\"633\" y=\"1161\" type=\"line\"/>\n      <point x=\"633\" y=\"259\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" xScale=\"0\" xyScale=\"1\" yxScale=\"-1\" yScale=\"0\" xOffset=\"1310\" yOffset=\"110\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB70\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-2.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB71\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-3.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB72\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-4.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB73\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-5.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB74\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-6.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB75\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-7.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalT_abulationC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalTabulationControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240B\"/>\n  <outline>\n    <component base=\"V.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>V.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalT_abulationC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalTabulationControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"589\" y=\"180\" type=\"line\"/>\n      <point x=\"611\" y=\"180\" type=\"line\"/>\n      <point x=\"1126\" y=\"1234\" type=\"line\"/>\n      <point x=\"876\" y=\"1234\" type=\"line\"/>\n      <point x=\"749\" y=\"687\" type=\"line\"/>\n      <point x=\"451\" y=\"687\" type=\"line\"/>\n      <point x=\"324\" y=\"1234\" type=\"line\"/>\n      <point x=\"74\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"518\" type=\"line\"/>\n      <point x=\"731\" y=\"518\" type=\"line\"/>\n      <point x=\"731\" y=\"1234\" type=\"line\"/>\n      <point x=\"469\" y=\"1234\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/vhook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"028B\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"503\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"-20\"/>\n      <point x=\"1002\" y=\"141\"/>\n      <point x=\"1057\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1115\" y=\"780\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1147\" y=\"964\"/>\n      <point x=\"1053\" y=\"1060\"/>\n      <point x=\"840\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"1060\" type=\"line\"/>\n      <point x=\"636\" y=\"808\" type=\"line\"/>\n      <point x=\"733\" y=\"808\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"808\"/>\n      <point x=\"838\" y=\"771\"/>\n      <point x=\"820\" y=\"668\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"458\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"313\"/>\n      <point x=\"676\" y=\"237\"/>\n      <point x=\"548\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"237\"/>\n      <point x=\"366\" y=\"313\"/>\n      <point x=\"391\" y=\"458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"1060\" type=\"line\"/>\n      <point x=\"222\" y=\"1060\" type=\"line\"/>\n      <point x=\"115\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"60\" y=\"141\"/>\n      <point x=\"194\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/vturned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"028C\"/>\n  <anchor x=\"507\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"694\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"893\" y=\"1060\" type=\"line\"/>\n      <point x=\"574\" y=\"1060\" type=\"line\"/>\n      <point x=\"223\" y=\"788\"/>\n      <point x=\"43\" y=\"436\"/>\n      <point x=\"26\" y=\"0\" type=\"curve\"/>\n      <point x=\"303\" y=\"0\" type=\"line\"/>\n      <point x=\"315\" y=\"328\"/>\n      <point x=\"422\" y=\"593\"/>\n      <point x=\"632\" y=\"802\" type=\"curve\"/>\n      <point x=\"654\" y=\"802\" type=\"line\"/>\n      <point x=\"756\" y=\"0\" type=\"line\"/>\n      <point x=\"1038\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/w.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"w\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0077\"/>\n  <guideline x=\"110\" y=\"70\" angle=\"0\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"613\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"627\" y=\"0\" type=\"line\"/>\n      <point x=\"806\" y=\"0\" type=\"line\"/>\n      <point x=\"1032\" y=\"252\"/>\n      <point x=\"1170\" y=\"604\"/>\n      <point x=\"1180\" y=\"1060\" type=\"curve\"/>\n      <point x=\"909\" y=\"1060\" type=\"line\"/>\n      <point x=\"905\" y=\"723\"/>\n      <point x=\"844\" y=\"458\"/>\n      <point x=\"754\" y=\"258\" type=\"curve\"/>\n      <point x=\"736\" y=\"258\" type=\"line\"/>\n      <point x=\"724\" y=\"1070\" type=\"line\"/>\n      <point x=\"507\" y=\"1060\" type=\"line\"/>\n      <point x=\"521\" y=\"466\" type=\"line\"/>\n      <point x=\"611\" y=\"496\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"632\" y=\"686\" type=\"line\"/>\n      <point x=\"409\" y=\"258\" type=\"line\"/>\n      <point x=\"391\" y=\"258\" type=\"line\"/>\n      <point x=\"354\" y=\"1070\" type=\"line\"/>\n      <point x=\"77\" y=\"1060\" type=\"line\"/>\n      <point x=\"172\" y=\"0\" type=\"line\"/>\n      <point x=\"406\" y=\"0\" type=\"line\"/>\n      <point x=\"603\" y=\"375\" type=\"line\"/>\n      <point x=\"566\" y=\"351\" type=\"line\"/>\n      <point x=\"662\" y=\"351\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/w_w_w.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"w_w_w.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"795\" y=\"384\" angle=\"90\"/>\n  <guideline x=\"839\" y=\"384\" angle=\"90\"/>\n  <outline>\n    <contour>\n      <point x=\"307\" y=\"0\" type=\"line\"/>\n      <point x=\"558\" y=\"0\" type=\"line\"/>\n      <point x=\"930\" y=\"561\" type=\"line\"/>\n      <point x=\"758\" y=\"352\" type=\"line\"/>\n      <point x=\"886\" y=\"352\" type=\"line\"/>\n      <point x=\"858\" y=\"678\" type=\"line\"/>\n      <point x=\"557\" y=\"258\" type=\"line\"/>\n      <point x=\"535\" y=\"258\" type=\"line\"/>\n      <point x=\"404\" y=\"1070\" type=\"line\"/>\n      <point x=\"127\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"903\" y=\"0\" type=\"line\"/>\n      <point x=\"1065\" y=\"0\" type=\"line\"/>\n      <point x=\"1323\" y=\"352\" type=\"line\"/>\n      <point x=\"1383\" y=\"352\" type=\"line\"/>\n      <point x=\"1392\" y=\"678\" type=\"line\"/>\n      <point x=\"1079\" y=\"257\" type=\"line\"/>\n      <point x=\"1058\" y=\"257\" type=\"line\"/>\n      <point x=\"952\" y=\"920\" type=\"line\"/>\n      <point x=\"685\" y=\"910\" type=\"line\"/>\n      <point x=\"763\" y=\"424\" type=\"line\"/>\n      <point x=\"814\" y=\"499\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1430\" y=\"0\" type=\"line\"/>\n      <point x=\"1592\" y=\"0\" type=\"line\"/>\n      <point x=\"1850\" y=\"352\" type=\"line\"/>\n      <point x=\"1910\" y=\"352\" type=\"line\"/>\n      <point x=\"1919\" y=\"678\" type=\"line\"/>\n      <point x=\"1606\" y=\"257\" type=\"line\"/>\n      <point x=\"1585\" y=\"257\" type=\"line\"/>\n      <point x=\"1479\" y=\"920\" type=\"line\"/>\n      <point x=\"1212\" y=\"910\" type=\"line\"/>\n      <point x=\"1290\" y=\"424\" type=\"line\"/>\n      <point x=\"1341\" y=\"499\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1957\" y=\"0\" type=\"line\"/>\n      <point x=\"2119\" y=\"0\" type=\"line\"/>\n      <point x=\"2377\" y=\"352\" type=\"line\"/>\n      <point x=\"2437\" y=\"352\" type=\"line\"/>\n      <point x=\"2446\" y=\"678\" type=\"line\"/>\n      <point x=\"2133\" y=\"257\" type=\"line\"/>\n      <point x=\"2112\" y=\"257\" type=\"line\"/>\n      <point x=\"2006\" y=\"920\" type=\"line\"/>\n      <point x=\"1739\" y=\"910\" type=\"line\"/>\n      <point x=\"1817\" y=\"424\" type=\"line\"/>\n      <point x=\"1868\" y=\"499\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2484\" y=\"0\" type=\"line\"/>\n      <point x=\"2646\" y=\"0\" type=\"line\"/>\n      <point x=\"2894\" y=\"352\" type=\"line\"/>\n      <point x=\"2954\" y=\"352\" type=\"line\"/>\n      <point x=\"2963\" y=\"678\" type=\"line\"/>\n      <point x=\"2660\" y=\"257\" type=\"line\"/>\n      <point x=\"2639\" y=\"257\" type=\"line\"/>\n      <point x=\"2533\" y=\"920\" type=\"line\"/>\n      <point x=\"2266\" y=\"910\" type=\"line\"/>\n      <point x=\"2344\" y=\"424\" type=\"line\"/>\n      <point x=\"2395\" y=\"499\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"3001\" y=\"0\" type=\"line\"/>\n      <point x=\"3229\" y=\"0\" type=\"line\"/>\n      <point x=\"3467\" y=\"252\"/>\n      <point x=\"3623\" y=\"604\"/>\n      <point x=\"3633\" y=\"1060\" type=\"curve\"/>\n      <point x=\"3362\" y=\"1060\" type=\"line\"/>\n      <point x=\"3358\" y=\"723\"/>\n      <point x=\"3279\" y=\"458\"/>\n      <point x=\"3177\" y=\"257\" type=\"curve\"/>\n      <point x=\"3156\" y=\"257\" type=\"line\"/>\n      <point x=\"3060\" y=\"920\" type=\"line\"/>\n      <point x=\"2793\" y=\"910\" type=\"line\"/>\n      <point x=\"2871\" y=\"424\" type=\"line\"/>\n      <point x=\"2912\" y=\"499\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/wacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E83\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"acutecomb\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/wcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0175\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/wdieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wdieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E85\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/wgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E81\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"gravecomb\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E6\"/>\n  <note>\nopenbullet\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"414\"/>\n      <point x=\"896\" y=\"532\"/>\n      <point x=\"896\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"888\"/>\n      <point x=\"778\" y=\"1006\"/>\n      <point x=\"600\" y=\"1006\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"1006\"/>\n      <point x=\"304\" y=\"888\"/>\n      <point x=\"304\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"532\"/>\n      <point x=\"422\" y=\"414\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"606\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"537\" y=\"606\"/>\n      <point x=\"496\" y=\"647\"/>\n      <point x=\"496\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"773\"/>\n      <point x=\"537\" y=\"814\"/>\n      <point x=\"600\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"663\" y=\"814\"/>\n      <point x=\"704\" y=\"773\"/>\n      <point x=\"704\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"647\"/>\n      <point x=\"663\" y=\"606\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CB\"/>\n  <note>\ncircle\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"185\"/>\n      <point x=\"1125\" y=\"395\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1025\"/>\n      <point x=\"915\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"1235\"/>\n      <point x=\"75\" y=\"1025\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"395\"/>\n      <point x=\"285\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"418\"/>\n      <point x=\"308\" y=\"535\"/>\n      <point x=\"308\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"885\"/>\n      <point x=\"425\" y=\"1002\"/>\n      <point x=\"600\" y=\"1002\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"1002\"/>\n      <point x=\"892\" y=\"885\"/>\n      <point x=\"892\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"535\"/>\n      <point x=\"775\" y=\"418\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C7\"/>\n  <note>\nuni25C7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"397\" type=\"line\"/>\n      <point x=\"287\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1023\" type=\"line\"/>\n      <point x=\"913\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B21\"/>\n  <note>\nuni2B21\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1120\" y=\"410\" type=\"line\"/>\n      <point x=\"1120\" y=\"1010\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"80\" y=\"1010\" type=\"line\"/>\n      <point x=\"80\" y=\"410\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"670\" y=\"317\" type=\"line\"/>\n      <point x=\"160\" y=\"613\" type=\"line\"/>\n      <point x=\"305\" y=\"416\" type=\"line\"/>\n      <point x=\"305\" y=\"1004\" type=\"line\"/>\n      <point x=\"160\" y=\"807\" type=\"line\"/>\n      <point x=\"670\" y=\"1103\" type=\"line\"/>\n      <point x=\"530\" y=\"1103\" type=\"line\"/>\n      <point x=\"1040\" y=\"807\" type=\"line\"/>\n      <point x=\"895\" y=\"1004\" type=\"line\"/>\n      <point x=\"895\" y=\"416\" type=\"line\"/>\n      <point x=\"1040\" y=\"613\" type=\"line\"/>\n      <point x=\"530\" y=\"317\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteH_orizontalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteHorizontalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2D\"/>\n  <note>\nuni2B2D\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"395\"/>\n      <point x=\"1125\" y=\"520\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"900\"/>\n      <point x=\"916\" y=\"1025\"/>\n      <point x=\"600\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1025\"/>\n      <point x=\"75\" y=\"900\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"520\"/>\n      <point x=\"284\" y=\"395\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"578\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"578\"/>\n      <point x=\"300\" y=\"631\"/>\n      <point x=\"300\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"789\"/>\n      <point x=\"419\" y=\"842\"/>\n      <point x=\"600\" y=\"842\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"842\"/>\n      <point x=\"900\" y=\"789\"/>\n      <point x=\"900\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"631\"/>\n      <point x=\"781\" y=\"578\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteI_nB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteInBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A3\"/>\n  <note>\nuni25A3\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteL_argeS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteLargeSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1C\"/>\n  <note>\nuni2B1C\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteL_owerL_eftQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteLowerLeftQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F1\"/>\n  <note>\nuni25F1\n</note>\n  <outline>\n    <contour>\n      <point x=\"130\" y=\"802\" type=\"line\"/>\n      <point x=\"130\" y=\"618\" type=\"line\"/>\n      <point x=\"509\" y=\"618\" type=\"line\"/>\n      <point x=\"509\" y=\"239\" type=\"line\"/>\n      <point x=\"693\" y=\"239\" type=\"line\"/>\n      <point x=\"693\" y=\"802\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteL_owerR_ightQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteLowerRightQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F2\"/>\n  <note>\nuni25F2\n</note>\n  <outline>\n    <contour>\n      <point x=\"1070\" y=\"802\" type=\"line\"/>\n      <point x=\"507\" y=\"802\" type=\"line\"/>\n      <point x=\"507\" y=\"239\" type=\"line\"/>\n      <point x=\"691\" y=\"239\" type=\"line\"/>\n      <point x=\"691\" y=\"618\" type=\"line\"/>\n      <point x=\"1070\" y=\"618\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteM_ediumD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteMediumDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B26\"/>\n  <note>\nuni2B26\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"322\" type=\"line\"/>\n      <point x=\"988\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\n      <point x=\"212\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"682\" y=\"502\" type=\"line\"/>\n      <point x=\"392\" y=\"792\" type=\"line\"/>\n      <point x=\"392\" y=\"628\" type=\"line\"/>\n      <point x=\"682\" y=\"918\" type=\"line\"/>\n      <point x=\"518\" y=\"918\" type=\"line\"/>\n      <point x=\"808\" y=\"628\" type=\"line\"/>\n      <point x=\"808\" y=\"792\" type=\"line\"/>\n      <point x=\"518\" y=\"502\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteM_ediumL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteMediumLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B28\"/>\n  <note>\nuni2B28\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"256\" type=\"line\"/>\n      <point x=\"873\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1164\" type=\"line\"/>\n      <point x=\"328\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"659\" y=\"486\" type=\"line\"/>\n      <point x=\"477\" y=\"787\" type=\"line\"/>\n      <point x=\"477\" y=\"633\" type=\"line\"/>\n      <point x=\"659\" y=\"934\" type=\"line\"/>\n      <point x=\"541\" y=\"934\" type=\"line\"/>\n      <point x=\"723\" y=\"633\" type=\"line\"/>\n      <point x=\"723\" y=\"787\" type=\"line\"/>\n      <point x=\"541\" y=\"486\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteP_arallelogram.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteParallelogram\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B1\"/>\n  <note>\nuni25B1\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1030\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"170\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"234\" y=\"482\" type=\"line\"/>\n      <point x=\"363\" y=\"938\" type=\"line\"/>\n      <point x=\"202\" y=\"802\" type=\"line\"/>\n      <point x=\"1083\" y=\"802\" type=\"line\"/>\n      <point x=\"966\" y=\"938\" type=\"line\"/>\n      <point x=\"837\" y=\"482\" type=\"line\"/>\n      <point x=\"998\" y=\"618\" type=\"line\"/>\n      <point x=\"117\" y=\"618\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteP_entagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whitePentagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B20\"/>\n  <note>\nuni2B20\n</note>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"168\" type=\"line\"/>\n      <point x=\"970\" y=\"168\" type=\"line\"/>\n      <point x=\"1200\" y=\"874\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"874\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"364\" y=\"368\" type=\"line\"/>\n      <point x=\"226\" y=\"800\" type=\"line\"/>\n      <point x=\"600\" y=\"1075\" type=\"line\"/>\n      <point x=\"974\" y=\"800\" type=\"line\"/>\n      <point x=\"836\" y=\"368\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AD\"/>\n  <note>\nuni25AD\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"0\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"208\" y=\"618\" type=\"line\"/>\n      <point x=\"208\" y=\"802\" type=\"line\"/>\n      <point x=\"992\" y=\"802\" type=\"line\"/>\n      <point x=\"992\" y=\"618\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteR_oundedC_ornersS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteRoundedCornersSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A2\"/>\n  <note>\nuni25A2\n</note>\n  <outline>\n    <contour>\n      <point x=\"331\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"185\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"185\"/>\n      <point x=\"1125\" y=\"288\"/>\n      <point x=\"1125\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"979\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1132\"/>\n      <point x=\"1022\" y=\"1235\"/>\n      <point x=\"869\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"1235\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"178\" y=\"1235\"/>\n      <point x=\"75\" y=\"1132\"/>\n      <point x=\"75\" y=\"979\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"441\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"288\"/>\n      <point x=\"178\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"388\" y=\"393\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"393\"/>\n      <point x=\"283\" y=\"434\"/>\n      <point x=\"283\" y=\"498\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"922\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"986\"/>\n      <point x=\"324\" y=\"1027\"/>\n      <point x=\"388\" y=\"1027\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"1027\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"1027\"/>\n      <point x=\"917\" y=\"986\"/>\n      <point x=\"917\" y=\"922\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"498\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"434\"/>\n      <point x=\"876\" y=\"393\"/>\n      <point x=\"812\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteS_mallL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSmallLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2B\"/>\n  <note>\nuni2B2B\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"402\" type=\"line\"/>\n      <point x=\"785\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1019\" type=\"line\"/>\n      <point x=\"415\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"621\" type=\"line\"/>\n      <point x=\"557\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"799\" type=\"line\"/>\n      <point x=\"644\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AB\"/>\n  <note>\nH18551\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"1010\" type=\"line\"/>\n      <point x=\"300\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"483\" y=\"593\" type=\"line\"/>\n      <point x=\"483\" y=\"827\" type=\"line\"/>\n      <point x=\"717\" y=\"827\" type=\"line\"/>\n      <point x=\"717\" y=\"593\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteS_milingF_ace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSmilingFace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263A\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"957\" y=\"110\"/>\n      <point x=\"1244\" y=\"394\"/>\n      <point x=\"1244\" y=\"820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1244\" y=\"1114\"/>\n      <point x=\"1042\" y=\"1310\"/>\n      <point x=\"738\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"1310\"/>\n      <point x=\"21\" y=\"1026\"/>\n      <point x=\"21\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"21\" y=\"306\"/>\n      <point x=\"223\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"561\" y=\"337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"337\"/>\n      <point x=\"909\" y=\"435\"/>\n      <point x=\"935\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"634\"/>\n      <point x=\"927\" y=\"651\"/>\n      <point x=\"881\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"651\"/>\n      <point x=\"508\" y=\"651\"/>\n      <point x=\"375\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"329\" y=\"651\"/>\n      <point x=\"305\" y=\"631\"/>\n      <point x=\"297\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"271\" y=\"435\"/>\n      <point x=\"375\" y=\"337\"/>\n    </contour>\n    <contour>\n      <point x=\"467\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"722\"/>\n      <point x=\"609\" y=\"779\"/>\n      <point x=\"609\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"951\"/>\n      <point x=\"552\" y=\"1008\"/>\n      <point x=\"467\" y=\"1008\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"1008\"/>\n      <point x=\"324\" y=\"951\"/>\n      <point x=\"324\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"779\"/>\n      <point x=\"381\" y=\"722\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"277\"/>\n      <point x=\"190\" y=\"406\"/>\n      <point x=\"190\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"190\" y=\"926\"/>\n      <point x=\"397\" y=\"1143\"/>\n      <point x=\"707\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"1143\"/>\n      <point x=\"1073\" y=\"1014\"/>\n      <point x=\"1073\" y=\"820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1073\" y=\"494\"/>\n      <point x=\"866\" y=\"277\"/>\n    </contour>\n    <contour>\n      <point x=\"853\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"939\" y=\"722\"/>\n      <point x=\"996\" y=\"779\"/>\n      <point x=\"996\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"996\" y=\"951\"/>\n      <point x=\"939\" y=\"1008\"/>\n      <point x=\"853\" y=\"1008\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"1008\"/>\n      <point x=\"711\" y=\"951\"/>\n      <point x=\"711\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"779\"/>\n      <point x=\"768\" y=\"722\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A1\"/>\n  <note>\nH22073\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"317\" y=\"427\" type=\"line\"/>\n      <point x=\"317\" y=\"993\" type=\"line\"/>\n      <point x=\"883\" y=\"993\" type=\"line\"/>\n      <point x=\"883\" y=\"427\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteU_pperL_eftQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteUpperLeftQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F0\"/>\n  <note>\nuni25F0\n</note>\n  <outline>\n    <contour>\n      <point x=\"130\" y=\"618\" type=\"line\"/>\n      <point x=\"693\" y=\"618\" type=\"line\"/>\n      <point x=\"693\" y=\"1181\" type=\"line\"/>\n      <point x=\"509\" y=\"1181\" type=\"line\"/>\n      <point x=\"509\" y=\"802\" type=\"line\"/>\n      <point x=\"130\" y=\"802\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteU_pperR_ightQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteUpperRightQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F3\"/>\n  <note>\nuni25F3\n</note>\n  <outline>\n    <contour>\n      <point x=\"1070\" y=\"618\" type=\"line\"/>\n      <point x=\"1070\" y=\"802\" type=\"line\"/>\n      <point x=\"691\" y=\"802\" type=\"line\"/>\n      <point x=\"691\" y=\"1181\" type=\"line\"/>\n      <point x=\"507\" y=\"1181\" type=\"line\"/>\n      <point x=\"507\" y=\"618\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>whiteSquare</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteV_erticalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteVerticalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2F\"/>\n  <note>\nuni2B2F\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"185\"/>\n      <point x=\"915\" y=\"394\"/>\n      <point x=\"915\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"1026\"/>\n      <point x=\"790\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1235\"/>\n      <point x=\"285\" y=\"1026\"/>\n      <point x=\"285\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"394\"/>\n      <point x=\"410\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"402\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"402\"/>\n      <point x=\"485\" y=\"524\"/>\n      <point x=\"485\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"896\"/>\n      <point x=\"531\" y=\"1018\"/>\n      <point x=\"600\" y=\"1018\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"1018\"/>\n      <point x=\"715\" y=\"896\"/>\n      <point x=\"715\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"524\"/>\n      <point x=\"669\" y=\"402\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteV_erticalR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteVerticalRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AF\"/>\n  <note>\nuni25AF\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"1310\" type=\"line\"/>\n      <point x=\"300\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"318\" type=\"line\"/>\n      <point x=\"508\" y=\"1102\" type=\"line\"/>\n      <point x=\"692\" y=\"1102\" type=\"line\"/>\n      <point x=\"692\" y=\"318\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteV_erysmallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteVerysmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1E\"/>\n  <note>\nuni2B1E\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"542\" y=\"652\" type=\"line\"/>\n      <point x=\"542\" y=\"768\" type=\"line\"/>\n      <point x=\"658\" y=\"768\" type=\"line\"/>\n      <point x=\"658\" y=\"652\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/wmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02B7\"/>\n  <guideline x=\"863\" y=\"790\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"790\" type=\"line\"/>\n      <point x=\"949\" y=\"790\" type=\"line\"/>\n      <point x=\"1075\" y=\"940\"/>\n      <point x=\"1152\" y=\"1150\"/>\n      <point x=\"1157\" y=\"1421\" type=\"curve\"/>\n      <point x=\"920\" y=\"1421\" type=\"line\"/>\n      <point x=\"917\" y=\"1222\"/>\n      <point x=\"877\" y=\"1065\"/>\n      <point x=\"822\" y=\"946\" type=\"curve\"/>\n      <point x=\"812\" y=\"946\" type=\"line\"/>\n      <point x=\"786\" y=\"1427\" type=\"line\"/>\n      <point x=\"652\" y=\"1421\" type=\"line\"/>\n      <point x=\"682\" y=\"1015\" type=\"line\"/>\n      <point x=\"718\" y=\"1091\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"414\" y=\"790\" type=\"line\"/>\n      <point x=\"640\" y=\"790\" type=\"line\"/>\n      <point x=\"744\" y=\"1061\" type=\"line\"/>\n      <point x=\"696\" y=\"980\" type=\"line\"/>\n      <point x=\"753\" y=\"980\" type=\"line\"/>\n      <point x=\"736\" y=\"1210\" type=\"line\"/>\n      <point x=\"621\" y=\"946\" type=\"line\"/>\n      <point x=\"610\" y=\"946\" type=\"line\"/>\n      <point x=\"562\" y=\"1427\" type=\"line\"/>\n      <point x=\"325\" y=\"1421\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/won.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"won\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A9\"/>\n  <outline>\n    <contour>\n      <point x=\"2\" y=\"538\" type=\"line\"/>\n      <point x=\"1201\" y=\"538\" type=\"line\"/>\n      <point x=\"1239\" y=\"759\" type=\"line\"/>\n      <point x=\"40\" y=\"759\" type=\"line\"/>\n    </contour>\n    <component base=\"W\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/x.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"x\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0078\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"188\" y=\"-51\" type=\"line\"/>\n      <point x=\"632\" y=\"418\" type=\"line\"/>\n      <point x=\"1167\" y=\"920\" type=\"line\"/>\n      <point x=\"981\" y=\"1110\" type=\"line\"/>\n      <point x=\"572\" y=\"650\" type=\"line\"/>\n      <point x=\"12\" y=\"139\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"830\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"-20\"/>\n      <point x=\"976\" y=\"-1\"/>\n      <point x=\"1055\" y=\"44\" type=\"curve\"/>\n      <point x=\"987\" y=\"263\" type=\"line\"/>\n      <point x=\"948\" y=\"245\"/>\n      <point x=\"916\" y=\"237\"/>\n      <point x=\"879\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"237\"/>\n      <point x=\"766\" y=\"277\"/>\n      <point x=\"747\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"668\" y=\"771\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"625\" y=\"987\"/>\n      <point x=\"540\" y=\"1080\"/>\n      <point x=\"371\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"1080\"/>\n      <point x=\"238\" y=\"1064\"/>\n      <point x=\"146\" y=\"1026\" type=\"curve\"/>\n      <point x=\"211\" y=\"801\" type=\"line\"/>\n      <point x=\"250\" y=\"817\"/>\n      <point x=\"283\" y=\"823\"/>\n      <point x=\"322\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"823\"/>\n      <point x=\"408\" y=\"782\"/>\n      <point x=\"429\" y=\"685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"289\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"559\" y=\"74\"/>\n      <point x=\"647\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/x.multiply.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"x.multiply\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"multiply\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/xi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"xi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BE\"/>\n  <anchor x=\"431\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"773\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"495\" y=\"-479\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"-479\"/>\n      <point x=\"993\" y=\"-370\"/>\n      <point x=\"993\" y=\"-133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"993\" y=\"59\"/>\n      <point x=\"880\" y=\"130\"/>\n      <point x=\"632\" y=\"220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"286\"/>\n      <point x=\"396\" y=\"328\"/>\n      <point x=\"396\" y=\"406\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"525\"/>\n      <point x=\"520\" y=\"598\"/>\n      <point x=\"790\" y=\"631\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1013\" y=\"658\" type=\"line\"/>\n      <point x=\"1062\" y=\"936\" type=\"line\"/>\n      <point x=\"817\" y=\"906\" type=\"line\"/>\n      <point x=\"711\" y=\"777\" type=\"line\"/>\n      <point x=\"315\" y=\"737\"/>\n      <point x=\"109\" y=\"593\"/>\n      <point x=\"109\" y=\"357\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"157\"/>\n      <point x=\"204\" y=\"78\"/>\n      <point x=\"515\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"-57\"/>\n      <point x=\"706\" y=\"-70\"/>\n      <point x=\"706\" y=\"-125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"-197\"/>\n      <point x=\"628\" y=\"-223\"/>\n      <point x=\"495\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"-223\"/>\n      <point x=\"367\" y=\"-214\"/>\n      <point x=\"268\" y=\"-193\" type=\"curve\"/>\n      <point x=\"219\" y=\"-449\" type=\"line\"/>\n      <point x=\"343\" y=\"-470\"/>\n      <point x=\"422\" y=\"-479\"/>\n    </contour>\n    <contour>\n      <point x=\"628\" y=\"717\" type=\"line\"/>\n      <point x=\"1062\" y=\"936\" type=\"line\"/>\n      <point x=\"781\" y=\"936\"/>\n      <point x=\"576\" y=\"960\"/>\n      <point x=\"576\" y=\"1072\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"576\" y=\"1181\"/>\n      <point x=\"774\" y=\"1246\"/>\n      <point x=\"1204\" y=\"1284\" type=\"curve\"/>\n      <point x=\"1202\" y=\"1540\" type=\"line\"/>\n      <point x=\"602\" y=\"1480\"/>\n      <point x=\"289\" y=\"1320\"/>\n      <point x=\"289\" y=\"1073\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"909\"/>\n      <point x=\"425\" y=\"799\"/>\n      <point x=\"628\" y=\"799\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/y.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"y\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0079\"/>\n  <anchor x=\"781\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"623\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"3\" y=\"-472\" type=\"line\"/>\n      <point x=\"674\" y=\"-197\"/>\n      <point x=\"1025\" y=\"261\"/>\n      <point x=\"1178\" y=\"1060\" type=\"curve\"/>\n      <point x=\"901\" y=\"1060\" type=\"line\"/>\n      <point x=\"782\" y=\"393\"/>\n      <point x=\"501\" y=\"7\"/>\n      <point x=\"-117\" y=\"-237\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"347\" y=\"1080\" type=\"curve\"/>\n      <point x=\"70\" y=\"1060\" type=\"line\"/>\n      <point x=\"188\" y=\"640\"/>\n      <point x=\"327\" y=\"310\"/>\n      <point x=\"495\" y=\"61\" type=\"curve\"/>\n      <point x=\"722\" y=\"201\" type=\"line\"/>\n      <point x=\"567\" y=\"399\"/>\n      <point x=\"442\" y=\"690\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/yacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FD\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"acutecomb\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ycircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ycircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0177\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ydieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ydieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FF\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ydotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ydotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF5\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"274\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/yen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A5\"/>\n  <outline>\n    <contour>\n      <point x=\"132\" y=\"459\" type=\"line\"/>\n      <point x=\"1044\" y=\"459\" type=\"line\"/>\n      <point x=\"1083\" y=\"681\" type=\"line\"/>\n      <point x=\"706\" y=\"681\" type=\"line\"/>\n      <point x=\"624\" y=\"613\" type=\"line\"/>\n      <point x=\"563\" y=\"681\" type=\"line\"/>\n      <point x=\"171\" y=\"681\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"74\" y=\"133\" type=\"line\"/>\n      <point x=\"986\" y=\"133\" type=\"line\"/>\n      <point x=\"1025\" y=\"354\" type=\"line\"/>\n      <point x=\"113\" y=\"354\" type=\"line\"/>\n    </contour>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/yeru-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeru-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044B\"/>\n  <guideline x=\"525\" y=\"777\" angle=\"0\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"306\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"-20\"/>\n      <point x=\"729\" y=\"244\"/>\n      <point x=\"729\" y=\"521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"703\"/>\n      <point x=\"662\" y=\"810\"/>\n      <point x=\"509\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"810\"/>\n      <point x=\"419\" y=\"799\"/>\n      <point x=\"338\" y=\"745\" type=\"curve\"/>\n      <point x=\"315\" y=\"568\" type=\"line\"/>\n      <point x=\"343\" y=\"592\"/>\n      <point x=\"374\" y=\"603\"/>\n      <point x=\"409\" y=\"603\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"603\"/>\n      <point x=\"485\" y=\"571\"/>\n      <point x=\"485\" y=\"501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"398\"/>\n      <point x=\"426\" y=\"227\"/>\n      <point x=\"343\" y=\"227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"227\"/>\n      <point x=\"279\" y=\"259\"/>\n      <point x=\"279\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"279\" y=\"391\"/>\n      <point x=\"317\" y=\"560\"/>\n      <point x=\"339\" y=\"652\" type=\"curve\"/>\n      <point x=\"373\" y=\"665\" type=\"line\"/>\n      <point x=\"399\" y=\"797\"/>\n      <point x=\"431\" y=\"928\"/>\n      <point x=\"457\" y=\"1060\" type=\"curve\"/>\n      <point x=\"199\" y=\"1060\" type=\"line\"/>\n      <point x=\"120\" y=\"748\"/>\n      <point x=\"43\" y=\"446\"/>\n      <point x=\"43\" y=\"269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"43\" y=\"69\"/>\n      <point x=\"151\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"736\" y=\"0\" type=\"line\"/>\n      <point x=\"1011\" y=\"0\" type=\"line\"/>\n      <point x=\"1198\" y=\"1060\" type=\"line\"/>\n      <point x=\"923\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ygrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ygrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF3\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"gravecomb\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/yhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF7\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"hookabovecomb\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/yi-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yi-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0457\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ymacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ymacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0233\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"macroncomb\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ymod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ymod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02B8\"/>\n  <guideline x=\"863\" y=\"790\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"332\" y=\"506\" type=\"line\"/>\n      <point x=\"728\" y=\"662\"/>\n      <point x=\"1028\" y=\"936\"/>\n      <point x=\"1145\" y=\"1421\" type=\"curve\"/>\n      <point x=\"904\" y=\"1421\" type=\"line\"/>\n      <point x=\"830\" y=\"1052\"/>\n      <point x=\"602\" y=\"822\"/>\n      <point x=\"257\" y=\"689\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"609\" y=\"1433\" type=\"curve\"/>\n      <point x=\"362\" y=\"1421\" type=\"line\"/>\n      <point x=\"418\" y=\"1167\"/>\n      <point x=\"495\" y=\"968\"/>\n      <point x=\"575\" y=\"818\" type=\"curve\"/>\n      <point x=\"801\" y=\"890\" type=\"line\"/>\n      <point x=\"726\" y=\"1012\"/>\n      <point x=\"657\" y=\"1191\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ytilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ytilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF9\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"tildecomb\" xOffset=\"-70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/z.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"z\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007A\"/>\n  <anchor x=\"526\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"601\" y=\"530\" name=\"center\"/>\n  <anchor x=\"663\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1102\" y=\"811\" type=\"line\"/>\n      <point x=\"917\" y=\"972\" type=\"line\"/>\n      <point x=\"100\" y=\"280\" type=\"line\"/>\n      <point x=\"261\" y=\"123\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"993\" y=\"249\" type=\"line\"/>\n      <point x=\"162\" y=\"249\" type=\"line\"/>\n      <point x=\"100\" y=\"280\" type=\"line\"/>\n      <point x=\"121\" y=\"0\" type=\"line\"/>\n      <point x=\"949\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1102\" y=\"811\" type=\"line\"/>\n      <point x=\"1080\" y=\"1060\" type=\"line\"/>\n      <point x=\"264\" y=\"1060\" type=\"line\"/>\n      <point x=\"220\" y=\"811\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017A\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"acutecomb\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017E\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"caroncomb\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017C\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0437\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"458\" y=\"-479\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"-479\"/>\n      <point x=\"1015\" y=\"-327\"/>\n      <point x=\"1022\" y=\"-19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"191\"/>\n      <point x=\"878\" y=\"326\"/>\n      <point x=\"720\" y=\"346\" type=\"curve\"/>\n      <point x=\"333\" y=\"341\" type=\"line\"/>\n      <point x=\"337\" y=\"198\" type=\"line\"/>\n      <point x=\"394\" y=\"198\"/>\n      <point x=\"427\" y=\"199\"/>\n      <point x=\"453\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"619\" y=\"192\"/>\n      <point x=\"744\" y=\"112\"/>\n      <point x=\"744\" y=\"-13\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"-163\"/>\n      <point x=\"608\" y=\"-225\"/>\n      <point x=\"478\" y=\"-225\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"-225\"/>\n      <point x=\"200\" y=\"-129\"/>\n      <point x=\"160\" y=\"-80\" type=\"curve\"/>\n      <point x=\"-25\" y=\"-257\" type=\"line\"/>\n      <point x=\"55\" y=\"-415\"/>\n      <point x=\"254\" y=\"-479\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"198\" type=\"line\"/>\n      <point x=\"714\" y=\"276\" type=\"line\"/>\n      <point x=\"723\" y=\"381\" type=\"line\"/>\n      <point x=\"947\" y=\"408\"/>\n      <point x=\"1085\" y=\"586\"/>\n      <point x=\"1085\" y=\"767\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1085\" y=\"964\"/>\n      <point x=\"933\" y=\"1080\"/>\n      <point x=\"662\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"1080\"/>\n      <point x=\"318\" y=\"1017\"/>\n      <point x=\"154\" y=\"892\" type=\"curve\"/>\n      <point x=\"291\" y=\"693\" type=\"line\"/>\n      <point x=\"417\" y=\"788\"/>\n      <point x=\"548\" y=\"826\"/>\n      <point x=\"631\" y=\"826\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"826\"/>\n      <point x=\"804\" y=\"789\"/>\n      <point x=\"805\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"597\"/>\n      <point x=\"720\" y=\"521\"/>\n      <point x=\"519\" y=\"461\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"441\"/>\n      <point x=\"416\" y=\"435\"/>\n      <point x=\"330\" y=\"427\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ze-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ze-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"417\" y=\"-479\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"-479\"/>\n      <point x=\"995\" y=\"-330\"/>\n      <point x=\"1007\" y=\"-19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1015\" y=\"184\"/>\n      <point x=\"879\" y=\"320\"/>\n      <point x=\"718\" y=\"339\" type=\"curve\"/>\n      <point x=\"335\" y=\"334\" type=\"line\"/>\n      <point x=\"339\" y=\"191\" type=\"line\"/>\n      <point x=\"396\" y=\"191\"/>\n      <point x=\"429\" y=\"192\"/>\n      <point x=\"455\" y=\"191\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"614\" y=\"186\"/>\n      <point x=\"729\" y=\"111\"/>\n      <point x=\"729\" y=\"-4\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"-170\"/>\n      <point x=\"572\" y=\"-225\"/>\n      <point x=\"438\" y=\"-225\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"-225\"/>\n      <point x=\"140\" y=\"-131\"/>\n      <point x=\"90\" y=\"-80\" type=\"curve\"/>\n      <point x=\"-56\" y=\"-305\" type=\"line\"/>\n      <point x=\"24\" y=\"-399\"/>\n      <point x=\"180\" y=\"-479\"/>\n    </contour>\n    <contour>\n      <point x=\"339\" y=\"191\" type=\"line\"/>\n      <point x=\"712\" y=\"269\" type=\"line\"/>\n      <point x=\"721\" y=\"374\" type=\"line\"/>\n      <point x=\"944\" y=\"401\"/>\n      <point x=\"1083\" y=\"577\"/>\n      <point x=\"1083\" y=\"768\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1083\" y=\"964\"/>\n      <point x=\"931\" y=\"1073\"/>\n      <point x=\"667\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"1085\"/>\n      <point x=\"320\" y=\"1014\"/>\n      <point x=\"154\" y=\"887\" type=\"curve\"/>\n      <point x=\"291\" y=\"688\" type=\"line\"/>\n      <point x=\"419\" y=\"784\"/>\n      <point x=\"557\" y=\"831\"/>\n      <point x=\"642\" y=\"826\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"821\"/>\n      <point x=\"802\" y=\"789\"/>\n      <point x=\"803\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"587\"/>\n      <point x=\"709\" y=\"510\"/>\n      <point x=\"521\" y=\"454\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"434\"/>\n      <point x=\"418\" y=\"428\"/>\n      <point x=\"332\" y=\"420\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/ze-cy.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ze-cy.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"417\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"-480\"/>\n      <point x=\"1007\" y=\"-246\"/>\n      <point x=\"1014\" y=\"13\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1020\" y=\"216\"/>\n      <point x=\"890\" y=\"339\"/>\n      <point x=\"689\" y=\"372\" type=\"curve\"/>\n      <point x=\"337\" y=\"225\" type=\"line\"/>\n      <point x=\"386\" y=\"224\"/>\n      <point x=\"396\" y=\"224\"/>\n      <point x=\"406\" y=\"224\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"565\" y=\"224\"/>\n      <point x=\"735\" y=\"170\"/>\n      <point x=\"735\" y=\"16\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"-97\"/>\n      <point x=\"643\" y=\"-223\"/>\n      <point x=\"446\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"286\" y=\"-223\"/>\n      <point x=\"268\" y=\"-142\"/>\n      <point x=\"252\" y=\"-32\" type=\"curve\"/>\n      <point x=\"-17\" y=\"-97\" type=\"line\"/>\n      <point x=\"-25\" y=\"-322\"/>\n      <point x=\"116\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"225\" type=\"line\"/>\n      <point x=\"685\" y=\"349\" type=\"line\"/>\n      <point x=\"703\" y=\"423\" type=\"line\"/>\n      <point x=\"323\" y=\"424\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"688\" y=\"396\" type=\"line\"/>\n      <point x=\"988\" y=\"478\"/>\n      <point x=\"1070\" y=\"619\"/>\n      <point x=\"1070\" y=\"775\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"1034\"/>\n      <point x=\"844\" y=\"1080\"/>\n      <point x=\"683\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"1080\"/>\n      <point x=\"288\" y=\"1004\"/>\n      <point x=\"157\" y=\"897\" type=\"curve\"/>\n      <point x=\"275\" y=\"688\" type=\"line\"/>\n      <point x=\"389\" y=\"767\"/>\n      <point x=\"488\" y=\"823\"/>\n      <point x=\"634\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"823\"/>\n      <point x=\"791\" y=\"813\"/>\n      <point x=\"791\" y=\"719\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"619\"/>\n      <point x=\"685\" y=\"494\"/>\n      <point x=\"323\" y=\"424\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zero.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zerosuperior\" xOffset=\"-143\" yOffset=\"-812\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0030\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"-20\"/>\n      <point x=\"1167\" y=\"304\"/>\n      <point x=\"1167\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1167\" y=\"1263\"/>\n      <point x=\"1028\" y=\"1440\"/>\n      <point x=\"762\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"1440\"/>\n      <point x=\"98\" y=\"1120\"/>\n      <point x=\"98\" y=\"506\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"98\" y=\"160\"/>\n      <point x=\"238\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"518\"/>\n      <point x=\"762\" y=\"600\"/>\n      <point x=\"762\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"831\"/>\n      <point x=\"726\" y=\"884\"/>\n      <point x=\"664\" y=\"884\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"884\"/>\n      <point x=\"502\" y=\"805\"/>\n      <point x=\"502\" y=\"670\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"574\"/>\n      <point x=\"538\" y=\"518\"/>\n    </contour>\n    <contour>\n      <point x=\"549\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"435\" y=\"232\"/>\n      <point x=\"376\" y=\"328\"/>\n      <point x=\"376\" y=\"511\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"376\" y=\"956\"/>\n      <point x=\"493\" y=\"1188\"/>\n      <point x=\"717\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"1188\"/>\n      <point x=\"889\" y=\"1094\"/>\n      <point x=\"889\" y=\"914\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"466\"/>\n      <point x=\"772\" y=\"232\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zero.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zerosuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zero.zero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero.zero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"-20\"/>\n      <point x=\"1167\" y=\"304\"/>\n      <point x=\"1167\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1167\" y=\"1263\"/>\n      <point x=\"1028\" y=\"1440\"/>\n      <point x=\"762\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"1440\"/>\n      <point x=\"98\" y=\"1120\"/>\n      <point x=\"98\" y=\"506\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"98\" y=\"160\"/>\n      <point x=\"238\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"549\" y=\"232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"435\" y=\"232\"/>\n      <point x=\"376\" y=\"328\"/>\n      <point x=\"376\" y=\"511\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"376\" y=\"956\"/>\n      <point x=\"493\" y=\"1188\"/>\n      <point x=\"717\" y=\"1188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"1188\"/>\n      <point x=\"889\" y=\"1094\"/>\n      <point x=\"889\" y=\"914\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"466\"/>\n      <point x=\"772\" y=\"232\"/>\n    </contour>\n    <contour>\n      <point x=\"260\" y=\"232\" type=\"line\"/>\n      <point x=\"1057\" y=\"1013\" type=\"line\"/>\n      <point x=\"976\" y=\"1120\" type=\"line\"/>\n      <point x=\"199\" y=\"365\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>zero</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>zero</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zeroinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zeroinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2080\"/>\n  <outline>\n    <component base=\"zerosuperior\" xOffset=\"-143\" yOffset=\"-812\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zerosuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zerosuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2070\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"792\"/>\n      <point x=\"1040\" y=\"957\"/>\n      <point x=\"1040\" y=\"1168\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"1338\"/>\n      <point x=\"935\" y=\"1440\"/>\n      <point x=\"761\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"1440\"/>\n      <point x=\"367\" y=\"1280\"/>\n      <point x=\"367\" y=\"1068\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"899\"/>\n      <point x=\"472\" y=\"792\"/>\n    </contour>\n    <contour>\n      <point x=\"684\" y=\"1005\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"1005\"/>\n      <point x=\"601\" y=\"1041\"/>\n      <point x=\"601\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"1163\"/>\n      <point x=\"645\" y=\"1227\"/>\n      <point x=\"724\" y=\"1227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"1227\"/>\n      <point x=\"806\" y=\"1193\"/>\n      <point x=\"806\" y=\"1137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"1073\"/>\n      <point x=\"759\" y=\"1005\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zeta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zeta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B6\"/>\n  <anchor x=\"421\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"485\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"-480\"/>\n      <point x=\"983\" y=\"-362\"/>\n      <point x=\"983\" y=\"-103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"77\"/>\n      <point x=\"882\" y=\"185\"/>\n      <point x=\"662\" y=\"240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"285\"/>\n      <point x=\"421\" y=\"333\"/>\n      <point x=\"421\" y=\"416\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"421\" y=\"524\"/>\n      <point x=\"524\" y=\"582\"/>\n      <point x=\"781\" y=\"739\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"915\"/>\n      <point x=\"1174\" y=\"1038\"/>\n      <point x=\"1174\" y=\"1240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1174\" y=\"1432\"/>\n      <point x=\"1056\" y=\"1520\"/>\n      <point x=\"799\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"1520\"/>\n      <point x=\"476\" y=\"1500\"/>\n      <point x=\"314\" y=\"1467\" type=\"curve\"/>\n      <point x=\"345\" y=\"1210\" type=\"line\"/>\n      <point x=\"499\" y=\"1237\"/>\n      <point x=\"652\" y=\"1263\"/>\n      <point x=\"807\" y=\"1263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"1263\"/>\n      <point x=\"887\" y=\"1243\"/>\n      <point x=\"887\" y=\"1198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"1137\"/>\n      <point x=\"821\" y=\"1069\"/>\n      <point x=\"667\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"753\"/>\n      <point x=\"134\" y=\"603\"/>\n      <point x=\"134\" y=\"377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"134\" y=\"177\"/>\n      <point x=\"272\" y=\"46\"/>\n      <point x=\"535\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"-39\"/>\n      <point x=\"696\" y=\"-62\"/>\n      <point x=\"696\" y=\"-120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"-195\"/>\n      <point x=\"618\" y=\"-223\"/>\n      <point x=\"485\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"421\" y=\"-223\"/>\n      <point x=\"357\" y=\"-214\"/>\n      <point x=\"258\" y=\"-193\" type=\"curve\"/>\n      <point x=\"209\" y=\"-450\" type=\"line\"/>\n      <point x=\"333\" y=\"-471\"/>\n      <point x=\"412\" y=\"-480\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0436\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"650\" y=\"419\" type=\"line\"/>\n      <point x=\"877\" y=\"419\" type=\"line\"/>\n      <point x=\"921\" y=\"643\" type=\"line\"/>\n      <point x=\"694\" y=\"643\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-7\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"-5\"/>\n      <point x=\"332\" y=\"156\"/>\n      <point x=\"387\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"559\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"888\"/>\n      <point x=\"410\" y=\"1065\"/>\n      <point x=\"175\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"157\" y=\"1065\"/>\n      <point x=\"138\" y=\"1064\"/>\n      <point x=\"117\" y=\"1060\" type=\"curve\"/>\n      <point x=\"75\" y=\"821\" type=\"line\"/>\n      <point x=\"83\" y=\"822\"/>\n      <point x=\"93\" y=\"823\"/>\n      <point x=\"102\" y=\"823\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"168\" y=\"823\"/>\n      <point x=\"200\" y=\"780\"/>\n      <point x=\"160\" y=\"546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"155\" y=\"517\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"122\" y=\"326\"/>\n      <point x=\"53\" y=\"237\"/>\n      <point x=\"-27\" y=\"237\" type=\"curve\"/>\n      <point x=\"-70\" y=\"0\" type=\"line\"/>\n      <point x=\"-48\" y=\"-3\"/>\n      <point x=\"-27\" y=\"-5\"/>\n    </contour>\n    <contour>\n      <point x=\"409\" y=\"0\" type=\"line\"/>\n      <point x=\"608\" y=\"0\" type=\"line\"/>\n      <point x=\"794\" y=\"1060\" type=\"line\"/>\n      <point x=\"595\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1027\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1045\" y=\"-5\"/>\n      <point x=\"1064\" y=\"-4\"/>\n      <point x=\"1085\" y=\"0\" type=\"curve\"/>\n      <point x=\"1127\" y=\"239\" type=\"line\"/>\n      <point x=\"1119\" y=\"238\"/>\n      <point x=\"1109\" y=\"237\"/>\n      <point x=\"1100\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1034\" y=\"237\"/>\n      <point x=\"1002\" y=\"280\"/>\n      <point x=\"1042\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1047\" y=\"543\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"734\"/>\n      <point x=\"1149\" y=\"823\"/>\n      <point x=\"1229\" y=\"823\" type=\"curve\"/>\n      <point x=\"1272\" y=\"1060\" type=\"line\"/>\n      <point x=\"1250\" y=\"1063\"/>\n      <point x=\"1229\" y=\"1065\"/>\n      <point x=\"1209\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"1065\"/>\n      <point x=\"870\" y=\"904\"/>\n      <point x=\"815\" y=\"578\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"501\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"172\"/>\n      <point x=\"792\" y=\"-5\"/>\n    </contour>\n    <contour>\n      <point x=\"365\" y=\"419\" type=\"line\"/>\n      <point x=\"603\" y=\"419\" type=\"line\"/>\n      <point x=\"647\" y=\"643\" type=\"line\"/>\n      <point x=\"409\" y=\"643\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zhe-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zhe-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"409\" y=\"0\" type=\"line\"/>\n      <point x=\"608\" y=\"0\" type=\"line\"/>\n      <point x=\"686\" y=\"419\" type=\"line\"/>\n      <point x=\"822\" y=\"1017\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"1364\"/>\n      <point x=\"773\" y=\"1521\"/>\n      <point x=\"499\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"1521\"/>\n      <point x=\"420\" y=\"1516\"/>\n      <point x=\"381\" y=\"1509\" type=\"curve\"/>\n      <point x=\"398\" y=\"1271\" type=\"line\"/>\n      <point x=\"424\" y=\"1276\"/>\n      <point x=\"449\" y=\"1279\"/>\n      <point x=\"475\" y=\"1279\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"1279\"/>\n      <point x=\"583\" y=\"1224\"/>\n      <point x=\"569\" y=\"1117\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"419\" type=\"line\"/>\n    </contour>\n    <component base=\"zhe-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zhedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zhedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0497\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1007\" y=\"-319\" type=\"line\"/>\n      <point x=\"1053\" y=\"-188\"/>\n      <point x=\"1120\" y=\"97\"/>\n      <point x=\"1127\" y=\"239\" type=\"curve\"/>\n      <point x=\"869\" y=\"105\" type=\"line\"/>\n      <point x=\"839\" y=\"-52\"/>\n      <point x=\"825\" y=\"-107\"/>\n      <point x=\"771\" y=\"-270\" type=\"curve\"/>\n    </contour>\n    <component base=\"zhe-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>zhe-cy</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs/zmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1DBB\"/>\n  <outline>\n    <contour>\n      <point x=\"522\" y=\"918\" type=\"line\"/>\n      <point x=\"1022\" y=\"1215\" type=\"line\"/>\n      <point x=\"881\" y=\"1288\" type=\"line\"/>\n      <point x=\"365\" y=\"994\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"389\" y=\"790\" type=\"line\"/>\n      <point x=\"940\" y=\"790\" type=\"line\"/>\n      <point x=\"976\" y=\"994\" type=\"line\"/>\n      <point x=\"365\" y=\"994\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"424\" y=\"1215\" type=\"line\"/>\n      <point x=\"1022\" y=\"1215\" type=\"line\"/>\n      <point x=\"999\" y=\"1420\" type=\"line\"/>\n      <point x=\"461\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/bar_braceright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_braceright.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"1704\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1575\" y=\"1626\"/>\n      <point x=\"1498\" y=\"1617\"/>\n      <point x=\"1430\" y=\"1606\" type=\"curve\"/>\n      <point x=\"1424\" y=\"1367\" type=\"line\"/>\n      <point x=\"1495\" y=\"1373\"/>\n      <point x=\"1562\" y=\"1377\"/>\n      <point x=\"1614\" y=\"1377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1729\" y=\"1377\"/>\n      <point x=\"1798\" y=\"1347\"/>\n      <point x=\"1794\" y=\"1294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1784\" y=\"1155\"/>\n      <point x=\"1654\" y=\"1100\"/>\n      <point x=\"1654\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1654\" y=\"802\"/>\n      <point x=\"1749\" y=\"732\"/>\n      <point x=\"1914\" y=\"728\" type=\"curve\"/>\n      <point x=\"1908\" y=\"684\" type=\"line\"/>\n      <point x=\"1682\" y=\"680\"/>\n      <point x=\"1571\" y=\"580\"/>\n      <point x=\"1571\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1571\" y=\"317\"/>\n      <point x=\"1587\" y=\"250\"/>\n      <point x=\"1594\" y=\"190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1606\" y=\"95\"/>\n      <point x=\"1505\" y=\"38\"/>\n      <point x=\"1373\" y=\"38\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1320\" y=\"38\"/>\n      <point x=\"1255\" y=\"42\"/>\n      <point x=\"1187\" y=\"48\" type=\"curve\"/>\n      <point x=\"1123\" y=\"-194\" type=\"line\"/>\n      <point x=\"1188\" y=\"-206\"/>\n      <point x=\"1260\" y=\"-214\"/>\n      <point x=\"1379\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1667\" y=\"-214\"/>\n      <point x=\"1891\" y=\"-55\"/>\n      <point x=\"1853\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1845\" y=\"250\"/>\n      <point x=\"1835\" y=\"314\"/>\n      <point x=\"1835\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1835\" y=\"523\"/>\n      <point x=\"1929\" y=\"580\"/>\n      <point x=\"2185\" y=\"580\" type=\"curve\"/>\n      <point x=\"2230\" y=\"832\" type=\"line\"/>\n      <point x=\"2051\" y=\"832\"/>\n      <point x=\"1932\" y=\"885\"/>\n      <point x=\"1932\" y=\"976\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1932\" y=\"1100\"/>\n      <point x=\"2056\" y=\"1148\"/>\n      <point x=\"2082\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2113\" y=\"1511\"/>\n      <point x=\"1943\" y=\"1626\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/braceleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"685\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"-214\"/>\n      <point x=\"813\" y=\"-206\"/>\n      <point x=\"859\" y=\"-194\" type=\"curve\"/>\n      <point x=\"865\" y=\"-20\" type=\"line\"/>\n      <point x=\"819\" y=\"-26\"/>\n      <point x=\"775\" y=\"-30\"/>\n      <point x=\"740\" y=\"-30\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"-30\"/>\n      <point x=\"594\" y=\"22\"/>\n      <point x=\"613\" y=\"106\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"653\" y=\"285\"/>\n      <point x=\"765\" y=\"347\"/>\n      <point x=\"765\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"618\"/>\n      <point x=\"670\" y=\"686\"/>\n      <point x=\"499\" y=\"689\" type=\"curve\"/>\n      <point x=\"505\" y=\"723\" type=\"line\"/>\n      <point x=\"740\" y=\"727\"/>\n      <point x=\"854\" y=\"824\"/>\n      <point x=\"854\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"1111\"/>\n      <point x=\"836\" y=\"1186\"/>\n      <point x=\"831\" y=\"1253\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"1374\"/>\n      <point x=\"891\" y=\"1442\"/>\n      <point x=\"1001\" y=\"1442\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"1442\"/>\n      <point x=\"1078\" y=\"1438\"/>\n      <point x=\"1122\" y=\"1432\" type=\"curve\"/>\n      <point x=\"1176\" y=\"1606\" type=\"line\"/>\n      <point x=\"1134\" y=\"1618\"/>\n      <point x=\"1087\" y=\"1626\"/>\n      <point x=\"1010\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"1626\"/>\n      <point x=\"597\" y=\"1491\"/>\n      <point x=\"617\" y=\"1278\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"623\" y=\"1211\"/>\n      <point x=\"638\" y=\"1139\"/>\n      <point x=\"638\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"869\"/>\n      <point x=\"525\" y=\"785\"/>\n      <point x=\"290\" y=\"785\" type=\"curve\"/>\n      <point x=\"262\" y=\"627\" type=\"line\"/>\n      <point x=\"369\" y=\"627\"/>\n      <point x=\"551\" y=\"595\"/>\n      <point x=\"551\" y=\"490\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"351\"/>\n      <point x=\"435\" y=\"291\"/>\n      <point x=\"399\" y=\"109\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"-91\"/>\n      <point x=\"500\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/braceleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft_bar.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"758\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"-214\"/>\n      <point x=\"964\" y=\"-205\"/>\n      <point x=\"1032\" y=\"-194\" type=\"curve\"/>\n      <point x=\"1038\" y=\"45\" type=\"line\"/>\n      <point x=\"967\" y=\"39\"/>\n      <point x=\"900\" y=\"35\"/>\n      <point x=\"848\" y=\"35\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"35\"/>\n      <point x=\"664\" y=\"65\"/>\n      <point x=\"668\" y=\"118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"257\"/>\n      <point x=\"808\" y=\"312\"/>\n      <point x=\"808\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"610\"/>\n      <point x=\"713\" y=\"680\"/>\n      <point x=\"548\" y=\"684\" type=\"curve\"/>\n      <point x=\"554\" y=\"728\" type=\"line\"/>\n      <point x=\"780\" y=\"732\"/>\n      <point x=\"891\" y=\"832\"/>\n      <point x=\"891\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"1095\"/>\n      <point x=\"875\" y=\"1162\"/>\n      <point x=\"868\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"1317\"/>\n      <point x=\"957\" y=\"1374\"/>\n      <point x=\"1089\" y=\"1374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"1374\"/>\n      <point x=\"1207\" y=\"1370\"/>\n      <point x=\"1275\" y=\"1364\" type=\"curve\"/>\n      <point x=\"1339\" y=\"1606\" type=\"line\"/>\n      <point x=\"1274\" y=\"1618\"/>\n      <point x=\"1202\" y=\"1626\"/>\n      <point x=\"1083\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"1626\"/>\n      <point x=\"571\" y=\"1467\"/>\n      <point x=\"609\" y=\"1215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"1162\"/>\n      <point x=\"627\" y=\"1098\"/>\n      <point x=\"627\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"889\"/>\n      <point x=\"533\" y=\"832\"/>\n      <point x=\"277\" y=\"832\" type=\"curve\"/>\n      <point x=\"232\" y=\"580\" type=\"line\"/>\n      <point x=\"411\" y=\"580\"/>\n      <point x=\"530\" y=\"527\"/>\n      <point x=\"530\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"530\" y=\"312\"/>\n      <point x=\"406\" y=\"264\"/>\n      <point x=\"380\" y=\"99\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"-99\"/>\n      <point x=\"519\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/braceright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"580\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"1626\"/>\n      <point x=\"434\" y=\"1617\"/>\n      <point x=\"386\" y=\"1606\" type=\"curve\"/>\n      <point x=\"380\" y=\"1367\" type=\"line\"/>\n      <point x=\"421\" y=\"1373\"/>\n      <point x=\"460\" y=\"1377\"/>\n      <point x=\"490\" y=\"1377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1377\"/>\n      <point x=\"594\" y=\"1347\"/>\n      <point x=\"590\" y=\"1294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"1155\"/>\n      <point x=\"450\" y=\"1100\"/>\n      <point x=\"450\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"802\"/>\n      <point x=\"545\" y=\"732\"/>\n      <point x=\"710\" y=\"728\" type=\"curve\"/>\n      <point x=\"704\" y=\"684\" type=\"line\"/>\n      <point x=\"478\" y=\"680\"/>\n      <point x=\"367\" y=\"580\"/>\n      <point x=\"367\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"317\"/>\n      <point x=\"383\" y=\"250\"/>\n      <point x=\"390\" y=\"190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"95\"/>\n      <point x=\"336\" y=\"38\"/>\n      <point x=\"249\" y=\"38\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"38\"/>\n      <point x=\"182\" y=\"42\"/>\n      <point x=\"143\" y=\"48\" type=\"curve\"/>\n      <point x=\"79\" y=\"-194\" type=\"line\"/>\n      <point x=\"124\" y=\"-206\"/>\n      <point x=\"173\" y=\"-214\"/>\n      <point x=\"255\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"-214\"/>\n      <point x=\"687\" y=\"-55\"/>\n      <point x=\"649\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"250\"/>\n      <point x=\"631\" y=\"314\"/>\n      <point x=\"631\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"523\"/>\n      <point x=\"725\" y=\"580\"/>\n      <point x=\"981\" y=\"580\" type=\"curve\"/>\n      <point x=\"1026\" y=\"832\" type=\"line\"/>\n      <point x=\"847\" y=\"832\"/>\n      <point x=\"728\" y=\"885\"/>\n      <point x=\"728\" y=\"976\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"1100\"/>\n      <point x=\"852\" y=\"1148\"/>\n      <point x=\"878\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"1511\"/>\n      <point x=\"772\" y=\"1626\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/braceright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright_numbersign.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1626\"/>\n      <point x=\"454\" y=\"1617\"/>\n      <point x=\"406\" y=\"1606\" type=\"curve\"/>\n      <point x=\"400\" y=\"1367\" type=\"line\"/>\n      <point x=\"441\" y=\"1373\"/>\n      <point x=\"480\" y=\"1377\"/>\n      <point x=\"510\" y=\"1377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"1377\"/>\n      <point x=\"614\" y=\"1347\"/>\n      <point x=\"610\" y=\"1294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"600\" y=\"1155\"/>\n      <point x=\"470\" y=\"1100\"/>\n      <point x=\"470\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"802\"/>\n      <point x=\"565\" y=\"732\"/>\n      <point x=\"730\" y=\"728\" type=\"curve\"/>\n      <point x=\"724\" y=\"684\" type=\"line\"/>\n      <point x=\"498\" y=\"680\"/>\n      <point x=\"387\" y=\"580\"/>\n      <point x=\"387\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"317\"/>\n      <point x=\"403\" y=\"250\"/>\n      <point x=\"410\" y=\"190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"95\"/>\n      <point x=\"356\" y=\"38\"/>\n      <point x=\"269\" y=\"38\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"239\" y=\"38\"/>\n      <point x=\"202\" y=\"42\"/>\n      <point x=\"163\" y=\"48\" type=\"curve\"/>\n      <point x=\"99\" y=\"-194\" type=\"line\"/>\n      <point x=\"144\" y=\"-206\"/>\n      <point x=\"193\" y=\"-214\"/>\n      <point x=\"275\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"518\" y=\"-214\"/>\n      <point x=\"707\" y=\"-55\"/>\n      <point x=\"669\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"250\"/>\n      <point x=\"651\" y=\"314\"/>\n      <point x=\"651\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"568\"/>\n      <point x=\"748\" y=\"641\"/>\n      <point x=\"1012\" y=\"641\" type=\"curve\"/>\n      <point x=\"1035\" y=\"772\" type=\"line\"/>\n      <point x=\"863\" y=\"772\"/>\n      <point x=\"748\" y=\"847\"/>\n      <point x=\"748\" y=\"976\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"1100\"/>\n      <point x=\"872\" y=\"1148\"/>\n      <point x=\"898\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"1511\"/>\n      <point x=\"792\" y=\"1626\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>bar_braceright.liga</key>\n    <string>bar_braceright.liga.glif</string>\n    <key>braceleft</key>\n    <string>braceleft.glif</string>\n    <key>braceleft_bar.liga</key>\n    <string>braceleft_bar.liga.glif</string>\n    <key>braceright</key>\n    <string>braceright.glif</string>\n    <key>braceright_numbersign.liga</key>\n    <string>braceright_numbersign.liga.glif</string>\n    <key>numbersign_braceleft.liga</key>\n    <string>numbersign_braceleft.liga.glif</string>\n    <key>w_w_w.liga</key>\n    <string>w_w_w.liga.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/numbersign_braceleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_braceleft.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"1897\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1988\" y=\"-214\"/>\n      <point x=\"2043\" y=\"-205\"/>\n      <point x=\"2091\" y=\"-194\" type=\"curve\"/>\n      <point x=\"2097\" y=\"45\" type=\"line\"/>\n      <point x=\"2056\" y=\"39\"/>\n      <point x=\"2017\" y=\"35\"/>\n      <point x=\"1987\" y=\"35\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1922\" y=\"35\"/>\n      <point x=\"1883\" y=\"65\"/>\n      <point x=\"1887\" y=\"118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1897\" y=\"257\"/>\n      <point x=\"2027\" y=\"312\"/>\n      <point x=\"2027\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2027\" y=\"610\"/>\n      <point x=\"1932\" y=\"680\"/>\n      <point x=\"1767\" y=\"684\" type=\"curve\"/>\n      <point x=\"1773\" y=\"728\" type=\"line\"/>\n      <point x=\"1999\" y=\"732\"/>\n      <point x=\"2110\" y=\"832\"/>\n      <point x=\"2110\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2110\" y=\"1095\"/>\n      <point x=\"2094\" y=\"1162\"/>\n      <point x=\"2087\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2075\" y=\"1317\"/>\n      <point x=\"2141\" y=\"1374\"/>\n      <point x=\"2228\" y=\"1374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2258\" y=\"1374\"/>\n      <point x=\"2295\" y=\"1370\"/>\n      <point x=\"2334\" y=\"1364\" type=\"curve\"/>\n      <point x=\"2398\" y=\"1606\" type=\"line\"/>\n      <point x=\"2353\" y=\"1618\"/>\n      <point x=\"2304\" y=\"1626\"/>\n      <point x=\"2222\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1979\" y=\"1626\"/>\n      <point x=\"1790\" y=\"1467\"/>\n      <point x=\"1828\" y=\"1215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1836\" y=\"1162\"/>\n      <point x=\"1846\" y=\"1098\"/>\n      <point x=\"1846\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1846\" y=\"844\"/>\n      <point x=\"1749\" y=\"771\"/>\n      <point x=\"1485\" y=\"771\" type=\"curve\"/>\n      <point x=\"1462\" y=\"640\" type=\"line\"/>\n      <point x=\"1634\" y=\"640\"/>\n      <point x=\"1749\" y=\"565\"/>\n      <point x=\"1749\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1749\" y=\"312\"/>\n      <point x=\"1625\" y=\"264\"/>\n      <point x=\"1599\" y=\"99\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1568\" y=\"-99\"/>\n      <point x=\"1705\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/w_w_w.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"w_w_w.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"289\" y=\"0\" type=\"line\"/>\n      <point x=\"530\" y=\"0\" type=\"line\"/>\n      <point x=\"856\" y=\"591\" type=\"line\"/>\n      <point x=\"743\" y=\"412\" type=\"line\"/>\n      <point x=\"839\" y=\"412\" type=\"line\"/>\n      <point x=\"794\" y=\"678\" type=\"line\"/>\n      <point x=\"509\" y=\"186\" type=\"line\"/>\n      <point x=\"487\" y=\"186\" type=\"line\"/>\n      <point x=\"376\" y=\"1070\" type=\"line\"/>\n      <point x=\"149\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"866\" y=\"0\" type=\"line\"/>\n      <point x=\"1028\" y=\"0\" type=\"line\"/>\n      <point x=\"1305\" y=\"412\" type=\"line\"/>\n      <point x=\"1365\" y=\"412\" type=\"line\"/>\n      <point x=\"1354\" y=\"678\" type=\"line\"/>\n      <point x=\"1019\" y=\"185\" type=\"line\"/>\n      <point x=\"1001\" y=\"185\" type=\"line\"/>\n      <point x=\"895\" y=\"920\" type=\"line\"/>\n      <point x=\"668\" y=\"910\" type=\"line\"/>\n      <point x=\"736\" y=\"474\" type=\"line\"/>\n      <point x=\"780\" y=\"567\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1418\" y=\"0\" type=\"line\"/>\n      <point x=\"1580\" y=\"0\" type=\"line\"/>\n      <point x=\"1845\" y=\"412\" type=\"line\"/>\n      <point x=\"1905\" y=\"412\" type=\"line\"/>\n      <point x=\"1894\" y=\"678\" type=\"line\"/>\n      <point x=\"1571\" y=\"185\" type=\"line\"/>\n      <point x=\"1553\" y=\"185\" type=\"line\"/>\n      <point x=\"1435\" y=\"920\" type=\"line\"/>\n      <point x=\"1208\" y=\"910\" type=\"line\"/>\n      <point x=\"1276\" y=\"474\" type=\"line\"/>\n      <point x=\"1320\" y=\"567\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1976\" y=\"0\" type=\"line\"/>\n      <point x=\"2138\" y=\"0\" type=\"line\"/>\n      <point x=\"2385\" y=\"412\" type=\"line\"/>\n      <point x=\"2445\" y=\"412\" type=\"line\"/>\n      <point x=\"2434\" y=\"678\" type=\"line\"/>\n      <point x=\"2129\" y=\"185\" type=\"line\"/>\n      <point x=\"2111\" y=\"185\" type=\"line\"/>\n      <point x=\"1975\" y=\"920\" type=\"line\"/>\n      <point x=\"1748\" y=\"910\" type=\"line\"/>\n      <point x=\"1816\" y=\"474\" type=\"line\"/>\n      <point x=\"1860\" y=\"567\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2508\" y=\"0\" type=\"line\"/>\n      <point x=\"2670\" y=\"0\" type=\"line\"/>\n      <point x=\"2923\" y=\"412\" type=\"line\"/>\n      <point x=\"2983\" y=\"412\" type=\"line\"/>\n      <point x=\"2972\" y=\"678\" type=\"line\"/>\n      <point x=\"2661\" y=\"185\" type=\"line\"/>\n      <point x=\"2643\" y=\"185\" type=\"line\"/>\n      <point x=\"2515\" y=\"920\" type=\"line\"/>\n      <point x=\"2288\" y=\"910\" type=\"line\"/>\n      <point x=\"2356\" y=\"474\" type=\"line\"/>\n      <point x=\"2400\" y=\"567\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"3026\" y=\"0\" type=\"line\"/>\n      <point x=\"3264\" y=\"0\" type=\"line\"/>\n      <point x=\"3490\" y=\"252\"/>\n      <point x=\"3594\" y=\"604\"/>\n      <point x=\"3604\" y=\"1060\" type=\"curve\"/>\n      <point x=\"3390\" y=\"1060\" type=\"line\"/>\n      <point x=\"3384\" y=\"693\"/>\n      <point x=\"3319\" y=\"403\"/>\n      <point x=\"3179\" y=\"185\" type=\"curve\"/>\n      <point x=\"3161\" y=\"185\" type=\"line\"/>\n      <point x=\"3055\" y=\"920\" type=\"line\"/>\n      <point x=\"2828\" y=\"910\" type=\"line\"/>\n      <point x=\"2896\" y=\"474\" type=\"line\"/>\n      <point x=\"2940\" y=\"567\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/layercontents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <array>\n    <array>\n      <string>public.default</string>\n      <string>glyphs</string>\n    </array>\n    <array>\n      <string>public.background</string>\n      <string>glyphs.public.background</string>\n    </array>\n  </array>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/lib.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>GSCornerRadius</key>\n    <integer>15</integer>\n    <key>GSOffsetHorizontal</key>\n    <integer>95</integer>\n    <key>GSOffsetMakeStroke</key>\n    <integer>1</integer>\n    <key>GSOffsetPosition</key>\n    <integer>1</integer>\n    <key>GSOffsetVertical</key>\n    <integer>110</integer>\n    <key>com.github.googlei18n.ufo2ft.filters</key>\n    <array>\n      <dict>\n        <key>name</key>\n        <string>decomposeTransformedComponents</string>\n        <key>pre</key>\n        <integer>1</integer>\n      </dict>\n      <dict>\n        <key>exclude</key>\n        <array>\n          <string>ij_acute</string>\n          <string>baht</string>\n          <string>bitcoin</string>\n          <string>cedi</string>\n          <string>cent</string>\n          <string>colonsign</string>\n          <string>currency</string>\n          <string>dollar</string>\n          <string>dong</string>\n          <string>euro</string>\n          <string>eurocurrency</string>\n          <string>florin</string>\n          <string>franc</string>\n          <string>guarani</string>\n          <string>hryvnia</string>\n          <string>kip</string>\n          <string>lari</string>\n          <string>lira</string>\n          <string>liraTurkish</string>\n          <string>manat</string>\n          <string>naira</string>\n          <string>peseta</string>\n          <string>peso</string>\n          <string>ruble</string>\n          <string>rupee</string>\n          <string>rupeeIndian</string>\n          <string>sheqel</string>\n          <string>sterling</string>\n          <string>tenge</string>\n          <string>tugrik</string>\n          <string>won</string>\n          <string>yen</string>\n          <string>baht.BRACKET.600</string>\n          <string>dollar.BRACKET.600</string>\n          <string>lam_alef-ar</string>\n          <string>lam_alef-ar.fina</string>\n          <string>lam_alef-ar.fina.short</string>\n          <string>lam_alef-ar.short</string>\n          <string>lam_lam_heh-ar</string>\n          <string>allah-ar</string>\n          <string>_tahabove</string>\n        </array>\n        <key>name</key>\n        <string>propagateAnchors</string>\n        <key>pre</key>\n        <integer>1</integer>\n      </dict>\n    </array>\n    <key>com.schriftgestaltung.appVersion</key>\n    <string>1352</string>\n    <key>com.schriftgestaltung.customName</key>\n    <string>Italic</string>\n    <key>com.schriftgestaltung.customParameter.GSFont.Axes</key>\n    <array>\n      <dict>\n        <key>Name</key>\n        <string>Weight</string>\n        <key>Tag</key>\n        <string>wght</string>\n      </dict>\n    </array>\n    <key>com.schriftgestaltung.customParameter.GSFont.disablesAutomaticAlignment</key>\n    <false/>\n    <key>com.schriftgestaltung.customParameter.GSFont.disablesLastChange</key>\n    <true/>\n    <key>com.schriftgestaltung.customParameter.GSFont.note</key>\n    <string>#Macro to convert the ligatures from editable to production mode\n\ndef ligatureProcess(production):\n\tfor glyph in Glyphs.font.glyphs:\n\t\tif glyph.color == 3: #2 width\n\t\t\tif production == True:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB - 1200\n\t\t\tif production == False:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB + 1200\n\n\t\telif glyph.color == 4: #3 width\n\t\t\tif production == True:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB - 2400\n\t\t\tif production == False:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB + 2400\n\n\t\telif glyph.color == 9: #4 width\n\t\t\tif production == True:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB - 3600\n\t\t\tif production == False:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB + 3600\t\t\n\t\t\n\nligatureProcess(True) #True for production mode, False for editable\n\n\n\nSettings for scaler for halves and thirds\n\nThird\n\n30\t\t30\t\t30\n40\t\t40\t\t40\n80\t\t-160\t-340\n\nHalf\n70\t\t70\t\t70\n45\t\t45\t\t45\n60\t\t-220\t-360</string>\n    <key>com.schriftgestaltung.customParameter.GSFont.useNiceNames</key>\n    <integer>1</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.Master Icon Glyph Name</key>\n    <string>i</string>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue1</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue2</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue3</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.iconName</key>\n    <string></string>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.weightValue</key>\n    <integer>750</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.widthValue</key>\n    <integer>1</integer>\n    <key>com.schriftgestaltung.fontMasterID</key>\n    <string>84EC96F5-B4D5-4389-883B-FBB110B3398F</string>\n    <key>com.schriftgestaltung.fontMasterOrder</key>\n    <integer>2</integer>\n    <key>com.schriftgestaltung.keyboardIncrement</key>\n    <integer>1</integer>\n    <key>com.schriftgestaltung.weight</key>\n    <string>Bold</string>\n    <key>com.schriftgestaltung.weightValue</key>\n    <integer>750</integer>\n    <key>com.schriftgestaltung.width</key>\n    <string>Regular</string>\n    <key>com.schriftgestaltung.widthValue</key>\n    <integer>1</integer>\n    <key>public.glyphOrder</key>\n    <array>\n      <string>A</string>\n      <string>Aacute</string>\n      <string>Abreve</string>\n      <string>Abreveacute</string>\n      <string>Abrevedotbelow</string>\n      <string>Abrevegrave</string>\n      <string>Abrevehookabove</string>\n      <string>Abrevetilde</string>\n      <string>Acaron</string>\n      <string>Acircumflex</string>\n      <string>Acircumflexacute</string>\n      <string>Acircumflexdotbelow</string>\n      <string>Acircumflexgrave</string>\n      <string>Acircumflexhookabove</string>\n      <string>Acircumflextilde</string>\n      <string>Adieresis</string>\n      <string>Adotbelow</string>\n      <string>Agrave</string>\n      <string>Ahookabove</string>\n      <string>Alpha-latin</string>\n      <string>Amacron</string>\n      <string>Aogonek</string>\n      <string>Aring</string>\n      <string>Aringacute</string>\n      <string>Astroke</string>\n      <string>Atilde</string>\n      <string>AE</string>\n      <string>AEacute</string>\n      <string>B</string>\n      <string>C</string>\n      <string>Cacute</string>\n      <string>Ccaron</string>\n      <string>Ccedilla</string>\n      <string>Ccircumflex</string>\n      <string>Cdotaccent</string>\n      <string>Cstroke</string>\n      <string>D</string>\n      <string>Dafrican</string>\n      <string>Eth</string>\n      <string>Dcaron</string>\n      <string>Dcroat</string>\n      <string>E</string>\n      <string>Eacute</string>\n      <string>Ebreve</string>\n      <string>Ecaron</string>\n      <string>Ecircumflex</string>\n      <string>Ecircumflexacute</string>\n      <string>Ecircumflexdotbelow</string>\n      <string>Ecircumflexgrave</string>\n      <string>Ecircumflexhookabove</string>\n      <string>Ecircumflextilde</string>\n      <string>Edieresis</string>\n      <string>Edotaccent</string>\n      <string>Edotbelow</string>\n      <string>Egrave</string>\n      <string>Ehookabove</string>\n      <string>Emacron</string>\n      <string>Eogonek</string>\n      <string>Eopen</string>\n      <string>Ereversed</string>\n      <string>Esh</string>\n      <string>Etilde</string>\n      <string>Ezh</string>\n      <string>F</string>\n      <string>Fhook</string>\n      <string>G</string>\n      <string>Gbreve</string>\n      <string>Gcaron</string>\n      <string>Gcircumflex</string>\n      <string>Gcommaaccent</string>\n      <string>Gdotaccent</string>\n      <string>Gstroke</string>\n      <string>H</string>\n      <string>Hbar</string>\n      <string>Hcaron</string>\n      <string>Hcircumflex</string>\n      <string>Hdotbelow</string>\n      <string>I</string>\n      <string>IJ</string>\n      <string>IJ_acute</string>\n      <string>Iacute</string>\n      <string>Ibreve</string>\n      <string>Icircumflex</string>\n      <string>Idieresis</string>\n      <string>Idotaccent</string>\n      <string>Idotbelow</string>\n      <string>Igrave</string>\n      <string>Ihookabove</string>\n      <string>Imacron</string>\n      <string>Iogonek</string>\n      <string>Iotaafrican</string>\n      <string>Itilde</string>\n      <string>J</string>\n      <string>Jacute</string>\n      <string>Jcircumflex</string>\n      <string>K</string>\n      <string>Kacute</string>\n      <string>Kcommaaccent</string>\n      <string>Kdotbelow</string>\n      <string>Klinebelow</string>\n      <string>L</string>\n      <string>Lacute</string>\n      <string>Lbar</string>\n      <string>Lcaron</string>\n      <string>Lcommaaccent</string>\n      <string>Ldot</string>\n      <string>Ldotbelow</string>\n      <string>Llinebelow</string>\n      <string>Lmiddletilde</string>\n      <string>Lslash</string>\n      <string>M</string>\n      <string>N</string>\n      <string>Nacute</string>\n      <string>Ncaron</string>\n      <string>Ncommaaccent</string>\n      <string>Eng</string>\n      <string>Nhookleft</string>\n      <string>Nlinebelow</string>\n      <string>Ntilde</string>\n      <string>O</string>\n      <string>Oacute</string>\n      <string>Obreve</string>\n      <string>Ocircumflex</string>\n      <string>Ocircumflexacute</string>\n      <string>Ocircumflexdotbelow</string>\n      <string>Ocircumflexgrave</string>\n      <string>Ocircumflexhookabove</string>\n      <string>Ocircumflextilde</string>\n      <string>Odieresis</string>\n      <string>Odotbelow</string>\n      <string>Ograve</string>\n      <string>Ohookabove</string>\n      <string>Ohorn</string>\n      <string>Ohornacute</string>\n      <string>Ohorndotbelow</string>\n      <string>Ohorngrave</string>\n      <string>Ohornhookabove</string>\n      <string>Ohorntilde</string>\n      <string>Ohungarumlaut</string>\n      <string>Omacron</string>\n      <string>Omacronacute</string>\n      <string>Omacrongrave</string>\n      <string>Oogonek</string>\n      <string>Oopen</string>\n      <string>Oslash</string>\n      <string>Oslashacute</string>\n      <string>Otilde</string>\n      <string>OE</string>\n      <string>P</string>\n      <string>Thorn</string>\n      <string>Q</string>\n      <string>R</string>\n      <string>Racute</string>\n      <string>Rcaron</string>\n      <string>Rcommaaccent</string>\n      <string>Rdotbelow</string>\n      <string>S</string>\n      <string>Sacute</string>\n      <string>Scaron</string>\n      <string>Scedilla</string>\n      <string>Scircumflex</string>\n      <string>Scommaaccent</string>\n      <string>Sdotbelow</string>\n      <string>Germandbls</string>\n      <string>Schwa</string>\n      <string>T</string>\n      <string>Tbar</string>\n      <string>Tcaron</string>\n      <string>Tcedilla</string>\n      <string>Tcommaaccent</string>\n      <string>Tdiagonalstroke</string>\n      <string>Tlinebelow</string>\n      <string>U</string>\n      <string>Uacute</string>\n      <string>Ubreve</string>\n      <string>Ucircumflex</string>\n      <string>Udieresis</string>\n      <string>Udotbelow</string>\n      <string>Ugrave</string>\n      <string>Uhookabove</string>\n      <string>Uhorn</string>\n      <string>Uhornacute</string>\n      <string>Uhorndotbelow</string>\n      <string>Uhorngrave</string>\n      <string>Uhornhookabove</string>\n      <string>Uhorntilde</string>\n      <string>Uhungarumlaut</string>\n      <string>Umacron</string>\n      <string>Uogonek</string>\n      <string>Upsilonafrican</string>\n      <string>Uring</string>\n      <string>Utilde</string>\n      <string>V</string>\n      <string>Gammaafrican</string>\n      <string>Vhook</string>\n      <string>Vturned</string>\n      <string>W</string>\n      <string>Wacute</string>\n      <string>Wcircumflex</string>\n      <string>Wdieresis</string>\n      <string>Wgrave</string>\n      <string>X</string>\n      <string>Y</string>\n      <string>Yacute</string>\n      <string>Ycircumflex</string>\n      <string>Ydieresis</string>\n      <string>Ydotbelow</string>\n      <string>Ygrave</string>\n      <string>Yhookabove</string>\n      <string>Ymacron</string>\n      <string>Ytilde</string>\n      <string>Z</string>\n      <string>Zacute</string>\n      <string>Zcaron</string>\n      <string>Zdotaccent</string>\n      <string>Cacute.loclPLK</string>\n      <string>Nacute.loclPLK</string>\n      <string>Oacute.loclPLK</string>\n      <string>Sacute.loclPLK</string>\n      <string>Zacute.loclPLK</string>\n      <string>A.half</string>\n      <string>B.half</string>\n      <string>C.half</string>\n      <string>D.half</string>\n      <string>E.half</string>\n      <string>F.half</string>\n      <string>G.half</string>\n      <string>H.half</string>\n      <string>I.half</string>\n      <string>K.half</string>\n      <string>L.half</string>\n      <string>M.half</string>\n      <string>N.half</string>\n      <string>O.half</string>\n      <string>P.half</string>\n      <string>Q.half</string>\n      <string>R.half</string>\n      <string>S.half</string>\n      <string>T.half</string>\n      <string>U.half</string>\n      <string>V.half</string>\n      <string>X.half</string>\n      <string>Y.half</string>\n      <string>Asmall</string>\n      <string>Gsmall</string>\n      <string>Ismall</string>\n      <string>Lsmall</string>\n      <string>a</string>\n      <string>aacute</string>\n      <string>abreve</string>\n      <string>abreveacute</string>\n      <string>abrevedotbelow</string>\n      <string>abrevegrave</string>\n      <string>abrevehookabove</string>\n      <string>abrevetilde</string>\n      <string>acaron</string>\n      <string>acircumflex</string>\n      <string>acircumflexacute</string>\n      <string>acircumflexdotbelow</string>\n      <string>acircumflexgrave</string>\n      <string>acircumflexhookabove</string>\n      <string>acircumflextilde</string>\n      <string>adieresis</string>\n      <string>adotbelow</string>\n      <string>agrave</string>\n      <string>ahookabove</string>\n      <string>alpha-latin</string>\n      <string>amacron</string>\n      <string>aogonek</string>\n      <string>aring</string>\n      <string>aringacute</string>\n      <string>atilde</string>\n      <string>ae</string>\n      <string>aeacute</string>\n      <string>b</string>\n      <string>c</string>\n      <string>cacute</string>\n      <string>ccaron</string>\n      <string>ccedilla</string>\n      <string>ccircumflex</string>\n      <string>cdotaccent</string>\n      <string>d</string>\n      <string>eth</string>\n      <string>dcaron</string>\n      <string>dcroat</string>\n      <string>dtail</string>\n      <string>e</string>\n      <string>eacute</string>\n      <string>ebreve</string>\n      <string>ecaron</string>\n      <string>ecircumflex</string>\n      <string>ecircumflexacute</string>\n      <string>ecircumflexdotbelow</string>\n      <string>ecircumflexgrave</string>\n      <string>ecircumflexhookabove</string>\n      <string>ecircumflextilde</string>\n      <string>edieresis</string>\n      <string>edotaccent</string>\n      <string>edotbelow</string>\n      <string>egrave</string>\n      <string>ehookabove</string>\n      <string>emacron</string>\n      <string>eogonek</string>\n      <string>eopen</string>\n      <string>esh</string>\n      <string>etilde</string>\n      <string>eturned</string>\n      <string>schwa</string>\n      <string>ezh</string>\n      <string>f</string>\n      <string>g</string>\n      <string>gamma-latin</string>\n      <string>gbreve</string>\n      <string>gcaron</string>\n      <string>gcircumflex</string>\n      <string>gcommaaccent</string>\n      <string>gdotaccent</string>\n      <string>glottalstop</string>\n      <string>glottalstopreversed</string>\n      <string>gstroke</string>\n      <string>h</string>\n      <string>hbar</string>\n      <string>hcaron</string>\n      <string>hcircumflex</string>\n      <string>hdotbelow</string>\n      <string>i</string>\n      <string>idotless</string>\n      <string>iacute</string>\n      <string>ibreve</string>\n      <string>icircumflex</string>\n      <string>idieresis</string>\n      <string>idotbelow</string>\n      <string>igrave</string>\n      <string>ihookabove</string>\n      <string>ij</string>\n      <string>ij_acute</string>\n      <string>imacron</string>\n      <string>iogonek</string>\n      <string>iota-latin</string>\n      <string>itilde</string>\n      <string>j</string>\n      <string>jdotless</string>\n      <string>jacute</string>\n      <string>jcaron</string>\n      <string>jcircumflex</string>\n      <string>k</string>\n      <string>kcommaaccent</string>\n      <string>kdotbelow</string>\n      <string>kgreenlandic</string>\n      <string>klinebelow</string>\n      <string>l</string>\n      <string>lacute</string>\n      <string>lambdastroke</string>\n      <string>lbar</string>\n      <string>lbelt</string>\n      <string>lcaron</string>\n      <string>lcommaaccent</string>\n      <string>ldot</string>\n      <string>ldotbelow</string>\n      <string>llinebelow</string>\n      <string>lmiddletilde</string>\n      <string>lslash</string>\n      <string>m</string>\n      <string>n</string>\n      <string>nacute</string>\n      <string>napostrophe</string>\n      <string>ncaron</string>\n      <string>ncommaaccent</string>\n      <string>eng</string>\n      <string>nhookleft</string>\n      <string>nlinebelow</string>\n      <string>ntilde</string>\n      <string>o</string>\n      <string>oacute</string>\n      <string>obreve</string>\n      <string>ocircumflex</string>\n      <string>ocircumflexacute</string>\n      <string>ocircumflexdotbelow</string>\n      <string>ocircumflexgrave</string>\n      <string>ocircumflexhookabove</string>\n      <string>ocircumflextilde</string>\n      <string>odieresis</string>\n      <string>odotbelow</string>\n      <string>ograve</string>\n      <string>ohookabove</string>\n      <string>ohorn</string>\n      <string>ohornacute</string>\n      <string>ohorndotbelow</string>\n      <string>ohorngrave</string>\n      <string>ohornhookabove</string>\n      <string>ohorntilde</string>\n      <string>ohungarumlaut</string>\n      <string>omacron</string>\n      <string>omacronacute</string>\n      <string>omacrongrave</string>\n      <string>oogonek</string>\n      <string>oopen</string>\n      <string>oslash</string>\n      <string>oslashacute</string>\n      <string>otilde</string>\n      <string>oe</string>\n      <string>p</string>\n      <string>thorn</string>\n      <string>q</string>\n      <string>r</string>\n      <string>racute</string>\n      <string>rcaron</string>\n      <string>rcommaaccent</string>\n      <string>rdotbelow</string>\n      <string>s</string>\n      <string>sacute</string>\n      <string>scaron</string>\n      <string>scedilla</string>\n      <string>scircumflex</string>\n      <string>scommaaccent</string>\n      <string>sdotbelow</string>\n      <string>germandbls</string>\n      <string>longs</string>\n      <string>t</string>\n      <string>tbar</string>\n      <string>tcaron</string>\n      <string>tcedilla</string>\n      <string>tcommaaccent</string>\n      <string>tesh</string>\n      <string>u</string>\n      <string>uacute</string>\n      <string>ubreve</string>\n      <string>ucircumflex</string>\n      <string>udieresis</string>\n      <string>udotbelow</string>\n      <string>ugrave</string>\n      <string>uhookabove</string>\n      <string>uhorn</string>\n      <string>uhornacute</string>\n      <string>uhorndotbelow</string>\n      <string>uhorngrave</string>\n      <string>uhornhookabove</string>\n      <string>uhorntilde</string>\n      <string>uhungarumlaut</string>\n      <string>umacron</string>\n      <string>uogonek</string>\n      <string>upsilon-latin</string>\n      <string>uring</string>\n      <string>utilde</string>\n      <string>v</string>\n      <string>vhook</string>\n      <string>vturned</string>\n      <string>w</string>\n      <string>wacute</string>\n      <string>wcircumflex</string>\n      <string>wdieresis</string>\n      <string>wgrave</string>\n      <string>x</string>\n      <string>y</string>\n      <string>yacute</string>\n      <string>ycircumflex</string>\n      <string>ydieresis</string>\n      <string>ydotbelow</string>\n      <string>ygrave</string>\n      <string>yhookabove</string>\n      <string>ymacron</string>\n      <string>ytilde</string>\n      <string>z</string>\n      <string>zacute</string>\n      <string>zcaron</string>\n      <string>zdotaccent</string>\n      <string>b.alt</string>\n      <string>dcaron.alt</string>\n      <string>h.alt</string>\n      <string>k.alt</string>\n      <string>f.locl</string>\n      <string>cacute.loclPLK</string>\n      <string>nacute.loclPLK</string>\n      <string>oacute.loclPLK</string>\n      <string>sacute.loclPLK</string>\n      <string>zacute.loclPLK</string>\n      <string>x.multiply</string>\n      <string>f.salt</string>\n      <string>l.salt</string>\n      <string>lacute.salt</string>\n      <string>lbar.salt</string>\n      <string>lbelt.salt</string>\n      <string>lcaron.salt</string>\n      <string>lcommaaccent.salt</string>\n      <string>ldot.salt</string>\n      <string>ldotbelow.salt</string>\n      <string>llinebelow.salt</string>\n      <string>lmiddletilde.salt</string>\n      <string>lslash.salt</string>\n      <string>r.salt</string>\n      <string>racute.salt</string>\n      <string>rcaron.salt</string>\n      <string>rcommaaccent.salt</string>\n      <string>rdotbelow.salt</string>\n      <string>s.salt</string>\n      <string>sacute.salt</string>\n      <string>scaron.salt</string>\n      <string>scedilla.salt</string>\n      <string>scircumflex.salt</string>\n      <string>scommaaccent.salt</string>\n      <string>sdotbelow.salt</string>\n      <string>fi</string>\n      <string>fl</string>\n      <string>w_w_w.liga</string>\n      <string>ordfeminine</string>\n      <string>ordmasculine</string>\n      <string>nmod</string>\n      <string>wmod</string>\n      <string>ymod</string>\n      <string>A-cy</string>\n      <string>Be-cy</string>\n      <string>Ve-cy</string>\n      <string>Ge-cy</string>\n      <string>Gje-cy</string>\n      <string>Gheupturn-cy</string>\n      <string>De-cy</string>\n      <string>Ie-cy</string>\n      <string>Iegrave-cy</string>\n      <string>Io-cy</string>\n      <string>Zhe-cy</string>\n      <string>Ze-cy</string>\n      <string>Ii-cy</string>\n      <string>Iishort-cy</string>\n      <string>Iigrave-cy</string>\n      <string>Ka-cy</string>\n      <string>Kje-cy</string>\n      <string>El-cy</string>\n      <string>Em-cy</string>\n      <string>En-cy</string>\n      <string>O-cy</string>\n      <string>Pe-cy</string>\n      <string>Er-cy</string>\n      <string>Es-cy</string>\n      <string>Te-cy</string>\n      <string>U-cy</string>\n      <string>Ushort-cy</string>\n      <string>Ef-cy</string>\n      <string>Ha-cy</string>\n      <string>Che-cy</string>\n      <string>Tse-cy</string>\n      <string>Sha-cy</string>\n      <string>Shcha-cy</string>\n      <string>Dzhe-cy</string>\n      <string>Softsign-cy</string>\n      <string>Hardsign-cy</string>\n      <string>Yeru-cy</string>\n      <string>Lje-cy</string>\n      <string>Nje-cy</string>\n      <string>Dze-cy</string>\n      <string>E-cy</string>\n      <string>Ereversed-cy</string>\n      <string>I-cy</string>\n      <string>Yi-cy</string>\n      <string>Je-cy</string>\n      <string>Tshe-cy</string>\n      <string>Iu-cy</string>\n      <string>Ia-cy</string>\n      <string>Dje-cy</string>\n      <string>Ghestroke-cy</string>\n      <string>Zhedescender-cy</string>\n      <string>Kadescender-cy</string>\n      <string>Endescender-cy</string>\n      <string>Ustraight-cy</string>\n      <string>Ustraightstroke-cy</string>\n      <string>Hadescender-cy</string>\n      <string>Chedescender-cy</string>\n      <string>Shha-cy</string>\n      <string>Palochka-cy</string>\n      <string>Schwa-cy</string>\n      <string>Imacron-cy</string>\n      <string>Obarred-cy</string>\n      <string>Umacron-cy</string>\n      <string>De-cy.loclBGR</string>\n      <string>El-cy.loclBGR</string>\n      <string>Ef-cy.loclBGR</string>\n      <string>a-cy</string>\n      <string>be-cy</string>\n      <string>ve-cy</string>\n      <string>ge-cy</string>\n      <string>gje-cy</string>\n      <string>gheupturn-cy</string>\n      <string>de-cy</string>\n      <string>ie-cy</string>\n      <string>iegrave-cy</string>\n      <string>io-cy</string>\n      <string>zhe-cy</string>\n      <string>ze-cy</string>\n      <string>ii-cy</string>\n      <string>iishort-cy</string>\n      <string>iigrave-cy</string>\n      <string>ka-cy</string>\n      <string>kje-cy</string>\n      <string>el-cy</string>\n      <string>em-cy</string>\n      <string>en-cy</string>\n      <string>o-cy</string>\n      <string>pe-cy</string>\n      <string>er-cy</string>\n      <string>es-cy</string>\n      <string>te-cy</string>\n      <string>u-cy</string>\n      <string>ushort-cy</string>\n      <string>ef-cy</string>\n      <string>ha-cy</string>\n      <string>che-cy</string>\n      <string>tse-cy</string>\n      <string>sha-cy</string>\n      <string>shcha-cy</string>\n      <string>dzhe-cy</string>\n      <string>softsign-cy</string>\n      <string>hardsign-cy</string>\n      <string>yeru-cy</string>\n      <string>lje-cy</string>\n      <string>nje-cy</string>\n      <string>dze-cy</string>\n      <string>e-cy</string>\n      <string>ereversed-cy</string>\n      <string>i-cy</string>\n      <string>yi-cy</string>\n      <string>je-cy</string>\n      <string>tshe-cy</string>\n      <string>iu-cy</string>\n      <string>ia-cy</string>\n      <string>dje-cy</string>\n      <string>ghestroke-cy</string>\n      <string>zhedescender-cy</string>\n      <string>kadescender-cy</string>\n      <string>endescender-cy</string>\n      <string>ustraight-cy</string>\n      <string>ustraightstroke-cy</string>\n      <string>hadescender-cy</string>\n      <string>chedescender-cy</string>\n      <string>shha-cy</string>\n      <string>palochka-cy</string>\n      <string>schwa-cy</string>\n      <string>imacron-cy</string>\n      <string>obarred-cy</string>\n      <string>umacron-cy</string>\n      <string>shha-cy.alt</string>\n      <string>ka-cy.loclBGR.alt</string>\n      <string>iu-cy.loclBGR.alt</string>\n      <string>de-cy.loclBGR</string>\n      <string>zhe-cy.loclBGR</string>\n      <string>ze-cy.loclBGR</string>\n      <string>ka-cy.loclBGR</string>\n      <string>iu-cy.loclBGR</string>\n      <string>be-cy.loclSRB</string>\n      <string>ge-cy.loclSRB</string>\n      <string>pe-cy.loclSRB</string>\n      <string>te-cy.loclSRB</string>\n      <string>ve-cy.salt</string>\n      <string>ze-cy.salt</string>\n      <string>che-cy.salt</string>\n      <string>chedescender-cy.salt</string>\n      <string>Alpha</string>\n      <string>Beta</string>\n      <string>Gamma</string>\n      <string>Delta</string>\n      <string>Epsilon</string>\n      <string>Zeta</string>\n      <string>Eta</string>\n      <string>Theta</string>\n      <string>Iota</string>\n      <string>Kappa</string>\n      <string>Lambda</string>\n      <string>Mu</string>\n      <string>Nu</string>\n      <string>Xi</string>\n      <string>Omicron</string>\n      <string>Pi</string>\n      <string>Rho</string>\n      <string>Sigma</string>\n      <string>Tau</string>\n      <string>Upsilon</string>\n      <string>Phi</string>\n      <string>Chi</string>\n      <string>Psi</string>\n      <string>Omega</string>\n      <string>Alphatonos</string>\n      <string>Epsilontonos</string>\n      <string>Etatonos</string>\n      <string>Iotatonos</string>\n      <string>Omicrontonos</string>\n      <string>Upsilontonos</string>\n      <string>Omegatonos</string>\n      <string>Iotadieresis</string>\n      <string>Upsilondieresis</string>\n      <string>KaiSymbol</string>\n      <string>alpha</string>\n      <string>beta</string>\n      <string>gamma</string>\n      <string>delta</string>\n      <string>epsilon</string>\n      <string>zeta</string>\n      <string>eta</string>\n      <string>theta</string>\n      <string>iota</string>\n      <string>kappa</string>\n      <string>lambda</string>\n      <string>mu</string>\n      <string>nu</string>\n      <string>xi</string>\n      <string>omicron</string>\n      <string>pi</string>\n      <string>rho</string>\n      <string>sigmafinal</string>\n      <string>sigma</string>\n      <string>tau</string>\n      <string>upsilon</string>\n      <string>phi</string>\n      <string>chi</string>\n      <string>psi</string>\n      <string>omega</string>\n      <string>iotatonos</string>\n      <string>iotadieresis</string>\n      <string>iotadieresistonos</string>\n      <string>upsilontonos</string>\n      <string>upsilondieresis</string>\n      <string>upsilondieresistonos</string>\n      <string>omicrontonos</string>\n      <string>omegatonos</string>\n      <string>alphatonos</string>\n      <string>epsilontonos</string>\n      <string>etatonos</string>\n      <string>kaiSymbol</string>\n      <string>thetamod</string>\n      <string>zmod</string>\n      <string>zero</string>\n      <string>one</string>\n      <string>two</string>\n      <string>three</string>\n      <string>four</string>\n      <string>five</string>\n      <string>six</string>\n      <string>seven</string>\n      <string>eight</string>\n      <string>nine</string>\n      <string>zero.zero</string>\n      <string>one.half</string>\n      <string>two.half</string>\n      <string>three.half</string>\n      <string>four.half</string>\n      <string>zeroinferior</string>\n      <string>oneinferior</string>\n      <string>twoinferior</string>\n      <string>threeinferior</string>\n      <string>fourinferior</string>\n      <string>fiveinferior</string>\n      <string>sixinferior</string>\n      <string>seveninferior</string>\n      <string>eightinferior</string>\n      <string>nineinferior</string>\n      <string>zero.dnom</string>\n      <string>one.dnom</string>\n      <string>two.dnom</string>\n      <string>three.dnom</string>\n      <string>four.dnom</string>\n      <string>five.dnom</string>\n      <string>six.dnom</string>\n      <string>seven.dnom</string>\n      <string>eight.dnom</string>\n      <string>nine.dnom</string>\n      <string>zero.numr</string>\n      <string>one.numr</string>\n      <string>two.numr</string>\n      <string>three.numr</string>\n      <string>four.numr</string>\n      <string>five.numr</string>\n      <string>six.numr</string>\n      <string>seven.numr</string>\n      <string>eight.numr</string>\n      <string>nine.numr</string>\n      <string>zerosuperior</string>\n      <string>onesuperior</string>\n      <string>twosuperior</string>\n      <string>threesuperior</string>\n      <string>foursuperior</string>\n      <string>fivesuperior</string>\n      <string>sixsuperior</string>\n      <string>sevensuperior</string>\n      <string>eightsuperior</string>\n      <string>ninesuperior</string>\n      <string>fraction</string>\n      <string>onehalf</string>\n      <string>onequarter</string>\n      <string>threequarters</string>\n      <string>oneeighth</string>\n      <string>threeeighths</string>\n      <string>fiveeighths</string>\n      <string>seveneighths</string>\n      <string>period</string>\n      <string>comma</string>\n      <string>colon</string>\n      <string>semicolon</string>\n      <string>ellipsis</string>\n      <string>exclam</string>\n      <string>exclamdown</string>\n      <string>question</string>\n      <string>questiondown</string>\n      <string>periodcentered</string>\n      <string>bullet</string>\n      <string>asterisk</string>\n      <string>exclamdouble</string>\n      <string>numbersign</string>\n      <string>onedotenleader</string>\n      <string>overline</string>\n      <string>slash</string>\n      <string>backslash</string>\n      <string>colon.center</string>\n      <string>parenleft</string>\n      <string>parenright</string>\n      <string>braceleft</string>\n      <string>braceright</string>\n      <string>bracketleft</string>\n      <string>bracketright</string>\n      <string>heavyleftpointinganglebracketornament</string>\n      <string>heavyleftpointinganglequotationmarkornament</string>\n      <string>heavyrightpointinganglebracketornament</string>\n      <string>heavyrightpointinganglequotationmarkornament</string>\n      <string>mediumleftpointinganglebracketornament</string>\n      <string>mediumrightpointinganglebracketornament</string>\n      <string>hyphen</string>\n      <string>softhyphen</string>\n      <string>endash</string>\n      <string>emdash</string>\n      <string>horizontalbar</string>\n      <string>hyphentwo</string>\n      <string>nonbreakinghyphen</string>\n      <string>underscore</string>\n      <string>underscoredbl</string>\n      <string>quotesinglbase</string>\n      <string>quotedblbase</string>\n      <string>quotedblleft</string>\n      <string>quotedblright</string>\n      <string>quoteleft</string>\n      <string>quoteright</string>\n      <string>quotereversed</string>\n      <string>guillemetleft</string>\n      <string>guillemetright</string>\n      <string>guilsinglleft</string>\n      <string>guilsinglright</string>\n      <string>quotedbl</string>\n      <string>quotesingle</string>\n      <string>hyphen_hyphen.liga</string>\n      <string>hyphen_hyphen_hyphen.liga</string>\n      <string>hyphen_asciitilde.liga</string>\n      <string>parenleft_asterisk.liga</string>\n      <string>braceleft_bar.liga</string>\n      <string>braceright_numbersign.liga</string>\n      <string>bracketleft_bar.liga</string>\n      <string>bracketright_numbersign.liga</string>\n      <string>period_hyphen.liga</string>\n      <string>period_period.liga</string>\n      <string>period_period_period.liga</string>\n      <string>period_period_equal.liga</string>\n      <string>period_period_less.liga</string>\n      <string>period_question.liga</string>\n      <string>period_equal.liga</string>\n      <string>colon_colon.liga</string>\n      <string>colon_colon_colon.liga</string>\n      <string>colon_colon_equal.liga</string>\n      <string>colon_equal.liga</string>\n      <string>colon_slash_slash.liga</string>\n      <string>semicolon_semicolon.liga</string>\n      <string>exclam_period.liga</string>\n      <string>exclam_colon.liga</string>\n      <string>exclam_exclam.liga</string>\n      <string>exclam_exclam_period.liga</string>\n      <string>exclam_equal.liga</string>\n      <string>exclam_equal_equal.liga</string>\n      <string>question_period.liga</string>\n      <string>question_colon.liga</string>\n      <string>question_question.liga</string>\n      <string>question_question_equal.liga</string>\n      <string>question_equal.liga</string>\n      <string>asterisk_parenright.liga</string>\n      <string>asterisk_asterisk.liga</string>\n      <string>asterisk_asterisk_asterisk.liga</string>\n      <string>asterisk_greater.liga</string>\n      <string>asterisk_slash.liga</string>\n      <string>numbersign_parenleft.liga</string>\n      <string>numbersign_braceleft.liga</string>\n      <string>numbersign_bracketleft.liga</string>\n      <string>numbersign_colon.liga</string>\n      <string>numbersign_exclam.liga</string>\n      <string>numbersign_question.liga</string>\n      <string>numbersign_equal.liga</string>\n      <string>numbersign_underscore.liga</string>\n      <string>numbersign_underscore_parenleft.liga</string>\n      <string>slash_asterisk.liga</string>\n      <string>slash_greater.liga</string>\n      <string>slash_slash.liga</string>\n      <string>slash_slash_slash.liga</string>\n      <string>slash_backslash.liga</string>\n      <string>backslash_slash.liga</string>\n      <string>backslash_backslash.liga</string>\n      <string>underscore_underscore.liga</string>\n      <string>hyphen_middle.seq</string>\n      <string>hyphen_start.seq</string>\n      <string>hyphen_end.seq</string>\n      <string>colon_equal_middle.seq</string>\n      <string>exclam_equal_middle.seq</string>\n      <string>numbersign_end.seq</string>\n      <string>numbersign_middle.seq</string>\n      <string>numbersign_start.seq</string>\n      <string>slash_equal_end.seq</string>\n      <string>slash_equal_middle.seq</string>\n      <string>slash_equal_start.seq</string>\n      <string>slash_slash_equal_end.seq</string>\n      <string>slash_slash_equal_middle.seq</string>\n      <string>slash_slash_equal_start.seq</string>\n      <string>underscore_end.seq</string>\n      <string>underscore_middle.seq</string>\n      <string>underscore_start.seq</string>\n      <string>anoteleia</string>\n      <string>questiongreek</string>\n      <string>punctuationspace</string>\n      <string>space</string>\n      <string>nbspace</string>\n      <string>CR</string>\n      <string>lineseparator</string>\n      <string>.notdef</string>\n      <string>baht</string>\n      <string>bitcoin</string>\n      <string>cedi</string>\n      <string>cent</string>\n      <string>colonsign</string>\n      <string>currency</string>\n      <string>dollar</string>\n      <string>dong</string>\n      <string>euro</string>\n      <string>eurocurrency</string>\n      <string>florin</string>\n      <string>franc</string>\n      <string>guarani</string>\n      <string>hryvnia</string>\n      <string>kip</string>\n      <string>lari</string>\n      <string>lira</string>\n      <string>liraTurkish</string>\n      <string>manat</string>\n      <string>naira</string>\n      <string>peseta</string>\n      <string>peso</string>\n      <string>ruble</string>\n      <string>rupee</string>\n      <string>rupeeIndian</string>\n      <string>sheqel</string>\n      <string>sterling</string>\n      <string>tenge</string>\n      <string>tugrik</string>\n      <string>won</string>\n      <string>yen</string>\n      <string>bulletoperator</string>\n      <string>divisionslash</string>\n      <string>equivalence</string>\n      <string>horizontallineextension</string>\n      <string>integralbt</string>\n      <string>integraltp</string>\n      <string>logicalnotReversed</string>\n      <string>notidentical</string>\n      <string>plus</string>\n      <string>minus</string>\n      <string>multiply</string>\n      <string>divide</string>\n      <string>equal</string>\n      <string>notequal</string>\n      <string>greater</string>\n      <string>less</string>\n      <string>greaterequal</string>\n      <string>lessequal</string>\n      <string>plusminus</string>\n      <string>approxequal</string>\n      <string>asciitilde</string>\n      <string>logicalnot</string>\n      <string>asciicircum</string>\n      <string>infinity</string>\n      <string>intersection</string>\n      <string>integral</string>\n      <string>Ohm</string>\n      <string>increment</string>\n      <string>product</string>\n      <string>summation</string>\n      <string>radical</string>\n      <string>micro</string>\n      <string>partialdiff</string>\n      <string>orthogonal</string>\n      <string>percent</string>\n      <string>perthousand</string>\n      <string>ratio</string>\n      <string>strictlyequivalentto</string>\n      <string>vectorOrCrossProduct</string>\n      <string>greater.alt</string>\n      <string>less.alt</string>\n      <string>greater.center</string>\n      <string>less.center</string>\n      <string>upArrow</string>\n      <string>rightArrow</string>\n      <string>downArrow</string>\n      <string>leftArrow</string>\n      <string>leftRightArrow</string>\n      <string>upDownArrow</string>\n      <string>upDownbaseArrow</string>\n      <string>downTipLeftArrow</string>\n      <string>upDashArrow</string>\n      <string>dashdownArrow</string>\n      <string>lowerOneEighthBlock</string>\n      <string>lowerOneQuarterBlock</string>\n      <string>lowerThreeEighthsBlock</string>\n      <string>lowerHalfBlock</string>\n      <string>lowerFiveEighthsBlock</string>\n      <string>lowerThreeQuartersBlock</string>\n      <string>lowerSevenEighthsBlock</string>\n      <string>fullBlock</string>\n      <string>upperHalfBlock</string>\n      <string>upperOneEighthBlock</string>\n      <string>leftOneEighthBlock</string>\n      <string>leftOneQuarterBlock</string>\n      <string>leftThreeEighthsBlock</string>\n      <string>leftBlock</string>\n      <string>leftFiveEighthsBlock</string>\n      <string>leftThreeQuartersBlock</string>\n      <string>leftSevenEighthsBlock</string>\n      <string>rightBlock</string>\n      <string>rightOneEighthBlock</string>\n      <string>lowerLeftBlock</string>\n      <string>lowerRightBlock</string>\n      <string>upperLeftBlock</string>\n      <string>upperLeftAndLowerLeftAndLowerRightBlock</string>\n      <string>upperLeftAndLowerRightBlock</string>\n      <string>upperLeftAndUpperRightAndLowerLeftBlock</string>\n      <string>upperLeftAndUpperRightAndLowerRightBlock</string>\n      <string>upperRightBlock</string>\n      <string>upperRightAndLowerLeftBlock</string>\n      <string>upperRightAndLowerLeftAndLowerRightBlock</string>\n      <string>shadelight</string>\n      <string>shademedium</string>\n      <string>shadedark</string>\n      <string>blackCircle</string>\n      <string>whiteCircle</string>\n      <string>largeCircle</string>\n      <string>leftHalfBlackWhiteCircle</string>\n      <string>rightHalfBlackWhiteCircle</string>\n      <string>lowerHalfBlackWhiteCircle</string>\n      <string>upperHalfBlackWhiteCircle</string>\n      <string>leftHalfBlackCircle</string>\n      <string>rightHalfBlackCircle</string>\n      <string>upperRightBlackCircle</string>\n      <string>upperLeftWhiteCircle</string>\n      <string>upperLeftQuadrantWhiteCircle</string>\n      <string>lowerLeftQuadrantWhiteCircle</string>\n      <string>lowerRightQuadrantWhiteCircle</string>\n      <string>upperRightQuadrantWhiteCircle</string>\n      <string>verticalFillCircle</string>\n      <string>dottedCircle</string>\n      <string>fisheye</string>\n      <string>bullseye</string>\n      <string>whiteBullet</string>\n      <string>inverseBullet</string>\n      <string>inverseWhiteCircle</string>\n      <string>upperHalfInverseWhiteCircle</string>\n      <string>lowerHalfInverseWhiteCircle</string>\n      <string>upperHalfArc</string>\n      <string>lowerHalfArc</string>\n      <string>upperLeftArc</string>\n      <string>upperRightArc</string>\n      <string>lowerRightArc</string>\n      <string>lowerLeftArc</string>\n      <string>blackDiamond</string>\n      <string>whiteDiamond</string>\n      <string>leftHalfBlackDiamond</string>\n      <string>rightHalfBlackDiamond</string>\n      <string>topHalfBlackDiamond</string>\n      <string>bottomHalfBlackDiamond</string>\n      <string>blackInWhiteDiamond</string>\n      <string>lozenge</string>\n      <string>blackParallelogram</string>\n      <string>whiteParallelogram</string>\n      <string>blackVerticalRect</string>\n      <string>filledRect</string>\n      <string>whiteRect</string>\n      <string>whiteVerticalRect</string>\n      <string>blackSquare</string>\n      <string>whiteSquare</string>\n      <string>whiteRoundedCornersSquare</string>\n      <string>whiteInBlackSquare</string>\n      <string>dottedSquare</string>\n      <string>horizontalFillSquare</string>\n      <string>verticalFillSquare</string>\n      <string>crosshatchFillSquare</string>\n      <string>upperlefttolowerrightFillSquare</string>\n      <string>upperrighttolowerleftFillSquare</string>\n      <string>diagonalcrosshatchFillSquare</string>\n      <string>blackSmallSquare</string>\n      <string>whiteSmallSquare</string>\n      <string>leftHalfBlackSquare</string>\n      <string>rightHalfBlackSquare</string>\n      <string>upperLeftDiagonalHalfBlackSquare</string>\n      <string>lowerRightDiagonalHalfBlackSquare</string>\n      <string>verticalBisectingLineWhiteSquare</string>\n      <string>whiteUpperLeftQuadrantSquare</string>\n      <string>whiteLowerLeftQuadrantSquare</string>\n      <string>whiteLowerRightQuadrantSquare</string>\n      <string>whiteUpperRightQuadrantSquare</string>\n      <string>mediumWhiteSquare</string>\n      <string>mediumBlackSquare</string>\n      <string>mediumWhiteSmallSquare</string>\n      <string>mediumBlackSmallSquare</string>\n      <string>upBlackTriangle</string>\n      <string>rightBlackTriangle</string>\n      <string>downBlackTriangle</string>\n      <string>leftBlackTriangle</string>\n      <string>upWhiteTriangle</string>\n      <string>rightWhiteTriangle</string>\n      <string>downWhiteTriangle</string>\n      <string>leftWhiteTriangle</string>\n      <string>upWhiteTriangleWithDot</string>\n      <string>upLeftHalfBlackTriangle</string>\n      <string>upRightHalfBlackTriangle</string>\n      <string>rightBlackPointer</string>\n      <string>leftBlackPointer</string>\n      <string>rightWhitePointer</string>\n      <string>leftWhitePointer</string>\n      <string>upBlackSmallTriangle</string>\n      <string>rightBlackSmallTriangle</string>\n      <string>downBlackSmallTriangle</string>\n      <string>leftBlackSmallTriangle</string>\n      <string>upWhiteSmallTriangle</string>\n      <string>rightWhiteSmallTriangle</string>\n      <string>downWhiteSmallTriangle</string>\n      <string>leftWhiteSmallTriangle</string>\n      <string>upperRightBlackTriangle</string>\n      <string>lowerRightBlackTriangle</string>\n      <string>lowerLeftBlackTriangle</string>\n      <string>upperLeftBlackTriangle</string>\n      <string>upperRightTriangle</string>\n      <string>lowerRightTriangle</string>\n      <string>lowerLeftTriangle</string>\n      <string>upperLeftTriangle</string>\n      <string>boxDoubleDownAndHorizontal</string>\n      <string>boxDoubleDownAndLeft</string>\n      <string>boxDoubleDownAndRight</string>\n      <string>boxDoubleHorizontal</string>\n      <string>boxDoubleUpAndHorizontal</string>\n      <string>boxDoubleUpAndLeft</string>\n      <string>boxDoubleUpAndRight</string>\n      <string>boxDoubleVertical</string>\n      <string>boxDoubleVerticalAndHorizontal</string>\n      <string>boxDoubleVerticalAndLeft</string>\n      <string>boxDoubleVerticalAndRight</string>\n      <string>boxDownDoubleAndHorizontalSingle</string>\n      <string>boxDownDoubleAndLeftSingle</string>\n      <string>boxDownDoubleAndRightSingle</string>\n      <string>boxDownHeavyAndHorizontalLight</string>\n      <string>boxDownHeavyAndLeftLight</string>\n      <string>boxDownHeavyAndLeftUpLight</string>\n      <string>boxDownHeavyAndRightLight</string>\n      <string>boxDownHeavyAndRightUpLight</string>\n      <string>boxDownHeavyAndUpHorizontalLight</string>\n      <string>boxDownLightAndHorizontalHeavy</string>\n      <string>boxDownLightAndLeftHeavy</string>\n      <string>boxDownLightAndLeftUpHeavy</string>\n      <string>boxDownLightAndRightHeavy</string>\n      <string>boxDownLightAndRightUpHeavy</string>\n      <string>boxDownLightAndUpHorizontalHeavy</string>\n      <string>boxDownSingleAndHorizontalDouble</string>\n      <string>boxDownSingleAndLeftDouble</string>\n      <string>boxDownSingleAndRightDouble</string>\n      <string>boxHeavyDoubleDashHorizontal</string>\n      <string>boxHeavyDoubleDashVertical</string>\n      <string>boxHeavyDown</string>\n      <string>boxHeavyDownAndHorizontal</string>\n      <string>boxHeavyDownAndLeft</string>\n      <string>boxHeavyDownAndRight</string>\n      <string>boxHeavyHorizontal</string>\n      <string>boxHeavyLeft</string>\n      <string>boxHeavyLeftAndLightRight</string>\n      <string>boxHeavyQuadrupleDashHorizontal</string>\n      <string>boxHeavyQuadrupleDashVertical</string>\n      <string>boxHeavyRight</string>\n      <string>boxHeavyTripleDashHorizontal</string>\n      <string>boxHeavyTripleDashVertical</string>\n      <string>boxHeavyUp</string>\n      <string>boxHeavyUpAndHorizontal</string>\n      <string>boxHeavyUpAndLeft</string>\n      <string>boxHeavyUpAndLightDown</string>\n      <string>boxHeavyUpAndRight</string>\n      <string>boxHeavyVertical</string>\n      <string>boxHeavyVerticalAndHorizontal</string>\n      <string>boxHeavyVerticalAndLeft</string>\n      <string>boxHeavyVerticalAndRight</string>\n      <string>boxLeftDownHeavyAndRightUpLight</string>\n      <string>boxLeftHeavyAndRightDownLight</string>\n      <string>boxLeftHeavyAndRightUpLight</string>\n      <string>boxLeftHeavyAndRightVerticalLight</string>\n      <string>boxLeftLightAndRightDownHeavy</string>\n      <string>boxLeftLightAndRightUpHeavy</string>\n      <string>boxLeftLightAndRightVerticalHeavy</string>\n      <string>boxLeftUpHeavyAndRightDownLight</string>\n      <string>boxLightArcDownAndLeft</string>\n      <string>boxLightArcDownAndRight</string>\n      <string>boxLightArcUpAndLeft</string>\n      <string>boxLightArcUpAndRight</string>\n      <string>boxLightDiagonalCross</string>\n      <string>boxLightDiagonalUpperLeftToLowerRight</string>\n      <string>boxLightDiagonalUpperRightToLowerLeft</string>\n      <string>boxLightDoubleDashHorizontal</string>\n      <string>boxLightDoubleDashVertical</string>\n      <string>boxLightDown</string>\n      <string>boxLightDownAndHorizontal</string>\n      <string>boxLightDownAndLeft</string>\n      <string>boxLightDownAndRight</string>\n      <string>boxLightHorizontal</string>\n      <string>boxLightLeft</string>\n      <string>boxLightLeftAndHeavyRight</string>\n      <string>boxLightQuadrupleDashHorizontal</string>\n      <string>boxLightQuadrupleDashVertical</string>\n      <string>boxLightRight</string>\n      <string>boxLightTripleDashHorizontal</string>\n      <string>boxLightTripleDashVertical</string>\n      <string>boxLightUp</string>\n      <string>boxLightUpAndHeavyDown</string>\n      <string>boxLightUpAndHorizontal</string>\n      <string>boxLightUpAndLeft</string>\n      <string>boxLightUpAndRight</string>\n      <string>boxLightVertical</string>\n      <string>boxLightVerticalAndHorizontal</string>\n      <string>boxLightVerticalAndLeft</string>\n      <string>boxLightVerticalAndRight</string>\n      <string>boxRightDownHeavyAndLeftUpLight</string>\n      <string>boxRightHeavyAndLeftDownLight</string>\n      <string>boxRightHeavyAndLeftUpLight</string>\n      <string>boxRightHeavyAndLeftVerticalLight</string>\n      <string>boxRightLightAndLeftDownHeavy</string>\n      <string>boxRightLightAndLeftUpHeavy</string>\n      <string>boxRightLightAndLeftVerticalHeavy</string>\n      <string>boxRightUpHeavyAndLeftDownLight</string>\n      <string>boxUpDoubleAndHorizontalSingle</string>\n      <string>boxUpDoubleAndLeftSingle</string>\n      <string>boxUpDoubleAndRightSingle</string>\n      <string>boxUpHeavyAndDownHorizontalLight</string>\n      <string>boxUpHeavyAndHorizontalLight</string>\n      <string>boxUpHeavyAndLeftDownLight</string>\n      <string>boxUpHeavyAndLeftLight</string>\n      <string>boxUpHeavyAndRightDownLight</string>\n      <string>boxUpHeavyAndRightLight</string>\n      <string>boxUpLightAndDownHorizontalHeavy</string>\n      <string>boxUpLightAndHorizontalHeavy</string>\n      <string>boxUpLightAndLeftDownHeavy</string>\n      <string>boxUpLightAndLeftHeavy</string>\n      <string>boxUpLightAndRightDownHeavy</string>\n      <string>boxUpLightAndRightHeavy</string>\n      <string>boxUpSingleAndHorizontalDouble</string>\n      <string>boxUpSingleAndLeftDouble</string>\n      <string>boxUpSingleAndRightDouble</string>\n      <string>boxVerticalDoubleAndHorizontalSingle</string>\n      <string>boxVerticalDoubleAndLeftSingle</string>\n      <string>boxVerticalDoubleAndRightSingle</string>\n      <string>boxVerticalHeavyAndHorizontalLight</string>\n      <string>boxVerticalHeavyAndLeftLight</string>\n      <string>boxVerticalHeavyAndRightLight</string>\n      <string>boxVerticalLightAndHorizontalHeavy</string>\n      <string>boxVerticalLightAndLeftHeavy</string>\n      <string>boxVerticalLightAndRightHeavy</string>\n      <string>boxVerticalSingleAndHorizontalDouble</string>\n      <string>boxVerticalSingleAndLeftDouble</string>\n      <string>boxVerticalSingleAndRightDouble</string>\n      <string>lowerOneEighthBlock.stypo</string>\n      <string>lowerOneQuarterBlock.stypo</string>\n      <string>lowerThreeEighthsBlock.stypo</string>\n      <string>lowerHalfBlock.stypo</string>\n      <string>lowerFiveEighthsBlock.stypo</string>\n      <string>lowerThreeQuartersBlock.stypo</string>\n      <string>lowerSevenEighthsBlock.stypo</string>\n      <string>fullBlock.stypo</string>\n      <string>upperHalfBlock.stypo</string>\n      <string>upperOneEighthBlock.stypo</string>\n      <string>leftOneEighthBlock.stypo</string>\n      <string>leftOneQuarterBlock.stypo</string>\n      <string>leftThreeEighthsBlock.stypo</string>\n      <string>leftBlock.stypo</string>\n      <string>leftFiveEighthsBlock.stypo</string>\n      <string>leftThreeQuartersBlock.stypo</string>\n      <string>leftSevenEighthsBlock.stypo</string>\n      <string>rightBlock.stypo</string>\n      <string>rightOneEighthBlock.stypo</string>\n      <string>lowerLeftBlock.stypo</string>\n      <string>lowerRightBlock.stypo</string>\n      <string>upperLeftBlock.stypo</string>\n      <string>upperLeftAndLowerLeftAndLowerRightBlock.stypo</string>\n      <string>upperLeftAndLowerRightBlock.stypo</string>\n      <string>upperLeftAndUpperRightAndLowerLeftBlock.stypo</string>\n      <string>upperLeftAndUpperRightAndLowerRightBlock.stypo</string>\n      <string>upperRightBlock.stypo</string>\n      <string>upperRightAndLowerLeftBlock.stypo</string>\n      <string>upperRightAndLowerLeftAndLowerRightBlock.stypo</string>\n      <string>shadelight.stypo</string>\n      <string>shademedium.stypo</string>\n      <string>shadedark.stypo</string>\n      <string>boxDoubleDownAndHorizontal.stypo</string>\n      <string>boxDoubleDownAndLeft.stypo</string>\n      <string>boxDoubleDownAndRight.stypo</string>\n      <string>boxDoubleHorizontal.stypo</string>\n      <string>boxDoubleUpAndHorizontal.stypo</string>\n      <string>boxDoubleUpAndLeft.stypo</string>\n      <string>boxDoubleUpAndRight.stypo</string>\n      <string>boxDoubleVertical.stypo</string>\n      <string>boxDoubleVerticalAndHorizontal.stypo</string>\n      <string>boxDoubleVerticalAndLeft.stypo</string>\n      <string>boxDoubleVerticalAndRight.stypo</string>\n      <string>boxDownDoubleAndHorizontalSingle.stypo</string>\n      <string>boxDownDoubleAndLeftSingle.stypo</string>\n      <string>boxDownDoubleAndRightSingle.stypo</string>\n      <string>boxDownHeavyAndHorizontalLight.stypo</string>\n      <string>boxDownHeavyAndLeftLight.stypo</string>\n      <string>boxDownHeavyAndLeftUpLight.stypo</string>\n      <string>boxDownHeavyAndRightLight.stypo</string>\n      <string>boxDownHeavyAndRightUpLight.stypo</string>\n      <string>boxDownHeavyAndUpHorizontalLight.stypo</string>\n      <string>boxDownLightAndHorizontalHeavy.stypo</string>\n      <string>boxDownLightAndLeftHeavy.stypo</string>\n      <string>boxDownLightAndLeftUpHeavy.stypo</string>\n      <string>boxDownLightAndRightHeavy.stypo</string>\n      <string>boxDownLightAndRightUpHeavy.stypo</string>\n      <string>boxDownLightAndUpHorizontalHeavy.stypo</string>\n      <string>boxDownSingleAndHorizontalDouble.stypo</string>\n      <string>boxDownSingleAndLeftDouble.stypo</string>\n      <string>boxDownSingleAndRightDouble.stypo</string>\n      <string>boxHeavyDoubleDashHorizontal.stypo</string>\n      <string>boxHeavyDoubleDashVertical.stypo</string>\n      <string>boxHeavyDown.stypo</string>\n      <string>boxHeavyDownAndHorizontal.stypo</string>\n      <string>boxHeavyDownAndLeft.stypo</string>\n      <string>boxHeavyDownAndRight.stypo</string>\n      <string>boxHeavyHorizontal.stypo</string>\n      <string>boxHeavyLeft.stypo</string>\n      <string>boxHeavyLeftAndLightRight.stypo</string>\n      <string>boxHeavyQuadrupleDashHorizontal.stypo</string>\n      <string>boxHeavyQuadrupleDashVertical.stypo</string>\n      <string>boxHeavyRight.stypo</string>\n      <string>boxHeavyTripleDashHorizontal.stypo</string>\n      <string>boxHeavyTripleDashVertical.stypo</string>\n      <string>boxHeavyUp.stypo</string>\n      <string>boxHeavyUpAndHorizontal.stypo</string>\n      <string>boxHeavyUpAndLeft.stypo</string>\n      <string>boxHeavyUpAndLightDown.stypo</string>\n      <string>boxHeavyUpAndRight.stypo</string>\n      <string>boxHeavyVertical.stypo</string>\n      <string>boxHeavyVerticalAndHorizontal.stypo</string>\n      <string>boxHeavyVerticalAndLeft.stypo</string>\n      <string>boxHeavyVerticalAndRight.stypo</string>\n      <string>boxLeftDownHeavyAndRightUpLight.stypo</string>\n      <string>boxLeftHeavyAndRightDownLight.stypo</string>\n      <string>boxLeftHeavyAndRightUpLight.stypo</string>\n      <string>boxLeftHeavyAndRightVerticalLight.stypo</string>\n      <string>boxLeftLightAndRightDownHeavy.stypo</string>\n      <string>boxLeftLightAndRightUpHeavy.stypo</string>\n      <string>boxLeftLightAndRightVerticalHeavy.stypo</string>\n      <string>boxLeftUpHeavyAndRightDownLight.stypo</string>\n      <string>boxLightArcDownAndLeft.stypo</string>\n      <string>boxLightArcDownAndRight.stypo</string>\n      <string>boxLightArcUpAndLeft.stypo</string>\n      <string>boxLightArcUpAndRight.stypo</string>\n      <string>boxLightDiagonalCross.stypo</string>\n      <string>boxLightDiagonalUpperLeftToLowerRight.stypo</string>\n      <string>boxLightDiagonalUpperRightToLowerLeft.stypo</string>\n      <string>boxLightDoubleDashHorizontal.stypo</string>\n      <string>boxLightDoubleDashVertical.stypo</string>\n      <string>boxLightDown.stypo</string>\n      <string>boxLightDownAndHorizontal.stypo</string>\n      <string>boxLightDownAndLeft.stypo</string>\n      <string>boxLightDownAndRight.stypo</string>\n      <string>boxLightHorizontal.stypo</string>\n      <string>boxLightLeft.stypo</string>\n      <string>boxLightLeftAndHeavyRight.stypo</string>\n      <string>boxLightQuadrupleDashHorizontal.stypo</string>\n      <string>boxLightQuadrupleDashVertical.stypo</string>\n      <string>boxLightRight.stypo</string>\n      <string>boxLightTripleDashHorizontal.stypo</string>\n      <string>boxLightTripleDashVertical.stypo</string>\n      <string>boxLightUp.stypo</string>\n      <string>boxLightUpAndHeavyDown.stypo</string>\n      <string>boxLightUpAndHorizontal.stypo</string>\n      <string>boxLightUpAndLeft.stypo</string>\n      <string>boxLightUpAndRight.stypo</string>\n      <string>boxLightVertical.stypo</string>\n      <string>boxLightVerticalAndHorizontal.stypo</string>\n      <string>boxLightVerticalAndLeft.stypo</string>\n      <string>boxLightVerticalAndRight.stypo</string>\n      <string>boxRightDownHeavyAndLeftUpLight.stypo</string>\n      <string>boxRightHeavyAndLeftDownLight.stypo</string>\n      <string>boxRightHeavyAndLeftUpLight.stypo</string>\n      <string>boxRightHeavyAndLeftVerticalLight.stypo</string>\n      <string>boxRightLightAndLeftDownHeavy.stypo</string>\n      <string>boxRightLightAndLeftUpHeavy.stypo</string>\n      <string>boxRightLightAndLeftVerticalHeavy.stypo</string>\n      <string>boxRightUpHeavyAndLeftDownLight.stypo</string>\n      <string>boxUpDoubleAndHorizontalSingle.stypo</string>\n      <string>boxUpDoubleAndLeftSingle.stypo</string>\n      <string>boxUpDoubleAndRightSingle.stypo</string>\n      <string>boxUpHeavyAndDownHorizontalLight.stypo</string>\n      <string>boxUpHeavyAndHorizontalLight.stypo</string>\n      <string>boxUpHeavyAndLeftDownLight.stypo</string>\n      <string>boxUpHeavyAndLeftLight.stypo</string>\n      <string>boxUpHeavyAndRightDownLight.stypo</string>\n      <string>boxUpHeavyAndRightLight.stypo</string>\n      <string>boxUpLightAndDownHorizontalHeavy.stypo</string>\n      <string>boxUpLightAndHorizontalHeavy.stypo</string>\n      <string>boxUpLightAndLeftDownHeavy.stypo</string>\n      <string>boxUpLightAndLeftHeavy.stypo</string>\n      <string>boxUpLightAndRightDownHeavy.stypo</string>\n      <string>boxUpLightAndRightHeavy.stypo</string>\n      <string>boxUpSingleAndHorizontalDouble.stypo</string>\n      <string>boxUpSingleAndLeftDouble.stypo</string>\n      <string>boxUpSingleAndRightDouble.stypo</string>\n      <string>boxVerticalDoubleAndHorizontalSingle.stypo</string>\n      <string>boxVerticalDoubleAndLeftSingle.stypo</string>\n      <string>boxVerticalDoubleAndRightSingle.stypo</string>\n      <string>boxVerticalHeavyAndHorizontalLight.stypo</string>\n      <string>boxVerticalHeavyAndLeftLight.stypo</string>\n      <string>boxVerticalHeavyAndRightLight.stypo</string>\n      <string>boxVerticalLightAndHorizontalHeavy.stypo</string>\n      <string>boxVerticalLightAndLeftHeavy.stypo</string>\n      <string>boxVerticalLightAndRightHeavy.stypo</string>\n      <string>boxVerticalSingleAndHorizontalDouble.stypo</string>\n      <string>boxVerticalSingleAndLeftDouble.stypo</string>\n      <string>boxVerticalSingleAndRightDouble.stypo</string>\n      <string>reversedRotatedFloralHeartBullet</string>\n      <string>whiteSmilingFace</string>\n      <string>blackSmilingFace</string>\n      <string>sunWithRays</string>\n      <string>venus</string>\n      <string>mars</string>\n      <string>spadeBlackSuit</string>\n      <string>clubBlackSuit</string>\n      <string>heartBlackSuit</string>\n      <string>diamondBlackSuit</string>\n      <string>checkmark</string>\n      <string>rotatedFloralHeartBullet</string>\n      <string>acknowledgeControl</string>\n      <string>backspaceControl</string>\n      <string>at</string>\n      <string>ampersand</string>\n      <string>paragraph</string>\n      <string>section</string>\n      <string>copyright</string>\n      <string>registered</string>\n      <string>published</string>\n      <string>trademark</string>\n      <string>careof</string>\n      <string>degree</string>\n      <string>minute</string>\n      <string>second</string>\n      <string>bar</string>\n      <string>brokenbar</string>\n      <string>literSign</string>\n      <string>dagger</string>\n      <string>daggerdbl</string>\n      <string>estimated</string>\n      <string>numero</string>\n      <string>bellControl</string>\n      <string>blackHexagon</string>\n      <string>blackHorizontalEllipse</string>\n      <string>blackLargeCircle</string>\n      <string>blackLargeSquare</string>\n      <string>blackMediumDiamond</string>\n      <string>blackMediumDownTriangleCentred</string>\n      <string>blackMediumLeftTriangleCentred</string>\n      <string>blackMediumLozenge</string>\n      <string>blackMediumRightTriangleCentred</string>\n      <string>blackMediumUpTriangleCentred</string>\n      <string>blackPentagon</string>\n      <string>blackSmallDiamond</string>\n      <string>blackSmallLozenge</string>\n      <string>blackVerticalEllipse</string>\n      <string>blackVerysmallSquare</string>\n      <string>blank</string>\n      <string>blankSymbol</string>\n      <string>bottomHalfBlackCircle</string>\n      <string>cancelControl</string>\n      <string>carriageReturnControl</string>\n      <string>dataLinkEscapeControl</string>\n      <string>deleteControl</string>\n      <string>deleteFormTwoControl</string>\n      <string>deviceControlFourControl</string>\n      <string>deviceControlOneControl</string>\n      <string>deviceControlThreeControl</string>\n      <string>deviceControlTwoControl</string>\n      <string>endOfMediumControl</string>\n      <string>endOfTextControl</string>\n      <string>endOfTransmissionBlockControl</string>\n      <string>endOfTransmissionControl</string>\n      <string>enquiryControl</string>\n      <string>escapeControl</string>\n      <string>fileSeparatorControl</string>\n      <string>formFeedControl</string>\n      <string>groupSeparatorControl</string>\n      <string>horizontalBlackHexagon</string>\n      <string>horizontalTabulationControl</string>\n      <string>house</string>\n      <string>returnsymbol</string>\n      <string>lineFeedControl</string>\n      <string>lowerHalfWhiteSquare</string>\n      <string>lowerLeftHalfWhiteSquare</string>\n      <string>negativeAcknowledgeControl</string>\n      <string>newlineControl</string>\n      <string>nullControl</string>\n      <string>prescription</string>\n      <string>recordSeparatorControl</string>\n      <string>replacementCharacter</string>\n      <string>shiftInControl</string>\n      <string>shiftOutControl</string>\n      <string>spaceControl</string>\n      <string>startOfHeadingControl</string>\n      <string>startOfTextControl</string>\n      <string>substituteControl</string>\n      <string>substituteFormTwoControl</string>\n      <string>synchronousIdleControl</string>\n      <string>topHalfBlackCircle</string>\n      <string>topHalfWhiteSquare</string>\n      <string>topRightHalfWhiteSquare</string>\n      <string>unitSeparatorControl</string>\n      <string>verticalTabulationControl</string>\n      <string>whiteHexagon</string>\n      <string>whiteHorizontalEllipse</string>\n      <string>whiteLargeSquare</string>\n      <string>whiteMediumDiamond</string>\n      <string>whiteMediumLozenge</string>\n      <string>whitePentagon</string>\n      <string>whiteSmallLozenge</string>\n      <string>whiteVerticalEllipse</string>\n      <string>whiteVerysmallSquare</string>\n      <string>acknowledgeControl.ss20</string>\n      <string>backspaceControl.ss20</string>\n      <string>bellControl.ss20</string>\n      <string>cancelControl.ss20</string>\n      <string>carriageReturnControl.ss20</string>\n      <string>dataLinkEscapeControl.ss20</string>\n      <string>endOfMediumControl.ss20</string>\n      <string>endOfTextControl.ss20</string>\n      <string>endOfTransmissionBlockControl.ss20</string>\n      <string>endOfTransmissionControl.ss20</string>\n      <string>enquiryControl.ss20</string>\n      <string>escapeControl.ss20</string>\n      <string>formFeedControl.ss20</string>\n      <string>horizontalTabulationControl.ss20</string>\n      <string>lineFeedControl.ss20</string>\n      <string>negativeAcknowledgeControl.ss20</string>\n      <string>shiftInControl.ss20</string>\n      <string>shiftOutControl.ss20</string>\n      <string>startOfHeadingControl.ss20</string>\n      <string>startOfTextControl.ss20</string>\n      <string>substituteControl.ss20</string>\n      <string>synchronousIdleControl.ss20</string>\n      <string>verticalTabulationControl.ss20</string>\n      <string>ampersand_ampersand.liga</string>\n      <string>bar_braceright.liga</string>\n      <string>bar_bracketright.liga</string>\n      <string>bar_bar.liga</string>\n      <string>bar_bar_bar.liga</string>\n      <string>bar_bar_bar_greater.liga</string>\n      <string>bar_bar_greater.liga</string>\n      <string>bar_greater.liga</string>\n      <string>dollar_greater.liga</string>\n      <string>plus_plus.liga</string>\n      <string>plus_plus_plus.liga</string>\n      <string>plus_greater.liga</string>\n      <string>equal_equal.liga</string>\n      <string>equal_equal_equal.liga</string>\n      <string>equal_greater_greater.liga</string>\n      <string>equal_less_less.liga</string>\n      <string>greater_equal.liga</string>\n      <string>greater_greater.liga</string>\n      <string>greater_greater_equal.liga</string>\n      <string>greater_greater_greater.liga</string>\n      <string>less_exclam_hyphen_hyphen.liga</string>\n      <string>less_asterisk.liga</string>\n      <string>less_asterisk_greater.liga</string>\n      <string>less_bar.liga</string>\n      <string>less_bar_bar.liga</string>\n      <string>less_bar_bar_bar.liga</string>\n      <string>less_bar_greater.liga</string>\n      <string>less_dollar.liga</string>\n      <string>less_dollar_greater.liga</string>\n      <string>less_plus.liga</string>\n      <string>less_plus_greater.liga</string>\n      <string>less_equal.liga</string>\n      <string>less_greater.liga</string>\n      <string>less_less.liga</string>\n      <string>less_less_equal.liga</string>\n      <string>less_less_less.liga</string>\n      <string>less_asciitilde.liga</string>\n      <string>less_asciitilde_greater.liga</string>\n      <string>less_asciitilde_asciitilde.liga</string>\n      <string>less_slash.liga</string>\n      <string>less_slash_greater.liga</string>\n      <string>asciitilde_hyphen.liga</string>\n      <string>asciitilde_at.liga</string>\n      <string>asciitilde_equal.liga</string>\n      <string>asciitilde_greater.liga</string>\n      <string>asciitilde_asciitilde.liga</string>\n      <string>asciitilde_asciitilde_greater.liga</string>\n      <string>asciicircum_equal.liga</string>\n      <string>percent_percent.liga</string>\n      <string>bar_equal_middle.seq</string>\n      <string>bar_hyphen_middle.seq</string>\n      <string>bar_underscore_middle.seq</string>\n      <string>bar_bar_equal_middle.seq</string>\n      <string>bar_bar_equal_end.seq</string>\n      <string>bar_bar_equal_start.seq</string>\n      <string>bar_bar_hyphen_middle.seq</string>\n      <string>bar_bar_hyphen_end.seq</string>\n      <string>bar_bar_hyphen_start.seq</string>\n      <string>bar_equal_end.seq</string>\n      <string>bar_equal_start.seq</string>\n      <string>bar_hyphen_end.seq</string>\n      <string>bar_hyphen_start.seq</string>\n      <string>equal_middle.seq</string>\n      <string>equal_end.seq</string>\n      <string>equal_start.seq</string>\n      <string>greater_equal_middle.seq</string>\n      <string>greater_hyphen_middle.seq</string>\n      <string>greater_greater_equal_middle.seq</string>\n      <string>greater_greater_equal_end.seq</string>\n      <string>greater_greater_equal_start.seq</string>\n      <string>greater_equal_start.seq</string>\n      <string>greater_equal_end.seq</string>\n      <string>greater_greater_hyphen_middle.seq</string>\n      <string>greater_greater_hyphen_end.seq</string>\n      <string>greater_greater_hyphen_start.seq</string>\n      <string>greater_hyphen_start.seq</string>\n      <string>greater_hyphen_end.seq</string>\n      <string>less_equal_middle.seq</string>\n      <string>less_hyphen_middle.seq</string>\n      <string>less_less_equal_middle.seq</string>\n      <string>less_less_equal_end.seq</string>\n      <string>less_less_equal_start.seq</string>\n      <string>less_equal_end.seq</string>\n      <string>less_equal_start.seq</string>\n      <string>less_less_hyphen_middle.seq</string>\n      <string>less_less_hyphen_end.seq</string>\n      <string>less_less_hyphen_start.seq</string>\n      <string>less_hyphen_end.seq</string>\n      <string>less_hyphen_start.seq</string>\n      <string>note-musical</string>\n      <string>notedbl-musical</string>\n      <string>blank-braille</string>\n      <string>dots1-braille</string>\n      <string>dots12-braille</string>\n      <string>dots123-braille</string>\n      <string>dots1234-braille</string>\n      <string>dots12345-braille</string>\n      <string>dots123456-braille</string>\n      <string>dots1234567-braille</string>\n      <string>dots12345678-braille</string>\n      <string>dots1234568-braille</string>\n      <string>dots123457-braille</string>\n      <string>dots1234578-braille</string>\n      <string>dots123458-braille</string>\n      <string>dots12346-braille</string>\n      <string>dots123467-braille</string>\n      <string>dots1234678-braille</string>\n      <string>dots123468-braille</string>\n      <string>dots12347-braille</string>\n      <string>dots123478-braille</string>\n      <string>dots12348-braille</string>\n      <string>dots1235-braille</string>\n      <string>dots12356-braille</string>\n      <string>dots123567-braille</string>\n      <string>dots1235678-braille</string>\n      <string>dots123568-braille</string>\n      <string>dots12357-braille</string>\n      <string>dots123578-braille</string>\n      <string>dots12358-braille</string>\n      <string>dots1236-braille</string>\n      <string>dots12367-braille</string>\n      <string>dots123678-braille</string>\n      <string>dots12368-braille</string>\n      <string>dots1237-braille</string>\n      <string>dots12378-braille</string>\n      <string>dots1238-braille</string>\n      <string>dots124-braille</string>\n      <string>dots1245-braille</string>\n      <string>dots12456-braille</string>\n      <string>dots124567-braille</string>\n      <string>dots1245678-braille</string>\n      <string>dots124568-braille</string>\n      <string>dots12457-braille</string>\n      <string>dots124578-braille</string>\n      <string>dots12458-braille</string>\n      <string>dots1246-braille</string>\n      <string>dots12467-braille</string>\n      <string>dots124678-braille</string>\n      <string>dots12468-braille</string>\n      <string>dots1247-braille</string>\n      <string>dots12478-braille</string>\n      <string>dots1248-braille</string>\n      <string>dots125-braille</string>\n      <string>dots1256-braille</string>\n      <string>dots12567-braille</string>\n      <string>dots125678-braille</string>\n      <string>dots12568-braille</string>\n      <string>dots1257-braille</string>\n      <string>dots12578-braille</string>\n      <string>dots1258-braille</string>\n      <string>dots126-braille</string>\n      <string>dots1267-braille</string>\n      <string>dots12678-braille</string>\n      <string>dots1268-braille</string>\n      <string>dots127-braille</string>\n      <string>dots1278-braille</string>\n      <string>dots128-braille</string>\n      <string>dots13-braille</string>\n      <string>dots134-braille</string>\n      <string>dots1345-braille</string>\n      <string>dots13456-braille</string>\n      <string>dots134567-braille</string>\n      <string>dots1345678-braille</string>\n      <string>dots134568-braille</string>\n      <string>dots13457-braille</string>\n      <string>dots134578-braille</string>\n      <string>dots13458-braille</string>\n      <string>dots1346-braille</string>\n      <string>dots13467-braille</string>\n      <string>dots134678-braille</string>\n      <string>dots13468-braille</string>\n      <string>dots1347-braille</string>\n      <string>dots13478-braille</string>\n      <string>dots1348-braille</string>\n      <string>dots135-braille</string>\n      <string>dots1356-braille</string>\n      <string>dots13567-braille</string>\n      <string>dots135678-braille</string>\n      <string>dots13568-braille</string>\n      <string>dots1357-braille</string>\n      <string>dots13578-braille</string>\n      <string>dots1358-braille</string>\n      <string>dots136-braille</string>\n      <string>dots1367-braille</string>\n      <string>dots13678-braille</string>\n      <string>dots1368-braille</string>\n      <string>dots137-braille</string>\n      <string>dots1378-braille</string>\n      <string>dots138-braille</string>\n      <string>dots14-braille</string>\n      <string>dots145-braille</string>\n      <string>dots1456-braille</string>\n      <string>dots14567-braille</string>\n      <string>dots145678-braille</string>\n      <string>dots14568-braille</string>\n      <string>dots1457-braille</string>\n      <string>dots14578-braille</string>\n      <string>dots1458-braille</string>\n      <string>dots146-braille</string>\n      <string>dots1467-braille</string>\n      <string>dots14678-braille</string>\n      <string>dots1468-braille</string>\n      <string>dots147-braille</string>\n      <string>dots1478-braille</string>\n      <string>dots148-braille</string>\n      <string>dots15-braille</string>\n      <string>dots156-braille</string>\n      <string>dots1567-braille</string>\n      <string>dots15678-braille</string>\n      <string>dots1568-braille</string>\n      <string>dots157-braille</string>\n      <string>dots1578-braille</string>\n      <string>dots158-braille</string>\n      <string>dots16-braille</string>\n      <string>dots167-braille</string>\n      <string>dots1678-braille</string>\n      <string>dots168-braille</string>\n      <string>dots17-braille</string>\n      <string>dots178-braille</string>\n      <string>dots18-braille</string>\n      <string>dots2-braille</string>\n      <string>dots23-braille</string>\n      <string>dots234-braille</string>\n      <string>dots2345-braille</string>\n      <string>dots23456-braille</string>\n      <string>dots234567-braille</string>\n      <string>dots2345678-braille</string>\n      <string>dots234568-braille</string>\n      <string>dots23457-braille</string>\n      <string>dots234578-braille</string>\n      <string>dots23458-braille</string>\n      <string>dots2346-braille</string>\n      <string>dots23467-braille</string>\n      <string>dots234678-braille</string>\n      <string>dots23468-braille</string>\n      <string>dots2347-braille</string>\n      <string>dots23478-braille</string>\n      <string>dots2348-braille</string>\n      <string>dots235-braille</string>\n      <string>dots2356-braille</string>\n      <string>dots23567-braille</string>\n      <string>dots235678-braille</string>\n      <string>dots23568-braille</string>\n      <string>dots2357-braille</string>\n      <string>dots23578-braille</string>\n      <string>dots2358-braille</string>\n      <string>dots236-braille</string>\n      <string>dots2367-braille</string>\n      <string>dots23678-braille</string>\n      <string>dots2368-braille</string>\n      <string>dots237-braille</string>\n      <string>dots2378-braille</string>\n      <string>dots238-braille</string>\n      <string>dots24-braille</string>\n      <string>dots245-braille</string>\n      <string>dots2456-braille</string>\n      <string>dots24567-braille</string>\n      <string>dots245678-braille</string>\n      <string>dots24568-braille</string>\n      <string>dots2457-braille</string>\n      <string>dots24578-braille</string>\n      <string>dots2458-braille</string>\n      <string>dots246-braille</string>\n      <string>dots2467-braille</string>\n      <string>dots24678-braille</string>\n      <string>dots2468-braille</string>\n      <string>dots247-braille</string>\n      <string>dots2478-braille</string>\n      <string>dots248-braille</string>\n      <string>dots25-braille</string>\n      <string>dots256-braille</string>\n      <string>dots2567-braille</string>\n      <string>dots25678-braille</string>\n      <string>dots2568-braille</string>\n      <string>dots257-braille</string>\n      <string>dots2578-braille</string>\n      <string>dots258-braille</string>\n      <string>dots26-braille</string>\n      <string>dots267-braille</string>\n      <string>dots2678-braille</string>\n      <string>dots268-braille</string>\n      <string>dots27-braille</string>\n      <string>dots278-braille</string>\n      <string>dots28-braille</string>\n      <string>dots3-braille</string>\n      <string>dots34-braille</string>\n      <string>dots345-braille</string>\n      <string>dots3456-braille</string>\n      <string>dots34567-braille</string>\n      <string>dots345678-braille</string>\n      <string>dots34568-braille</string>\n      <string>dots3457-braille</string>\n      <string>dots34578-braille</string>\n      <string>dots3458-braille</string>\n      <string>dots346-braille</string>\n      <string>dots3467-braille</string>\n      <string>dots34678-braille</string>\n      <string>dots3468-braille</string>\n      <string>dots347-braille</string>\n      <string>dots3478-braille</string>\n      <string>dots348-braille</string>\n      <string>dots35-braille</string>\n      <string>dots356-braille</string>\n      <string>dots3567-braille</string>\n      <string>dots35678-braille</string>\n      <string>dots3568-braille</string>\n      <string>dots357-braille</string>\n      <string>dots3578-braille</string>\n      <string>dots358-braille</string>\n      <string>dots36-braille</string>\n      <string>dots367-braille</string>\n      <string>dots3678-braille</string>\n      <string>dots368-braille</string>\n      <string>dots37-braille</string>\n      <string>dots378-braille</string>\n      <string>dots38-braille</string>\n      <string>dots4-braille</string>\n      <string>dots45-braille</string>\n      <string>dots456-braille</string>\n      <string>dots4567-braille</string>\n      <string>dots45678-braille</string>\n      <string>dots4568-braille</string>\n      <string>dots457-braille</string>\n      <string>dots4578-braille</string>\n      <string>dots458-braille</string>\n      <string>dots46-braille</string>\n      <string>dots467-braille</string>\n      <string>dots4678-braille</string>\n      <string>dots468-braille</string>\n      <string>dots47-braille</string>\n      <string>dots478-braille</string>\n      <string>dots48-braille</string>\n      <string>dots5-braille</string>\n      <string>dots56-braille</string>\n      <string>dots567-braille</string>\n      <string>dots5678-braille</string>\n      <string>dots568-braille</string>\n      <string>dots57-braille</string>\n      <string>dots578-braille</string>\n      <string>dots58-braille</string>\n      <string>dots6-braille</string>\n      <string>dots67-braille</string>\n      <string>dots678-braille</string>\n      <string>dots68-braille</string>\n      <string>dots7-braille</string>\n      <string>dots78-braille</string>\n      <string>dots8-braille</string>\n      <string>numeral-greek</string>\n      <string>lowernumeral-greek</string>\n      <string>apostrophemod</string>\n      <string>colontriangularmod</string>\n      <string>commaturnedmod</string>\n      <string>firsttonechinese</string>\n      <string>glottalstopmod</string>\n      <string>dieresiscomb</string>\n      <string>dotaccentcomb</string>\n      <string>gravecomb</string>\n      <string>acutecomb</string>\n      <string>hungarumlautcomb</string>\n      <string>circumflexcomb</string>\n      <string>caroncomb</string>\n      <string>brevecomb</string>\n      <string>ringcomb</string>\n      <string>tildecomb</string>\n      <string>macroncomb</string>\n      <string>hookabovecomb</string>\n      <string>commaturnedabovecomb</string>\n      <string>commaabovecomb</string>\n      <string>commaaboverightcomb</string>\n      <string>horncomb</string>\n      <string>dotbelowcomb</string>\n      <string>ringbelowcomb</string>\n      <string>commaaccentcomb</string>\n      <string>cedillacomb</string>\n      <string>ogonekcomb</string>\n      <string>macronbelowcomb</string>\n      <string>lowlinecomb</string>\n      <string>gravetonecomb</string>\n      <string>acutetonecomb</string>\n      <string>dieresis</string>\n      <string>dotaccent</string>\n      <string>grave</string>\n      <string>acute</string>\n      <string>hungarumlaut</string>\n      <string>circumflex</string>\n      <string>caron</string>\n      <string>breve</string>\n      <string>ring</string>\n      <string>tilde</string>\n      <string>macron</string>\n      <string>cedilla</string>\n      <string>ogonek</string>\n      <string>dieresiscomb.case</string>\n      <string>dotaccentcomb.case</string>\n      <string>gravecomb.case</string>\n      <string>acutecomb.case</string>\n      <string>hungarumlautcomb.case</string>\n      <string>circumflexcomb.case</string>\n      <string>caroncomb.case</string>\n      <string>brevecomb.case</string>\n      <string>ringcomb.case</string>\n      <string>tildecomb.case</string>\n      <string>macroncomb.case</string>\n      <string>hookabovecomb.case</string>\n      <string>horncomb.case</string>\n      <string>acutecomb.loclPLK</string>\n      <string>acutecomb.case.loclPLK</string>\n      <string>perispomenicomb</string>\n      <string>tonos</string>\n      <string>tonos.case</string>\n      <string>dieresistonos</string>\n      <string>brevecomb-cy</string>\n      <string>brevecomb-cy.case</string>\n      <string>checkerBoardDeleteApple2</string>\n      <string>checkerBoardDeleteTrs80</string>\n      <string>checkerBoardDeleteAmstradCpc</string>\n      <string>checkerBoardDeleteAmstradCpc.stypo</string>\n      <string>checkerBoardFill</string>\n      <string>checkerBoardFill.stypo</string>\n      <string>checkerBoardFillInverse</string>\n      <string>checkerBoardFillInverse.stypo</string>\n      <string>blockQuadrant-UC</string>\n      <string>blockQuadrant-UC.stypo</string>\n      <string>blockQuadrant-LC</string>\n      <string>blockQuadrant-LC.stypo</string>\n      <string>blockQuadrant-ML</string>\n      <string>blockQuadrant-ML.stypo</string>\n      <string>blockQuadrant-MR</string>\n      <string>blockQuadrant-MR.stypo</string>\n      <string>blockTriangle-1</string>\n      <string>blockTriangle-1.stypo</string>\n      <string>blockTriangle-2</string>\n      <string>blockTriangle-2.stypo</string>\n      <string>blockTriangle-3</string>\n      <string>blockTriangle-3.stypo</string>\n      <string>blockTriangle-4</string>\n      <string>blockTriangle-4.stypo</string>\n      <string>blockTriangle-14</string>\n      <string>blockTriangle-14.stypo</string>\n      <string>blockTriangle-23</string>\n      <string>blockTriangle-23.stypo</string>\n      <string>blockTriangle-123</string>\n      <string>blockTriangle-123.stypo</string>\n      <string>blockTriangle-124</string>\n      <string>blockTriangle-124.stypo</string>\n      <string>blockTriangle-134</string>\n      <string>blockTriangle-134.stypo</string>\n      <string>blockTriangle-234</string>\n      <string>blockTriangle-234.stypo</string>\n      <string>blockCircle-1</string>\n      <string>blockCircle-1.stypo</string>\n      <string>blockCircle-2</string>\n      <string>blockCircle-2.stypo</string>\n      <string>blockCircle-3</string>\n      <string>blockCircle-3.stypo</string>\n      <string>blockCircle-4</string>\n      <string>blockCircle-4.stypo</string>\n      <string>blockCircle-UC</string>\n      <string>blockCircle-UC.stypo</string>\n      <string>blockCircle-LC</string>\n      <string>blockCircle-LC.stypo</string>\n      <string>blockCircle-ML</string>\n      <string>blockCircle-ML.stypo</string>\n      <string>blockCircle-MR</string>\n      <string>blockCircle-MR.stypo</string>\n      <string>blockSextant-1</string>\n      <string>blockSextant-1.stypo</string>\n      <string>blockSextant-2</string>\n      <string>blockSextant-2.stypo</string>\n      <string>blockSextant-12</string>\n      <string>blockSextant-12.stypo</string>\n      <string>blockSextant-3</string>\n      <string>blockSextant-3.stypo</string>\n      <string>blockSextant-13</string>\n      <string>blockSextant-13.stypo</string>\n      <string>blockSextant-23</string>\n      <string>blockSextant-23.stypo</string>\n      <string>blockSextant-123</string>\n      <string>blockSextant-123.stypo</string>\n      <string>blockSextant-4</string>\n      <string>blockSextant-4.stypo</string>\n      <string>blockSextant-14</string>\n      <string>blockSextant-14.stypo</string>\n      <string>blockSextant-24</string>\n      <string>blockSextant-24.stypo</string>\n      <string>blockSextant-124</string>\n      <string>blockSextant-124.stypo</string>\n      <string>blockSextant-34</string>\n      <string>blockSextant-34.stypo</string>\n      <string>blockSextant-134</string>\n      <string>blockSextant-134.stypo</string>\n      <string>blockSextant-234</string>\n      <string>blockSextant-234.stypo</string>\n      <string>blockSextant-1234</string>\n      <string>blockSextant-1234.stypo</string>\n      <string>blockSextant-5</string>\n      <string>blockSextant-5.stypo</string>\n      <string>blockSextant-15</string>\n      <string>blockSextant-15.stypo</string>\n      <string>blockSextant-25</string>\n      <string>blockSextant-25.stypo</string>\n      <string>blockSextant-125</string>\n      <string>blockSextant-125.stypo</string>\n      <string>blockSextant-35</string>\n      <string>blockSextant-35.stypo</string>\n      <string>blockSextant-235</string>\n      <string>blockSextant-235.stypo</string>\n      <string>blockSextant-1235</string>\n      <string>blockSextant-1235.stypo</string>\n      <string>blockSextant-45</string>\n      <string>blockSextant-45.stypo</string>\n      <string>blockSextant-145</string>\n      <string>blockSextant-145.stypo</string>\n      <string>blockSextant-245</string>\n      <string>blockSextant-245.stypo</string>\n      <string>blockSextant-1245</string>\n      <string>blockSextant-1245.stypo</string>\n      <string>blockSextant-345</string>\n      <string>blockSextant-345.stypo</string>\n      <string>blockSextant-1345</string>\n      <string>blockSextant-1345.stypo</string>\n      <string>blockSextant-2345</string>\n      <string>blockSextant-2345.stypo</string>\n      <string>blockSextant-12345</string>\n      <string>blockSextant-12345.stypo</string>\n      <string>blockSextant-6</string>\n      <string>blockSextant-6.stypo</string>\n      <string>blockSextant-16</string>\n      <string>blockSextant-16.stypo</string>\n      <string>blockSextant-26</string>\n      <string>blockSextant-26.stypo</string>\n      <string>blockSextant-126</string>\n      <string>blockSextant-126.stypo</string>\n      <string>blockSextant-36</string>\n      <string>blockSextant-36.stypo</string>\n      <string>blockSextant-136</string>\n      <string>blockSextant-136.stypo</string>\n      <string>blockSextant-236</string>\n      <string>blockSextant-236.stypo</string>\n      <string>blockSextant-1236</string>\n      <string>blockSextant-1236.stypo</string>\n      <string>blockSextant-46</string>\n      <string>blockSextant-46.stypo</string>\n      <string>blockSextant-146</string>\n      <string>blockSextant-146.stypo</string>\n      <string>blockSextant-1246</string>\n      <string>blockSextant-1246.stypo</string>\n      <string>blockSextant-346</string>\n      <string>blockSextant-346.stypo</string>\n      <string>blockSextant-1346</string>\n      <string>blockSextant-1346.stypo</string>\n      <string>blockSextant-2346</string>\n      <string>blockSextant-2346.stypo</string>\n      <string>blockSextant-12346</string>\n      <string>blockSextant-12346.stypo</string>\n      <string>blockSextant-56</string>\n      <string>blockSextant-56.stypo</string>\n      <string>blockSextant-156</string>\n      <string>blockSextant-156.stypo</string>\n      <string>blockSextant-256</string>\n      <string>blockSextant-256.stypo</string>\n      <string>blockSextant-1256</string>\n      <string>blockSextant-1256.stypo</string>\n      <string>blockSextant-356</string>\n      <string>blockSextant-356.stypo</string>\n      <string>blockSextant-1356</string>\n      <string>blockSextant-1356.stypo</string>\n      <string>blockSextant-2356</string>\n      <string>blockSextant-2356.stypo</string>\n      <string>blockSextant-12356</string>\n      <string>blockSextant-12356.stypo</string>\n      <string>blockSextant-456</string>\n      <string>blockSextant-456.stypo</string>\n      <string>blockSextant-1456</string>\n      <string>blockSextant-1456.stypo</string>\n      <string>blockSextant-2456</string>\n      <string>blockSextant-2456.stypo</string>\n      <string>blockSextant-12456</string>\n      <string>blockSextant-12456.stypo</string>\n      <string>blockSextant-3456</string>\n      <string>blockSextant-3456.stypo</string>\n      <string>blockSextant-13456</string>\n      <string>blockSextant-13456.stypo</string>\n      <string>blockSextant-23456</string>\n      <string>blockSextant-23456.stypo</string>\n      <string>blockDiagonal-1FB3C</string>\n      <string>blockDiagonal-1FB3C.stypo</string>\n      <string>blockDiagonal-1FB3D</string>\n      <string>blockDiagonal-1FB3D.stypo</string>\n      <string>blockDiagonal-1FB3E</string>\n      <string>blockDiagonal-1FB3E.stypo</string>\n      <string>blockDiagonal-1FB3F</string>\n      <string>blockDiagonal-1FB3F.stypo</string>\n      <string>blockDiagonal-1FB40</string>\n      <string>blockDiagonal-1FB40.stypo</string>\n      <string>blockDiagonal-1FB41</string>\n      <string>blockDiagonal-1FB41.stypo</string>\n      <string>blockDiagonal-1FB42</string>\n      <string>blockDiagonal-1FB42.stypo</string>\n      <string>blockDiagonal-1FB43</string>\n      <string>blockDiagonal-1FB43.stypo</string>\n      <string>blockDiagonal-1FB44</string>\n      <string>blockDiagonal-1FB44.stypo</string>\n      <string>blockDiagonal-1FB45</string>\n      <string>blockDiagonal-1FB45.stypo</string>\n      <string>blockDiagonal-1FB46</string>\n      <string>blockDiagonal-1FB46.stypo</string>\n      <string>blockDiagonal-1FB47</string>\n      <string>blockDiagonal-1FB47.stypo</string>\n      <string>blockDiagonal-1FB48</string>\n      <string>blockDiagonal-1FB48.stypo</string>\n      <string>blockDiagonal-1FB49</string>\n      <string>blockDiagonal-1FB49.stypo</string>\n      <string>blockDiagonal-1FB4A</string>\n      <string>blockDiagonal-1FB4A.stypo</string>\n      <string>blockDiagonal-1FB4B</string>\n      <string>blockDiagonal-1FB4B.stypo</string>\n      <string>blockDiagonal-1FB4C</string>\n      <string>blockDiagonal-1FB4C.stypo</string>\n      <string>blockDiagonal-1FB4D</string>\n      <string>blockDiagonal-1FB4D.stypo</string>\n      <string>blockDiagonal-1FB4E</string>\n      <string>blockDiagonal-1FB4E.stypo</string>\n      <string>blockDiagonal-1FB4F</string>\n      <string>blockDiagonal-1FB4F.stypo</string>\n      <string>blockDiagonal-1FB50</string>\n      <string>blockDiagonal-1FB50.stypo</string>\n      <string>blockDiagonal-1FB51</string>\n      <string>blockDiagonal-1FB51.stypo</string>\n      <string>blockDiagonal-1FB52</string>\n      <string>blockDiagonal-1FB52.stypo</string>\n      <string>blockDiagonal-1FB53</string>\n      <string>blockDiagonal-1FB53.stypo</string>\n      <string>blockDiagonal-1FB54</string>\n      <string>blockDiagonal-1FB54.stypo</string>\n      <string>blockDiagonal-1FB55</string>\n      <string>blockDiagonal-1FB55.stypo</string>\n      <string>blockDiagonal-1FB56</string>\n      <string>blockDiagonal-1FB56.stypo</string>\n      <string>blockDiagonal-1FB57</string>\n      <string>blockDiagonal-1FB57.stypo</string>\n      <string>blockDiagonal-1FB58</string>\n      <string>blockDiagonal-1FB58.stypo</string>\n      <string>blockDiagonal-1FB59</string>\n      <string>blockDiagonal-1FB59.stypo</string>\n      <string>blockDiagonal-1FB5A</string>\n      <string>blockDiagonal-1FB5A.stypo</string>\n      <string>blockDiagonal-1FB5B</string>\n      <string>blockDiagonal-1FB5B.stypo</string>\n      <string>blockDiagonal-1FB5C</string>\n      <string>blockDiagonal-1FB5C.stypo</string>\n      <string>blockDiagonal-1FB5D</string>\n      <string>blockDiagonal-1FB5D.stypo</string>\n      <string>blockDiagonal-1FB5E</string>\n      <string>blockDiagonal-1FB5E.stypo</string>\n      <string>blockDiagonal-1FB5F</string>\n      <string>blockDiagonal-1FB5F.stypo</string>\n      <string>blockDiagonal-1FB60</string>\n      <string>blockDiagonal-1FB60.stypo</string>\n      <string>blockDiagonal-1FB61</string>\n      <string>blockDiagonal-1FB61.stypo</string>\n      <string>blockDiagonal-1FB62</string>\n      <string>blockDiagonal-1FB62.stypo</string>\n      <string>blockDiagonal-1FB63</string>\n      <string>blockDiagonal-1FB63.stypo</string>\n      <string>blockDiagonal-1FB64</string>\n      <string>blockDiagonal-1FB64.stypo</string>\n      <string>blockDiagonal-1FB65</string>\n      <string>blockDiagonal-1FB65.stypo</string>\n      <string>blockDiagonal-1FB66</string>\n      <string>blockDiagonal-1FB66.stypo</string>\n      <string>blockDiagonal-1FB67</string>\n      <string>blockDiagonal-1FB67.stypo</string>\n      <string>blockOctant-1</string>\n      <string>blockOctant-1.stypo</string>\n      <string>blockOctant-2</string>\n      <string>blockOctant-2.stypo</string>\n      <string>blockOctant-12</string>\n      <string>blockOctant-12.stypo</string>\n      <string>blockOctant-3</string>\n      <string>blockOctant-3.stypo</string>\n      <string>blockOctant-23</string>\n      <string>blockOctant-23.stypo</string>\n      <string>blockOctant-123</string>\n      <string>blockOctant-123.stypo</string>\n      <string>blockOctant-4</string>\n      <string>blockOctant-4.stypo</string>\n      <string>blockOctant-14</string>\n      <string>blockOctant-14.stypo</string>\n      <string>blockOctant-124</string>\n      <string>blockOctant-124.stypo</string>\n      <string>blockOctant-34</string>\n      <string>blockOctant-34.stypo</string>\n      <string>blockOctant-134</string>\n      <string>blockOctant-134.stypo</string>\n      <string>blockOctant-234</string>\n      <string>blockOctant-234.stypo</string>\n      <string>blockOctant-5</string>\n      <string>blockOctant-5.stypo</string>\n      <string>blockOctant-15</string>\n      <string>blockOctant-15.stypo</string>\n      <string>blockOctant-25</string>\n      <string>blockOctant-25.stypo</string>\n      <string>blockOctant-125</string>\n      <string>blockOctant-125.stypo</string>\n      <string>blockOctant-135</string>\n      <string>blockOctant-135.stypo</string>\n      <string>blockOctant-235</string>\n      <string>blockOctant-235.stypo</string>\n      <string>blockOctant-1235</string>\n      <string>blockOctant-1235.stypo</string>\n      <string>blockOctant-45</string>\n      <string>blockOctant-45.stypo</string>\n      <string>blockOctant-145</string>\n      <string>blockOctant-145.stypo</string>\n      <string>blockOctant-245</string>\n      <string>blockOctant-245.stypo</string>\n      <string>blockOctant-1245</string>\n      <string>blockOctant-1245.stypo</string>\n      <string>blockOctant-345</string>\n      <string>blockOctant-345.stypo</string>\n      <string>blockOctant-1345</string>\n      <string>blockOctant-1345.stypo</string>\n      <string>blockOctant-2345</string>\n      <string>blockOctant-2345.stypo</string>\n      <string>blockOctant-12345</string>\n      <string>blockOctant-12345.stypo</string>\n      <string>blockOctant-6</string>\n      <string>blockOctant-6.stypo</string>\n      <string>blockOctant-16</string>\n      <string>blockOctant-16.stypo</string>\n      <string>blockOctant-26</string>\n      <string>blockOctant-26.stypo</string>\n      <string>blockOctant-126</string>\n      <string>blockOctant-126.stypo</string>\n      <string>blockOctant-36</string>\n      <string>blockOctant-36.stypo</string>\n      <string>blockOctant-136</string>\n      <string>blockOctant-136.stypo</string>\n      <string>blockOctant-236</string>\n      <string>blockOctant-236.stypo</string>\n      <string>blockOctant-1236</string>\n      <string>blockOctant-1236.stypo</string>\n      <string>blockOctant-146</string>\n      <string>blockOctant-146.stypo</string>\n      <string>blockOctant-246</string>\n      <string>blockOctant-246.stypo</string>\n      <string>blockOctant-1246</string>\n      <string>blockOctant-1246.stypo</string>\n      <string>blockOctant-346</string>\n      <string>blockOctant-346.stypo</string>\n      <string>blockOctant-1346</string>\n      <string>blockOctant-1346.stypo</string>\n      <string>blockOctant-2346</string>\n      <string>blockOctant-2346.stypo</string>\n      <string>blockOctant-12346</string>\n      <string>blockOctant-12346.stypo</string>\n      <string>blockOctant-56</string>\n      <string>blockOctant-56.stypo</string>\n      <string>blockOctant-156</string>\n      <string>blockOctant-156.stypo</string>\n      <string>blockOctant-256</string>\n      <string>blockOctant-256.stypo</string>\n      <string>blockOctant-1256</string>\n      <string>blockOctant-1256.stypo</string>\n      <string>blockOctant-356</string>\n      <string>blockOctant-356.stypo</string>\n      <string>blockOctant-1356</string>\n      <string>blockOctant-1356.stypo</string>\n      <string>blockOctant-2356</string>\n      <string>blockOctant-2356.stypo</string>\n      <string>blockOctant-12356</string>\n      <string>blockOctant-12356.stypo</string>\n      <string>blockOctant-456</string>\n      <string>blockOctant-456.stypo</string>\n      <string>blockOctant-1456</string>\n      <string>blockOctant-1456.stypo</string>\n      <string>blockOctant-2456</string>\n      <string>blockOctant-2456.stypo</string>\n      <string>blockOctant-12456</string>\n      <string>blockOctant-12456.stypo</string>\n      <string>blockOctant-3456</string>\n      <string>blockOctant-3456.stypo</string>\n      <string>blockOctant-13456</string>\n      <string>blockOctant-13456.stypo</string>\n      <string>blockOctant-23456</string>\n      <string>blockOctant-23456.stypo</string>\n      <string>blockOctant-123456</string>\n      <string>blockOctant-123456.stypo</string>\n      <string>blockOctant-7</string>\n      <string>blockOctant-7.stypo</string>\n      <string>blockOctant-17</string>\n      <string>blockOctant-17.stypo</string>\n      <string>blockOctant-27</string>\n      <string>blockOctant-27.stypo</string>\n      <string>blockOctant-127</string>\n      <string>blockOctant-127.stypo</string>\n      <string>blockOctant-37</string>\n      <string>blockOctant-37.stypo</string>\n      <string>blockOctant-137</string>\n      <string>blockOctant-137.stypo</string>\n      <string>blockOctant-237</string>\n      <string>blockOctant-237.stypo</string>\n      <string>blockOctant-1237</string>\n      <string>blockOctant-1237.stypo</string>\n      <string>blockOctant-47</string>\n      <string>blockOctant-47.stypo</string>\n      <string>blockOctant-147</string>\n      <string>blockOctant-147.stypo</string>\n      <string>blockOctant-247</string>\n      <string>blockOctant-247.stypo</string>\n      <string>blockOctant-1247</string>\n      <string>blockOctant-1247.stypo</string>\n      <string>blockOctant-347</string>\n      <string>blockOctant-347.stypo</string>\n      <string>blockOctant-1347</string>\n      <string>blockOctant-1347.stypo</string>\n      <string>blockOctant-2347</string>\n      <string>blockOctant-2347.stypo</string>\n      <string>blockOctant-12347</string>\n      <string>blockOctant-12347.stypo</string>\n      <string>blockOctant-157</string>\n      <string>blockOctant-157.stypo</string>\n      <string>blockOctant-257</string>\n      <string>blockOctant-257.stypo</string>\n      <string>blockOctant-1257</string>\n      <string>blockOctant-1257.stypo</string>\n      <string>blockOctant-357</string>\n      <string>blockOctant-357.stypo</string>\n      <string>blockOctant-2357</string>\n      <string>blockOctant-2357.stypo</string>\n      <string>blockOctant-12357</string>\n      <string>blockOctant-12357.stypo</string>\n      <string>blockOctant-457</string>\n      <string>blockOctant-457.stypo</string>\n      <string>blockOctant-1457</string>\n      <string>blockOctant-1457.stypo</string>\n      <string>blockOctant-12457</string>\n      <string>blockOctant-12457.stypo</string>\n      <string>blockOctant-3457</string>\n      <string>blockOctant-3457.stypo</string>\n      <string>blockOctant-13457</string>\n      <string>blockOctant-13457.stypo</string>\n      <string>blockOctant-23457</string>\n      <string>blockOctant-23457.stypo</string>\n      <string>blockOctant-67</string>\n      <string>blockOctant-67.stypo</string>\n      <string>blockOctant-167</string>\n      <string>blockOctant-167.stypo</string>\n      <string>blockOctant-267</string>\n      <string>blockOctant-267.stypo</string>\n      <string>blockOctant-1267</string>\n      <string>blockOctant-1267.stypo</string>\n      <string>blockOctant-367</string>\n      <string>blockOctant-367.stypo</string>\n      <string>blockOctant-1367</string>\n      <string>blockOctant-1367.stypo</string>\n      <string>blockOctant-2367</string>\n      <string>blockOctant-2367.stypo</string>\n      <string>blockOctant-12367</string>\n      <string>blockOctant-12367.stypo</string>\n      <string>blockOctant-467</string>\n      <string>blockOctant-467.stypo</string>\n      <string>blockOctant-1467</string>\n      <string>blockOctant-1467.stypo</string>\n      <string>blockOctant-2467</string>\n      <string>blockOctant-2467.stypo</string>\n      <string>blockOctant-12467</string>\n      <string>blockOctant-12467.stypo</string>\n      <string>blockOctant-3467</string>\n      <string>blockOctant-3467.stypo</string>\n      <string>blockOctant-13467</string>\n      <string>blockOctant-13467.stypo</string>\n      <string>blockOctant-23467</string>\n      <string>blockOctant-23467.stypo</string>\n      <string>blockOctant-123467</string>\n      <string>blockOctant-123467.stypo</string>\n      <string>blockOctant-567</string>\n      <string>blockOctant-567.stypo</string>\n      <string>blockOctant-1567</string>\n      <string>blockOctant-1567.stypo</string>\n      <string>blockOctant-2567</string>\n      <string>blockOctant-2567.stypo</string>\n      <string>blockOctant-12567</string>\n      <string>blockOctant-12567.stypo</string>\n      <string>blockOctant-3567</string>\n      <string>blockOctant-3567.stypo</string>\n      <string>blockOctant-13567</string>\n      <string>blockOctant-13567.stypo</string>\n      <string>blockOctant-23567</string>\n      <string>blockOctant-23567.stypo</string>\n      <string>blockOctant-123567</string>\n      <string>blockOctant-123567.stypo</string>\n      <string>blockOctant-4567</string>\n      <string>blockOctant-4567.stypo</string>\n      <string>blockOctant-14567</string>\n      <string>blockOctant-14567.stypo</string>\n      <string>blockOctant-24567</string>\n      <string>blockOctant-24567.stypo</string>\n      <string>blockOctant-124567</string>\n      <string>blockOctant-124567.stypo</string>\n      <string>blockOctant-34567</string>\n      <string>blockOctant-34567.stypo</string>\n      <string>blockOctant-134567</string>\n      <string>blockOctant-134567.stypo</string>\n      <string>blockOctant-234567</string>\n      <string>blockOctant-234567.stypo</string>\n      <string>blockOctant-1234567</string>\n      <string>blockOctant-1234567.stypo</string>\n      <string>blockOctant-8</string>\n      <string>blockOctant-8.stypo</string>\n      <string>blockOctant-18</string>\n      <string>blockOctant-18.stypo</string>\n      <string>blockOctant-28</string>\n      <string>blockOctant-28.stypo</string>\n      <string>blockOctant-128</string>\n      <string>blockOctant-128.stypo</string>\n      <string>blockOctant-38</string>\n      <string>blockOctant-38.stypo</string>\n      <string>blockOctant-138</string>\n      <string>blockOctant-138.stypo</string>\n      <string>blockOctant-238</string>\n      <string>blockOctant-238.stypo</string>\n      <string>blockOctant-1238</string>\n      <string>blockOctant-1238.stypo</string>\n      <string>blockOctant-48</string>\n      <string>blockOctant-48.stypo</string>\n      <string>blockOctant-148</string>\n      <string>blockOctant-148.stypo</string>\n      <string>blockOctant-248</string>\n      <string>blockOctant-248.stypo</string>\n      <string>blockOctant-1248</string>\n      <string>blockOctant-1248.stypo</string>\n      <string>blockOctant-348</string>\n      <string>blockOctant-348.stypo</string>\n      <string>blockOctant-1348</string>\n      <string>blockOctant-1348.stypo</string>\n      <string>blockOctant-2348</string>\n      <string>blockOctant-2348.stypo</string>\n      <string>blockOctant-12348</string>\n      <string>blockOctant-12348.stypo</string>\n      <string>blockOctant-58</string>\n      <string>blockOctant-58.stypo</string>\n      <string>blockOctant-158</string>\n      <string>blockOctant-158.stypo</string>\n      <string>blockOctant-258</string>\n      <string>blockOctant-258.stypo</string>\n      <string>blockOctant-1258</string>\n      <string>blockOctant-1258.stypo</string>\n      <string>blockOctant-358</string>\n      <string>blockOctant-358.stypo</string>\n      <string>blockOctant-1358</string>\n      <string>blockOctant-1358.stypo</string>\n      <string>blockOctant-2358</string>\n      <string>blockOctant-2358.stypo</string>\n      <string>blockOctant-12358</string>\n      <string>blockOctant-12358.stypo</string>\n      <string>blockOctant-458</string>\n      <string>blockOctant-458.stypo</string>\n      <string>blockOctant-1458</string>\n      <string>blockOctant-1458.stypo</string>\n      <string>blockOctant-2458</string>\n      <string>blockOctant-2458.stypo</string>\n      <string>blockOctant-12458</string>\n      <string>blockOctant-12458.stypo</string>\n      <string>blockOctant-3458</string>\n      <string>blockOctant-3458.stypo</string>\n      <string>blockOctant-13458</string>\n      <string>blockOctant-13458.stypo</string>\n      <string>blockOctant-23458</string>\n      <string>blockOctant-23458.stypo</string>\n      <string>blockOctant-123458</string>\n      <string>blockOctant-123458.stypo</string>\n      <string>blockOctant-168</string>\n      <string>blockOctant-168.stypo</string>\n      <string>blockOctant-268</string>\n      <string>blockOctant-268.stypo</string>\n      <string>blockOctant-1268</string>\n      <string>blockOctant-1268.stypo</string>\n      <string>blockOctant-368</string>\n      <string>blockOctant-368.stypo</string>\n      <string>blockOctant-2368</string>\n      <string>blockOctant-2368.stypo</string>\n      <string>blockOctant-12368</string>\n      <string>blockOctant-12368.stypo</string>\n      <string>blockOctant-468</string>\n      <string>blockOctant-468.stypo</string>\n      <string>blockOctant-1468</string>\n      <string>blockOctant-1468.stypo</string>\n      <string>blockOctant-12468</string>\n      <string>blockOctant-12468.stypo</string>\n      <string>blockOctant-3468</string>\n      <string>blockOctant-3468.stypo</string>\n      <string>blockOctant-13468</string>\n      <string>blockOctant-13468.stypo</string>\n      <string>blockOctant-23468</string>\n      <string>blockOctant-23468.stypo</string>\n      <string>blockOctant-568</string>\n      <string>blockOctant-568.stypo</string>\n      <string>blockOctant-1568</string>\n      <string>blockOctant-1568.stypo</string>\n      <string>blockOctant-2568</string>\n      <string>blockOctant-2568.stypo</string>\n      <string>blockOctant-12568</string>\n      <string>blockOctant-12568.stypo</string>\n      <string>blockOctant-3568</string>\n      <string>blockOctant-3568.stypo</string>\n      <string>blockOctant-13568</string>\n      <string>blockOctant-13568.stypo</string>\n      <string>blockOctant-23568</string>\n      <string>blockOctant-23568.stypo</string>\n      <string>blockOctant-123568</string>\n      <string>blockOctant-123568.stypo</string>\n      <string>blockOctant-4568</string>\n      <string>blockOctant-4568.stypo</string>\n      <string>blockOctant-14568</string>\n      <string>blockOctant-14568.stypo</string>\n      <string>blockOctant-24568</string>\n      <string>blockOctant-24568.stypo</string>\n      <string>blockOctant-124568</string>\n      <string>blockOctant-124568.stypo</string>\n      <string>blockOctant-34568</string>\n      <string>blockOctant-34568.stypo</string>\n      <string>blockOctant-134568</string>\n      <string>blockOctant-134568.stypo</string>\n      <string>blockOctant-234568</string>\n      <string>blockOctant-234568.stypo</string>\n      <string>blockOctant-1234568</string>\n      <string>blockOctant-1234568.stypo</string>\n      <string>blockOctant-178</string>\n      <string>blockOctant-178.stypo</string>\n      <string>blockOctant-278</string>\n      <string>blockOctant-278.stypo</string>\n      <string>blockOctant-1278</string>\n      <string>blockOctant-1278.stypo</string>\n      <string>blockOctant-378</string>\n      <string>blockOctant-378.stypo</string>\n      <string>blockOctant-1378</string>\n      <string>blockOctant-1378.stypo</string>\n      <string>blockOctant-2378</string>\n      <string>blockOctant-2378.stypo</string>\n      <string>blockOctant-12378</string>\n      <string>blockOctant-12378.stypo</string>\n      <string>blockOctant-478</string>\n      <string>blockOctant-478.stypo</string>\n      <string>blockOctant-1478</string>\n      <string>blockOctant-1478.stypo</string>\n      <string>blockOctant-2478</string>\n      <string>blockOctant-2478.stypo</string>\n      <string>blockOctant-12478</string>\n      <string>blockOctant-12478.stypo</string>\n      <string>blockOctant-3478</string>\n      <string>blockOctant-3478.stypo</string>\n      <string>blockOctant-13478</string>\n      <string>blockOctant-13478.stypo</string>\n      <string>blockOctant-23478</string>\n      <string>blockOctant-23478.stypo</string>\n      <string>blockOctant-123478</string>\n      <string>blockOctant-123478.stypo</string>\n      <string>blockOctant-578</string>\n      <string>blockOctant-578.stypo</string>\n      <string>blockOctant-1578</string>\n      <string>blockOctant-1578.stypo</string>\n      <string>blockOctant-2578</string>\n      <string>blockOctant-2578.stypo</string>\n      <string>blockOctant-12578</string>\n      <string>blockOctant-12578.stypo</string>\n      <string>blockOctant-3578</string>\n      <string>blockOctant-3578.stypo</string>\n      <string>blockOctant-13578</string>\n      <string>blockOctant-13578.stypo</string>\n      <string>blockOctant-23578</string>\n      <string>blockOctant-23578.stypo</string>\n      <string>blockOctant-123578</string>\n      <string>blockOctant-123578.stypo</string>\n      <string>blockOctant-4578</string>\n      <string>blockOctant-4578.stypo</string>\n      <string>blockOctant-14578</string>\n      <string>blockOctant-14578.stypo</string>\n      <string>blockOctant-24578</string>\n      <string>blockOctant-24578.stypo</string>\n      <string>blockOctant-124578</string>\n      <string>blockOctant-124578.stypo</string>\n      <string>blockOctant-34578</string>\n      <string>blockOctant-34578.stypo</string>\n      <string>blockOctant-134578</string>\n      <string>blockOctant-134578.stypo</string>\n      <string>blockOctant-234578</string>\n      <string>blockOctant-234578.stypo</string>\n      <string>blockOctant-1234578</string>\n      <string>blockOctant-1234578.stypo</string>\n      <string>blockOctant-678</string>\n      <string>blockOctant-678.stypo</string>\n      <string>blockOctant-1678</string>\n      <string>blockOctant-1678.stypo</string>\n      <string>blockOctant-2678</string>\n      <string>blockOctant-2678.stypo</string>\n      <string>blockOctant-12678</string>\n      <string>blockOctant-12678.stypo</string>\n      <string>blockOctant-3678</string>\n      <string>blockOctant-3678.stypo</string>\n      <string>blockOctant-13678</string>\n      <string>blockOctant-13678.stypo</string>\n      <string>blockOctant-23678</string>\n      <string>blockOctant-23678.stypo</string>\n      <string>blockOctant-123678</string>\n      <string>blockOctant-123678.stypo</string>\n      <string>blockOctant-4678</string>\n      <string>blockOctant-4678.stypo</string>\n      <string>blockOctant-14678</string>\n      <string>blockOctant-14678.stypo</string>\n      <string>blockOctant-24678</string>\n      <string>blockOctant-24678.stypo</string>\n      <string>blockOctant-124678</string>\n      <string>blockOctant-124678.stypo</string>\n      <string>blockOctant-34678</string>\n      <string>blockOctant-34678.stypo</string>\n      <string>blockOctant-134678</string>\n      <string>blockOctant-134678.stypo</string>\n      <string>blockOctant-234678</string>\n      <string>blockOctant-234678.stypo</string>\n      <string>blockOctant-1234678</string>\n      <string>blockOctant-1234678.stypo</string>\n      <string>blockOctant-15678</string>\n      <string>blockOctant-15678.stypo</string>\n      <string>blockOctant-25678</string>\n      <string>blockOctant-25678.stypo</string>\n      <string>blockOctant-125678</string>\n      <string>blockOctant-125678.stypo</string>\n      <string>blockOctant-35678</string>\n      <string>blockOctant-35678.stypo</string>\n      <string>blockOctant-235678</string>\n      <string>blockOctant-235678.stypo</string>\n      <string>blockOctant-1235678</string>\n      <string>blockOctant-1235678.stypo</string>\n      <string>blockOctant-45678</string>\n      <string>blockOctant-45678.stypo</string>\n      <string>blockOctant-145678</string>\n      <string>blockOctant-145678.stypo</string>\n      <string>blockOctant-1245678</string>\n      <string>blockOctant-1245678.stypo</string>\n      <string>blockOctant-1345678</string>\n      <string>blockOctant-1345678.stypo</string>\n      <string>blockOctant-2345678</string>\n      <string>blockOctant-2345678.stypo</string>\n      <string>blockSedecimant-1</string>\n      <string>blockSedecimant-1.stypo</string>\n      <string>blockSedecimant-2</string>\n      <string>blockSedecimant-2.stypo</string>\n      <string>blockSedecimant-3</string>\n      <string>blockSedecimant-3.stypo</string>\n      <string>blockSedecimant-4</string>\n      <string>blockSedecimant-4.stypo</string>\n      <string>blockSedecimant-5</string>\n      <string>blockSedecimant-5.stypo</string>\n      <string>blockSedecimant-6</string>\n      <string>blockSedecimant-6.stypo</string>\n      <string>blockSedecimant-7</string>\n      <string>blockSedecimant-7.stypo</string>\n      <string>blockSedecimant-8</string>\n      <string>blockSedecimant-8.stypo</string>\n      <string>blockSedecimant-9</string>\n      <string>blockSedecimant-9.stypo</string>\n      <string>blockSedecimant-A</string>\n      <string>blockSedecimant-A.stypo</string>\n      <string>blockSedecimant-B</string>\n      <string>blockSedecimant-B.stypo</string>\n      <string>blockSedecimant-C</string>\n      <string>blockSedecimant-C.stypo</string>\n      <string>blockSedecimant-D</string>\n      <string>blockSedecimant-D.stypo</string>\n      <string>blockSedecimant-E</string>\n      <string>blockSedecimant-E.stypo</string>\n      <string>blockSedecimant-F</string>\n      <string>blockSedecimant-F.stypo</string>\n      <string>blockSedecimant-G</string>\n      <string>blockSedecimant-G.stypo</string>\n      <string>blockSedecimant-EFG</string>\n      <string>blockSedecimant-EFG.stypo</string>\n      <string>blockSedecimant-DEF</string>\n      <string>blockSedecimant-DEF.stypo</string>\n      <string>blockSedecimant-9D</string>\n      <string>blockSedecimant-9D.stypo</string>\n      <string>blockSedecimant-59D</string>\n      <string>blockSedecimant-59D.stypo</string>\n      <string>blockSedecimant-159</string>\n      <string>blockSedecimant-159.stypo</string>\n      <string>blockSedecimant-15</string>\n      <string>blockSedecimant-15.stypo</string>\n      <string>blockSedecimant-123</string>\n      <string>blockSedecimant-123.stypo</string>\n      <string>blockSedecimant-234</string>\n      <string>blockSedecimant-234.stypo</string>\n      <string>blockSedecimant-48</string>\n      <string>blockSedecimant-48.stypo</string>\n      <string>blockSedecimant-48C</string>\n      <string>blockSedecimant-48C.stypo</string>\n      <string>blockSedecimant-8CG</string>\n      <string>blockSedecimant-8CG.stypo</string>\n      <string>blockSedecimant-CG</string>\n      <string>blockSedecimant-CG.stypo</string>\n      <string>verticalOneEighthBlock-2</string>\n      <string>verticalOneEighthBlock-2.stypo</string>\n      <string>verticalOneEighthBlock-3</string>\n      <string>verticalOneEighthBlock-3.stypo</string>\n      <string>verticalOneEighthBlock-4</string>\n      <string>verticalOneEighthBlock-4.stypo</string>\n      <string>verticalOneEighthBlock-5</string>\n      <string>verticalOneEighthBlock-5.stypo</string>\n      <string>verticalOneEighthBlock-6</string>\n      <string>verticalOneEighthBlock-6.stypo</string>\n      <string>verticalOneEighthBlock-7</string>\n      <string>verticalOneEighthBlock-7.stypo</string>\n      <string>horizontalOneEightBlock-2</string>\n      <string>horizontalOneEightBlock-2.stypo</string>\n      <string>horizontalOneEightBlock-3</string>\n      <string>horizontalOneEightBlock-3.stypo</string>\n      <string>horizontalOneEightBlock-4</string>\n      <string>horizontalOneEightBlock-4.stypo</string>\n      <string>horizontalOneEightBlock-5</string>\n      <string>horizontalOneEightBlock-5.stypo</string>\n      <string>horizontalOneEightBlock-6</string>\n      <string>horizontalOneEightBlock-6.stypo</string>\n      <string>horizontalOneEightBlock-7</string>\n      <string>horizontalOneEightBlock-7.stypo</string>\n      <string>leftAndLowerOneEightBlock</string>\n      <string>leftAndLowerOneEightBlock.stypo</string>\n      <string>leftAndUpperOneEightBlock</string>\n      <string>leftAndUpperOneEightBlock.stypo</string>\n      <string>rightAndUpperOneEightBlock</string>\n      <string>rightAndUpperOneEightBlock.stypo</string>\n      <string>rightAndLowerOneEightBlock</string>\n      <string>rightAndLowerOneEightBlock.stypo</string>\n      <string>upperAndLowerOneEightBlock</string>\n      <string>upperAndLowerOneEightBlock.stypo</string>\n      <string>upperThreeEighthsBlock</string>\n      <string>upperThreeEighthsBlock.stypo</string>\n      <string>upperFiveEighthsBlock</string>\n      <string>upperFiveEighthsBlock.stypo</string>\n      <string>upperSevenEighthsBlock</string>\n      <string>upperSevenEighthsBlock.stypo</string>\n      <string>rightOneQuarterBlock</string>\n      <string>rightOneQuarterBlock.stypo</string>\n      <string>rightThreeEighthsBlock</string>\n      <string>rightThreeEighthsBlock.stypo</string>\n      <string>rightFiveEighthsBlock</string>\n      <string>rightFiveEighthsBlock.stypo</string>\n      <string>rightThreeQuartersBlock</string>\n      <string>rightThreeQuartersBlock.stypo</string>\n      <string>rightSevenEighthsBlock</string>\n      <string>rightSevenEighthsBlock.stypo</string>\n      <string>leftTwoThirdsBlock</string>\n      <string>leftTwoThirdsBlock.stypo</string>\n      <string>leftOneThirdBlock</string>\n      <string>leftOneThirdBlock.stypo</string>\n      <string>heavyHorizontalFill</string>\n      <string>heavyHorizontalFill.stypo</string>\n      <string>blockSeparatedQuadrant-1</string>\n      <string>blockSeparatedQuadrant-1.stypo</string>\n      <string>blockSeparatedQuadrant-2</string>\n      <string>blockSeparatedQuadrant-2.stypo</string>\n      <string>blockSeparatedQuadrant-12</string>\n      <string>blockSeparatedQuadrant-12.stypo</string>\n      <string>blockSeparatedQuadrant-3</string>\n      <string>blockSeparatedQuadrant-3.stypo</string>\n      <string>blockSeparatedQuadrant-13</string>\n      <string>blockSeparatedQuadrant-13.stypo</string>\n      <string>blockSeparatedQuadrant-23</string>\n      <string>blockSeparatedQuadrant-23.stypo</string>\n      <string>blockSeparatedQuadrant-123</string>\n      <string>blockSeparatedQuadrant-123.stypo</string>\n      <string>blockSeparatedQuadrant-4</string>\n      <string>blockSeparatedQuadrant-4.stypo</string>\n      <string>blockSeparatedQuadrant-14</string>\n      <string>blockSeparatedQuadrant-14.stypo</string>\n      <string>blockSeparatedQuadrant-24</string>\n      <string>blockSeparatedQuadrant-24.stypo</string>\n      <string>blockSeparatedQuadrant-124</string>\n      <string>blockSeparatedQuadrant-124.stypo</string>\n      <string>blockSeparatedQuadrant-34</string>\n      <string>blockSeparatedQuadrant-34.stypo</string>\n      <string>blockSeparatedQuadrant-134</string>\n      <string>blockSeparatedQuadrant-134.stypo</string>\n      <string>blockSeparatedQuadrant-234</string>\n      <string>blockSeparatedQuadrant-234.stypo</string>\n      <string>blockSeparatedQuadrant-1234</string>\n      <string>blockSeparatedQuadrant-1234.stypo</string>\n      <string>blockSeparatedSextant-1</string>\n      <string>blockSeparatedSextant-1.stypo</string>\n      <string>blockSeparatedSextant-2</string>\n      <string>blockSeparatedSextant-2.stypo</string>\n      <string>blockSeparatedSextant-12</string>\n      <string>blockSeparatedSextant-12.stypo</string>\n      <string>blockSeparatedSextant-3</string>\n      <string>blockSeparatedSextant-3.stypo</string>\n      <string>blockSeparatedSextant-13</string>\n      <string>blockSeparatedSextant-13.stypo</string>\n      <string>blockSeparatedSextant-23</string>\n      <string>blockSeparatedSextant-23.stypo</string>\n      <string>blockSeparatedSextant-123</string>\n      <string>blockSeparatedSextant-123.stypo</string>\n      <string>blockSeparatedSextant-4</string>\n      <string>blockSeparatedSextant-4.stypo</string>\n      <string>blockSeparatedSextant-14</string>\n      <string>blockSeparatedSextant-14.stypo</string>\n      <string>blockSeparatedSextant-24</string>\n      <string>blockSeparatedSextant-24.stypo</string>\n      <string>blockSeparatedSextant-124</string>\n      <string>blockSeparatedSextant-124.stypo</string>\n      <string>blockSeparatedSextant-34</string>\n      <string>blockSeparatedSextant-34.stypo</string>\n      <string>blockSeparatedSextant-134</string>\n      <string>blockSeparatedSextant-134.stypo</string>\n      <string>blockSeparatedSextant-234</string>\n      <string>blockSeparatedSextant-234.stypo</string>\n      <string>blockSeparatedSextant-1234</string>\n      <string>blockSeparatedSextant-1234.stypo</string>\n      <string>blockSeparatedSextant-5</string>\n      <string>blockSeparatedSextant-5.stypo</string>\n      <string>blockSeparatedSextant-15</string>\n      <string>blockSeparatedSextant-15.stypo</string>\n      <string>blockSeparatedSextant-25</string>\n      <string>blockSeparatedSextant-25.stypo</string>\n      <string>blockSeparatedSextant-125</string>\n      <string>blockSeparatedSextant-125.stypo</string>\n      <string>blockSeparatedSextant-35</string>\n      <string>blockSeparatedSextant-35.stypo</string>\n      <string>blockSeparatedSextant-135</string>\n      <string>blockSeparatedSextant-135.stypo</string>\n      <string>blockSeparatedSextant-235</string>\n      <string>blockSeparatedSextant-235.stypo</string>\n      <string>blockSeparatedSextant-1235</string>\n      <string>blockSeparatedSextant-1235.stypo</string>\n      <string>blockSeparatedSextant-45</string>\n      <string>blockSeparatedSextant-45.stypo</string>\n      <string>blockSeparatedSextant-145</string>\n      <string>blockSeparatedSextant-145.stypo</string>\n      <string>blockSeparatedSextant-245</string>\n      <string>blockSeparatedSextant-245.stypo</string>\n      <string>blockSeparatedSextant-1245</string>\n      <string>blockSeparatedSextant-1245.stypo</string>\n      <string>blockSeparatedSextant-345</string>\n      <string>blockSeparatedSextant-345.stypo</string>\n      <string>blockSeparatedSextant-1345</string>\n      <string>blockSeparatedSextant-1345.stypo</string>\n      <string>blockSeparatedSextant-2345</string>\n      <string>blockSeparatedSextant-2345.stypo</string>\n      <string>blockSeparatedSextant-12345</string>\n      <string>blockSeparatedSextant-12345.stypo</string>\n      <string>blockSeparatedSextant-6</string>\n      <string>blockSeparatedSextant-6.stypo</string>\n      <string>blockSeparatedSextant-16</string>\n      <string>blockSeparatedSextant-16.stypo</string>\n      <string>blockSeparatedSextant-26</string>\n      <string>blockSeparatedSextant-26.stypo</string>\n      <string>blockSeparatedSextant-126</string>\n      <string>blockSeparatedSextant-126.stypo</string>\n      <string>blockSeparatedSextant-36</string>\n      <string>blockSeparatedSextant-36.stypo</string>\n      <string>blockSeparatedSextant-136</string>\n      <string>blockSeparatedSextant-136.stypo</string>\n      <string>blockSeparatedSextant-236</string>\n      <string>blockSeparatedSextant-236.stypo</string>\n      <string>blockSeparatedSextant-1236</string>\n      <string>blockSeparatedSextant-1236.stypo</string>\n      <string>blockSeparatedSextant-46</string>\n      <string>blockSeparatedSextant-46.stypo</string>\n      <string>blockSeparatedSextant-146</string>\n      <string>blockSeparatedSextant-146.stypo</string>\n      <string>blockSeparatedSextant-246</string>\n      <string>blockSeparatedSextant-246.stypo</string>\n      <string>blockSeparatedSextant-1246</string>\n      <string>blockSeparatedSextant-1246.stypo</string>\n      <string>blockSeparatedSextant-346</string>\n      <string>blockSeparatedSextant-346.stypo</string>\n      <string>blockSeparatedSextant-1346</string>\n      <string>blockSeparatedSextant-1346.stypo</string>\n      <string>blockSeparatedSextant-2346</string>\n      <string>blockSeparatedSextant-2346.stypo</string>\n      <string>blockSeparatedSextant-12346</string>\n      <string>blockSeparatedSextant-12346.stypo</string>\n      <string>blockSeparatedSextant-56</string>\n      <string>blockSeparatedSextant-56.stypo</string>\n      <string>blockSeparatedSextant-156</string>\n      <string>blockSeparatedSextant-156.stypo</string>\n      <string>blockSeparatedSextant-256</string>\n      <string>blockSeparatedSextant-256.stypo</string>\n      <string>blockSeparatedSextant-1256</string>\n      <string>blockSeparatedSextant-1256.stypo</string>\n      <string>blockSeparatedSextant-356</string>\n      <string>blockSeparatedSextant-356.stypo</string>\n      <string>blockSeparatedSextant-1356</string>\n      <string>blockSeparatedSextant-1356.stypo</string>\n      <string>blockSeparatedSextant-2356</string>\n      <string>blockSeparatedSextant-2356.stypo</string>\n      <string>blockSeparatedSextant-12356</string>\n      <string>blockSeparatedSextant-12356.stypo</string>\n      <string>blockSeparatedSextant-456</string>\n      <string>blockSeparatedSextant-456.stypo</string>\n      <string>blockSeparatedSextant-1456</string>\n      <string>blockSeparatedSextant-1456.stypo</string>\n      <string>blockSeparatedSextant-2456</string>\n      <string>blockSeparatedSextant-2456.stypo</string>\n      <string>blockSeparatedSextant-12456</string>\n      <string>blockSeparatedSextant-12456.stypo</string>\n      <string>blockSeparatedSextant-3456</string>\n      <string>blockSeparatedSextant-3456.stypo</string>\n      <string>blockSeparatedSextant-13456</string>\n      <string>blockSeparatedSextant-13456.stypo</string>\n      <string>blockSeparatedSextant-23456</string>\n      <string>blockSeparatedSextant-23456.stypo</string>\n      <string>blockSeparatedSextant-123456</string>\n      <string>blockSeparatedSextant-123456.stypo</string>\n      <string>segmentedDigit0</string>\n      <string>segmentedDigit1</string>\n      <string>segmentedDigit2</string>\n      <string>segmentedDigit3</string>\n      <string>segmentedDigit4</string>\n      <string>segmentedDigit5</string>\n      <string>segmentedDigit6</string>\n      <string>segmentedDigit7</string>\n      <string>segmentedDigit8</string>\n      <string>segmentedDigit9</string>\n      <string>largeType-1CE1A</string>\n      <string>largeType-1CE1A.stypo</string>\n      <string>largeType-1CE1B</string>\n      <string>largeType-1CE1B.stypo</string>\n      <string>largeType-1CE1C</string>\n      <string>largeType-1CE1C.stypo</string>\n      <string>largeType-1CE1D</string>\n      <string>largeType-1CE1D.stypo</string>\n      <string>largeType-1CE1E</string>\n      <string>largeType-1CE1E.stypo</string>\n      <string>largeType-1CE1F</string>\n      <string>largeType-1CE1F.stypo</string>\n      <string>largeType-1CE20</string>\n      <string>largeType-1CE20.stypo</string>\n      <string>largeType-1CE21</string>\n      <string>largeType-1CE21.stypo</string>\n      <string>largeType-1CE22</string>\n      <string>largeType-1CE22.stypo</string>\n      <string>largeType-1CE23</string>\n      <string>largeType-1CE23.stypo</string>\n      <string>largeType-1CE24</string>\n      <string>largeType-1CE24.stypo</string>\n      <string>largeType-1CE25</string>\n      <string>largeType-1CE25.stypo</string>\n      <string>largeType-1CE26</string>\n      <string>largeType-1CE26.stypo</string>\n      <string>largeType-1CE27</string>\n      <string>largeType-1CE27.stypo</string>\n      <string>largeType-1CE28</string>\n      <string>largeType-1CE28.stypo</string>\n      <string>largeType-1CE29</string>\n      <string>largeType-1CE29.stypo</string>\n      <string>largeType-1CE2A</string>\n      <string>largeType-1CE2A.stypo</string>\n      <string>largeType-1CE2B</string>\n      <string>largeType-1CE2B.stypo</string>\n      <string>largeType-1CE2C</string>\n      <string>largeType-1CE2C.stypo</string>\n      <string>largeType-1CE2D</string>\n      <string>largeType-1CE2D.stypo</string>\n      <string>largeType-1CE2E</string>\n      <string>largeType-1CE2E.stypo</string>\n      <string>largeType-1CE2F</string>\n      <string>largeType-1CE2F.stypo</string>\n      <string>largeType-1CE30</string>\n      <string>largeType-1CE30.stypo</string>\n      <string>largeType-1CE31</string>\n      <string>largeType-1CE31.stypo</string>\n      <string>largeType-1CE32</string>\n      <string>largeType-1CE32.stypo</string>\n      <string>largeType-1CE33</string>\n      <string>largeType-1CE33.stypo</string>\n      <string>largeType-1CE34</string>\n      <string>largeType-1CE34.stypo</string>\n      <string>largeType-1CE35</string>\n      <string>largeType-1CE35.stypo</string>\n      <string>largeType-1CE36</string>\n      <string>largeType-1CE36.stypo</string>\n      <string>largeType-1CE37</string>\n      <string>largeType-1CE37.stypo</string>\n      <string>largeType-1CE38</string>\n      <string>largeType-1CE38.stypo</string>\n      <string>largeType-1CE39</string>\n      <string>largeType-1CE39.stypo</string>\n      <string>largeType-1CE3A</string>\n      <string>largeType-1CE3A.stypo</string>\n      <string>largeType-1CE3B</string>\n      <string>largeType-1CE3B.stypo</string>\n      <string>largeType-1CE3C</string>\n      <string>largeType-1CE3C.stypo</string>\n      <string>largeType-1CE3D</string>\n      <string>largeType-1CE3D.stypo</string>\n      <string>largeType-1CE3E</string>\n      <string>largeType-1CE3E.stypo</string>\n      <string>largeType-1CE3F</string>\n      <string>largeType-1CE3F.stypo</string>\n      <string>largeType-1CE40</string>\n      <string>largeType-1CE40.stypo</string>\n      <string>largeType-1CE41</string>\n      <string>largeType-1CE41.stypo</string>\n      <string>largeType-1CE42</string>\n      <string>largeType-1CE42.stypo</string>\n      <string>largeType-1CE43</string>\n      <string>largeType-1CE43.stypo</string>\n      <string>largeType-1CE44</string>\n      <string>largeType-1CE44.stypo</string>\n      <string>largeType-1CE45</string>\n      <string>largeType-1CE45.stypo</string>\n      <string>largeType-1CE46</string>\n      <string>largeType-1CE46.stypo</string>\n      <string>largeType-1CE47</string>\n      <string>largeType-1CE47.stypo</string>\n      <string>largeType-1CE48</string>\n      <string>largeType-1CE48.stypo</string>\n      <string>largeType-1CE49</string>\n      <string>largeType-1CE49.stypo</string>\n      <string>largeType-1CE4A</string>\n      <string>largeType-1CE4A.stypo</string>\n      <string>largeType-1CE4B</string>\n      <string>largeType-1CE4B.stypo</string>\n      <string>largeType-1CE4C</string>\n      <string>largeType-1CE4C.stypo</string>\n      <string>largeType-1CE4D</string>\n      <string>largeType-1CE4D.stypo</string>\n      <string>largeType-1CE4E</string>\n      <string>largeType-1CE4E.stypo</string>\n      <string>largeType-1CE4F</string>\n      <string>largeType-1CE4F.stypo</string>\n      <string>largeType-1CE50</string>\n      <string>largeType-1CE50.stypo</string>\n      <string>LIG</string>\n    </array>\n    <key>public.postscriptNames</key>\n    <dict>\n      <key>A-cy</key>\n      <string>uni0410</string>\n      <key>Abreveacute</key>\n      <string>uni1EAE</string>\n      <key>Abrevedotbelow</key>\n      <string>uni1EB6</string>\n      <key>Abrevegrave</key>\n      <string>uni1EB0</string>\n      <key>Abrevehookabove</key>\n      <string>uni1EB2</string>\n      <key>Abrevetilde</key>\n      <string>uni1EB4</string>\n      <key>Acaron</key>\n      <string>uni01CD</string>\n      <key>Acircumflexacute</key>\n      <string>uni1EA4</string>\n      <key>Acircumflexdotbelow</key>\n      <string>uni1EAC</string>\n      <key>Acircumflexgrave</key>\n      <string>uni1EA6</string>\n      <key>Acircumflexhookabove</key>\n      <string>uni1EA8</string>\n      <key>Acircumflextilde</key>\n      <string>uni1EAA</string>\n      <key>Adotbelow</key>\n      <string>uni1EA0</string>\n      <key>Ahookabove</key>\n      <string>uni1EA2</string>\n      <key>Alpha-latin</key>\n      <string>uni2C6D</string>\n      <key>Asmall</key>\n      <string>uni1D00</string>\n      <key>Astroke</key>\n      <string>uni023A</string>\n      <key>Be-cy</key>\n      <string>uni0411</string>\n      <key>Che-cy</key>\n      <string>uni0427</string>\n      <key>Chedescender-cy</key>\n      <string>uni04B6</string>\n      <key>Cstroke</key>\n      <string>uni023B</string>\n      <key>Dafrican</key>\n      <string>uni0189</string>\n      <key>De-cy</key>\n      <string>uni0414</string>\n      <key>De-cy.loclBGR</key>\n      <string>uni0414.loclBGR</string>\n      <key>Delta</key>\n      <string>uni0394</string>\n      <key>Dje-cy</key>\n      <string>uni0402</string>\n      <key>Dze-cy</key>\n      <string>uni0405</string>\n      <key>Dzhe-cy</key>\n      <string>uni040F</string>\n      <key>E-cy</key>\n      <string>uni0404</string>\n      <key>Ecircumflexacute</key>\n      <string>uni1EBE</string>\n      <key>Ecircumflexdotbelow</key>\n      <string>uni1EC6</string>\n      <key>Ecircumflexgrave</key>\n      <string>uni1EC0</string>\n      <key>Ecircumflexhookabove</key>\n      <string>uni1EC2</string>\n      <key>Ecircumflextilde</key>\n      <string>uni1EC4</string>\n      <key>Edotbelow</key>\n      <string>uni1EB8</string>\n      <key>Ef-cy</key>\n      <string>uni0424</string>\n      <key>Ef-cy.loclBGR</key>\n      <string>uni0424.loclBGR</string>\n      <key>Ehookabove</key>\n      <string>uni1EBA</string>\n      <key>El-cy</key>\n      <string>uni041B</string>\n      <key>El-cy.loclBGR</key>\n      <string>uni041B.loclBGR</string>\n      <key>Em-cy</key>\n      <string>uni041C</string>\n      <key>En-cy</key>\n      <string>uni041D</string>\n      <key>Endescender-cy</key>\n      <string>uni04A2</string>\n      <key>Eopen</key>\n      <string>uni0190</string>\n      <key>Er-cy</key>\n      <string>uni0420</string>\n      <key>Ereversed</key>\n      <string>uni018E</string>\n      <key>Ereversed-cy</key>\n      <string>uni042D</string>\n      <key>Es-cy</key>\n      <string>uni0421</string>\n      <key>Esh</key>\n      <string>uni01A9</string>\n      <key>Etilde</key>\n      <string>uni1EBC</string>\n      <key>Ezh</key>\n      <string>uni01B7</string>\n      <key>Fhook</key>\n      <string>uni0191</string>\n      <key>Gammaafrican</key>\n      <string>uni0194</string>\n      <key>Gcommaaccent</key>\n      <string>uni0122</string>\n      <key>Ge-cy</key>\n      <string>uni0413</string>\n      <key>Germandbls</key>\n      <string>uni1E9E</string>\n      <key>Ghestroke-cy</key>\n      <string>uni0492</string>\n      <key>Gheupturn-cy</key>\n      <string>uni0490</string>\n      <key>Gje-cy</key>\n      <string>uni0403</string>\n      <key>Gsmall</key>\n      <string>uni0262</string>\n      <key>Gstroke</key>\n      <string>uni01E4</string>\n      <key>Ha-cy</key>\n      <string>uni0425</string>\n      <key>Hadescender-cy</key>\n      <string>uni04B2</string>\n      <key>Hardsign-cy</key>\n      <string>uni042A</string>\n      <key>Hcaron</key>\n      <string>uni021E</string>\n      <key>Hdotbelow</key>\n      <string>uni1E24</string>\n      <key>I-cy</key>\n      <string>uni0406</string>\n      <key>Ia-cy</key>\n      <string>uni042F</string>\n      <key>Idotbelow</key>\n      <string>uni1ECA</string>\n      <key>Ie-cy</key>\n      <string>uni0415</string>\n      <key>Iegrave-cy</key>\n      <string>uni0400</string>\n      <key>Ihookabove</key>\n      <string>uni1EC8</string>\n      <key>Ii-cy</key>\n      <string>uni0418</string>\n      <key>Iigrave-cy</key>\n      <string>uni040D</string>\n      <key>Iishort-cy</key>\n      <string>uni0419</string>\n      <key>Imacron-cy</key>\n      <string>uni04E2</string>\n      <key>Io-cy</key>\n      <string>uni0401</string>\n      <key>Iotaafrican</key>\n      <string>uni0196</string>\n      <key>Ismall</key>\n      <string>uni026A</string>\n      <key>Iu-cy</key>\n      <string>uni042E</string>\n      <key>Jacute</key>\n      <string>uni00A40301</string>\n      <key>Je-cy</key>\n      <string>uni0408</string>\n      <key>Ka-cy</key>\n      <string>uni041A</string>\n      <key>Kacute</key>\n      <string>uni1E30</string>\n      <key>Kadescender-cy</key>\n      <string>uni049A</string>\n      <key>KaiSymbol</key>\n      <string>uni03CF</string>\n      <key>Kcommaaccent</key>\n      <string>uni0136</string>\n      <key>Kdotbelow</key>\n      <string>uni1E32</string>\n      <key>Kje-cy</key>\n      <string>uni040C</string>\n      <key>Klinebelow</key>\n      <string>uni1E34</string>\n      <key>Lbar</key>\n      <string>uni023D</string>\n      <key>Lcommaaccent</key>\n      <string>uni013B</string>\n      <key>Ldotbelow</key>\n      <string>uni1E36</string>\n      <key>Lje-cy</key>\n      <string>uni0409</string>\n      <key>Llinebelow</key>\n      <string>uni1E3A</string>\n      <key>Lmiddletilde</key>\n      <string>uni2C62</string>\n      <key>Lsmall</key>\n      <string>uni029F</string>\n      <key>Ncommaaccent</key>\n      <string>uni0145</string>\n      <key>Nhookleft</key>\n      <string>uni019D</string>\n      <key>Nje-cy</key>\n      <string>uni040A</string>\n      <key>Nlinebelow</key>\n      <string>uni1E48</string>\n      <key>O-cy</key>\n      <string>uni041E</string>\n      <key>Obarred-cy</key>\n      <string>uni04E8</string>\n      <key>Ocircumflexacute</key>\n      <string>uni1ED0</string>\n      <key>Ocircumflexdotbelow</key>\n      <string>uni1ED8</string>\n      <key>Ocircumflexgrave</key>\n      <string>uni1ED2</string>\n      <key>Ocircumflexhookabove</key>\n      <string>uni1ED4</string>\n      <key>Ocircumflextilde</key>\n      <string>uni1ED6</string>\n      <key>Odotbelow</key>\n      <string>uni1ECC</string>\n      <key>Ohm</key>\n      <string>uni2126</string>\n      <key>Ohookabove</key>\n      <string>uni1ECE</string>\n      <key>Ohornacute</key>\n      <string>uni1EDA</string>\n      <key>Ohorndotbelow</key>\n      <string>uni1EE2</string>\n      <key>Ohorngrave</key>\n      <string>uni1EDC</string>\n      <key>Ohornhookabove</key>\n      <string>uni1EDE</string>\n      <key>Ohorntilde</key>\n      <string>uni1EE0</string>\n      <key>Omacronacute</key>\n      <string>uni1E52</string>\n      <key>Omacrongrave</key>\n      <string>uni1E50</string>\n      <key>Omega</key>\n      <string>uni03A9</string>\n      <key>Oogonek</key>\n      <string>uni01EA</string>\n      <key>Oopen</key>\n      <string>uni0186</string>\n      <key>Palochka-cy</key>\n      <string>uni04C0</string>\n      <key>Pe-cy</key>\n      <string>uni041F</string>\n      <key>Rcommaaccent</key>\n      <string>uni0156</string>\n      <key>Rdotbelow</key>\n      <string>uni1E5A</string>\n      <key>Schwa</key>\n      <string>uni018F</string>\n      <key>Schwa-cy</key>\n      <string>uni04D8</string>\n      <key>Scommaaccent</key>\n      <string>uni0218</string>\n      <key>Sdotbelow</key>\n      <string>uni1E62</string>\n      <key>Sha-cy</key>\n      <string>uni0428</string>\n      <key>Shcha-cy</key>\n      <string>uni0429</string>\n      <key>Shha-cy</key>\n      <string>uni04BA</string>\n      <key>Softsign-cy</key>\n      <string>uni042C</string>\n      <key>Tcedilla</key>\n      <string>uni0162</string>\n      <key>Tcommaaccent</key>\n      <string>uni021A</string>\n      <key>Tdiagonalstroke</key>\n      <string>uni023E</string>\n      <key>Te-cy</key>\n      <string>uni0422</string>\n      <key>Tlinebelow</key>\n      <string>uni1E6E</string>\n      <key>Tse-cy</key>\n      <string>uni0426</string>\n      <key>Tshe-cy</key>\n      <string>uni040B</string>\n      <key>U-cy</key>\n      <string>uni0423</string>\n      <key>Udotbelow</key>\n      <string>uni1EE4</string>\n      <key>Uhookabove</key>\n      <string>uni1EE6</string>\n      <key>Uhornacute</key>\n      <string>uni1EE8</string>\n      <key>Uhorndotbelow</key>\n      <string>uni1EF0</string>\n      <key>Uhorngrave</key>\n      <string>uni1EEA</string>\n      <key>Uhornhookabove</key>\n      <string>uni1EEC</string>\n      <key>Uhorntilde</key>\n      <string>uni1EEE</string>\n      <key>Umacron-cy</key>\n      <string>uni04EE</string>\n      <key>Upsilonafrican</key>\n      <string>uni01B1</string>\n      <key>Ushort-cy</key>\n      <string>uni040E</string>\n      <key>Ustraight-cy</key>\n      <string>uni04AE</string>\n      <key>Ustraightstroke-cy</key>\n      <string>uni04B0</string>\n      <key>Ve-cy</key>\n      <string>uni0412</string>\n      <key>Vhook</key>\n      <string>uni01B2</string>\n      <key>Vturned</key>\n      <string>uni0245</string>\n      <key>Ydotbelow</key>\n      <string>uni1EF4</string>\n      <key>Yeru-cy</key>\n      <string>uni042B</string>\n      <key>Yhookabove</key>\n      <string>uni1EF6</string>\n      <key>Yi-cy</key>\n      <string>uni0407</string>\n      <key>Ymacron</key>\n      <string>uni0232</string>\n      <key>Ytilde</key>\n      <string>uni1EF8</string>\n      <key>Ze-cy</key>\n      <string>uni0417</string>\n      <key>Zhe-cy</key>\n      <string>uni0416</string>\n      <key>Zhedescender-cy</key>\n      <string>uni0496</string>\n      <key>a-cy</key>\n      <string>uni0430</string>\n      <key>abreveacute</key>\n      <string>uni1EAF</string>\n      <key>abrevedotbelow</key>\n      <string>uni1EB7</string>\n      <key>abrevegrave</key>\n      <string>uni1EB1</string>\n      <key>abrevehookabove</key>\n      <string>uni1EB3</string>\n      <key>abrevetilde</key>\n      <string>uni1EB5</string>\n      <key>acaron</key>\n      <string>uni01CE</string>\n      <key>acircumflexacute</key>\n      <string>uni1EA5</string>\n      <key>acircumflexdotbelow</key>\n      <string>uni1EAD</string>\n      <key>acircumflexgrave</key>\n      <string>uni1EA7</string>\n      <key>acircumflexhookabove</key>\n      <string>uni1EA9</string>\n      <key>acircumflextilde</key>\n      <string>uni1EAB</string>\n      <key>acknowledgeControl</key>\n      <string>uni2406</string>\n      <key>acknowledgeControl.ss20</key>\n      <string>uni2406.ss20</string>\n      <key>acutetonecomb</key>\n      <string>uni0341</string>\n      <key>adotbelow</key>\n      <string>uni1EA1</string>\n      <key>ahookabove</key>\n      <string>uni1EA3</string>\n      <key>alpha-latin</key>\n      <string>uni0251</string>\n      <key>apostrophemod</key>\n      <string>uni02BC</string>\n      <key>backspaceControl</key>\n      <string>uni2408</string>\n      <key>backspaceControl.ss20</key>\n      <string>uni2408.ss20</string>\n      <key>baht</key>\n      <string>uni0E3F</string>\n      <key>baht.BRACKET.600</key>\n      <string>uni0E3F.BRACKET.600</string>\n      <key>be-cy</key>\n      <string>uni0431</string>\n      <key>be-cy.loclSRB</key>\n      <string>uni0431.loclSRB</string>\n      <key>bellControl</key>\n      <string>uni2407</string>\n      <key>bellControl.ss20</key>\n      <string>uni2407.ss20</string>\n      <key>bitcoin</key>\n      <string>uni20BF</string>\n      <key>blackCircle</key>\n      <string>uni25CF</string>\n      <key>blackDiamond</key>\n      <string>uni25C6</string>\n      <key>blackHexagon</key>\n      <string>uni2B22</string>\n      <key>blackHorizontalEllipse</key>\n      <string>uni2B2C</string>\n      <key>blackInWhiteDiamond</key>\n      <string>uni25C8</string>\n      <key>blackLargeCircle</key>\n      <string>uni2B24</string>\n      <key>blackLargeSquare</key>\n      <string>uni2B1B</string>\n      <key>blackMediumDiamond</key>\n      <string>uni2B25</string>\n      <key>blackMediumDownTriangleCentred</key>\n      <string>uni2BC6</string>\n      <key>blackMediumLeftTriangleCentred</key>\n      <string>uni2BC7</string>\n      <key>blackMediumLozenge</key>\n      <string>uni2B27</string>\n      <key>blackMediumRightTriangleCentred</key>\n      <string>uni2BC8</string>\n      <key>blackMediumUpTriangleCentred</key>\n      <string>uni2BC5</string>\n      <key>blackParallelogram</key>\n      <string>uni25B0</string>\n      <key>blackPentagon</key>\n      <string>uni2B1F</string>\n      <key>blackSmallDiamond</key>\n      <string>uni2B29</string>\n      <key>blackSmallLozenge</key>\n      <string>uni2B2A</string>\n      <key>blackSmallSquare</key>\n      <string>uni25AA</string>\n      <key>blackSmilingFace</key>\n      <string>invsmileface</string>\n      <key>blackSquare</key>\n      <string>filledbox</string>\n      <key>blackVerticalEllipse</key>\n      <string>uni2B2E</string>\n      <key>blackVerticalRect</key>\n      <string>uni25AE</string>\n      <key>blackVerysmallSquare</key>\n      <string>uni2B1D</string>\n      <key>blank</key>\n      <string>uni2423</string>\n      <key>blank-braille</key>\n      <string>uni2800</string>\n      <key>blankSymbol</key>\n      <string>uni2422</string>\n      <key>bottomHalfBlackCircle</key>\n      <string>uni2BCB</string>\n      <key>bottomHalfBlackDiamond</key>\n      <string>uni2B19</string>\n      <key>boxDoubleDownAndHorizontal</key>\n      <string>uni2566</string>\n      <key>boxDoubleDownAndHorizontal.stypo</key>\n      <string>uni2566.stypo</string>\n      <key>boxDoubleDownAndLeft</key>\n      <string>uni2557</string>\n      <key>boxDoubleDownAndLeft.stypo</key>\n      <string>uni2557.stypo</string>\n      <key>boxDoubleDownAndRight</key>\n      <string>uni2554</string>\n      <key>boxDoubleDownAndRight.stypo</key>\n      <string>uni2554.stypo</string>\n      <key>boxDoubleHorizontal</key>\n      <string>uni2550</string>\n      <key>boxDoubleHorizontal.stypo</key>\n      <string>uni2550.stypo</string>\n      <key>boxDoubleUpAndHorizontal</key>\n      <string>uni2569</string>\n      <key>boxDoubleUpAndHorizontal.stypo</key>\n      <string>uni2569.stypo</string>\n      <key>boxDoubleUpAndLeft</key>\n      <string>uni255D</string>\n      <key>boxDoubleUpAndLeft.stypo</key>\n      <string>uni255D.stypo</string>\n      <key>boxDoubleUpAndRight</key>\n      <string>uni255A</string>\n      <key>boxDoubleUpAndRight.stypo</key>\n      <string>uni255A.stypo</string>\n      <key>boxDoubleVertical</key>\n      <string>uni2551</string>\n      <key>boxDoubleVertical.stypo</key>\n      <string>uni2551.stypo</string>\n      <key>boxDoubleVerticalAndHorizontal</key>\n      <string>uni256C</string>\n      <key>boxDoubleVerticalAndHorizontal.stypo</key>\n      <string>uni256C.stypo</string>\n      <key>boxDoubleVerticalAndLeft</key>\n      <string>uni2563</string>\n      <key>boxDoubleVerticalAndLeft.stypo</key>\n      <string>uni2563.stypo</string>\n      <key>boxDoubleVerticalAndRight</key>\n      <string>uni2560</string>\n      <key>boxDoubleVerticalAndRight.stypo</key>\n      <string>uni2560.stypo</string>\n      <key>boxDownDoubleAndHorizontalSingle</key>\n      <string>uni2565</string>\n      <key>boxDownDoubleAndHorizontalSingle.stypo</key>\n      <string>uni2565.stypo</string>\n      <key>boxDownDoubleAndLeftSingle</key>\n      <string>uni2556</string>\n      <key>boxDownDoubleAndLeftSingle.stypo</key>\n      <string>uni2556.stypo</string>\n      <key>boxDownDoubleAndRightSingle</key>\n      <string>uni2553</string>\n      <key>boxDownDoubleAndRightSingle.stypo</key>\n      <string>uni2553.stypo</string>\n      <key>boxDownHeavyAndHorizontalLight</key>\n      <string>uni2530</string>\n      <key>boxDownHeavyAndHorizontalLight.stypo</key>\n      <string>uni2530.stypo</string>\n      <key>boxDownHeavyAndLeftLight</key>\n      <string>uni2512</string>\n      <key>boxDownHeavyAndLeftLight.stypo</key>\n      <string>uni2512.stypo</string>\n      <key>boxDownHeavyAndLeftUpLight</key>\n      <string>uni2527</string>\n      <key>boxDownHeavyAndLeftUpLight.stypo</key>\n      <string>uni2527.stypo</string>\n      <key>boxDownHeavyAndRightLight</key>\n      <string>uni250E</string>\n      <key>boxDownHeavyAndRightLight.stypo</key>\n      <string>uni250E.stypo</string>\n      <key>boxDownHeavyAndRightUpLight</key>\n      <string>uni251F</string>\n      <key>boxDownHeavyAndRightUpLight.stypo</key>\n      <string>uni251F.stypo</string>\n      <key>boxDownHeavyAndUpHorizontalLight</key>\n      <string>uni2541</string>\n      <key>boxDownHeavyAndUpHorizontalLight.stypo</key>\n      <string>uni2541.stypo</string>\n      <key>boxDownLightAndHorizontalHeavy</key>\n      <string>uni252F</string>\n      <key>boxDownLightAndHorizontalHeavy.stypo</key>\n      <string>uni252F.stypo</string>\n      <key>boxDownLightAndLeftHeavy</key>\n      <string>uni2511</string>\n      <key>boxDownLightAndLeftHeavy.stypo</key>\n      <string>uni2511.stypo</string>\n      <key>boxDownLightAndLeftUpHeavy</key>\n      <string>uni2529</string>\n      <key>boxDownLightAndLeftUpHeavy.stypo</key>\n      <string>uni2529.stypo</string>\n      <key>boxDownLightAndRightHeavy</key>\n      <string>uni250D</string>\n      <key>boxDownLightAndRightHeavy.stypo</key>\n      <string>uni250D.stypo</string>\n      <key>boxDownLightAndRightUpHeavy</key>\n      <string>uni2521</string>\n      <key>boxDownLightAndRightUpHeavy.stypo</key>\n      <string>uni2521.stypo</string>\n      <key>boxDownLightAndUpHorizontalHeavy</key>\n      <string>uni2547</string>\n      <key>boxDownLightAndUpHorizontalHeavy.stypo</key>\n      <string>uni2547.stypo</string>\n      <key>boxDownSingleAndHorizontalDouble</key>\n      <string>uni2564</string>\n      <key>boxDownSingleAndHorizontalDouble.stypo</key>\n      <string>uni2564.stypo</string>\n      <key>boxDownSingleAndLeftDouble</key>\n      <string>uni2555</string>\n      <key>boxDownSingleAndLeftDouble.stypo</key>\n      <string>uni2555.stypo</string>\n      <key>boxDownSingleAndRightDouble</key>\n      <string>uni2552</string>\n      <key>boxDownSingleAndRightDouble.stypo</key>\n      <string>uni2552.stypo</string>\n      <key>boxHeavyDoubleDashHorizontal</key>\n      <string>uni254D</string>\n      <key>boxHeavyDoubleDashHorizontal.stypo</key>\n      <string>uni254D.stypo</string>\n      <key>boxHeavyDoubleDashVertical</key>\n      <string>uni254F</string>\n      <key>boxHeavyDoubleDashVertical.stypo</key>\n      <string>uni254F.stypo</string>\n      <key>boxHeavyDown</key>\n      <string>uni257B</string>\n      <key>boxHeavyDown.stypo</key>\n      <string>uni257B.stypo</string>\n      <key>boxHeavyDownAndHorizontal</key>\n      <string>uni2533</string>\n      <key>boxHeavyDownAndHorizontal.stypo</key>\n      <string>uni2533.stypo</string>\n      <key>boxHeavyDownAndLeft</key>\n      <string>uni2513</string>\n      <key>boxHeavyDownAndLeft.stypo</key>\n      <string>uni2513.stypo</string>\n      <key>boxHeavyDownAndRight</key>\n      <string>uni250F</string>\n      <key>boxHeavyDownAndRight.stypo</key>\n      <string>uni250F.stypo</string>\n      <key>boxHeavyHorizontal</key>\n      <string>uni2501</string>\n      <key>boxHeavyHorizontal.stypo</key>\n      <string>uni2501.stypo</string>\n      <key>boxHeavyLeft</key>\n      <string>uni2578</string>\n      <key>boxHeavyLeft.stypo</key>\n      <string>uni2578.stypo</string>\n      <key>boxHeavyLeftAndLightRight</key>\n      <string>uni257E</string>\n      <key>boxHeavyLeftAndLightRight.stypo</key>\n      <string>uni257E.stypo</string>\n      <key>boxHeavyQuadrupleDashHorizontal</key>\n      <string>uni2509</string>\n      <key>boxHeavyQuadrupleDashHorizontal.stypo</key>\n      <string>uni2509.stypo</string>\n      <key>boxHeavyQuadrupleDashVertical</key>\n      <string>uni250B</string>\n      <key>boxHeavyQuadrupleDashVertical.stypo</key>\n      <string>uni250B.stypo</string>\n      <key>boxHeavyRight</key>\n      <string>uni257A</string>\n      <key>boxHeavyRight.stypo</key>\n      <string>uni257A.stypo</string>\n      <key>boxHeavyTripleDashHorizontal</key>\n      <string>uni2505</string>\n      <key>boxHeavyTripleDashHorizontal.stypo</key>\n      <string>uni2505.stypo</string>\n      <key>boxHeavyTripleDashVertical</key>\n      <string>uni2507</string>\n      <key>boxHeavyTripleDashVertical.stypo</key>\n      <string>uni2507.stypo</string>\n      <key>boxHeavyUp</key>\n      <string>uni2579</string>\n      <key>boxHeavyUp.stypo</key>\n      <string>uni2579.stypo</string>\n      <key>boxHeavyUpAndHorizontal</key>\n      <string>uni253B</string>\n      <key>boxHeavyUpAndHorizontal.stypo</key>\n      <string>uni253B.stypo</string>\n      <key>boxHeavyUpAndLeft</key>\n      <string>uni251B</string>\n      <key>boxHeavyUpAndLeft.stypo</key>\n      <string>uni251B.stypo</string>\n      <key>boxHeavyUpAndLightDown</key>\n      <string>uni257F</string>\n      <key>boxHeavyUpAndLightDown.stypo</key>\n      <string>uni257F.stypo</string>\n      <key>boxHeavyUpAndRight</key>\n      <string>uni2517</string>\n      <key>boxHeavyUpAndRight.stypo</key>\n      <string>uni2517.stypo</string>\n      <key>boxHeavyVertical</key>\n      <string>uni2503</string>\n      <key>boxHeavyVertical.stypo</key>\n      <string>uni2503.stypo</string>\n      <key>boxHeavyVerticalAndHorizontal</key>\n      <string>uni254B</string>\n      <key>boxHeavyVerticalAndHorizontal.stypo</key>\n      <string>uni254B.stypo</string>\n      <key>boxHeavyVerticalAndLeft</key>\n      <string>uni252B</string>\n      <key>boxHeavyVerticalAndLeft.stypo</key>\n      <string>uni252B.stypo</string>\n      <key>boxHeavyVerticalAndRight</key>\n      <string>uni2523</string>\n      <key>boxHeavyVerticalAndRight.stypo</key>\n      <string>uni2523.stypo</string>\n      <key>boxLeftDownHeavyAndRightUpLight</key>\n      <string>uni2545</string>\n      <key>boxLeftDownHeavyAndRightUpLight.stypo</key>\n      <string>uni2545.stypo</string>\n      <key>boxLeftHeavyAndRightDownLight</key>\n      <string>uni252D</string>\n      <key>boxLeftHeavyAndRightDownLight.stypo</key>\n      <string>uni252D.stypo</string>\n      <key>boxLeftHeavyAndRightUpLight</key>\n      <string>uni2535</string>\n      <key>boxLeftHeavyAndRightUpLight.stypo</key>\n      <string>uni2535.stypo</string>\n      <key>boxLeftHeavyAndRightVerticalLight</key>\n      <string>uni253D</string>\n      <key>boxLeftHeavyAndRightVerticalLight.stypo</key>\n      <string>uni253D.stypo</string>\n      <key>boxLeftLightAndRightDownHeavy</key>\n      <string>uni2532</string>\n      <key>boxLeftLightAndRightDownHeavy.stypo</key>\n      <string>uni2532.stypo</string>\n      <key>boxLeftLightAndRightUpHeavy</key>\n      <string>uni253A</string>\n      <key>boxLeftLightAndRightUpHeavy.stypo</key>\n      <string>uni253A.stypo</string>\n      <key>boxLeftLightAndRightVerticalHeavy</key>\n      <string>uni254A</string>\n      <key>boxLeftLightAndRightVerticalHeavy.stypo</key>\n      <string>uni254A.stypo</string>\n      <key>boxLeftUpHeavyAndRightDownLight</key>\n      <string>uni2543</string>\n      <key>boxLeftUpHeavyAndRightDownLight.stypo</key>\n      <string>uni2543.stypo</string>\n      <key>boxLightArcDownAndLeft</key>\n      <string>uni256E</string>\n      <key>boxLightArcDownAndLeft.stypo</key>\n      <string>uni256E.stypo</string>\n      <key>boxLightArcDownAndRight</key>\n      <string>uni256D</string>\n      <key>boxLightArcDownAndRight.stypo</key>\n      <string>uni256D.stypo</string>\n      <key>boxLightArcUpAndLeft</key>\n      <string>uni256F</string>\n      <key>boxLightArcUpAndLeft.stypo</key>\n      <string>uni256F.stypo</string>\n      <key>boxLightArcUpAndRight</key>\n      <string>uni2570</string>\n      <key>boxLightArcUpAndRight.stypo</key>\n      <string>uni2570.stypo</string>\n      <key>boxLightDiagonalCross</key>\n      <string>uni2573</string>\n      <key>boxLightDiagonalCross.stypo</key>\n      <string>uni2573.stypo</string>\n      <key>boxLightDiagonalUpperLeftToLowerRight</key>\n      <string>uni2572</string>\n      <key>boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n      <string>uni2572.stypo</string>\n      <key>boxLightDiagonalUpperRightToLowerLeft</key>\n      <string>uni2571</string>\n      <key>boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n      <string>uni2571.stypo</string>\n      <key>boxLightDoubleDashHorizontal</key>\n      <string>uni254C</string>\n      <key>boxLightDoubleDashHorizontal.stypo</key>\n      <string>uni254C.stypo</string>\n      <key>boxLightDoubleDashVertical</key>\n      <string>uni254E</string>\n      <key>boxLightDoubleDashVertical.stypo</key>\n      <string>uni254E.stypo</string>\n      <key>boxLightDown</key>\n      <string>uni2577</string>\n      <key>boxLightDown.stypo</key>\n      <string>uni2577.stypo</string>\n      <key>boxLightDownAndHorizontal</key>\n      <string>uni252C</string>\n      <key>boxLightDownAndHorizontal.stypo</key>\n      <string>uni252C.stypo</string>\n      <key>boxLightDownAndLeft</key>\n      <string>uni2510</string>\n      <key>boxLightDownAndLeft.stypo</key>\n      <string>uni2510.stypo</string>\n      <key>boxLightDownAndRight</key>\n      <string>uni250C</string>\n      <key>boxLightDownAndRight.stypo</key>\n      <string>uni250C.stypo</string>\n      <key>boxLightHorizontal</key>\n      <string>uni2500</string>\n      <key>boxLightHorizontal.stypo</key>\n      <string>uni2500.stypo</string>\n      <key>boxLightLeft</key>\n      <string>uni2574</string>\n      <key>boxLightLeft.stypo</key>\n      <string>uni2574.stypo</string>\n      <key>boxLightLeftAndHeavyRight</key>\n      <string>uni257C</string>\n      <key>boxLightLeftAndHeavyRight.stypo</key>\n      <string>uni257C.stypo</string>\n      <key>boxLightQuadrupleDashHorizontal</key>\n      <string>uni2508</string>\n      <key>boxLightQuadrupleDashHorizontal.stypo</key>\n      <string>uni2508.stypo</string>\n      <key>boxLightQuadrupleDashVertical</key>\n      <string>uni250A</string>\n      <key>boxLightQuadrupleDashVertical.stypo</key>\n      <string>uni250A.stypo</string>\n      <key>boxLightRight</key>\n      <string>uni2576</string>\n      <key>boxLightRight.stypo</key>\n      <string>uni2576.stypo</string>\n      <key>boxLightTripleDashHorizontal</key>\n      <string>uni2504</string>\n      <key>boxLightTripleDashHorizontal.stypo</key>\n      <string>uni2504.stypo</string>\n      <key>boxLightTripleDashVertical</key>\n      <string>uni2506</string>\n      <key>boxLightTripleDashVertical.stypo</key>\n      <string>uni2506.stypo</string>\n      <key>boxLightUp</key>\n      <string>uni2575</string>\n      <key>boxLightUp.stypo</key>\n      <string>uni2575.stypo</string>\n      <key>boxLightUpAndHeavyDown</key>\n      <string>uni257D</string>\n      <key>boxLightUpAndHeavyDown.stypo</key>\n      <string>uni257D.stypo</string>\n      <key>boxLightUpAndHorizontal</key>\n      <string>uni2534</string>\n      <key>boxLightUpAndHorizontal.stypo</key>\n      <string>uni2534.stypo</string>\n      <key>boxLightUpAndLeft</key>\n      <string>uni2518</string>\n      <key>boxLightUpAndLeft.stypo</key>\n      <string>uni2518.stypo</string>\n      <key>boxLightUpAndRight</key>\n      <string>uni2514</string>\n      <key>boxLightUpAndRight.stypo</key>\n      <string>uni2514.stypo</string>\n      <key>boxLightVertical</key>\n      <string>uni2502</string>\n      <key>boxLightVertical.stypo</key>\n      <string>uni2502.stypo</string>\n      <key>boxLightVerticalAndHorizontal</key>\n      <string>uni253C</string>\n      <key>boxLightVerticalAndHorizontal.stypo</key>\n      <string>uni253C.stypo</string>\n      <key>boxLightVerticalAndLeft</key>\n      <string>uni2524</string>\n      <key>boxLightVerticalAndLeft.stypo</key>\n      <string>uni2524.stypo</string>\n      <key>boxLightVerticalAndRight</key>\n      <string>uni251C</string>\n      <key>boxLightVerticalAndRight.stypo</key>\n      <string>uni251C.stypo</string>\n      <key>boxRightDownHeavyAndLeftUpLight</key>\n      <string>uni2546</string>\n      <key>boxRightDownHeavyAndLeftUpLight.stypo</key>\n      <string>uni2546.stypo</string>\n      <key>boxRightHeavyAndLeftDownLight</key>\n      <string>uni252E</string>\n      <key>boxRightHeavyAndLeftDownLight.stypo</key>\n      <string>uni252E.stypo</string>\n      <key>boxRightHeavyAndLeftUpLight</key>\n      <string>uni2536</string>\n      <key>boxRightHeavyAndLeftUpLight.stypo</key>\n      <string>uni2536.stypo</string>\n      <key>boxRightHeavyAndLeftVerticalLight</key>\n      <string>uni253E</string>\n      <key>boxRightHeavyAndLeftVerticalLight.stypo</key>\n      <string>uni253E.stypo</string>\n      <key>boxRightLightAndLeftDownHeavy</key>\n      <string>uni2531</string>\n      <key>boxRightLightAndLeftDownHeavy.stypo</key>\n      <string>uni2531.stypo</string>\n      <key>boxRightLightAndLeftUpHeavy</key>\n      <string>uni2539</string>\n      <key>boxRightLightAndLeftUpHeavy.stypo</key>\n      <string>uni2539.stypo</string>\n      <key>boxRightLightAndLeftVerticalHeavy</key>\n      <string>uni2549</string>\n      <key>boxRightLightAndLeftVerticalHeavy.stypo</key>\n      <string>uni2549.stypo</string>\n      <key>boxRightUpHeavyAndLeftDownLight</key>\n      <string>uni2544</string>\n      <key>boxRightUpHeavyAndLeftDownLight.stypo</key>\n      <string>uni2544.stypo</string>\n      <key>boxUpDoubleAndHorizontalSingle</key>\n      <string>uni2568</string>\n      <key>boxUpDoubleAndHorizontalSingle.stypo</key>\n      <string>uni2568.stypo</string>\n      <key>boxUpDoubleAndLeftSingle</key>\n      <string>uni255C</string>\n      <key>boxUpDoubleAndLeftSingle.stypo</key>\n      <string>uni255C.stypo</string>\n      <key>boxUpDoubleAndRightSingle</key>\n      <string>uni2559</string>\n      <key>boxUpDoubleAndRightSingle.stypo</key>\n      <string>uni2559.stypo</string>\n      <key>boxUpHeavyAndDownHorizontalLight</key>\n      <string>uni2540</string>\n      <key>boxUpHeavyAndDownHorizontalLight.stypo</key>\n      <string>uni2540.stypo</string>\n      <key>boxUpHeavyAndHorizontalLight</key>\n      <string>uni2538</string>\n      <key>boxUpHeavyAndHorizontalLight.stypo</key>\n      <string>uni2538.stypo</string>\n      <key>boxUpHeavyAndLeftDownLight</key>\n      <string>uni2526</string>\n      <key>boxUpHeavyAndLeftDownLight.stypo</key>\n      <string>uni2526.stypo</string>\n      <key>boxUpHeavyAndLeftLight</key>\n      <string>uni251A</string>\n      <key>boxUpHeavyAndLeftLight.stypo</key>\n      <string>uni251A.stypo</string>\n      <key>boxUpHeavyAndRightDownLight</key>\n      <string>uni251E</string>\n      <key>boxUpHeavyAndRightDownLight.stypo</key>\n      <string>uni251E.stypo</string>\n      <key>boxUpHeavyAndRightLight</key>\n      <string>uni2516</string>\n      <key>boxUpHeavyAndRightLight.stypo</key>\n      <string>uni2516.stypo</string>\n      <key>boxUpLightAndDownHorizontalHeavy</key>\n      <string>uni2548</string>\n      <key>boxUpLightAndDownHorizontalHeavy.stypo</key>\n      <string>uni2548.stypo</string>\n      <key>boxUpLightAndHorizontalHeavy</key>\n      <string>uni2537</string>\n      <key>boxUpLightAndHorizontalHeavy.stypo</key>\n      <string>uni2537.stypo</string>\n      <key>boxUpLightAndLeftDownHeavy</key>\n      <string>uni252A</string>\n      <key>boxUpLightAndLeftDownHeavy.stypo</key>\n      <string>uni252A.stypo</string>\n      <key>boxUpLightAndLeftHeavy</key>\n      <string>uni2519</string>\n      <key>boxUpLightAndLeftHeavy.stypo</key>\n      <string>uni2519.stypo</string>\n      <key>boxUpLightAndRightDownHeavy</key>\n      <string>uni2522</string>\n      <key>boxUpLightAndRightDownHeavy.stypo</key>\n      <string>uni2522.stypo</string>\n      <key>boxUpLightAndRightHeavy</key>\n      <string>uni2515</string>\n      <key>boxUpLightAndRightHeavy.stypo</key>\n      <string>uni2515.stypo</string>\n      <key>boxUpSingleAndHorizontalDouble</key>\n      <string>uni2567</string>\n      <key>boxUpSingleAndHorizontalDouble.stypo</key>\n      <string>uni2567.stypo</string>\n      <key>boxUpSingleAndLeftDouble</key>\n      <string>uni255B</string>\n      <key>boxUpSingleAndLeftDouble.stypo</key>\n      <string>uni255B.stypo</string>\n      <key>boxUpSingleAndRightDouble</key>\n      <string>uni2558</string>\n      <key>boxUpSingleAndRightDouble.stypo</key>\n      <string>uni2558.stypo</string>\n      <key>boxVerticalDoubleAndHorizontalSingle</key>\n      <string>uni256B</string>\n      <key>boxVerticalDoubleAndHorizontalSingle.stypo</key>\n      <string>uni256B.stypo</string>\n      <key>boxVerticalDoubleAndLeftSingle</key>\n      <string>uni2562</string>\n      <key>boxVerticalDoubleAndLeftSingle.stypo</key>\n      <string>uni2562.stypo</string>\n      <key>boxVerticalDoubleAndRightSingle</key>\n      <string>uni255F</string>\n      <key>boxVerticalDoubleAndRightSingle.stypo</key>\n      <string>uni255F.stypo</string>\n      <key>boxVerticalHeavyAndHorizontalLight</key>\n      <string>uni2542</string>\n      <key>boxVerticalHeavyAndHorizontalLight.stypo</key>\n      <string>uni2542.stypo</string>\n      <key>boxVerticalHeavyAndLeftLight</key>\n      <string>uni2528</string>\n      <key>boxVerticalHeavyAndLeftLight.stypo</key>\n      <string>uni2528.stypo</string>\n      <key>boxVerticalHeavyAndRightLight</key>\n      <string>uni2520</string>\n      <key>boxVerticalHeavyAndRightLight.stypo</key>\n      <string>uni2520.stypo</string>\n      <key>boxVerticalLightAndHorizontalHeavy</key>\n      <string>uni253F</string>\n      <key>boxVerticalLightAndHorizontalHeavy.stypo</key>\n      <string>uni253F.stypo</string>\n      <key>boxVerticalLightAndLeftHeavy</key>\n      <string>uni2525</string>\n      <key>boxVerticalLightAndLeftHeavy.stypo</key>\n      <string>uni2525.stypo</string>\n      <key>boxVerticalLightAndRightHeavy</key>\n      <string>uni251D</string>\n      <key>boxVerticalLightAndRightHeavy.stypo</key>\n      <string>uni251D.stypo</string>\n      <key>boxVerticalSingleAndHorizontalDouble</key>\n      <string>uni256A</string>\n      <key>boxVerticalSingleAndHorizontalDouble.stypo</key>\n      <string>uni256A.stypo</string>\n      <key>boxVerticalSingleAndLeftDouble</key>\n      <string>uni2561</string>\n      <key>boxVerticalSingleAndLeftDouble.stypo</key>\n      <string>uni2561.stypo</string>\n      <key>boxVerticalSingleAndRightDouble</key>\n      <string>uni255E</string>\n      <key>boxVerticalSingleAndRightDouble.stypo</key>\n      <string>uni255E.stypo</string>\n      <key>brevecomb</key>\n      <string>uni0306</string>\n      <key>brevecomb-cy</key>\n      <string>brevecombcy</string>\n      <key>brevecomb-cy.case</key>\n      <string>brevecombcy.case</string>\n      <key>brevecomb.case</key>\n      <string>uni0306.case</string>\n      <key>bulletoperator</key>\n      <string>uni2219</string>\n      <key>bullseye</key>\n      <string>uni25CE</string>\n      <key>cancelControl</key>\n      <string>uni2418</string>\n      <key>cancelControl.ss20</key>\n      <string>uni2418.ss20</string>\n      <key>careof</key>\n      <string>uni2105</string>\n      <key>caroncomb</key>\n      <string>uni030C</string>\n      <key>caroncomb.case</key>\n      <string>uni030C.case</string>\n      <key>carriageReturnControl</key>\n      <string>uni240D</string>\n      <key>carriageReturnControl.ss20</key>\n      <string>uni240D.ss20</string>\n      <key>cedi</key>\n      <string>uni20B5</string>\n      <key>cedillacomb</key>\n      <string>uni0327</string>\n      <key>che-cy</key>\n      <string>uni0447</string>\n      <key>che-cy.salt</key>\n      <string>uni0447.001</string>\n      <key>checkmark</key>\n      <string>uni2713</string>\n      <key>chedescender-cy</key>\n      <string>uni04B7</string>\n      <key>chedescender-cy.salt</key>\n      <string>uni04B7.001</string>\n      <key>circumflexcomb</key>\n      <string>uni0302</string>\n      <key>circumflexcomb.case</key>\n      <string>uni0302.case</string>\n      <key>clubBlackSuit</key>\n      <string>club</string>\n      <key>colonsign</key>\n      <string>colonmonetary</string>\n      <key>colontriangularmod</key>\n      <string>uni02D0</string>\n      <key>commaabovecomb</key>\n      <string>uni0313</string>\n      <key>commaaboverightcomb</key>\n      <string>uni0315</string>\n      <key>commaaccentcomb</key>\n      <string>uni0326</string>\n      <key>commaturnedabovecomb</key>\n      <string>uni0312</string>\n      <key>commaturnedmod</key>\n      <string>uni02BB</string>\n      <key>crosshatchFillSquare</key>\n      <string>uni25A6</string>\n      <key>dashdownArrow</key>\n      <string>uni21E3</string>\n      <key>dataLinkEscapeControl</key>\n      <string>uni2410</string>\n      <key>dataLinkEscapeControl.ss20</key>\n      <string>uni2410.ss20</string>\n      <key>de-cy</key>\n      <string>uni0434</string>\n      <key>de-cy.loclBGR</key>\n      <string>uni0434.loclBGR</string>\n      <key>deleteControl</key>\n      <string>uni2421</string>\n      <key>deleteFormTwoControl</key>\n      <string>uni2425</string>\n      <key>deviceControlFourControl</key>\n      <string>uni2414</string>\n      <key>deviceControlOneControl</key>\n      <string>uni2411</string>\n      <key>deviceControlThreeControl</key>\n      <string>uni2413</string>\n      <key>deviceControlTwoControl</key>\n      <string>uni2412</string>\n      <key>diagonalcrosshatchFillSquare</key>\n      <string>uni25A9</string>\n      <key>diamondBlackSuit</key>\n      <string>diamond</string>\n      <key>dieresiscomb</key>\n      <string>uni0308</string>\n      <key>dieresiscomb.case</key>\n      <string>uni0308.case</string>\n      <key>divisionslash</key>\n      <string>uni2215</string>\n      <key>dje-cy</key>\n      <string>uni0452</string>\n      <key>dotaccentcomb</key>\n      <string>uni0307</string>\n      <key>dotaccentcomb.case</key>\n      <string>uni0307.case</string>\n      <key>dots1-braille</key>\n      <string>uni2801</string>\n      <key>dots12-braille</key>\n      <string>uni2803</string>\n      <key>dots123-braille</key>\n      <string>uni2807</string>\n      <key>dots1234-braille</key>\n      <string>uni280F</string>\n      <key>dots12345-braille</key>\n      <string>uni281F</string>\n      <key>dots123456-braille</key>\n      <string>uni283F</string>\n      <key>dots1234567-braille</key>\n      <string>uni287F</string>\n      <key>dots12345678-braille</key>\n      <string>uni28FF</string>\n      <key>dots1234568-braille</key>\n      <string>uni28BF</string>\n      <key>dots123457-braille</key>\n      <string>uni285F</string>\n      <key>dots1234578-braille</key>\n      <string>uni28DF</string>\n      <key>dots123458-braille</key>\n      <string>uni289F</string>\n      <key>dots12346-braille</key>\n      <string>uni282F</string>\n      <key>dots123467-braille</key>\n      <string>uni286F</string>\n      <key>dots1234678-braille</key>\n      <string>uni28EF</string>\n      <key>dots123468-braille</key>\n      <string>uni28AF</string>\n      <key>dots12347-braille</key>\n      <string>uni284F</string>\n      <key>dots123478-braille</key>\n      <string>uni28CF</string>\n      <key>dots12348-braille</key>\n      <string>uni288F</string>\n      <key>dots1235-braille</key>\n      <string>uni2817</string>\n      <key>dots12356-braille</key>\n      <string>uni2837</string>\n      <key>dots123567-braille</key>\n      <string>uni2877</string>\n      <key>dots1235678-braille</key>\n      <string>uni28F7</string>\n      <key>dots123568-braille</key>\n      <string>uni28B7</string>\n      <key>dots12357-braille</key>\n      <string>uni2857</string>\n      <key>dots123578-braille</key>\n      <string>uni28D7</string>\n      <key>dots12358-braille</key>\n      <string>uni2897</string>\n      <key>dots1236-braille</key>\n      <string>uni2827</string>\n      <key>dots12367-braille</key>\n      <string>uni2867</string>\n      <key>dots123678-braille</key>\n      <string>uni28E7</string>\n      <key>dots12368-braille</key>\n      <string>uni28A7</string>\n      <key>dots1237-braille</key>\n      <string>uni2847</string>\n      <key>dots12378-braille</key>\n      <string>uni28C7</string>\n      <key>dots1238-braille</key>\n      <string>uni2887</string>\n      <key>dots124-braille</key>\n      <string>uni280B</string>\n      <key>dots1245-braille</key>\n      <string>uni281B</string>\n      <key>dots12456-braille</key>\n      <string>uni283B</string>\n      <key>dots124567-braille</key>\n      <string>uni287B</string>\n      <key>dots1245678-braille</key>\n      <string>uni28FB</string>\n      <key>dots124568-braille</key>\n      <string>uni28BB</string>\n      <key>dots12457-braille</key>\n      <string>uni285B</string>\n      <key>dots124578-braille</key>\n      <string>uni28DB</string>\n      <key>dots12458-braille</key>\n      <string>uni289B</string>\n      <key>dots1246-braille</key>\n      <string>uni282B</string>\n      <key>dots12467-braille</key>\n      <string>uni286B</string>\n      <key>dots124678-braille</key>\n      <string>uni28EB</string>\n      <key>dots12468-braille</key>\n      <string>uni28AB</string>\n      <key>dots1247-braille</key>\n      <string>uni284B</string>\n      <key>dots12478-braille</key>\n      <string>uni28CB</string>\n      <key>dots1248-braille</key>\n      <string>uni288B</string>\n      <key>dots125-braille</key>\n      <string>uni2813</string>\n      <key>dots1256-braille</key>\n      <string>uni2833</string>\n      <key>dots12567-braille</key>\n      <string>uni2873</string>\n      <key>dots125678-braille</key>\n      <string>uni28F3</string>\n      <key>dots12568-braille</key>\n      <string>uni28B3</string>\n      <key>dots1257-braille</key>\n      <string>uni2853</string>\n      <key>dots12578-braille</key>\n      <string>uni28D3</string>\n      <key>dots1258-braille</key>\n      <string>uni2893</string>\n      <key>dots126-braille</key>\n      <string>uni2823</string>\n      <key>dots1267-braille</key>\n      <string>uni2863</string>\n      <key>dots12678-braille</key>\n      <string>uni28E3</string>\n      <key>dots1268-braille</key>\n      <string>uni28A3</string>\n      <key>dots127-braille</key>\n      <string>uni2843</string>\n      <key>dots1278-braille</key>\n      <string>uni28C3</string>\n      <key>dots128-braille</key>\n      <string>uni2883</string>\n      <key>dots13-braille</key>\n      <string>uni2805</string>\n      <key>dots134-braille</key>\n      <string>uni280D</string>\n      <key>dots1345-braille</key>\n      <string>uni281D</string>\n      <key>dots13456-braille</key>\n      <string>uni283D</string>\n      <key>dots134567-braille</key>\n      <string>uni287D</string>\n      <key>dots1345678-braille</key>\n      <string>uni28FD</string>\n      <key>dots134568-braille</key>\n      <string>uni28BD</string>\n      <key>dots13457-braille</key>\n      <string>uni285D</string>\n      <key>dots134578-braille</key>\n      <string>uni28DD</string>\n      <key>dots13458-braille</key>\n      <string>uni289D</string>\n      <key>dots1346-braille</key>\n      <string>uni282D</string>\n      <key>dots13467-braille</key>\n      <string>uni286D</string>\n      <key>dots134678-braille</key>\n      <string>uni28ED</string>\n      <key>dots13468-braille</key>\n      <string>uni28AD</string>\n      <key>dots1347-braille</key>\n      <string>uni284D</string>\n      <key>dots13478-braille</key>\n      <string>uni28CD</string>\n      <key>dots1348-braille</key>\n      <string>uni288D</string>\n      <key>dots135-braille</key>\n      <string>uni2815</string>\n      <key>dots1356-braille</key>\n      <string>uni2835</string>\n      <key>dots13567-braille</key>\n      <string>uni2875</string>\n      <key>dots135678-braille</key>\n      <string>uni28F5</string>\n      <key>dots13568-braille</key>\n      <string>uni28B5</string>\n      <key>dots1357-braille</key>\n      <string>uni2855</string>\n      <key>dots13578-braille</key>\n      <string>uni28D5</string>\n      <key>dots1358-braille</key>\n      <string>uni2895</string>\n      <key>dots136-braille</key>\n      <string>uni2825</string>\n      <key>dots1367-braille</key>\n      <string>uni2865</string>\n      <key>dots13678-braille</key>\n      <string>uni28E5</string>\n      <key>dots1368-braille</key>\n      <string>uni28A5</string>\n      <key>dots137-braille</key>\n      <string>uni2845</string>\n      <key>dots1378-braille</key>\n      <string>uni28C5</string>\n      <key>dots138-braille</key>\n      <string>uni2885</string>\n      <key>dots14-braille</key>\n      <string>uni2809</string>\n      <key>dots145-braille</key>\n      <string>uni2819</string>\n      <key>dots1456-braille</key>\n      <string>uni2839</string>\n      <key>dots14567-braille</key>\n      <string>uni2879</string>\n      <key>dots145678-braille</key>\n      <string>uni28F9</string>\n      <key>dots14568-braille</key>\n      <string>uni28B9</string>\n      <key>dots1457-braille</key>\n      <string>uni2859</string>\n      <key>dots14578-braille</key>\n      <string>uni28D9</string>\n      <key>dots1458-braille</key>\n      <string>uni2899</string>\n      <key>dots146-braille</key>\n      <string>uni2829</string>\n      <key>dots1467-braille</key>\n      <string>uni2869</string>\n      <key>dots14678-braille</key>\n      <string>uni28E9</string>\n      <key>dots1468-braille</key>\n      <string>uni28A9</string>\n      <key>dots147-braille</key>\n      <string>uni2849</string>\n      <key>dots1478-braille</key>\n      <string>uni28C9</string>\n      <key>dots148-braille</key>\n      <string>uni2889</string>\n      <key>dots15-braille</key>\n      <string>uni2811</string>\n      <key>dots156-braille</key>\n      <string>uni2831</string>\n      <key>dots1567-braille</key>\n      <string>uni2871</string>\n      <key>dots15678-braille</key>\n      <string>uni28F1</string>\n      <key>dots1568-braille</key>\n      <string>uni28B1</string>\n      <key>dots157-braille</key>\n      <string>uni2851</string>\n      <key>dots1578-braille</key>\n      <string>uni28D1</string>\n      <key>dots158-braille</key>\n      <string>uni2891</string>\n      <key>dots16-braille</key>\n      <string>uni2821</string>\n      <key>dots167-braille</key>\n      <string>uni2861</string>\n      <key>dots1678-braille</key>\n      <string>uni28E1</string>\n      <key>dots168-braille</key>\n      <string>uni28A1</string>\n      <key>dots17-braille</key>\n      <string>uni2841</string>\n      <key>dots178-braille</key>\n      <string>uni28C1</string>\n      <key>dots18-braille</key>\n      <string>uni2881</string>\n      <key>dots2-braille</key>\n      <string>uni2802</string>\n      <key>dots23-braille</key>\n      <string>uni2806</string>\n      <key>dots234-braille</key>\n      <string>uni280E</string>\n      <key>dots2345-braille</key>\n      <string>uni281E</string>\n      <key>dots23456-braille</key>\n      <string>uni283E</string>\n      <key>dots234567-braille</key>\n      <string>uni287E</string>\n      <key>dots2345678-braille</key>\n      <string>uni28FE</string>\n      <key>dots234568-braille</key>\n      <string>uni28BE</string>\n      <key>dots23457-braille</key>\n      <string>uni285E</string>\n      <key>dots234578-braille</key>\n      <string>uni28DE</string>\n      <key>dots23458-braille</key>\n      <string>uni289E</string>\n      <key>dots2346-braille</key>\n      <string>uni282E</string>\n      <key>dots23467-braille</key>\n      <string>uni286E</string>\n      <key>dots234678-braille</key>\n      <string>uni28EE</string>\n      <key>dots23468-braille</key>\n      <string>uni28AE</string>\n      <key>dots2347-braille</key>\n      <string>uni284E</string>\n      <key>dots23478-braille</key>\n      <string>uni28CE</string>\n      <key>dots2348-braille</key>\n      <string>uni288E</string>\n      <key>dots235-braille</key>\n      <string>uni2816</string>\n      <key>dots2356-braille</key>\n      <string>uni2836</string>\n      <key>dots23567-braille</key>\n      <string>uni2876</string>\n      <key>dots235678-braille</key>\n      <string>uni28F6</string>\n      <key>dots23568-braille</key>\n      <string>uni28B6</string>\n      <key>dots2357-braille</key>\n      <string>uni2856</string>\n      <key>dots23578-braille</key>\n      <string>uni28D6</string>\n      <key>dots2358-braille</key>\n      <string>uni2896</string>\n      <key>dots236-braille</key>\n      <string>uni2826</string>\n      <key>dots2367-braille</key>\n      <string>uni2866</string>\n      <key>dots23678-braille</key>\n      <string>uni28E6</string>\n      <key>dots2368-braille</key>\n      <string>uni28A6</string>\n      <key>dots237-braille</key>\n      <string>uni2846</string>\n      <key>dots2378-braille</key>\n      <string>uni28C6</string>\n      <key>dots238-braille</key>\n      <string>uni2886</string>\n      <key>dots24-braille</key>\n      <string>uni280A</string>\n      <key>dots245-braille</key>\n      <string>uni281A</string>\n      <key>dots2456-braille</key>\n      <string>uni283A</string>\n      <key>dots24567-braille</key>\n      <string>uni287A</string>\n      <key>dots245678-braille</key>\n      <string>uni28FA</string>\n      <key>dots24568-braille</key>\n      <string>uni28BA</string>\n      <key>dots2457-braille</key>\n      <string>uni285A</string>\n      <key>dots24578-braille</key>\n      <string>uni28DA</string>\n      <key>dots2458-braille</key>\n      <string>uni289A</string>\n      <key>dots246-braille</key>\n      <string>uni282A</string>\n      <key>dots2467-braille</key>\n      <string>uni286A</string>\n      <key>dots24678-braille</key>\n      <string>uni28EA</string>\n      <key>dots2468-braille</key>\n      <string>uni28AA</string>\n      <key>dots247-braille</key>\n      <string>uni284A</string>\n      <key>dots2478-braille</key>\n      <string>uni28CA</string>\n      <key>dots248-braille</key>\n      <string>uni288A</string>\n      <key>dots25-braille</key>\n      <string>uni2812</string>\n      <key>dots256-braille</key>\n      <string>uni2832</string>\n      <key>dots2567-braille</key>\n      <string>uni2872</string>\n      <key>dots25678-braille</key>\n      <string>uni28F2</string>\n      <key>dots2568-braille</key>\n      <string>uni28B2</string>\n      <key>dots257-braille</key>\n      <string>uni2852</string>\n      <key>dots2578-braille</key>\n      <string>uni28D2</string>\n      <key>dots258-braille</key>\n      <string>uni2892</string>\n      <key>dots26-braille</key>\n      <string>uni2822</string>\n      <key>dots267-braille</key>\n      <string>uni2862</string>\n      <key>dots2678-braille</key>\n      <string>uni28E2</string>\n      <key>dots268-braille</key>\n      <string>uni28A2</string>\n      <key>dots27-braille</key>\n      <string>uni2842</string>\n      <key>dots278-braille</key>\n      <string>uni28C2</string>\n      <key>dots28-braille</key>\n      <string>uni2882</string>\n      <key>dots3-braille</key>\n      <string>uni2804</string>\n      <key>dots34-braille</key>\n      <string>uni280C</string>\n      <key>dots345-braille</key>\n      <string>uni281C</string>\n      <key>dots3456-braille</key>\n      <string>uni283C</string>\n      <key>dots34567-braille</key>\n      <string>uni287C</string>\n      <key>dots345678-braille</key>\n      <string>uni28FC</string>\n      <key>dots34568-braille</key>\n      <string>uni28BC</string>\n      <key>dots3457-braille</key>\n      <string>uni285C</string>\n      <key>dots34578-braille</key>\n      <string>uni28DC</string>\n      <key>dots3458-braille</key>\n      <string>uni289C</string>\n      <key>dots346-braille</key>\n      <string>uni282C</string>\n      <key>dots3467-braille</key>\n      <string>uni286C</string>\n      <key>dots34678-braille</key>\n      <string>uni28EC</string>\n      <key>dots3468-braille</key>\n      <string>uni28AC</string>\n      <key>dots347-braille</key>\n      <string>uni284C</string>\n      <key>dots3478-braille</key>\n      <string>uni28CC</string>\n      <key>dots348-braille</key>\n      <string>uni288C</string>\n      <key>dots35-braille</key>\n      <string>uni2814</string>\n      <key>dots356-braille</key>\n      <string>uni2834</string>\n      <key>dots3567-braille</key>\n      <string>uni2874</string>\n      <key>dots35678-braille</key>\n      <string>uni28F4</string>\n      <key>dots3568-braille</key>\n      <string>uni28B4</string>\n      <key>dots357-braille</key>\n      <string>uni2854</string>\n      <key>dots3578-braille</key>\n      <string>uni28D4</string>\n      <key>dots358-braille</key>\n      <string>uni2894</string>\n      <key>dots36-braille</key>\n      <string>uni2824</string>\n      <key>dots367-braille</key>\n      <string>uni2864</string>\n      <key>dots3678-braille</key>\n      <string>uni28E4</string>\n      <key>dots368-braille</key>\n      <string>uni28A4</string>\n      <key>dots37-braille</key>\n      <string>uni2844</string>\n      <key>dots378-braille</key>\n      <string>uni28C4</string>\n      <key>dots38-braille</key>\n      <string>uni2884</string>\n      <key>dots4-braille</key>\n      <string>uni2808</string>\n      <key>dots45-braille</key>\n      <string>uni2818</string>\n      <key>dots456-braille</key>\n      <string>uni2838</string>\n      <key>dots4567-braille</key>\n      <string>uni2878</string>\n      <key>dots45678-braille</key>\n      <string>uni28F8</string>\n      <key>dots4568-braille</key>\n      <string>uni28B8</string>\n      <key>dots457-braille</key>\n      <string>uni2858</string>\n      <key>dots4578-braille</key>\n      <string>uni28D8</string>\n      <key>dots458-braille</key>\n      <string>uni2898</string>\n      <key>dots46-braille</key>\n      <string>uni2828</string>\n      <key>dots467-braille</key>\n      <string>uni2868</string>\n      <key>dots4678-braille</key>\n      <string>uni28E8</string>\n      <key>dots468-braille</key>\n      <string>uni28A8</string>\n      <key>dots47-braille</key>\n      <string>uni2848</string>\n      <key>dots478-braille</key>\n      <string>uni28C8</string>\n      <key>dots48-braille</key>\n      <string>uni2888</string>\n      <key>dots5-braille</key>\n      <string>uni2810</string>\n      <key>dots56-braille</key>\n      <string>uni2830</string>\n      <key>dots567-braille</key>\n      <string>uni2870</string>\n      <key>dots5678-braille</key>\n      <string>uni28F0</string>\n      <key>dots568-braille</key>\n      <string>uni28B0</string>\n      <key>dots57-braille</key>\n      <string>uni2850</string>\n      <key>dots578-braille</key>\n      <string>uni28D0</string>\n      <key>dots58-braille</key>\n      <string>uni2890</string>\n      <key>dots6-braille</key>\n      <string>uni2820</string>\n      <key>dots67-braille</key>\n      <string>uni2860</string>\n      <key>dots678-braille</key>\n      <string>uni28E0</string>\n      <key>dots68-braille</key>\n      <string>uni28A0</string>\n      <key>dots7-braille</key>\n      <string>uni2840</string>\n      <key>dots78-braille</key>\n      <string>uni28C0</string>\n      <key>dots8-braille</key>\n      <string>uni2880</string>\n      <key>dottedCircle</key>\n      <string>uni25CC</string>\n      <key>dottedSquare</key>\n      <string>uni2B1A</string>\n      <key>downArrow</key>\n      <string>arrowdown</string>\n      <key>downBlackSmallTriangle</key>\n      <string>uni25BE</string>\n      <key>downBlackTriangle</key>\n      <string>triagdn</string>\n      <key>downTipLeftArrow</key>\n      <string>uni21B2</string>\n      <key>downWhiteSmallTriangle</key>\n      <string>uni25BF</string>\n      <key>downWhiteTriangle</key>\n      <string>uni25BD</string>\n      <key>dtail</key>\n      <string>uni0256</string>\n      <key>dze-cy</key>\n      <string>uni0455</string>\n      <key>dzhe-cy</key>\n      <string>uni045F</string>\n      <key>e-cy</key>\n      <string>uni0454</string>\n      <key>ecircumflexacute</key>\n      <string>uni1EBF</string>\n      <key>ecircumflexdotbelow</key>\n      <string>uni1EC7</string>\n      <key>ecircumflexgrave</key>\n      <string>uni1EC1</string>\n      <key>ecircumflexhookabove</key>\n      <string>uni1EC3</string>\n      <key>ecircumflextilde</key>\n      <string>uni1EC5</string>\n      <key>edotbelow</key>\n      <string>uni1EB9</string>\n      <key>ef-cy</key>\n      <string>uni0444</string>\n      <key>ehookabove</key>\n      <string>uni1EBB</string>\n      <key>eightinferior</key>\n      <string>uni2088</string>\n      <key>eightsuperior</key>\n      <string>uni2078</string>\n      <key>el-cy</key>\n      <string>uni043B</string>\n      <key>em-cy</key>\n      <string>uni043C</string>\n      <key>en-cy</key>\n      <string>uni043D</string>\n      <key>endOfMediumControl</key>\n      <string>uni2419</string>\n      <key>endOfMediumControl.ss20</key>\n      <string>uni2419.ss20</string>\n      <key>endOfTextControl</key>\n      <string>uni2403</string>\n      <key>endOfTextControl.ss20</key>\n      <string>uni2403.ss20</string>\n      <key>endOfTransmissionBlockControl</key>\n      <string>uni2417</string>\n      <key>endOfTransmissionBlockControl.ss20</key>\n      <string>uni2417.ss20</string>\n      <key>endOfTransmissionControl</key>\n      <string>uni2404</string>\n      <key>endOfTransmissionControl.ss20</key>\n      <string>uni2404.ss20</string>\n      <key>endescender-cy</key>\n      <string>uni04A3</string>\n      <key>enquiryControl</key>\n      <string>uni2405</string>\n      <key>enquiryControl.ss20</key>\n      <string>uni2405.ss20</string>\n      <key>eopen</key>\n      <string>uni025B</string>\n      <key>er-cy</key>\n      <string>uni0440</string>\n      <key>ereversed-cy</key>\n      <string>uni044D</string>\n      <key>es-cy</key>\n      <string>uni0441</string>\n      <key>escapeControl</key>\n      <string>uni241B</string>\n      <key>escapeControl.ss20</key>\n      <string>uni241B.ss20</string>\n      <key>esh</key>\n      <string>uni0283</string>\n      <key>etilde</key>\n      <string>uni1EBD</string>\n      <key>eturned</key>\n      <string>uni01DD</string>\n      <key>euro</key>\n      <string>Euro</string>\n      <key>eurocurrency</key>\n      <string>uni20A0</string>\n      <key>exclamdouble</key>\n      <string>exclamdbl</string>\n      <key>ezh</key>\n      <string>uni0292</string>\n      <key>fileSeparatorControl</key>\n      <string>uni241C</string>\n      <key>filledRect</key>\n      <string>filledrect</string>\n      <key>firsttonechinese</key>\n      <string>uni02C9</string>\n      <key>fisheye</key>\n      <string>uni25C9</string>\n      <key>fiveinferior</key>\n      <string>uni2085</string>\n      <key>fivesuperior</key>\n      <string>uni2075</string>\n      <key>formFeedControl</key>\n      <string>uni240C</string>\n      <key>formFeedControl.ss20</key>\n      <string>uni240C.ss20</string>\n      <key>fourinferior</key>\n      <string>uni2084</string>\n      <key>foursuperior</key>\n      <string>uni2074</string>\n      <key>fullBlock</key>\n      <string>block</string>\n      <key>fullBlock.stypo</key>\n      <string>block.stypo</string>\n      <key>gamma-latin</key>\n      <string>uni0263</string>\n      <key>gcommaaccent</key>\n      <string>uni0123</string>\n      <key>ge-cy</key>\n      <string>uni0433</string>\n      <key>ge-cy.loclSRB</key>\n      <string>uni0433.loclSRB</string>\n      <key>ghestroke-cy</key>\n      <string>uni0493</string>\n      <key>gheupturn-cy</key>\n      <string>uni0491</string>\n      <key>gje-cy</key>\n      <string>uni0453</string>\n      <key>glottalstop</key>\n      <string>uni0294</string>\n      <key>glottalstopmod</key>\n      <string>uni02C0</string>\n      <key>glottalstopreversed</key>\n      <string>uni0295</string>\n      <key>gravetonecomb</key>\n      <string>uni0340</string>\n      <key>groupSeparatorControl</key>\n      <string>uni241D</string>\n      <key>gstroke</key>\n      <string>uni01E5</string>\n      <key>guarani</key>\n      <string>uni20B2</string>\n      <key>guillemetleft</key>\n      <string>guillemotleft</string>\n      <key>guillemetright</key>\n      <string>guillemotright</string>\n      <key>ha-cy</key>\n      <string>uni0445</string>\n      <key>hadescender-cy</key>\n      <string>uni04B3</string>\n      <key>hardsign-cy</key>\n      <string>uni044A</string>\n      <key>hcaron</key>\n      <string>uni021F</string>\n      <key>hdotbelow</key>\n      <string>uni1E25</string>\n      <key>heartBlackSuit</key>\n      <string>heart</string>\n      <key>heavyleftpointinganglebracketornament</key>\n      <string>uni2770</string>\n      <key>heavyleftpointinganglequotationmarkornament</key>\n      <string>uni276E</string>\n      <key>heavyrightpointinganglebracketornament</key>\n      <string>uni2771</string>\n      <key>heavyrightpointinganglequotationmarkornament</key>\n      <string>uni276F</string>\n      <key>horizontalBlackHexagon</key>\n      <string>uni2B23</string>\n      <key>horizontalFillSquare</key>\n      <string>uni25A4</string>\n      <key>horizontalTabulationControl</key>\n      <string>uni2409</string>\n      <key>horizontalTabulationControl.ss20</key>\n      <string>uni2409.ss20</string>\n      <key>horizontalbar</key>\n      <string>uni2015</string>\n      <key>horizontallineextension</key>\n      <string>uni23AF</string>\n      <key>horncomb</key>\n      <string>uni031B</string>\n      <key>horncomb.case</key>\n      <string>uni031B.case</string>\n      <key>hryvnia</key>\n      <string>uni20B4</string>\n      <key>hungarumlautcomb</key>\n      <string>uni030B</string>\n      <key>hungarumlautcomb.case</key>\n      <string>uni030B.case</string>\n      <key>hyphentwo</key>\n      <string>uni2010</string>\n      <key>i-cy</key>\n      <string>uni0456</string>\n      <key>ia-cy</key>\n      <string>uni044F</string>\n      <key>idotbelow</key>\n      <string>uni1ECB</string>\n      <key>idotless</key>\n      <string>dotlessi</string>\n      <key>ie-cy</key>\n      <string>uni0435</string>\n      <key>iegrave-cy</key>\n      <string>uni0450</string>\n      <key>ihookabove</key>\n      <string>uni1EC9</string>\n      <key>ii-cy</key>\n      <string>uni0438</string>\n      <key>iigrave-cy</key>\n      <string>uni045D</string>\n      <key>iishort-cy</key>\n      <string>uni0439</string>\n      <key>imacron-cy</key>\n      <string>uni04E3</string>\n      <key>increment</key>\n      <string>uni2206</string>\n      <key>inverseBullet</key>\n      <string>invbullet</string>\n      <key>inverseWhiteCircle</key>\n      <string>invcircle</string>\n      <key>io-cy</key>\n      <string>uni0451</string>\n      <key>iota-latin</key>\n      <string>uni0269</string>\n      <key>iu-cy</key>\n      <string>uni044E</string>\n      <key>iu-cy.loclBGR</key>\n      <string>uni044E.loclBGR</string>\n      <key>iu-cy.loclBGR.alt</key>\n      <string>uni044E.loclBGR.001</string>\n      <key>jacute</key>\n      <string>uni006A0301</string>\n      <key>jcaron</key>\n      <string>uni01F0</string>\n      <key>jdotless</key>\n      <string>uni0237</string>\n      <key>je-cy</key>\n      <string>uni0458</string>\n      <key>ka-cy</key>\n      <string>uni043A</string>\n      <key>ka-cy.loclBGR</key>\n      <string>uni043A.loclBGR</string>\n      <key>ka-cy.loclBGR.alt</key>\n      <string>uni043A.loclBGR.001</string>\n      <key>kadescender-cy</key>\n      <string>uni049B</string>\n      <key>kaiSymbol</key>\n      <string>uni03D7</string>\n      <key>kcommaaccent</key>\n      <string>uni0137</string>\n      <key>kdotbelow</key>\n      <string>uni1E33</string>\n      <key>kip</key>\n      <string>uni20AD</string>\n      <key>kje-cy</key>\n      <string>uni045C</string>\n      <key>klinebelow</key>\n      <string>uni1E35</string>\n      <key>lambdastroke</key>\n      <string>uni019B</string>\n      <key>largeCircle</key>\n      <string>uni25EF</string>\n      <key>lari</key>\n      <string>uni20BE</string>\n      <key>lbar</key>\n      <string>uni019A</string>\n      <key>lbar.salt</key>\n      <string>uni019A.salt</string>\n      <key>lbelt</key>\n      <string>uni026C</string>\n      <key>lbelt.salt</key>\n      <string>uni026C.salt</string>\n      <key>lcommaaccent</key>\n      <string>uni013C</string>\n      <key>lcommaaccent.salt</key>\n      <string>uni013C.001</string>\n      <key>ldotbelow</key>\n      <string>uni1E37</string>\n      <key>ldotbelow.salt</key>\n      <string>uni1E37.salt</string>\n      <key>leftArrow</key>\n      <string>arrowleft</string>\n      <key>leftBlackPointer</key>\n      <string>triaglf</string>\n      <key>leftBlackSmallTriangle</key>\n      <string>uni25C2</string>\n      <key>leftBlackTriangle</key>\n      <string>uni25C0</string>\n      <key>leftBlock</key>\n      <string>lfblock</string>\n      <key>leftBlock.stypo</key>\n      <string>lfblock.stypo</string>\n      <key>leftFiveEighthsBlock</key>\n      <string>uni258B</string>\n      <key>leftFiveEighthsBlock.stypo</key>\n      <string>uni258B.stypo</string>\n      <key>leftHalfBlackCircle</key>\n      <string>uni25D6</string>\n      <key>leftHalfBlackDiamond</key>\n      <string>uni2B16</string>\n      <key>leftHalfBlackSquare</key>\n      <string>uni25E7</string>\n      <key>leftHalfBlackWhiteCircle</key>\n      <string>uni25D0</string>\n      <key>leftOneEighthBlock</key>\n      <string>uni258F</string>\n      <key>leftOneEighthBlock.stypo</key>\n      <string>uni258F.stypo</string>\n      <key>leftOneQuarterBlock</key>\n      <string>uni258E</string>\n      <key>leftOneQuarterBlock.stypo</key>\n      <string>uni258E.stypo</string>\n      <key>leftRightArrow</key>\n      <string>arrowboth</string>\n      <key>leftSevenEighthsBlock</key>\n      <string>uni2589</string>\n      <key>leftSevenEighthsBlock.stypo</key>\n      <string>uni2589.stypo</string>\n      <key>leftThreeEighthsBlock</key>\n      <string>uni258D</string>\n      <key>leftThreeEighthsBlock.stypo</key>\n      <string>uni258D.stypo</string>\n      <key>leftThreeQuartersBlock</key>\n      <string>uni258A</string>\n      <key>leftThreeQuartersBlock.stypo</key>\n      <string>uni258A.stypo</string>\n      <key>leftWhitePointer</key>\n      <string>uni25C5</string>\n      <key>leftWhiteSmallTriangle</key>\n      <string>uni25C3</string>\n      <key>leftWhiteTriangle</key>\n      <string>uni25C1</string>\n      <key>lineFeedControl</key>\n      <string>uni240A</string>\n      <key>lineFeedControl.ss20</key>\n      <string>uni240A.ss20</string>\n      <key>lineseparator</key>\n      <string>uni2028</string>\n      <key>liraTurkish</key>\n      <string>uni20BA</string>\n      <key>literSign</key>\n      <string>uni2113</string>\n      <key>lje-cy</key>\n      <string>uni0459</string>\n      <key>llinebelow</key>\n      <string>uni1E3B</string>\n      <key>llinebelow.salt</key>\n      <string>uni1E3B.salt</string>\n      <key>lmiddletilde</key>\n      <string>uni026B</string>\n      <key>lmiddletilde.salt</key>\n      <string>uni026B.salt</string>\n      <key>logicalnotReversed</key>\n      <string>revlogicalnot</string>\n      <key>lowerFiveEighthsBlock</key>\n      <string>uni2585</string>\n      <key>lowerFiveEighthsBlock.stypo</key>\n      <string>uni2585.stypo</string>\n      <key>lowerHalfArc</key>\n      <string>uni25E1</string>\n      <key>lowerHalfBlackWhiteCircle</key>\n      <string>uni25D2</string>\n      <key>lowerHalfBlock</key>\n      <string>dnblock</string>\n      <key>lowerHalfBlock.stypo</key>\n      <string>dnblock.stypo</string>\n      <key>lowerHalfInverseWhiteCircle</key>\n      <string>uni25DB</string>\n      <key>lowerHalfWhiteSquare</key>\n      <string>uni2B12</string>\n      <key>lowerLeftArc</key>\n      <string>uni25DF</string>\n      <key>lowerLeftBlackTriangle</key>\n      <string>uni25E3</string>\n      <key>lowerLeftBlock</key>\n      <string>uni2596</string>\n      <key>lowerLeftBlock.stypo</key>\n      <string>uni2596.stypo</string>\n      <key>lowerLeftHalfWhiteSquare</key>\n      <string>uni2B14</string>\n      <key>lowerLeftQuadrantWhiteCircle</key>\n      <string>uni25F5</string>\n      <key>lowerLeftTriangle</key>\n      <string>uni25FA</string>\n      <key>lowerOneEighthBlock</key>\n      <string>uni2581</string>\n      <key>lowerOneEighthBlock.stypo</key>\n      <string>uni2581.stypo</string>\n      <key>lowerOneQuarterBlock</key>\n      <string>uni2582</string>\n      <key>lowerOneQuarterBlock.stypo</key>\n      <string>uni2582.stypo</string>\n      <key>lowerRightArc</key>\n      <string>uni25DE</string>\n      <key>lowerRightBlackTriangle</key>\n      <string>uni25E2</string>\n      <key>lowerRightBlock</key>\n      <string>uni2597</string>\n      <key>lowerRightBlock.stypo</key>\n      <string>uni2597.stypo</string>\n      <key>lowerRightDiagonalHalfBlackSquare</key>\n      <string>uni25EA</string>\n      <key>lowerRightQuadrantWhiteCircle</key>\n      <string>uni25F6</string>\n      <key>lowerRightTriangle</key>\n      <string>uni25FF</string>\n      <key>lowerSevenEighthsBlock</key>\n      <string>uni2587</string>\n      <key>lowerSevenEighthsBlock.stypo</key>\n      <string>uni2587.stypo</string>\n      <key>lowerThreeEighthsBlock</key>\n      <string>uni2583</string>\n      <key>lowerThreeEighthsBlock.stypo</key>\n      <string>uni2583.stypo</string>\n      <key>lowerThreeQuartersBlock</key>\n      <string>uni2586</string>\n      <key>lowerThreeQuartersBlock.stypo</key>\n      <string>uni2586.stypo</string>\n      <key>lowernumeral-greek</key>\n      <string>uni0375</string>\n      <key>lowlinecomb</key>\n      <string>uni0332</string>\n      <key>macronbelowcomb</key>\n      <string>uni0331</string>\n      <key>macroncomb</key>\n      <string>uni0304</string>\n      <key>macroncomb.case</key>\n      <string>uni0304.case</string>\n      <key>manat</key>\n      <string>uni20BC</string>\n      <key>mars</key>\n      <string>male</string>\n      <key>mediumBlackSmallSquare</key>\n      <string>uni25FE</string>\n      <key>mediumBlackSquare</key>\n      <string>uni25FC</string>\n      <key>mediumWhiteSmallSquare</key>\n      <string>uni25FD</string>\n      <key>mediumWhiteSquare</key>\n      <string>uni25FB</string>\n      <key>mediumleftpointinganglebracketornament</key>\n      <string>uni276C</string>\n      <key>mediumrightpointinganglebracketornament</key>\n      <string>uni276D</string>\n      <key>micro</key>\n      <string>uni00B5</string>\n      <key>mu</key>\n      <string>uni03BC</string>\n      <key>naira</key>\n      <string>uni20A6</string>\n      <key>nbspace</key>\n      <string>uni00A0</string>\n      <key>ncommaaccent</key>\n      <string>uni0146</string>\n      <key>negativeAcknowledgeControl</key>\n      <string>uni2415</string>\n      <key>negativeAcknowledgeControl.ss20</key>\n      <string>uni2415.ss20</string>\n      <key>newlineControl</key>\n      <string>uni2424</string>\n      <key>nhookleft</key>\n      <string>uni0272</string>\n      <key>nineinferior</key>\n      <string>uni2089</string>\n      <key>ninesuperior</key>\n      <string>uni2079</string>\n      <key>nje-cy</key>\n      <string>uni045A</string>\n      <key>nlinebelow</key>\n      <string>uni1E49</string>\n      <key>nmod</key>\n      <string>uni207F</string>\n      <key>nonbreakinghyphen</key>\n      <string>uni2011</string>\n      <key>note-musical</key>\n      <string>musicalnote</string>\n      <key>notedbl-musical</key>\n      <string>musicalnotedbl</string>\n      <key>notidentical</key>\n      <string>uni2262</string>\n      <key>nullControl</key>\n      <string>uni2400</string>\n      <key>numeral-greek</key>\n      <string>uni0374</string>\n      <key>numero</key>\n      <string>uni2116</string>\n      <key>o-cy</key>\n      <string>uni043E</string>\n      <key>obarred-cy</key>\n      <string>uni04E9</string>\n      <key>ocircumflexacute</key>\n      <string>uni1ED1</string>\n      <key>ocircumflexdotbelow</key>\n      <string>uni1ED9</string>\n      <key>ocircumflexgrave</key>\n      <string>uni1ED3</string>\n      <key>ocircumflexhookabove</key>\n      <string>uni1ED5</string>\n      <key>ocircumflextilde</key>\n      <string>uni1ED7</string>\n      <key>odotbelow</key>\n      <string>uni1ECD</string>\n      <key>ogonekcomb</key>\n      <string>uni0328</string>\n      <key>ohookabove</key>\n      <string>uni1ECF</string>\n      <key>ohornacute</key>\n      <string>uni1EDB</string>\n      <key>ohorndotbelow</key>\n      <string>uni1EE3</string>\n      <key>ohorngrave</key>\n      <string>uni1EDD</string>\n      <key>ohornhookabove</key>\n      <string>uni1EDF</string>\n      <key>ohorntilde</key>\n      <string>uni1EE1</string>\n      <key>omacronacute</key>\n      <string>uni1E53</string>\n      <key>omacrongrave</key>\n      <string>uni1E51</string>\n      <key>oneinferior</key>\n      <string>uni2081</string>\n      <key>onesuperior</key>\n      <string>uni00B9</string>\n      <key>oogonek</key>\n      <string>uni01EB</string>\n      <key>oopen</key>\n      <string>uni0254</string>\n      <key>overline</key>\n      <string>uni203E</string>\n      <key>palochka-cy</key>\n      <string>uni04CF</string>\n      <key>pe-cy</key>\n      <string>uni043F</string>\n      <key>pe-cy.loclSRB</key>\n      <string>uni0438.loclBGR.001</string>\n      <key>perispomenicomb</key>\n      <string>uni0342</string>\n      <key>peso</key>\n      <string>uni20B1</string>\n      <key>published</key>\n      <string>uni2117</string>\n      <key>punctuationspace</key>\n      <string>uni2008</string>\n      <key>questiongreek</key>\n      <string>uni037E</string>\n      <key>ratio</key>\n      <string>uni2236</string>\n      <key>rcommaaccent</key>\n      <string>uni0157</string>\n      <key>rcommaaccent.salt</key>\n      <string>uni0157.001</string>\n      <key>rdotbelow</key>\n      <string>uni1E5B</string>\n      <key>rdotbelow.salt</key>\n      <string>uni1E5B.salt</string>\n      <key>recordSeparatorControl</key>\n      <string>uni241E</string>\n      <key>replacementCharacter</key>\n      <string>uniFFFD</string>\n      <key>returnsymbol</key>\n      <string>uni23CE</string>\n      <key>reversedRotatedFloralHeartBullet</key>\n      <string>uni2619</string>\n      <key>rightArrow</key>\n      <string>arrowright</string>\n      <key>rightBlackPointer</key>\n      <string>triagrt</string>\n      <key>rightBlackSmallTriangle</key>\n      <string>uni25B8</string>\n      <key>rightBlackTriangle</key>\n      <string>uni25B6</string>\n      <key>rightBlock</key>\n      <string>rtblock</string>\n      <key>rightBlock.stypo</key>\n      <string>rtblock.stypo</string>\n      <key>rightHalfBlackCircle</key>\n      <string>uni25D7</string>\n      <key>rightHalfBlackDiamond</key>\n      <string>uni2B17</string>\n      <key>rightHalfBlackSquare</key>\n      <string>uni25E8</string>\n      <key>rightHalfBlackWhiteCircle</key>\n      <string>uni25D1</string>\n      <key>rightOneEighthBlock</key>\n      <string>uni2595</string>\n      <key>rightOneEighthBlock.stypo</key>\n      <string>uni2595.stypo</string>\n      <key>rightWhitePointer</key>\n      <string>uni25BB</string>\n      <key>rightWhiteSmallTriangle</key>\n      <string>uni25B9</string>\n      <key>rightWhiteTriangle</key>\n      <string>uni25B7</string>\n      <key>ringbelowcomb</key>\n      <string>uni0325</string>\n      <key>ringcomb</key>\n      <string>uni030A</string>\n      <key>ringcomb.case</key>\n      <string>uni030A.case</string>\n      <key>rotatedFloralHeartBullet</key>\n      <string>uni2767</string>\n      <key>ruble</key>\n      <string>uni20BD</string>\n      <key>rupee</key>\n      <string>uni20A8</string>\n      <key>rupeeIndian</key>\n      <string>uni20B9</string>\n      <key>schwa</key>\n      <string>uni0259</string>\n      <key>schwa-cy</key>\n      <string>uni04D9</string>\n      <key>scommaaccent</key>\n      <string>uni0219</string>\n      <key>scommaaccent.salt</key>\n      <string>uni0219.001</string>\n      <key>sdotbelow</key>\n      <string>uni1E63</string>\n      <key>sdotbelow.salt</key>\n      <string>uni1E63.salt</string>\n      <key>seveninferior</key>\n      <string>uni2087</string>\n      <key>sevensuperior</key>\n      <string>uni2077</string>\n      <key>sha-cy</key>\n      <string>uni0448</string>\n      <key>shadedark</key>\n      <string>dkshade</string>\n      <key>shadedark.stypo</key>\n      <string>dkshade.stypo</string>\n      <key>shadelight</key>\n      <string>ltshade</string>\n      <key>shadelight.stypo</key>\n      <string>ltshade.stypo</string>\n      <key>shademedium</key>\n      <string>shade</string>\n      <key>shademedium.stypo</key>\n      <string>shade.stypo</string>\n      <key>shcha-cy</key>\n      <string>uni0449</string>\n      <key>sheqel</key>\n      <string>uni20AA</string>\n      <key>shha-cy</key>\n      <string>uni04BB</string>\n      <key>shha-cy.alt</key>\n      <string>uni04BB.001</string>\n      <key>shiftInControl</key>\n      <string>uni240F</string>\n      <key>shiftInControl.ss20</key>\n      <string>uni240F.ss20</string>\n      <key>shiftOutControl</key>\n      <string>uni240E</string>\n      <key>shiftOutControl.ss20</key>\n      <string>uni240E.ss20</string>\n      <key>sigmafinal</key>\n      <string>uni03C2</string>\n      <key>sixinferior</key>\n      <string>uni2086</string>\n      <key>sixsuperior</key>\n      <string>uni2076</string>\n      <key>softhyphen</key>\n      <string>uni00AD</string>\n      <key>softsign-cy</key>\n      <string>uni044C</string>\n      <key>spaceControl</key>\n      <string>uni2420</string>\n      <key>spadeBlackSuit</key>\n      <string>spade</string>\n      <key>startOfHeadingControl</key>\n      <string>uni2401</string>\n      <key>startOfHeadingControl.ss20</key>\n      <string>uni2401.ss20</string>\n      <key>startOfTextControl</key>\n      <string>uni2402</string>\n      <key>startOfTextControl.ss20</key>\n      <string>uni2402.ss20</string>\n      <key>strictlyequivalentto</key>\n      <string>uni2263</string>\n      <key>substituteControl</key>\n      <string>uni241A</string>\n      <key>substituteControl.ss20</key>\n      <string>uni241A.ss20</string>\n      <key>substituteFormTwoControl</key>\n      <string>uni2426</string>\n      <key>sunWithRays</key>\n      <string>sun</string>\n      <key>synchronousIdleControl</key>\n      <string>uni2416</string>\n      <key>synchronousIdleControl.ss20</key>\n      <string>uni2416.ss20</string>\n      <key>tcedilla</key>\n      <string>uni0163</string>\n      <key>tcommaaccent</key>\n      <string>uni021B</string>\n      <key>te-cy</key>\n      <string>uni0442</string>\n      <key>te-cy.loclSRB</key>\n      <string>uni0442.loclBGR.001</string>\n      <key>tenge</key>\n      <string>uni20B8</string>\n      <key>tesh</key>\n      <string>uni02A7</string>\n      <key>thetamod</key>\n      <string>uni1DBF</string>\n      <key>threeinferior</key>\n      <string>uni2083</string>\n      <key>threesuperior</key>\n      <string>uni00B3</string>\n      <key>topHalfBlackCircle</key>\n      <string>uni2BCA</string>\n      <key>topHalfBlackDiamond</key>\n      <string>uni2B18</string>\n      <key>topHalfWhiteSquare</key>\n      <string>uni2B13</string>\n      <key>topRightHalfWhiteSquare</key>\n      <string>uni2B15</string>\n      <key>tse-cy</key>\n      <string>uni0446</string>\n      <key>tshe-cy</key>\n      <string>uni045B</string>\n      <key>tugrik</key>\n      <string>uni20AE</string>\n      <key>twoinferior</key>\n      <string>uni2082</string>\n      <key>twosuperior</key>\n      <string>uni00B2</string>\n      <key>u-cy</key>\n      <string>uni0443</string>\n      <key>udotbelow</key>\n      <string>uni1EE5</string>\n      <key>uhookabove</key>\n      <string>uni1EE7</string>\n      <key>uhornacute</key>\n      <string>uni1EE9</string>\n      <key>uhorndotbelow</key>\n      <string>uni1EF1</string>\n      <key>uhorngrave</key>\n      <string>uni1EEB</string>\n      <key>uhornhookabove</key>\n      <string>uni1EED</string>\n      <key>uhorntilde</key>\n      <string>uni1EEF</string>\n      <key>umacron-cy</key>\n      <string>uni04EF</string>\n      <key>unitSeparatorControl</key>\n      <string>uni241F</string>\n      <key>upArrow</key>\n      <string>arrowup</string>\n      <key>upBlackSmallTriangle</key>\n      <string>uni25B4</string>\n      <key>upBlackTriangle</key>\n      <string>triagup</string>\n      <key>upDashArrow</key>\n      <string>uni21E1</string>\n      <key>upDownArrow</key>\n      <string>arrowupdn</string>\n      <key>upDownbaseArrow</key>\n      <string>arrowupdnbse</string>\n      <key>upLeftHalfBlackTriangle</key>\n      <string>uni25ED</string>\n      <key>upRightHalfBlackTriangle</key>\n      <string>uni25EE</string>\n      <key>upWhiteSmallTriangle</key>\n      <string>uni25B5</string>\n      <key>upWhiteTriangle</key>\n      <string>uni25B3</string>\n      <key>upWhiteTriangleWithDot</key>\n      <string>uni25EC</string>\n      <key>upperHalfArc</key>\n      <string>uni25E0</string>\n      <key>upperHalfBlackWhiteCircle</key>\n      <string>uni25D3</string>\n      <key>upperHalfBlock</key>\n      <string>upblock</string>\n      <key>upperHalfBlock.stypo</key>\n      <string>upblock.stypo</string>\n      <key>upperHalfInverseWhiteCircle</key>\n      <string>uni25DA</string>\n      <key>upperLeftAndLowerLeftAndLowerRightBlock</key>\n      <string>uni2599</string>\n      <key>upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n      <string>uni2599.stypo</string>\n      <key>upperLeftAndLowerRightBlock</key>\n      <string>uni259A</string>\n      <key>upperLeftAndLowerRightBlock.stypo</key>\n      <string>uni259A.stypo</string>\n      <key>upperLeftAndUpperRightAndLowerLeftBlock</key>\n      <string>uni259B</string>\n      <key>upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n      <string>uni259B.stypo</string>\n      <key>upperLeftAndUpperRightAndLowerRightBlock</key>\n      <string>uni259C</string>\n      <key>upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n      <string>uni259C.stypo</string>\n      <key>upperLeftArc</key>\n      <string>uni25DC</string>\n      <key>upperLeftBlackTriangle</key>\n      <string>uni25E4</string>\n      <key>upperLeftBlock</key>\n      <string>uni2598</string>\n      <key>upperLeftBlock.stypo</key>\n      <string>uni2598.stypo</string>\n      <key>upperLeftDiagonalHalfBlackSquare</key>\n      <string>uni25E9</string>\n      <key>upperLeftQuadrantWhiteCircle</key>\n      <string>uni25F4</string>\n      <key>upperLeftTriangle</key>\n      <string>uni25F8</string>\n      <key>upperLeftWhiteCircle</key>\n      <string>uni25D5</string>\n      <key>upperOneEighthBlock</key>\n      <string>uni2594</string>\n      <key>upperOneEighthBlock.stypo</key>\n      <string>uni2594.stypo</string>\n      <key>upperRightAndLowerLeftAndLowerRightBlock</key>\n      <string>uni259F</string>\n      <key>upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n      <string>uni259F.stypo</string>\n      <key>upperRightAndLowerLeftBlock</key>\n      <string>uni259E</string>\n      <key>upperRightAndLowerLeftBlock.stypo</key>\n      <string>uni259E.stypo</string>\n      <key>upperRightArc</key>\n      <string>uni25DD</string>\n      <key>upperRightBlackCircle</key>\n      <string>uni25D4</string>\n      <key>upperRightBlackTriangle</key>\n      <string>uni25E5</string>\n      <key>upperRightBlock</key>\n      <string>uni259D</string>\n      <key>upperRightBlock.stypo</key>\n      <string>uni259D.stypo</string>\n      <key>upperRightQuadrantWhiteCircle</key>\n      <string>uni25F7</string>\n      <key>upperRightTriangle</key>\n      <string>uni25F9</string>\n      <key>upperlefttolowerrightFillSquare</key>\n      <string>uni25A7</string>\n      <key>upperrighttolowerleftFillSquare</key>\n      <string>uni25A8</string>\n      <key>upsilon-latin</key>\n      <string>uni028A</string>\n      <key>ushort-cy</key>\n      <string>uni045E</string>\n      <key>ustraight-cy</key>\n      <string>uni04AF</string>\n      <key>ustraightstroke-cy</key>\n      <string>uni04B1</string>\n      <key>ve-cy</key>\n      <string>uni0432</string>\n      <key>ve-cy.salt</key>\n      <string>uni0432.001</string>\n      <key>vectorOrCrossProduct</key>\n      <string>uni2A2F</string>\n      <key>venus</key>\n      <string>female</string>\n      <key>verticalBisectingLineWhiteSquare</key>\n      <string>uni25EB</string>\n      <key>verticalFillCircle</key>\n      <string>uni25CD</string>\n      <key>verticalFillSquare</key>\n      <string>uni25A5</string>\n      <key>verticalTabulationControl</key>\n      <string>uni240B</string>\n      <key>verticalTabulationControl.ss20</key>\n      <string>uni240B.ss20</string>\n      <key>vhook</key>\n      <string>uni028B</string>\n      <key>vturned</key>\n      <string>uni028C</string>\n      <key>whiteBullet</key>\n      <string>openbullet</string>\n      <key>whiteCircle</key>\n      <string>circle</string>\n      <key>whiteDiamond</key>\n      <string>uni25C7</string>\n      <key>whiteHexagon</key>\n      <string>uni2B21</string>\n      <key>whiteHorizontalEllipse</key>\n      <string>uni2B2D</string>\n      <key>whiteInBlackSquare</key>\n      <string>uni25A3</string>\n      <key>whiteLargeSquare</key>\n      <string>uni2B1C</string>\n      <key>whiteLowerLeftQuadrantSquare</key>\n      <string>uni25F1</string>\n      <key>whiteLowerRightQuadrantSquare</key>\n      <string>uni25F2</string>\n      <key>whiteMediumDiamond</key>\n      <string>uni2B26</string>\n      <key>whiteMediumLozenge</key>\n      <string>uni2B28</string>\n      <key>whiteParallelogram</key>\n      <string>uni25B1</string>\n      <key>whitePentagon</key>\n      <string>uni2B20</string>\n      <key>whiteRect</key>\n      <string>uni25AD</string>\n      <key>whiteRoundedCornersSquare</key>\n      <string>uni25A2</string>\n      <key>whiteSmallLozenge</key>\n      <string>uni2B2B</string>\n      <key>whiteSmallSquare</key>\n      <string>uni25AB</string>\n      <key>whiteSmilingFace</key>\n      <string>smileface</string>\n      <key>whiteSquare</key>\n      <string>uni25A1</string>\n      <key>whiteUpperLeftQuadrantSquare</key>\n      <string>uni25F0</string>\n      <key>whiteUpperRightQuadrantSquare</key>\n      <string>uni25F3</string>\n      <key>whiteVerticalEllipse</key>\n      <string>uni2B2F</string>\n      <key>whiteVerticalRect</key>\n      <string>uni25AF</string>\n      <key>whiteVerysmallSquare</key>\n      <string>uni2B1E</string>\n      <key>wmod</key>\n      <string>uni02B7</string>\n      <key>won</key>\n      <string>uni20A9</string>\n      <key>ydotbelow</key>\n      <string>uni1EF5</string>\n      <key>yeru-cy</key>\n      <string>uni044B</string>\n      <key>yhookabove</key>\n      <string>uni1EF7</string>\n      <key>yi-cy</key>\n      <string>uni0457</string>\n      <key>ymacron</key>\n      <string>uni0233</string>\n      <key>ymod</key>\n      <string>uni02B8</string>\n      <key>ytilde</key>\n      <string>uni1EF9</string>\n      <key>ze-cy</key>\n      <string>uni0437</string>\n      <key>ze-cy.loclBGR</key>\n      <string>uni0437.loclBGR</string>\n      <key>ze-cy.salt</key>\n      <string>uni0437.001</string>\n      <key>zeroinferior</key>\n      <string>uni2080</string>\n      <key>zerosuperior</key>\n      <string>uni2070</string>\n      <key>zhe-cy</key>\n      <string>uni0436</string>\n      <key>zhe-cy.loclBGR</key>\n      <string>uni0436.loclBGR</string>\n      <key>zhedescender-cy</key>\n      <string>uni0497</string>\n      <key>zmod</key>\n      <string>uni1DBB</string>\n      <key>checkerBoardDeleteApple2</key>\n      <string>uni2427</string>\n      <key>checkerBoardDeleteTrs80</key>\n      <string>uni2428</string>\n      <key>checkerBoardDeleteAmstradCpc</key>\n      <string>uni2429</string>\n      <key>checkerBoardDeleteAmstradCpc.stypo</key>\n      <string>uni2429.stypo</string>\n      <key>checkerBoardFill</key>\n      <string>u1FB95</string>\n      <key>checkerBoardFill.stypo</key>\n      <string>u1FB95.stypo</string>\n      <key>checkerBoardFillInverse</key>\n      <string>u1FB96</string>\n      <key>checkerBoardFillInverse.stypo</key>\n      <string>u1FB96.stypo</string>\n      <key>blockQuadrant-UC</key>\n      <string>u1FBE4</string>\n      <key>blockQuadrant-UC.stypo</key>\n      <string>u1FBE4.stypo</string>\n      <key>blockQuadrant-LC</key>\n      <string>u1FBE5</string>\n      <key>blockQuadrant-LC.stypo</key>\n      <string>u1FBE5.stypo</string>\n      <key>blockQuadrant-ML</key>\n      <string>u1FBE6</string>\n      <key>blockQuadrant-ML.stypo</key>\n      <string>u1FBE6.stypo</string>\n      <key>blockQuadrant-MR</key>\n      <string>u1FBE7</string>\n      <key>blockQuadrant-MR.stypo</key>\n      <string>u1FBE7.stypo</string>\n      <key>blockTriangle-1</key>\n      <string>u1FB6D</string>\n      <key>blockTriangle-1.stypo</key>\n      <string>u1FB6D.stypo</string>\n      <key>blockTriangle-2</key>\n      <string>u1FB6C</string>\n      <key>blockTriangle-2.stypo</key>\n      <string>u1FB6C.stypo</string>\n      <key>blockTriangle-3</key>\n      <string>u1FB6E</string>\n      <key>blockTriangle-3.stypo</key>\n      <string>u1FB6E.stypo</string>\n      <key>blockTriangle-4</key>\n      <string>u1FB6F</string>\n      <key>blockTriangle-4.stypo</key>\n      <string>u1FB6F.stypo</string>\n      <key>blockTriangle-14</key>\n      <string>u1FB9A</string>\n      <key>blockTriangle-14.stypo</key>\n      <string>u1FB9A.stypo</string>\n      <key>blockTriangle-23</key>\n      <string>u1FB9B</string>\n      <key>blockTriangle-23.stypo</key>\n      <string>u1FB9B.stypo</string>\n      <key>blockTriangle-123</key>\n      <string>u1FB6B</string>\n      <key>blockTriangle-123.stypo</key>\n      <string>u1FB6B.stypo</string>\n      <key>blockTriangle-124</key>\n      <string>u1FB6A</string>\n      <key>blockTriangle-124.stypo</key>\n      <string>u1FB6A.stypo</string>\n      <key>blockTriangle-134</key>\n      <string>u1FB68</string>\n      <key>blockTriangle-134.stypo</key>\n      <string>u1FB68.stypo</string>\n      <key>blockTriangle-234</key>\n      <string>u1FB69</string>\n      <key>blockTriangle-234.stypo</key>\n      <string>u1FB69.stypo</string>\n      <key>blockCircle-1</key>\n      <string>u1FBEF</string>\n      <key>blockCircle-1.stypo</key>\n      <string>u1FBEF.stypo</string>\n      <key>blockCircle-2</key>\n      <string>u1FBEC</string>\n      <key>blockCircle-2.stypo</key>\n      <string>u1FBEC.stypo</string>\n      <key>blockCircle-3</key>\n      <string>u1FBED</string>\n      <key>blockCircle-3.stypo</key>\n      <string>u1FBED.stypo</string>\n      <key>blockCircle-4</key>\n      <string>u1FBEE</string>\n      <key>blockCircle-4.stypo</key>\n      <string>u1FBEE.stypo</string>\n      <key>blockCircle-UC</key>\n      <string>u1FBE8</string>\n      <key>blockCircle-UC.stypo</key>\n      <string>u1FBE8.stypo</string>\n      <key>blockCircle-LC</key>\n      <string>u1FBEA</string>\n      <key>blockCircle-LC.stypo</key>\n      <string>u1FBEA.stypo</string>\n      <key>blockCircle-ML</key>\n      <string>u1FBEB</string>\n      <key>blockCircle-ML.stypo</key>\n      <string>u1FBEB.stypo</string>\n      <key>blockCircle-MR</key>\n      <string>u1FBE9</string>\n      <key>blockCircle-MR.stypo</key>\n      <string>u1FBE9.stypo</string>\n      <key>blockSextant-1</key>\n      <string>u1FB00</string>\n      <key>blockSextant-1.stypo</key>\n      <string>u1FB00.stypo</string>\n      <key>blockSextant-2</key>\n      <string>u1FB01</string>\n      <key>blockSextant-2.stypo</key>\n      <string>u1FB01.stypo</string>\n      <key>blockSextant-12</key>\n      <string>u1FB02</string>\n      <key>blockSextant-12.stypo</key>\n      <string>u1FB02.stypo</string>\n      <key>blockSextant-3</key>\n      <string>u1FB03</string>\n      <key>blockSextant-3.stypo</key>\n      <string>u1FB03.stypo</string>\n      <key>blockSextant-13</key>\n      <string>u1FB04</string>\n      <key>blockSextant-13.stypo</key>\n      <string>u1FB04.stypo</string>\n      <key>blockSextant-23</key>\n      <string>u1FB05</string>\n      <key>blockSextant-23.stypo</key>\n      <string>u1FB05.stypo</string>\n      <key>blockSextant-123</key>\n      <string>u1FB06</string>\n      <key>blockSextant-123.stypo</key>\n      <string>u1FB06.stypo</string>\n      <key>blockSextant-4</key>\n      <string>u1FB07</string>\n      <key>blockSextant-4.stypo</key>\n      <string>u1FB07.stypo</string>\n      <key>blockSextant-14</key>\n      <string>u1FB08</string>\n      <key>blockSextant-14.stypo</key>\n      <string>u1FB08.stypo</string>\n      <key>blockSextant-24</key>\n      <string>u1FB09</string>\n      <key>blockSextant-24.stypo</key>\n      <string>u1FB09.stypo</string>\n      <key>blockSextant-124</key>\n      <string>u1FB0A</string>\n      <key>blockSextant-124.stypo</key>\n      <string>u1FB0A.stypo</string>\n      <key>blockSextant-34</key>\n      <string>u1FB0B</string>\n      <key>blockSextant-34.stypo</key>\n      <string>u1FB0B.stypo</string>\n      <key>blockSextant-134</key>\n      <string>u1FB0C</string>\n      <key>blockSextant-134.stypo</key>\n      <string>u1FB0C.stypo</string>\n      <key>blockSextant-234</key>\n      <string>u1FB0D</string>\n      <key>blockSextant-234.stypo</key>\n      <string>u1FB0D.stypo</string>\n      <key>blockSextant-1234</key>\n      <string>u1FB0E</string>\n      <key>blockSextant-1234.stypo</key>\n      <string>u1FB0E.stypo</string>\n      <key>blockSextant-5</key>\n      <string>u1FB0F</string>\n      <key>blockSextant-5.stypo</key>\n      <string>u1FB0F.stypo</string>\n      <key>blockSextant-15</key>\n      <string>u1FB10</string>\n      <key>blockSextant-15.stypo</key>\n      <string>u1FB10.stypo</string>\n      <key>blockSextant-25</key>\n      <string>u1FB11</string>\n      <key>blockSextant-25.stypo</key>\n      <string>u1FB11.stypo</string>\n      <key>blockSextant-125</key>\n      <string>u1FB12</string>\n      <key>blockSextant-125.stypo</key>\n      <string>u1FB12.stypo</string>\n      <key>blockSextant-35</key>\n      <string>u1FB13</string>\n      <key>blockSextant-35.stypo</key>\n      <string>u1FB13.stypo</string>\n      <key>blockSextant-235</key>\n      <string>u1FB14</string>\n      <key>blockSextant-235.stypo</key>\n      <string>u1FB14.stypo</string>\n      <key>blockSextant-1235</key>\n      <string>u1FB15</string>\n      <key>blockSextant-1235.stypo</key>\n      <string>u1FB15.stypo</string>\n      <key>blockSextant-45</key>\n      <string>u1FB16</string>\n      <key>blockSextant-45.stypo</key>\n      <string>u1FB16.stypo</string>\n      <key>blockSextant-145</key>\n      <string>u1FB17</string>\n      <key>blockSextant-145.stypo</key>\n      <string>u1FB17.stypo</string>\n      <key>blockSextant-245</key>\n      <string>u1FB18</string>\n      <key>blockSextant-245.stypo</key>\n      <string>u1FB18.stypo</string>\n      <key>blockSextant-1245</key>\n      <string>u1FB19</string>\n      <key>blockSextant-1245.stypo</key>\n      <string>u1FB19.stypo</string>\n      <key>blockSextant-345</key>\n      <string>u1FB1A</string>\n      <key>blockSextant-345.stypo</key>\n      <string>u1FB1A.stypo</string>\n      <key>blockSextant-1345</key>\n      <string>u1FB1B</string>\n      <key>blockSextant-1345.stypo</key>\n      <string>u1FB1B.stypo</string>\n      <key>blockSextant-2345</key>\n      <string>u1FB1C</string>\n      <key>blockSextant-2345.stypo</key>\n      <string>u1FB1C.stypo</string>\n      <key>blockSextant-12345</key>\n      <string>u1FB1D</string>\n      <key>blockSextant-12345.stypo</key>\n      <string>u1FB1D.stypo</string>\n      <key>blockSextant-6</key>\n      <string>u1FB1E</string>\n      <key>blockSextant-6.stypo</key>\n      <string>u1FB1E.stypo</string>\n      <key>blockSextant-16</key>\n      <string>u1FB1F</string>\n      <key>blockSextant-16.stypo</key>\n      <string>u1FB1F.stypo</string>\n      <key>blockSextant-26</key>\n      <string>u1FB20</string>\n      <key>blockSextant-26.stypo</key>\n      <string>u1FB20.stypo</string>\n      <key>blockSextant-126</key>\n      <string>u1FB21</string>\n      <key>blockSextant-126.stypo</key>\n      <string>u1FB21.stypo</string>\n      <key>blockSextant-36</key>\n      <string>u1FB22</string>\n      <key>blockSextant-36.stypo</key>\n      <string>u1FB22.stypo</string>\n      <key>blockSextant-136</key>\n      <string>u1FB23</string>\n      <key>blockSextant-136.stypo</key>\n      <string>u1FB23.stypo</string>\n      <key>blockSextant-236</key>\n      <string>u1FB24</string>\n      <key>blockSextant-236.stypo</key>\n      <string>u1FB24.stypo</string>\n      <key>blockSextant-1236</key>\n      <string>u1FB25</string>\n      <key>blockSextant-1236.stypo</key>\n      <string>u1FB25.stypo</string>\n      <key>blockSextant-46</key>\n      <string>u1FB26</string>\n      <key>blockSextant-46.stypo</key>\n      <string>u1FB26.stypo</string>\n      <key>blockSextant-146</key>\n      <string>u1FB27</string>\n      <key>blockSextant-146.stypo</key>\n      <string>u1FB27.stypo</string>\n      <key>blockSextant-1246</key>\n      <string>u1FB28</string>\n      <key>blockSextant-1246.stypo</key>\n      <string>u1FB28.stypo</string>\n      <key>blockSextant-346</key>\n      <string>u1FB29</string>\n      <key>blockSextant-346.stypo</key>\n      <string>u1FB29.stypo</string>\n      <key>blockSextant-1346</key>\n      <string>u1FB2A</string>\n      <key>blockSextant-1346.stypo</key>\n      <string>u1FB2A.stypo</string>\n      <key>blockSextant-2346</key>\n      <string>u1FB2B</string>\n      <key>blockSextant-2346.stypo</key>\n      <string>u1FB2B.stypo</string>\n      <key>blockSextant-12346</key>\n      <string>u1FB2C</string>\n      <key>blockSextant-12346.stypo</key>\n      <string>u1FB2C.stypo</string>\n      <key>blockSextant-56</key>\n      <string>u1FB2D</string>\n      <key>blockSextant-56.stypo</key>\n      <string>u1FB2D.stypo</string>\n      <key>blockSextant-156</key>\n      <string>u1FB2E</string>\n      <key>blockSextant-156.stypo</key>\n      <string>u1FB2E.stypo</string>\n      <key>blockSextant-256</key>\n      <string>u1FB2F</string>\n      <key>blockSextant-256.stypo</key>\n      <string>u1FB2F.stypo</string>\n      <key>blockSextant-1256</key>\n      <string>u1FB30</string>\n      <key>blockSextant-1256.stypo</key>\n      <string>u1FB30.stypo</string>\n      <key>blockSextant-356</key>\n      <string>u1FB31</string>\n      <key>blockSextant-356.stypo</key>\n      <string>u1FB31.stypo</string>\n      <key>blockSextant-1356</key>\n      <string>u1FB32</string>\n      <key>blockSextant-1356.stypo</key>\n      <string>u1FB32.stypo</string>\n      <key>blockSextant-2356</key>\n      <string>u1FB33</string>\n      <key>blockSextant-2356.stypo</key>\n      <string>u1FB33.stypo</string>\n      <key>blockSextant-12356</key>\n      <string>u1FB34</string>\n      <key>blockSextant-12356.stypo</key>\n      <string>u1FB34.stypo</string>\n      <key>blockSextant-456</key>\n      <string>u1FB35</string>\n      <key>blockSextant-456.stypo</key>\n      <string>u1FB35.stypo</string>\n      <key>blockSextant-1456</key>\n      <string>u1FB36</string>\n      <key>blockSextant-1456.stypo</key>\n      <string>u1FB36.stypo</string>\n      <key>blockSextant-2456</key>\n      <string>u1FB37</string>\n      <key>blockSextant-2456.stypo</key>\n      <string>u1FB37.stypo</string>\n      <key>blockSextant-12456</key>\n      <string>u1FB38</string>\n      <key>blockSextant-12456.stypo</key>\n      <string>u1FB38.stypo</string>\n      <key>blockSextant-3456</key>\n      <string>u1FB39</string>\n      <key>blockSextant-3456.stypo</key>\n      <string>u1FB39.stypo</string>\n      <key>blockSextant-13456</key>\n      <string>u1FB3A</string>\n      <key>blockSextant-13456.stypo</key>\n      <string>u1FB3A.stypo</string>\n      <key>blockSextant-23456</key>\n      <string>u1FB3B</string>\n      <key>blockSextant-23456.stypo</key>\n      <string>u1FB3B.stypo</string>\n      <key>blockDiagonal-1FB3C</key>\n      <string>u1FB3C</string>\n      <key>blockDiagonal-1FB3C.stypo</key>\n      <string>u1FB3C.stypo</string>\n      <key>blockDiagonal-1FB3D</key>\n      <string>u1FB3D</string>\n      <key>blockDiagonal-1FB3D.stypo</key>\n      <string>u1FB3D.stypo</string>\n      <key>blockDiagonal-1FB3E</key>\n      <string>u1FB3E</string>\n      <key>blockDiagonal-1FB3E.stypo</key>\n      <string>u1FB3E.stypo</string>\n      <key>blockDiagonal-1FB3F</key>\n      <string>u1FB3F</string>\n      <key>blockDiagonal-1FB3F.stypo</key>\n      <string>u1FB3F.stypo</string>\n      <key>blockDiagonal-1FB40</key>\n      <string>u1FB40</string>\n      <key>blockDiagonal-1FB40.stypo</key>\n      <string>u1FB40.stypo</string>\n      <key>blockDiagonal-1FB41</key>\n      <string>u1FB41</string>\n      <key>blockDiagonal-1FB41.stypo</key>\n      <string>u1FB41.stypo</string>\n      <key>blockDiagonal-1FB42</key>\n      <string>u1FB42</string>\n      <key>blockDiagonal-1FB42.stypo</key>\n      <string>u1FB42.stypo</string>\n      <key>blockDiagonal-1FB43</key>\n      <string>u1FB43</string>\n      <key>blockDiagonal-1FB43.stypo</key>\n      <string>u1FB43.stypo</string>\n      <key>blockDiagonal-1FB44</key>\n      <string>u1FB44</string>\n      <key>blockDiagonal-1FB44.stypo</key>\n      <string>u1FB44.stypo</string>\n      <key>blockDiagonal-1FB45</key>\n      <string>u1FB45</string>\n      <key>blockDiagonal-1FB45.stypo</key>\n      <string>u1FB45.stypo</string>\n      <key>blockDiagonal-1FB46</key>\n      <string>u1FB46</string>\n      <key>blockDiagonal-1FB46.stypo</key>\n      <string>u1FB46.stypo</string>\n      <key>blockDiagonal-1FB47</key>\n      <string>u1FB47</string>\n      <key>blockDiagonal-1FB47.stypo</key>\n      <string>u1FB47.stypo</string>\n      <key>blockDiagonal-1FB48</key>\n      <string>u1FB48</string>\n      <key>blockDiagonal-1FB48.stypo</key>\n      <string>u1FB48.stypo</string>\n      <key>blockDiagonal-1FB49</key>\n      <string>u1FB49</string>\n      <key>blockDiagonal-1FB49.stypo</key>\n      <string>u1FB49.stypo</string>\n      <key>blockDiagonal-1FB4A</key>\n      <string>u1FB4A</string>\n      <key>blockDiagonal-1FB4A.stypo</key>\n      <string>u1FB4A.stypo</string>\n      <key>blockDiagonal-1FB4B</key>\n      <string>u1FB4B</string>\n      <key>blockDiagonal-1FB4B.stypo</key>\n      <string>u1FB4B.stypo</string>\n      <key>blockDiagonal-1FB4C</key>\n      <string>u1FB4C</string>\n      <key>blockDiagonal-1FB4C.stypo</key>\n      <string>u1FB4C.stypo</string>\n      <key>blockDiagonal-1FB4D</key>\n      <string>u1FB4D</string>\n      <key>blockDiagonal-1FB4D.stypo</key>\n      <string>u1FB4D.stypo</string>\n      <key>blockDiagonal-1FB4E</key>\n      <string>u1FB4E</string>\n      <key>blockDiagonal-1FB4E.stypo</key>\n      <string>u1FB4E.stypo</string>\n      <key>blockDiagonal-1FB4F</key>\n      <string>u1FB4F</string>\n      <key>blockDiagonal-1FB4F.stypo</key>\n      <string>u1FB4F.stypo</string>\n      <key>blockDiagonal-1FB50</key>\n      <string>u1FB50</string>\n      <key>blockDiagonal-1FB50.stypo</key>\n      <string>u1FB50.stypo</string>\n      <key>blockDiagonal-1FB51</key>\n      <string>u1FB51</string>\n      <key>blockDiagonal-1FB51.stypo</key>\n      <string>u1FB51.stypo</string>\n      <key>blockDiagonal-1FB52</key>\n      <string>u1FB52</string>\n      <key>blockDiagonal-1FB52.stypo</key>\n      <string>u1FB52.stypo</string>\n      <key>blockDiagonal-1FB53</key>\n      <string>u1FB53</string>\n      <key>blockDiagonal-1FB53.stypo</key>\n      <string>u1FB53.stypo</string>\n      <key>blockDiagonal-1FB54</key>\n      <string>u1FB54</string>\n      <key>blockDiagonal-1FB54.stypo</key>\n      <string>u1FB54.stypo</string>\n      <key>blockDiagonal-1FB55</key>\n      <string>u1FB55</string>\n      <key>blockDiagonal-1FB55.stypo</key>\n      <string>u1FB55.stypo</string>\n      <key>blockDiagonal-1FB56</key>\n      <string>u1FB56</string>\n      <key>blockDiagonal-1FB56.stypo</key>\n      <string>u1FB56.stypo</string>\n      <key>blockDiagonal-1FB57</key>\n      <string>u1FB57</string>\n      <key>blockDiagonal-1FB57.stypo</key>\n      <string>u1FB57.stypo</string>\n      <key>blockDiagonal-1FB58</key>\n      <string>u1FB58</string>\n      <key>blockDiagonal-1FB58.stypo</key>\n      <string>u1FB58.stypo</string>\n      <key>blockDiagonal-1FB59</key>\n      <string>u1FB59</string>\n      <key>blockDiagonal-1FB59.stypo</key>\n      <string>u1FB59.stypo</string>\n      <key>blockDiagonal-1FB5A</key>\n      <string>u1FB5A</string>\n      <key>blockDiagonal-1FB5A.stypo</key>\n      <string>u1FB5A.stypo</string>\n      <key>blockDiagonal-1FB5B</key>\n      <string>u1FB5B</string>\n      <key>blockDiagonal-1FB5B.stypo</key>\n      <string>u1FB5B.stypo</string>\n      <key>blockDiagonal-1FB5C</key>\n      <string>u1FB5C</string>\n      <key>blockDiagonal-1FB5C.stypo</key>\n      <string>u1FB5C.stypo</string>\n      <key>blockDiagonal-1FB5D</key>\n      <string>u1FB5D</string>\n      <key>blockDiagonal-1FB5D.stypo</key>\n      <string>u1FB5D.stypo</string>\n      <key>blockDiagonal-1FB5E</key>\n      <string>u1FB5E</string>\n      <key>blockDiagonal-1FB5E.stypo</key>\n      <string>u1FB5E.stypo</string>\n      <key>blockDiagonal-1FB5F</key>\n      <string>u1FB5F</string>\n      <key>blockDiagonal-1FB5F.stypo</key>\n      <string>u1FB5F.stypo</string>\n      <key>blockDiagonal-1FB60</key>\n      <string>u1FB60</string>\n      <key>blockDiagonal-1FB60.stypo</key>\n      <string>u1FB60.stypo</string>\n      <key>blockDiagonal-1FB61</key>\n      <string>u1FB61</string>\n      <key>blockDiagonal-1FB61.stypo</key>\n      <string>u1FB61.stypo</string>\n      <key>blockDiagonal-1FB62</key>\n      <string>u1FB62</string>\n      <key>blockDiagonal-1FB62.stypo</key>\n      <string>u1FB62.stypo</string>\n      <key>blockDiagonal-1FB63</key>\n      <string>u1FB63</string>\n      <key>blockDiagonal-1FB63.stypo</key>\n      <string>u1FB63.stypo</string>\n      <key>blockDiagonal-1FB64</key>\n      <string>u1FB64</string>\n      <key>blockDiagonal-1FB64.stypo</key>\n      <string>u1FB64.stypo</string>\n      <key>blockDiagonal-1FB65</key>\n      <string>u1FB65</string>\n      <key>blockDiagonal-1FB65.stypo</key>\n      <string>u1FB65.stypo</string>\n      <key>blockDiagonal-1FB66</key>\n      <string>u1FB66</string>\n      <key>blockDiagonal-1FB66.stypo</key>\n      <string>u1FB66.stypo</string>\n      <key>blockDiagonal-1FB67</key>\n      <string>u1FB67</string>\n      <key>blockDiagonal-1FB67.stypo</key>\n      <string>u1FB67.stypo</string>\n      <key>blockOctant-1</key>\n      <string>u1CEA8</string>\n      <key>blockOctant-1.stypo</key>\n      <string>u1CEA8.stypo</string>\n      <key>blockOctant-2</key>\n      <string>u1CEAB</string>\n      <key>blockOctant-2.stypo</key>\n      <string>u1CEAB.stypo</string>\n      <key>blockOctant-12</key>\n      <string>u1FB82</string>\n      <key>blockOctant-12.stypo</key>\n      <string>u1FB82.stypo</string>\n      <key>blockOctant-3</key>\n      <string>u1CD00</string>\n      <key>blockOctant-3.stypo</key>\n      <string>u1CD00.stypo</string>\n      <key>blockOctant-23</key>\n      <string>u1CD01</string>\n      <key>blockOctant-23.stypo</key>\n      <string>u1CD01.stypo</string>\n      <key>blockOctant-123</key>\n      <string>u1CD02</string>\n      <key>blockOctant-123.stypo</key>\n      <string>u1CD02.stypo</string>\n      <key>blockOctant-4</key>\n      <string>u1CD03</string>\n      <key>blockOctant-4.stypo</key>\n      <string>u1CD03.stypo</string>\n      <key>blockOctant-14</key>\n      <string>u1CD04</string>\n      <key>blockOctant-14.stypo</key>\n      <string>u1CD04.stypo</string>\n      <key>blockOctant-124</key>\n      <string>u1CD05</string>\n      <key>blockOctant-124.stypo</key>\n      <string>u1CD05.stypo</string>\n      <key>blockOctant-34</key>\n      <string>u1CD06</string>\n      <key>blockOctant-34.stypo</key>\n      <string>u1CD06.stypo</string>\n      <key>blockOctant-134</key>\n      <string>u1CD07</string>\n      <key>blockOctant-134.stypo</key>\n      <string>u1CD07.stypo</string>\n      <key>blockOctant-234</key>\n      <string>u1CD08</string>\n      <key>blockOctant-234.stypo</key>\n      <string>u1CD08.stypo</string>\n      <key>blockOctant-5</key>\n      <string>u1CD09</string>\n      <key>blockOctant-5.stypo</key>\n      <string>u1CD09.stypo</string>\n      <key>blockOctant-15</key>\n      <string>u1CD0A</string>\n      <key>blockOctant-15.stypo</key>\n      <string>u1CD0A.stypo</string>\n      <key>blockOctant-25</key>\n      <string>u1CD0B</string>\n      <key>blockOctant-25.stypo</key>\n      <string>u1CD0B.stypo</string>\n      <key>blockOctant-125</key>\n      <string>u1CD0C</string>\n      <key>blockOctant-125.stypo</key>\n      <string>u1CD0C.stypo</string>\n      <key>blockOctant-135</key>\n      <string>u1CD0D</string>\n      <key>blockOctant-135.stypo</key>\n      <string>u1CD0D.stypo</string>\n      <key>blockOctant-235</key>\n      <string>u1CD0E</string>\n      <key>blockOctant-235.stypo</key>\n      <string>u1CD0E.stypo</string>\n      <key>blockOctant-1235</key>\n      <string>u1CD0F</string>\n      <key>blockOctant-1235.stypo</key>\n      <string>u1CD0F.stypo</string>\n      <key>blockOctant-45</key>\n      <string>u1CD10</string>\n      <key>blockOctant-45.stypo</key>\n      <string>u1CD10.stypo</string>\n      <key>blockOctant-145</key>\n      <string>u1CD11</string>\n      <key>blockOctant-145.stypo</key>\n      <string>u1CD11.stypo</string>\n      <key>blockOctant-245</key>\n      <string>u1CD12</string>\n      <key>blockOctant-245.stypo</key>\n      <string>u1CD12.stypo</string>\n      <key>blockOctant-1245</key>\n      <string>u1CD13</string>\n      <key>blockOctant-1245.stypo</key>\n      <string>u1CD13.stypo</string>\n      <key>blockOctant-345</key>\n      <string>u1CD14</string>\n      <key>blockOctant-345.stypo</key>\n      <string>u1CD14.stypo</string>\n      <key>blockOctant-1345</key>\n      <string>u1CD15</string>\n      <key>blockOctant-1345.stypo</key>\n      <string>u1CD15.stypo</string>\n      <key>blockOctant-2345</key>\n      <string>u1CD16</string>\n      <key>blockOctant-2345.stypo</key>\n      <string>u1CD16.stypo</string>\n      <key>blockOctant-12345</key>\n      <string>u1CD17</string>\n      <key>blockOctant-12345.stypo</key>\n      <string>u1CD17.stypo</string>\n      <key>blockOctant-6</key>\n      <string>u1CD18</string>\n      <key>blockOctant-6.stypo</key>\n      <string>u1CD18.stypo</string>\n      <key>blockOctant-16</key>\n      <string>u1CD19</string>\n      <key>blockOctant-16.stypo</key>\n      <string>u1CD19.stypo</string>\n      <key>blockOctant-26</key>\n      <string>u1CD1A</string>\n      <key>blockOctant-26.stypo</key>\n      <string>u1CD1A.stypo</string>\n      <key>blockOctant-126</key>\n      <string>u1CD1B</string>\n      <key>blockOctant-126.stypo</key>\n      <string>u1CD1B.stypo</string>\n      <key>blockOctant-36</key>\n      <string>u1CD1C</string>\n      <key>blockOctant-36.stypo</key>\n      <string>u1CD1C.stypo</string>\n      <key>blockOctant-136</key>\n      <string>u1CD1D</string>\n      <key>blockOctant-136.stypo</key>\n      <string>u1CD1D.stypo</string>\n      <key>blockOctant-236</key>\n      <string>u1CD1E</string>\n      <key>blockOctant-236.stypo</key>\n      <string>u1CD1E.stypo</string>\n      <key>blockOctant-1236</key>\n      <string>u1CD1F</string>\n      <key>blockOctant-1236.stypo</key>\n      <string>u1CD1F.stypo</string>\n      <key>blockOctant-146</key>\n      <string>u1CD20</string>\n      <key>blockOctant-146.stypo</key>\n      <string>u1CD20.stypo</string>\n      <key>blockOctant-246</key>\n      <string>u1CD21</string>\n      <key>blockOctant-246.stypo</key>\n      <string>u1CD21.stypo</string>\n      <key>blockOctant-1246</key>\n      <string>u1CD22</string>\n      <key>blockOctant-1246.stypo</key>\n      <string>u1CD22.stypo</string>\n      <key>blockOctant-346</key>\n      <string>u1CD23</string>\n      <key>blockOctant-346.stypo</key>\n      <string>u1CD23.stypo</string>\n      <key>blockOctant-1346</key>\n      <string>u1CD24</string>\n      <key>blockOctant-1346.stypo</key>\n      <string>u1CD24.stypo</string>\n      <key>blockOctant-2346</key>\n      <string>u1CD25</string>\n      <key>blockOctant-2346.stypo</key>\n      <string>u1CD25.stypo</string>\n      <key>blockOctant-12346</key>\n      <string>u1CD26</string>\n      <key>blockOctant-12346.stypo</key>\n      <string>u1CD26.stypo</string>\n      <key>blockOctant-56</key>\n      <string>u1CD27</string>\n      <key>blockOctant-56.stypo</key>\n      <string>u1CD27.stypo</string>\n      <key>blockOctant-156</key>\n      <string>u1CD28</string>\n      <key>blockOctant-156.stypo</key>\n      <string>u1CD28.stypo</string>\n      <key>blockOctant-256</key>\n      <string>u1CD29</string>\n      <key>blockOctant-256.stypo</key>\n      <string>u1CD29.stypo</string>\n      <key>blockOctant-1256</key>\n      <string>u1CD2A</string>\n      <key>blockOctant-1256.stypo</key>\n      <string>u1CD2A.stypo</string>\n      <key>blockOctant-356</key>\n      <string>u1CD2B</string>\n      <key>blockOctant-356.stypo</key>\n      <string>u1CD2B.stypo</string>\n      <key>blockOctant-1356</key>\n      <string>u1CD2C</string>\n      <key>blockOctant-1356.stypo</key>\n      <string>u1CD2C.stypo</string>\n      <key>blockOctant-2356</key>\n      <string>u1CD2D</string>\n      <key>blockOctant-2356.stypo</key>\n      <string>u1CD2D.stypo</string>\n      <key>blockOctant-12356</key>\n      <string>u1CD2E</string>\n      <key>blockOctant-12356.stypo</key>\n      <string>u1CD2E.stypo</string>\n      <key>blockOctant-456</key>\n      <string>u1CD2F</string>\n      <key>blockOctant-456.stypo</key>\n      <string>u1CD2F.stypo</string>\n      <key>blockOctant-1456</key>\n      <string>u1CD30</string>\n      <key>blockOctant-1456.stypo</key>\n      <string>u1CD30.stypo</string>\n      <key>blockOctant-2456</key>\n      <string>u1CD31</string>\n      <key>blockOctant-2456.stypo</key>\n      <string>u1CD31.stypo</string>\n      <key>blockOctant-12456</key>\n      <string>u1CD32</string>\n      <key>blockOctant-12456.stypo</key>\n      <string>u1CD32.stypo</string>\n      <key>blockOctant-3456</key>\n      <string>u1CD33</string>\n      <key>blockOctant-3456.stypo</key>\n      <string>u1CD33.stypo</string>\n      <key>blockOctant-13456</key>\n      <string>u1CD34</string>\n      <key>blockOctant-13456.stypo</key>\n      <string>u1CD34.stypo</string>\n      <key>blockOctant-23456</key>\n      <string>u1CD35</string>\n      <key>blockOctant-23456.stypo</key>\n      <string>u1CD35.stypo</string>\n      <key>blockOctant-123456</key>\n      <string>u1FB85</string>\n      <key>blockOctant-123456.stypo</key>\n      <string>u1FB85.stypo</string>\n      <key>blockOctant-7</key>\n      <string>u1CEA3</string>\n      <key>blockOctant-7.stypo</key>\n      <string>u1CEA3.stypo</string>\n      <key>blockOctant-17</key>\n      <string>u1CD36</string>\n      <key>blockOctant-17.stypo</key>\n      <string>u1CD36.stypo</string>\n      <key>blockOctant-27</key>\n      <string>u1CD37</string>\n      <key>blockOctant-27.stypo</key>\n      <string>u1CD37.stypo</string>\n      <key>blockOctant-127</key>\n      <string>u1CD38</string>\n      <key>blockOctant-127.stypo</key>\n      <string>u1CD38.stypo</string>\n      <key>blockOctant-37</key>\n      <string>u1CD39</string>\n      <key>blockOctant-37.stypo</key>\n      <string>u1CD39.stypo</string>\n      <key>blockOctant-137</key>\n      <string>u1CD3A</string>\n      <key>blockOctant-137.stypo</key>\n      <string>u1CD3A.stypo</string>\n      <key>blockOctant-237</key>\n      <string>u1CD3B</string>\n      <key>blockOctant-237.stypo</key>\n      <string>u1CD3B.stypo</string>\n      <key>blockOctant-1237</key>\n      <string>u1CD3C</string>\n      <key>blockOctant-1237.stypo</key>\n      <string>u1CD3C.stypo</string>\n      <key>blockOctant-47</key>\n      <string>u1CD3D</string>\n      <key>blockOctant-47.stypo</key>\n      <string>u1CD3D.stypo</string>\n      <key>blockOctant-147</key>\n      <string>u1CD3E</string>\n      <key>blockOctant-147.stypo</key>\n      <string>u1CD3E.stypo</string>\n      <key>blockOctant-247</key>\n      <string>u1CD3F</string>\n      <key>blockOctant-247.stypo</key>\n      <string>u1CD3F.stypo</string>\n      <key>blockOctant-1247</key>\n      <string>u1CD40</string>\n      <key>blockOctant-1247.stypo</key>\n      <string>u1CD40.stypo</string>\n      <key>blockOctant-347</key>\n      <string>u1CD41</string>\n      <key>blockOctant-347.stypo</key>\n      <string>u1CD41.stypo</string>\n      <key>blockOctant-1347</key>\n      <string>u1CD42</string>\n      <key>blockOctant-1347.stypo</key>\n      <string>u1CD42.stypo</string>\n      <key>blockOctant-2347</key>\n      <string>u1CD43</string>\n      <key>blockOctant-2347.stypo</key>\n      <string>u1CD43.stypo</string>\n      <key>blockOctant-12347</key>\n      <string>u1CD44</string>\n      <key>blockOctant-12347.stypo</key>\n      <string>u1CD44.stypo</string>\n      <key>blockOctant-157</key>\n      <string>u1CD45</string>\n      <key>blockOctant-157.stypo</key>\n      <string>u1CD45.stypo</string>\n      <key>blockOctant-257</key>\n      <string>u1CD46</string>\n      <key>blockOctant-257.stypo</key>\n      <string>u1CD46.stypo</string>\n      <key>blockOctant-1257</key>\n      <string>u1CD47</string>\n      <key>blockOctant-1257.stypo</key>\n      <string>u1CD47.stypo</string>\n      <key>blockOctant-357</key>\n      <string>u1CD48</string>\n      <key>blockOctant-357.stypo</key>\n      <string>u1CD48.stypo</string>\n      <key>blockOctant-2357</key>\n      <string>u1CD49</string>\n      <key>blockOctant-2357.stypo</key>\n      <string>u1CD49.stypo</string>\n      <key>blockOctant-12357</key>\n      <string>u1CD4A</string>\n      <key>blockOctant-12357.stypo</key>\n      <string>u1CD4A.stypo</string>\n      <key>blockOctant-457</key>\n      <string>u1CD4B</string>\n      <key>blockOctant-457.stypo</key>\n      <string>u1CD4B.stypo</string>\n      <key>blockOctant-1457</key>\n      <string>u1CD4C</string>\n      <key>blockOctant-1457.stypo</key>\n      <string>u1CD4C.stypo</string>\n      <key>blockOctant-12457</key>\n      <string>u1CD4D</string>\n      <key>blockOctant-12457.stypo</key>\n      <string>u1CD4D.stypo</string>\n      <key>blockOctant-3457</key>\n      <string>u1CD4E</string>\n      <key>blockOctant-3457.stypo</key>\n      <string>u1CD4E.stypo</string>\n      <key>blockOctant-13457</key>\n      <string>u1CD4F</string>\n      <key>blockOctant-13457.stypo</key>\n      <string>u1CD4F.stypo</string>\n      <key>blockOctant-23457</key>\n      <string>u1CD50</string>\n      <key>blockOctant-23457.stypo</key>\n      <string>u1CD50.stypo</string>\n      <key>blockOctant-67</key>\n      <string>u1CD51</string>\n      <key>blockOctant-67.stypo</key>\n      <string>u1CD51.stypo</string>\n      <key>blockOctant-167</key>\n      <string>u1CD52</string>\n      <key>blockOctant-167.stypo</key>\n      <string>u1CD52.stypo</string>\n      <key>blockOctant-267</key>\n      <string>u1CD53</string>\n      <key>blockOctant-267.stypo</key>\n      <string>u1CD53.stypo</string>\n      <key>blockOctant-1267</key>\n      <string>u1CD54</string>\n      <key>blockOctant-1267.stypo</key>\n      <string>u1CD54.stypo</string>\n      <key>blockOctant-367</key>\n      <string>u1CD55</string>\n      <key>blockOctant-367.stypo</key>\n      <string>u1CD55.stypo</string>\n      <key>blockOctant-1367</key>\n      <string>u1CD56</string>\n      <key>blockOctant-1367.stypo</key>\n      <string>u1CD56.stypo</string>\n      <key>blockOctant-2367</key>\n      <string>u1CD57</string>\n      <key>blockOctant-2367.stypo</key>\n      <string>u1CD57.stypo</string>\n      <key>blockOctant-12367</key>\n      <string>u1CD58</string>\n      <key>blockOctant-12367.stypo</key>\n      <string>u1CD58.stypo</string>\n      <key>blockOctant-467</key>\n      <string>u1CD59</string>\n      <key>blockOctant-467.stypo</key>\n      <string>u1CD59.stypo</string>\n      <key>blockOctant-1467</key>\n      <string>u1CD5A</string>\n      <key>blockOctant-1467.stypo</key>\n      <string>u1CD5A.stypo</string>\n      <key>blockOctant-2467</key>\n      <string>u1CD5B</string>\n      <key>blockOctant-2467.stypo</key>\n      <string>u1CD5B.stypo</string>\n      <key>blockOctant-12467</key>\n      <string>u1CD5C</string>\n      <key>blockOctant-12467.stypo</key>\n      <string>u1CD5C.stypo</string>\n      <key>blockOctant-3467</key>\n      <string>u1CD5D</string>\n      <key>blockOctant-3467.stypo</key>\n      <string>u1CD5D.stypo</string>\n      <key>blockOctant-13467</key>\n      <string>u1CD5E</string>\n      <key>blockOctant-13467.stypo</key>\n      <string>u1CD5E.stypo</string>\n      <key>blockOctant-23467</key>\n      <string>u1CD5F</string>\n      <key>blockOctant-23467.stypo</key>\n      <string>u1CD5F.stypo</string>\n      <key>blockOctant-123467</key>\n      <string>u1CD60</string>\n      <key>blockOctant-123467.stypo</key>\n      <string>u1CD60.stypo</string>\n      <key>blockOctant-567</key>\n      <string>u1CD61</string>\n      <key>blockOctant-567.stypo</key>\n      <string>u1CD61.stypo</string>\n      <key>blockOctant-1567</key>\n      <string>u1CD62</string>\n      <key>blockOctant-1567.stypo</key>\n      <string>u1CD62.stypo</string>\n      <key>blockOctant-2567</key>\n      <string>u1CD63</string>\n      <key>blockOctant-2567.stypo</key>\n      <string>u1CD63.stypo</string>\n      <key>blockOctant-12567</key>\n      <string>u1CD64</string>\n      <key>blockOctant-12567.stypo</key>\n      <string>u1CD64.stypo</string>\n      <key>blockOctant-3567</key>\n      <string>u1CD65</string>\n      <key>blockOctant-3567.stypo</key>\n      <string>u1CD65.stypo</string>\n      <key>blockOctant-13567</key>\n      <string>u1CD66</string>\n      <key>blockOctant-13567.stypo</key>\n      <string>u1CD66.stypo</string>\n      <key>blockOctant-23567</key>\n      <string>u1CD67</string>\n      <key>blockOctant-23567.stypo</key>\n      <string>u1CD67.stypo</string>\n      <key>blockOctant-123567</key>\n      <string>u1CD68</string>\n      <key>blockOctant-123567.stypo</key>\n      <string>u1CD68.stypo</string>\n      <key>blockOctant-4567</key>\n      <string>u1CD69</string>\n      <key>blockOctant-4567.stypo</key>\n      <string>u1CD69.stypo</string>\n      <key>blockOctant-14567</key>\n      <string>u1CD6A</string>\n      <key>blockOctant-14567.stypo</key>\n      <string>u1CD6A.stypo</string>\n      <key>blockOctant-24567</key>\n      <string>u1CD6B</string>\n      <key>blockOctant-24567.stypo</key>\n      <string>u1CD6B.stypo</string>\n      <key>blockOctant-124567</key>\n      <string>u1CD6C</string>\n      <key>blockOctant-124567.stypo</key>\n      <string>u1CD6C.stypo</string>\n      <key>blockOctant-34567</key>\n      <string>u1CD6D</string>\n      <key>blockOctant-34567.stypo</key>\n      <string>u1CD6D.stypo</string>\n      <key>blockOctant-134567</key>\n      <string>u1CD6E</string>\n      <key>blockOctant-134567.stypo</key>\n      <string>u1CD6E.stypo</string>\n      <key>blockOctant-234567</key>\n      <string>u1CD6F</string>\n      <key>blockOctant-234567.stypo</key>\n      <string>u1CD6F.stypo</string>\n      <key>blockOctant-1234567</key>\n      <string>u1CD70</string>\n      <key>blockOctant-1234567.stypo</key>\n      <string>u1CD70.stypo</string>\n      <key>blockOctant-8</key>\n      <string>u1CEA0</string>\n      <key>blockOctant-8.stypo</key>\n      <string>u1CEA0.stypo</string>\n      <key>blockOctant-18</key>\n      <string>u1CD71</string>\n      <key>blockOctant-18.stypo</key>\n      <string>u1CD71.stypo</string>\n      <key>blockOctant-28</key>\n      <string>u1CD72</string>\n      <key>blockOctant-28.stypo</key>\n      <string>u1CD72.stypo</string>\n      <key>blockOctant-128</key>\n      <string>u1CD73</string>\n      <key>blockOctant-128.stypo</key>\n      <string>u1CD73.stypo</string>\n      <key>blockOctant-38</key>\n      <string>u1CD74</string>\n      <key>blockOctant-38.stypo</key>\n      <string>u1CD74.stypo</string>\n      <key>blockOctant-138</key>\n      <string>u1CD75</string>\n      <key>blockOctant-138.stypo</key>\n      <string>u1CD75.stypo</string>\n      <key>blockOctant-238</key>\n      <string>u1CD76</string>\n      <key>blockOctant-238.stypo</key>\n      <string>u1CD76.stypo</string>\n      <key>blockOctant-1238</key>\n      <string>u1CD77</string>\n      <key>blockOctant-1238.stypo</key>\n      <string>u1CD77.stypo</string>\n      <key>blockOctant-48</key>\n      <string>u1CD78</string>\n      <key>blockOctant-48.stypo</key>\n      <string>u1CD78.stypo</string>\n      <key>blockOctant-148</key>\n      <string>u1CD79</string>\n      <key>blockOctant-148.stypo</key>\n      <string>u1CD79.stypo</string>\n      <key>blockOctant-248</key>\n      <string>u1CD7A</string>\n      <key>blockOctant-248.stypo</key>\n      <string>u1CD7A.stypo</string>\n      <key>blockOctant-1248</key>\n      <string>u1CD7B</string>\n      <key>blockOctant-1248.stypo</key>\n      <string>u1CD7B.stypo</string>\n      <key>blockOctant-348</key>\n      <string>u1CD7C</string>\n      <key>blockOctant-348.stypo</key>\n      <string>u1CD7C.stypo</string>\n      <key>blockOctant-1348</key>\n      <string>u1CD7D</string>\n      <key>blockOctant-1348.stypo</key>\n      <string>u1CD7D.stypo</string>\n      <key>blockOctant-2348</key>\n      <string>u1CD7E</string>\n      <key>blockOctant-2348.stypo</key>\n      <string>u1CD7E.stypo</string>\n      <key>blockOctant-12348</key>\n      <string>u1CD7F</string>\n      <key>blockOctant-12348.stypo</key>\n      <string>u1CD7F.stypo</string>\n      <key>blockOctant-58</key>\n      <string>u1CD80</string>\n      <key>blockOctant-58.stypo</key>\n      <string>u1CD80.stypo</string>\n      <key>blockOctant-158</key>\n      <string>u1CD81</string>\n      <key>blockOctant-158.stypo</key>\n      <string>u1CD81.stypo</string>\n      <key>blockOctant-258</key>\n      <string>u1CD82</string>\n      <key>blockOctant-258.stypo</key>\n      <string>u1CD82.stypo</string>\n      <key>blockOctant-1258</key>\n      <string>u1CD83</string>\n      <key>blockOctant-1258.stypo</key>\n      <string>u1CD83.stypo</string>\n      <key>blockOctant-358</key>\n      <string>u1CD84</string>\n      <key>blockOctant-358.stypo</key>\n      <string>u1CD84.stypo</string>\n      <key>blockOctant-1358</key>\n      <string>u1CD85</string>\n      <key>blockOctant-1358.stypo</key>\n      <string>u1CD85.stypo</string>\n      <key>blockOctant-2358</key>\n      <string>u1CD86</string>\n      <key>blockOctant-2358.stypo</key>\n      <string>u1CD86.stypo</string>\n      <key>blockOctant-12358</key>\n      <string>u1CD87</string>\n      <key>blockOctant-12358.stypo</key>\n      <string>u1CD87.stypo</string>\n      <key>blockOctant-458</key>\n      <string>u1CD88</string>\n      <key>blockOctant-458.stypo</key>\n      <string>u1CD88.stypo</string>\n      <key>blockOctant-1458</key>\n      <string>u1CD89</string>\n      <key>blockOctant-1458.stypo</key>\n      <string>u1CD89.stypo</string>\n      <key>blockOctant-2458</key>\n      <string>u1CD8A</string>\n      <key>blockOctant-2458.stypo</key>\n      <string>u1CD8A.stypo</string>\n      <key>blockOctant-12458</key>\n      <string>u1CD8B</string>\n      <key>blockOctant-12458.stypo</key>\n      <string>u1CD8B.stypo</string>\n      <key>blockOctant-3458</key>\n      <string>u1CD8C</string>\n      <key>blockOctant-3458.stypo</key>\n      <string>u1CD8C.stypo</string>\n      <key>blockOctant-13458</key>\n      <string>u1CD8D</string>\n      <key>blockOctant-13458.stypo</key>\n      <string>u1CD8D.stypo</string>\n      <key>blockOctant-23458</key>\n      <string>u1CD8E</string>\n      <key>blockOctant-23458.stypo</key>\n      <string>u1CD8E.stypo</string>\n      <key>blockOctant-123458</key>\n      <string>u1CD8F</string>\n      <key>blockOctant-123458.stypo</key>\n      <string>u1CD8F.stypo</string>\n      <key>blockOctant-168</key>\n      <string>u1CD90</string>\n      <key>blockOctant-168.stypo</key>\n      <string>u1CD90.stypo</string>\n      <key>blockOctant-268</key>\n      <string>u1CD91</string>\n      <key>blockOctant-268.stypo</key>\n      <string>u1CD91.stypo</string>\n      <key>blockOctant-1268</key>\n      <string>u1CD92</string>\n      <key>blockOctant-1268.stypo</key>\n      <string>u1CD92.stypo</string>\n      <key>blockOctant-368</key>\n      <string>u1CD93</string>\n      <key>blockOctant-368.stypo</key>\n      <string>u1CD93.stypo</string>\n      <key>blockOctant-2368</key>\n      <string>u1CD94</string>\n      <key>blockOctant-2368.stypo</key>\n      <string>u1CD94.stypo</string>\n      <key>blockOctant-12368</key>\n      <string>u1CD95</string>\n      <key>blockOctant-12368.stypo</key>\n      <string>u1CD95.stypo</string>\n      <key>blockOctant-468</key>\n      <string>u1CD96</string>\n      <key>blockOctant-468.stypo</key>\n      <string>u1CD96.stypo</string>\n      <key>blockOctant-1468</key>\n      <string>u1CD97</string>\n      <key>blockOctant-1468.stypo</key>\n      <string>u1CD97.stypo</string>\n      <key>blockOctant-12468</key>\n      <string>u1CD98</string>\n      <key>blockOctant-12468.stypo</key>\n      <string>u1CD98.stypo</string>\n      <key>blockOctant-3468</key>\n      <string>u1CD99</string>\n      <key>blockOctant-3468.stypo</key>\n      <string>u1CD99.stypo</string>\n      <key>blockOctant-13468</key>\n      <string>u1CD9A</string>\n      <key>blockOctant-13468.stypo</key>\n      <string>u1CD9A.stypo</string>\n      <key>blockOctant-23468</key>\n      <string>u1CD9B</string>\n      <key>blockOctant-23468.stypo</key>\n      <string>u1CD9B.stypo</string>\n      <key>blockOctant-568</key>\n      <string>u1CD9C</string>\n      <key>blockOctant-568.stypo</key>\n      <string>u1CD9C.stypo</string>\n      <key>blockOctant-1568</key>\n      <string>u1CD9D</string>\n      <key>blockOctant-1568.stypo</key>\n      <string>u1CD9D.stypo</string>\n      <key>blockOctant-2568</key>\n      <string>u1CD9E</string>\n      <key>blockOctant-2568.stypo</key>\n      <string>u1CD9E.stypo</string>\n      <key>blockOctant-12568</key>\n      <string>u1CD9F</string>\n      <key>blockOctant-12568.stypo</key>\n      <string>u1CD9F.stypo</string>\n      <key>blockOctant-3568</key>\n      <string>u1CDA0</string>\n      <key>blockOctant-3568.stypo</key>\n      <string>u1CDA0.stypo</string>\n      <key>blockOctant-13568</key>\n      <string>u1CDA1</string>\n      <key>blockOctant-13568.stypo</key>\n      <string>u1CDA1.stypo</string>\n      <key>blockOctant-23568</key>\n      <string>u1CDA2</string>\n      <key>blockOctant-23568.stypo</key>\n      <string>u1CDA2.stypo</string>\n      <key>blockOctant-123568</key>\n      <string>u1CDA3</string>\n      <key>blockOctant-123568.stypo</key>\n      <string>u1CDA3.stypo</string>\n      <key>blockOctant-4568</key>\n      <string>u1CDA4</string>\n      <key>blockOctant-4568.stypo</key>\n      <string>u1CDA4.stypo</string>\n      <key>blockOctant-14568</key>\n      <string>u1CDA5</string>\n      <key>blockOctant-14568.stypo</key>\n      <string>u1CDA5.stypo</string>\n      <key>blockOctant-24568</key>\n      <string>u1CDA6</string>\n      <key>blockOctant-24568.stypo</key>\n      <string>u1CDA6.stypo</string>\n      <key>blockOctant-124568</key>\n      <string>u1CDA7</string>\n      <key>blockOctant-124568.stypo</key>\n      <string>u1CDA7.stypo</string>\n      <key>blockOctant-34568</key>\n      <string>u1CDA8</string>\n      <key>blockOctant-34568.stypo</key>\n      <string>u1CDA8.stypo</string>\n      <key>blockOctant-134568</key>\n      <string>u1CDA9</string>\n      <key>blockOctant-134568.stypo</key>\n      <string>u1CDA9.stypo</string>\n      <key>blockOctant-234568</key>\n      <string>u1CDAA</string>\n      <key>blockOctant-234568.stypo</key>\n      <string>u1CDAA.stypo</string>\n      <key>blockOctant-1234568</key>\n      <string>u1CDAB</string>\n      <key>blockOctant-1234568.stypo</key>\n      <string>u1CDAB.stypo</string>\n      <key>blockOctant-178</key>\n      <string>u1CDAC</string>\n      <key>blockOctant-178.stypo</key>\n      <string>u1CDAC.stypo</string>\n      <key>blockOctant-278</key>\n      <string>u1CDAD</string>\n      <key>blockOctant-278.stypo</key>\n      <string>u1CDAD.stypo</string>\n      <key>blockOctant-1278</key>\n      <string>u1CDAE</string>\n      <key>blockOctant-1278.stypo</key>\n      <string>u1CDAE.stypo</string>\n      <key>blockOctant-378</key>\n      <string>u1CDAF</string>\n      <key>blockOctant-378.stypo</key>\n      <string>u1CDAF.stypo</string>\n      <key>blockOctant-1378</key>\n      <string>u1CDB0</string>\n      <key>blockOctant-1378.stypo</key>\n      <string>u1CDB0.stypo</string>\n      <key>blockOctant-2378</key>\n      <string>u1CDB1</string>\n      <key>blockOctant-2378.stypo</key>\n      <string>u1CDB1.stypo</string>\n      <key>blockOctant-12378</key>\n      <string>u1CDB2</string>\n      <key>blockOctant-12378.stypo</key>\n      <string>u1CDB2.stypo</string>\n      <key>blockOctant-478</key>\n      <string>u1CDB3</string>\n      <key>blockOctant-478.stypo</key>\n      <string>u1CDB3.stypo</string>\n      <key>blockOctant-1478</key>\n      <string>u1CDB4</string>\n      <key>blockOctant-1478.stypo</key>\n      <string>u1CDB4.stypo</string>\n      <key>blockOctant-2478</key>\n      <string>u1CDB5</string>\n      <key>blockOctant-2478.stypo</key>\n      <string>u1CDB5.stypo</string>\n      <key>blockOctant-12478</key>\n      <string>u1CDB6</string>\n      <key>blockOctant-12478.stypo</key>\n      <string>u1CDB6.stypo</string>\n      <key>blockOctant-3478</key>\n      <string>u1CDB7</string>\n      <key>blockOctant-3478.stypo</key>\n      <string>u1CDB7.stypo</string>\n      <key>blockOctant-13478</key>\n      <string>u1CDB8</string>\n      <key>blockOctant-13478.stypo</key>\n      <string>u1CDB8.stypo</string>\n      <key>blockOctant-23478</key>\n      <string>u1CDB9</string>\n      <key>blockOctant-23478.stypo</key>\n      <string>u1CDB9.stypo</string>\n      <key>blockOctant-123478</key>\n      <string>u1CDBA</string>\n      <key>blockOctant-123478.stypo</key>\n      <string>u1CDBA.stypo</string>\n      <key>blockOctant-578</key>\n      <string>u1CDBB</string>\n      <key>blockOctant-578.stypo</key>\n      <string>u1CDBB.stypo</string>\n      <key>blockOctant-1578</key>\n      <string>u1CDBC</string>\n      <key>blockOctant-1578.stypo</key>\n      <string>u1CDBC.stypo</string>\n      <key>blockOctant-2578</key>\n      <string>u1CDBD</string>\n      <key>blockOctant-2578.stypo</key>\n      <string>u1CDBD.stypo</string>\n      <key>blockOctant-12578</key>\n      <string>u1CDBE</string>\n      <key>blockOctant-12578.stypo</key>\n      <string>u1CDBE.stypo</string>\n      <key>blockOctant-3578</key>\n      <string>u1CDBF</string>\n      <key>blockOctant-3578.stypo</key>\n      <string>u1CDBF.stypo</string>\n      <key>blockOctant-13578</key>\n      <string>u1CDC0</string>\n      <key>blockOctant-13578.stypo</key>\n      <string>u1CDC0.stypo</string>\n      <key>blockOctant-23578</key>\n      <string>u1CDC1</string>\n      <key>blockOctant-23578.stypo</key>\n      <string>u1CDC1.stypo</string>\n      <key>blockOctant-123578</key>\n      <string>u1CDC2</string>\n      <key>blockOctant-123578.stypo</key>\n      <string>u1CDC2.stypo</string>\n      <key>blockOctant-4578</key>\n      <string>u1CDC3</string>\n      <key>blockOctant-4578.stypo</key>\n      <string>u1CDC3.stypo</string>\n      <key>blockOctant-14578</key>\n      <string>u1CDC4</string>\n      <key>blockOctant-14578.stypo</key>\n      <string>u1CDC4.stypo</string>\n      <key>blockOctant-24578</key>\n      <string>u1CDC5</string>\n      <key>blockOctant-24578.stypo</key>\n      <string>u1CDC5.stypo</string>\n      <key>blockOctant-124578</key>\n      <string>u1CDC6</string>\n      <key>blockOctant-124578.stypo</key>\n      <string>u1CDC6.stypo</string>\n      <key>blockOctant-34578</key>\n      <string>u1CDC7</string>\n      <key>blockOctant-34578.stypo</key>\n      <string>u1CDC7.stypo</string>\n      <key>blockOctant-134578</key>\n      <string>u1CDC8</string>\n      <key>blockOctant-134578.stypo</key>\n      <string>u1CDC8.stypo</string>\n      <key>blockOctant-234578</key>\n      <string>u1CDC9</string>\n      <key>blockOctant-234578.stypo</key>\n      <string>u1CDC9.stypo</string>\n      <key>blockOctant-1234578</key>\n      <string>u1CDCA</string>\n      <key>blockOctant-1234578.stypo</key>\n      <string>u1CDCA.stypo</string>\n      <key>blockOctant-678</key>\n      <string>u1CDCB</string>\n      <key>blockOctant-678.stypo</key>\n      <string>u1CDCB.stypo</string>\n      <key>blockOctant-1678</key>\n      <string>u1CDCC</string>\n      <key>blockOctant-1678.stypo</key>\n      <string>u1CDCC.stypo</string>\n      <key>blockOctant-2678</key>\n      <string>u1CDCD</string>\n      <key>blockOctant-2678.stypo</key>\n      <string>u1CDCD.stypo</string>\n      <key>blockOctant-12678</key>\n      <string>u1CDCE</string>\n      <key>blockOctant-12678.stypo</key>\n      <string>u1CDCE.stypo</string>\n      <key>blockOctant-3678</key>\n      <string>u1CDCF</string>\n      <key>blockOctant-3678.stypo</key>\n      <string>u1CDCF.stypo</string>\n      <key>blockOctant-13678</key>\n      <string>u1CDD0</string>\n      <key>blockOctant-13678.stypo</key>\n      <string>u1CDD0.stypo</string>\n      <key>blockOctant-23678</key>\n      <string>u1CDD1</string>\n      <key>blockOctant-23678.stypo</key>\n      <string>u1CDD1.stypo</string>\n      <key>blockOctant-123678</key>\n      <string>u1CDD2</string>\n      <key>blockOctant-123678.stypo</key>\n      <string>u1CDD2.stypo</string>\n      <key>blockOctant-4678</key>\n      <string>u1CDD3</string>\n      <key>blockOctant-4678.stypo</key>\n      <string>u1CDD3.stypo</string>\n      <key>blockOctant-14678</key>\n      <string>u1CDD4</string>\n      <key>blockOctant-14678.stypo</key>\n      <string>u1CDD4.stypo</string>\n      <key>blockOctant-24678</key>\n      <string>u1CDD5</string>\n      <key>blockOctant-24678.stypo</key>\n      <string>u1CDD5.stypo</string>\n      <key>blockOctant-124678</key>\n      <string>u1CDD6</string>\n      <key>blockOctant-124678.stypo</key>\n      <string>u1CDD6.stypo</string>\n      <key>blockOctant-34678</key>\n      <string>u1CDD7</string>\n      <key>blockOctant-34678.stypo</key>\n      <string>u1CDD7.stypo</string>\n      <key>blockOctant-134678</key>\n      <string>u1CDD8</string>\n      <key>blockOctant-134678.stypo</key>\n      <string>u1CDD8.stypo</string>\n      <key>blockOctant-234678</key>\n      <string>u1CDD9</string>\n      <key>blockOctant-234678.stypo</key>\n      <string>u1CDD9.stypo</string>\n      <key>blockOctant-1234678</key>\n      <string>u1CDDA</string>\n      <key>blockOctant-1234678.stypo</key>\n      <string>u1CDDA.stypo</string>\n      <key>blockOctant-15678</key>\n      <string>u1CDDB</string>\n      <key>blockOctant-15678.stypo</key>\n      <string>u1CDDB.stypo</string>\n      <key>blockOctant-25678</key>\n      <string>u1CDDC</string>\n      <key>blockOctant-25678.stypo</key>\n      <string>u1CDDC.stypo</string>\n      <key>blockOctant-125678</key>\n      <string>u1CDDD</string>\n      <key>blockOctant-125678.stypo</key>\n      <string>u1CDDD.stypo</string>\n      <key>blockOctant-35678</key>\n      <string>u1CDDE</string>\n      <key>blockOctant-35678.stypo</key>\n      <string>u1CDDE.stypo</string>\n      <key>blockOctant-235678</key>\n      <string>u1CDDF</string>\n      <key>blockOctant-235678.stypo</key>\n      <string>u1CDDF.stypo</string>\n      <key>blockOctant-1235678</key>\n      <string>u1CDE0</string>\n      <key>blockOctant-1235678.stypo</key>\n      <string>u1CDE0.stypo</string>\n      <key>blockOctant-45678</key>\n      <string>u1CDE1</string>\n      <key>blockOctant-45678.stypo</key>\n      <string>u1CDE1.stypo</string>\n      <key>blockOctant-145678</key>\n      <string>u1CDE2</string>\n      <key>blockOctant-145678.stypo</key>\n      <string>u1CDE2.stypo</string>\n      <key>blockOctant-1245678</key>\n      <string>u1CDE3</string>\n      <key>blockOctant-1245678.stypo</key>\n      <string>u1CDE3.stypo</string>\n      <key>blockOctant-1345678</key>\n      <string>u1CDE4</string>\n      <key>blockOctant-1345678.stypo</key>\n      <string>u1CDE4.stypo</string>\n      <key>blockOctant-2345678</key>\n      <string>u1CDE5</string>\n      <key>blockOctant-2345678.stypo</key>\n      <string>u1CDE5.stypo</string>\n      <key>blockSedecimant-1</key>\n      <string>u1CE90</string>\n      <key>blockSedecimant-1.stypo</key>\n      <string>u1CE90.stypo</string>\n      <key>blockSedecimant-2</key>\n      <string>u1CE91</string>\n      <key>blockSedecimant-2.stypo</key>\n      <string>u1CE91.stypo</string>\n      <key>blockSedecimant-3</key>\n      <string>u1CE92</string>\n      <key>blockSedecimant-3.stypo</key>\n      <string>u1CE92.stypo</string>\n      <key>blockSedecimant-4</key>\n      <string>u1CE93</string>\n      <key>blockSedecimant-4.stypo</key>\n      <string>u1CE93.stypo</string>\n      <key>blockSedecimant-5</key>\n      <string>u1CE94</string>\n      <key>blockSedecimant-5.stypo</key>\n      <string>u1CE94.stypo</string>\n      <key>blockSedecimant-6</key>\n      <string>u1CE95</string>\n      <key>blockSedecimant-6.stypo</key>\n      <string>u1CE95.stypo</string>\n      <key>blockSedecimant-7</key>\n      <string>u1CE96</string>\n      <key>blockSedecimant-7.stypo</key>\n      <string>u1CE96.stypo</string>\n      <key>blockSedecimant-8</key>\n      <string>u1CE97</string>\n      <key>blockSedecimant-8.stypo</key>\n      <string>u1CE97.stypo</string>\n      <key>blockSedecimant-9</key>\n      <string>u1CE98</string>\n      <key>blockSedecimant-9.stypo</key>\n      <string>u1CE98.stypo</string>\n      <key>blockSedecimant-A</key>\n      <string>u1CE99</string>\n      <key>blockSedecimant-A.stypo</key>\n      <string>u1CE99.stypo</string>\n      <key>blockSedecimant-B</key>\n      <string>u1CE9A</string>\n      <key>blockSedecimant-B.stypo</key>\n      <string>u1CE9A.stypo</string>\n      <key>blockSedecimant-C</key>\n      <string>u1CE9B</string>\n      <key>blockSedecimant-C.stypo</key>\n      <string>u1CE9B.stypo</string>\n      <key>blockSedecimant-D</key>\n      <string>u1CE9C</string>\n      <key>blockSedecimant-D.stypo</key>\n      <string>u1CE9C.stypo</string>\n      <key>blockSedecimant-E</key>\n      <string>u1CE9D</string>\n      <key>blockSedecimant-E.stypo</key>\n      <string>u1CE9D.stypo</string>\n      <key>blockSedecimant-F</key>\n      <string>u1CE9E</string>\n      <key>blockSedecimant-F.stypo</key>\n      <string>u1CE9E.stypo</string>\n      <key>blockSedecimant-G</key>\n      <string>u1CE9F</string>\n      <key>blockSedecimant-G.stypo</key>\n      <string>u1CE9F.stypo</string>\n      <key>blockSedecimant-EFG</key>\n      <string>u1CEA1</string>\n      <key>blockSedecimant-EFG.stypo</key>\n      <string>u1CEA1.stypo</string>\n      <key>blockSedecimant-DEF</key>\n      <string>u1CEA2</string>\n      <key>blockSedecimant-DEF.stypo</key>\n      <string>u1CEA2.stypo</string>\n      <key>blockSedecimant-9D</key>\n      <string>u1CEA4</string>\n      <key>blockSedecimant-9D.stypo</key>\n      <string>u1CEA4.stypo</string>\n      <key>blockSedecimant-59D</key>\n      <string>u1CEA5</string>\n      <key>blockSedecimant-59D.stypo</key>\n      <string>u1CEA5.stypo</string>\n      <key>blockSedecimant-159</key>\n      <string>u1CEA6</string>\n      <key>blockSedecimant-159.stypo</key>\n      <string>u1CEA6.stypo</string>\n      <key>blockSedecimant-15</key>\n      <string>u1CEA7</string>\n      <key>blockSedecimant-15.stypo</key>\n      <string>u1CEA7.stypo</string>\n      <key>blockSedecimant-123</key>\n      <string>u1CEA9</string>\n      <key>blockSedecimant-123.stypo</key>\n      <string>u1CEA9.stypo</string>\n      <key>blockSedecimant-234</key>\n      <string>u1CEAA</string>\n      <key>blockSedecimant-234.stypo</key>\n      <string>u1CEAA.stypo</string>\n      <key>blockSedecimant-48</key>\n      <string>u1CEAC</string>\n      <key>blockSedecimant-48.stypo</key>\n      <string>u1CEAC.stypo</string>\n      <key>blockSedecimant-48C</key>\n      <string>u1CEAD</string>\n      <key>blockSedecimant-48C.stypo</key>\n      <string>u1CEAD.stypo</string>\n      <key>blockSedecimant-8CG</key>\n      <string>u1CEAE</string>\n      <key>blockSedecimant-8CG.stypo</key>\n      <string>u1CEAE.stypo</string>\n      <key>blockSedecimant-CG</key>\n      <string>u1CEAF</string>\n      <key>blockSedecimant-CG.stypo</key>\n      <string>u1CEAF.stypo</string>\n      <key>verticalOneEighthBlock-2</key>\n      <string>u1FB70</string>\n      <key>verticalOneEighthBlock-2.stypo</key>\n      <string>u1FB70.stypo</string>\n      <key>verticalOneEighthBlock-3</key>\n      <string>u1FB71</string>\n      <key>verticalOneEighthBlock-3.stypo</key>\n      <string>u1FB71.stypo</string>\n      <key>verticalOneEighthBlock-4</key>\n      <string>u1FB72</string>\n      <key>verticalOneEighthBlock-4.stypo</key>\n      <string>u1FB72.stypo</string>\n      <key>verticalOneEighthBlock-5</key>\n      <string>u1FB73</string>\n      <key>verticalOneEighthBlock-5.stypo</key>\n      <string>u1FB73.stypo</string>\n      <key>verticalOneEighthBlock-6</key>\n      <string>u1FB74</string>\n      <key>verticalOneEighthBlock-6.stypo</key>\n      <string>u1FB74.stypo</string>\n      <key>verticalOneEighthBlock-7</key>\n      <string>u1FB75</string>\n      <key>verticalOneEighthBlock-7.stypo</key>\n      <string>u1FB75.stypo</string>\n      <key>horizontalOneEightBlock-2</key>\n      <string>u1FB76</string>\n      <key>horizontalOneEightBlock-2.stypo</key>\n      <string>u1FB76.stypo</string>\n      <key>horizontalOneEightBlock-3</key>\n      <string>u1FB77</string>\n      <key>horizontalOneEightBlock-3.stypo</key>\n      <string>u1FB77.stypo</string>\n      <key>horizontalOneEightBlock-4</key>\n      <string>u1FB78</string>\n      <key>horizontalOneEightBlock-4.stypo</key>\n      <string>u1FB78.stypo</string>\n      <key>horizontalOneEightBlock-5</key>\n      <string>u1FB79</string>\n      <key>horizontalOneEightBlock-5.stypo</key>\n      <string>u1FB79.stypo</string>\n      <key>horizontalOneEightBlock-6</key>\n      <string>u1FB7A</string>\n      <key>horizontalOneEightBlock-6.stypo</key>\n      <string>u1FB7A.stypo</string>\n      <key>horizontalOneEightBlock-7</key>\n      <string>u1FB7B</string>\n      <key>horizontalOneEightBlock-7.stypo</key>\n      <string>u1FB7B.stypo</string>\n      <key>leftAndLowerOneEightBlock</key>\n      <string>u1FB7C</string>\n      <key>leftAndLowerOneEightBlock.stypo</key>\n      <string>u1FB7C.stypo</string>\n      <key>leftAndUpperOneEightBlock</key>\n      <string>u1FB7D</string>\n      <key>leftAndUpperOneEightBlock.stypo</key>\n      <string>u1FB7D.stypo</string>\n      <key>rightAndUpperOneEightBlock</key>\n      <string>u1FB7E</string>\n      <key>rightAndUpperOneEightBlock.stypo</key>\n      <string>u1FB7E.stypo</string>\n      <key>rightAndLowerOneEightBlock</key>\n      <string>u1FB7F</string>\n      <key>rightAndLowerOneEightBlock.stypo</key>\n      <string>u1FB7F.stypo</string>\n      <key>upperAndLowerOneEightBlock</key>\n      <string>u1FB80</string>\n      <key>upperAndLowerOneEightBlock.stypo</key>\n      <string>u1FB80.stypo</string>\n      <key>upperThreeEighthsBlock</key>\n      <string>u1FB83</string>\n      <key>upperThreeEighthsBlock.stypo</key>\n      <string>u1FB83.stypo</string>\n      <key>upperFiveEighthsBlock</key>\n      <string>u1FB84</string>\n      <key>upperFiveEighthsBlock.stypo</key>\n      <string>u1FB84.stypo</string>\n      <key>upperSevenEighthsBlock</key>\n      <string>u1FB86</string>\n      <key>upperSevenEighthsBlock.stypo</key>\n      <string>u1FB86.stypo</string>\n      <key>rightOneQuarterBlock</key>\n      <string>u1FB87</string>\n      <key>rightOneQuarterBlock.stypo</key>\n      <string>u1FB87.stypo</string>\n      <key>rightThreeEighthsBlock</key>\n      <string>u1FB88</string>\n      <key>rightThreeEighthsBlock.stypo</key>\n      <string>u1FB88.stypo</string>\n      <key>rightFiveEighthsBlock</key>\n      <string>u1FB89</string>\n      <key>rightFiveEighthsBlock.stypo</key>\n      <string>u1FB89.stypo</string>\n      <key>rightThreeQuartersBlock</key>\n      <string>u1FB8A</string>\n      <key>rightThreeQuartersBlock.stypo</key>\n      <string>u1FB8A.stypo</string>\n      <key>rightSevenEighthsBlock</key>\n      <string>u1FB8B</string>\n      <key>rightSevenEighthsBlock.stypo</key>\n      <string>u1FB8B.stypo</string>\n      <key>leftTwoThirdsBlock</key>\n      <string>u1FBCE</string>\n      <key>leftTwoThirdsBlock.stypo</key>\n      <string>u1FBCE.stypo</string>\n      <key>leftOneThirdBlock</key>\n      <string>u1FBCF</string>\n      <key>leftOneThirdBlock.stypo</key>\n      <string>u1FBCF.stypo</string>\n      <key>heavyHorizontalFill</key>\n      <string>u1FB97</string>\n      <key>heavyHorizontalFill.stypo</key>\n      <string>u1FB97.stypo</string>\n      <key>blockSeparatedQuadrant-1</key>\n      <string>u1CC21</string>\n      <key>blockSeparatedQuadrant-1.stypo</key>\n      <string>u1CC21.stypo</string>\n      <key>blockSeparatedQuadrant-2</key>\n      <string>u1CC22</string>\n      <key>blockSeparatedQuadrant-2.stypo</key>\n      <string>u1CC22.stypo</string>\n      <key>blockSeparatedQuadrant-12</key>\n      <string>u1CC23</string>\n      <key>blockSeparatedQuadrant-12.stypo</key>\n      <string>u1CC23.stypo</string>\n      <key>blockSeparatedQuadrant-3</key>\n      <string>u1CC24</string>\n      <key>blockSeparatedQuadrant-3.stypo</key>\n      <string>u1CC24.stypo</string>\n      <key>blockSeparatedQuadrant-13</key>\n      <string>u1CC25</string>\n      <key>blockSeparatedQuadrant-13.stypo</key>\n      <string>u1CC25.stypo</string>\n      <key>blockSeparatedQuadrant-23</key>\n      <string>u1CC26</string>\n      <key>blockSeparatedQuadrant-23.stypo</key>\n      <string>u1CC26.stypo</string>\n      <key>blockSeparatedQuadrant-123</key>\n      <string>u1CC27</string>\n      <key>blockSeparatedQuadrant-123.stypo</key>\n      <string>u1CC27.stypo</string>\n      <key>blockSeparatedQuadrant-4</key>\n      <string>u1CC28</string>\n      <key>blockSeparatedQuadrant-4.stypo</key>\n      <string>u1CC28.stypo</string>\n      <key>blockSeparatedQuadrant-14</key>\n      <string>u1CC29</string>\n      <key>blockSeparatedQuadrant-14.stypo</key>\n      <string>u1CC29.stypo</string>\n      <key>blockSeparatedQuadrant-24</key>\n      <string>u1CC2A</string>\n      <key>blockSeparatedQuadrant-24.stypo</key>\n      <string>u1CC2A.stypo</string>\n      <key>blockSeparatedQuadrant-124</key>\n      <string>u1CC2B</string>\n      <key>blockSeparatedQuadrant-124.stypo</key>\n      <string>u1CC2B.stypo</string>\n      <key>blockSeparatedQuadrant-34</key>\n      <string>u1CC2C</string>\n      <key>blockSeparatedQuadrant-34.stypo</key>\n      <string>u1CC2C.stypo</string>\n      <key>blockSeparatedQuadrant-134</key>\n      <string>u1CC2D</string>\n      <key>blockSeparatedQuadrant-134.stypo</key>\n      <string>u1CC2D.stypo</string>\n      <key>blockSeparatedQuadrant-234</key>\n      <string>u1CC2E</string>\n      <key>blockSeparatedQuadrant-234.stypo</key>\n      <string>u1CC2E.stypo</string>\n      <key>blockSeparatedQuadrant-1234</key>\n      <string>u1CC2F</string>\n      <key>blockSeparatedQuadrant-1234.stypo</key>\n      <string>u1CC2F.stypo</string>\n      <key>blockSeparatedSextant-1</key>\n      <string>u1CE51</string>\n      <key>blockSeparatedSextant-1.stypo</key>\n      <string>u1CE51.stypo</string>\n      <key>blockSeparatedSextant-2</key>\n      <string>u1CE52</string>\n      <key>blockSeparatedSextant-2.stypo</key>\n      <string>u1CE52.stypo</string>\n      <key>blockSeparatedSextant-12</key>\n      <string>u1CE53</string>\n      <key>blockSeparatedSextant-12.stypo</key>\n      <string>u1CE53.stypo</string>\n      <key>blockSeparatedSextant-3</key>\n      <string>u1CE54</string>\n      <key>blockSeparatedSextant-3.stypo</key>\n      <string>u1CE54.stypo</string>\n      <key>blockSeparatedSextant-13</key>\n      <string>u1CE55</string>\n      <key>blockSeparatedSextant-13.stypo</key>\n      <string>u1CE55.stypo</string>\n      <key>blockSeparatedSextant-23</key>\n      <string>u1CE56</string>\n      <key>blockSeparatedSextant-23.stypo</key>\n      <string>u1CE56.stypo</string>\n      <key>blockSeparatedSextant-123</key>\n      <string>u1CE57</string>\n      <key>blockSeparatedSextant-123.stypo</key>\n      <string>u1CE57.stypo</string>\n      <key>blockSeparatedSextant-4</key>\n      <string>u1CE58</string>\n      <key>blockSeparatedSextant-4.stypo</key>\n      <string>u1CE58.stypo</string>\n      <key>blockSeparatedSextant-14</key>\n      <string>u1CE59</string>\n      <key>blockSeparatedSextant-14.stypo</key>\n      <string>u1CE59.stypo</string>\n      <key>blockSeparatedSextant-24</key>\n      <string>u1CE5A</string>\n      <key>blockSeparatedSextant-24.stypo</key>\n      <string>u1CE5A.stypo</string>\n      <key>blockSeparatedSextant-124</key>\n      <string>u1CE5B</string>\n      <key>blockSeparatedSextant-124.stypo</key>\n      <string>u1CE5B.stypo</string>\n      <key>blockSeparatedSextant-34</key>\n      <string>u1CE5C</string>\n      <key>blockSeparatedSextant-34.stypo</key>\n      <string>u1CE5C.stypo</string>\n      <key>blockSeparatedSextant-134</key>\n      <string>u1CE5D</string>\n      <key>blockSeparatedSextant-134.stypo</key>\n      <string>u1CE5D.stypo</string>\n      <key>blockSeparatedSextant-234</key>\n      <string>u1CE5E</string>\n      <key>blockSeparatedSextant-234.stypo</key>\n      <string>u1CE5E.stypo</string>\n      <key>blockSeparatedSextant-1234</key>\n      <string>u1CE5F</string>\n      <key>blockSeparatedSextant-1234.stypo</key>\n      <string>u1CE5F.stypo</string>\n      <key>blockSeparatedSextant-5</key>\n      <string>u1CE60</string>\n      <key>blockSeparatedSextant-5.stypo</key>\n      <string>u1CE60.stypo</string>\n      <key>blockSeparatedSextant-15</key>\n      <string>u1CE61</string>\n      <key>blockSeparatedSextant-15.stypo</key>\n      <string>u1CE61.stypo</string>\n      <key>blockSeparatedSextant-25</key>\n      <string>u1CE62</string>\n      <key>blockSeparatedSextant-25.stypo</key>\n      <string>u1CE62.stypo</string>\n      <key>blockSeparatedSextant-125</key>\n      <string>u1CE63</string>\n      <key>blockSeparatedSextant-125.stypo</key>\n      <string>u1CE63.stypo</string>\n      <key>blockSeparatedSextant-35</key>\n      <string>u1CE64</string>\n      <key>blockSeparatedSextant-35.stypo</key>\n      <string>u1CE64.stypo</string>\n      <key>blockSeparatedSextant-135</key>\n      <string>u1CE65</string>\n      <key>blockSeparatedSextant-135.stypo</key>\n      <string>u1CE65.stypo</string>\n      <key>blockSeparatedSextant-235</key>\n      <string>u1CE66</string>\n      <key>blockSeparatedSextant-235.stypo</key>\n      <string>u1CE66.stypo</string>\n      <key>blockSeparatedSextant-1235</key>\n      <string>u1CE67</string>\n      <key>blockSeparatedSextant-1235.stypo</key>\n      <string>u1CE67.stypo</string>\n      <key>blockSeparatedSextant-45</key>\n      <string>u1CE68</string>\n      <key>blockSeparatedSextant-45.stypo</key>\n      <string>u1CE68.stypo</string>\n      <key>blockSeparatedSextant-145</key>\n      <string>u1CE69</string>\n      <key>blockSeparatedSextant-145.stypo</key>\n      <string>u1CE69.stypo</string>\n      <key>blockSeparatedSextant-245</key>\n      <string>u1CE6A</string>\n      <key>blockSeparatedSextant-245.stypo</key>\n      <string>u1CE6A.stypo</string>\n      <key>blockSeparatedSextant-1245</key>\n      <string>u1CE6B</string>\n      <key>blockSeparatedSextant-1245.stypo</key>\n      <string>u1CE6B.stypo</string>\n      <key>blockSeparatedSextant-345</key>\n      <string>u1CE6C</string>\n      <key>blockSeparatedSextant-345.stypo</key>\n      <string>u1CE6C.stypo</string>\n      <key>blockSeparatedSextant-1345</key>\n      <string>u1CE6D</string>\n      <key>blockSeparatedSextant-1345.stypo</key>\n      <string>u1CE6D.stypo</string>\n      <key>blockSeparatedSextant-2345</key>\n      <string>u1CE6E</string>\n      <key>blockSeparatedSextant-2345.stypo</key>\n      <string>u1CE6E.stypo</string>\n      <key>blockSeparatedSextant-12345</key>\n      <string>u1CE6F</string>\n      <key>blockSeparatedSextant-12345.stypo</key>\n      <string>u1CE6F.stypo</string>\n      <key>blockSeparatedSextant-6</key>\n      <string>u1CE70</string>\n      <key>blockSeparatedSextant-6.stypo</key>\n      <string>u1CE70.stypo</string>\n      <key>blockSeparatedSextant-16</key>\n      <string>u1CE71</string>\n      <key>blockSeparatedSextant-16.stypo</key>\n      <string>u1CE71.stypo</string>\n      <key>blockSeparatedSextant-26</key>\n      <string>u1CE72</string>\n      <key>blockSeparatedSextant-26.stypo</key>\n      <string>u1CE72.stypo</string>\n      <key>blockSeparatedSextant-126</key>\n      <string>u1CE73</string>\n      <key>blockSeparatedSextant-126.stypo</key>\n      <string>u1CE73.stypo</string>\n      <key>blockSeparatedSextant-36</key>\n      <string>u1CE74</string>\n      <key>blockSeparatedSextant-36.stypo</key>\n      <string>u1CE74.stypo</string>\n      <key>blockSeparatedSextant-136</key>\n      <string>u1CE75</string>\n      <key>blockSeparatedSextant-136.stypo</key>\n      <string>u1CE75.stypo</string>\n      <key>blockSeparatedSextant-236</key>\n      <string>u1CE76</string>\n      <key>blockSeparatedSextant-236.stypo</key>\n      <string>u1CE76.stypo</string>\n      <key>blockSeparatedSextant-1236</key>\n      <string>u1CE77</string>\n      <key>blockSeparatedSextant-1236.stypo</key>\n      <string>u1CE77.stypo</string>\n      <key>blockSeparatedSextant-46</key>\n      <string>u1CE78</string>\n      <key>blockSeparatedSextant-46.stypo</key>\n      <string>u1CE78.stypo</string>\n      <key>blockSeparatedSextant-146</key>\n      <string>u1CE79</string>\n      <key>blockSeparatedSextant-146.stypo</key>\n      <string>u1CE79.stypo</string>\n      <key>blockSeparatedSextant-246</key>\n      <string>u1CE7A</string>\n      <key>blockSeparatedSextant-246.stypo</key>\n      <string>u1CE7A.stypo</string>\n      <key>blockSeparatedSextant-1246</key>\n      <string>u1CE7B</string>\n      <key>blockSeparatedSextant-1246.stypo</key>\n      <string>u1CE7B.stypo</string>\n      <key>blockSeparatedSextant-346</key>\n      <string>u1CE7C</string>\n      <key>blockSeparatedSextant-346.stypo</key>\n      <string>u1CE7C.stypo</string>\n      <key>blockSeparatedSextant-1346</key>\n      <string>u1CE7D</string>\n      <key>blockSeparatedSextant-1346.stypo</key>\n      <string>u1CE7D.stypo</string>\n      <key>blockSeparatedSextant-2346</key>\n      <string>u1CE7E</string>\n      <key>blockSeparatedSextant-2346.stypo</key>\n      <string>u1CE7E.stypo</string>\n      <key>blockSeparatedSextant-12346</key>\n      <string>u1CE7F</string>\n      <key>blockSeparatedSextant-12346.stypo</key>\n      <string>u1CE7F.stypo</string>\n      <key>blockSeparatedSextant-56</key>\n      <string>u1CE80</string>\n      <key>blockSeparatedSextant-56.stypo</key>\n      <string>u1CE80.stypo</string>\n      <key>blockSeparatedSextant-156</key>\n      <string>u1CE81</string>\n      <key>blockSeparatedSextant-156.stypo</key>\n      <string>u1CE81.stypo</string>\n      <key>blockSeparatedSextant-256</key>\n      <string>u1CE82</string>\n      <key>blockSeparatedSextant-256.stypo</key>\n      <string>u1CE82.stypo</string>\n      <key>blockSeparatedSextant-1256</key>\n      <string>u1CE83</string>\n      <key>blockSeparatedSextant-1256.stypo</key>\n      <string>u1CE83.stypo</string>\n      <key>blockSeparatedSextant-356</key>\n      <string>u1CE84</string>\n      <key>blockSeparatedSextant-356.stypo</key>\n      <string>u1CE84.stypo</string>\n      <key>blockSeparatedSextant-1356</key>\n      <string>u1CE85</string>\n      <key>blockSeparatedSextant-1356.stypo</key>\n      <string>u1CE85.stypo</string>\n      <key>blockSeparatedSextant-2356</key>\n      <string>u1CE86</string>\n      <key>blockSeparatedSextant-2356.stypo</key>\n      <string>u1CE86.stypo</string>\n      <key>blockSeparatedSextant-12356</key>\n      <string>u1CE87</string>\n      <key>blockSeparatedSextant-12356.stypo</key>\n      <string>u1CE87.stypo</string>\n      <key>blockSeparatedSextant-456</key>\n      <string>u1CE88</string>\n      <key>blockSeparatedSextant-456.stypo</key>\n      <string>u1CE88.stypo</string>\n      <key>blockSeparatedSextant-1456</key>\n      <string>u1CE89</string>\n      <key>blockSeparatedSextant-1456.stypo</key>\n      <string>u1CE89.stypo</string>\n      <key>blockSeparatedSextant-2456</key>\n      <string>u1CE8A</string>\n      <key>blockSeparatedSextant-2456.stypo</key>\n      <string>u1CE8A.stypo</string>\n      <key>blockSeparatedSextant-12456</key>\n      <string>u1CE8B</string>\n      <key>blockSeparatedSextant-12456.stypo</key>\n      <string>u1CE8B.stypo</string>\n      <key>blockSeparatedSextant-3456</key>\n      <string>u1CE8C</string>\n      <key>blockSeparatedSextant-3456.stypo</key>\n      <string>u1CE8C.stypo</string>\n      <key>blockSeparatedSextant-13456</key>\n      <string>u1CE8D</string>\n      <key>blockSeparatedSextant-13456.stypo</key>\n      <string>u1CE8D.stypo</string>\n      <key>blockSeparatedSextant-23456</key>\n      <string>u1CE8E</string>\n      <key>blockSeparatedSextant-23456.stypo</key>\n      <string>u1CE8E.stypo</string>\n      <key>blockSeparatedSextant-123456</key>\n      <string>u1CE8F</string>\n      <key>blockSeparatedSextant-123456.stypo</key>\n      <string>u1CE8F.stypo</string>\n      <key>segmentedDigit0</key>\n      <string>u1FBF0</string>\n      <key>segmentedDigit1</key>\n      <string>u1FBF1</string>\n      <key>segmentedDigit2</key>\n      <string>u1FBF2</string>\n      <key>segmentedDigit3</key>\n      <string>u1FBF3</string>\n      <key>segmentedDigit4</key>\n      <string>u1FBF4</string>\n      <key>segmentedDigit5</key>\n      <string>u1FBF5</string>\n      <key>segmentedDigit6</key>\n      <string>u1FBF6</string>\n      <key>segmentedDigit7</key>\n      <string>u1FBF7</string>\n      <key>segmentedDigit8</key>\n      <string>u1FBF8</string>\n      <key>segmentedDigit9</key>\n      <string>u1FBF9</string>\n      <key>largeType-1CE1A</key>\n      <string>u1CE1A</string>\n      <key>largeType-1CE1A.stypo</key>\n      <string>u1CE1A.stypo</string>\n      <key>largeType-1CE1B</key>\n      <string>u1CE1B</string>\n      <key>largeType-1CE1B.stypo</key>\n      <string>u1CE1B.stypo</string>\n      <key>largeType-1CE1C</key>\n      <string>u1CE1C</string>\n      <key>largeType-1CE1C.stypo</key>\n      <string>u1CE1C.stypo</string>\n      <key>largeType-1CE1D</key>\n      <string>u1CE1D</string>\n      <key>largeType-1CE1D.stypo</key>\n      <string>u1CE1D.stypo</string>\n      <key>largeType-1CE1E</key>\n      <string>u1CE1E</string>\n      <key>largeType-1CE1E.stypo</key>\n      <string>u1CE1E.stypo</string>\n      <key>largeType-1CE1F</key>\n      <string>u1CE1F</string>\n      <key>largeType-1CE1F.stypo</key>\n      <string>u1CE1F.stypo</string>\n      <key>largeType-1CE20</key>\n      <string>u1CE20</string>\n      <key>largeType-1CE20.stypo</key>\n      <string>u1CE20.stypo</string>\n      <key>largeType-1CE21</key>\n      <string>u1CE21</string>\n      <key>largeType-1CE21.stypo</key>\n      <string>u1CE21.stypo</string>\n      <key>largeType-1CE22</key>\n      <string>u1CE22</string>\n      <key>largeType-1CE22.stypo</key>\n      <string>u1CE22.stypo</string>\n      <key>largeType-1CE23</key>\n      <string>u1CE23</string>\n      <key>largeType-1CE23.stypo</key>\n      <string>u1CE23.stypo</string>\n      <key>largeType-1CE24</key>\n      <string>u1CE24</string>\n      <key>largeType-1CE24.stypo</key>\n      <string>u1CE24.stypo</string>\n      <key>largeType-1CE25</key>\n      <string>u1CE25</string>\n      <key>largeType-1CE25.stypo</key>\n      <string>u1CE25.stypo</string>\n      <key>largeType-1CE26</key>\n      <string>u1CE26</string>\n      <key>largeType-1CE26.stypo</key>\n      <string>u1CE26.stypo</string>\n      <key>largeType-1CE27</key>\n      <string>u1CE27</string>\n      <key>largeType-1CE27.stypo</key>\n      <string>u1CE27.stypo</string>\n      <key>largeType-1CE28</key>\n      <string>u1CE28</string>\n      <key>largeType-1CE28.stypo</key>\n      <string>u1CE28.stypo</string>\n      <key>largeType-1CE29</key>\n      <string>u1CE29</string>\n      <key>largeType-1CE29.stypo</key>\n      <string>u1CE29.stypo</string>\n      <key>largeType-1CE2A</key>\n      <string>u1CE2A</string>\n      <key>largeType-1CE2A.stypo</key>\n      <string>u1CE2A.stypo</string>\n      <key>largeType-1CE2B</key>\n      <string>u1CE2B</string>\n      <key>largeType-1CE2B.stypo</key>\n      <string>u1CE2B.stypo</string>\n      <key>largeType-1CE2C</key>\n      <string>u1CE2C</string>\n      <key>largeType-1CE2C.stypo</key>\n      <string>u1CE2C.stypo</string>\n      <key>largeType-1CE2D</key>\n      <string>u1CE2D</string>\n      <key>largeType-1CE2D.stypo</key>\n      <string>u1CE2D.stypo</string>\n      <key>largeType-1CE2E</key>\n      <string>u1CE2E</string>\n      <key>largeType-1CE2E.stypo</key>\n      <string>u1CE2E.stypo</string>\n      <key>largeType-1CE2F</key>\n      <string>u1CE2F</string>\n      <key>largeType-1CE2F.stypo</key>\n      <string>u1CE2F.stypo</string>\n      <key>largeType-1CE30</key>\n      <string>u1CE30</string>\n      <key>largeType-1CE30.stypo</key>\n      <string>u1CE30.stypo</string>\n      <key>largeType-1CE31</key>\n      <string>u1CE31</string>\n      <key>largeType-1CE31.stypo</key>\n      <string>u1CE31.stypo</string>\n      <key>largeType-1CE32</key>\n      <string>u1CE32</string>\n      <key>largeType-1CE32.stypo</key>\n      <string>u1CE32.stypo</string>\n      <key>largeType-1CE33</key>\n      <string>u1CE33</string>\n      <key>largeType-1CE33.stypo</key>\n      <string>u1CE33.stypo</string>\n      <key>largeType-1CE34</key>\n      <string>u1CE34</string>\n      <key>largeType-1CE34.stypo</key>\n      <string>u1CE34.stypo</string>\n      <key>largeType-1CE35</key>\n      <string>u1CE35</string>\n      <key>largeType-1CE35.stypo</key>\n      <string>u1CE35.stypo</string>\n      <key>largeType-1CE36</key>\n      <string>u1CE36</string>\n      <key>largeType-1CE36.stypo</key>\n      <string>u1CE36.stypo</string>\n      <key>largeType-1CE37</key>\n      <string>u1CE37</string>\n      <key>largeType-1CE37.stypo</key>\n      <string>u1CE37.stypo</string>\n      <key>largeType-1CE38</key>\n      <string>u1CE38</string>\n      <key>largeType-1CE38.stypo</key>\n      <string>u1CE38.stypo</string>\n      <key>largeType-1CE39</key>\n      <string>u1CE39</string>\n      <key>largeType-1CE39.stypo</key>\n      <string>u1CE39.stypo</string>\n      <key>largeType-1CE3A</key>\n      <string>u1CE3A</string>\n      <key>largeType-1CE3A.stypo</key>\n      <string>u1CE3A.stypo</string>\n      <key>largeType-1CE3B</key>\n      <string>u1CE3B</string>\n      <key>largeType-1CE3B.stypo</key>\n      <string>u1CE3B.stypo</string>\n      <key>largeType-1CE3C</key>\n      <string>u1CE3C</string>\n      <key>largeType-1CE3C.stypo</key>\n      <string>u1CE3C.stypo</string>\n      <key>largeType-1CE3D</key>\n      <string>u1CE3D</string>\n      <key>largeType-1CE3D.stypo</key>\n      <string>u1CE3D.stypo</string>\n      <key>largeType-1CE3E</key>\n      <string>u1CE3E</string>\n      <key>largeType-1CE3E.stypo</key>\n      <string>u1CE3E.stypo</string>\n      <key>largeType-1CE3F</key>\n      <string>u1CE3F</string>\n      <key>largeType-1CE3F.stypo</key>\n      <string>u1CE3F.stypo</string>\n      <key>largeType-1CE40</key>\n      <string>u1CE40</string>\n      <key>largeType-1CE40.stypo</key>\n      <string>u1CE40.stypo</string>\n      <key>largeType-1CE41</key>\n      <string>u1CE41</string>\n      <key>largeType-1CE41.stypo</key>\n      <string>u1CE41.stypo</string>\n      <key>largeType-1CE42</key>\n      <string>u1CE42</string>\n      <key>largeType-1CE42.stypo</key>\n      <string>u1CE42.stypo</string>\n      <key>largeType-1CE43</key>\n      <string>u1CE43</string>\n      <key>largeType-1CE43.stypo</key>\n      <string>u1CE43.stypo</string>\n      <key>largeType-1CE44</key>\n      <string>u1CE44</string>\n      <key>largeType-1CE44.stypo</key>\n      <string>u1CE44.stypo</string>\n      <key>largeType-1CE45</key>\n      <string>u1CE45</string>\n      <key>largeType-1CE45.stypo</key>\n      <string>u1CE45.stypo</string>\n      <key>largeType-1CE46</key>\n      <string>u1CE46</string>\n      <key>largeType-1CE46.stypo</key>\n      <string>u1CE46.stypo</string>\n      <key>largeType-1CE47</key>\n      <string>u1CE47</string>\n      <key>largeType-1CE47.stypo</key>\n      <string>u1CE47.stypo</string>\n      <key>largeType-1CE48</key>\n      <string>u1CE48</string>\n      <key>largeType-1CE48.stypo</key>\n      <string>u1CE48.stypo</string>\n      <key>largeType-1CE49</key>\n      <string>u1CE49</string>\n      <key>largeType-1CE49.stypo</key>\n      <string>u1CE49.stypo</string>\n      <key>largeType-1CE4A</key>\n      <string>u1CE4A</string>\n      <key>largeType-1CE4A.stypo</key>\n      <string>u1CE4A.stypo</string>\n      <key>largeType-1CE4B</key>\n      <string>u1CE4B</string>\n      <key>largeType-1CE4B.stypo</key>\n      <string>u1CE4B.stypo</string>\n      <key>largeType-1CE4C</key>\n      <string>u1CE4C</string>\n      <key>largeType-1CE4C.stypo</key>\n      <string>u1CE4C.stypo</string>\n      <key>largeType-1CE4D</key>\n      <string>u1CE4D</string>\n      <key>largeType-1CE4D.stypo</key>\n      <string>u1CE4D.stypo</string>\n      <key>largeType-1CE4E</key>\n      <string>u1CE4E</string>\n      <key>largeType-1CE4E.stypo</key>\n      <string>u1CE4E.stypo</string>\n      <key>largeType-1CE4F</key>\n      <string>u1CE4F</string>\n      <key>largeType-1CE4F.stypo</key>\n      <string>u1CE4F.stypo</string>\n      <key>largeType-1CE50</key>\n      <string>u1CE50</string>\n      <key>largeType-1CE50.stypo</key>\n      <string>u1CE50.stypo</string>\n    </dict>\n    <key>public.skipExportGlyphs</key>\n    <array>\n      <string>A.half</string>\n      <string>B.half</string>\n      <string>C.half</string>\n      <string>D.half</string>\n      <string>E.half</string>\n      <string>F.half</string>\n      <string>G.half</string>\n      <string>H.half</string>\n      <string>I.half</string>\n      <string>K.half</string>\n      <string>L.half</string>\n      <string>M.half</string>\n      <string>N.half</string>\n      <string>O.half</string>\n      <string>P.half</string>\n      <string>Q.half</string>\n      <string>R.half</string>\n      <string>S.half</string>\n      <string>T.half</string>\n      <string>U.half</string>\n      <string>V.half</string>\n      <string>X.half</string>\n      <string>Y.half</string>\n      <string>four.half</string>\n      <string>one.half</string>\n      <string>three.half</string>\n      <string>two.half</string>\n    </array>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-BoldItalic.ufo/metainfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>creator</key>\n    <string>com.github.fonttools.ufoLib</string>\n    <key>formatVersion</key>\n    <integer>3</integer>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/features.fea",
    "content": "# automatic\n@Uppercase = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK 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 Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol ];\n\n# automatic\n@Lowercase = [ Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij ij_acute imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply 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 ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol ];\n\n@OpeningBracket = [ bracketleft braceleft parenleft ];\n\n@Digit = [ zero one two three four five six seven eight nine segmentedDigit0 segmentedDigit1 segmentedDigit2 segmentedDigit3 segmentedDigit4 segmentedDigit5 segmentedDigit6 segmentedDigit7 segmentedDigit8 segmentedDigit9 ];\n\n@HexDigit = [ @Digit a b c d e f A B C D E F ];\n\n@ClosingBracket = [ bracketright braceright parenright ];\n\n@Tall = [ @Uppercase @Digit @OpeningBracket @ClosingBracket bar ];\n\n@NotSpace = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply fi fl w_w_w.liga ordfeminine ordmasculine nmod wmod ymod 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 Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR 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 ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol thetamod zmod zero one two three four five six seven eight nine zero.zero zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior 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 zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior fraction onehalf onequarter threequarters oneeighth threeeighths fiveeighths seveneighths period comma colon semicolon ellipsis exclam exclamdown question questiondown periodcentered bullet asterisk exclamdouble numbersign onedotenleader overline slash backslash colon.center parenleft parenright braceleft braceright bracketleft bracketright heavyleftpointinganglebracketornament heavyleftpointinganglequotationmarkornament heavyrightpointinganglebracketornament heavyrightpointinganglequotationmarkornament mediumleftpointinganglebracketornament mediumrightpointinganglebracketornament hyphen softhyphen endash emdash horizontalbar hyphentwo nonbreakinghyphen underscore underscoredbl quotesinglbase quotedblbase quotedblleft quotedblright quoteleft quoteright quotereversed guillemetleft guillemetright guilsinglleft guilsinglright quotedbl quotesingle hyphen_hyphen.liga hyphen_hyphen_hyphen.liga hyphen_asciitilde.liga parenleft_asterisk.liga braceleft_bar.liga braceright_numbersign.liga bracketleft_bar.liga bracketright_numbersign.liga period_hyphen.liga period_period.liga period_period_period.liga period_period_equal.liga period_period_less.liga period_question.liga period_equal.liga colon_colon.liga colon_colon_colon.liga colon_colon_equal.liga colon_equal.liga colon_slash_slash.liga semicolon_semicolon.liga exclam_period.liga exclam_colon.liga exclam_exclam.liga exclam_exclam_period.liga exclam_equal.liga exclam_equal_equal.liga question_period.liga question_colon.liga question_question.liga question_question_equal.liga question_equal.liga asterisk_parenright.liga asterisk_asterisk.liga asterisk_asterisk_asterisk.liga asterisk_greater.liga asterisk_slash.liga numbersign_parenleft.liga numbersign_braceleft.liga numbersign_bracketleft.liga numbersign_colon.liga numbersign_exclam.liga numbersign_question.liga numbersign_equal.liga numbersign_underscore.liga numbersign_underscore_parenleft.liga slash_asterisk.liga slash_greater.liga slash_slash.liga slash_slash_slash.liga slash_backslash.liga backslash_slash.liga backslash_backslash.liga underscore_underscore.liga hyphen_middle.seq hyphen_start.seq hyphen_end.seq colon_equal_middle.seq exclam_equal_middle.seq numbersign_end.seq numbersign_middle.seq numbersign_start.seq slash_equal_end.seq slash_equal_middle.seq slash_equal_start.seq slash_slash_equal_end.seq slash_slash_equal_middle.seq slash_slash_equal_start.seq underscore_end.seq underscore_middle.seq underscore_start.seq anoteleia questiongreek .notdef baht cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen bulletoperator divisionslash equivalence horizontallineextension integralbt integraltp logicalnotReversed notidentical plus minus multiply divide equal notequal greater less greaterequal lessequal plusminus approxequal asciitilde logicalnot asciicircum infinity intersection integral Ohm increment product summation radical micro partialdiff orthogonal percent perthousand strictlyequivalentto vectorOrCrossProduct greater.center less.center upArrow rightArrow downArrow leftArrow leftRightArrow upDownArrow upDownbaseArrow downTipLeftArrow upDashArrow dashdownArrow lowerOneEighthBlock lowerOneQuarterBlock lowerThreeEighthsBlock lowerHalfBlock lowerFiveEighthsBlock lowerThreeQuartersBlock lowerSevenEighthsBlock fullBlock upperHalfBlock upperOneEighthBlock leftOneEighthBlock leftOneQuarterBlock leftThreeEighthsBlock leftBlock leftFiveEighthsBlock leftThreeQuartersBlock leftSevenEighthsBlock rightBlock rightOneEighthBlock lowerLeftBlock lowerRightBlock upperLeftBlock upperLeftAndLowerLeftAndLowerRightBlock upperLeftAndLowerRightBlock upperLeftAndUpperRightAndLowerLeftBlock upperLeftAndUpperRightAndLowerRightBlock upperRightBlock upperRightAndLowerLeftBlock upperRightAndLowerLeftAndLowerRightBlock shadelight shademedium shadedark blackCircle whiteCircle largeCircle leftHalfBlackWhiteCircle rightHalfBlackWhiteCircle lowerHalfBlackWhiteCircle upperHalfBlackWhiteCircle leftHalfBlackCircle rightHalfBlackCircle upperRightBlackCircle upperLeftWhiteCircle upperLeftQuadrantWhiteCircle lowerLeftQuadrantWhiteCircle lowerRightQuadrantWhiteCircle upperRightQuadrantWhiteCircle verticalFillCircle dottedCircle fisheye bullseye whiteBullet inverseBullet inverseWhiteCircle upperHalfInverseWhiteCircle lowerHalfInverseWhiteCircle upperHalfArc lowerHalfArc upperLeftArc upperRightArc lowerRightArc lowerLeftArc blackDiamond whiteDiamond leftHalfBlackDiamond rightHalfBlackDiamond topHalfBlackDiamond bottomHalfBlackDiamond blackInWhiteDiamond lozenge blackParallelogram whiteParallelogram blackVerticalRect filledRect whiteRect whiteVerticalRect blackSquare whiteSquare whiteRoundedCornersSquare whiteInBlackSquare dottedSquare horizontalFillSquare verticalFillSquare crosshatchFillSquare upperlefttolowerrightFillSquare upperrighttolowerleftFillSquare diagonalcrosshatchFillSquare blackSmallSquare whiteSmallSquare leftHalfBlackSquare rightHalfBlackSquare upperLeftDiagonalHalfBlackSquare lowerRightDiagonalHalfBlackSquare verticalBisectingLineWhiteSquare whiteUpperLeftQuadrantSquare whiteLowerLeftQuadrantSquare whiteLowerRightQuadrantSquare whiteUpperRightQuadrantSquare mediumWhiteSquare mediumBlackSquare mediumWhiteSmallSquare mediumBlackSmallSquare upBlackTriangle rightBlackTriangle downBlackTriangle leftBlackTriangle upWhiteTriangle rightWhiteTriangle downWhiteTriangle leftWhiteTriangle upWhiteTriangleWithDot upLeftHalfBlackTriangle upRightHalfBlackTriangle rightBlackPointer leftBlackPointer rightWhitePointer leftWhitePointer upBlackSmallTriangle rightBlackSmallTriangle downBlackSmallTriangle leftBlackSmallTriangle upWhiteSmallTriangle rightWhiteSmallTriangle downWhiteSmallTriangle leftWhiteSmallTriangle upperRightBlackTriangle lowerRightBlackTriangle lowerLeftBlackTriangle upperLeftBlackTriangle upperRightTriangle lowerRightTriangle lowerLeftTriangle upperLeftTriangle boxDoubleDownAndHorizontal boxDoubleDownAndLeft boxDoubleDownAndRight boxDoubleHorizontal boxDoubleUpAndHorizontal boxDoubleUpAndLeft boxDoubleUpAndRight boxDoubleVertical boxDoubleVerticalAndHorizontal boxDoubleVerticalAndLeft boxDoubleVerticalAndRight boxDownDoubleAndHorizontalSingle boxDownDoubleAndLeftSingle boxDownDoubleAndRightSingle boxDownHeavyAndHorizontalLight boxDownHeavyAndLeftLight boxDownHeavyAndLeftUpLight boxDownHeavyAndRightLight boxDownHeavyAndRightUpLight boxDownHeavyAndUpHorizontalLight boxDownLightAndHorizontalHeavy boxDownLightAndLeftHeavy boxDownLightAndLeftUpHeavy boxDownLightAndRightHeavy boxDownLightAndRightUpHeavy boxDownLightAndUpHorizontalHeavy boxDownSingleAndHorizontalDouble boxDownSingleAndLeftDouble boxDownSingleAndRightDouble boxHeavyDoubleDashHorizontal boxHeavyDoubleDashVertical boxHeavyDown boxHeavyDownAndHorizontal boxHeavyDownAndLeft boxHeavyDownAndRight boxHeavyHorizontal boxHeavyLeft boxHeavyLeftAndLightRight boxHeavyQuadrupleDashHorizontal boxHeavyQuadrupleDashVertical boxHeavyRight boxHeavyTripleDashHorizontal boxHeavyTripleDashVertical boxHeavyUp boxHeavyUpAndHorizontal boxHeavyUpAndLeft boxHeavyUpAndLightDown boxHeavyUpAndRight boxHeavyVertical boxHeavyVerticalAndHorizontal boxHeavyVerticalAndLeft boxHeavyVerticalAndRight boxLeftDownHeavyAndRightUpLight boxLeftHeavyAndRightDownLight boxLeftHeavyAndRightUpLight boxLeftHeavyAndRightVerticalLight boxLeftLightAndRightDownHeavy boxLeftLightAndRightUpHeavy boxLeftLightAndRightVerticalHeavy boxLeftUpHeavyAndRightDownLight boxLightArcDownAndLeft boxLightArcDownAndRight boxLightArcUpAndLeft boxLightArcUpAndRight boxLightDiagonalCross boxLightDiagonalUpperLeftToLowerRight boxLightDiagonalUpperRightToLowerLeft boxLightDoubleDashHorizontal boxLightDoubleDashVertical boxLightDown boxLightDownAndHorizontal boxLightDownAndLeft boxLightDownAndRight boxLightHorizontal boxLightLeft boxLightLeftAndHeavyRight boxLightQuadrupleDashHorizontal boxLightQuadrupleDashVertical boxLightRight boxLightTripleDashHorizontal boxLightTripleDashVertical boxLightUp boxLightUpAndHeavyDown boxLightUpAndHorizontal boxLightUpAndLeft boxLightUpAndRight boxLightVertical boxLightVerticalAndHorizontal boxLightVerticalAndLeft boxLightVerticalAndRight boxRightDownHeavyAndLeftUpLight boxRightHeavyAndLeftDownLight boxRightHeavyAndLeftUpLight boxRightHeavyAndLeftVerticalLight boxRightLightAndLeftDownHeavy boxRightLightAndLeftUpHeavy boxRightLightAndLeftVerticalHeavy boxRightUpHeavyAndLeftDownLight boxUpDoubleAndHorizontalSingle boxUpDoubleAndLeftSingle boxUpDoubleAndRightSingle boxUpHeavyAndDownHorizontalLight boxUpHeavyAndHorizontalLight boxUpHeavyAndLeftDownLight boxUpHeavyAndLeftLight boxUpHeavyAndRightDownLight boxUpHeavyAndRightLight boxUpLightAndDownHorizontalHeavy boxUpLightAndHorizontalHeavy boxUpLightAndLeftDownHeavy boxUpLightAndLeftHeavy boxUpLightAndRightDownHeavy boxUpLightAndRightHeavy boxUpSingleAndHorizontalDouble boxUpSingleAndLeftDouble boxUpSingleAndRightDouble boxVerticalDoubleAndHorizontalSingle boxVerticalDoubleAndLeftSingle boxVerticalDoubleAndRightSingle boxVerticalHeavyAndHorizontalLight boxVerticalHeavyAndLeftLight boxVerticalHeavyAndRightLight boxVerticalLightAndHorizontalHeavy boxVerticalLightAndLeftHeavy boxVerticalLightAndRightHeavy boxVerticalSingleAndHorizontalDouble boxVerticalSingleAndLeftDouble boxVerticalSingleAndRightDouble lowerOneEighthBlock.stypo lowerOneQuarterBlock.stypo lowerThreeEighthsBlock.stypo lowerHalfBlock.stypo lowerFiveEighthsBlock.stypo lowerThreeQuartersBlock.stypo lowerSevenEighthsBlock.stypo fullBlock.stypo upperHalfBlock.stypo upperOneEighthBlock.stypo leftOneEighthBlock.stypo leftOneQuarterBlock.stypo leftThreeEighthsBlock.stypo leftBlock.stypo leftFiveEighthsBlock.stypo leftThreeQuartersBlock.stypo leftSevenEighthsBlock.stypo rightBlock.stypo rightOneEighthBlock.stypo lowerLeftBlock.stypo lowerRightBlock.stypo upperLeftBlock.stypo upperLeftAndLowerLeftAndLowerRightBlock.stypo upperLeftAndLowerRightBlock.stypo upperLeftAndUpperRightAndLowerLeftBlock.stypo upperLeftAndUpperRightAndLowerRightBlock.stypo upperRightBlock.stypo upperRightAndLowerLeftBlock.stypo upperRightAndLowerLeftAndLowerRightBlock.stypo shadelight.stypo shademedium.stypo shadedark.stypo reversedRotatedFloralHeartBullet whiteSmilingFace blackSmilingFace sunWithRays venus mars spadeBlackSuit clubBlackSuit heartBlackSuit diamondBlackSuit checkmark rotatedFloralHeartBullet acknowledgeControl backspaceControl at ampersand paragraph section copyright registered published trademark careof degree minute second bar brokenbar dagger literSign daggerdbl estimated numero bellControl blackHexagon blackHorizontalEllipse blackLargeCircle blackLargeSquare blackMediumDiamond blackMediumDownTriangleCentred blackMediumLeftTriangleCentred blackMediumLozenge blackMediumRightTriangleCentred blackMediumUpTriangleCentred blackPentagon blackSmallDiamond blackSmallLozenge blackVerticalEllipse blackVerysmallSquare blank blankSymbol bottomHalfBlackCircle cancelControl carriageReturnControl dataLinkEscapeControl deleteControl deleteFormTwoControl deviceControlFourControl deviceControlOneControl deviceControlThreeControl deviceControlTwoControl endOfMediumControl endOfTextControl endOfTransmissionBlockControl endOfTransmissionControl enquiryControl escapeControl fileSeparatorControl formFeedControl groupSeparatorControl horizontalBlackHexagon horizontalTabulationControl house returnsymbol lineFeedControl lowerHalfWhiteSquare lowerLeftHalfWhiteSquare negativeAcknowledgeControl newlineControl nullControl prescription recordSeparatorControl shiftInControl shiftOutControl spaceControl startOfHeadingControl startOfTextControl substituteControl substituteFormTwoControl synchronousIdleControl topHalfBlackCircle topHalfWhiteSquare topRightHalfWhiteSquare unitSeparatorControl verticalTabulationControl whiteHexagon whiteHorizontalEllipse whiteLargeSquare whiteMediumDiamond whiteMediumLozenge whitePentagon whiteSmallLozenge whiteVerticalEllipse whiteVerysmallSquare acknowledgeControl.ss20 backspaceControl.ss20 bellControl.ss20 cancelControl.ss20 carriageReturnControl.ss20 dataLinkEscapeControl.ss20 endOfMediumControl.ss20 endOfTextControl.ss20 endOfTransmissionBlockControl.ss20 endOfTransmissionControl.ss20 enquiryControl.ss20 escapeControl.ss20 formFeedControl.ss20 horizontalTabulationControl.ss20 lineFeedControl.ss20 negativeAcknowledgeControl.ss20 shiftInControl.ss20 shiftOutControl.ss20 startOfHeadingControl.ss20 startOfTextControl.ss20 substituteControl.ss20 synchronousIdleControl.ss20 verticalTabulationControl.ss20 ampersand_ampersand.liga bar_braceright.liga bar_bracketright.liga bar_bar.liga bar_bar_bar.liga bar_bar_bar_greater.liga bar_bar_greater.liga bar_greater.liga dollar_greater.liga plus_plus.liga plus_plus_plus.liga plus_greater.liga equal_equal.liga equal_equal_equal.liga greater_equal.liga greater_greater.liga greater_greater_greater.liga less_exclam_hyphen_hyphen.liga less_asterisk.liga less_asterisk_greater.liga less_bar.liga less_bar_bar.liga less_bar_bar_bar.liga less_bar_greater.liga less_dollar.liga less_dollar_greater.liga less_plus.liga less_plus_greater.liga less_equal.liga less_greater.liga less_less.liga less_less_less.liga less_asciitilde.liga less_asciitilde_greater.liga less_asciitilde_asciitilde.liga less_slash.liga less_slash_greater.liga asciitilde_hyphen.liga asciitilde_at.liga asciitilde_equal.liga asciitilde_greater.liga asciitilde_asciitilde.liga asciitilde_asciitilde_greater.liga asciicircum_equal.liga percent_percent.liga bar_underscore_middle.seq bar_bar_equal_middle.seq bar_equal_middle.seq bar_bar_equal_end.seq bar_bar_equal_start.seq bar_bar_hyphen_middle.seq bar_hyphen_middle.seq bar_bar_hyphen_end.seq bar_bar_hyphen_start.seq bar_equal_end.seq bar_equal_start.seq bar_hyphen_end.seq bar_hyphen_start.seq equal_middle.seq equal_end.seq equal_start.seq greater_greater_equal_middle.seq greater_equal_middle.seq greater_greater_equal_end.seq greater_greater_equal_start.seq greater_equal_start.seq greater_equal_end.seq greater_greater_hyphen_middle.seq greater_hyphen_middle.seq greater_greater_hyphen_end.seq greater_greater_hyphen_start.seq greater_hyphen_start.seq greater_hyphen_end.seq less_less_equal_middle.seq less_equal_middle.seq less_less_equal_end.seq less_less_equal_start.seq less_equal_end.seq less_equal_start.seq less_less_hyphen_middle.seq less_hyphen_middle.seq less_less_hyphen_end.seq less_less_hyphen_start.seq less_hyphen_end.seq less_hyphen_start.seq note-musical notedbl-musical blank-braille dots1-braille dots12-braille dots123-braille dots1234-braille dots12345-braille dots123456-braille dots1234567-braille dots12345678-braille dots1234568-braille dots123457-braille dots1234578-braille dots123458-braille dots12346-braille dots123467-braille dots1234678-braille dots123468-braille dots12347-braille dots123478-braille dots12348-braille dots1235-braille dots12356-braille dots123567-braille dots1235678-braille dots123568-braille dots12357-braille dots123578-braille dots12358-braille dots1236-braille dots12367-braille dots123678-braille dots12368-braille dots1237-braille dots12378-braille dots1238-braille dots124-braille dots1245-braille dots12456-braille dots124567-braille dots1245678-braille dots124568-braille dots12457-braille dots124578-braille dots12458-braille dots1246-braille dots12467-braille dots124678-braille dots12468-braille dots1247-braille dots12478-braille dots1248-braille dots125-braille dots1256-braille dots12567-braille dots125678-braille dots12568-braille dots1257-braille dots12578-braille dots1258-braille dots126-braille dots1267-braille dots12678-braille dots1268-braille dots127-braille dots1278-braille dots128-braille dots13-braille dots134-braille dots1345-braille dots13456-braille dots134567-braille dots1345678-braille dots134568-braille dots13457-braille dots134578-braille dots13458-braille dots1346-braille dots13467-braille dots134678-braille dots13468-braille dots1347-braille dots13478-braille dots1348-braille dots135-braille dots1356-braille dots13567-braille dots135678-braille dots13568-braille dots1357-braille dots13578-braille dots1358-braille dots136-braille dots1367-braille dots13678-braille dots1368-braille dots137-braille dots1378-braille dots138-braille dots14-braille dots145-braille dots1456-braille dots14567-braille dots145678-braille dots14568-braille dots1457-braille dots14578-braille dots1458-braille dots146-braille dots1467-braille dots14678-braille dots1468-braille dots147-braille dots1478-braille dots148-braille dots15-braille dots156-braille dots1567-braille dots15678-braille dots1568-braille dots157-braille dots1578-braille dots158-braille dots16-braille dots167-braille dots1678-braille dots168-braille dots17-braille dots178-braille dots18-braille dots2-braille dots23-braille dots234-braille dots2345-braille dots23456-braille dots234567-braille dots2345678-braille dots234568-braille dots23457-braille dots234578-braille dots23458-braille dots2346-braille dots23467-braille dots234678-braille dots23468-braille dots2347-braille dots23478-braille dots2348-braille dots235-braille dots2356-braille dots23567-braille dots235678-braille dots23568-braille dots2357-braille dots23578-braille dots2358-braille dots236-braille dots2367-braille dots23678-braille dots2368-braille dots237-braille dots2378-braille dots238-braille dots24-braille dots245-braille dots2456-braille dots24567-braille dots245678-braille dots24568-braille dots2457-braille dots24578-braille dots2458-braille dots246-braille dots2467-braille dots24678-braille dots2468-braille dots247-braille dots2478-braille dots248-braille dots25-braille dots256-braille dots2567-braille dots25678-braille dots2568-braille dots257-braille dots2578-braille dots258-braille dots26-braille dots267-braille dots2678-braille dots268-braille dots27-braille dots278-braille dots28-braille dots3-braille dots34-braille dots345-braille dots3456-braille dots34567-braille dots345678-braille dots34568-braille dots3457-braille dots34578-braille dots3458-braille dots346-braille dots3467-braille dots34678-braille dots3468-braille dots347-braille dots3478-braille dots348-braille dots35-braille dots356-braille dots3567-braille dots35678-braille dots3568-braille dots357-braille dots3578-braille dots358-braille dots36-braille dots367-braille dots3678-braille dots368-braille dots37-braille dots378-braille dots38-braille dots4-braille dots45-braille dots456-braille dots4567-braille dots45678-braille dots4568-braille dots457-braille dots4578-braille dots458-braille dots46-braille dots467-braille dots4678-braille dots468-braille dots47-braille dots478-braille dots48-braille dots5-braille dots56-braille dots567-braille dots5678-braille dots568-braille dots57-braille dots578-braille dots58-braille dots6-braille dots67-braille dots678-braille dots68-braille dots7-braille dots78-braille dots8-braille numeral-greek lowernumeral-greek apostrophemod colontriangularmod commaturnedmod firsttonechinese glottalstopmod dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb commaturnedabovecomb commaabovecomb commaaboverightcomb horncomb dotbelowcomb ringbelowcomb commaaccentcomb cedillacomb ogonekcomb macronbelowcomb lowlinecomb gravetonecomb acutetonecomb dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron cedilla ogonek dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case acutecomb.loclPLK acutecomb.case.loclPLK perispomenicomb tonos tonos.case dieresistonos brevecomb-cy brevecomb-cy.case checkerBoardDeleteApple2 checkerBoardDeleteTrs80 checkerBoardDeleteAmstradCpc checkerBoardDeleteAmstradCpc.stypo checkerBoardFill checkerBoardFill.stypo checkerBoardFillInverse checkerBoardFillInverse.stypo blockQuadrant-UC blockQuadrant-UC.stypo blockQuadrant-LC blockQuadrant-LC.stypo blockQuadrant-ML blockQuadrant-ML.stypo blockQuadrant-MR blockQuadrant-MR.stypo blockTriangle-1 blockTriangle-1.stypo blockTriangle-2 blockTriangle-2.stypo blockTriangle-3 blockTriangle-3.stypo blockTriangle-4 blockTriangle-4.stypo blockTriangle-14 blockTriangle-14.stypo blockTriangle-23 blockTriangle-23.stypo blockTriangle-123 blockTriangle-123.stypo blockTriangle-124 blockTriangle-124.stypo blockTriangle-134 blockTriangle-134.stypo blockTriangle-234 blockTriangle-234.stypo blockCircle-1 blockCircle-1.stypo blockCircle-2 blockCircle-2.stypo blockCircle-3 blockCircle-3.stypo blockCircle-4 blockCircle-4.stypo blockCircle-UC blockCircle-UC.stypo blockCircle-LC by blockCircle-LC.stypo blockCircle-ML blockCircle-ML.stypo blockCircle-MR blockCircle-MR.stypo blockSextant-1 blockSextant-1.stypo blockSextant-2 blockSextant-2.stypo blockSextant-12 blockSextant-12.stypo blockSextant-3 blockSextant-3.stypo blockSextant-13 blockSextant-13.stypo blockSextant-23 blockSextant-23.stypo blockSextant-123 blockSextant-123.stypo blockSextant-4 blockSextant-4.stypo blockSextant-14 blockSextant-14.stypo blockSextant-24 blockSextant-24.stypo blockSextant-124 blockSextant-124.stypo blockSextant-34 blockSextant-34.stypo blockSextant-134 blockSextant-134.stypo blockSextant-234 blockSextant-234.stypo blockSextant-1234 blockSextant-1234.stypo blockSextant-5 blockSextant-5.stypo blockSextant-15 blockSextant-15.stypo blockSextant-25 blockSextant-25.stypo blockSextant-125 blockSextant-125.stypo blockSextant-35 blockSextant-35.stypo blockSextant-235 blockSextant-235.stypo blockSextant-1235 blockSextant-1235.stypo blockSextant-45 blockSextant-45.stypo blockSextant-145 blockSextant-145.stypo blockSextant-245 blockSextant-245.stypo blockSextant-1245 blockSextant-1245.stypo blockSextant-345 blockSextant-345.stypo blockSextant-1345 blockSextant-1345.stypo blockSextant-2345 blockSextant-2345.stypo blockSextant-12345 blockSextant-12345.stypo blockSextant-6 blockSextant-6.stypo blockSextant-16 blockSextant-16.stypo blockSextant-26 blockSextant-26.stypo blockSextant-126 blockSextant-126.stypo blockSextant-36 blockSextant-36.stypo blockSextant-136 blockSextant-136.stypo blockSextant-236 blockSextant-236.stypo blockSextant-1236 blockSextant-1236.stypo blockSextant-46 blockSextant-46.stypo blockSextant-146 blockSextant-146.stypo blockSextant-1246 blockSextant-1246.stypo blockSextant-346 blockSextant-346.stypo blockSextant-1346 blockSextant-1346.stypo blockSextant-2346 blockSextant-2346.stypo blockSextant-12346 blockSextant-12346.stypo blockSextant-56 blockSextant-56.stypo blockSextant-156 blockSextant-156.stypo blockSextant-256 blockSextant-256.stypo blockSextant-1256 blockSextant-1256.stypo blockSextant-356 blockSextant-356.stypo blockSextant-1356 blockSextant-1356.stypo blockSextant-2356 blockSextant-2356.stypo blockSextant-12356 blockSextant-12356.stypo blockSextant-456 blockSextant-456.stypo blockSextant-1456 blockSextant-1456.stypo blockSextant-2456 blockSextant-2456.stypo blockSextant-12456 blockSextant-12456.stypo blockSextant-3456 blockSextant-3456.stypo blockSextant-13456 blockSextant-13456.stypo blockSextant-23456 blockSextant-23456.stypo blockDiagonal-1FB3C blockDiagonal-1FB3C.stypo blockDiagonal-1FB3D blockDiagonal-1FB3D.stypo blockDiagonal-1FB3E blockDiagonal-1FB3E.stypo blockDiagonal-1FB3F blockDiagonal-1FB3F.stypo blockDiagonal-1FB40 blockDiagonal-1FB40.stypo blockDiagonal-1FB41 blockDiagonal-1FB41.stypo blockDiagonal-1FB42 blockDiagonal-1FB42.stypo blockDiagonal-1FB43 blockDiagonal-1FB43.stypo blockDiagonal-1FB44 blockDiagonal-1FB44.stypo blockDiagonal-1FB45 blockDiagonal-1FB45.stypo blockDiagonal-1FB46 blockDiagonal-1FB46.stypo blockDiagonal-1FB47 blockDiagonal-1FB47.stypo blockDiagonal-1FB48 blockDiagonal-1FB48.stypo blockDiagonal-1FB49 blockDiagonal-1FB49.stypo blockDiagonal-1FB4A blockDiagonal-1FB4A.stypo blockDiagonal-1FB4B blockDiagonal-1FB4B.stypo blockDiagonal-1FB4C blockDiagonal-1FB4C.stypo blockDiagonal-1FB4D blockDiagonal-1FB4D.stypo blockDiagonal-1FB4E blockDiagonal-1FB4E.stypo blockDiagonal-1FB4F blockDiagonal-1FB4F.stypo blockDiagonal-1FB50 blockDiagonal-1FB50.stypo blockDiagonal-1FB51 blockDiagonal-1FB51.stypo blockDiagonal-1FB52 blockDiagonal-1FB52.stypo blockDiagonal-1FB53 blockDiagonal-1FB53.stypo blockDiagonal-1FB54 blockDiagonal-1FB54.stypo blockDiagonal-1FB55 blockDiagonal-1FB55.stypo blockDiagonal-1FB56 blockDiagonal-1FB56.stypo blockDiagonal-1FB57 blockDiagonal-1FB57.stypo blockDiagonal-1FB58 blockDiagonal-1FB58.stypo blockDiagonal-1FB59 blockDiagonal-1FB59.stypo blockDiagonal-1FB5A blockDiagonal-1FB5A.stypo blockDiagonal-1FB5B blockDiagonal-1FB5B.stypo blockDiagonal-1FB5C blockDiagonal-1FB5C.stypo blockDiagonal-1FB5D blockDiagonal-1FB5D.stypo blockDiagonal-1FB5E blockDiagonal-1FB5E.stypo blockDiagonal-1FB5F blockDiagonal-1FB5F.stypo blockDiagonal-1FB60 blockDiagonal-1FB60.stypo blockDiagonal-1FB61 blockDiagonal-1FB61.stypo blockDiagonal-1FB62 blockDiagonal-1FB62.stypo blockDiagonal-1FB63 blockDiagonal-1FB63.stypo blockDiagonal-1FB64 blockDiagonal-1FB64.stypo blockDiagonal-1FB65 blockDiagonal-1FB65.stypo blockDiagonal-1FB66 blockDiagonal-1FB66.stypo blockDiagonal-1FB67 blockDiagonal-1FB67.stypo blockOctant-1 blockOctant-1.stypo blockOctant-2 blockOctant-2.stypo blockOctant-12 blockOctant-12.stypo blockOctant-3 blockOctant-3.stypo blockOctant-23 blockOctant-23.stypo blockOctant-123 blockOctant-123.stypo blockOctant-4 blockOctant-4.stypo blockOctant-14 blockOctant-14.stypo blockOctant-124 blockOctant-124.stypo blockOctant-34 blockOctant-34.stypo blockOctant-134 blockOctant-134.stypo blockOctant-234 blockOctant-234.stypo blockOctant-5 blockOctant-5.stypo blockOctant-15 blockOctant-15.stypo blockOctant-25 blockOctant-25.stypo blockOctant-125 blockOctant-125.stypo blockOctant-135 blockOctant-135.stypo blockOctant-235 blockOctant-235.stypo blockOctant-1235 blockOctant-1235.stypo blockOctant-45 blockOctant-45.stypo blockOctant-145 blockOctant-145.stypo blockOctant-245 blockOctant-245.stypo blockOctant-1245 blockOctant-1245.stypo blockOctant-345 blockOctant-345.stypo blockOctant-1345 blockOctant-1345.stypo blockOctant-2345 blockOctant-2345.stypo blockOctant-12345 blockOctant-12345.stypo blockOctant-6 blockOctant-6.stypo blockOctant-16 blockOctant-16.stypo blockOctant-26 blockOctant-26.stypo blockOctant-126 blockOctant-126.stypo blockOctant-36 blockOctant-36.stypo blockOctant-136 blockOctant-136.stypo blockOctant-236 blockOctant-236.stypo blockOctant-1236 blockOctant-1236.stypo blockOctant-146 blockOctant-146.stypo blockOctant-246 blockOctant-246.stypo blockOctant-1246 blockOctant-1246.stypo blockOctant-346 blockOctant-346.stypo blockOctant-1346 blockOctant-1346.stypo blockOctant-2346 blockOctant-2346.stypo blockOctant-12346 blockOctant-12346.stypo blockOctant-56 blockOctant-56.stypo blockOctant-156 blockOctant-156.stypo blockOctant-256 blockOctant-256.stypo blockOctant-1256 blockOctant-1256.stypo blockOctant-356 blockOctant-356.stypo blockOctant-1356 blockOctant-1356.stypo blockOctant-2356 blockOctant-2356.stypo blockOctant-12356 blockOctant-12356.stypo blockOctant-456 blockOctant-456.stypo blockOctant-1456 blockOctant-1456.stypo blockOctant-2456 blockOctant-2456.stypo blockOctant-12456 blockOctant-12456.stypo blockOctant-3456 blockOctant-3456.stypo blockOctant-13456 blockOctant-13456.stypo blockOctant-23456 blockOctant-23456.stypo blockOctant-123456 blockOctant-123456.stypo blockOctant-7 blockOctant-7.stypo blockOctant-17 blockOctant-17.stypo blockOctant-27 blockOctant-27.stypo blockOctant-127 blockOctant-127.stypo blockOctant-37 blockOctant-37.stypo blockOctant-137 blockOctant-137.stypo blockOctant-237 blockOctant-237.stypo blockOctant-1237 blockOctant-1237.stypo blockOctant-47 blockOctant-47.stypo blockOctant-147 blockOctant-147.stypo blockOctant-247 blockOctant-247.stypo blockOctant-1247 blockOctant-1247.stypo blockOctant-347 blockOctant-347.stypo blockOctant-1347 blockOctant-1347.stypo blockOctant-2347 blockOctant-2347.stypo blockOctant-12347 blockOctant-12347.stypo blockOctant-157 blockOctant-157.stypo blockOctant-257 blockOctant-257.stypo blockOctant-1257 blockOctant-1257.stypo blockOctant-357 blockOctant-357.stypo blockOctant-2357 blockOctant-2357.stypo blockOctant-12357 blockOctant-12357.stypo blockOctant-457 blockOctant-457.stypo blockOctant-1457 blockOctant-1457.stypo blockOctant-12457 blockOctant-12457.stypo blockOctant-3457 blockOctant-3457.stypo blockOctant-13457 blockOctant-13457.stypo blockOctant-23457 blockOctant-23457.stypo blockOctant-67 blockOctant-67.stypo blockOctant-167 blockOctant-167.stypo blockOctant-267 blockOctant-267.stypo blockOctant-1267 blockOctant-1267.stypo blockOctant-367 blockOctant-367.stypo blockOctant-1367 blockOctant-1367.stypo blockOctant-2367 blockOctant-2367.stypo blockOctant-12367 blockOctant-12367.stypo blockOctant-467 blockOctant-467.stypo blockOctant-1467 blockOctant-1467.stypo blockOctant-2467 blockOctant-2467.stypo blockOctant-12467 blockOctant-12467.stypo blockOctant-3467 blockOctant-3467.stypo blockOctant-13467 blockOctant-13467.stypo blockOctant-23467 blockOctant-23467.stypo blockOctant-123467 blockOctant-123467.stypo blockOctant-567 blockOctant-567.stypo blockOctant-1567 blockOctant-1567.stypo blockOctant-2567 blockOctant-2567.stypo blockOctant-12567 blockOctant-12567.stypo blockOctant-3567 blockOctant-3567.stypo blockOctant-13567 blockOctant-13567.stypo blockOctant-23567 blockOctant-23567.stypo blockOctant-123567 blockOctant-123567.stypo blockOctant-4567 blockOctant-4567.stypo blockOctant-14567 blockOctant-14567.stypo blockOctant-24567 blockOctant-24567.stypo blockOctant-124567 blockOctant-124567.stypo blockOctant-34567 blockOctant-34567.stypo blockOctant-134567 blockOctant-134567.stypo blockOctant-234567 blockOctant-234567.stypo blockOctant-1234567 blockOctant-1234567.stypo blockOctant-8 blockOctant-8.stypo blockOctant-18 blockOctant-18.stypo blockOctant-28 blockOctant-28.stypo blockOctant-128 blockOctant-128.stypo blockOctant-38 blockOctant-38.stypo blockOctant-138 blockOctant-138.stypo blockOctant-238 blockOctant-238.stypo blockOctant-1238 blockOctant-1238.stypo blockOctant-48 blockOctant-48.stypo blockOctant-148 blockOctant-148.stypo blockOctant-248 blockOctant-248.stypo blockOctant-1248 blockOctant-1248.stypo blockOctant-348 blockOctant-348.stypo blockOctant-1348 blockOctant-1348.stypo blockOctant-2348 blockOctant-2348.stypo blockOctant-12348 blockOctant-12348.stypo blockOctant-58 blockOctant-58.stypo blockOctant-158 blockOctant-158.stypo blockOctant-258 blockOctant-258.stypo blockOctant-1258 blockOctant-1258.stypo blockOctant-358 blockOctant-358.stypo blockOctant-1358 blockOctant-1358.stypo blockOctant-2358 blockOctant-2358.stypo blockOctant-12358 blockOctant-12358.stypo blockOctant-458 blockOctant-458.stypo blockOctant-1458 blockOctant-1458.stypo blockOctant-2458 blockOctant-2458.stypo blockOctant-12458 blockOctant-12458.stypo blockOctant-3458 blockOctant-3458.stypo blockOctant-13458 blockOctant-13458.stypo blockOctant-23458 blockOctant-23458.stypo blockOctant-123458 blockOctant-123458.stypo blockOctant-168 blockOctant-168.stypo blockOctant-268 blockOctant-268.stypo blockOctant-1268 blockOctant-1268.stypo blockOctant-368 blockOctant-368.stypo blockOctant-2368 blockOctant-2368.stypo blockOctant-12368 blockOctant-12368.stypo blockOctant-468 blockOctant-468.stypo blockOctant-1468 blockOctant-1468.stypo blockOctant-12468 blockOctant-12468.stypo blockOctant-3468 blockOctant-3468.stypo blockOctant-13468 blockOctant-13468.stypo blockOctant-23468 blockOctant-23468.stypo blockOctant-568 blockOctant-568.stypo blockOctant-1568 blockOctant-1568.stypo blockOctant-2568 blockOctant-2568.stypo blockOctant-12568 blockOctant-12568.stypo blockOctant-3568 blockOctant-3568.stypo blockOctant-13568 blockOctant-13568.stypo blockOctant-23568 blockOctant-23568.stypo blockOctant-123568 blockOctant-123568.stypo blockOctant-4568 blockOctant-4568.stypo blockOctant-14568 blockOctant-14568.stypo blockOctant-24568 blockOctant-24568.stypo blockOctant-124568 blockOctant-124568.stypo blockOctant-34568 blockOctant-34568.stypo blockOctant-134568 blockOctant-134568.stypo blockOctant-234568 blockOctant-234568.stypo blockOctant-1234568 blockOctant-1234568.stypo blockOctant-178 blockOctant-178.stypo blockOctant-278 blockOctant-278.stypo blockOctant-1278 blockOctant-1278.stypo blockOctant-378 blockOctant-378.stypo blockOctant-1378 blockOctant-1378.stypo blockOctant-2378 blockOctant-2378.stypo blockOctant-12378 blockOctant-12378.stypo blockOctant-478 blockOctant-478.stypo blockOctant-1478 blockOctant-1478.stypo blockOctant-2478 blockOctant-2478.stypo blockOctant-12478 blockOctant-12478.stypo blockOctant-3478 blockOctant-3478.stypo blockOctant-13478 blockOctant-13478.stypo blockOctant-23478 blockOctant-23478.stypo blockOctant-123478 blockOctant-123478.stypo blockOctant-578 blockOctant-578.stypo blockOctant-1578 blockOctant-1578.stypo blockOctant-2578 blockOctant-2578.stypo blockOctant-12578 blockOctant-12578.stypo blockOctant-3578 blockOctant-3578.stypo blockOctant-13578 blockOctant-13578.stypo blockOctant-23578 blockOctant-23578.stypo blockOctant-123578 blockOctant-123578.stypo blockOctant-4578 blockOctant-4578.stypo blockOctant-14578 blockOctant-14578.stypo blockOctant-24578 blockOctant-24578.stypo blockOctant-124578 blockOctant-124578.stypo blockOctant-34578 blockOctant-34578.stypo blockOctant-134578 blockOctant-134578.stypo blockOctant-234578 blockOctant-234578.stypo blockOctant-1234578 blockOctant-1234578.stypo blockOctant-678 blockOctant-678.stypo blockOctant-1678 blockOctant-1678.stypo blockOctant-2678 blockOctant-2678.stypo blockOctant-12678 blockOctant-12678.stypo blockOctant-3678 blockOctant-3678.stypo blockOctant-13678 blockOctant-13678.stypo blockOctant-23678 blockOctant-23678.stypo blockOctant-123678 blockOctant-123678.stypo blockOctant-4678 blockOctant-4678.stypo blockOctant-14678 blockOctant-14678.stypo blockOctant-24678 blockOctant-24678.stypo blockOctant-124678 blockOctant-124678.stypo blockOctant-34678 blockOctant-34678.stypo blockOctant-134678 blockOctant-134678.stypo blockOctant-234678 blockOctant-234678.stypo blockOctant-1234678 blockOctant-1234678.stypo blockOctant-15678 blockOctant-15678.stypo blockOctant-25678 blockOctant-25678.stypo blockOctant-125678 blockOctant-125678.stypo blockOctant-35678 blockOctant-35678.stypo blockOctant-235678 blockOctant-235678.stypo blockOctant-1235678 blockOctant-1235678.stypo blockOctant-45678 blockOctant-45678.stypo blockOctant-145678 blockOctant-145678.stypo blockOctant-1245678 blockOctant-1245678.stypo blockOctant-1345678 blockOctant-1345678.stypo blockOctant-2345678 blockOctant-2345678.stypo blockSedecimant-1 blockSedecimant-1.stypo blockSedecimant-2 blockSedecimant-2.stypo blockSedecimant-3 blockSedecimant-3.stypo blockSedecimant-4 blockSedecimant-4.stypo blockSedecimant-5 blockSedecimant-5.stypo blockSedecimant-6 blockSedecimant-6.stypo blockSedecimant-7 blockSedecimant-7.stypo blockSedecimant-8 blockSedecimant-8.stypo blockSedecimant-9 blockSedecimant-9.stypo blockSedecimant-A blockSedecimant-A.stypo blockSedecimant-B blockSedecimant-B.stypo blockSedecimant-C blockSedecimant-C.stypo blockSedecimant-D blockSedecimant-D.stypo blockSedecimant-E blockSedecimant-E.stypo blockSedecimant-F blockSedecimant-F.stypo blockSedecimant-G blockSedecimant-G.stypo blockSedecimant-EFG blockSedecimant-EFG.stypo blockSedecimant-DEF blockSedecimant-DEF.stypo blockSedecimant-9D blockSedecimant-9D.stypo blockSedecimant-59D blockSedecimant-59D.stypo blockSedecimant-159 blockSedecimant-159.stypo blockSedecimant-15 blockSedecimant-15.stypo blockSedecimant-123 blockSedecimant-123.stypo blockSedecimant-234 blockSedecimant-234.stypo blockSedecimant-48 blockSedecimant-48.stypo blockSedecimant-48C blockSedecimant-48C.stypo blockSedecimant-8CG blockSedecimant-8CG.stypo blockSedecimant-CG blockSedecimant-CG.stypo verticalOneEighthBlock-2 verticalOneEighthBlock-2.stypo verticalOneEighthBlock-3 verticalOneEighthBlock-3.stypo verticalOneEighthBlock-4 verticalOneEighthBlock-4.stypo verticalOneEighthBlock-5 verticalOneEighthBlock-5.stypo verticalOneEighthBlock-6 verticalOneEighthBlock-6.stypo verticalOneEighthBlock-7 verticalOneEighthBlock-7.stypo horizontalOneEightBlock-2 horizontalOneEightBlock-2.stypo horizontalOneEightBlock-3 horizontalOneEightBlock-3.stypo horizontalOneEightBlock-4 horizontalOneEightBlock-4.stypo horizontalOneEightBlock-5 horizontalOneEightBlock-5.stypo horizontalOneEightBlock-6 horizontalOneEightBlock-6.stypo horizontalOneEightBlock-7 horizontalOneEightBlock-7.stypo leftAndLowerOneEightBlock leftAndLowerOneEightBlock.stypo leftAndUpperOneEightBlock leftAndUpperOneEightBlock.stypo rightAndUpperOneEightBlock rightAndUpperOneEightBlock.stypo rightAndLowerOneEightBlock rightAndLowerOneEightBlock.stypo upperAndLowerOneEightBlock upperAndLowerOneEightBlock.stypo upperThreeEighthsBlock upperThreeEighthsBlock.stypo upperFiveEighthsBlock upperFiveEighthsBlock.stypo upperSevenEighthsBlock upperSevenEighthsBlock.stypo rightOneQuarterBlock rightOneQuarterBlock.stypo rightThreeEighthsBlock rightThreeEighthsBlock.stypo rightFiveEighthsBlock rightFiveEighthsBlock.stypo rightThreeQuartersBlock rightThreeQuartersBlock.stypo rightSevenEighthsBlock rightSevenEighthsBlock.stypo leftTwoThirdsBlock leftTwoThirdsBlock.stypo leftOneThirdBlock leftOneThirdBlock.stypo heavyHorizontalFill heavyHorizontalFill.stypo blockSeparatedQuadrant-1 blockSeparatedQuadrant-1.stypo blockSeparatedQuadrant-2 blockSeparatedQuadrant-2.stypo blockSeparatedQuadrant-12 blockSeparatedQuadrant-12.stypo blockSeparatedQuadrant-3 blockSeparatedQuadrant-3.stypo blockSeparatedQuadrant-13 blockSeparatedQuadrant-13.stypo blockSeparatedQuadrant-23 blockSeparatedQuadrant-23.stypo blockSeparatedQuadrant-123 blockSeparatedQuadrant-123.stypo blockSeparatedQuadrant-4 blockSeparatedQuadrant-4.stypo blockSeparatedQuadrant-14 blockSeparatedQuadrant-14.stypo blockSeparatedQuadrant-24 blockSeparatedQuadrant-24.stypo blockSeparatedQuadrant-124 blockSeparatedQuadrant-124.stypo blockSeparatedQuadrant-34 blockSeparatedQuadrant-34.stypo blockSeparatedQuadrant-134 blockSeparatedQuadrant-134.stypo blockSeparatedQuadrant-234 blockSeparatedQuadrant-234.stypo blockSeparatedQuadrant-1234 blockSeparatedQuadrant-1234.stypo blockSeparatedSextant-1 blockSeparatedSextant-1.stypo blockSeparatedSextant-2 blockSeparatedSextant-2.stypo blockSeparatedSextant-12 blockSeparatedSextant-12.stypo blockSeparatedSextant-3 blockSeparatedSextant-3.stypo blockSeparatedSextant-13 blockSeparatedSextant-13.stypo blockSeparatedSextant-23 blockSeparatedSextant-23.stypo blockSeparatedSextant-123 blockSeparatedSextant-123.stypo blockSeparatedSextant-4 blockSeparatedSextant-4.stypo blockSeparatedSextant-14 blockSeparatedSextant-14.stypo blockSeparatedSextant-24 blockSeparatedSextant-24.stypo blockSeparatedSextant-124 blockSeparatedSextant-124.stypo blockSeparatedSextant-34 blockSeparatedSextant-34.stypo blockSeparatedSextant-134 blockSeparatedSextant-134.stypo blockSeparatedSextant-234 blockSeparatedSextant-234.stypo blockSeparatedSextant-1234 blockSeparatedSextant-1234.stypo blockSeparatedSextant-5 blockSeparatedSextant-5.stypo blockSeparatedSextant-15 blockSeparatedSextant-15.stypo blockSeparatedSextant-25 blockSeparatedSextant-25.stypo blockSeparatedSextant-125 blockSeparatedSextant-125.stypo blockSeparatedSextant-35 blockSeparatedSextant-35.stypo blockSeparatedSextant-135 blockSeparatedSextant-135.stypo blockSeparatedSextant-235 blockSeparatedSextant-235.stypo blockSeparatedSextant-1235 blockSeparatedSextant-1235.stypo blockSeparatedSextant-45 blockSeparatedSextant-45.stypo blockSeparatedSextant-145 blockSeparatedSextant-145.stypo blockSeparatedSextant-245 blockSeparatedSextant-245.stypo blockSeparatedSextant-1245 blockSeparatedSextant-1245.stypo blockSeparatedSextant-345 blockSeparatedSextant-345.stypo blockSeparatedSextant-1345 blockSeparatedSextant-1345.stypo blockSeparatedSextant-2345 blockSeparatedSextant-2345.stypo blockSeparatedSextant-12345 blockSeparatedSextant-12345.stypo blockSeparatedSextant-6 blockSeparatedSextant-6.stypo blockSeparatedSextant-16 blockSeparatedSextant-16.stypo blockSeparatedSextant-26 blockSeparatedSextant-26.stypo blockSeparatedSextant-126 blockSeparatedSextant-126.stypo blockSeparatedSextant-36 blockSeparatedSextant-36.stypo blockSeparatedSextant-136 blockSeparatedSextant-136.stypo blockSeparatedSextant-236 blockSeparatedSextant-236.stypo blockSeparatedSextant-1236 blockSeparatedSextant-1236.stypo blockSeparatedSextant-46 blockSeparatedSextant-46.stypo blockSeparatedSextant-146 blockSeparatedSextant-146.stypo blockSeparatedSextant-246 blockSeparatedSextant-246.stypo blockSeparatedSextant-1246 blockSeparatedSextant-1246.stypo blockSeparatedSextant-346 blockSeparatedSextant-346.stypo blockSeparatedSextant-1346 blockSeparatedSextant-1346.stypo blockSeparatedSextant-2346 blockSeparatedSextant-2346.stypo blockSeparatedSextant-12346 blockSeparatedSextant-12346.stypo blockSeparatedSextant-56 blockSeparatedSextant-56.stypo blockSeparatedSextant-156 blockSeparatedSextant-156.stypo blockSeparatedSextant-256 blockSeparatedSextant-256.stypo blockSeparatedSextant-1256 blockSeparatedSextant-1256.stypo blockSeparatedSextant-356 blockSeparatedSextant-356.stypo blockSeparatedSextant-1356 blockSeparatedSextant-1356.stypo blockSeparatedSextant-2356 blockSeparatedSextant-2356.stypo blockSeparatedSextant-12356 blockSeparatedSextant-12356.stypo blockSeparatedSextant-456 blockSeparatedSextant-456.stypo blockSeparatedSextant-1456 blockSeparatedSextant-1456.stypo blockSeparatedSextant-2456 blockSeparatedSextant-2456.stypo blockSeparatedSextant-12456 blockSeparatedSextant-12456.stypo blockSeparatedSextant-3456 blockSeparatedSextant-3456.stypo blockSeparatedSextant-13456 blockSeparatedSextant-13456.stypo blockSeparatedSextant-23456 blockSeparatedSextant-23456.stypo blockSeparatedSextant-123456 blockSeparatedSextant-123456.stypo largeType-1CE1A largeType-1CE1A.stypo largeType-1CE1B largeType-1CE1B.stypo largeType-1CE1C largeType-1CE1C.stypo largeType-1CE1D largeType-1CE1D.stypo largeType-1CE1E largeType-1CE1E.stypo largeType-1CE1F largeType-1CE1F.stypo largeType-1CE20 largeType-1CE20.stypo largeType-1CE21 largeType-1CE21.stypo largeType-1CE22 largeType-1CE22.stypo largeType-1CE23 largeType-1CE23.stypo largeType-1CE24 largeType-1CE24.stypo largeType-1CE25 largeType-1CE25.stypo largeType-1CE26 largeType-1CE26.stypo largeType-1CE27 largeType-1CE27.stypo largeType-1CE28 largeType-1CE28.stypo largeType-1CE29 largeType-1CE29.stypo largeType-1CE2A largeType-1CE2A.stypo largeType-1CE2B largeType-1CE2B.stypo largeType-1CE2C largeType-1CE2C.stypo largeType-1CE2D largeType-1CE2D.stypo largeType-1CE2E largeType-1CE2E.stypo largeType-1CE2F largeType-1CE2F.stypo largeType-1CE30 largeType-1CE30.stypo largeType-1CE31 largeType-1CE31.stypo largeType-1CE32 largeType-1CE32.stypo largeType-1CE33 largeType-1CE33.stypo largeType-1CE34 largeType-1CE34.stypo largeType-1CE35 largeType-1CE35.stypo largeType-1CE36 largeType-1CE36.stypo largeType-1CE37 largeType-1CE37.stypo largeType-1CE38 largeType-1CE38.stypo largeType-1CE39 largeType-1CE39.stypo largeType-1CE3A largeType-1CE3A.stypo largeType-1CE3B largeType-1CE3B.stypo largeType-1CE3C largeType-1CE3C.stypo largeType-1CE3D largeType-1CE3D.stypo largeType-1CE3E largeType-1CE3E.stypo largeType-1CE3F largeType-1CE3F.stypo largeType-1CE40 largeType-1CE40.stypo largeType-1CE41 largeType-1CE41.stypo largeType-1CE42 largeType-1CE42.stypo largeType-1CE43 largeType-1CE43.stypo largeType-1CE44 largeType-1CE44.stypo largeType-1CE45 largeType-1CE45.stypo largeType-1CE46 largeType-1CE46.stypo largeType-1CE47 largeType-1CE47.stypo largeType-1CE48 largeType-1CE48.stypo largeType-1CE49 largeType-1CE49.stypo largeType-1CE4A largeType-1CE4A.stypo largeType-1CE4B largeType-1CE4B.stypo largeType-1CE4C largeType-1CE4C.stypo largeType-1CE4D largeType-1CE4D.stypo largeType-1CE4E largeType-1CE4E.stypo largeType-1CE4F largeType-1CE4F.stypo largeType-1CE50 largeType-1CE50.stypo LIG  ];\n\n@NRW = [ behDotless-ar\nbehDotless-ar.fina\nbeh-ar\nbeh-ar.fina\npeh-ar\npeh-ar.fina\nbeeh-ar\nbeeh-ar.fina\nbeheh-ar\nbeheh-ar.fina\nteh-ar\nteh-ar.fina\ntehRing-ar\ntehRing-ar.fina\ntehThreedotsdown-ar\ntehThreedotsdown-ar.fina\ntheh-ar\ntheh-ar.fina\ntteh-ar\ntteh-ar.fina\ntteheh-ar\ntteheh-ar.fina\nteheh-ar\nteheh-ar.fina\nbehThreedotshorizontalbelow-ar\nbehThreedotshorizontalbelow-ar.fina\nbehThreedotsupabove-ar\nbehThreedotsupabove-ar.fina\nbehThreedotsupbelow-ar\nbehThreedotsupbelow-ar.fina\ntehThreedotsupbelow-ar\ntehThreedotsupbelow-ar.fina\nbehTwodotsbelowDotabove-ar\nbehTwodotsbelowDotabove-ar.fina\nbehVinvertedbelow-ar\nbehVinvertedbelow-ar.fina\nbehVabove-ar\nbehVabove-ar.fina\nbehVbelow-ar\nbehVbelow-ar.fina\nbehhamzaabove-ar\nbehhamzaabove-ar.fina\nseen-ar\nseen-ar.fina\nseenDotbelowDotabove-ar\nseenDotbelowDotabove-ar.fina\nseenThreedotsbelow-ar\nseenThreedotsbelow-ar.fina\nsheen-ar\nsheen-ar.fina\nsheenDotbelow-ar\nsheenDotbelow-ar.fina\nseenThreedotsbelowthreedots-ar\nseenThreedotsbelowthreedots-ar.fina\nsad-ar\nsad-ar.fina\nsadTwodotsbelow-ar\nsadTwodotsbelow-ar.fina\nsadThreedots-ar\nsadThreedots-ar.fina\nsadThreedotsbelow-ar\nsadThreedotsbelow-ar.fina\ndad-ar\ndad-ar.fina\ndadDotbelow-ar\ndadDotbelow-ar.fina\nfeh-ar\nfeh-ar.fina\nveh-ar\nveh-ar.fina\nfehDotless-ar\nfehDotless-ar.fina\nfehDotMovedbelow-ar\nfehDotbelow-ar\nfehDotbelow-ar.fina\nfehThreedotsbelow-ar\nfehThreedotsbelow-ar.fina\nfehDotbelowThreedotsabove-ar\nfehDotbelowThreedotsabove-ar.fina\npeheh-ar\npeheh-ar.fina\nseenFourdotsabove-ar\nseenFourdotsabove-ar.fina\nfehTwodotsbelow-ar\nfehTwodotsbelow-ar.fina\nfehThreedotsupbelow-ar\nfehThreedotsupbelow-ar.fina\nseenTwodotshorizontalabove-ar\nseenTwodotshorizontalabove-ar.fina\nseenTahTwodotshorizontalabove-ar\nseenTahTwodotshorizontalabove-ar.fina\nseenFourabove-ar\nseenFourabove-ar.fina\nseenVinvertedabove-ar\nseenVinvertedabove-ar.fina\nseenThreedotsbelowthreedots-ar\nseenThreedotsbelowthreedots-ar.fina\nbehMeemabove-ar\nbehMeemabove-ar.fina\npehMeemabove-ar\npehMeemabove-ar.fina\ntehTehabove-ar\ntehTehabove-ar.fina ];\n\n@EXD = [ behDotless-ar.alt\nbehDotless-ar.fina.alt\nbeh-ar.alt\nbeh-ar.fina.alt\npeh-ar.alt\npeh-ar.fina.alt\nbeeh-ar.alt\nbeeh-ar.fina.alt\nbeheh-ar.alt\nbeheh-ar.fina.alt\nteh-ar.alt\nteh-ar.fina.alt\ntehRing-ar.alt\ntehRing-ar.fina.alt\ntehThreedotsdown-ar.alt\ntehThreedotsdown-ar.fina.alt\ntheh-ar.alt\ntheh-ar.fina.alt\ntteh-ar.alt\ntteh-ar.fina.alt\ntteheh-ar.alt\ntteheh-ar.fina.alt\nteheh-ar.alt\nteheh-ar.fina.alt\nbehThreedotshorizontalbelow-ar.alt\nbehThreedotshorizontalbelow-ar.fina.alt\nbehThreedotsupabove-ar.alt\nbehThreedotsupabove-ar.fina.alt\nbehThreedotsupbelow-ar.alt\nbehThreedotsupbelow-ar.fina.alt\ntehThreedotsupbelow-ar.alt\ntehThreedotsupbelow-ar.fina.alt\nbehTwodotsbelowDotabove-ar.alt\nbehTwodotsbelowDotabove-ar.fina.alt\nbehVinvertedbelow-ar.alt\nbehVinvertedbelow-ar.fina.alt\nbehVabove-ar.alt\nbehVabove-ar.fina.alt\nbehVbelow-ar.alt\nbehVbelow-ar.fina.alt\nbehhamzaabove-ar.alt\nbehhamzaabove-ar.fina.alt\nseen-ar.alt\nseen-ar.fina.alt\nseenDotbelowDotabove-ar.alt\nseenDotbelowDotabove-ar.fina.alt\nseenThreedotsbelow-ar.alt\nseenThreedotsbelow-ar.fina.alt\nsheen-ar.alt\nsheen-ar.fina.alt\nsheenDotbelow-ar.alt\nsheenDotbelow-ar.fina.alt\nseenThreedotsbelowthreedots-ar.alt\nseenThreedotsbelowthreedots-ar.fina.alt\nsad-ar.alt\nsad-ar.fina.alt\nsadTwodotsbelow-ar.alt\nsadTwodotsbelow-ar.fina.alt\nsadThreedots-ar.alt\nsadThreedots-ar.fina.alt\nsadThreedotsbelow-ar.alt\nsadThreedotsbelow-ar.fina.alt\ndad-ar.alt\ndad-ar.fina.alt\ndadDotbelow-ar.alt\ndadDotbelow-ar.fina.alt\nfeh-ar.alt\nfeh-ar.fina.alt\nveh-ar.alt\nveh-ar.fina.alt\nfehDotless-ar.alt\nfehDotless-ar.fina.alt\nfehDotMovedbelow-ar.alt\nfehDotbelow-ar.alt\nfehDotbelow-ar.fina.alt\nfehThreedotsbelow-ar.alt\nfehThreedotsbelow-ar.fina.alt\nfehDotbelowThreedotsabove-ar.alt\nfehDotbelowThreedotsabove-ar.fina.alt\npeheh-ar.alt\npeheh-ar.fina.alt\nseenFourdotsabove-ar.alt\nseenFourdotsabove-ar.fina.alt\nfehTwodotsbelow-ar.alt\nfehTwodotsbelow-ar.fina.alt\nfehThreedotsupbelow-ar.alt\nfehThreedotsupbelow-ar.fina.alt\nseenTwodotsverticalabove-ar.alt\nseenTwodotsverticalabove-ar.fina.alt\nseenTahTwodotshorizontalabove-ar.alt\nseenTahTwodotshorizontalabove-ar.fina.alt\nseenFourabove-ar.alt\nseenFourabove-ar.fina.alt\nseenVinvertedabove-ar.alt\nseenVinvertedabove-ar.fina.alt\nseenThreedotsbelowthreedots-ar.alt\nseenThreedotsbelowthreedots-ar.fina.alt\nbehMeemabove-ar.alt\nbehMeemabove-ar.fina.alt\npehMeemabove-ar.alt\npehMeemabove-ar.fina.alt\ntehTehabove-ar.alt\ntehTehabove-ar.fina.alt ];\n\n@beh1 = [ beh-ar.init\npeh-ar.init\nbeeh-ar.init\nbeheh-ar.init\nteh-ar.init\ntehRing-ar.init\ntehThreedotsdown-ar.init\ntheh-ar.init\ntteh-ar.init\ntteheh-ar.init\nteheh-ar.init\nbehThreedotshorizontalbelow-ar.init\nbehThreedotsupabove-ar.init\nbehThreedotsupbelow-ar.init\nbehTwodotsbelowDotabove-ar.init\nbehVinvertedbelow-ar.init\nbehVabove-ar.init\nbehVbelow-ar.init\nnoon-ar.init\nnoonghunna-ar.init\nnoonAfrican-ar.init\nhehgoal-ar.init\nyeh-ar.init\nyehHamzaabove-ar.init\nyehVabove-ar.init\nyehTwodotsbelowHamzaabove-ar.init\nyehTwodotsbelowDotabove-ar.init\nyehVinverted-farsi.init\nyehTwodotsabove-farsi.init\nyehThreedotsabove-farsi.init\nyehTwoabove-farsi.init\nyehThreeabove-farsi.init\nyehFourbelow-farsi.init\nyehKashmiri-ar.init\nyehThreedotsbelow-ar.init\nyehbarreeTwoabove-ar.init\nyehbarreeThreeabove-ar.init\nhighhamzaYeh-ar.init\nnoonTwodotsbelow-ar.init\nnoonTahabove-ar.init\nnoonVabove-ar.init\nbehMeemabove-ar.init\npehMeemabove-ar.init\ntehTehabove-ar.init\nyehTwodotsbelowNoonabove-ar.init\nnoonThreedotsabove-ar.init\nnoonDotbelow-ar.init\nrnoon-ar.init\nnoonRing-ar.init\nhehgoalHamzaabove-ar.init\nyeh-farsi.init\ne-ar.init ];\n\n@beh2 = [ beh-ar.init.alt\npeh-ar.init.alt\nbeeh-ar.init.alt\nbeheh-ar.init.alt\nteh-ar.init.alt\ntehRing-ar.init.alt\ntehThreedotsdown-ar.init.alt\ntheh-ar.init.alt\ntteh-ar.init.alt\ntteheh-ar.init.alt\nteheh-ar.init.alt\nbehThreedotshorizontalbelow-ar.init.alt\nbehThreedotsupabove-ar.init.alt\nbehThreedotsupbelow-ar.init.alt\nbehTwodotsbelowDotabove-ar.init.alt\nbehVinvertedbelow-ar.init.alt\nbehVabove-ar.init.alt\nbehVbelow-ar.init.alt\nnoon-ar.init.alt\nnoonghunna-ar.init.alt\nnoonAfrican-ar.init.alt\nhehgoal-ar.init.alt\nyeh-ar.init.alt\nyehHamzaabove-ar.init.alt\nyehVabove-ar.init.alt\nyehTwodotsbelowHamzaabove-ar.init.alt\nyehTwodotsbelowDotabove-ar.init.alt\nyehVinverted-farsi.init.alt\nyehTwodotsabove-farsi.init.alt\nyehThreedotsabove-farsi.init.alt\nyehTwoabove-farsi.init.alt\nyehThreeabove-farsi.init.alt\nyehFourbelow-farsi.init.alt\nyehKashmiri-ar.init.alt\nyehThreedotsbelow-ar.init.alt\nyehbarreeTwoabove-ar.init.alt\nyehbarreeThreeabove-ar.init.alt\nhighhamzaYeh-ar.init.alt\nnoonTwodotsbelow-ar.init.alt\nnoonTahabove-ar.init.alt\nnoonVabove-ar.init.alt\nbehMeemabove-ar.init.alt\npehMeemabove-ar.init.alt\ntehTehabove-ar.init.alt\nyehTwodotsbelowNoonabove-ar.init.alt\nnoonThreedotsabove-ar.init.alt\nnoonDotbelow-ar.init.alt\nrnoon-ar.init.alt\nnoonRing-ar.init.alt\nhehgoalHamzaabove-ar.init.alt\nyeh-farsi.init.alt\ne-ar.init.alt ];\n\n@alef1 = [ alef-ar.fina\nalef-ar.fina.short\nalefHamzaabove-ar.fina\nalefHamzabelow-ar.fina\nalefMadda-ar.fina\nalefWasla-ar.fina\nalefTwoabove-ar.fina\nalefThreeabove-ar.fina\nalefWavyhamzabelow-ar.fina\nalefWavyhamzaabove-ar.fina ];\n\n@alef2 = [ alef-ar.fina.alt\nalef-ar.fina.short.alt\nalefHamzaabove-ar.fina.alt\nalefHamzabelow-ar.fina.alt\nalefMadda-ar.fina.alt\nalefWasla-ar.fina.alt\nalefTwoabove-ar.fina.alt\nalefThreeabove-ar.fina.alt\nalefWavyhamzabelow-ar.fina.alt\nalefWavyhamzaabove-ar.fina.alt ];\n\n@arlig1 = [ alef-ar.fina\nalef-ar.fina.short\nalefHamzaabove-ar.fina\nalefHamzabelow-ar.fina\nalefMadda-ar.fina\nalefWasla-ar.fina\nalefTwoabove-ar.fina\nalefThreeabove-ar.fina\nalefWavyhamzaabove-ar.fina\nalefWavyhamzabelow-ar.fina\nhighhamzaAlef-ar.fina\nalefFathatan-ar.fina\nlam-ar.init\nlamVabove-ar.init\nlamDotabove-ar.init\nlamThreedotsabove-ar.init\nlamThreedotsbelow-ar.init\nlamDoublebar-ar.init\nlamBar-ar.init ];\n\n@arlig2 = [ _alef-ar.fina.rlig\n_alef-ar.fina.short.rlig\n_alefHamzaabove-ar.fina.rlig\n_alefHamzabelow-ar.fina.rlig\n_alefMadda-ar.fina.rlig\n_alefWasla-ar.fina.rlig\n_alefTwoabove-ar.fina.rlig\n_alefThreeabove-ar.fina.rlig\n_highhamzaAlef-ar.fina.rlig\n_alefWavyhamzaabove-ar.fina.rlig\n_alefWavyhamzabelow-ar.fina.rlig\n_alefFathatan-ar.fina.rlig\nlam-ar.init.rlig\nlamVabove-ar.init.rlig\nlamDotabove-ar.init.rlig\nlamThreedotsabove-ar.init.rlig\nlamThreedotsbelow-ar.init.rlig\nlamDoublebar-ar.init.rlig\nlamBar-ar.init.rlig ];\n\n@arlig3 = [ alef-ar.fina\nalef-ar.fina.short\nalefHamzaabove-ar.fina\nalefHamzabelow-ar.fina\nalefMadda-ar.fina\nalefWasla-ar.fina\nalefTwoabove-ar.fina\nalefThreeabove-ar.fina\nalefWavyhamzaabove-ar.fina\nalefWavyhamzabelow-ar.fina\nhighhamzaAlef-ar.fina\nalefFathatan-ar.fina\nlam-ar.medi\nlamVabove-ar.medi\nlamDotabove-ar.medi\nlamThreedotsabove-ar.medi\nlamThreedotsbelow-ar.medi\nlamDoublebar-ar.medi\nlamBar-ar.medi ];\n\n@arlig4 = [ alef-ar.fina.rlig\nalef-ar.fina.short.rlig\nalefHamzaabove-ar.fina.rlig\nalefHamzabelow-ar.fina.rlig\nalefMadda-ar.fina.rlig\nalefWasla-ar.fina.rlig\nalefTwoabove-ar.fina.rlig\nalefThreeabove-ar.fina.rlig\nalefWavyhamzaabove-ar.fina.rlig\nalefWavyhamzabelow-ar.fina.rlig\nhighhamzaAlef-ar.fina.rlig\nalefFathatan-ar.fina.rlig\nlam-ar.medi.rlig\nlamVabove-ar.medi.rlig\nlamDotabove-ar.medi.rlig\nlamThreedotsabove-ar.medi.rlig\nlamThreedotsbelow-ar.medi.rlig\nlamDoublebar-ar.medi.rlig\nlamBar-ar.medi.rlig ];\n\n# Prefix: Languagesystems\n# automatic\nlanguagesystem DFLT dflt;\n\nlanguagesystem arab dflt;\n\nlanguagesystem latn dflt;\nlanguagesystem latn ROM;\nlanguagesystem latn MOL;\nlanguagesystem latn PLK;\nlanguagesystem latn NLD;\n\nlanguagesystem cyrl dflt;\nlanguagesystem cyrl BGR;\nlanguagesystem cyrl SRB;\n\nlanguagesystem hebr dflt;\n\n\nfeature aalt {\n# automatic\nfeature calt;\nfeature locl;\nfeature subs;\nfeature sinf;\nfeature sups;\nfeature numr;\nfeature dnom;\nfeature frac;\nfeature ordn;\nfeature case;\nfeature ss02;\nfeature zero;\nfeature ss19;\nfeature rclt;\nfeature zero;\nfeature ss20;\n\n} aalt;\n\nfeature calt {\n### Less - It is convenient to have this lookup set at the start. \nlookup less_asciitilde {\n  ignore sub less less' asciitilde;\n  ignore sub less' asciitilde asciitilde asciitilde;\n  sub less_asciitilde.liga   asciitilde'  by LIG;\n  sub less'                  asciitilde   by less_asciitilde.liga;\n} less_asciitilde;\n\nlookup less_asciitilde_asciitilde {\n  sub less_asciitilde_asciitilde.liga  LIG  asciitilde'  by LIG;\n  sub less_asciitilde.liga'            LIG  asciitilde   by less_asciitilde_asciitilde.liga;\n} less_asciitilde_asciitilde;\n\nlookup less_asterisk {\n  ignore sub less less' asterisk;\n  ignore sub less' asterisk asterisk;\n  sub less_asterisk.liga   asterisk'  by LIG;\n  sub less'                asterisk   by less_asterisk.liga;\n} less_asterisk;\n\nlookup less_dollar {\n  ignore sub less less' dollar;\n  ignore sub less' dollar dollar;\n  sub less_dollar.liga dollar' by LIG;\n  sub less'            dollar  by less_dollar.liga;\n} less_dollar;\n\nlookup less_equal {\n  ignore sub less less' equal;\n  ignore sub less' equal equal;\n  ignore sub parenleft question less' equal;\n  ignore sub equal less' equal;\n  ignore sub less' equal [less greater bar colon exclam slash];\n  sub less_equal.liga   equal'  by LIG;\n  sub less'             equal   by less_equal.liga;\n} less_equal;\n\nlookup less_greater {\n  ignore sub less less' greater;\n  ignore sub less' greater greater;\n  sub less_greater.liga   greater'  by LIG;\n  sub less'               greater   by less_greater.liga;\n} less_greater;\n\nlookup less_plus {\n  ignore sub less less' plus;\n  ignore sub less' plus plus;\n  sub less_plus.liga  plus'  by LIG;\n  sub less'           plus   by less_plus.liga;\n} less_plus;\n\nlookup less_slash {\n  ignore sub less less' slash;\n  ignore sub less' slash slash;\n  sub less_slash.liga slash'  by LIG;\n  sub less'           slash   by less_slash.liga;\n} less_slash;\n\nlookup less_bar {\n  ignore sub less less' bar;\n  ignore sub less' bar bar bar bar;\n  ignore sub less' bar bar greater;\n  sub less_bar.liga bar'  by LIG;\n  sub less'         bar   by less_bar.liga;\n} less_bar;\n\nlookup less_bar_bar {\n  sub less_bar_bar.liga LIG   bar'  by LIG;\n  sub less_bar.liga'    LIG   bar   by less_bar_bar.liga;\n} less_bar_bar;\n\nlookup less_bar_bar_bar {\n  sub less_bar_bar_bar.liga LIG   LIG   bar'  by LIG;\n  sub less_bar_bar.liga'    LIG   LIG   bar   by less_bar_bar_bar.liga;\n} less_bar_bar_bar;\n\n# generally it is useful to have the duplicating sequences in a row. This avoids potential badness. \n\nlookup less_less {\n  ignore sub less less' less;\n  ignore sub less' less less less;\n  ignore sub less' less [asterisk plus dollar];\n  ignore sub [hyphen equal] less' less;\n  ignore sub less' less hyphen;\n  ignore sub less' less equal [equal less greater bar colon exclam slash];\n  ignore sub less' less less [asterisk plus dollar];\n  sub less_less.liga  less'  by LIG;\n  sub less'           less   by less_less.liga;\n} less_less;\n\nlookup less_less_less {\n  sub less_less_less.liga   LIG  less'  by LIG;\n  sub less_less.liga'  LIG  less   by less_less_less.liga;\n} less_less_less;\n\nlookup less_asciitilde_greater {\n  ignore sub less_asciitilde.liga' LIG greater greater;\n  sub less_asciitilde_greater.liga  LIG  greater'  by LIG;\n  sub less_asciitilde.liga'         LIG  greater   by less_asciitilde_greater.liga;\n} less_asciitilde_greater;\n\nlookup less_asterisk_greater {\n  sub less_asterisk_greater.liga  LIG  greater'  by LIG;\n  sub less_asterisk.liga'       LIG  greater  by less_asterisk_greater.liga;\n} less_asterisk_greater;\n\nlookup less_dollar_greater {\n  sub less_dollar_greater.liga   LIG    greater'  by LIG;\n  sub less_dollar.liga'          LIG    greater   by less_dollar_greater.liga;\n} less_dollar_greater;\n\nlookup less_plus_greater {\n  sub less_plus_greater.liga  LIG  greater'  by LIG;\n  sub less_plus.liga'         LIG  greater   by less_plus_greater.liga;\n} less_plus_greater;\n\nlookup less_slash_greater {\n  ignore sub less_slash.liga' LIG greater greater;\n  sub less_slash_greater.liga LIG   greater'  by LIG;\n  sub less_slash.liga'        LIG   greater   by less_slash_greater.liga;\n} less_slash_greater;\n\nlookup less_bar_greater {\n  ignore sub less_bar.liga' LIG greater greater;\n  sub less_bar_greater.liga LIG   greater'  by LIG;\n  sub less_bar.liga'        LIG   greater   by less_bar_greater.liga;\n} less_bar_greater;\n\nlookup less_exclam_hyphen_hyphen {\n  ignore sub less less' exclam hyphen hyphen;\n  ignore sub less' exclam hyphen hyphen hyphen;\n  ignore sub parenleft question less' exclam hyphen hyphen;\n  sub less_exclam_hyphen_hyphen.liga  LIG     LIG       hyphen' by LIG;\n  sub less_exclam_hyphen_hyphen.liga  LIG     hyphen'   hyphen  by LIG;\n  sub less_exclam_hyphen_hyphen.liga  exclam' hyphen    hyphen  by LIG;\n  sub less'                           exclam  hyphen    hyphen  by less_exclam_hyphen_hyphen.liga;\n} less_exclam_hyphen_hyphen;\n\n\n### Ampersand\nlookup ampersand_ampersand {\n  ignore sub ampersand ampersand' ampersand;\n  ignore sub ampersand' ampersand ampersand;\n  sub ampersand_ampersand.liga  ampersand'  by LIG;\n  sub ampersand'                ampersand   by ampersand_ampersand.liga;\n} ampersand_ampersand;\n\n\n### Asciicircum\nlookup asciicircum_equal {\n  ignore sub asciicircum asciicircum' equal;\n  ignore sub asciicircum' equal equal;\n  sub asciicircum_equal.liga    equal'    by LIG;\n  sub asciicircum'              equal     by asciicircum_equal.liga;\n} asciicircum_equal;\n\n\n### Asciitilde\nlookup asciitilde_asciitilde {\n  ignore sub asciitilde asciitilde' asciitilde;\n  ignore sub asciitilde' asciitilde asciitilde;\n  sub asciitilde_asciitilde.liga  asciitilde'   by LIG;\n  sub asciitilde'                 asciitilde    by asciitilde_asciitilde.liga;\n} asciitilde_asciitilde;\n\nlookup asciitilde_at {\n  ignore sub asciitilde asciitilde' at;\n  ignore sub asciitilde' at at;\n  sub asciitilde_at.liga  at'   by LIG;\n  sub asciitilde'         at    by asciitilde_at.liga;\n} asciitilde_at;\n\nlookup asciitilde_greater {\n  ignore sub asciitilde asciitilde' greater;\n  ignore sub asciitilde' greater greater;\n  sub asciitilde_greater.liga greater'  by LIG;\n  sub asciitilde'             greater   by asciitilde_greater.liga;\n} asciitilde_greater;\n\nlookup asciitilde_hyphen {\n  ignore sub asciitilde asciitilde' hyphen;\n  ignore sub asciitilde' hyphen hyphen;\n  sub asciitilde_hyphen.liga  hyphen'   by LIG;\n  sub asciitilde'             hyphen    by asciitilde_hyphen.liga;\n} asciitilde_hyphen;\n\nlookup asciitilde_asciitilde_greater {\n  ignore sub asciitilde_asciitilde.liga' LIG greater greater;\n  sub asciitilde_asciitilde_greater.liga  LIG  greater'  by LIG;\n  sub asciitilde_asciitilde.liga'         LIG  greater   by asciitilde_asciitilde_greater.liga;\n} asciitilde_asciitilde_greater;\n\nlookup asciitilde_equal {\n  ignore sub asciitilde asciitilde' equal;\n  ignore sub asciitilde' equal equal;\n  sub asciitilde_equal.liga  equal'   by LIG;\n  sub asciitilde'             equal    by asciitilde_equal.liga;\n} asciitilde_equal;\n\n\n### Asterisk\nlookup asterisk_asterisk {\n  ignore sub asterisk asterisk' asterisk;\n  ignore sub asterisk' asterisk asterisk asterisk;\n  ignore sub slash asterisk' asterisk;\n  ignore sub asterisk' asterisk slash;\n  sub asterisk_asterisk.liga    asterisk'   by LIG;\n  sub asterisk'                 asterisk    by asterisk_asterisk.liga;\n} asterisk_asterisk;\n\nlookup asterisk_asterisk_asterisk {\n  ignore sub asterisk_asterisk.liga' LIG asterisk slash;\n  sub asterisk_asterisk_asterisk.liga LIG  asterisk'  by LIG;\n  sub asterisk_asterisk.liga'         LIG  asterisk   by asterisk_asterisk_asterisk.liga;\n} asterisk_asterisk_asterisk;\n\nlookup asterisk_greater {\n  ignore sub asterisk asterisk' greater;\n  ignore sub asterisk' greater greater;\n  sub asterisk_greater.liga   greater'  by LIG;\n  sub asterisk'               greater   by asterisk_greater.liga;\n} asterisk_greater;\n\nlookup asterisk_slash {\n  ignore sub asterisk asterisk' slash;\n  ignore sub asterisk' slash slash;\n  ignore sub slash asterisk' slash;\n  ignore sub asterisk' slash asterisk;\n  sub asterisk_slash.liga    slash'   by LIG;\n  sub asterisk'              slash    by asterisk_slash.liga;\n} asterisk_slash;\n\nlookup asterisk_parenright {\n  ignore sub asterisk asterisk' parenright;\n  ignore sub asterisk' parenright parenright;\n  sub asterisk_parenright.liga  parenright' by LIG;\n  sub asterisk'                 parenright  by asterisk_parenright.liga;\n} asterisk_parenright;\n\n### Backslash\nlookup backslash_slash {\n  ignore sub @NotSpace backslash' slash;\n  ignore sub backslash' slash @NotSpace;\n  sub backslash_slash.liga  slash'  by LIG;\n  sub backslash'  slash  by backslash_slash.liga;\n} backslash_slash;\n\nlookup backslash_backslash {\n  ignore sub backslash backslash' backslash;\n  ignore sub backslash' backslash backslash;\n  sub backslash_backslash.liga  backslash'  by LIG;\n  sub backslash'  backslash  by backslash_backslash.liga;\n} backslash_backslash;\n\n\n### Bar\nlookup bar_bar {\n  ignore sub bar bar' bar;\n  ignore sub bar' bar bar bar;\n  ignore sub [hyphen equal] bar' bar;\n  ignore sub bar' bar [hyphen equal];\n  ignore sub bar' bar bar [hyphen equal];\n  ignore sub bar' bar equal [equal less greater bar colon exclam slash];\n  ignore sub bar bar' bar greater;\n  ignore sub [less greater] bar' bar [less greater];\n  ignore sub less bar' bar;\n  ignore sub less bar bar';\n  sub bar_bar.liga  bar' by LIG;\n  sub bar'          bar  by bar_bar.liga;\n} bar_bar;\n\nlookup bar_bar_bar {\n  sub bar_bar_bar.liga  LIG bar'  by LIG;\n  sub bar_bar.liga'     LIG bar   by bar_bar_bar.liga;\n} bar_bar_bar;\n\nlookup bar_greater {\n  ignore sub bar bar' greater;\n  ignore sub bar' greater greater;\n  ignore sub less bar bar' greater;\n  sub bar_greater.liga  greater' by LIG;\n  sub bar'              greater  by bar_greater.liga;\n} bar_greater;\n\nlookup bar_braceright {\n  ignore sub bar bar' braceright;\n  ignore sub bar' braceright braceright;\n  ignore sub braceleft bar' braceright;\n  sub bar_braceright.liga braceright' by LIG;\n  sub bar'                braceright  by bar_braceright.liga;\n} bar_braceright;\n\nlookup bar_bracketright {\n  ignore sub bar bar' bracketright;\n  ignore sub bar' bracketright bracketright;\n  ignore sub bracketleft bar' bracketright;\n  sub bar_bracketright.liga bracketright' by LIG;\n  sub bar'                  bracketright  by bar_bracketright.liga;\n} bar_bracketright;\n\nlookup bar_bar_greater {\n  ignore sub bar_bar.liga' LIG greater greater;\n  sub bar_bar_greater.liga  LIG   greater' by LIG;\n  sub bar_bar.liga'         LIG   greater  by bar_bar_greater.liga;\n} bar_bar_greater;\n\nlookup bar_bar_bar_greater {\n  ignore sub bar_bar_bar.liga' LIG LIG greater greater;\n  sub bar_bar_bar_greater.liga LIG LIG greater'  by LIG;\n  sub bar_bar_bar.liga' LIG LIG greater  by bar_bar_bar_greater.liga;\n\n} bar_bar_bar_greater;\n\n\n### Brace left\nlookup braceleft_bar {\n  ignore sub braceleft braceleft' bar;\n  ignore sub braceleft' bar bar;\n  ignore sub braceleft' bar braceright;\n  sub braceleft_bar.liga  bar'  by LIG;\n  sub braceleft'          bar   by braceleft_bar.liga;\n} braceleft_bar;\n\n### Brace right\nlookup braceright_numbersign {\n  ignore sub braceright braceright' numbersign;\n  ignore sub braceright' numbersign numbersign;\n  sub braceright_numbersign.liga  numbersign'  by LIG;\n  sub braceright'                 numbersign   by braceright_numbersign.liga;\n} braceright_numbersign;\n\n### Bracket left\nlookup bracketleft_bar {\n  ignore sub bracketleft bracketleft' bar;\n  ignore sub bracketleft' bar bar;\n  ignore sub bracketleft' bar bracketright;\n  sub bracketleft_bar.liga  bar' by LIG;\n  sub bracketleft'          bar  by bracketleft_bar.liga;\n} bracketleft_bar;\n\n\n### Bracket right\nlookup bracketright_numbersign {\n  ignore sub bracketright bracketright' numbersign;\n  ignore sub bracketright' numbersign numbersign;\n  sub bracketright_numbersign.liga  numbersign'  by LIG;\n  sub bracketright'                 numbersign   by bracketright_numbersign.liga;\n} bracketright_numbersign;\n\n\n### Colon\nlookup colon_colon {\n  ignore sub colon colon' colon;\n  ignore sub colon' colon colon colon;\n  ignore sub parenleft question colon' colon;\n  ignore sub colon' colon [less greater];\n  ignore sub [less greater] colon' colon;\n  sub colon_colon.liga  colon'  by LIG;\n  sub colon'            colon   by colon_colon.liga;\n} colon_colon;\n\nlookup colon_colon_colon {\n  sub colon_colon_colon.liga   LIG   colon' by LIG;\n  sub colon_colon.liga'        LIG   colon  by colon_colon_colon.liga;\n} colon_colon_colon;\n\nlookup colon_equal {\n  ignore sub colon colon' equal;\n  ignore sub colon' equal equal;\n  ignore sub parenleft question colon' equal;\n  ignore sub equal colon' equal;\n  sub colon_equal.liga  equal'  by LIG;\n  sub colon'            equal   by colon_equal.liga;\n} colon_equal;\n\nlookup colon_colon_equal {\n  ignore sub colon_colon.liga' LIG equal equal;\n  sub colon_colon_equal.liga  LIG   equal'  by LIG;\n  sub colon_colon.liga'       LIG   equal   by colon_colon_equal.liga;\n} colon_colon_equal;\n\nlookup colon_slash_slash {\n  ignore sub colon colon' slash slash;\n  ignore sub colon' slash slash slash;\n  sub colon_slash_slash.liga  LIG     slash' by LIG;\n  sub colon_slash_slash.liga  slash'  slash  by LIG;\n  sub colon'                  slash   slash  by colon_slash_slash.liga;\n} colon_slash_slash;\n\n\n## Dollar\nlookup dollar_greater {\n  ignore sub dollar dollar' greater;\n  ignore sub dollar' greater greater;\n  sub dollar_greater.liga greater'  by LIG;\n  sub dollar' greater  by dollar_greater.liga;\n} dollar_greater;\n\n\n### Exclam (for equal see below)\nlookup exclam_equal {\n  ignore sub exclam exclam' equal;\n  ignore sub exclam' equal equal equal;\n  ignore sub parenleft question exclam' equal;\n  ignore sub parenleft question less exclam' equal;\n  ignore sub equal exclam' equal;\n  sub exclam_equal.liga equal'  by LIG;\n  sub exclam'           equal   by exclam_equal.liga;\n} exclam_equal;\n\nlookup exclam_equal_equal {\n  sub exclam_equal_equal.liga LIG   equal'  by LIG;\n  sub exclam_equal.liga' LIG   equal  by exclam_equal_equal.liga;\n} exclam_equal_equal;\n\nlookup exclam_exclam {\n  ignore sub exclam exclam' exclam;\n  ignore sub exclam' exclam exclam;\n  ignore sub parenleft question exclam' exclam;\n  ignore sub parenleft question less exclam' exclam;\n  sub exclam_exclam.liga  exclam' by LIG;\n  sub exclam'             exclam  by exclam_exclam.liga;\n} exclam_exclam;\n\nlookup exclam_exclam_period {\n  ignore sub exclam_exclam.liga' LIG period period;\n  sub exclam_exclam_period.liga LIG  period' by LIG;\n  sub exclam_exclam.liga'       LIG  period  by exclam_exclam_period.liga;\n} exclam_exclam_period;\n\nlookup exclam_period {\n  ignore sub exclam exclam' period;\n  ignore sub exclam' period period;\n  sub exclam_period.liga  period'  by LIG;\n  sub exclam'             period   by exclam_period.liga;\n} exclam_period;\n\nlookup exclam_colon {\n  ignore sub exclam exclam' colon;\n  ignore sub exclam' colon colon;\n  sub exclam_colon.liga  \tcolon'  by LIG;\n  sub exclam'               colon   by exclam_colon.liga;\n} exclam_colon;\n\n## Equal - Made sense to shift this below the exclam to avoid issues\nlookup equal_equal {\n  ignore sub equal equal' equal;\n  ignore sub equal' equal equal equal;\n  ignore sub parenleft question equal' equal;\n  ignore sub parenleft question less equal' equal;\n  ignore sub less question equal' equal;\n  ignore sub bracketleft equal' equal;\n  ignore sub equal' equal bracketright;\n  ignore sub equal [colon exclam] equal' equal;\n  ignore sub [less greater bar slash] equal' equal;\n  ignore sub equal' equal [less greater bar slash] ;\n  ignore sub equal' equal [colon exclam] equal;\n  sub equal_equal.liga  equal'  by LIG;\n  sub equal'  equal  by equal_equal.liga;\n} equal_equal;\n\nlookup equal_equal_equal {\n  sub equal_equal_equal.liga  LIG     equal' by LIG;\n  sub equal_equal.liga'       LIG   equal  by equal_equal_equal.liga;\n} equal_equal_equal;\n\n### Hyphen\nlookup hyphen_asciitilde {\n  ignore sub hyphen hyphen' asciitilde;\n  ignore sub hyphen' asciitilde asciitilde;\n  sub hyphen_asciitilde.liga    asciitilde'  by LIG;\n  sub hyphen'                   asciitilde   by hyphen_asciitilde.liga;\n} hyphen_asciitilde;\n\nlookup hyphen_hyphen {\n  ignore sub hyphen hyphen' hyphen;\n  ignore sub hyphen' hyphen hyphen hyphen;\n  ignore sub [less greater bar] hyphen' hyphen;\n  ignore sub hyphen' hyphen [less greater bar];\n  sub hyphen_hyphen.liga   hyphen'  by LIG;\n  sub hyphen'               hyphen   by hyphen_hyphen.liga;\n} hyphen_hyphen;\n\nlookup hyphen_hyphen_hyphen {\n  ignore sub hyphen_hyphen.liga' LIG hyphen [less greater bar];\n  sub hyphen_hyphen_hyphen.liga   LIG    hyphen'   by LIG;\n  sub hyphen_hyphen.liga'         LIG    hyphen    by hyphen_hyphen_hyphen.liga;\n} hyphen_hyphen_hyphen;\n\n\n### Greater\nlookup greater_greater {\n  ignore sub greater greater' greater;\n  ignore sub greater' greater greater greater;\n  ignore sub [asterisk plus dollar] greater' greater;\n  ignore sub [hyphen equal] greater' greater;\n  ignore sub greater' greater hyphen;\n  ignore sub greater' greater equal [equal less greater bar colon exclam slash];\n  sub greater_greater.liga  greater'  by LIG;\n  sub greater'              greater   by greater_greater.liga;\n} greater_greater;\n\nlookup greater_greater_greater {\n  sub greater_greater_greater.liga  LIG   greater'  by LIG;\n  sub greater_greater.liga'         LIG   greater   by greater_greater_greater.liga;\n} greater_greater_greater;\n\nlookup greater_equal {\n  ignore sub greater greater' equal;\n  ignore sub greater' equal equal;\n  ignore sub equal greater' equal;\n  ignore sub greater' equal [less greater bar colon exclam slash];\n  sub greater_equal.liga  equal'  by LIG;\n  sub greater'            equal   by greater_equal.liga;\n} greater_equal;\n\n### Less moved to top of CALT\n\n### Numbersign\nlookup numbersign_braceleft {\n  ignore sub numbersign numbersign' braceleft;\n  ignore sub numbersign' braceleft braceleft;\n  sub numbersign_braceleft.liga braceleft'  by LIG;\n  sub numbersign'               braceleft   by numbersign_braceleft.liga;\n} numbersign_braceleft;\n\nlookup numbersign_bracketleft {\n  ignore sub numbersign numbersign' bracketleft;\n  ignore sub numbersign' bracketleft bracketleft;\n  sub numbersign_bracketleft.liga bracketleft'  by LIG;\n  sub numbersign'                 bracketleft   by numbersign_bracketleft.liga;\n} numbersign_bracketleft;\n\nlookup numbersign_colon {\n  ignore sub numbersign numbersign' colon;\n  ignore sub numbersign' colon colon;\n  sub numbersign_colon.liga colon'  by LIG;\n  sub numbersign'           colon   by numbersign_colon.liga;\n} numbersign_colon;\n\nlookup numbersign_equal {\n  ignore sub numbersign numbersign' equal;\n  ignore sub numbersign' equal equal;\n  sub numbersign_equal.liga equal'  by LIG;\n  sub numbersign'           equal   by numbersign_equal.liga;\n} numbersign_equal;\n\nlookup numbersign_exclam {\n  ignore sub numbersign numbersign' exclam;\n  ignore sub numbersign' exclam exclam;\n  sub numbersign_exclam.liga  exclam'  by LIG;\n  sub numbersign'             exclam   by numbersign_exclam.liga;\n} numbersign_exclam;\n\nlookup numbersign_parenleft {\n  ignore sub numbersign numbersign' parenleft;\n  ignore sub numbersign' parenleft parenleft;\n  sub numbersign_parenleft.liga parenleft'  by LIG;\n  sub numbersign'               parenleft   by numbersign_parenleft.liga;\n} numbersign_parenleft;\n\nlookup numbersign_question {\n  ignore sub numbersign numbersign' question;\n  ignore sub numbersign' question question;\n  sub numbersign_question.liga  question'  by LIG;\n  sub numbersign'               question   by numbersign_question.liga;\n} numbersign_question;\n\nlookup numbersign_underscore {\n  ignore sub numbersign numbersign' underscore;\n  ignore sub numbersign' underscore underscore;\n  sub numbersign_underscore.liga  underscore'  by LIG;\n  sub numbersign'                 underscore   by numbersign_underscore.liga;\n} numbersign_underscore;\n\nlookup numbersign_underscore_parenleft {\n  ignore sub numbersign_underscore.liga' LIG parenleft parenleft;\n  sub numbersign_underscore_parenleft.liga  LIG  parenleft'  by LIG;\n  sub numbersign_underscore.liga'           LIG  parenleft   by numbersign_underscore_parenleft.liga;\n} numbersign_underscore_parenleft;\n\n\n### Paren left\nlookup parenleft_asterisk {\n  ignore sub parenleft  parenleft'  asterisk;\n  ignore sub parenleft' asterisk    asterisk;\n  sub parenleft_asterisk.liga asterisk'  by LIG;\n  sub parenleft'              asterisk   by parenleft_asterisk.liga;\n} parenleft_asterisk;\n\n\n### Percent\nlookup percent_percent {\n  ignore sub percent percent' percent;\n  ignore sub percent' percent percent;\n  sub percent_percent.liga  percent'  by LIG;\n  sub percent'              percent   by percent_percent.liga;\n} percent_percent;\n\n\n### Period\nlookup period_equal {\n  ignore sub period period' equal;\n  ignore sub period' equal equal;\n  sub period_equal.liga equal'  by LIG;\n  sub period'           equal   by period_equal.liga;\n} period_equal;\n\nlookup period_period {\n  ignore sub period period' period;\n  ignore sub period' period period period;\n  sub period_period.liga period'  by LIG;\n  sub period'            period   by period_period.liga;\n} period_period;\n\nlookup period_period_period {\n  sub period_period_period.liga LIG  period'  by LIG;\n  sub period_period.liga'       LIG  period   by period_period_period.liga;\n} period_period_period;\n\nlookup period_question {\n  ignore sub period period' question;\n  ignore sub period' question question;\n  sub period_question.liga  question'  by LIG;\n  sub period'               question   by period_question.liga;\n} period_question;\n\nlookup period_hyphen {\n  ignore sub period period' hyphen;\n  ignore sub period' hyphen hyphen;\n  sub period_hyphen.liga  hyphen'  by LIG;\n  sub period'               hyphen   by period_hyphen.liga;\n} period_hyphen;\n\nlookup period_period_equal {\n  ignore sub period_period.liga' LIG equal equal;\n  sub period_period_equal.liga  LIG  equal'  by LIG;\n  sub period_period.liga'       LIG  equal   by period_period_equal.liga;\n} period_period_equal;\n\nlookup period_period_less {\n  ignore sub period_period.liga' LIG less less;\n  sub period_period_less.liga  LIG  less'  by LIG;\n  sub period_period.liga'      LIG  less   by period_period_less.liga;\n} period_period_less;\n\n\n### Plus\nlookup plus_greater {\n  ignore sub plus plus' greater;\n  ignore sub plus' greater greater;\n  sub plus_greater.liga   greater'  by LIG;\n  sub plus'               greater   by plus_greater.liga;\n} plus_greater;\n\nlookup plus_plus {\n  ignore sub plus plus' plus;\n  ignore sub plus' plus plus plus;\n  sub plus_plus.liga  plus'  by LIG;\n  sub plus'           plus   by plus_plus.liga;\n} plus_plus;\n\nlookup plus_plus_plus {\n  ignore sub plus_plus.liga' LIG plus plus;\n  sub plus_plus_plus.liga LIG  plus'  by LIG;\n  sub plus_plus.liga' LIG  plus  by plus_plus_plus.liga;\n} plus_plus_plus;\n\n### Question\nlookup question_equal {\n  ignore sub question question' equal;\n  ignore sub question' equal equal;\n  ignore sub parenleft question' equal;\n  ignore sub less question' equal;\n  sub question_equal.liga equal'  by LIG;\n  sub question'           equal   by question_equal.liga;\n} question_equal;\n\nlookup question_period {\n  ignore sub question question' period;\n  ignore sub question' period period;\n  sub question_period.liga  period'  by LIG;\n  sub question'             period   by question_period.liga;\n} question_period;\n\nlookup question_question {\n  ignore sub question question' question;\n  ignore sub question' question question;\n  sub question_question.liga  question'  by LIG;\n  sub question'               question   by question_question.liga;\n} question_question;\n\nlookup question_question_equal {\n  sub question_question_equal.liga  LIG equal'  by LIG;\n  sub question_question.liga'       LIG equal   by question_question_equal.liga;\n} question_question_equal;\n\nlookup question_colon {\n  ignore sub question question' colon;\n  ignore sub question' colon colon;\n  sub question_colon.liga  colon'  by LIG;\n  sub question'               colon   by question_colon.liga;\n} question_colon;\n\n### Semicolon\nlookup semicolon_semicolon {\n  ignore sub semicolon semicolon' semicolon;\n  ignore sub semicolon' semicolon semicolon;\n  sub semicolon_semicolon.liga  semicolon'  by LIG;\n  sub semicolon'                semicolon   by semicolon_semicolon.liga;\n} semicolon_semicolon;\n\n\n### Slash\nlookup slash_asterisk {\n  ignore sub slash slash' asterisk;\n  ignore sub slash' asterisk asterisk;\n  ignore sub slash' asterisk slash;\n  ignore sub asterisk slash' asterisk;\n  sub slash_asterisk.liga asterisk'  by LIG;\n  sub slash'              asterisk   by slash_asterisk.liga;\n} slash_asterisk;\n\nlookup slash_greater {\n  ignore sub slash slash' greater;\n  ignore sub slash' greater greater;\n  sub slash_greater.liga  greater'  by LIG;\n  sub slash'              greater   by slash_greater.liga;\n} slash_greater;\n\nlookup slash_slash {\n  ignore sub slash slash' slash;\n  ignore sub slash' slash slash slash;\n  ignore sub equal slash' slash;\n  ignore sub slash' slash equal;\n  sub slash_slash.liga  slash'  by LIG;\n  sub slash'            slash   by slash_slash.liga;\n} slash_slash;\n\nlookup slash_slash_slash {\n  sub slash_slash_slash.liga  LIG   slash'  by LIG;\n  sub slash_slash.liga'       LIG   slash   by slash_slash_slash.liga;\n} slash_slash_slash;\n\nlookup slash_backslash {\n  ignore sub @NotSpace slash' backslash;\n  ignore sub slash' backslash @NotSpace;\n  sub slash_backslash.liga  backslash'  by LIG;\n  sub slash'                backslash   by slash_backslash.liga;\n} slash_backslash;\n\n\n### WWW\nlookup w_w_w {\n  ignore sub w w' w w;\n  ignore sub w' w w w;\n  sub w_w_w.liga  LIG  w' by LIG;\n  sub w_w_w.liga  w'   w  by LIG;\n  sub w'          w    w  by w_w_w.liga;\n} w_w_w;\n\n\n\n### Vertical-align colon/greater/less\n\n# :> :< >: <:\n# :>: :<:\n# <:> >:< <:< >:>\n# <::> <::< >::< >::>\n# <:::> <:::< >:::< >:::>\n# <::::> <::::< >::::< >::::>\n\nlookup center {\n    #574 :>= :<=\n    ignore sub colon' [less greater] [equal hyphen];\n    ignore sub colon colon' [less greater]; # ignores the :::< case\n\n    # middles & ends\n    sub [less.center greater.center colon.center] colon' by colon.center;\n    sub colon.center [less greater]' by [less.center greater.center];\n\n    # starts\n    sub [less greater]' colon by [less.center greater.center];\n    sub colon' [less greater] by colon.center;\n} center;\n\nlookup equal_arrows {\n  # Disable |||\n  ignore sub bar bar' bar equal;\n  ignore sub bar bar' equal;\n  ignore sub [equal_start.seq equal_middle.seq] bar' bar bar;\n\n  # equal middle & end\n  sub [less_equal_start.seq less_equal_middle.seq greater_equal_start.seq greater_equal_middle.seq bar_equal_start.seq bar_equal_middle.seq slash_equal_start.seq slash_equal_middle.seq colon_equal_middle.seq exclam_equal_middle.seq equal_start.seq equal_middle.seq] equal' [equal less greater bar slash colon exclam] by equal_middle.seq;\n\n  sub [less_less_equal_start.seq less_less_equal_middle.seq greater_greater_equal_start.seq greater_greater_equal_middle.seq  bar_bar_equal_start.seq bar_bar_equal_middle.seq slash_slash_equal_start.seq slash_slash_equal_middle.seq] LIG equal' [equal less greater bar slash colon exclam] by equal_middle.seq;\n\n  sub [less_equal_start.seq less_equal_middle.seq greater_equal_start.seq greater_equal_middle.seq bar_equal_start.seq bar_equal_middle.seq slash_equal_start.seq slash_equal_middle.seq colon_equal_middle.seq exclam_equal_middle.seq equal_start.seq equal_middle.seq] equal' by equal_end.seq;\n\n  sub [less_less_equal_start.seq less_less_equal_middle.seq greater_greater_equal_start.seq greater_greater_equal_middle.seq bar_bar_equal_start.seq bar_bar_equal_middle.seq slash_slash_equal_start.seq slash_slash_equal_middle.seq] LIG equal' by equal_end.seq;\n\n\n  # double middles\n  sub [equal_start.seq equal_middle.seq] less_less_equal_middle.seq       less'    equal by LIG;\n  sub [equal_start.seq equal_middle.seq] less'                            less     equal by less_less_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] greater_greater_equal_middle.seq greater' equal by LIG;\n  sub [equal_start.seq equal_middle.seq] greater'                         greater  equal by greater_greater_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] bar_bar_equal_middle.seq         bar'     equal by LIG;\n  sub [equal_start.seq equal_middle.seq] bar'                             bar      equal by bar_bar_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] slash_slash_equal_middle.seq     slash'   equal by LIG;\n  sub [equal_start.seq equal_middle.seq] slash'                           slash    equal by slash_slash_equal_middle.seq;\n\n  # single middles\n  sub [equal_start.seq equal_middle.seq] less'    equal by less_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] greater' equal by greater_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] bar'     equal by bar_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] slash'   equal by slash_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] colon'   equal by colon_equal_middle.seq;\n  sub [equal_start.seq equal_middle.seq] exclam'  equal by exclam_equal_middle.seq;\n\n  # double ends\n  sub [equal_start.seq equal_middle.seq] less_less_equal_end.seq        less'    by LIG;\n  sub [equal_start.seq equal_middle.seq] less'                          less     by less_less_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] greater_greater_equal_end.seq  greater' by LIG;\n  sub [equal_start.seq equal_middle.seq] greater'                       greater  by greater_greater_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] bar_bar_equal_end.seq          bar'     by LIG;\n  sub [equal_start.seq equal_middle.seq] bar'                           bar      by bar_bar_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] slash_slash_equal_end.seq      slash'   by LIG;\n  sub [equal_start.seq equal_middle.seq] slash'                         slash    by slash_slash_equal_end.seq;\n\n  # single ends\n  sub [equal_start.seq equal_middle.seq] less'    by less_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] greater' by greater_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] bar'     by bar_equal_end.seq;\n  sub [equal_start.seq equal_middle.seq] slash'   by slash_equal_end.seq;\n\n  # double beginnings\n  sub less_less_equal_start.seq       less'    equal by LIG;\n  sub less'                           less     equal by less_less_equal_start.seq;\n  sub greater_greater_equal_start.seq greater' equal by LIG;\n  sub greater'                        greater  equal by greater_greater_equal_start.seq;\n  sub bar_bar_equal_start.seq         bar'     equal by LIG;\n  sub bar'                            bar      equal by bar_bar_equal_start.seq;\n  sub slash_slash_equal_start.seq     slash'   equal by LIG;\n  sub slash'                          slash    equal by slash_slash_equal_start.seq;\n\n  # Disable >=< #548\n  sub greater' equal less [equal less] by greater_equal_start.seq;\n  ignore sub greater' equal less;\n  \n  # Disable =< #479 #468 #424 #406 #355 #305\n  sub equal' less [equal less] by equal_start.seq;\n\n  # Disable =/ #1056\n  sub equal'   slash [equal slash] by equal_start.seq; \n\n  # single beginnings\n  sub less'    equal [equal less greater bar slash colon exclam] by less_equal_start.seq; # disable >= <= as they're used in math\n  sub greater' equal [equal less greater bar slash colon exclam] by greater_equal_start.seq;\n  sub bar'     equal [equal less greater bar slash colon exclam] by bar_equal_start.seq; # disable |= \n  sub slash'   equal by slash_equal_start.seq;\n  sub equal'  [equal greater bar colon exclam] by equal_start.seq;\n\n} equal_arrows;\n\n### Arbitrary-length arrows #346\n\nlookup hyphen_arrows {\n  # Disable |||\n  ignore sub bar bar' bar hyphen;\n  ignore sub bar bar' hyphen;\n  ignore sub [hyphen_start.seq hyphen_middle.seq] bar' bar bar;\n\n  # hyphen middle & end\n  sub [less_hyphen_start.seq less_hyphen_middle.seq greater_hyphen_start.seq greater_hyphen_middle.seq bar_hyphen_start.seq bar_hyphen_middle.seq hyphen_start.seq hyphen_middle.seq] hyphen' [hyphen less greater bar] by hyphen_middle.seq;\n\n  sub [less_less_hyphen_start.seq less_less_hyphen_middle.seq greater_greater_hyphen_start.seq greater_greater_hyphen_middle.seq bar_bar_hyphen_start.seq bar_bar_hyphen_middle.seq] LIG hyphen' [hyphen less greater bar] by hyphen_middle.seq;\n\n  sub [less_hyphen_start.seq less_hyphen_middle.seq greater_hyphen_start.seq greater_hyphen_middle.seq bar_hyphen_start.seq bar_hyphen_middle.seq hyphen_start.seq hyphen_middle.seq] hyphen' by hyphen_end.seq;\n\n  sub [less_less_hyphen_start.seq less_less_hyphen_middle.seq greater_greater_hyphen_start.seq greater_greater_hyphen_middle.seq bar_bar_hyphen_start.seq bar_bar_hyphen_middle.seq] LIG hyphen' by hyphen_end.seq;\n\n  # double middles\n  sub [hyphen_start.seq hyphen_middle.seq] less_less_hyphen_middle.seq        less'    hyphen by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] less'                              less     hyphen by less_less_hyphen_middle.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] greater_greater_hyphen_middle.seq  greater' hyphen by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] greater'                           greater  hyphen by greater_greater_hyphen_middle.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] bar_bar_hyphen_middle.seq          bar'     hyphen by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] bar'                               bar      hyphen by bar_bar_hyphen_middle.seq;\n\n  # single middles\n  sub [hyphen_start.seq hyphen_middle.seq] less'    hyphen by less_hyphen_middle.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] greater' hyphen by greater_hyphen_middle.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] bar'     hyphen by bar_hyphen_middle.seq;\n\n  # double ends\n  sub [hyphen_start.seq hyphen_middle.seq] less_less_hyphen_end.seq       less'    by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] less'                          less     by less_less_hyphen_end.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] greater_greater_hyphen_end.seq greater' by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] greater'                       greater  by greater_greater_hyphen_end.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] bar_bar_hyphen_end.seq         bar'     by LIG;\n  sub [hyphen_start.seq hyphen_middle.seq] bar'                           bar      by bar_bar_hyphen_end.seq;\n\n  # single ends\n  sub [hyphen_start.seq hyphen_middle.seq] less'    by less_hyphen_end.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] greater' by greater_hyphen_end.seq;\n  sub [hyphen_start.seq hyphen_middle.seq] bar'     by bar_hyphen_end.seq;\n\n  # double beginnings\n  sub less_less_hyphen_start.seq        less'    hyphen by LIG;\n  sub less'                             less     hyphen by less_less_hyphen_start.seq;\n  sub greater_greater_hyphen_start.seq  greater' hyphen by LIG;\n  sub greater'                          greater  hyphen by greater_greater_hyphen_start.seq;\n  sub bar_bar_hyphen_start.seq          bar'     hyphen by LIG;\n  sub bar'                              bar      hyphen by bar_bar_hyphen_start.seq;\n\n  # single beginnings\n  sub less'    hyphen by less_hyphen_start.seq;\n  sub greater' hyphen by greater_hyphen_start.seq;\n  sub bar'     hyphen by bar_hyphen_start.seq;\n  sub hyphen' [hyphen less greater bar] by hyphen_start.seq;\n} hyphen_arrows;\n\nlookup numbersigns {\n  # middle parts\n  sub [numbersign_start.seq numbersign_middle.seq] numbersign' numbersign by numbersign_middle.seq;\n\n  # ends\n  sub [numbersign_start.seq numbersign_middle.seq] numbersign' by numbersign_end.seq;\n  \n  # beginnings\n  sub numbersign' numbersign by numbersign_start.seq; \n} numbersigns;\n\nlookup underscores {\n  # middle parts\n  sub [underscore_start.seq underscore_middle.seq] bar' underscore by bar_underscore_middle.seq;\n\n  sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' bar underscore by underscore_middle.seq;\n  sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' underscore by underscore_middle.seq;\n\n  # ends\n  sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' by underscore_end.seq;\n  \n  # beginnings\n  sub underscore' bar underscore by underscore_start.seq; \n  sub underscore' underscore by underscore_start.seq; \n} underscores;\n\n#Other non-ligature bits\n\nsub dcaron' [lacute lcaron lcommaaccent ldot lslash b h k l hbar hcircumflex kcommaaccent @Uppercase] by dcaron.alt;\n\n\n  # Arabic test\nlookup arabiclong1 {\n  script arab;  \n  lookupflag IgnoreMarks RightToLeft;\n  sub @NRW' by @EXD;\n} arabiclong1;\n\nlookup arabiclong2 {\n  script arab;  \n  lookupflag IgnoreMarks RightToLeft;\n  sub @NRW' by @EXD;\n  sub behDotless-ar.alt' by behDotless-ar.alt LIG;\n  sub behDotless-ar.fina.alt' by behDotless-ar.fina.alt LIG;\n  sub beh-ar.alt' by beh-ar.alt LIG;\n  sub beh-ar.fina.alt' by beh-ar.fina.alt LIG;\n  sub peh-ar.alt' by peh-ar.alt LIG;\n  sub peh-ar.fina.alt' by peh-ar.fina.alt LIG;\n  sub beeh-ar.alt' by beeh-ar.alt LIG;\n  sub beeh-ar.fina.alt' by beeh-ar.fina.alt LIG;\n  sub beheh-ar.alt' by beheh-ar.alt LIG;\n  sub beheh-ar.fina.alt' by beheh-ar.fina.alt LIG;\n  sub teh-ar.alt' by teh-ar.alt LIG;\n  sub teh-ar.fina.alt' by teh-ar.fina.alt LIG;\n  sub tehRing-ar.alt' by tehRing-ar.alt LIG;\n  sub tehRing-ar.fina.alt' by tehRing-ar.fina.alt LIG;\n  sub tehThreedotsdown-ar.alt' by tehThreedotsdown-ar.alt LIG;\n  sub tehThreedotsdown-ar.fina.alt' by tehThreedotsdown-ar.fina.alt LIG;\n  sub theh-ar.alt' by theh-ar.alt LIG;\n  sub theh-ar.fina.alt' by theh-ar.fina.alt LIG;\n  sub tteh-ar.alt' by tteh-ar.alt LIG;\n  sub tteh-ar.fina.alt' by tteh-ar.fina.alt LIG;\n  sub tteheh-ar.alt' by tteheh-ar.alt LIG;\n  sub tteheh-ar.fina.alt' by tteheh-ar.fina.alt LIG;\n  sub teheh-ar.alt' by teheh-ar.alt LIG;\n  sub teheh-ar.fina.alt' by teheh-ar.fina.alt LIG;\n  sub behThreedotshorizontalbelow-ar.alt' by behThreedotshorizontalbelow-ar.alt LIG;\n  sub behThreedotshorizontalbelow-ar.fina.alt' by behThreedotshorizontalbelow-ar.fina.alt LIG;\n  sub behThreedotsupabove-ar.alt' by behThreedotsupabove-ar.alt LIG;\n  sub behThreedotsupabove-ar.fina.alt' by behThreedotsupabove-ar.fina.alt LIG;\n  sub behThreedotsupbelow-ar.alt' by behThreedotsupbelow-ar.alt LIG;\n  sub behThreedotsupbelow-ar.fina.alt' by behThreedotsupbelow-ar.fina.alt LIG;\n  sub tehThreedotsupbelow-ar.alt' by tehThreedotsupbelow-ar.alt LIG;\n  sub tehThreedotsupbelow-ar.fina.alt' by tehThreedotsupbelow-ar.fina.alt LIG;\n  sub behTwodotsbelowDotabove-ar.alt' by behTwodotsbelowDotabove-ar.alt LIG;\n  sub behTwodotsbelowDotabove-ar.fina.alt' by behTwodotsbelowDotabove-ar.fina.alt LIG;\n  sub behVinvertedbelow-ar.alt' by behVinvertedbelow-ar.alt LIG;\n  sub behVinvertedbelow-ar.fina.alt' by behVinvertedbelow-ar.fina.alt LIG;\n  sub behVabove-ar.alt' by behVabove-ar.alt LIG;\n  sub behVabove-ar.fina.alt' by behVabove-ar.fina.alt LIG;\n  sub behVbelow-ar.alt' by behVbelow-ar.alt LIG;\n  sub behVbelow-ar.fina.alt' by behVbelow-ar.fina.alt LIG;\n  sub behhamzaabove-ar.alt' by behhamzaabove-ar.alt LIG;\n  sub behhamzaabove-ar.fina.alt' by behhamzaabove-ar.fina.alt LIG;\n  sub seen-ar.alt' by seen-ar.alt LIG;\n  sub seen-ar.fina.alt' by seen-ar.fina.alt LIG;\n  sub seenDotbelowDotabove-ar.alt' by seenDotbelowDotabove-ar.alt LIG;\n  sub seenDotbelowDotabove-ar.fina.alt' by seenDotbelowDotabove-ar.fina.alt LIG;\n  sub seenThreedotsbelow-ar.alt' by seenThreedotsbelow-ar.alt LIG;\n  sub seenThreedotsbelow-ar.fina.alt' by seenThreedotsbelow-ar.fina.alt LIG;\n  sub sheen-ar.alt' by sheen-ar.alt LIG;\n  sub sheen-ar.fina.alt' by sheen-ar.fina.alt LIG;\n  sub sheenDotbelow-ar.alt' by sheenDotbelow-ar.alt LIG;\n  sub sheenDotbelow-ar.fina.alt' by sheenDotbelow-ar.fina.alt LIG;\n  sub seenThreedotsbelowthreedots-ar.alt' by seenThreedotsbelowthreedots-ar.alt LIG;\n  sub seenThreedotsbelowthreedots-ar.fina.alt' by seenThreedotsbelowthreedots-ar.fina.alt LIG;\n  sub sad-ar.alt' by sad-ar.alt LIG;\n  sub sad-ar.fina.alt' by sad-ar.fina.alt LIG;\n  sub sadTwodotsbelow-ar.alt' by sadTwodotsbelow-ar.alt LIG;\n  sub sadTwodotsbelow-ar.fina.alt' by sadTwodotsbelow-ar.fina.alt LIG;\n  sub sadThreedots-ar.alt' by sadThreedots-ar.alt LIG;\n  sub sadThreedots-ar.fina.alt' by sadThreedots-ar.fina.alt LIG;\n  sub sadThreedotsbelow-ar.alt' by sadThreedotsbelow-ar.alt LIG;\n  sub sadThreedotsbelow-ar.fina.alt' by sadThreedotsbelow-ar.fina.alt LIG;\n  sub dad-ar.alt' by dad-ar.alt LIG;\n  sub dad-ar.fina.alt' by dad-ar.fina.alt LIG;\n  sub dadDotbelow-ar.alt' by dadDotbelow-ar.alt LIG;\n  sub dadDotbelow-ar.fina.alt' by dadDotbelow-ar.fina.alt LIG;\n  sub feh-ar.alt' by feh-ar.alt LIG;\n  sub feh-ar.fina.alt' by feh-ar.fina.alt LIG;\n  sub veh-ar.alt' by veh-ar.alt LIG;\n  sub veh-ar.fina.alt' by veh-ar.fina.alt LIG;\n  sub fehDotless-ar.alt' by fehDotless-ar.alt LIG;\n  sub fehDotless-ar.fina.alt' by fehDotless-ar.fina.alt LIG;\n  sub fehDotMovedbelow-ar.alt' by fehDotMovedbelow-ar.alt LIG;\n  sub fehDotbelow-ar.alt' by fehDotbelow-ar.alt LIG;\n  sub fehDotbelow-ar.fina.alt' by fehDotbelow-ar.fina.alt LIG;\n  sub fehThreedotsbelow-ar.alt' by fehThreedotsbelow-ar.alt LIG;\n  sub fehThreedotsbelow-ar.fina.alt' by fehThreedotsbelow-ar.fina.alt LIG;\n  sub fehDotbelowThreedotsabove-ar.alt' by fehDotbelowThreedotsabove-ar.alt LIG;\n  sub fehDotbelowThreedotsabove-ar.fina.alt' by fehDotbelowThreedotsabove-ar.fina.alt LIG;\n  sub peheh-ar.alt' by peheh-ar.alt LIG;\n  sub peheh-ar.fina.alt' by peheh-ar.fina.alt LIG;\n  sub seenFourdotsabove-ar.alt' by seenFourdotsabove-ar.alt LIG;\n  sub seenFourdotsabove-ar.fina.alt' by seenFourdotsabove-ar.fina.alt LIG;\n  sub fehTwodotsbelow-ar.alt' by fehTwodotsbelow-ar.alt LIG;\n  sub fehTwodotsbelow-ar.fina.alt' by fehTwodotsbelow-ar.fina.alt LIG;\n  sub fehThreedotsupbelow-ar.alt' by fehThreedotsupbelow-ar.alt LIG;\n  sub fehThreedotsupbelow-ar.fina.alt' by fehThreedotsupbelow-ar.fina.alt LIG;\n  sub seenTwodotsverticalabove-ar.alt' by seenTwodotsverticalabove-ar.alt LIG;\n  sub seenTwodotsverticalabove-ar.fina.alt' by seenTwodotsverticalabove-ar.fina.alt LIG;\n  sub seenTahTwodotshorizontalabove-ar.alt' by seenTahTwodotshorizontalabove-ar.alt LIG;\n  sub seenTahTwodotshorizontalabove-ar.fina.alt' by seenTahTwodotshorizontalabove-ar.fina.alt LIG;\n  sub seenFourabove-ar.alt' by seenFourabove-ar.alt LIG;\n  sub seenFourabove-ar.fina.alt' by seenFourabove-ar.fina.alt LIG;\n  sub seenVinvertedabove-ar.alt' by seenVinvertedabove-ar.alt LIG;\n  sub seenVinvertedabove-ar.fina.alt' by seenVinvertedabove-ar.fina.alt LIG;\n  sub seenThreedotsbelowthreedots-ar.alt' by seenThreedotsbelowthreedots-ar.alt LIG;\n  sub seenThreedotsbelowthreedots-ar.fina.alt' by seenThreedotsbelowthreedots-ar.fina.alt LIG;\n  sub behMeemabove-ar.alt' by behMeemabove-ar.alt LIG;\n  sub behMeemabove-ar.fina.alt' by behMeemabove-ar.fina.alt LIG;\n  sub pehMeemabove-ar.alt' by pehMeemabove-ar.alt LIG;\n  sub pehMeemabove-ar.fina.alt' by pehMeemabove-ar.fina.alt LIG;\n  sub tehTehabove-ar.alt' by tehTehabove-ar.alt LIG;\n  sub tehTehabove-ar.fina.alt' by tehTehabove-ar.fina.alt LIG;\n} arabiclong2;\n\nlookup condensedar {\n  script arab;  \n  lookupflag IgnoreMarks RightToLeft;\n\n  lookupflag IgnoreMarks RightToLeft;\n  sub @beh1' @alef1 by @beh2;\n  sub @beh2 @alef1' by @alef2;\n} condensedar;\n} calt;\n\nfeature ccmp {\nlookup ccmp_Other_1 {\n\t@CombiningTopAccents = [acutecomb acutetonecomb brevecomb caroncomb circumflexcomb commaabovecomb commaaboverightcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb gravetonecomb hookabovecomb hungarumlautcomb macroncomb perispomenicomb ringcomb tildecomb];\n\t@CombiningNonTopAccents = [cedillacomb dotbelowcomb lowlinecomb macronbelowcomb ogonekcomb ringbelowcomb horncomb];\n\tsub [i j i-cy je-cy]' @CombiningTopAccents by [idotless jdotless idotless jdotless];\t\n\tsub iogonek' @CombiningTopAccents by idotless ogonekcomb; \n\tsub idotbelow' @CombiningTopAccents by idotless dotbelowcomb; \n\tsub [i j i-cy je-cy]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless idotless jdotless];\n\tsub iogonek' @CombiningNonTopAccents @CombiningTopAccents by idotless ogonekcomb;\n\tsub idotbelow' @CombiningNonTopAccents @CombiningTopAccents by idotless dotbelowcomb;\n\t@Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb horncomb tonos brevecomb-cy];\n\t@MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case tonos.case brevecomb-cy.case];\n\tsub @Markscomb @Markscomb' by @MarkscombCase;\n\tsub @Uppercase @Markscomb' by @MarkscombCase;\n} ccmp_Other_1;\n\nlookup ccmp_Other_2 {\n\tsub @Markscomb' @MarkscombCase by @MarkscombCase;\n\tsub @MarkscombCase @Markscomb' by @MarkscombCase;\n} ccmp_Other_2;\n\nlookup ccmp_latn_1 {\n\tsub fi by f i;\n\tsub fl by f l;\n} ccmp_latn_1;\n\nscript latn;\nlookup ccmp_latn_1;\n} ccmp;\n\nfeature locl {\nlookup locl_latn_0 {\n\tscript latn;\n\tlanguage ROM;\n\tlanguage MOL;\n\tsub Scedilla by Scommaaccent;\n\tsub scedilla by scommaaccent;\n\tsub Tcedilla by Tcommaaccent;\n\tsub tcedilla by tcommaaccent;\n} locl_latn_0;\n\nlookup locl_latn_1 {\n\tscript latn;\n\tlanguage PLK;\n\tsub Cacute by Cacute.loclPLK;\n\tsub Nacute by Nacute.loclPLK;\n\tsub Oacute by Oacute.loclPLK;\n\tsub Sacute by Sacute.loclPLK;\n\tsub Zacute by Zacute.loclPLK;\n\tsub cacute by cacute.loclPLK;\n\tsub nacute by nacute.loclPLK;\n\tsub oacute by oacute.loclPLK;\n\tsub sacute by sacute.loclPLK;\n\tsub zacute by zacute.loclPLK;\n\tsub acutecomb by acutecomb.loclPLK;\n} locl_latn_1;\n\nlookup locl_latn_2 {\n\tscript latn;\n\tlanguage NLD;\n\tsub iacute j' by jacute;\n\tsub Iacute J' by Jacute;\n} locl_latn_2;\n\nlookup locl_cyrl_0 {\n\tscript cyrl;\n\tlanguage BGR;\n\tsub De-cy by De-cy.loclBGR;\n\tsub El-cy by El-cy.loclBGR;\n\tsub Ef-cy by Ef-cy.loclBGR;\n\tsub ve-cy by ve-cy.loclBGR;\n\tsub ge-cy by ge-cy.loclBGR;\n\tsub de-cy by de-cy.loclBGR;\n\tsub zhe-cy by zhe-cy.loclBGR;\n\tsub ze-cy by ze-cy.loclBGR;\n\tsub ii-cy by ii-cy.loclBGR;\n\tsub iishort-cy by iishort-cy.loclBGR;\n\tsub iigrave-cy by iigrave-cy.loclBGR;\n\tsub ka-cy by ka-cy.loclBGR;\n\tsub el-cy by el-cy.loclBGR;\n\tsub pe-cy by pe-cy.loclBGR;\n\tsub te-cy by te-cy.loclBGR;\n\tsub tse-cy by tse-cy.loclBGR;\n\tsub sha-cy by sha-cy.loclBGR;\n\tsub shcha-cy by shcha-cy.loclBGR;\n\tsub softsign-cy by softsign-cy.loclBGR;\n\tsub hardsign-cy by hardsign-cy.loclBGR;\n\tsub iu-cy by iu-cy.loclBGR;\n} locl_cyrl_0;\n\nlookup locl_cyrl_1 {\n\tscript cyrl;\n\tlanguage SRB;\n\tsub be-cy by be-cy.loclSRB;\n} locl_cyrl_1;\n\n} locl;\n\nfeature subs {\n# automatic\nsub zero by zeroinferior;\nsub one by oneinferior;\nsub two by twoinferior;\nsub three by threeinferior;\nsub four by fourinferior;\nsub five by fiveinferior;\nsub six by sixinferior;\nsub seven by seveninferior;\nsub eight by eightinferior;\nsub nine by nineinferior;\n\n} subs;\n\nfeature sinf {\n# automatic\nsub zero by zeroinferior;\nsub one by oneinferior;\nsub two by twoinferior;\nsub three by threeinferior;\nsub four by fourinferior;\nsub five by fiveinferior;\nsub six by sixinferior;\nsub seven by seveninferior;\nsub eight by eightinferior;\nsub nine by nineinferior;\n\n} sinf;\n\nfeature sups {\n# automatic\nsub zero by zerosuperior;\nsub one by onesuperior;\nsub two by twosuperior;\nsub three by threesuperior;\nsub four by foursuperior;\nsub five by fivesuperior;\nsub six by sixsuperior;\nsub seven by sevensuperior;\nsub eight by eightsuperior;\nsub nine by ninesuperior;\n\n} sups;\n\nfeature numr {\n# automatic\nsub zero by zero.numr;\nsub one by one.numr;\nsub two by two.numr;\nsub three by three.numr;\nsub four by four.numr;\nsub five by five.numr;\nsub six by six.numr;\nsub seven by seven.numr;\nsub eight by eight.numr;\nsub nine by nine.numr;\n\n} numr;\n\nfeature dnom {\n# automatic\nsub zero by zero.dnom;\nsub one by one.dnom;\nsub two by two.dnom;\nsub three by three.dnom;\nsub four by four.dnom;\nsub five by five.dnom;\nsub six by six.dnom;\nsub seven by seven.dnom;\nsub eight by eight.dnom;\nsub nine by nine.dnom;\n\n} dnom;\n\nfeature frac {\n# automatic\nlookup FRAC {\n\tsub slash by fraction;\n} FRAC;\nlookup UP {\n\tsub [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];\n} UP;\nlookup DOWN {\n\tsub 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];\n\tsub [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];\n} DOWN;\n\n} frac;\n\nfeature ordn {\n# automatic\nsub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;\nsub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;\nsub N o period by numero;\n\n} ordn;\n\nfeature case {\n# automatic\nsub dieresiscomb by dieresiscomb.case;\nsub dotaccentcomb by dotaccentcomb.case;\nsub gravecomb by gravecomb.case;\nsub acutecomb by acutecomb.case;\nsub hungarumlautcomb by hungarumlautcomb.case;\nsub circumflexcomb by circumflexcomb.case;\nsub caroncomb by caroncomb.case;\nsub brevecomb by brevecomb.case;\nsub ringcomb by ringcomb.case;\nsub tildecomb by tildecomb.case;\nsub macroncomb by macroncomb.case;\nsub hookabovecomb by hookabovecomb.case;\nsub horncomb by horncomb.case;\nsub tonos by tonos.case;\nsub brevecomb-cy by brevecomb-cy.case;\n\n} case;\n\nfeature liga {\n# disabled\n#\n} liga;\n\nfeature ss02 {\nsub asciitilde_equal.liga by exclam_equal.liga;\n\n} ss02;\n\nfeature zero {\n# automatic\nsub zero by zero.zero;\n\n} zero;\n\nfeature ss19 {\n# notes:\n# Name: Slashed zero\nsub zero by zero.zero;\n} ss19;\n\nfeature rclt {\n# this subs the GDI-centric versions of these symbols with DWrite-centric ones\nsub lowerOneEighthBlock by lowerOneEighthBlock.stypo;\nsub lowerOneQuarterBlock by lowerOneQuarterBlock.stypo;\nsub lowerThreeEighthsBlock by lowerThreeEighthsBlock.stypo;\nsub lowerHalfBlock by lowerHalfBlock.stypo;\nsub lowerFiveEighthsBlock by lowerFiveEighthsBlock.stypo;\nsub lowerThreeQuartersBlock by lowerThreeQuartersBlock.stypo;\nsub lowerSevenEighthsBlock by lowerSevenEighthsBlock.stypo;\nsub fullBlock by fullBlock.stypo;\nsub upperHalfBlock by upperHalfBlock.stypo;\nsub upperOneEighthBlock by upperOneEighthBlock.stypo;\nsub leftOneEighthBlock by leftOneEighthBlock.stypo;\nsub leftOneQuarterBlock by leftOneQuarterBlock.stypo;\nsub leftThreeEighthsBlock by leftThreeEighthsBlock.stypo;\nsub leftBlock by leftBlock.stypo;\nsub leftFiveEighthsBlock by leftFiveEighthsBlock.stypo;\nsub leftThreeQuartersBlock by leftThreeQuartersBlock.stypo;\nsub leftSevenEighthsBlock by leftSevenEighthsBlock.stypo;\nsub rightBlock by rightBlock.stypo;\nsub rightOneEighthBlock by rightOneEighthBlock.stypo;\nsub lowerLeftBlock by lowerLeftBlock.stypo;\nsub lowerRightBlock by lowerRightBlock.stypo;\nsub upperLeftBlock by upperLeftBlock.stypo;\nsub upperLeftAndLowerLeftAndLowerRightBlock by upperLeftAndLowerLeftAndLowerRightBlock.stypo;\nsub upperLeftAndLowerRightBlock by upperLeftAndLowerRightBlock.stypo;\nsub upperLeftAndUpperRightAndLowerLeftBlock by upperLeftAndUpperRightAndLowerLeftBlock.stypo;\nsub upperLeftAndUpperRightAndLowerRightBlock by upperLeftAndUpperRightAndLowerRightBlock.stypo;\nsub upperRightBlock by upperRightBlock.stypo;\nsub upperRightAndLowerLeftBlock by upperRightAndLowerLeftBlock.stypo;\nsub upperRightAndLowerLeftAndLowerRightBlock by upperRightAndLowerLeftAndLowerRightBlock.stypo;\nsub shadelight by shadelight.stypo;\nsub shademedium by shademedium.stypo;\nsub shadedark by shadedark.stypo;\nsub checkerBoardDeleteAmstradCpc by checkerBoardDeleteAmstradCpc.stypo;\nsub checkerBoardFill by checkerBoardFill.stypo;\nsub checkerBoardFillInverse by checkerBoardFillInverse.stypo;\nsub blockQuadrant-UC by blockQuadrant-UC.stypo;\nsub blockQuadrant-LC by blockQuadrant-LC.stypo;\nsub blockQuadrant-ML by blockQuadrant-ML.stypo;\nsub blockQuadrant-MR by blockQuadrant-MR.stypo;\nsub blockTriangle-1 by blockTriangle-1.stypo;\nsub blockTriangle-2 by blockTriangle-2.stypo;\nsub blockTriangle-3 by blockTriangle-3.stypo;\nsub blockTriangle-4 by blockTriangle-4.stypo;\nsub blockTriangle-14 by blockTriangle-14.stypo;\nsub blockTriangle-23 by blockTriangle-23.stypo;\nsub blockTriangle-123 by blockTriangle-123.stypo;\nsub blockTriangle-124 by blockTriangle-124.stypo;\nsub blockTriangle-134 by blockTriangle-134.stypo;\nsub blockTriangle-234 by blockTriangle-234.stypo;\nsub blockCircle-1 by blockCircle-1.stypo;\nsub blockCircle-2 by blockCircle-2.stypo;\nsub blockCircle-3 by blockCircle-3.stypo;\nsub blockCircle-4 by blockCircle-4.stypo;\nsub blockCircle-UC by blockCircle-UC.stypo;\nsub blockCircle-LC by blockCircle-LC.stypo;\nsub blockCircle-ML by blockCircle-ML.stypo;\nsub blockCircle-MR by blockCircle-MR.stypo;\nsub blockSextant-1 by blockSextant-1.stypo;\nsub blockSextant-2 by blockSextant-2.stypo;\nsub blockSextant-12 by blockSextant-12.stypo;\nsub blockSextant-3 by blockSextant-3.stypo;\nsub blockSextant-13 by blockSextant-13.stypo;\nsub blockSextant-23 by blockSextant-23.stypo;\nsub blockSextant-123 by blockSextant-123.stypo;\nsub blockSextant-4 by blockSextant-4.stypo;\nsub blockSextant-14 by blockSextant-14.stypo;\nsub blockSextant-24 by blockSextant-24.stypo;\nsub blockSextant-124 by blockSextant-124.stypo;\nsub blockSextant-34 by blockSextant-34.stypo;\nsub blockSextant-134 by blockSextant-134.stypo;\nsub blockSextant-234 by blockSextant-234.stypo;\nsub blockSextant-1234 by blockSextant-1234.stypo;\nsub blockSextant-5 by blockSextant-5.stypo;\nsub blockSextant-15 by blockSextant-15.stypo;\nsub blockSextant-25 by blockSextant-25.stypo;\nsub blockSextant-125 by blockSextant-125.stypo;\nsub blockSextant-35 by blockSextant-35.stypo;\nsub blockSextant-235 by blockSextant-235.stypo;\nsub blockSextant-1235 by blockSextant-1235.stypo;\nsub blockSextant-45 by blockSextant-45.stypo;\nsub blockSextant-145 by blockSextant-145.stypo;\nsub blockSextant-245 by blockSextant-245.stypo;\nsub blockSextant-1245 by blockSextant-1245.stypo;\nsub blockSextant-345 by blockSextant-345.stypo;\nsub blockSextant-1345 by blockSextant-1345.stypo;\nsub blockSextant-2345 by blockSextant-2345.stypo;\nsub blockSextant-12345 by blockSextant-12345.stypo;\nsub blockSextant-6 by blockSextant-6.stypo;\nsub blockSextant-16 by blockSextant-16.stypo;\nsub blockSextant-26 by blockSextant-26.stypo;\nsub blockSextant-126 by blockSextant-126.stypo;\nsub blockSextant-36 by blockSextant-36.stypo;\nsub blockSextant-136 by blockSextant-136.stypo;\nsub blockSextant-236 by blockSextant-236.stypo;\nsub blockSextant-1236 by blockSextant-1236.stypo;\nsub blockSextant-46 by blockSextant-46.stypo;\nsub blockSextant-146 by blockSextant-146.stypo;\nsub blockSextant-1246 by blockSextant-1246.stypo;\nsub blockSextant-346 by blockSextant-346.stypo;\nsub blockSextant-1346 by blockSextant-1346.stypo;\nsub blockSextant-2346 by blockSextant-2346.stypo;\nsub blockSextant-12346 by blockSextant-12346.stypo;\nsub blockSextant-56 by blockSextant-56.stypo;\nsub blockSextant-156 by blockSextant-156.stypo;\nsub blockSextant-256 by blockSextant-256.stypo;\nsub blockSextant-1256 by blockSextant-1256.stypo;\nsub blockSextant-356 by blockSextant-356.stypo;\nsub blockSextant-1356 by blockSextant-1356.stypo;\nsub blockSextant-2356 by blockSextant-2356.stypo;\nsub blockSextant-12356 by blockSextant-12356.stypo;\nsub blockSextant-456 by blockSextant-456.stypo;\nsub blockSextant-1456 by blockSextant-1456.stypo;\nsub blockSextant-2456 by blockSextant-2456.stypo;\nsub blockSextant-12456 by blockSextant-12456.stypo;\nsub blockSextant-3456 by blockSextant-3456.stypo;\nsub blockSextant-13456 by blockSextant-13456.stypo;\nsub blockSextant-23456 by blockSextant-23456.stypo;\nsub blockDiagonal-1FB3C by blockDiagonal-1FB3C.stypo;\nsub blockDiagonal-1FB3D by blockDiagonal-1FB3D.stypo;\nsub blockDiagonal-1FB3E by blockDiagonal-1FB3E.stypo;\nsub blockDiagonal-1FB3F by blockDiagonal-1FB3F.stypo;\nsub blockDiagonal-1FB40 by blockDiagonal-1FB40.stypo;\nsub blockDiagonal-1FB41 by blockDiagonal-1FB41.stypo;\nsub blockDiagonal-1FB42 by blockDiagonal-1FB42.stypo;\nsub blockDiagonal-1FB43 by blockDiagonal-1FB43.stypo;\nsub blockDiagonal-1FB44 by blockDiagonal-1FB44.stypo;\nsub blockDiagonal-1FB45 by blockDiagonal-1FB45.stypo;\nsub blockDiagonal-1FB46 by blockDiagonal-1FB46.stypo;\nsub blockDiagonal-1FB47 by blockDiagonal-1FB47.stypo;\nsub blockDiagonal-1FB48 by blockDiagonal-1FB48.stypo;\nsub blockDiagonal-1FB49 by blockDiagonal-1FB49.stypo;\nsub blockDiagonal-1FB4A by blockDiagonal-1FB4A.stypo;\nsub blockDiagonal-1FB4B by blockDiagonal-1FB4B.stypo;\nsub blockDiagonal-1FB4C by blockDiagonal-1FB4C.stypo;\nsub blockDiagonal-1FB4D by blockDiagonal-1FB4D.stypo;\nsub blockDiagonal-1FB4E by blockDiagonal-1FB4E.stypo;\nsub blockDiagonal-1FB4F by blockDiagonal-1FB4F.stypo;\nsub blockDiagonal-1FB50 by blockDiagonal-1FB50.stypo;\nsub blockDiagonal-1FB51 by blockDiagonal-1FB51.stypo;\nsub blockDiagonal-1FB52 by blockDiagonal-1FB52.stypo;\nsub blockDiagonal-1FB53 by blockDiagonal-1FB53.stypo;\nsub blockDiagonal-1FB54 by blockDiagonal-1FB54.stypo;\nsub blockDiagonal-1FB55 by blockDiagonal-1FB55.stypo;\nsub blockDiagonal-1FB56 by blockDiagonal-1FB56.stypo;\nsub blockDiagonal-1FB57 by blockDiagonal-1FB57.stypo;\nsub blockDiagonal-1FB58 by blockDiagonal-1FB58.stypo;\nsub blockDiagonal-1FB59 by blockDiagonal-1FB59.stypo;\nsub blockDiagonal-1FB5A by blockDiagonal-1FB5A.stypo;\nsub blockDiagonal-1FB5B by blockDiagonal-1FB5B.stypo;\nsub blockDiagonal-1FB5C by blockDiagonal-1FB5C.stypo;\nsub blockDiagonal-1FB5D by blockDiagonal-1FB5D.stypo;\nsub blockDiagonal-1FB5E by blockDiagonal-1FB5E.stypo;\nsub blockDiagonal-1FB5F by blockDiagonal-1FB5F.stypo;\nsub blockDiagonal-1FB60 by blockDiagonal-1FB60.stypo;\nsub blockDiagonal-1FB61 by blockDiagonal-1FB61.stypo;\nsub blockDiagonal-1FB62 by blockDiagonal-1FB62.stypo;\nsub blockDiagonal-1FB63 by blockDiagonal-1FB63.stypo;\nsub blockDiagonal-1FB64 by blockDiagonal-1FB64.stypo;\nsub blockDiagonal-1FB65 by blockDiagonal-1FB65.stypo;\nsub blockDiagonal-1FB66 by blockDiagonal-1FB66.stypo;\nsub blockDiagonal-1FB67 by blockDiagonal-1FB67.stypo;\nsub blockOctant-1 by blockOctant-1.stypo;\nsub blockOctant-2 by blockOctant-2.stypo;\nsub blockOctant-12 by blockOctant-12.stypo;\nsub blockOctant-3 by blockOctant-3.stypo;\nsub blockOctant-23 by blockOctant-23.stypo;\nsub blockOctant-123 by blockOctant-123.stypo;\nsub blockOctant-4 by blockOctant-4.stypo;\nsub blockOctant-14 by blockOctant-14.stypo;\nsub blockOctant-124 by blockOctant-124.stypo;\nsub blockOctant-34 by blockOctant-34.stypo;\nsub blockOctant-134 by blockOctant-134.stypo;\nsub blockOctant-234 by blockOctant-234.stypo;\nsub blockOctant-5 by blockOctant-5.stypo;\nsub blockOctant-15 by blockOctant-15.stypo;\nsub blockOctant-25 by blockOctant-25.stypo;\nsub blockOctant-125 by blockOctant-125.stypo;\nsub blockOctant-135 by blockOctant-135.stypo;\nsub blockOctant-235 by blockOctant-235.stypo;\nsub blockOctant-1235 by blockOctant-1235.stypo;\nsub blockOctant-45 by blockOctant-45.stypo;\nsub blockOctant-145 by blockOctant-145.stypo;\nsub blockOctant-245 by blockOctant-245.stypo;\nsub blockOctant-1245 by blockOctant-1245.stypo;\nsub blockOctant-345 by blockOctant-345.stypo;\nsub blockOctant-1345 by blockOctant-1345.stypo;\nsub blockOctant-2345 by blockOctant-2345.stypo;\nsub blockOctant-12345 by blockOctant-12345.stypo;\nsub blockOctant-6 by blockOctant-6.stypo;\nsub blockOctant-16 by blockOctant-16.stypo;\nsub blockOctant-26 by blockOctant-26.stypo;\nsub blockOctant-126 by blockOctant-126.stypo;\nsub blockOctant-36 by blockOctant-36.stypo;\nsub blockOctant-136 by blockOctant-136.stypo;\nsub blockOctant-236 by blockOctant-236.stypo;\nsub blockOctant-1236 by blockOctant-1236.stypo;\nsub blockOctant-146 by blockOctant-146.stypo;\nsub blockOctant-246 by blockOctant-246.stypo;\nsub blockOctant-1246 by blockOctant-1246.stypo;\nsub blockOctant-346 by blockOctant-346.stypo;\nsub blockOctant-1346 by blockOctant-1346.stypo;\nsub blockOctant-2346 by blockOctant-2346.stypo;\nsub blockOctant-12346 by blockOctant-12346.stypo;\nsub blockOctant-56 by blockOctant-56.stypo;\nsub blockOctant-156 by blockOctant-156.stypo;\nsub blockOctant-256 by blockOctant-256.stypo;\nsub blockOctant-1256 by blockOctant-1256.stypo;\nsub blockOctant-356 by blockOctant-356.stypo;\nsub blockOctant-1356 by blockOctant-1356.stypo;\nsub blockOctant-2356 by blockOctant-2356.stypo;\nsub blockOctant-12356 by blockOctant-12356.stypo;\nsub blockOctant-456 by blockOctant-456.stypo;\nsub blockOctant-1456 by blockOctant-1456.stypo;\nsub blockOctant-2456 by blockOctant-2456.stypo;\nsub blockOctant-12456 by blockOctant-12456.stypo;\nsub blockOctant-3456 by blockOctant-3456.stypo;\nsub blockOctant-13456 by blockOctant-13456.stypo;\nsub blockOctant-23456 by blockOctant-23456.stypo;\nsub blockOctant-123456 by blockOctant-123456.stypo;\nsub blockOctant-7 by blockOctant-7.stypo;\nsub blockOctant-17 by blockOctant-17.stypo;\nsub blockOctant-27 by blockOctant-27.stypo;\nsub blockOctant-127 by blockOctant-127.stypo;\nsub blockOctant-37 by blockOctant-37.stypo;\nsub blockOctant-137 by blockOctant-137.stypo;\nsub blockOctant-237 by blockOctant-237.stypo;\nsub blockOctant-1237 by blockOctant-1237.stypo;\nsub blockOctant-47 by blockOctant-47.stypo;\nsub blockOctant-147 by blockOctant-147.stypo;\nsub blockOctant-247 by blockOctant-247.stypo;\nsub blockOctant-1247 by blockOctant-1247.stypo;\nsub blockOctant-347 by blockOctant-347.stypo;\nsub blockOctant-1347 by blockOctant-1347.stypo;\nsub blockOctant-2347 by blockOctant-2347.stypo;\nsub blockOctant-12347 by blockOctant-12347.stypo;\nsub blockOctant-157 by blockOctant-157.stypo;\nsub blockOctant-257 by blockOctant-257.stypo;\nsub blockOctant-1257 by blockOctant-1257.stypo;\nsub blockOctant-357 by blockOctant-357.stypo;\nsub blockOctant-2357 by blockOctant-2357.stypo;\nsub blockOctant-12357 by blockOctant-12357.stypo;\nsub blockOctant-457 by blockOctant-457.stypo;\nsub blockOctant-1457 by blockOctant-1457.stypo;\nsub blockOctant-12457 by blockOctant-12457.stypo;\nsub blockOctant-3457 by blockOctant-3457.stypo;\nsub blockOctant-13457 by blockOctant-13457.stypo;\nsub blockOctant-23457 by blockOctant-23457.stypo;\nsub blockOctant-67 by blockOctant-67.stypo;\nsub blockOctant-167 by blockOctant-167.stypo;\nsub blockOctant-267 by blockOctant-267.stypo;\nsub blockOctant-1267 by blockOctant-1267.stypo;\nsub blockOctant-367 by blockOctant-367.stypo;\nsub blockOctant-1367 by blockOctant-1367.stypo;\nsub blockOctant-2367 by blockOctant-2367.stypo;\nsub blockOctant-12367 by blockOctant-12367.stypo;\nsub blockOctant-467 by blockOctant-467.stypo;\nsub blockOctant-1467 by blockOctant-1467.stypo;\nsub blockOctant-2467 by blockOctant-2467.stypo;\nsub blockOctant-12467 by blockOctant-12467.stypo;\nsub blockOctant-3467 by blockOctant-3467.stypo;\nsub blockOctant-13467 by blockOctant-13467.stypo;\nsub blockOctant-23467 by blockOctant-23467.stypo;\nsub blockOctant-123467 by blockOctant-123467.stypo;\nsub blockOctant-567 by blockOctant-567.stypo;\nsub blockOctant-1567 by blockOctant-1567.stypo;\nsub blockOctant-2567 by blockOctant-2567.stypo;\nsub blockOctant-12567 by blockOctant-12567.stypo;\nsub blockOctant-3567 by blockOctant-3567.stypo;\nsub blockOctant-13567 by blockOctant-13567.stypo;\nsub blockOctant-23567 by blockOctant-23567.stypo;\nsub blockOctant-123567 by blockOctant-123567.stypo;\nsub blockOctant-4567 by blockOctant-4567.stypo;\nsub blockOctant-14567 by blockOctant-14567.stypo;\nsub blockOctant-24567 by blockOctant-24567.stypo;\nsub blockOctant-124567 by blockOctant-124567.stypo;\nsub blockOctant-34567 by blockOctant-34567.stypo;\nsub blockOctant-134567 by blockOctant-134567.stypo;\nsub blockOctant-234567 by blockOctant-234567.stypo;\nsub blockOctant-1234567 by blockOctant-1234567.stypo;\nsub blockOctant-8 by blockOctant-8.stypo;\nsub blockOctant-18 by blockOctant-18.stypo;\nsub blockOctant-28 by blockOctant-28.stypo;\nsub blockOctant-128 by blockOctant-128.stypo;\nsub blockOctant-38 by blockOctant-38.stypo;\nsub blockOctant-138 by blockOctant-138.stypo;\nsub blockOctant-238 by blockOctant-238.stypo;\nsub blockOctant-1238 by blockOctant-1238.stypo;\nsub blockOctant-48 by blockOctant-48.stypo;\nsub blockOctant-148 by blockOctant-148.stypo;\nsub blockOctant-248 by blockOctant-248.stypo;\nsub blockOctant-1248 by blockOctant-1248.stypo;\nsub blockOctant-348 by blockOctant-348.stypo;\nsub blockOctant-1348 by blockOctant-1348.stypo;\nsub blockOctant-2348 by blockOctant-2348.stypo;\nsub blockOctant-12348 by blockOctant-12348.stypo;\nsub blockOctant-58 by blockOctant-58.stypo;\nsub blockOctant-158 by blockOctant-158.stypo;\nsub blockOctant-258 by blockOctant-258.stypo;\nsub blockOctant-1258 by blockOctant-1258.stypo;\nsub blockOctant-358 by blockOctant-358.stypo;\nsub blockOctant-1358 by blockOctant-1358.stypo;\nsub blockOctant-2358 by blockOctant-2358.stypo;\nsub blockOctant-12358 by blockOctant-12358.stypo;\nsub blockOctant-458 by blockOctant-458.stypo;\nsub blockOctant-1458 by blockOctant-1458.stypo;\nsub blockOctant-2458 by blockOctant-2458.stypo;\nsub blockOctant-12458 by blockOctant-12458.stypo;\nsub blockOctant-3458 by blockOctant-3458.stypo;\nsub blockOctant-13458 by blockOctant-13458.stypo;\nsub blockOctant-23458 by blockOctant-23458.stypo;\nsub blockOctant-123458 by blockOctant-123458.stypo;\nsub blockOctant-168 by blockOctant-168.stypo;\nsub blockOctant-268 by blockOctant-268.stypo;\nsub blockOctant-1268 by blockOctant-1268.stypo;\nsub blockOctant-368 by blockOctant-368.stypo;\nsub blockOctant-2368 by blockOctant-2368.stypo;\nsub blockOctant-12368 by blockOctant-12368.stypo;\nsub blockOctant-468 by blockOctant-468.stypo;\nsub blockOctant-1468 by blockOctant-1468.stypo;\nsub blockOctant-12468 by blockOctant-12468.stypo;\nsub blockOctant-3468 by blockOctant-3468.stypo;\nsub blockOctant-13468 by blockOctant-13468.stypo;\nsub blockOctant-23468 by blockOctant-23468.stypo;\nsub blockOctant-568 by blockOctant-568.stypo;\nsub blockOctant-1568 by blockOctant-1568.stypo;\nsub blockOctant-2568 by blockOctant-2568.stypo;\nsub blockOctant-12568 by blockOctant-12568.stypo;\nsub blockOctant-3568 by blockOctant-3568.stypo;\nsub blockOctant-13568 by blockOctant-13568.stypo;\nsub blockOctant-23568 by blockOctant-23568.stypo;\nsub blockOctant-123568 by blockOctant-123568.stypo;\nsub blockOctant-4568 by blockOctant-4568.stypo;\nsub blockOctant-14568 by blockOctant-14568.stypo;\nsub blockOctant-24568 by blockOctant-24568.stypo;\nsub blockOctant-124568 by blockOctant-124568.stypo;\nsub blockOctant-34568 by blockOctant-34568.stypo;\nsub blockOctant-134568 by blockOctant-134568.stypo;\nsub blockOctant-234568 by blockOctant-234568.stypo;\nsub blockOctant-1234568 by blockOctant-1234568.stypo;\nsub blockOctant-178 by blockOctant-178.stypo;\nsub blockOctant-278 by blockOctant-278.stypo;\nsub blockOctant-1278 by blockOctant-1278.stypo;\nsub blockOctant-378 by blockOctant-378.stypo;\nsub blockOctant-1378 by blockOctant-1378.stypo;\nsub blockOctant-2378 by blockOctant-2378.stypo;\nsub blockOctant-12378 by blockOctant-12378.stypo;\nsub blockOctant-478 by blockOctant-478.stypo;\nsub blockOctant-1478 by blockOctant-1478.stypo;\nsub blockOctant-2478 by blockOctant-2478.stypo;\nsub blockOctant-12478 by blockOctant-12478.stypo;\nsub blockOctant-3478 by blockOctant-3478.stypo;\nsub blockOctant-13478 by blockOctant-13478.stypo;\nsub blockOctant-23478 by blockOctant-23478.stypo;\nsub blockOctant-123478 by blockOctant-123478.stypo;\nsub blockOctant-578 by blockOctant-578.stypo;\nsub blockOctant-1578 by blockOctant-1578.stypo;\nsub blockOctant-2578 by blockOctant-2578.stypo;\nsub blockOctant-12578 by blockOctant-12578.stypo;\nsub blockOctant-3578 by blockOctant-3578.stypo;\nsub blockOctant-13578 by blockOctant-13578.stypo;\nsub blockOctant-23578 by blockOctant-23578.stypo;\nsub blockOctant-123578 by blockOctant-123578.stypo;\nsub blockOctant-4578 by blockOctant-4578.stypo;\nsub blockOctant-14578 by blockOctant-14578.stypo;\nsub blockOctant-24578 by blockOctant-24578.stypo;\nsub blockOctant-124578 by blockOctant-124578.stypo;\nsub blockOctant-34578 by blockOctant-34578.stypo;\nsub blockOctant-134578 by blockOctant-134578.stypo;\nsub blockOctant-234578 by blockOctant-234578.stypo;\nsub blockOctant-1234578 by blockOctant-1234578.stypo;\nsub blockOctant-678 by blockOctant-678.stypo;\nsub blockOctant-1678 by blockOctant-1678.stypo;\nsub blockOctant-2678 by blockOctant-2678.stypo;\nsub blockOctant-12678 by blockOctant-12678.stypo;\nsub blockOctant-3678 by blockOctant-3678.stypo;\nsub blockOctant-13678 by blockOctant-13678.stypo;\nsub blockOctant-23678 by blockOctant-23678.stypo;\nsub blockOctant-123678 by blockOctant-123678.stypo;\nsub blockOctant-4678 by blockOctant-4678.stypo;\nsub blockOctant-14678 by blockOctant-14678.stypo;\nsub blockOctant-24678 by blockOctant-24678.stypo;\nsub blockOctant-124678 by blockOctant-124678.stypo;\nsub blockOctant-34678 by blockOctant-34678.stypo;\nsub blockOctant-134678 by blockOctant-134678.stypo;\nsub blockOctant-234678 by blockOctant-234678.stypo;\nsub blockOctant-1234678 by blockOctant-1234678.stypo;\nsub blockOctant-15678 by blockOctant-15678.stypo;\nsub blockOctant-25678 by blockOctant-25678.stypo;\nsub blockOctant-125678 by blockOctant-125678.stypo;\nsub blockOctant-35678 by blockOctant-35678.stypo;\nsub blockOctant-235678 by blockOctant-235678.stypo;\nsub blockOctant-1235678 by blockOctant-1235678.stypo;\nsub blockOctant-45678 by blockOctant-45678.stypo;\nsub blockOctant-145678 by blockOctant-145678.stypo;\nsub blockOctant-1245678 by blockOctant-1245678.stypo;\nsub blockOctant-1345678 by blockOctant-1345678.stypo;\nsub blockOctant-2345678 by blockOctant-2345678.stypo;\nsub blockSedecimant-1 by blockSedecimant-1.stypo;\nsub blockSedecimant-2 by blockSedecimant-2.stypo;\nsub blockSedecimant-3 by blockSedecimant-3.stypo;\nsub blockSedecimant-4 by blockSedecimant-4.stypo;\nsub blockSedecimant-5 by blockSedecimant-5.stypo;\nsub blockSedecimant-6 by blockSedecimant-6.stypo;\nsub blockSedecimant-7 by blockSedecimant-7.stypo;\nsub blockSedecimant-8 by blockSedecimant-8.stypo;\nsub blockSedecimant-9 by blockSedecimant-9.stypo;\nsub blockSedecimant-A by blockSedecimant-A.stypo;\nsub blockSedecimant-B by blockSedecimant-B.stypo;\nsub blockSedecimant-C by blockSedecimant-C.stypo;\nsub blockSedecimant-D by blockSedecimant-D.stypo;\nsub blockSedecimant-E by blockSedecimant-E.stypo;\nsub blockSedecimant-F by blockSedecimant-F.stypo;\nsub blockSedecimant-G by blockSedecimant-G.stypo;\nsub blockSedecimant-EFG by blockSedecimant-EFG.stypo;\nsub blockSedecimant-DEF by blockSedecimant-DEF.stypo;\nsub blockSedecimant-9D by blockSedecimant-9D.stypo;\nsub blockSedecimant-59D by blockSedecimant-59D.stypo;\nsub blockSedecimant-159 by blockSedecimant-159.stypo;\nsub blockSedecimant-15 by blockSedecimant-15.stypo;\nsub blockSedecimant-123 by blockSedecimant-123.stypo;\nsub blockSedecimant-234 by blockSedecimant-234.stypo;\nsub blockSedecimant-48 by blockSedecimant-48.stypo;\nsub blockSedecimant-48C by blockSedecimant-48C.stypo;\nsub blockSedecimant-8CG by blockSedecimant-8CG.stypo;\nsub blockSedecimant-CG by blockSedecimant-CG.stypo;\nsub verticalOneEighthBlock-2 by verticalOneEighthBlock-2.stypo;\nsub verticalOneEighthBlock-3 by verticalOneEighthBlock-3.stypo;\nsub verticalOneEighthBlock-4 by verticalOneEighthBlock-4.stypo;\nsub verticalOneEighthBlock-5 by verticalOneEighthBlock-5.stypo;\nsub verticalOneEighthBlock-6 by verticalOneEighthBlock-6.stypo;\nsub verticalOneEighthBlock-7 by verticalOneEighthBlock-7.stypo;\nsub horizontalOneEightBlock-2 by horizontalOneEightBlock-2.stypo;\nsub horizontalOneEightBlock-3 by horizontalOneEightBlock-3.stypo;\nsub horizontalOneEightBlock-4 by horizontalOneEightBlock-4.stypo;\nsub horizontalOneEightBlock-5 by horizontalOneEightBlock-5.stypo;\nsub horizontalOneEightBlock-6 by horizontalOneEightBlock-6.stypo;\nsub horizontalOneEightBlock-7 by horizontalOneEightBlock-7.stypo;\nsub leftAndLowerOneEightBlock by leftAndLowerOneEightBlock.stypo;\nsub leftAndUpperOneEightBlock by leftAndUpperOneEightBlock.stypo;\nsub rightAndUpperOneEightBlock by rightAndUpperOneEightBlock.stypo;\nsub rightAndLowerOneEightBlock by rightAndLowerOneEightBlock.stypo;\nsub upperAndLowerOneEightBlock by upperAndLowerOneEightBlock.stypo;\nsub upperThreeEighthsBlock by upperThreeEighthsBlock.stypo;\nsub upperFiveEighthsBlock by upperFiveEighthsBlock.stypo;\nsub upperSevenEighthsBlock by upperSevenEighthsBlock.stypo;\nsub rightOneQuarterBlock by rightOneQuarterBlock.stypo;\nsub rightThreeEighthsBlock by rightThreeEighthsBlock.stypo;\nsub rightFiveEighthsBlock by rightFiveEighthsBlock.stypo;\nsub rightThreeQuartersBlock by rightThreeQuartersBlock.stypo;\nsub rightSevenEighthsBlock by rightSevenEighthsBlock.stypo;\nsub leftTwoThirdsBlock by leftTwoThirdsBlock.stypo;\nsub leftOneThirdBlock by leftOneThirdBlock.stypo;\nsub heavyHorizontalFill by heavyHorizontalFill.stypo;\nsub blockSeparatedQuadrant-1 by blockSeparatedQuadrant-1.stypo;\nsub blockSeparatedQuadrant-2 by blockSeparatedQuadrant-2.stypo;\nsub blockSeparatedQuadrant-12 by blockSeparatedQuadrant-12.stypo;\nsub blockSeparatedQuadrant-3 by blockSeparatedQuadrant-3.stypo;\nsub blockSeparatedQuadrant-13 by blockSeparatedQuadrant-13.stypo;\nsub blockSeparatedQuadrant-23 by blockSeparatedQuadrant-23.stypo;\nsub blockSeparatedQuadrant-123 by blockSeparatedQuadrant-123.stypo;\nsub blockSeparatedQuadrant-4 by blockSeparatedQuadrant-4.stypo;\nsub blockSeparatedQuadrant-14 by blockSeparatedQuadrant-14.stypo;\nsub blockSeparatedQuadrant-24 by blockSeparatedQuadrant-24.stypo;\nsub blockSeparatedQuadrant-124 by blockSeparatedQuadrant-124.stypo;\nsub blockSeparatedQuadrant-34 by blockSeparatedQuadrant-34.stypo;\nsub blockSeparatedQuadrant-134 by blockSeparatedQuadrant-134.stypo;\nsub blockSeparatedQuadrant-234 by blockSeparatedQuadrant-234.stypo;\nsub blockSeparatedQuadrant-1234 by blockSeparatedQuadrant-1234.stypo;\nsub blockSeparatedSextant-1 by blockSeparatedSextant-1.stypo;\nsub blockSeparatedSextant-2 by blockSeparatedSextant-2.stypo;\nsub blockSeparatedSextant-12 by blockSeparatedSextant-12.stypo;\nsub blockSeparatedSextant-3 by blockSeparatedSextant-3.stypo;\nsub blockSeparatedSextant-13 by blockSeparatedSextant-13.stypo;\nsub blockSeparatedSextant-23 by blockSeparatedSextant-23.stypo;\nsub blockSeparatedSextant-123 by blockSeparatedSextant-123.stypo;\nsub blockSeparatedSextant-4 by blockSeparatedSextant-4.stypo;\nsub blockSeparatedSextant-14 by blockSeparatedSextant-14.stypo;\nsub blockSeparatedSextant-24 by blockSeparatedSextant-24.stypo;\nsub blockSeparatedSextant-124 by blockSeparatedSextant-124.stypo;\nsub blockSeparatedSextant-34 by blockSeparatedSextant-34.stypo;\nsub blockSeparatedSextant-134 by blockSeparatedSextant-134.stypo;\nsub blockSeparatedSextant-234 by blockSeparatedSextant-234.stypo;\nsub blockSeparatedSextant-1234 by blockSeparatedSextant-1234.stypo;\nsub blockSeparatedSextant-5 by blockSeparatedSextant-5.stypo;\nsub blockSeparatedSextant-15 by blockSeparatedSextant-15.stypo;\nsub blockSeparatedSextant-25 by blockSeparatedSextant-25.stypo;\nsub blockSeparatedSextant-125 by blockSeparatedSextant-125.stypo;\nsub blockSeparatedSextant-35 by blockSeparatedSextant-35.stypo;\nsub blockSeparatedSextant-135 by blockSeparatedSextant-135.stypo;\nsub blockSeparatedSextant-235 by blockSeparatedSextant-235.stypo;\nsub blockSeparatedSextant-1235 by blockSeparatedSextant-1235.stypo;\nsub blockSeparatedSextant-45 by blockSeparatedSextant-45.stypo;\nsub blockSeparatedSextant-145 by blockSeparatedSextant-145.stypo;\nsub blockSeparatedSextant-245 by blockSeparatedSextant-245.stypo;\nsub blockSeparatedSextant-1245 by blockSeparatedSextant-1245.stypo;\nsub blockSeparatedSextant-345 by blockSeparatedSextant-345.stypo;\nsub blockSeparatedSextant-1345 by blockSeparatedSextant-1345.stypo;\nsub blockSeparatedSextant-2345 by blockSeparatedSextant-2345.stypo;\nsub blockSeparatedSextant-12345 by blockSeparatedSextant-12345.stypo;\nsub blockSeparatedSextant-6 by blockSeparatedSextant-6.stypo;\nsub blockSeparatedSextant-16 by blockSeparatedSextant-16.stypo;\nsub blockSeparatedSextant-26 by blockSeparatedSextant-26.stypo;\nsub blockSeparatedSextant-126 by blockSeparatedSextant-126.stypo;\nsub blockSeparatedSextant-36 by blockSeparatedSextant-36.stypo;\nsub blockSeparatedSextant-136 by blockSeparatedSextant-136.stypo;\nsub blockSeparatedSextant-236 by blockSeparatedSextant-236.stypo;\nsub blockSeparatedSextant-1236 by blockSeparatedSextant-1236.stypo;\nsub blockSeparatedSextant-46 by blockSeparatedSextant-46.stypo;\nsub blockSeparatedSextant-146 by blockSeparatedSextant-146.stypo;\nsub blockSeparatedSextant-246 by blockSeparatedSextant-246.stypo;\nsub blockSeparatedSextant-1246 by blockSeparatedSextant-1246.stypo;\nsub blockSeparatedSextant-346 by blockSeparatedSextant-346.stypo;\nsub blockSeparatedSextant-1346 by blockSeparatedSextant-1346.stypo;\nsub blockSeparatedSextant-2346 by blockSeparatedSextant-2346.stypo;\nsub blockSeparatedSextant-12346 by blockSeparatedSextant-12346.stypo;\nsub blockSeparatedSextant-56 by blockSeparatedSextant-56.stypo;\nsub blockSeparatedSextant-156 by blockSeparatedSextant-156.stypo;\nsub blockSeparatedSextant-256 by blockSeparatedSextant-256.stypo;\nsub blockSeparatedSextant-1256 by blockSeparatedSextant-1256.stypo;\nsub blockSeparatedSextant-356 by blockSeparatedSextant-356.stypo;\nsub blockSeparatedSextant-1356 by blockSeparatedSextant-1356.stypo;\nsub blockSeparatedSextant-2356 by blockSeparatedSextant-2356.stypo;\nsub blockSeparatedSextant-12356 by blockSeparatedSextant-12356.stypo;\nsub blockSeparatedSextant-456 by blockSeparatedSextant-456.stypo;\nsub blockSeparatedSextant-1456 by blockSeparatedSextant-1456.stypo;\nsub blockSeparatedSextant-2456 by blockSeparatedSextant-2456.stypo;\nsub blockSeparatedSextant-12456 by blockSeparatedSextant-12456.stypo;\nsub blockSeparatedSextant-3456 by blockSeparatedSextant-3456.stypo;\nsub blockSeparatedSextant-13456 by blockSeparatedSextant-13456.stypo;\nsub blockSeparatedSextant-23456 by blockSeparatedSextant-23456.stypo;\nsub blockSeparatedSextant-123456 by blockSeparatedSextant-123456.stypo;\nsub largeType-1CE1A by largeType-1CE1A.stypo;\nsub largeType-1CE1B by largeType-1CE1B.stypo;\nsub largeType-1CE1C by largeType-1CE1C.stypo;\nsub largeType-1CE1D by largeType-1CE1D.stypo;\nsub largeType-1CE1E by largeType-1CE1E.stypo;\nsub largeType-1CE1F by largeType-1CE1F.stypo;\nsub largeType-1CE20 by largeType-1CE20.stypo;\nsub largeType-1CE21 by largeType-1CE21.stypo;\nsub largeType-1CE22 by largeType-1CE22.stypo;\nsub largeType-1CE23 by largeType-1CE23.stypo;\nsub largeType-1CE24 by largeType-1CE24.stypo;\nsub largeType-1CE25 by largeType-1CE25.stypo;\nsub largeType-1CE26 by largeType-1CE26.stypo;\nsub largeType-1CE27 by largeType-1CE27.stypo;\nsub largeType-1CE28 by largeType-1CE28.stypo;\nsub largeType-1CE29 by largeType-1CE29.stypo;\nsub largeType-1CE2A by largeType-1CE2A.stypo;\nsub largeType-1CE2B by largeType-1CE2B.stypo;\nsub largeType-1CE2C by largeType-1CE2C.stypo;\nsub largeType-1CE2D by largeType-1CE2D.stypo;\nsub largeType-1CE2E by largeType-1CE2E.stypo;\nsub largeType-1CE2F by largeType-1CE2F.stypo;\nsub largeType-1CE30 by largeType-1CE30.stypo;\nsub largeType-1CE31 by largeType-1CE31.stypo;\nsub largeType-1CE32 by largeType-1CE32.stypo;\nsub largeType-1CE33 by largeType-1CE33.stypo;\nsub largeType-1CE34 by largeType-1CE34.stypo;\nsub largeType-1CE35 by largeType-1CE35.stypo;\nsub largeType-1CE36 by largeType-1CE36.stypo;\nsub largeType-1CE37 by largeType-1CE37.stypo;\nsub largeType-1CE38 by largeType-1CE38.stypo;\nsub largeType-1CE39 by largeType-1CE39.stypo;\nsub largeType-1CE3A by largeType-1CE3A.stypo;\nsub largeType-1CE3B by largeType-1CE3B.stypo;\nsub largeType-1CE3C by largeType-1CE3C.stypo;\nsub largeType-1CE3D by largeType-1CE3D.stypo;\nsub largeType-1CE3E by largeType-1CE3E.stypo;\nsub largeType-1CE3F by largeType-1CE3F.stypo;\nsub largeType-1CE40 by largeType-1CE40.stypo;\nsub largeType-1CE41 by largeType-1CE41.stypo;\nsub largeType-1CE42 by largeType-1CE42.stypo;\nsub largeType-1CE43 by largeType-1CE43.stypo;\nsub largeType-1CE44 by largeType-1CE44.stypo;\nsub largeType-1CE45 by largeType-1CE45.stypo;\nsub largeType-1CE46 by largeType-1CE46.stypo;\nsub largeType-1CE47 by largeType-1CE47.stypo;\nsub largeType-1CE48 by largeType-1CE48.stypo;\nsub largeType-1CE49 by largeType-1CE49.stypo;\nsub largeType-1CE4A by largeType-1CE4A.stypo;\nsub largeType-1CE4B by largeType-1CE4B.stypo;\nsub largeType-1CE4C by largeType-1CE4C.stypo;\nsub largeType-1CE4D by largeType-1CE4D.stypo;\nsub largeType-1CE4E by largeType-1CE4E.stypo;\nsub largeType-1CE4F by largeType-1CE4F.stypo;\nsub largeType-1CE50 by largeType-1CE50.stypo;\n} rclt;\n\nfeature zero {\n# automatic\nsub zero by zero.zero;\n\n} zero;\n\nfeature ss20 {\n# notes:\n# Name: \nsub acknowledgeControl by acknowledgeControl.ss20;\nsub backspaceControl by backspaceControl.ss20;\nsub bellControl by bellControl.ss20;\nsub cancelControl by cancelControl.ss20;\nsub carriageReturnControl by carriageReturnControl.ss20;\nsub dataLinkEscapeControl by dataLinkEscapeControl.ss20;\nsub deleteControl by deleteFormTwoControl;\nsub deviceControlFourControl by upperLeftQuadrantWhiteCircle;\nsub deviceControlOneControl by upperRightQuadrantWhiteCircle;\nsub deviceControlThreeControl by lowerLeftQuadrantWhiteCircle;\nsub deviceControlTwoControl by lowerRightQuadrantWhiteCircle;\nsub endOfMediumControl by endOfMediumControl.ss20;\nsub endOfTextControl by endOfTextControl.ss20;\nsub endOfTransmissionBlockControl by endOfTransmissionBlockControl.ss20;\nsub endOfTransmissionControl by endOfTransmissionControl.ss20;\nsub enquiryControl by enquiryControl.ss20;\nsub escapeControl by escapeControl.ss20;\nsub fileSeparatorControl by whiteUpperLeftQuadrantSquare;\nsub formFeedControl by formFeedControl.ss20;\nsub groupSeparatorControl by whiteLowerLeftQuadrantSquare;\nsub horizontalTabulationControl by horizontalTabulationControl.ss20;\nsub lineFeedControl by lineFeedControl.ss20;\nsub negativeAcknowledgeControl by negativeAcknowledgeControl.ss20;\nsub nullControl by whiteSquare;\nsub recordSeparatorControl by whiteLowerRightQuadrantSquare;\nsub shiftInControl by shiftInControl.ss20;\nsub shiftOutControl by shiftOutControl.ss20;\nsub spaceControl by upWhiteTriangle;\nsub startOfHeadingControl by startOfHeadingControl.ss20;\nsub startOfTextControl by startOfTextControl.ss20;\nsub substituteControl by substituteControl.ss20;\nsub synchronousIdleControl by synchronousIdleControl.ss20;\nsub unitSeparatorControl by whiteUpperRightQuadrantSquare;\nsub verticalTabulationControl by verticalTabulationControl.ss20;\nsub newlineControl by returnsymbol;\n} ss20;\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/fontinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>ascender</key>\n    <integer>1568</integer>\n    <key>capHeight</key>\n    <integer>1420</integer>\n    <key>copyright</key>\n    <string>© 2021 Microsoft Corporation. All Rights Reserved.</string>\n    <key>descender</key>\n    <integer>-480</integer>\n    <key>familyName</key>\n    <string>Cascadia Code</string>\n    <key>guidelines</key>\n    <array>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1050</integer>\n        <key>y</key>\n        <integer>330</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1276</integer>\n        <key>y</key>\n        <integer>1440</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>440</integer>\n        <key>y</key>\n        <integer>-460</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>280</integer>\n        <key>y</key>\n        <integer>416</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2160</integer>\n        <key>y</key>\n        <integer>332</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2120</integer>\n        <key>y</key>\n        <integer>342</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>240</integer>\n        <key>y</key>\n        <integer>390</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>148</integer>\n        <key>y</key>\n        <integer>190</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2004</integer>\n        <key>y</key>\n        <integer>52</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3360</integer>\n        <key>y</key>\n        <integer>466</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3320</integer>\n        <key>y</key>\n        <integer>306</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3208</integer>\n        <key>y</key>\n        <integer>146</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>958</integer>\n        <key>y</key>\n        <integer>2226</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1105</integer>\n        <key>y</key>\n        <integer>1040</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1076</integer>\n        <key>y</key>\n        <integer>914</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>1555</integer>\n        <key>y</key>\n        <integer>1901</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>1376</integer>\n        <key>y</key>\n        <integer>-480</integer>\n      </dict>\n    </array>\n    <key>italicAngle</key>\n    <integer>0</integer>\n    <key>openTypeHeadCreated</key>\n    <string>2019/04/07 17:18:29</string>\n    <key>openTypeNameDesigner</key>\n    <string>Aaron Bell</string>\n    <key>openTypeNameDesignerURL</key>\n    <string>http://sajatypeworks.com</string>\n    <key>openTypeNameLicense</key>\n    <string>Microsoft supplied font. You may use this font to create, display, and print content as permitted by the license terms or terms of use, of the Microsoft product, service, or content in which this font was included. You may only (i) embed this font in content as permitted by the embedding restrictions included in this font; and (ii) temporarily download this font to a printer or other output device to help print content. Any other use is prohibited.\n \nThe following license, based on the SIL Open Font license (https://scripts.sil.org/OFL), applies to this font. Additional license terms may be found on the GitHub repository for this font (https://github.com/microsoft/cascadia-code/blob/main/LICENSE).\n \nPermission 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:\n \n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n \n2) 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.\n \n3) 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.\n \n4) 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.\n \n5) 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.\n \nTHE 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.</string>\n    <key>openTypeNameLicenseURL</key>\n    <string>https://scripts.sil.org/OFL</string>\n    <key>openTypeNameManufacturer</key>\n    <string>Saja Typeworks</string>\n    <key>openTypeNameManufacturerURL</key>\n    <string>http://sajatypeworks.com</string>\n    <key>openTypeOS2Panose</key>\n    <array>\n      <integer>2</integer>\n      <integer>11</integer>\n      <integer>6</integer>\n      <integer>9</integer>\n      <integer>2</integer>\n      <integer>0</integer>\n      <integer>0</integer>\n      <integer>2</integer>\n      <integer>0</integer>\n      <integer>4</integer>\n    </array>\n    <key>openTypeOS2Selection</key>\n    <array>\n      <integer>7</integer>\n    </array>\n    <key>openTypeOS2Type</key>\n    <array/>\n    <key>openTypeOS2VendorID</key>\n    <string>SAJA</string>\n    <key>postscriptBlueValues</key>\n    <array>\n      <integer>-20</integer>\n      <integer>0</integer>\n      <integer>1060</integer>\n      <integer>1080</integer>\n      <integer>1420</integer>\n      <integer>1440</integer>\n      <integer>1500</integer>\n      <integer>1520</integer>\n    </array>\n    <key>postscriptIsFixedPitch</key>\n    <true/>\n    <key>postscriptOtherBlues</key>\n    <array>\n      <integer>-480</integer>\n      <integer>-460</integer>\n    </array>\n    <key>postscriptStemSnapH</key>\n    <array>\n      <integer>200</integer>\n      <integer>210</integer>\n      <integer>212</integer>\n      <integer>220</integer>\n    </array>\n    <key>postscriptStemSnapV</key>\n    <array>\n      <integer>190</integer>\n      <integer>180</integer>\n    </array>\n    <key>postscriptUnderlinePosition</key>\n    <integer>-100</integer>\n    <key>postscriptUnderlineThickness</key>\n    <integer>100</integer>\n    <key>styleName</key>\n    <string>ExtraLight</string>\n    <key>trademark</key>\n    <string>Cascadia Code is a trademark of the Microsoft group of companies.</string>\n    <key>unitsPerEm</key>\n    <integer>2048</integer>\n    <key>versionMajor</key>\n    <integer>4</integer>\n    <key>versionMinor</key>\n    <integer>300</integer>\n    <key>xHeight</key>\n    <integer>1060</integer>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0410\"/>\n  <outline>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0041\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"69\" y=\"0\" type=\"line\"/>\n      <point x=\"169\" y=\"0\" type=\"line\"/>\n      <point x=\"595\" y=\"1333\" type=\"line\"/>\n      <point x=\"605\" y=\"1333\" type=\"line\"/>\n      <point x=\"1031\" y=\"0\" type=\"line\"/>\n      <point x=\"1131\" y=\"0\" type=\"line\"/>\n      <point x=\"669\" y=\"1420\" type=\"line\"/>\n      <point x=\"531\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"235\" y=\"396\" type=\"line\"/>\n      <point x=\"955\" y=\"396\" type=\"line\"/>\n      <point x=\"955\" y=\"486\" type=\"line\"/>\n      <point x=\"235\" y=\"486\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"42\" y=\"0\" type=\"line\"/>\n      <point x=\"144\" y=\"0\" type=\"line\"/>\n      <point x=\"416\" y=\"564\" type=\"line\"/>\n      <point x=\"425\" y=\"564\" type=\"line\"/>\n      <point x=\"697\" y=\"0\" type=\"line\"/>\n      <point x=\"799\" y=\"0\" type=\"line\"/>\n      <point x=\"486\" y=\"639\" type=\"line\"/>\n      <point x=\"355\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"129\" type=\"line\"/>\n      <point x=\"669\" y=\"129\" type=\"line\"/>\n      <point x=\"669\" y=\"218\" type=\"line\"/>\n      <point x=\"165\" y=\"218\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"AE\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C6\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1054\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"68\" y=\"0\" type=\"line\"/>\n      <point x=\"153\" y=\"0\" type=\"line\"/>\n      <point x=\"621\" y=\"1330\" type=\"line\"/>\n      <point x=\"695\" y=\"1330\" type=\"line\"/>\n      <point x=\"695\" y=\"1420\" type=\"line\"/>\n      <point x=\"565\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"232\" y=\"283\" type=\"line\"/>\n      <point x=\"700\" y=\"283\" type=\"line\"/>\n      <point x=\"700\" y=\"373\" type=\"line\"/>\n      <point x=\"232\" y=\"373\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"638\" y=\"0\" type=\"line\"/>\n      <point x=\"1074\" y=\"0\" type=\"line\"/>\n      <point x=\"1074\" y=\"90\" type=\"line\"/>\n      <point x=\"638\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"638\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"1420\" type=\"line\"/>\n      <point x=\"638\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"638\" y=\"666\" type=\"line\"/>\n      <point x=\"1014\" y=\"666\" type=\"line\"/>\n      <point x=\"1014\" y=\"756\" type=\"line\"/>\n      <point x=\"638\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"638\" y=\"1330\" type=\"line\"/>\n      <point x=\"1074\" y=\"1330\" type=\"line\"/>\n      <point x=\"1074\" y=\"1420\" type=\"line\"/>\n      <point x=\"638\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_E_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"AEacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FC\"/>\n  <outline>\n    <component base=\"AE\"/>\n    <component base=\"acutecomb.case\" xOffset=\"101\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C1\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0102\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_breveacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abreveacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAE\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_brevedotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevedotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB6\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_brevegrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevegrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_brevehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"hookabovecomb.case\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_brevetilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevetilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01CD\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n    <component base=\"acutecomb.case\" xOffset=\"347\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAC\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA6\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n    <component base=\"gravecomb.case\" xOffset=\"226\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA8\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"286\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAA\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Adieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Adotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Agrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ahookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_lpha-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alpha-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2C6D\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"580\" y=\"1413\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"556\" y=\"-27\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"726\" y=\"-27\"/>\n      <point x=\"831\" y=\"48\"/>\n      <point x=\"865\" y=\"191\" type=\"curve\"/>\n      <point x=\"893\" y=\"191\" type=\"line\"/>\n      <point x=\"863\" y=\"537\" type=\"line\"/>\n      <point x=\"863\" y=\"226\"/>\n      <point x=\"761\" y=\"63\"/>\n      <point x=\"566\" y=\"63\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"63\"/>\n      <point x=\"208\" y=\"279\"/>\n      <point x=\"208\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"208\" y=\"1125\"/>\n      <point x=\"331\" y=\"1350\"/>\n      <point x=\"566\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"1350\"/>\n      <point x=\"863\" y=\"1187\"/>\n      <point x=\"863\" y=\"876\" type=\"curve\"/>\n      <point x=\"933\" y=\"1222\" type=\"line\"/>\n      <point x=\"855\" y=\"1222\" type=\"line\"/>\n      <point x=\"823\" y=\"1365\"/>\n      <point x=\"720\" y=\"1440\"/>\n      <point x=\"556\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"1440\"/>\n      <point x=\"112\" y=\"1184\"/>\n      <point x=\"112\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"112\" y=\"220\"/>\n      <point x=\"264\" y=\"-27\"/>\n    </contour>\n    <contour>\n      <point x=\"877\" y=\"-13\" type=\"line\"/>\n      <point x=\"1143\" y=\"0\" type=\"line\"/>\n      <point x=\"1143\" y=\"62\" type=\"line\"/>\n      <point x=\"957\" y=\"81\" type=\"line\"/>\n      <point x=\"957\" y=\"741\" type=\"line\"/>\n      <point x=\"863\" y=\"741\" type=\"line\"/>\n      <point x=\"876\" y=\"571\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"863\" y=\"392\" type=\"line\"/>\n      <point x=\"957\" y=\"392\" type=\"line\"/>\n      <point x=\"957\" y=\"1420\" type=\"line\"/>\n      <point x=\"863\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_lpha.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alpha\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0391\"/>\n  <outline>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_lphatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alphatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0386\"/>\n  <anchor x=\"700\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"700\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"337\" y=\"0\" type=\"line\"/>\n      <point x=\"434\" y=\"0\" type=\"line\"/>\n      <point x=\"693\" y=\"1348\" type=\"line\"/>\n      <point x=\"703\" y=\"1348\" type=\"line\"/>\n      <point x=\"962\" y=\"0\" type=\"line\"/>\n      <point x=\"1059\" y=\"0\" type=\"line\"/>\n      <point x=\"777\" y=\"1420\" type=\"line\"/>\n      <point x=\"619\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"478\" y=\"396\" type=\"line\"/>\n      <point x=\"913\" y=\"396\" type=\"line\"/>\n      <point x=\"913\" y=\"486\" type=\"line\"/>\n      <point x=\"478\" y=\"486\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"73\" y=\"1040\" type=\"line\"/>\n      <point x=\"145\" y=\"1040\" type=\"line\"/>\n      <point x=\"265\" y=\"1420\" type=\"line\"/>\n      <point x=\"163\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Amacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0100\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0104\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1013\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"-424\"/>\n      <point x=\"1075\" y=\"-421\"/>\n      <point x=\"1107\" y=\"-418\" type=\"curve\"/>\n      <point x=\"1114\" y=\"-333\" type=\"line\"/>\n      <point x=\"1087\" y=\"-335\"/>\n      <point x=\"1060\" y=\"-337\"/>\n      <point x=\"1039\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"958\" y=\"-337\"/>\n      <point x=\"917\" y=\"-310\"/>\n      <point x=\"917\" y=\"-258\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"-181\"/>\n      <point x=\"974\" y=\"-112\"/>\n      <point x=\"1131\" y=\"0\" type=\"curve\"/>\n      <point x=\"1106\" y=\"32\" type=\"line\"/>\n      <point x=\"1052\" y=\"50\" type=\"line\"/>\n      <point x=\"1040\" y=\"0\" type=\"line\"/>\n      <point x=\"884\" y=\"-105\"/>\n      <point x=\"823\" y=\"-168\"/>\n      <point x=\"823\" y=\"-262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"-370\"/>\n      <point x=\"886\" y=\"-424\"/>\n    </contour>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C5\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"ringcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_ringacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aringacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FA\"/>\n  <outline>\n    <component base=\"acutecomb.case\" xOffset=\"-30\" yOffset=\"248\"/>\n    <component base=\"Aring\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Asmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1D00\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"8\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1079\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"0\" type=\"line\"/>\n      <point x=\"168\" y=\"0\" type=\"line\"/>\n      <point x=\"595\" y=\"1004\" type=\"line\"/>\n      <point x=\"605\" y=\"1004\" type=\"line\"/>\n      <point x=\"1032\" y=\"0\" type=\"line\"/>\n      <point x=\"1133\" y=\"0\" type=\"line\"/>\n      <point x=\"671\" y=\"1079\" type=\"line\"/>\n      <point x=\"529\" y=\"1079\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"235\" y=\"293\" type=\"line\"/>\n      <point x=\"955\" y=\"293\" type=\"line\"/>\n      <point x=\"955\" y=\"378\" type=\"line\"/>\n      <point x=\"235\" y=\"378\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Astroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023A\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"482\" y=\"-330\" type=\"line\"/>\n      <point x=\"629\" y=\"422\" type=\"line\"/>\n      <point x=\"636\" y=\"456\" type=\"line\"/>\n      <point x=\"744\" y=\"1009\" type=\"line\"/>\n      <point x=\"755\" y=\"1064\" type=\"line\"/>\n      <point x=\"878\" y=\"1692\" type=\"line\"/>\n      <point x=\"781\" y=\"1708\" type=\"line\"/>\n      <point x=\"687\" y=\"1214\" type=\"line\"/>\n      <point x=\"680\" y=\"1178\" type=\"line\"/>\n      <point x=\"544\" y=\"467\" type=\"line\"/>\n      <point x=\"537\" y=\"429\" type=\"line\"/>\n      <point x=\"395\" y=\"-314\" type=\"line\"/>\n    </contour>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/A_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Atilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C3\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"B\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0042\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"264\" y=\"0\" type=\"line\"/>\n      <point x=\"664\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"0\"/>\n      <point x=\"1110\" y=\"138\"/>\n      <point x=\"1110\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1110\" y=\"615\"/>\n      <point x=\"958\" y=\"750\"/>\n      <point x=\"692\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"750\" type=\"line\"/>\n      <point x=\"268\" y=\"705\" type=\"line\"/>\n      <point x=\"672\" y=\"705\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"705\"/>\n      <point x=\"1014\" y=\"586\"/>\n      <point x=\"1014\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"195\"/>\n      <point x=\"887\" y=\"90\"/>\n      <point x=\"666\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"1420\" type=\"line\"/>\n      <point x=\"184\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"256\" y=\"733\" type=\"line\"/>\n      <point x=\"704\" y=\"733\" type=\"line\"/>\n      <point x=\"704\" y=\"771\" type=\"line\"/>\n      <point x=\"256\" y=\"771\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"264\" y=\"758\" type=\"line\"/>\n      <point x=\"674\" y=\"758\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"758\"/>\n      <point x=\"1010\" y=\"871\"/>\n      <point x=\"1010\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"1292\"/>\n      <point x=\"854\" y=\"1420\"/>\n      <point x=\"582\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"1420\" type=\"line\"/>\n      <point x=\"268\" y=\"1330\" type=\"line\"/>\n      <point x=\"592\" y=\"1330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"1330\"/>\n      <point x=\"914\" y=\"1236\"/>\n      <point x=\"914\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"896\"/>\n      <point x=\"794\" y=\"795\"/>\n      <point x=\"586\" y=\"795\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"795\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/B_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"B.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"206\" y=\"0\" type=\"line\"/>\n      <point x=\"536\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"0\"/>\n      <point x=\"784\" y=\"62\"/>\n      <point x=\"784\" y=\"170\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"269\"/>\n      <point x=\"703\" y=\"326\"/>\n      <point x=\"562\" y=\"326\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"326\" type=\"line\"/>\n      <point x=\"209\" y=\"283\" type=\"line\"/>\n      <point x=\"539\" y=\"283\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"283\"/>\n      <point x=\"686\" y=\"246\"/>\n      <point x=\"686\" y=\"181\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"122\"/>\n      <point x=\"626\" y=\"88\"/>\n      <point x=\"521\" y=\"88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"307\" type=\"line\"/>\n      <point x=\"570\" y=\"307\" type=\"line\"/>\n      <point x=\"570\" y=\"346\" type=\"line\"/>\n      <point x=\"184\" y=\"346\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"206\" y=\"330\" type=\"line\"/>\n      <point x=\"532\" y=\"330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"330\"/>\n      <point x=\"734\" y=\"382\"/>\n      <point x=\"734\" y=\"473\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"579\"/>\n      <point x=\"651\" y=\"639\"/>\n      <point x=\"507\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"639\" type=\"line\"/>\n      <point x=\"209\" y=\"551\" type=\"line\"/>\n      <point x=\"509\" y=\"551\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"551\"/>\n      <point x=\"636\" y=\"520\"/>\n      <point x=\"636\" y=\"465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"406\"/>\n      <point x=\"597\" y=\"372\"/>\n      <point x=\"530\" y=\"372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"372\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/B_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Be-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0411\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"650\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"0\"/>\n      <point x=\"1096\" y=\"148\"/>\n      <point x=\"1096\" y=\"408\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1096\" y=\"668\"/>\n      <point x=\"934\" y=\"816\"/>\n      <point x=\"650\" y=\"816\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"816\" type=\"line\"/>\n      <point x=\"268\" y=\"726\" type=\"line\"/>\n      <point x=\"632\" y=\"726\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"726\"/>\n      <point x=\"1004\" y=\"611\"/>\n      <point x=\"1004\" y=\"408\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"205\"/>\n      <point x=\"868\" y=\"90\"/>\n      <point x=\"632\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"1420\" type=\"line\"/>\n      <point x=\"184\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"226\" y=\"1330\" type=\"line\"/>\n      <point x=\"992\" y=\"1330\" type=\"line\"/>\n      <point x=\"992\" y=\"1420\" type=\"line\"/>\n      <point x=\"226\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/B_eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Beta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0392\"/>\n  <outline>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"C\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0043\"/>\n  <anchor x=\"665\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"695\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"738\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"-20\"/>\n      <point x=\"992\" y=\"5\"/>\n      <point x=\"1112\" y=\"57\" type=\"curve\"/>\n      <point x=\"1087\" y=\"146\" type=\"line\"/>\n      <point x=\"976\" y=\"95\"/>\n      <point x=\"867\" y=\"70\"/>\n      <point x=\"752\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"70\"/>\n      <point x=\"196\" y=\"287\"/>\n      <point x=\"196\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"1123\"/>\n      <point x=\"401\" y=\"1350\"/>\n      <point x=\"716\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"1350\"/>\n      <point x=\"967\" y=\"1293\"/>\n      <point x=\"1040\" y=\"1194\" type=\"curve\"/>\n      <point x=\"1105\" y=\"1261\" type=\"line\"/>\n      <point x=\"1042\" y=\"1375\"/>\n      <point x=\"899\" y=\"1440\"/>\n      <point x=\"714\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"1440\"/>\n      <point x=\"100\" y=\"1174\"/>\n      <point x=\"100\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"100\" y=\"224\"/>\n      <point x=\"314\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"C.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"-9\"/>\n      <point x=\"693\" y=\"1\"/>\n      <point x=\"773\" y=\"22\" type=\"curve\"/>\n      <point x=\"749\" y=\"109\" type=\"line\"/>\n      <point x=\"681\" y=\"90\"/>\n      <point x=\"608\" y=\"81\"/>\n      <point x=\"542\" y=\"81\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"81\"/>\n      <point x=\"172\" y=\"162\"/>\n      <point x=\"172\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"473\"/>\n      <point x=\"306\" y=\"558\"/>\n      <point x=\"511\" y=\"558\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"558\"/>\n      <point x=\"690\" y=\"538\"/>\n      <point x=\"741\" y=\"503\" type=\"curve\"/>\n      <point x=\"790\" y=\"587\" type=\"line\"/>\n      <point x=\"735\" y=\"626\"/>\n      <point x=\"641\" y=\"648\"/>\n      <point x=\"510\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"648\"/>\n      <point x=\"73\" y=\"528\"/>\n      <point x=\"73\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"73\" y=\"101\"/>\n      <point x=\"225\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"CR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"000D\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0106\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"acutecomb.case\" xOffset=\"156\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"125\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010C\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"caroncomb.case\" xOffset=\"95\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C7\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"cedillacomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0108\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010A\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"95\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_he-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Che-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0427\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"570\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"550\" y=\"584\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"584\" type=\"line\"/>\n      <point x=\"930\" y=\"674\" type=\"line\"/>\n      <point x=\"550\" y=\"674\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"674\"/>\n      <point x=\"228\" y=\"792\"/>\n      <point x=\"228\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"1420\" type=\"line\"/>\n      <point x=\"134\" y=\"1420\" type=\"line\"/>\n      <point x=\"134\" y=\"1065\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"134\" y=\"727\"/>\n      <point x=\"258\" y=\"584\"/>\n    </contour>\n    <contour>\n      <point x=\"912\" y=\"0\" type=\"line\"/>\n      <point x=\"1006\" y=\"0\" type=\"line\"/>\n      <point x=\"1006\" y=\"1420\" type=\"line\"/>\n      <point x=\"912\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_hedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Chedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B6\"/>\n  <anchor x=\"570\" y=\"-290\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"982\" y=\"-290\" type=\"line\"/>\n      <point x=\"1076\" y=\"-290\" type=\"line\"/>\n      <point x=\"1076\" y=\"88\" type=\"line\"/>\n      <point x=\"982\" y=\"88\" type=\"line\"/>\n    </contour>\n    <component base=\"Che-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_hi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Chi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A7\"/>\n  <outline>\n    <component base=\"X\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/C_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023B\"/>\n  <anchor x=\"665\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"695\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"528\" y=\"-330\" type=\"line\"/>\n      <point x=\"924\" y=\"1692\" type=\"line\"/>\n      <point x=\"827\" y=\"1708\" type=\"line\"/>\n      <point x=\"441\" y=\"-314\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"D\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0044\"/>\n  <anchor x=\"540\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"540\" y=\"710\" name=\"center\"/>\n  <anchor x=\"540\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"234\" y=\"0\" type=\"line\"/>\n      <point x=\"474\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"0\"/>\n      <point x=\"1100\" y=\"229\"/>\n      <point x=\"1100\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1178\"/>\n      <point x=\"893\" y=\"1420\"/>\n      <point x=\"474\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"214\" y=\"1420\" type=\"line\"/>\n      <point x=\"238\" y=\"1330\" type=\"line\"/>\n      <point x=\"474\" y=\"1330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"1330\"/>\n      <point x=\"1004\" y=\"1118\"/>\n      <point x=\"1004\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"289\"/>\n      <point x=\"828\" y=\"90\"/>\n      <point x=\"474\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"234\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"0\" type=\"line\"/>\n      <point x=\"248\" y=\"0\" type=\"line\"/>\n      <point x=\"248\" y=\"1420\" type=\"line\"/>\n      <point x=\"154\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"D.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"206\" y=\"0\" type=\"line\"/>\n      <point x=\"403\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"0\"/>\n      <point x=\"798\" y=\"113\"/>\n      <point x=\"798\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"520\"/>\n      <point x=\"654\" y=\"639\"/>\n      <point x=\"403\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"639\" type=\"line\"/>\n      <point x=\"209\" y=\"551\" type=\"line\"/>\n      <point x=\"403\" y=\"551\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"551\"/>\n      <point x=\"700\" y=\"464\"/>\n      <point x=\"700\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"169\"/>\n      <point x=\"592\" y=\"88\"/>\n      <point x=\"403\" y=\"88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_african.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0189\"/>\n  <outline>\n    <component base=\"Eth\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010E\"/>\n  <outline>\n    <component base=\"D\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_croat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dcroat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0110\"/>\n  <outline>\n    <component base=\"Eth\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"De-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0414\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"210\" y=\"55\" type=\"line\"/>\n      <point x=\"310\" y=\"202\"/>\n      <point x=\"355\" y=\"612\"/>\n      <point x=\"355\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"1420\" type=\"line\"/>\n      <point x=\"261\" y=\"1420\" type=\"line\"/>\n      <point x=\"261\" y=\"869\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"611\"/>\n      <point x=\"211\" y=\"212\"/>\n      <point x=\"116\" y=\"80\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-290\" type=\"line\"/>\n      <point x=\"148\" y=\"-290\" type=\"line\"/>\n      <point x=\"148\" y=\"30\" type=\"line\"/>\n      <point x=\"54\" y=\"30\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1052\" y=\"-290\" type=\"line\"/>\n      <point x=\"1146\" y=\"-290\" type=\"line\"/>\n      <point x=\"1146\" y=\"30\" type=\"line\"/>\n      <point x=\"1052\" y=\"30\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"920\" y=\"0\" type=\"line\"/>\n      <point x=\"1014\" y=\"0\" type=\"line\"/>\n      <point x=\"1014\" y=\"1420\" type=\"line\"/>\n      <point x=\"920\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"354\" y=\"1330\" type=\"line\"/>\n      <point x=\"961\" y=\"1330\" type=\"line\"/>\n      <point x=\"961\" y=\"1420\" type=\"line\"/>\n      <point x=\"354\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1146\" y=\"90\" type=\"line\"/>\n      <point x=\"54\" y=\"90\" type=\"line\"/>\n      <point x=\"54\" y=\"0\" type=\"line\"/>\n      <point x=\"1146\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_e-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"De-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"0\" type=\"line\"/>\n      <point x=\"249\" y=\"0\" type=\"line\"/>\n      <point x=\"595\" y=\"1348\" type=\"line\"/>\n      <point x=\"605\" y=\"1348\" type=\"line\"/>\n      <point x=\"951\" y=\"0\" type=\"line\"/>\n      <point x=\"1051\" y=\"0\" type=\"line\"/>\n      <point x=\"678\" y=\"1420\" type=\"line\"/>\n      <point x=\"522\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-290\" type=\"line\"/>\n      <point x=\"148\" y=\"-290\" type=\"line\"/>\n      <point x=\"148\" y=\"60\" type=\"line\"/>\n      <point x=\"54\" y=\"60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"0\" type=\"line\"/>\n      <point x=\"1146\" y=\"0\" type=\"line\"/>\n      <point x=\"1146\" y=\"90\" type=\"line\"/>\n      <point x=\"54\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1052\" y=\"-290\" type=\"line\"/>\n      <point x=\"1146\" y=\"-290\" type=\"line\"/>\n      <point x=\"1146\" y=\"60\" type=\"line\"/>\n      <point x=\"1052\" y=\"60\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_elta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Delta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0394\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"69\" y=\"0\" type=\"line\"/>\n      <point x=\"169\" y=\"0\" type=\"line\"/>\n      <point x=\"595\" y=\"1333\" type=\"line\"/>\n      <point x=\"605\" y=\"1333\" type=\"line\"/>\n      <point x=\"1031\" y=\"0\" type=\"line\"/>\n      <point x=\"1131\" y=\"0\" type=\"line\"/>\n      <point x=\"669\" y=\"1420\" type=\"line\"/>\n      <point x=\"531\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"135\" y=\"0\" type=\"line\"/>\n      <point x=\"1055\" y=\"0\" type=\"line\"/>\n      <point x=\"1055\" y=\"90\" type=\"line\"/>\n      <point x=\"135\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0402\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"388\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"612\" y=\"0\" type=\"line\"/>\n      <point x=\"896\" y=\"0\"/>\n      <point x=\"1058\" y=\"160\"/>\n      <point x=\"1058\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"691\"/>\n      <point x=\"902\" y=\"834\"/>\n      <point x=\"630\" y=\"834\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"347\" y=\"834\" type=\"line\"/>\n      <point x=\"347\" y=\"744\" type=\"line\"/>\n      <point x=\"630\" y=\"744\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"744\"/>\n      <point x=\"964\" y=\"633\"/>\n      <point x=\"964\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"218\"/>\n      <point x=\"835\" y=\"90\"/>\n      <point x=\"612\" y=\"90\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"295\" y=\"0\" type=\"line\"/>\n      <point x=\"389\" y=\"0\" type=\"line\"/>\n      <point x=\"389\" y=\"1410\" type=\"line\"/>\n      <point x=\"295\" y=\"1410\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"14\" y=\"1330\" type=\"line\"/>\n      <point x=\"810\" y=\"1330\" type=\"line\"/>\n      <point x=\"810\" y=\"1420\" type=\"line\"/>\n      <point x=\"14\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_ze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0405\"/>\n  <outline>\n    <component base=\"S\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/D_zhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dzhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040F\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"942\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"1420\" type=\"line\"/>\n      <point x=\"942\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-290\" type=\"line\"/>\n      <point x=\"647\" y=\"-290\" type=\"line\"/>\n      <point x=\"647\" y=\"72\" type=\"line\"/>\n      <point x=\"553\" y=\"72\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"90\" type=\"line\"/>\n      <point x=\"164\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0404\"/>\n  <anchor x=\"675\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"705\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"748\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"866\" y=\"-20\"/>\n      <point x=\"980\" y=\"2\"/>\n      <point x=\"1090\" y=\"48\" type=\"curve\"/>\n      <point x=\"1065\" y=\"137\" type=\"line\"/>\n      <point x=\"965\" y=\"92\"/>\n      <point x=\"866\" y=\"70\"/>\n      <point x=\"762\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"70\"/>\n      <point x=\"208\" y=\"287\"/>\n      <point x=\"208\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"208\" y=\"1123\"/>\n      <point x=\"413\" y=\"1350\"/>\n      <point x=\"726\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"858\" y=\"1350\"/>\n      <point x=\"977\" y=\"1293\"/>\n      <point x=\"1050\" y=\"1194\" type=\"curve\"/>\n      <point x=\"1115\" y=\"1261\" type=\"line\"/>\n      <point x=\"1052\" y=\"1375\"/>\n      <point x=\"909\" y=\"1440\"/>\n      <point x=\"724\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"1440\"/>\n      <point x=\"110\" y=\"1174\"/>\n      <point x=\"110\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"110\" y=\"224\"/>\n      <point x=\"324\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"182\" y=\"682\" type=\"line\"/>\n      <point x=\"862\" y=\"682\" type=\"line\"/>\n      <point x=\"862\" y=\"772\" type=\"line\"/>\n      <point x=\"182\" y=\"772\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0045\"/>\n  <anchor x=\"630\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"630\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"1420\" type=\"line\"/>\n      <point x=\"184\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"90\" type=\"line\"/>\n      <point x=\"184\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"666\" type=\"line\"/>\n      <point x=\"896\" y=\"666\" type=\"line\"/>\n      <point x=\"896\" y=\"756\" type=\"line\"/>\n      <point x=\"184\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"1330\" type=\"line\"/>\n      <point x=\"1076\" y=\"1330\" type=\"line\"/>\n      <point x=\"1076\" y=\"1420\" type=\"line\"/>\n      <point x=\"184\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"760\" y=\"0\" type=\"line\"/>\n      <point x=\"760\" y=\"88\" type=\"line\"/>\n      <point x=\"122\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"276\" type=\"line\"/>\n      <point x=\"634\" y=\"276\" type=\"line\"/>\n      <point x=\"634\" y=\"364\" type=\"line\"/>\n      <point x=\"122\" y=\"364\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"551\" type=\"line\"/>\n      <point x=\"760\" y=\"551\" type=\"line\"/>\n      <point x=\"760\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C9\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"acutecomb.case\" xOffset=\"91\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ebreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0114\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"brevecomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011A\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"caroncomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CA\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"25\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBE\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"25\"/>\n    <component base=\"acutecomb.case\" xOffset=\"377\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC6\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"30\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"25\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC0\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"25\"/>\n    <component base=\"gravecomb.case\" xOffset=\"256\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC2\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"25\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"316\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC4\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"25\"/>\n    <component base=\"tildecomb.case\" xOffset=\"40\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CB\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0116\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB8\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_f-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ef-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0424\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"939\" y=\"120\"/>\n      <point x=\"1110\" y=\"315\"/>\n      <point x=\"1110\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1110\" y=\"1117\"/>\n      <point x=\"939\" y=\"1320\"/>\n      <point x=\"600\" y=\"1320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"1320\"/>\n      <point x=\"90\" y=\"1117\"/>\n      <point x=\"90\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"90\" y=\"315\"/>\n      <point x=\"261\" y=\"120\"/>\n    </contour>\n    <contour>\n      <point x=\"552\" y=\"-20\" type=\"line\"/>\n      <point x=\"646\" y=\"-20\" type=\"line\"/>\n      <point x=\"646\" y=\"148\" type=\"line\"/>\n      <point x=\"646\" y=\"171\" type=\"line\"/>\n      <point x=\"646\" y=\"1269\" type=\"line\"/>\n      <point x=\"646\" y=\"1308\" type=\"line\"/>\n      <point x=\"646\" y=\"1460\" type=\"line\"/>\n      <point x=\"552\" y=\"1460\" type=\"line\"/>\n      <point x=\"552\" y=\"1308\" type=\"line\"/>\n      <point x=\"552\" y=\"1269\" type=\"line\"/>\n      <point x=\"552\" y=\"171\" type=\"line\"/>\n      <point x=\"552\" y=\"148\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"210\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"210\"/>\n      <point x=\"186\" y=\"376\"/>\n      <point x=\"186\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"186\" y=\"1058\"/>\n      <point x=\"324\" y=\"1230\"/>\n      <point x=\"600\" y=\"1230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"1230\"/>\n      <point x=\"1014\" y=\"1058\"/>\n      <point x=\"1014\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"376\"/>\n      <point x=\"876\" y=\"210\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_f-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ef-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"958\" y=\"50\"/>\n      <point x=\"1110\" y=\"244\"/>\n      <point x=\"1110\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1110\" y=\"1170\"/>\n      <point x=\"958\" y=\"1370\"/>\n      <point x=\"600\" y=\"1370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"1370\"/>\n      <point x=\"90\" y=\"1170\"/>\n      <point x=\"90\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"90\" y=\"244\"/>\n      <point x=\"242\" y=\"50\"/>\n    </contour>\n    <contour>\n      <point x=\"552\" y=\"-80\" type=\"line\"/>\n      <point x=\"646\" y=\"-80\" type=\"line\"/>\n      <point x=\"646\" y=\"64\" type=\"line\"/>\n      <point x=\"646\" y=\"134\" type=\"line\"/>\n      <point x=\"646\" y=\"1289\" type=\"line\"/>\n      <point x=\"646\" y=\"1354\" type=\"line\"/>\n      <point x=\"646\" y=\"1500\" type=\"line\"/>\n      <point x=\"552\" y=\"1500\" type=\"line\"/>\n      <point x=\"552\" y=\"1354\" type=\"line\"/>\n      <point x=\"552\" y=\"1289\" type=\"line\"/>\n      <point x=\"552\" y=\"134\" type=\"line\"/>\n      <point x=\"552\" y=\"64\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"140\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"140\"/>\n      <point x=\"186\" y=\"307\"/>\n      <point x=\"186\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"186\" y=\"1107\"/>\n      <point x=\"310\" y=\"1280\"/>\n      <point x=\"600\" y=\"1280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"1280\"/>\n      <point x=\"1014\" y=\"1107\"/>\n      <point x=\"1014\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"307\"/>\n      <point x=\"890\" y=\"140\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Egrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C8\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBA\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_l-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"El-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041B\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"61\" y=\"1\" type=\"line\"/>\n      <point x=\"348\" y=\"1\"/>\n      <point x=\"372\" y=\"192\"/>\n      <point x=\"372\" y=\"501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"1420\" type=\"line\"/>\n      <point x=\"278\" y=\"1420\" type=\"line\"/>\n      <point x=\"278\" y=\"494\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"245\"/>\n      <point x=\"269\" y=\"91\"/>\n      <point x=\"61\" y=\"91\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"942\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"1420\" type=\"line\"/>\n      <point x=\"942\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"342\" y=\"1330\" type=\"line\"/>\n      <point x=\"999\" y=\"1330\" type=\"line\"/>\n      <point x=\"999\" y=\"1420\" type=\"line\"/>\n      <point x=\"342\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_l-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"El-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"69\" y=\"0\" type=\"line\"/>\n      <point x=\"169\" y=\"0\" type=\"line\"/>\n      <point x=\"595\" y=\"1333\" type=\"line\"/>\n      <point x=\"605\" y=\"1333\" type=\"line\"/>\n      <point x=\"1031\" y=\"0\" type=\"line\"/>\n      <point x=\"1131\" y=\"0\" type=\"line\"/>\n      <point x=\"669\" y=\"1420\" type=\"line\"/>\n      <point x=\"531\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_m-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Em-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041C\"/>\n  <outline>\n    <component base=\"M\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Emacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0112\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"macroncomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_n-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"En-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041D\"/>\n  <outline>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_ndescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Endescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04A2\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1026\" y=\"-290\" type=\"line\"/>\n      <point x=\"1120\" y=\"-290\" type=\"line\"/>\n      <point x=\"1120\" y=\"88\" type=\"line\"/>\n      <point x=\"1026\" y=\"88\" type=\"line\"/>\n    </contour>\n    <component base=\"En-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_ng.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eng\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014A\"/>\n  <guideline x=\"860\" y=\"123\" angle=\"90\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"648\" y=\"-480\" type=\"line\"/>\n      <point x=\"738\" y=\"-463\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"-423\"/>\n      <point x=\"1028\" y=\"-320\"/>\n      <point x=\"1028\" y=\"-56\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"184\" type=\"line\"/>\n      <point x=\"934\" y=\"184\" type=\"line\"/>\n      <point x=\"934\" y=\"-48\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"-257\"/>\n      <point x=\"879\" y=\"-343\"/>\n      <point x=\"728\" y=\"-371\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"-388\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0118\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"957\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"-424\"/>\n      <point x=\"1019\" y=\"-423\"/>\n      <point x=\"1051\" y=\"-415\" type=\"curve\"/>\n      <point x=\"1058\" y=\"-332\" type=\"line\"/>\n      <point x=\"1031\" y=\"-335\"/>\n      <point x=\"1004\" y=\"-337\"/>\n      <point x=\"983\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"-337\"/>\n      <point x=\"821\" y=\"-293\"/>\n      <point x=\"821\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"-83\"/>\n      <point x=\"923\" y=\"0\"/>\n      <point x=\"1075\" y=\"0\" type=\"curve\"/>\n      <point x=\"950\" y=\"32\" type=\"line\"/>\n      <point x=\"850\" y=\"50\" type=\"line\"/>\n      <point x=\"850\" y=\"-10\" type=\"line\"/>\n      <point x=\"766\" y=\"-70\"/>\n      <point x=\"727\" y=\"-135\"/>\n      <point x=\"727\" y=\"-218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"-353\"/>\n      <point x=\"806\" y=\"-424\"/>\n    </contour>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_open.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0190\"/>\n  <anchor x=\"680\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"680\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"680\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"1440\"/>\n      <point x=\"208\" y=\"1311\"/>\n      <point x=\"208\" y=\"1093\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"208\" y=\"920\"/>\n      <point x=\"305\" y=\"785\"/>\n      <point x=\"546\" y=\"758\" type=\"curve\"/>\n      <point x=\"529\" y=\"819\" type=\"line\"/>\n      <point x=\"529\" y=\"702\" type=\"line\"/>\n      <point x=\"546\" y=\"751\" type=\"line\"/>\n      <point x=\"341\" y=\"747\"/>\n      <point x=\"152\" y=\"611\"/>\n      <point x=\"152\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"119\"/>\n      <point x=\"346\" y=\"-20\"/>\n      <point x=\"674\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"-20\"/>\n      <point x=\"955\" y=\"-4\"/>\n      <point x=\"1076\" y=\"48\" type=\"curve\"/>\n      <point x=\"1052\" y=\"137\" type=\"line\"/>\n      <point x=\"908\" y=\"84\"/>\n      <point x=\"831\" y=\"70\"/>\n      <point x=\"669\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"70\"/>\n      <point x=\"248\" y=\"180\"/>\n      <point x=\"248\" y=\"365\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"581\"/>\n      <point x=\"416\" y=\"702\"/>\n      <point x=\"666\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"816\" y=\"702\" type=\"line\"/>\n      <point x=\"838\" y=\"790\" type=\"line\"/>\n      <point x=\"455\" y=\"803\"/>\n      <point x=\"304\" y=\"890\"/>\n      <point x=\"304\" y=\"1078\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"1249\"/>\n      <point x=\"444\" y=\"1350\"/>\n      <point x=\"681\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"829\" y=\"1350\"/>\n      <point x=\"962\" y=\"1290\"/>\n      <point x=\"1045\" y=\"1214\" type=\"curve\"/>\n      <point x=\"1106\" y=\"1286\" type=\"line\"/>\n      <point x=\"1027\" y=\"1374\"/>\n      <point x=\"872\" y=\"1440\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_psilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Epsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0395\"/>\n  <outline>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_psilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Epsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0388\"/>\n  <anchor x=\"700\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"700\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"360\" y=\"0\" type=\"line\"/>\n      <point x=\"454\" y=\"0\" type=\"line\"/>\n      <point x=\"454\" y=\"1420\" type=\"line\"/>\n      <point x=\"360\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"360\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"90\" type=\"line\"/>\n      <point x=\"360\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"360\" y=\"666\" type=\"line\"/>\n      <point x=\"897\" y=\"666\" type=\"line\"/>\n      <point x=\"897\" y=\"756\" type=\"line\"/>\n      <point x=\"360\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"23\" y=\"1040\" type=\"line\"/>\n      <point x=\"95\" y=\"1040\" type=\"line\"/>\n      <point x=\"215\" y=\"1420\" type=\"line\"/>\n      <point x=\"113\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"360\" y=\"1330\" type=\"line\"/>\n      <point x=\"1077\" y=\"1330\" type=\"line\"/>\n      <point x=\"1077\" y=\"1420\" type=\"line\"/>\n      <point x=\"360\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_r-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Er-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0420\"/>\n  <outline>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_reversed-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ereversed-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042D\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"530\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"476\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"-20\"/>\n      <point x=\"1080\" y=\"256\"/>\n      <point x=\"1080\" y=\"713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"1183\"/>\n      <point x=\"866\" y=\"1440\"/>\n      <point x=\"455\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"1440\"/>\n      <point x=\"220\" y=\"1424\"/>\n      <point x=\"109\" y=\"1390\" type=\"curve\"/>\n      <point x=\"134\" y=\"1304\" type=\"line\"/>\n      <point x=\"227\" y=\"1335\"/>\n      <point x=\"320\" y=\"1350\"/>\n      <point x=\"421\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"1350\"/>\n      <point x=\"984\" y=\"1115\"/>\n      <point x=\"984\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"308\"/>\n      <point x=\"799\" y=\"70\"/>\n      <point x=\"487\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"70\"/>\n      <point x=\"245\" y=\"100\"/>\n      <point x=\"107\" y=\"197\" type=\"curve\"/>\n      <point x=\"41\" y=\"131\" type=\"line\"/>\n      <point x=\"154\" y=\"30\"/>\n      <point x=\"305\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"333\" y=\"682\" type=\"line\"/>\n      <point x=\"1018\" y=\"682\" type=\"line\"/>\n      <point x=\"1018\" y=\"772\" type=\"line\"/>\n      <point x=\"333\" y=\"772\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_reversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ereversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"018E\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"120\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"570\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"1016\" y=\"0\" type=\"line\"/>\n      <point x=\"1016\" y=\"1420\" type=\"line\"/>\n      <point x=\"922\" y=\"1420\" type=\"line\"/>\n      <point x=\"922\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1016\" y=\"0\" type=\"line\"/>\n      <point x=\"1016\" y=\"90\" type=\"line\"/>\n      <point x=\"124\" y=\"90\" type=\"line\"/>\n      <point x=\"124\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1016\" y=\"666\" type=\"line\"/>\n      <point x=\"1016\" y=\"756\" type=\"line\"/>\n      <point x=\"304\" y=\"756\" type=\"line\"/>\n      <point x=\"304\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1016\" y=\"1330\" type=\"line\"/>\n      <point x=\"1016\" y=\"1420\" type=\"line\"/>\n      <point x=\"124\" y=\"1420\" type=\"line\"/>\n      <point x=\"124\" y=\"1330\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_s-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Es-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0421\"/>\n  <outline>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_sh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Esh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A9\"/>\n  <outline>\n    <component base=\"Sigma\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_ta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0397\"/>\n  <outline>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_tatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Etatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0389\"/>\n  <anchor x=\"688\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"688\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"942\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"1420\" type=\"line\"/>\n      <point x=\"942\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"340\" y=\"0\" type=\"line\"/>\n      <point x=\"434\" y=\"0\" type=\"line\"/>\n      <point x=\"432\" y=\"1420\" type=\"line\"/>\n      <point x=\"340\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"23\" y=\"1040\" type=\"line\"/>\n      <point x=\"95\" y=\"1040\" type=\"line\"/>\n      <point x=\"215\" y=\"1420\" type=\"line\"/>\n      <point x=\"113\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"382\" y=\"662\" type=\"line\"/>\n      <point x=\"999\" y=\"662\" type=\"line\"/>\n      <point x=\"999\" y=\"752\" type=\"line\"/>\n      <point x=\"382\" y=\"752\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_th.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D0\"/>\n  <outline>\n    <contour>\n      <point x=\"12\" y=\"662\" type=\"line\"/>\n      <point x=\"651\" y=\"662\" type=\"line\"/>\n      <point x=\"651\" y=\"752\" type=\"line\"/>\n      <point x=\"12\" y=\"752\" type=\"line\"/>\n    </contour>\n    <component base=\"D\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Etilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBC\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"tildecomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/E_zh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ezh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B7\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"566\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"-20\"/>\n      <point x=\"1058\" y=\"127\"/>\n      <point x=\"1058\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"651\"/>\n      <point x=\"851\" y=\"787\"/>\n      <point x=\"434\" y=\"793\" type=\"curve\"/>\n      <point x=\"434\" y=\"752\" type=\"line\"/>\n      <point x=\"992\" y=\"1317\" type=\"line\"/>\n      <point x=\"992\" y=\"1420\" type=\"line\"/>\n      <point x=\"187\" y=\"1420\" type=\"line\"/>\n      <point x=\"187\" y=\"1330\" type=\"line\"/>\n      <point x=\"920\" y=\"1330\" type=\"line\"/>\n      <point x=\"941\" y=\"1391\" type=\"line\"/>\n      <point x=\"323\" y=\"765\" type=\"line\"/>\n      <point x=\"337\" y=\"703\" type=\"line\"/>\n      <point x=\"434\" y=\"703\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"703\"/>\n      <point x=\"962\" y=\"598\"/>\n      <point x=\"962\" y=\"385\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"185\"/>\n      <point x=\"819\" y=\"70\"/>\n      <point x=\"571\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"70\"/>\n      <point x=\"305\" y=\"112\"/>\n      <point x=\"165\" y=\"218\" type=\"curve\"/>\n      <point x=\"98\" y=\"151\" type=\"line\"/>\n      <point x=\"219\" y=\"37\"/>\n      <point x=\"372\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/F_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"F\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0046\"/>\n  <anchor x=\"660\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"660\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"0\" type=\"line\"/>\n      <point x=\"298\" y=\"0\" type=\"line\"/>\n      <point x=\"298\" y=\"1420\" type=\"line\"/>\n      <point x=\"204\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"606\" type=\"line\"/>\n      <point x=\"956\" y=\"606\" type=\"line\"/>\n      <point x=\"956\" y=\"696\" type=\"line\"/>\n      <point x=\"204\" y=\"696\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"1330\" type=\"line\"/>\n      <point x=\"1096\" y=\"1330\" type=\"line\"/>\n      <point x=\"1096\" y=\"1420\" type=\"line\"/>\n      <point x=\"204\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/F_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"F.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"244\" type=\"line\"/>\n      <point x=\"651\" y=\"244\" type=\"line\"/>\n      <point x=\"651\" y=\"332\" type=\"line\"/>\n      <point x=\"122\" y=\"332\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"551\" type=\"line\"/>\n      <point x=\"760\" y=\"551\" type=\"line\"/>\n      <point x=\"760\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/F_hook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Fhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0191\"/>\n  <anchor x=\"660\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"-33\" y=\"-468\" type=\"line\"/>\n      <point x=\"4\" y=\"-463\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"222\" y=\"-434\"/>\n      <point x=\"298\" y=\"-320\"/>\n      <point x=\"298\" y=\"-56\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"184\" type=\"line\"/>\n      <point x=\"204\" y=\"184\" type=\"line\"/>\n      <point x=\"204\" y=\"-48\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"204\" y=\"-257\"/>\n      <point x=\"149\" y=\"-350\"/>\n      <point x=\"-6\" y=\"-371\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-43\" y=\"-376\" type=\"line\"/>\n    </contour>\n    <component base=\"F\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"G\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0047\"/>\n  <anchor x=\"695\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"675\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"692\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"-20\"/>\n      <point x=\"1000\" y=\"22\"/>\n      <point x=\"1056\" y=\"40\" type=\"curve\"/>\n      <point x=\"998\" y=\"120\" type=\"line\"/>\n      <point x=\"937\" y=\"102\"/>\n      <point x=\"840\" y=\"70\"/>\n      <point x=\"716\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"70\"/>\n      <point x=\"176\" y=\"308\"/>\n      <point x=\"176\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"176\" y=\"1121\"/>\n      <point x=\"366\" y=\"1350\"/>\n      <point x=\"696\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"1350\"/>\n      <point x=\"943\" y=\"1302\"/>\n      <point x=\"1020\" y=\"1217\" type=\"curve\"/>\n      <point x=\"1089\" y=\"1285\" type=\"line\"/>\n      <point x=\"1012\" y=\"1384\"/>\n      <point x=\"865\" y=\"1440\"/>\n      <point x=\"684\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1440\"/>\n      <point x=\"80\" y=\"1175\"/>\n      <point x=\"80\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"247\"/>\n      <point x=\"303\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"962\" y=\"40\" type=\"line\"/>\n      <point x=\"1056\" y=\"40\" type=\"line\"/>\n      <point x=\"1056\" y=\"660\" type=\"line\"/>\n      <point x=\"962\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"572\" type=\"line\"/>\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\n      <point x=\"1050\" y=\"660\" type=\"line\"/>\n      <point x=\"600\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"G.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"-9\"/>\n      <point x=\"731\" y=\"10\"/>\n      <point x=\"770\" y=\"18\" type=\"curve\"/>\n      <point x=\"724\" y=\"100\" type=\"line\"/>\n      <point x=\"682\" y=\"92\"/>\n      <point x=\"613\" y=\"77\"/>\n      <point x=\"525\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"77\"/>\n      <point x=\"172\" y=\"162\"/>\n      <point x=\"172\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"473\"/>\n      <point x=\"297\" y=\"558\"/>\n      <point x=\"511\" y=\"558\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"558\"/>\n      <point x=\"687\" y=\"537\"/>\n      <point x=\"741\" y=\"503\" type=\"curve\"/>\n      <point x=\"789\" y=\"586\" type=\"line\"/>\n      <point x=\"728\" y=\"625\"/>\n      <point x=\"634\" y=\"648\"/>\n      <point x=\"503\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"230\" y=\"648\"/>\n      <point x=\"73\" y=\"528\"/>\n      <point x=\"73\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"73\" y=\"103\"/>\n      <point x=\"226\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"678\" y=\"18\" type=\"line\"/>\n      <point x=\"770\" y=\"18\" type=\"line\"/>\n      <point x=\"770\" y=\"321\" type=\"line\"/>\n      <point x=\"678\" y=\"321\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"444\" y=\"233\" type=\"line\"/>\n      <point x=\"766\" y=\"233\" type=\"line\"/>\n      <point x=\"766\" y=\"321\" type=\"line\"/>\n      <point x=\"444\" y=\"321\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_amma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gamma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0393\"/>\n  <outline>\n    <component base=\"Ge-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_ammaafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gammaafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0194\"/>\n  <anchor x=\"600\" y=\"-400\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-462\" type=\"line\"/>\n      <point x=\"759\" y=\"-462\"/>\n      <point x=\"864\" y=\"-372\"/>\n      <point x=\"864\" y=\"-236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"-132\"/>\n      <point x=\"803\" y=\"-52\"/>\n      <point x=\"636\" y=\"61\" type=\"curve\"/>\n      <point x=\"546\" y=\"36\" type=\"line\"/>\n      <point x=\"709\" y=\"-84\"/>\n      <point x=\"768\" y=\"-157\"/>\n      <point x=\"768\" y=\"-236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"-318\"/>\n      <point x=\"701\" y=\"-372\"/>\n      <point x=\"600\" y=\"-372\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-462\" type=\"curve\"/>\n      <point x=\"600\" y=\"-372\" type=\"line\"/>\n      <point x=\"499\" y=\"-372\"/>\n      <point x=\"432\" y=\"-318\"/>\n      <point x=\"432\" y=\"-236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"-157\"/>\n      <point x=\"491\" y=\"-85\"/>\n      <point x=\"654\" y=\"36\" type=\"curve\"/>\n      <point x=\"564\" y=\"61\" type=\"line\"/>\n      <point x=\"397\" y=\"-53\"/>\n      <point x=\"336\" y=\"-132\"/>\n      <point x=\"336\" y=\"-236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"-372\"/>\n      <point x=\"441\" y=\"-462\"/>\n    </contour>\n    <contour>\n      <point x=\"524\" y=\"0\" type=\"line\"/>\n      <point x=\"605\" y=\"30\" type=\"line\"/>\n      <point x=\"675\" y=\"0\" type=\"line\"/>\n      <point x=\"1131\" y=\"1420\" type=\"line\"/>\n      <point x=\"1030\" y=\"1420\" type=\"line\"/>\n      <point x=\"605\" y=\"77\" type=\"line\"/>\n      <point x=\"595\" y=\"77\" type=\"line\"/>\n      <point x=\"170\" y=\"1420\" type=\"line\"/>\n      <point x=\"69\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gbreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011E\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"brevecomb.case\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E6\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"caroncomb.case\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011C\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0122\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"95\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0120\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ge-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0413\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"620\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"204\" y=\"0\" type=\"line\"/>\n      <point x=\"298\" y=\"0\" type=\"line\"/>\n      <point x=\"298\" y=\"1420\" type=\"line\"/>\n      <point x=\"204\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"1330\" type=\"line\"/>\n      <point x=\"1066\" y=\"1330\" type=\"line\"/>\n      <point x=\"1066\" y=\"1420\" type=\"line\"/>\n      <point x=\"204\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_ermandbls.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Germandbls\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E9E\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"166\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1224\"/>\n      <point x=\"378\" y=\"1351\"/>\n      <point x=\"656\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"1350\"/>\n      <point x=\"890\" y=\"1308\"/>\n      <point x=\"1003\" y=\"1210\" type=\"curve\"/>\n      <point x=\"1078\" y=\"1270\" type=\"line\"/>\n      <point x=\"960\" y=\"1389\"/>\n      <point x=\"834\" y=\"1440\"/>\n      <point x=\"656\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"312\" y=\"1440\"/>\n      <point x=\"166\" y=\"1288\"/>\n      <point x=\"166\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"661\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"-20\"/>\n      <point x=\"1131\" y=\"138\"/>\n      <point x=\"1131\" y=\"415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"617\"/>\n      <point x=\"1004\" y=\"778\"/>\n      <point x=\"783\" y=\"856\" type=\"curve\"/>\n      <point x=\"781\" y=\"817\" type=\"line\"/>\n      <point x=\"1079\" y=\"1270\" type=\"line\"/>\n      <point x=\"989\" y=\"1300\" type=\"line\"/>\n      <point x=\"658\" y=\"794\" type=\"line\"/>\n      <point x=\"751\" y=\"764\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"932\" y=\"706\"/>\n      <point x=\"1035\" y=\"578\"/>\n      <point x=\"1035\" y=\"415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1035\" y=\"196\"/>\n      <point x=\"904\" y=\"70\"/>\n      <point x=\"677\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"70\"/>\n      <point x=\"545\" y=\"77\"/>\n      <point x=\"485\" y=\"88\" type=\"curve\"/>\n      <point x=\"459\" y=\"3\" type=\"line\"/>\n      <point x=\"509\" y=\"-11\"/>\n      <point x=\"583\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_hestroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ghestroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0492\"/>\n  <outline>\n    <contour>\n      <point x=\"20\" y=\"635\" type=\"line\"/>\n      <point x=\"708\" y=\"635\" type=\"line\"/>\n      <point x=\"708\" y=\"725\" type=\"line\"/>\n      <point x=\"20\" y=\"725\" type=\"line\"/>\n    </contour>\n    <component base=\"Ge-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_heupturn-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gheupturn-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0490\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"180\" y=\"0\" type=\"line\"/>\n      <point x=\"274\" y=\"0\" type=\"line\"/>\n      <point x=\"274\" y=\"1420\" type=\"line\"/>\n      <point x=\"180\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"1330\" type=\"line\"/>\n      <point x=\"1086\" y=\"1330\" type=\"line\"/>\n      <point x=\"1086\" y=\"1420\" type=\"line\"/>\n      <point x=\"180\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"992\" y=\"1370\" type=\"line\"/>\n      <point x=\"1086\" y=\"1370\" type=\"line\"/>\n      <point x=\"1086\" y=\"1730\" type=\"line\"/>\n      <point x=\"992\" y=\"1730\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0403\"/>\n  <outline>\n    <component base=\"Ge-cy\"/>\n    <component base=\"acutecomb.case\" xOffset=\"81\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gsmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0262\"/>\n  <anchor x=\"675\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"655\" y=\"1079\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"673\" y=\"-15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"-15\"/>\n      <point x=\"1017\" y=\"17\"/>\n      <point x=\"1079\" y=\"30\" type=\"curve\"/>\n      <point x=\"1019\" y=\"115\" type=\"line\"/>\n      <point x=\"949\" y=\"101\"/>\n      <point x=\"839\" y=\"77\"/>\n      <point x=\"697\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"77\"/>\n      <point x=\"195\" y=\"246\"/>\n      <point x=\"195\" y=\"549\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"195\" y=\"837\"/>\n      <point x=\"370\" y=\"1002\"/>\n      <point x=\"677\" y=\"1002\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"1002\"/>\n      <point x=\"958\" y=\"961\"/>\n      <point x=\"1046\" y=\"890\" type=\"curve\"/>\n      <point x=\"1112\" y=\"973\" type=\"line\"/>\n      <point x=\"1027\" y=\"1050\"/>\n      <point x=\"866\" y=\"1094\"/>\n      <point x=\"665\" y=\"1094\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"1094\"/>\n      <point x=\"99\" y=\"893\"/>\n      <point x=\"99\" y=\"541\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"184\"/>\n      <point x=\"307\" y=\"-15\"/>\n    </contour>\n    <contour>\n      <point x=\"985\" y=\"30\" type=\"line\"/>\n      <point x=\"1079\" y=\"30\" type=\"line\"/>\n      <point x=\"1079\" y=\"510\" type=\"line\"/>\n      <point x=\"985\" y=\"510\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"651\" y=\"420\" type=\"line\"/>\n      <point x=\"1073\" y=\"420\" type=\"line\"/>\n      <point x=\"1073\" y=\"510\" type=\"line\"/>\n      <point x=\"651\" y=\"510\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/G_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E4\"/>\n  <anchor x=\"715\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"695\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"692\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"-20\"/>\n      <point x=\"983\" y=\"22\"/>\n      <point x=\"1036\" y=\"40\" type=\"curve\"/>\n      <point x=\"978\" y=\"120\" type=\"line\"/>\n      <point x=\"921\" y=\"102\"/>\n      <point x=\"831\" y=\"70\"/>\n      <point x=\"716\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"70\"/>\n      <point x=\"176\" y=\"308\"/>\n      <point x=\"176\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"176\" y=\"1121\"/>\n      <point x=\"366\" y=\"1350\"/>\n      <point x=\"696\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"1350\"/>\n      <point x=\"943\" y=\"1302\"/>\n      <point x=\"1020\" y=\"1217\" type=\"curve\"/>\n      <point x=\"1089\" y=\"1285\" type=\"line\"/>\n      <point x=\"1012\" y=\"1384\"/>\n      <point x=\"865\" y=\"1440\"/>\n      <point x=\"684\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1440\"/>\n      <point x=\"80\" y=\"1175\"/>\n      <point x=\"80\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"247\"/>\n      <point x=\"303\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"942\" y=\"40\" type=\"line\"/>\n      <point x=\"1036\" y=\"40\" type=\"line\"/>\n      <point x=\"1036\" y=\"660\" type=\"line\"/>\n      <point x=\"942\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"630\" y=\"424\" type=\"line\"/>\n      <point x=\"1200\" y=\"424\" type=\"line\"/>\n      <point x=\"1200\" y=\"512\" type=\"line\"/>\n      <point x=\"630\" y=\"512\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/H_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"H\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0048\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"942\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"1420\" type=\"line\"/>\n      <point x=\"942\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"208\" y=\"662\" type=\"line\"/>\n      <point x=\"997\" y=\"662\" type=\"line\"/>\n      <point x=\"997\" y=\"752\" type=\"line\"/>\n      <point x=\"208\" y=\"752\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/H_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"H.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"638\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"639\" type=\"line\"/>\n      <point x=\"638\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"108\" y=\"0\" type=\"line\"/>\n      <point x=\"202\" y=\"0\" type=\"line\"/>\n      <point x=\"202\" y=\"639\" type=\"line\"/>\n      <point x=\"108\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"137\" y=\"274\" type=\"line\"/>\n      <point x=\"706\" y=\"274\" type=\"line\"/>\n      <point x=\"706\" y=\"362\" type=\"line\"/>\n      <point x=\"137\" y=\"362\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/H_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0425\"/>\n  <outline>\n    <component base=\"X\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/H_adescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B2\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1042\" y=\"-290\" type=\"line\"/>\n      <point x=\"1136\" y=\"-290\" type=\"line\"/>\n      <point x=\"1136\" y=\"88\" type=\"line\"/>\n      <point x=\"1042\" y=\"88\" type=\"line\"/>\n    </contour>\n    <component base=\"Ha-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/H_ardsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hardsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042A\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"344\" y=\"0\" type=\"line\"/>\n      <point x=\"634\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"0\"/>\n      <point x=\"1100\" y=\"158\"/>\n      <point x=\"1100\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"708\"/>\n      <point x=\"930\" y=\"866\"/>\n      <point x=\"634\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"866\" type=\"line\"/>\n      <point x=\"320\" y=\"776\" type=\"line\"/>\n      <point x=\"626\" y=\"776\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"866\" y=\"776\"/>\n      <point x=\"1004\" y=\"651\"/>\n      <point x=\"1004\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"215\"/>\n      <point x=\"866\" y=\"90\"/>\n      <point x=\"626\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"264\" y=\"0\" type=\"line\"/>\n      <point x=\"358\" y=\"0\" type=\"line\"/>\n      <point x=\"358\" y=\"1420\" type=\"line\"/>\n      <point x=\"264\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"14\" y=\"1330\" type=\"line\"/>\n      <point x=\"308\" y=\"1330\" type=\"line\"/>\n      <point x=\"308\" y=\"1420\" type=\"line\"/>\n      <point x=\"14\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/H_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0126\"/>\n  <outline>\n    <contour>\n      <point x=\"42\" y=\"1052\" type=\"line\"/>\n      <point x=\"1158\" y=\"1052\" type=\"line\"/>\n      <point x=\"1158\" y=\"1142\" type=\"line\"/>\n      <point x=\"42\" y=\"1142\" type=\"line\"/>\n    </contour>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/H_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021E\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/H_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0124\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/H_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E24\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0406\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0049\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"552\" y=\"0\" type=\"line\"/>\n      <point x=\"646\" y=\"0\" type=\"line\"/>\n      <point x=\"646\" y=\"1420\" type=\"line\"/>\n      <point x=\"552\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"90\" type=\"line\"/>\n      <point x=\"192\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"1330\" type=\"line\"/>\n      <point x=\"1008\" y=\"1330\" type=\"line\"/>\n      <point x=\"1008\" y=\"1420\" type=\"line\"/>\n      <point x=\"192\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"467\" y=\"0\" type=\"line\"/>\n      <point x=\"467\" y=\"639\" type=\"line\"/>\n      <point x=\"373\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"0\" type=\"line\"/>\n      <point x=\"713\" y=\"0\" type=\"line\"/>\n      <point x=\"713\" y=\"88\" type=\"line\"/>\n      <point x=\"128\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"551\" type=\"line\"/>\n      <point x=\"713\" y=\"551\" type=\"line\"/>\n      <point x=\"713\" y=\"639\" type=\"line\"/>\n      <point x=\"128\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_J_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"IJ\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0132\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"665\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"-20\"/>\n      <point x=\"1058\" y=\"132\"/>\n      <point x=\"1058\" y=\"396\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"1420\" type=\"line\"/>\n      <point x=\"964\" y=\"1420\" type=\"line\"/>\n      <point x=\"964\" y=\"396\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"189\"/>\n      <point x=\"856\" y=\"70\"/>\n      <point x=\"670\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"70\"/>\n      <point x=\"374\" y=\"181\"/>\n      <point x=\"374\" y=\"376\" type=\"curve\"/>\n      <point x=\"278\" y=\"376\" type=\"line\"/>\n      <point x=\"278\" y=\"124\"/>\n      <point x=\"419\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"55\" y=\"517\" type=\"line\"/>\n      <point x=\"599\" y=\"517\" type=\"line\"/>\n      <point x=\"599\" y=\"607\" type=\"line\"/>\n      <point x=\"55\" y=\"607\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"279\" y=\"517\" type=\"line\"/>\n      <point x=\"373\" y=\"517\" type=\"line\"/>\n      <point x=\"373\" y=\"1420\" type=\"line\"/>\n      <point x=\"279\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"55\" y=\"1330\" type=\"line\"/>\n      <point x=\"579\" y=\"1330\" type=\"line\"/>\n      <point x=\"579\" y=\"1420\" type=\"line\"/>\n      <point x=\"55\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"690\" y=\"1330\" type=\"line\"/>\n      <point x=\"1012\" y=\"1330\" type=\"line\"/>\n      <point x=\"1012\" y=\"1420\" type=\"line\"/>\n      <point x=\"690\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_J__acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"IJ_acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"IJ\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-213\"/>\n    <component base=\"acutecomb.case\" xOffset=\"341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ia-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042F\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"544\" y=\"628\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"958\" y=\"628\" type=\"line\"/>\n      <point x=\"958\" y=\"670\" type=\"line\"/>\n      <point x=\"584\" y=\"671\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"672\"/>\n      <point x=\"232\" y=\"789\"/>\n      <point x=\"232\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"1206\"/>\n      <point x=\"361\" y=\"1330\"/>\n      <point x=\"584\" y=\"1330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"1330\" type=\"line\"/>\n      <point x=\"978\" y=\"1420\" type=\"line\"/>\n      <point x=\"584\" y=\"1420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"299\" y=\"1420\"/>\n      <point x=\"136\" y=\"1266\"/>\n      <point x=\"136\" y=\"996\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"628\"/>\n      <point x=\"426\" y=\"628\"/>\n    </contour>\n    <contour>\n      <point x=\"96\" y=\"-5\" type=\"line\"/>\n      <point x=\"115\" y=\"-5\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"243\" y=\"-5\"/>\n      <point x=\"315\" y=\"58\"/>\n      <point x=\"354\" y=\"207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"401\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"523\"/>\n      <point x=\"456\" y=\"580\"/>\n      <point x=\"606\" y=\"580\" type=\"curve\"/>\n      <point x=\"606\" y=\"623\" type=\"line\"/>\n      <point x=\"575\" y=\"623\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"623\"/>\n      <point x=\"356\" y=\"592\"/>\n      <point x=\"316\" y=\"425\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"275\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"141\"/>\n      <point x=\"195\" y=\"85\"/>\n      <point x=\"105\" y=\"85\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"96\" y=\"85\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"545\" y=\"580\" type=\"line\"/>\n      <point x=\"980\" y=\"580\" type=\"line\"/>\n      <point x=\"980\" y=\"670\" type=\"line\"/>\n      <point x=\"545\" y=\"671\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"944\" y=\"0\" type=\"line\"/>\n      <point x=\"1038\" y=\"0\" type=\"line\"/>\n      <point x=\"1038\" y=\"1420\" type=\"line\"/>\n      <point x=\"944\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CD\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ibreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012C\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Icircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CE\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CF\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0130\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dotaccentcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECA\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ie-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0415\"/>\n  <outline>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_egrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iegrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0400\"/>\n  <outline>\n    <component base=\"Ie-cy\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Igrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CC\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ihookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC8\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ii-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0418\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"234\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"914\" y=\"1240\" type=\"line\"/>\n      <point x=\"974\" y=\"1240\" type=\"line\"/>\n      <point x=\"974\" y=\"1420\" type=\"line\"/>\n      <point x=\"914\" y=\"1420\" type=\"line\"/>\n      <point x=\"286\" y=\"180\" type=\"line\"/>\n      <point x=\"234\" y=\"180\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"172\" y=\"0\" type=\"line\"/>\n      <point x=\"266\" y=\"0\" type=\"line\"/>\n      <point x=\"266\" y=\"1420\" type=\"line\"/>\n      <point x=\"172\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"934\" y=\"0\" type=\"line\"/>\n      <point x=\"1028\" y=\"0\" type=\"line\"/>\n      <point x=\"1028\" y=\"1420\" type=\"line\"/>\n      <point x=\"934\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_igrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iigrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040D\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_ishort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iishort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0419\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"brevecomb-cy.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_macron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Imacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E2\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Imacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012A\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_o-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Io-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0401\"/>\n  <outline>\n    <component base=\"Ie-cy\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012E\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"632\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"-424\"/>\n      <point x=\"694\" y=\"-423\"/>\n      <point x=\"726\" y=\"-415\" type=\"curve\"/>\n      <point x=\"733\" y=\"-332\" type=\"line\"/>\n      <point x=\"706\" y=\"-335\"/>\n      <point x=\"679\" y=\"-337\"/>\n      <point x=\"658\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"-337\"/>\n      <point x=\"496\" y=\"-291\"/>\n      <point x=\"496\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"-87\"/>\n      <point x=\"596\" y=\"0\"/>\n      <point x=\"770\" y=\"0\" type=\"curve\"/>\n      <point x=\"770\" y=\"50\" type=\"line\"/>\n      <point x=\"525\" y=\"50\" type=\"line\"/>\n      <point x=\"525\" y=\"-10\" type=\"line\"/>\n      <point x=\"447\" y=\"-58\"/>\n      <point x=\"402\" y=\"-134\"/>\n      <point x=\"402\" y=\"-218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"-349\"/>\n      <point x=\"486\" y=\"-424\"/>\n    </contour>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_ota.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iota\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0399\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_otaafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotaafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0196\"/>\n  <outline>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_otadieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotadieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AA\"/>\n  <outline>\n    <component base=\"Iota\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_otatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038A\"/>\n  <anchor x=\"690\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"690\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"651\" y=\"0\" type=\"line\"/>\n      <point x=\"745\" y=\"0\" type=\"line\"/>\n      <point x=\"745\" y=\"1420\" type=\"line\"/>\n      <point x=\"651\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"368\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"90\" type=\"line\"/>\n      <point x=\"368\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"23\" y=\"1040\" type=\"line\"/>\n      <point x=\"95\" y=\"1040\" type=\"line\"/>\n      <point x=\"215\" y=\"1420\" type=\"line\"/>\n      <point x=\"113\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"368\" y=\"1330\" type=\"line\"/>\n      <point x=\"1008\" y=\"1330\" type=\"line\"/>\n      <point x=\"1008\" y=\"1420\" type=\"line\"/>\n      <point x=\"368\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ismall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1060\" type=\"line\"/>\n      <point x=\"553\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"90\" type=\"line\"/>\n      <point x=\"192\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"970\" type=\"line\"/>\n      <point x=\"1008\" y=\"970\" type=\"line\"/>\n      <point x=\"1008\" y=\"1060\" type=\"line\"/>\n      <point x=\"192\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Itilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0128\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/I_u-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iu-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042E\"/>\n  <anchor x=\"540\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"540\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"775\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"-20\"/>\n      <point x=\"1099\" y=\"195\"/>\n      <point x=\"1099\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"1219\"/>\n      <point x=\"1002\" y=\"1440\"/>\n      <point x=\"775\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"1440\"/>\n      <point x=\"451\" y=\"1219\"/>\n      <point x=\"451\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"195\"/>\n      <point x=\"548\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"0\" type=\"line\"/>\n      <point x=\"198\" y=\"0\" type=\"line\"/>\n      <point x=\"198\" y=\"1420\" type=\"line\"/>\n      <point x=\"104\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"166\" y=\"662\" type=\"line\"/>\n      <point x=\"493\" y=\"662\" type=\"line\"/>\n      <point x=\"493\" y=\"752\" type=\"line\"/>\n      <point x=\"166\" y=\"752\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"775\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"70\"/>\n      <point x=\"547\" y=\"258\"/>\n      <point x=\"547\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"1156\"/>\n      <point x=\"615\" y=\"1350\"/>\n      <point x=\"775\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"1350\"/>\n      <point x=\"1003\" y=\"1156\"/>\n      <point x=\"1003\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"258\"/>\n      <point x=\"935\" y=\"70\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/J_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"J\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"790\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"574\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"-20\"/>\n      <point x=\"1038\" y=\"144\"/>\n      <point x=\"1038\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"1420\" type=\"line\"/>\n      <point x=\"944\" y=\"1420\" type=\"line\"/>\n      <point x=\"944\" y=\"476\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"205\"/>\n      <point x=\"823\" y=\"70\"/>\n      <point x=\"579\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"70\"/>\n      <point x=\"206\" y=\"205\"/>\n      <point x=\"206\" y=\"476\" type=\"curve\"/>\n      <point x=\"110\" y=\"476\" type=\"line\"/>\n      <point x=\"110\" y=\"144\"/>\n      <point x=\"264\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"490\" y=\"1330\" type=\"line\"/>\n      <point x=\"996\" y=\"1330\" type=\"line\"/>\n      <point x=\"996\" y=\"1420\" type=\"line\"/>\n      <point x=\"490\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/J_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Jacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"J\"/>\n    <component base=\"acutecomb.case\" xOffset=\"251\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/J_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Jcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0134\"/>\n  <outline>\n    <component base=\"J\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"185\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/J_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Je-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0408\"/>\n  <outline>\n    <component base=\"J\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"K\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004B\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"620\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"240\" y=\"492\" type=\"line\"/>\n      <point x=\"770\" y=\"492\"/>\n      <point x=\"1070\" y=\"830\"/>\n      <point x=\"1070\" y=\"1420\" type=\"curve\"/>\n      <point x=\"974\" y=\"1420\" type=\"line\"/>\n      <point x=\"974\" y=\"887\"/>\n      <point x=\"715\" y=\"582\"/>\n      <point x=\"258\" y=\"582\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"0\" type=\"line\"/>\n      <point x=\"268\" y=\"0\" type=\"line\"/>\n      <point x=\"268\" y=\"1420\" type=\"line\"/>\n      <point x=\"174\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1026\" y=\"0\" type=\"line\"/>\n      <point x=\"1138\" y=\"0\" type=\"line\"/>\n      <point x=\"782\" y=\"710\" type=\"line\"/>\n      <point x=\"700\" y=\"650\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"K.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"184\" y=\"206\" type=\"line\"/>\n      <point x=\"552\" y=\"206\"/>\n      <point x=\"763\" y=\"364\"/>\n      <point x=\"763\" y=\"639\" type=\"curve\"/>\n      <point x=\"666\" y=\"639\" type=\"line\"/>\n      <point x=\"666\" y=\"419\"/>\n      <point x=\"495\" y=\"293\"/>\n      <point x=\"196\" y=\"293\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"697\" y=\"0\" type=\"line\"/>\n      <point x=\"810\" y=\"0\" type=\"line\"/>\n      <point x=\"543\" y=\"351\" type=\"line\"/>\n      <point x=\"459\" y=\"308\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"546\" y=\"712\" type=\"line\"/>\n      <point x=\"578\" y=\"712\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"712\"/>\n      <point x=\"781\" y=\"774\"/>\n      <point x=\"833\" y=\"919\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1234\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"1306\"/>\n      <point x=\"1013\" y=\"1336\"/>\n      <point x=\"1082\" y=\"1336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"1336\" type=\"line\"/>\n      <point x=\"1106\" y=\"1426\" type=\"line\"/>\n      <point x=\"1073\" y=\"1426\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"1426\"/>\n      <point x=\"905\" y=\"1389\"/>\n      <point x=\"865\" y=\"1281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"924\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"805\"/>\n      <point x=\"633\" y=\"755\"/>\n      <point x=\"546\" y=\"755\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"195\" y=\"665\" type=\"line\"/>\n      <point x=\"588\" y=\"665\" type=\"line\"/>\n      <point x=\"588\" y=\"755\" type=\"line\"/>\n      <point x=\"195\" y=\"755\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1073\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"-5\" type=\"line\"/>\n      <point x=\"1106\" y=\"85\" type=\"line\"/>\n      <point x=\"1082\" y=\"85\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1013\" y=\"85\"/>\n      <point x=\"972\" y=\"115\"/>\n      <point x=\"946\" y=\"187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"502\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"647\"/>\n      <point x=\"705\" y=\"709\"/>\n      <point x=\"578\" y=\"709\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"709\" type=\"line\"/>\n      <point x=\"546\" y=\"665\" type=\"line\"/>\n      <point x=\"633\" y=\"665\"/>\n      <point x=\"688\" y=\"615\"/>\n      <point x=\"732\" y=\"497\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"140\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"32\"/>\n      <point x=\"978\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E30\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"acutecomb.case\" xOffset=\"81\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_adescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"049A\"/>\n  <anchor x=\"590\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"546\" y=\"712\" type=\"line\"/>\n      <point x=\"578\" y=\"712\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"712\"/>\n      <point x=\"781\" y=\"774\"/>\n      <point x=\"833\" y=\"919\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1234\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"1306\"/>\n      <point x=\"1013\" y=\"1336\"/>\n      <point x=\"1082\" y=\"1336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"1336\" type=\"line\"/>\n      <point x=\"1106\" y=\"1426\" type=\"line\"/>\n      <point x=\"1073\" y=\"1426\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"1426\"/>\n      <point x=\"905\" y=\"1389\"/>\n      <point x=\"865\" y=\"1281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"924\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"805\"/>\n      <point x=\"633\" y=\"755\"/>\n      <point x=\"546\" y=\"755\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1042\" y=\"-290\" type=\"line\"/>\n      <point x=\"1136\" y=\"-290\" type=\"line\"/>\n      <point x=\"1136\" y=\"85\" type=\"line\"/>\n      <point x=\"1042\" y=\"85\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"195\" y=\"665\" type=\"line\"/>\n      <point x=\"588\" y=\"665\" type=\"line\"/>\n      <point x=\"588\" y=\"755\" type=\"line\"/>\n      <point x=\"195\" y=\"755\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1073\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"-5\" type=\"line\"/>\n      <point x=\"1106\" y=\"85\" type=\"line\"/>\n      <point x=\"1082\" y=\"85\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1013\" y=\"85\"/>\n      <point x=\"972\" y=\"115\"/>\n      <point x=\"946\" y=\"187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"502\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"647\"/>\n      <point x=\"705\" y=\"709\"/>\n      <point x=\"578\" y=\"709\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"709\" type=\"line\"/>\n      <point x=\"546\" y=\"665\" type=\"line\"/>\n      <point x=\"633\" y=\"665\"/>\n      <point x=\"688\" y=\"615\"/>\n      <point x=\"732\" y=\"497\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"140\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"32\"/>\n      <point x=\"978\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_aiS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"KaiSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CF\"/>\n  <anchor x=\"600\" y=\"-395\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"240\" y=\"492\" type=\"line\"/>\n      <point x=\"770\" y=\"492\"/>\n      <point x=\"1070\" y=\"830\"/>\n      <point x=\"1070\" y=\"1420\" type=\"curve\"/>\n      <point x=\"974\" y=\"1420\" type=\"line\"/>\n      <point x=\"974\" y=\"887\"/>\n      <point x=\"715\" y=\"582\"/>\n      <point x=\"258\" y=\"582\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"0\" type=\"line\"/>\n      <point x=\"268\" y=\"0\" type=\"line\"/>\n      <point x=\"268\" y=\"1420\" type=\"line\"/>\n      <point x=\"174\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1044\" y=\"-395\" type=\"line\"/>\n      <point x=\"1138\" y=\"-395\" type=\"line\"/>\n      <point x=\"1138\" y=\"-90\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"-26\"/>\n      <point x=\"1126\" y=\"22\"/>\n      <point x=\"1092\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"733\" type=\"line\"/>\n      <point x=\"688\" y=\"674\" type=\"line\"/>\n      <point x=\"1008\" y=\"37\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1034\" y=\"-14\"/>\n      <point x=\"1044\" y=\"-47\"/>\n      <point x=\"1044\" y=\"-90\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_appa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kappa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039A\"/>\n  <outline>\n    <component base=\"K\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0136\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E32\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040C\"/>\n  <outline>\n    <component base=\"Ka-cy\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/K_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Klinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E34\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"L\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004C\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"229\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"1420\" type=\"line\"/>\n      <point x=\"184\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"90\" type=\"line\"/>\n      <point x=\"184\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"L.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"760\" y=\"0\" type=\"line\"/>\n      <point x=\"760\" y=\"90\" type=\"line\"/>\n      <point x=\"122\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_I_G_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"LIG\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0139\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-310\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_ambda.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lambda\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039B\"/>\n  <outline>\n    <component base=\"El-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023D\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"677\" type=\"line\"/>\n      <point x=\"796\" y=\"677\" type=\"line\"/>\n      <point x=\"796\" y=\"767\" type=\"line\"/>\n      <point x=\"-20\" y=\"767\" type=\"line\"/>\n    </contour>\n    <component base=\"L\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013D\"/>\n  <outline>\n    <contour>\n      <point x=\"797\" y=\"1188\" type=\"line\"/>\n      <point x=\"889\" y=\"1188\" type=\"line\"/>\n      <point x=\"969\" y=\"1568\" type=\"line\"/>\n      <point x=\"872\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"L\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013B\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_dot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ldot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013F\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"periodcentered\" xOffset=\"200\" yOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ldotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E36\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0409\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"77\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"0\"/>\n      <point x=\"338\" y=\"79\"/>\n      <point x=\"338\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"1420\" type=\"line\"/>\n      <point x=\"244\" y=\"1420\" type=\"line\"/>\n      <point x=\"244\" y=\"335\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"148\"/>\n      <point x=\"205\" y=\"90\"/>\n      <point x=\"77\" y=\"90\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"606\" y=\"0\" type=\"line\"/>\n      <point x=\"700\" y=\"0\" type=\"line\"/>\n      <point x=\"700\" y=\"1420\" type=\"line\"/>\n      <point x=\"606\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"671\" y=\"0\" type=\"line\"/>\n      <point x=\"774\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"0\"/>\n      <point x=\"1100\" y=\"172\"/>\n      <point x=\"1100\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"694\"/>\n      <point x=\"971\" y=\"866\"/>\n      <point x=\"774\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"866\" type=\"line\"/>\n      <point x=\"661\" y=\"776\" type=\"line\"/>\n      <point x=\"776\" y=\"776\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"776\"/>\n      <point x=\"1004\" y=\"641\"/>\n      <point x=\"1004\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"225\"/>\n      <point x=\"914\" y=\"90\"/>\n      <point x=\"776\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"292\" y=\"1330\" type=\"line\"/>\n      <point x=\"657\" y=\"1330\" type=\"line\"/>\n      <point x=\"657\" y=\"1420\" type=\"line\"/>\n      <point x=\"292\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Llinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E3A\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_middletilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lmiddletilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2C62\"/>\n  <anchor x=\"716\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"700\" y=\"710\" name=\"center\"/>\n  <anchor x=\"404\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1164\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"24\" y=\"589\" type=\"line\"/>\n      <point x=\"118\" y=\"589\" type=\"line\"/>\n      <point x=\"118\" y=\"701\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"118\" y=\"784\"/>\n      <point x=\"153\" y=\"827\"/>\n      <point x=\"220\" y=\"827\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"827\"/>\n      <point x=\"327\" y=\"791\"/>\n      <point x=\"410\" y=\"721\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"494\" y=\"652\"/>\n      <point x=\"577\" y=\"616\"/>\n      <point x=\"653\" y=\"616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"616\"/>\n      <point x=\"846\" y=\"693\"/>\n      <point x=\"846\" y=\"840\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"846\" y=\"944\" type=\"line\"/>\n      <point x=\"752\" y=\"944\" type=\"line\"/>\n      <point x=\"752\" y=\"832\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"749\"/>\n      <point x=\"718\" y=\"706\"/>\n      <point x=\"652\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"706\"/>\n      <point x=\"527\" y=\"741\"/>\n      <point x=\"443\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"880\"/>\n      <point x=\"275\" y=\"917\"/>\n      <point x=\"221\" y=\"917\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"92\" y=\"917\"/>\n      <point x=\"24\" y=\"840\"/>\n      <point x=\"24\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"357\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"90\" type=\"line\"/>\n      <point x=\"357\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"357\" y=\"0\" type=\"line\"/>\n      <point x=\"451\" y=\"0\" type=\"line\"/>\n      <point x=\"451\" y=\"1420\" type=\"line\"/>\n      <point x=\"357\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0141\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"260\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"58\" y=\"455\" type=\"line\"/>\n      <point x=\"864\" y=\"960\" type=\"line\"/>\n      <point x=\"864\" y=\"1060\" type=\"line\"/>\n      <point x=\"58\" y=\"555\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"357\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"90\" type=\"line\"/>\n      <point x=\"357\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"357\" y=\"0\" type=\"line\"/>\n      <point x=\"451\" y=\"0\" type=\"line\"/>\n      <point x=\"451\" y=\"1420\" type=\"line\"/>\n      <point x=\"357\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/L_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lsmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"029F\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"540\" name=\"center\"/>\n  <anchor x=\"260\" y=\"1079\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1079\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"183\" y=\"0\" type=\"line\"/>\n      <point x=\"277\" y=\"0\" type=\"line\"/>\n      <point x=\"277\" y=\"1079\" type=\"line\"/>\n      <point x=\"183\" y=\"1079\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"183\" y=\"0\" type=\"line\"/>\n      <point x=\"1078\" y=\"0\" type=\"line\"/>\n      <point x=\"1078\" y=\"90\" type=\"line\"/>\n      <point x=\"183\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/M_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"M\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004D\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"587\" y=\"660\" type=\"line\"/>\n      <point x=\"660\" y=\"660\" type=\"line\"/>\n      <point x=\"944\" y=\"1332\" type=\"line\"/>\n      <point x=\"986\" y=\"1332\" type=\"line\"/>\n      <point x=\"986\" y=\"1420\" type=\"line\"/>\n      <point x=\"886\" y=\"1420\" type=\"line\"/>\n      <point x=\"602\" y=\"748\" type=\"line\"/>\n      <point x=\"600\" y=\"748\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"152\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"1420\" type=\"line\"/>\n      <point x=\"152\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"540\" y=\"660\" type=\"line\"/>\n      <point x=\"614\" y=\"660\" type=\"line\"/>\n      <point x=\"601\" y=\"748\" type=\"line\"/>\n      <point x=\"598\" y=\"748\" type=\"line\"/>\n      <point x=\"314\" y=\"1420\" type=\"line\"/>\n      <point x=\"232\" y=\"1420\" type=\"line\"/>\n      <point x=\"232\" y=\"1332\" type=\"line\"/>\n      <point x=\"256\" y=\"1332\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"954\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"1420\" type=\"line\"/>\n      <point x=\"954\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/M_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"M.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"405\" y=\"207\" type=\"line\"/>\n      <point x=\"470\" y=\"207\" type=\"line\"/>\n      <point x=\"637\" y=\"527\" type=\"line\"/>\n      <point x=\"671\" y=\"527\" type=\"line\"/>\n      <point x=\"671\" y=\"639\" type=\"line\"/>\n      <point x=\"591\" y=\"639\" type=\"line\"/>\n      <point x=\"424\" y=\"310\" type=\"line\"/>\n      <point x=\"419\" y=\"310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"192\" y=\"639\" type=\"line\"/>\n      <point x=\"100\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"371\" y=\"207\" type=\"line\"/>\n      <point x=\"432\" y=\"207\" type=\"line\"/>\n      <point x=\"421\" y=\"310\" type=\"line\"/>\n      <point x=\"417\" y=\"310\" type=\"line\"/>\n      <point x=\"250\" y=\"639\" type=\"line\"/>\n      <point x=\"177\" y=\"639\" type=\"line\"/>\n      <point x=\"177\" y=\"527\" type=\"line\"/>\n      <point x=\"203\" y=\"527\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"649\" y=\"0\" type=\"line\"/>\n      <point x=\"741\" y=\"0\" type=\"line\"/>\n      <point x=\"741\" y=\"639\" type=\"line\"/>\n      <point x=\"649\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/M_u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Mu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039C\"/>\n  <outline>\n    <component base=\"M\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"N\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004E\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"868\" y=\"0\" type=\"line\"/>\n      <point x=\"969\" y=\"0\" type=\"line\"/>\n      <point x=\"969\" y=\"88\" type=\"line\"/>\n      <point x=\"927\" y=\"88\" type=\"line\"/>\n      <point x=\"333\" y=\"1420\" type=\"line\"/>\n      <point x=\"215\" y=\"1420\" type=\"line\"/>\n      <point x=\"215\" y=\"1332\" type=\"line\"/>\n      <point x=\"274\" y=\"1332\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"172\" y=\"0\" type=\"line\"/>\n      <point x=\"266\" y=\"0\" type=\"line\"/>\n      <point x=\"266\" y=\"1420\" type=\"line\"/>\n      <point x=\"172\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"934\" y=\"0\" type=\"line\"/>\n      <point x=\"1028\" y=\"0\" type=\"line\"/>\n      <point x=\"1028\" y=\"1420\" type=\"line\"/>\n      <point x=\"934\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"N.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"0\" type=\"line\"/>\n      <point x=\"658\" y=\"0\" type=\"line\"/>\n      <point x=\"658\" y=\"111\" type=\"line\"/>\n      <point x=\"626\" y=\"111\" type=\"line\"/>\n      <point x=\"247\" y=\"639\" type=\"line\"/>\n      <point x=\"166\" y=\"639\" type=\"line\"/>\n      <point x=\"166\" y=\"529\" type=\"line\"/>\n      <point x=\"215\" y=\"529\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"114\" y=\"0\" type=\"line\"/>\n      <point x=\"206\" y=\"0\" type=\"line\"/>\n      <point x=\"206\" y=\"639\" type=\"line\"/>\n      <point x=\"114\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"635\" y=\"0\" type=\"line\"/>\n      <point x=\"727\" y=\"0\" type=\"line\"/>\n      <point x=\"727\" y=\"639\" type=\"line\"/>\n      <point x=\"635\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0143\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ncaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0147\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ncommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0145\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_hookleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nhookleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019D\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"-65\" y=\"-468\" type=\"line\"/>\n      <point x=\"-28\" y=\"-463\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"190\" y=\"-434\"/>\n      <point x=\"266\" y=\"-320\"/>\n      <point x=\"266\" y=\"-56\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"184\" type=\"line\"/>\n      <point x=\"172\" y=\"184\" type=\"line\"/>\n      <point x=\"172\" y=\"-48\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"-257\"/>\n      <point x=\"117\" y=\"-350\"/>\n      <point x=\"-38\" y=\"-371\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-75\" y=\"-376\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"680\" y=\"0\" type=\"line\"/>\n      <point x=\"774\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"0\"/>\n      <point x=\"1100\" y=\"158\"/>\n      <point x=\"1100\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"708\"/>\n      <point x=\"981\" y=\"866\"/>\n      <point x=\"774\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"866\" type=\"line\"/>\n      <point x=\"680\" y=\"772\" type=\"line\"/>\n      <point x=\"776\" y=\"772\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"772\"/>\n      <point x=\"1004\" y=\"649\"/>\n      <point x=\"1004\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"215\"/>\n      <point x=\"920\" y=\"90\"/>\n      <point x=\"776\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"152\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"1420\" type=\"line\"/>\n      <point x=\"152\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"662\" type=\"line\"/>\n      <point x=\"651\" y=\"662\" type=\"line\"/>\n      <point x=\"650\" y=\"752\" type=\"line\"/>\n      <point x=\"194\" y=\"752\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"610\" y=\"0\" type=\"line\"/>\n      <point x=\"704\" y=\"0\" type=\"line\"/>\n      <point x=\"704\" y=\"802\" type=\"line\"/>\n      <point x=\"704\" y=\"822\" type=\"line\"/>\n      <point x=\"704\" y=\"1420\" type=\"line\"/>\n      <point x=\"610\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E48\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D1\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/N_u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039D\"/>\n  <outline>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041E\"/>\n  <outline>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"599\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"932\" y=\"-20\"/>\n      <point x=\"1100\" y=\"218\"/>\n      <point x=\"1100\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1194\"/>\n      <point x=\"932\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"1440\"/>\n      <point x=\"100\" y=\"1194\"/>\n      <point x=\"100\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"100\" y=\"218\"/>\n      <point x=\"268\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"70\"/>\n      <point x=\"196\" y=\"280\"/>\n      <point x=\"196\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"1135\"/>\n      <point x=\"331\" y=\"1350\"/>\n      <point x=\"600\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"1350\"/>\n      <point x=\"1004\" y=\"1135\"/>\n      <point x=\"1004\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"280\"/>\n      <point x=\"869\" y=\"70\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"420\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"-9\"/>\n      <point x=\"777\" y=\"98\"/>\n      <point x=\"777\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"537\"/>\n      <point x=\"657\" y=\"648\"/>\n      <point x=\"420\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"648\"/>\n      <point x=\"63\" y=\"537\"/>\n      <point x=\"63\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"63\" y=\"98\"/>\n      <point x=\"183\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"420\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"77\"/>\n      <point x=\"161\" y=\"156\"/>\n      <point x=\"161\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"161\" y=\"480\"/>\n      <point x=\"248\" y=\"562\"/>\n      <point x=\"420\" y=\"562\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"562\"/>\n      <point x=\"679\" y=\"480\"/>\n      <point x=\"679\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"156\"/>\n      <point x=\"592\" y=\"77\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"OE\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0152\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"520\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"-20\"/>\n      <point x=\"653\" y=\"0\"/>\n      <point x=\"700\" y=\"0\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"700\" y=\"1420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"1420\"/>\n      <point x=\"592\" y=\"1440\"/>\n      <point x=\"520\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"255\" y=\"1440\"/>\n      <point x=\"102\" y=\"1170\"/>\n      <point x=\"102\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"242\"/>\n      <point x=\"255\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"650\" y=\"0\" type=\"line\"/>\n      <point x=\"1074\" y=\"0\" type=\"line\"/>\n      <point x=\"1074\" y=\"90\" type=\"line\"/>\n      <point x=\"650\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"530\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"70\"/>\n      <point x=\"198\" y=\"298\"/>\n      <point x=\"198\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"198\" y=\"1114\"/>\n      <point x=\"315\" y=\"1350\"/>\n      <point x=\"520\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"565\" y=\"1350\"/>\n      <point x=\"607\" y=\"1342\"/>\n      <point x=\"640\" y=\"1328\" type=\"curve\"/>\n      <point x=\"640\" y=\"76\" type=\"line\"/>\n      <point x=\"609\" y=\"72\"/>\n      <point x=\"569\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"670\" y=\"666\" type=\"line\"/>\n      <point x=\"1014\" y=\"666\" type=\"line\"/>\n      <point x=\"1014\" y=\"756\" type=\"line\"/>\n      <point x=\"670\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"640\" y=\"1330\" type=\"line\"/>\n      <point x=\"1074\" y=\"1330\" type=\"line\"/>\n      <point x=\"1074\" y=\"1420\" type=\"line\"/>\n      <point x=\"640\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D3\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_barred-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Obarred-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E8\"/>\n  <outline>\n    <contour>\n      <point x=\"182\" y=\"662\" type=\"line\"/>\n      <point x=\"1023\" y=\"662\" type=\"line\"/>\n      <point x=\"1023\" y=\"752\" type=\"line\"/>\n      <point x=\"182\" y=\"752\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Obreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014E\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D4\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED0\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n    <component base=\"acutecomb.case\" xOffset=\"347\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED8\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED2\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n    <component base=\"gravecomb.case\" xOffset=\"226\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED4\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"286\" yOffset=\"248\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED6\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Odieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D6\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Odotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECC\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ograve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D2\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hm.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohm\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2126\"/>\n  <outline>\n    <component base=\"Omega\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECE\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A0\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"horncomb.case\" xOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDA\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_horndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE2\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_horngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDC\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDE\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_horntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE0\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0150\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"hungarumlautcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014C\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_macronacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacronacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E52\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\" yOffset=\"258\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_macrongrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacrongrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E50\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\" yOffset=\"258\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_mega.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omega\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A9\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"51\" type=\"line\"/>\n      <point x=\"530\" y=\"90\" type=\"line\"/>\n      <point x=\"308\" y=\"159\"/>\n      <point x=\"196\" y=\"381\"/>\n      <point x=\"196\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"1155\"/>\n      <point x=\"330\" y=\"1350\"/>\n      <point x=\"600\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"870\" y=\"1350\"/>\n      <point x=\"1004\" y=\"1155\"/>\n      <point x=\"1004\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"374\"/>\n      <point x=\"900\" y=\"152\"/>\n      <point x=\"694\" y=\"90\" type=\"curve\"/>\n      <point x=\"874\" y=\"59\" type=\"line\"/>\n      <point x=\"874\" y=\"99\" type=\"line\"/>\n      <point x=\"1005\" y=\"169\"/>\n      <point x=\"1100\" y=\"356\"/>\n      <point x=\"1100\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1215\"/>\n      <point x=\"934\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"1440\"/>\n      <point x=\"100\" y=\"1215\"/>\n      <point x=\"100\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"100\" y=\"362\"/>\n      <point x=\"203\" y=\"174\"/>\n      <point x=\"350\" y=\"99\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"0\" type=\"line\"/>\n      <point x=\"530\" y=\"0\" type=\"line\"/>\n      <point x=\"530\" y=\"90\" type=\"line\"/>\n      <point x=\"128\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"694\" y=\"0\" type=\"line\"/>\n      <point x=\"1072\" y=\"0\" type=\"line\"/>\n      <point x=\"1072\" y=\"90\" type=\"line\"/>\n      <point x=\"694\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_megatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omegatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038F\"/>\n  <anchor x=\"700\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"700\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"528\" y=\"7\" type=\"line\"/>\n      <point x=\"658\" y=\"90\" type=\"line\"/>\n      <point x=\"483\" y=\"159\"/>\n      <point x=\"396\" y=\"382\"/>\n      <point x=\"396\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"1155\"/>\n      <point x=\"497\" y=\"1350\"/>\n      <point x=\"700\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"1350\"/>\n      <point x=\"1004\" y=\"1155\"/>\n      <point x=\"1004\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"375\"/>\n      <point x=\"917\" y=\"152\"/>\n      <point x=\"742\" y=\"90\" type=\"curve\"/>\n      <point x=\"872\" y=\"15\" type=\"line\"/>\n      <point x=\"872\" y=\"110\" type=\"line\"/>\n      <point x=\"1024\" y=\"148\"/>\n      <point x=\"1100\" y=\"363\"/>\n      <point x=\"1100\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1215\"/>\n      <point x=\"967\" y=\"1440\"/>\n      <point x=\"700\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"1440\"/>\n      <point x=\"300\" y=\"1215\"/>\n      <point x=\"300\" y=\"760\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"369\"/>\n      <point x=\"376\" y=\"153\"/>\n      <point x=\"528\" y=\"107\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"328\" y=\"0\" type=\"line\"/>\n      <point x=\"658\" y=\"0\" type=\"line\"/>\n      <point x=\"658\" y=\"90\" type=\"line\"/>\n      <point x=\"328\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"742\" y=\"0\" type=\"line\"/>\n      <point x=\"1072\" y=\"0\" type=\"line\"/>\n      <point x=\"1072\" y=\"90\" type=\"line\"/>\n      <point x=\"742\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"23\" y=\"1040\" type=\"line\"/>\n      <point x=\"95\" y=\"1040\" type=\"line\"/>\n      <point x=\"215\" y=\"1420\" type=\"line\"/>\n      <point x=\"113\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_micron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omicron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039F\"/>\n  <outline>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_microntonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omicrontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038C\"/>\n  <anchor x=\"688\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"688\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"688\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"-20\"/>\n      <point x=\"1100\" y=\"218\"/>\n      <point x=\"1100\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1194\"/>\n      <point x=\"962\" y=\"1440\"/>\n      <point x=\"688\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"1440\"/>\n      <point x=\"276\" y=\"1194\"/>\n      <point x=\"276\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"218\"/>\n      <point x=\"414\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"23\" y=\"1040\" type=\"line\"/>\n      <point x=\"95\" y=\"1040\" type=\"line\"/>\n      <point x=\"215\" y=\"1420\" type=\"line\"/>\n      <point x=\"113\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"688\" y=\"60\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"60\"/>\n      <point x=\"372\" y=\"273\"/>\n      <point x=\"372\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"1135\"/>\n      <point x=\"478\" y=\"1350\"/>\n      <point x=\"688\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"1350\"/>\n      <point x=\"1004\" y=\"1135\"/>\n      <point x=\"1004\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"273\"/>\n      <point x=\"898\" y=\"60\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01EA\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"632\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"-424\"/>\n      <point x=\"694\" y=\"-423\"/>\n      <point x=\"726\" y=\"-415\" type=\"curve\"/>\n      <point x=\"733\" y=\"-332\" type=\"line\"/>\n      <point x=\"706\" y=\"-335\"/>\n      <point x=\"679\" y=\"-337\"/>\n      <point x=\"658\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"-337\"/>\n      <point x=\"496\" y=\"-291\"/>\n      <point x=\"496\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"-84\"/>\n      <point x=\"596\" y=\"-45\"/>\n      <point x=\"770\" y=\"5\" type=\"curve\"/>\n      <point x=\"625\" y=\"32\" type=\"line\"/>\n      <point x=\"533\" y=\"34\" type=\"line\"/>\n      <point x=\"533\" y=\"-26\" type=\"line\"/>\n      <point x=\"450\" y=\"-60\"/>\n      <point x=\"402\" y=\"-130\"/>\n      <point x=\"402\" y=\"-218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"-349\"/>\n      <point x=\"486\" y=\"-424\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_open.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0186\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"496\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"-20\"/>\n      <point x=\"1100\" y=\"256\"/>\n      <point x=\"1100\" y=\"713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1183\"/>\n      <point x=\"886\" y=\"1440\"/>\n      <point x=\"475\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"1440\"/>\n      <point x=\"240\" y=\"1418\"/>\n      <point x=\"130\" y=\"1372\" type=\"curve\"/>\n      <point x=\"158\" y=\"1290\" type=\"line\"/>\n      <point x=\"253\" y=\"1330\"/>\n      <point x=\"348\" y=\"1350\"/>\n      <point x=\"451\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"816\" y=\"1350\"/>\n      <point x=\"1004\" y=\"1114\"/>\n      <point x=\"1004\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"309\"/>\n      <point x=\"820\" y=\"70\"/>\n      <point x=\"507\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"70\"/>\n      <point x=\"266\" y=\"105\"/>\n      <point x=\"129\" y=\"219\" type=\"curve\"/>\n      <point x=\"61\" y=\"151\" type=\"line\"/>\n      <point x=\"174\" y=\"37\"/>\n      <point x=\"325\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D8\"/>\n  <outline>\n    <contour>\n      <point x=\"191\" y=\"-134\" type=\"line\"/>\n      <point x=\"1059\" y=\"1487\" type=\"line\"/>\n      <point x=\"989\" y=\"1532\" type=\"line\"/>\n      <point x=\"121\" y=\"-89\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_slashacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oslashacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FE\"/>\n  <outline>\n    <component base=\"Oslash\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/O_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Otilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D5\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/P_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"P\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0050\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"254\" y=\"489\" type=\"line\"/>\n      <point x=\"598\" y=\"489\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"489\"/>\n      <point x=\"1096\" y=\"658\"/>\n      <point x=\"1096\" y=\"955\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1096\" y=\"1251\"/>\n      <point x=\"915\" y=\"1420\"/>\n      <point x=\"598\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"258\" y=\"1330\" type=\"line\"/>\n      <point x=\"598\" y=\"1330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"1330\"/>\n      <point x=\"1000\" y=\"1194\"/>\n      <point x=\"1000\" y=\"955\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"716\"/>\n      <point x=\"853\" y=\"579\"/>\n      <point x=\"598\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"579\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"1420\" type=\"line\"/>\n      <point x=\"184\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/P_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"P.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"199\" y=\"201\" type=\"line\"/>\n      <point x=\"483\" y=\"201\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"201\"/>\n      <point x=\"774\" y=\"274\"/>\n      <point x=\"774\" y=\"420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"566\"/>\n      <point x=\"678\" y=\"639\"/>\n      <point x=\"483\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"202\" y=\"639\" type=\"line\"/>\n      <point x=\"202\" y=\"551\" type=\"line\"/>\n      <point x=\"483\" y=\"551\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"551\"/>\n      <point x=\"676\" y=\"507\"/>\n      <point x=\"676\" y=\"420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"333\"/>\n      <point x=\"612\" y=\"290\"/>\n      <point x=\"483\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"290\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/P_alochka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Palochka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04C0\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/P_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Pe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"942\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"1420\" type=\"line\"/>\n      <point x=\"942\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"206\" y=\"1328\" type=\"line\"/>\n      <point x=\"999\" y=\"1328\" type=\"line\"/>\n      <point x=\"999\" y=\"1420\" type=\"line\"/>\n      <point x=\"206\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/P_hi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Phi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A6\"/>\n  <outline>\n    <component base=\"Ef-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/P_i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Pi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A0\"/>\n  <outline>\n    <component base=\"Pe-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/P_si.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Psi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A8\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"932\" y=\"359\"/>\n      <point x=\"1100\" y=\"521\"/>\n      <point x=\"1100\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1420\" type=\"line\"/>\n      <point x=\"1006\" y=\"1420\" type=\"line\"/>\n      <point x=\"1006\" y=\"850\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"582\"/>\n      <point x=\"870\" y=\"449\"/>\n      <point x=\"600\" y=\"449\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"449\"/>\n      <point x=\"194\" y=\"582\"/>\n      <point x=\"194\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"194\" y=\"1420\" type=\"line\"/>\n      <point x=\"100\" y=\"1420\" type=\"line\"/>\n      <point x=\"100\" y=\"850\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"100\" y=\"521\"/>\n      <point x=\"268\" y=\"359\"/>\n    </contour>\n    <contour>\n      <point x=\"552\" y=\"402\" type=\"line\"/>\n      <point x=\"552\" y=\"0\" type=\"line\"/>\n      <point x=\"646\" y=\"0\" type=\"line\"/>\n      <point x=\"646\" y=\"402\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"646\" y=\"402\" type=\"line\"/>\n      <point x=\"646\" y=\"1420\" type=\"line\"/>\n      <point x=\"552\" y=\"1420\" type=\"line\"/>\n      <point x=\"552\" y=\"402\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Q_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Q\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0051\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"980\" y=\"-460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"-460\" type=\"line\"/>\n      <point x=\"1024\" y=\"-372\" type=\"line\"/>\n      <point x=\"980\" y=\"-372\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"-372\"/>\n      <point x=\"640\" y=\"-244\"/>\n      <point x=\"640\" y=\"-22\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"640\" y=\"42\" type=\"line\"/>\n      <point x=\"550\" y=\"42\" type=\"line\"/>\n      <point x=\"550\" y=\"-20\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"-300\"/>\n      <point x=\"707\" y=\"-460\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Q_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Q.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"612\" y=\"-217\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"-217\" type=\"line\"/>\n      <point x=\"719\" y=\"-132\" type=\"line\"/>\n      <point x=\"612\" y=\"-132\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"-132\"/>\n      <point x=\"464\" y=\"-98\"/>\n      <point x=\"464\" y=\"-30\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"27\" type=\"line\"/>\n      <point x=\"370\" y=\"27\" type=\"line\"/>\n      <point x=\"370\" y=\"-29\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"370\" y=\"-155\"/>\n      <point x=\"450\" y=\"-217\"/>\n    </contour>\n    <component base=\"O.half\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O.half</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"R\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0052\"/>\n  <anchor x=\"610\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"240\" y=\"589\" type=\"line\"/>\n      <point x=\"668\" y=\"589\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"589\"/>\n      <point x=\"1066\" y=\"743\"/>\n      <point x=\"1066\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1066\" y=\"1271\"/>\n      <point x=\"921\" y=\"1420\"/>\n      <point x=\"668\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"220\" y=\"1420\" type=\"line\"/>\n      <point x=\"244\" y=\"1330\" type=\"line\"/>\n      <point x=\"668\" y=\"1330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"1330\"/>\n      <point x=\"970\" y=\"1206\"/>\n      <point x=\"970\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"970\" y=\"793\"/>\n      <point x=\"860\" y=\"681\"/>\n      <point x=\"668\" y=\"681\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"681\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1006\" y=\"0\" type=\"line\"/>\n      <point x=\"1118\" y=\"0\" type=\"line\"/>\n      <point x=\"764\" y=\"668\" type=\"line\"/>\n      <point x=\"652\" y=\"668\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/R_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"R.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"192\" y=\"247\" type=\"line\"/>\n      <point x=\"516\" y=\"247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"247\"/>\n      <point x=\"753\" y=\"320\"/>\n      <point x=\"753\" y=\"447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"569\"/>\n      <point x=\"667\" y=\"639\"/>\n      <point x=\"516\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"178\" y=\"639\" type=\"line\"/>\n      <point x=\"195\" y=\"551\" type=\"line\"/>\n      <point x=\"516\" y=\"551\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"551\"/>\n      <point x=\"655\" y=\"510\"/>\n      <point x=\"655\" y=\"438\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"372\"/>\n      <point x=\"604\" y=\"335\"/>\n      <point x=\"516\" y=\"335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"335\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"108\" y=\"0\" type=\"line\"/>\n      <point x=\"202\" y=\"0\" type=\"line\"/>\n      <point x=\"202\" y=\"639\" type=\"line\"/>\n      <point x=\"108\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"676\" y=\"0\" type=\"line\"/>\n      <point x=\"789\" y=\"0\" type=\"line\"/>\n      <point x=\"546\" y=\"301\" type=\"line\"/>\n      <point x=\"442\" y=\"301\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/R_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Racute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0154\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"acutecomb.case\" xOffset=\"21\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/R_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0158\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/R_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0156\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/R_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E5A\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/R_ho.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rho\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A1\"/>\n  <outline>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"S\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0053\"/>\n  <anchor x=\"610\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"620\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"551\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"-20\"/>\n      <point x=\"1033\" y=\"95\"/>\n      <point x=\"1033\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"477\"/>\n      <point x=\"957\" y=\"596\"/>\n      <point x=\"801\" y=\"677\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"861\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"915\"/>\n      <point x=\"287\" y=\"985\"/>\n      <point x=\"287\" y=\"1090\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"1264\"/>\n      <point x=\"393\" y=\"1350\"/>\n      <point x=\"607\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"1350\"/>\n      <point x=\"851\" y=\"1303\"/>\n      <point x=\"975\" y=\"1208\" type=\"curve\"/>\n      <point x=\"1040\" y=\"1273\" type=\"line\"/>\n      <point x=\"924\" y=\"1385\"/>\n      <point x=\"780\" y=\"1440\"/>\n      <point x=\"606\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"329\" y=\"1440\"/>\n      <point x=\"191\" y=\"1323\"/>\n      <point x=\"191\" y=\"1090\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"191\" y=\"949\"/>\n      <point x=\"261\" y=\"853\"/>\n      <point x=\"396\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"578\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"521\"/>\n      <point x=\"937\" y=\"436\"/>\n      <point x=\"937\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"155\"/>\n      <point x=\"814\" y=\"70\"/>\n      <point x=\"567\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"70\"/>\n      <point x=\"304\" y=\"95\"/>\n      <point x=\"167\" y=\"145\" type=\"curve\"/>\n      <point x=\"153\" y=\"48\" type=\"line\"/>\n      <point x=\"271\" y=\"3\"/>\n      <point x=\"403\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"S.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"385\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"-9\"/>\n      <point x=\"730\" y=\"51\"/>\n      <point x=\"730\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"252\"/>\n      <point x=\"674\" y=\"306\"/>\n      <point x=\"560\" y=\"336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"392\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"406\"/>\n      <point x=\"224\" y=\"431\"/>\n      <point x=\"224\" y=\"468\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"528\"/>\n      <point x=\"296\" y=\"558\"/>\n      <point x=\"442\" y=\"558\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"558\"/>\n      <point x=\"596\" y=\"543\"/>\n      <point x=\"671\" y=\"513\" type=\"curve\"/>\n      <point x=\"722\" y=\"598\" type=\"line\"/>\n      <point x=\"629\" y=\"631\"/>\n      <point x=\"536\" y=\"648\"/>\n      <point x=\"441\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"231\" y=\"648\"/>\n      <point x=\"127\" y=\"587\"/>\n      <point x=\"127\" y=\"464\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"127\" y=\"387\"/>\n      <point x=\"174\" y=\"336\"/>\n      <point x=\"270\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"248\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"233\"/>\n      <point x=\"632\" y=\"207\"/>\n      <point x=\"632\" y=\"170\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"110\"/>\n      <point x=\"554\" y=\"81\"/>\n      <point x=\"397\" y=\"81\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"81\"/>\n      <point x=\"216\" y=\"95\"/>\n      <point x=\"113\" y=\"123\" type=\"curve\"/>\n      <point x=\"100\" y=\"25\" type=\"line\"/>\n      <point x=\"182\" y=\"2\"/>\n      <point x=\"277\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015A\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"acutecomb.case\" xOffset=\"81\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0160\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"caroncomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015E\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"cedillacomb\" xOffset=\"35\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_chwa-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Schwa-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04D8\"/>\n  <outline>\n    <component base=\"Schwa\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_chwa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Schwa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"018F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"931\" y=\"-20\"/>\n      <point x=\"1098\" y=\"218\"/>\n      <point x=\"1098\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1098\" y=\"1194\"/>\n      <point x=\"897\" y=\"1440\"/>\n      <point x=\"500\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"1440\"/>\n      <point x=\"291\" y=\"1425\"/>\n      <point x=\"194\" y=\"1394\" type=\"curve\"/>\n      <point x=\"212\" y=\"1306\" type=\"line\"/>\n      <point x=\"301\" y=\"1335\"/>\n      <point x=\"399\" y=\"1350\"/>\n      <point x=\"500\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"1350\"/>\n      <point x=\"1002\" y=\"1135\"/>\n      <point x=\"1002\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"279\"/>\n      <point x=\"867\" y=\"70\"/>\n      <point x=\"600\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"70\"/>\n      <point x=\"198\" y=\"256\"/>\n      <point x=\"198\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"198\" y=\"666\"/>\n      <point x=\"199\" y=\"699\"/>\n      <point x=\"201\" y=\"732\" type=\"curve\"/>\n      <point x=\"106\" y=\"748\" type=\"line\"/>\n      <point x=\"103\" y=\"711\"/>\n      <point x=\"102\" y=\"671\"/>\n      <point x=\"102\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"102\" y=\"195\"/>\n      <point x=\"269\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"106\" y=\"654\" type=\"line\"/>\n      <point x=\"1021\" y=\"654\" type=\"line\"/>\n      <point x=\"1021\" y=\"748\" type=\"line\"/>\n      <point x=\"106\" y=\"748\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015C\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0218\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E62\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_ha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0428\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"954\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"1420\" type=\"line\"/>\n      <point x=\"954\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"0\" type=\"line\"/>\n      <point x=\"1011\" y=\"0\" type=\"line\"/>\n      <point x=\"1011\" y=\"90\" type=\"line\"/>\n      <point x=\"194\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"152\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"1420\" type=\"line\"/>\n      <point x=\"152\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"553\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_hcha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Shcha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0429\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"954\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"1420\" type=\"line\"/>\n      <point x=\"954\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"0\" type=\"line\"/>\n      <point x=\"1035\" y=\"0\" type=\"line\"/>\n      <point x=\"1035\" y=\"90\" type=\"line\"/>\n      <point x=\"194\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"152\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"1420\" type=\"line\"/>\n      <point x=\"152\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1042\" y=\"-290\" type=\"line\"/>\n      <point x=\"1136\" y=\"-290\" type=\"line\"/>\n      <point x=\"1136\" y=\"90\" type=\"line\"/>\n      <point x=\"1042\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"553\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_hha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Shha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04BA\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"211\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"942\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"0\" type=\"line\"/>\n      <point x=\"1036\" y=\"395\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"697\"/>\n      <point x=\"912\" y=\"825\"/>\n      <point x=\"620\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"825\" type=\"line\"/>\n      <point x=\"240\" y=\"735\" type=\"line\"/>\n      <point x=\"620\" y=\"735\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"735\"/>\n      <point x=\"942\" y=\"633\"/>\n      <point x=\"942\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_igma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sigma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A3\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"246\" y=\"38\" type=\"line\"/>\n      <point x=\"807\" y=\"713\" type=\"line\"/>\n      <point x=\"246\" y=\"1380\" type=\"line\"/>\n      <point x=\"174\" y=\"1330\" type=\"line\"/>\n      <point x=\"681\" y=\"713\" type=\"line\"/>\n      <point x=\"174\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"0\" type=\"line\"/>\n      <point x=\"1046\" y=\"0\" type=\"line\"/>\n      <point x=\"1046\" y=\"90\" type=\"line\"/>\n      <point x=\"174\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"1330\" type=\"line\"/>\n      <point x=\"1026\" y=\"1330\" type=\"line\"/>\n      <point x=\"1026\" y=\"1420\" type=\"line\"/>\n      <point x=\"174\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/S_oftsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Softsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042C\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"244\" y=\"0\" type=\"line\"/>\n      <point x=\"644\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"0\"/>\n      <point x=\"1090\" y=\"158\"/>\n      <point x=\"1090\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"709\"/>\n      <point x=\"928\" y=\"867\"/>\n      <point x=\"644\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"220\" y=\"867\" type=\"line\"/>\n      <point x=\"220\" y=\"777\" type=\"line\"/>\n      <point x=\"636\" y=\"777\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"777\"/>\n      <point x=\"994\" y=\"651\"/>\n      <point x=\"994\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"215\"/>\n      <point x=\"863\" y=\"90\"/>\n      <point x=\"636\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"T\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0054\"/>\n  <anchor x=\"595\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"553\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"1330\" type=\"line\"/>\n      <point x=\"1096\" y=\"1330\" type=\"line\"/>\n      <point x=\"1096\" y=\"1420\" type=\"line\"/>\n      <point x=\"104\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"T.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"467\" y=\"0\" type=\"line\"/>\n      <point x=\"467\" y=\"639\" type=\"line\"/>\n      <point x=\"373\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"551\" type=\"line\"/>\n      <point x=\"774\" y=\"551\" type=\"line\"/>\n      <point x=\"774\" y=\"639\" type=\"line\"/>\n      <point x=\"66\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_au.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tau\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A4\"/>\n  <outline>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0166\"/>\n  <outline>\n    <contour>\n      <point x=\"192\" y=\"637\" type=\"line\"/>\n      <point x=\"1008\" y=\"637\" type=\"line\"/>\n      <point x=\"1008\" y=\"727\" type=\"line\"/>\n      <point x=\"192\" y=\"727\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0164\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0162\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"cedillacomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021A\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_diagonalstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tdiagonalstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023E\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"428\" y=\"-330\" type=\"line\"/>\n      <point x=\"1024\" y=\"1692\" type=\"line\"/>\n      <point x=\"928\" y=\"1716\" type=\"line\"/>\n      <point x=\"342\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Te-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0422\"/>\n  <outline>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_heta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Theta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0398\"/>\n  <outline>\n    <contour>\n      <point x=\"173\" y=\"665\" type=\"line\"/>\n      <point x=\"1027\" y=\"665\" type=\"line\"/>\n      <point x=\"1027\" y=\"755\" type=\"line\"/>\n      <point x=\"173\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Thorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DE\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"254\" y=\"243\" type=\"line\"/>\n      <point x=\"598\" y=\"243\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"243\"/>\n      <point x=\"1096\" y=\"413\"/>\n      <point x=\"1096\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1096\" y=\"1007\"/>\n      <point x=\"915\" y=\"1177\"/>\n      <point x=\"598\" y=\"1177\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"1177\" type=\"line\"/>\n      <point x=\"258\" y=\"1085\" type=\"line\"/>\n      <point x=\"598\" y=\"1085\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"1085\"/>\n      <point x=\"1004\" y=\"949\"/>\n      <point x=\"1004\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"471\"/>\n      <point x=\"856\" y=\"335\"/>\n      <point x=\"598\" y=\"335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"335\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"1420\" type=\"line\"/>\n      <point x=\"184\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E6E\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_se-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tse-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0426\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"956\" y=\"0\" type=\"line\"/>\n      <point x=\"1050\" y=\"0\" type=\"line\"/>\n      <point x=\"1050\" y=\"1420\" type=\"line\"/>\n      <point x=\"956\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"206\" y=\"0\" type=\"line\"/>\n      <point x=\"1134\" y=\"0\" type=\"line\"/>\n      <point x=\"1134\" y=\"90\" type=\"line\"/>\n      <point x=\"206\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1042\" y=\"-290\" type=\"line\"/>\n      <point x=\"1136\" y=\"-290\" type=\"line\"/>\n      <point x=\"1136\" y=\"90\" type=\"line\"/>\n      <point x=\"1042\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/T_she-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tshe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"340\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"944\" y=\"0\" type=\"line\"/>\n      <point x=\"1038\" y=\"0\" type=\"line\"/>\n      <point x=\"1038\" y=\"390\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"695\"/>\n      <point x=\"922\" y=\"825\"/>\n      <point x=\"650\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"371\" y=\"825\" type=\"line\"/>\n      <point x=\"371\" y=\"735\" type=\"line\"/>\n      <point x=\"650\" y=\"735\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"735\"/>\n      <point x=\"944\" y=\"632\"/>\n      <point x=\"944\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"295\" y=\"0\" type=\"line\"/>\n      <point x=\"389\" y=\"0\" type=\"line\"/>\n      <point x=\"389\" y=\"1420\" type=\"line\"/>\n      <point x=\"295\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"44\" y=\"1326\" type=\"line\"/>\n      <point x=\"816\" y=\"1326\" type=\"line\"/>\n      <point x=\"816\" y=\"1420\" type=\"line\"/>\n      <point x=\"44\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0423\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"40\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"217\" y=\"0\" type=\"line\"/>\n      <point x=\"540\" y=\"0\"/>\n      <point x=\"692\" y=\"106\"/>\n      <point x=\"793\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"1420\" type=\"line\"/>\n      <point x=\"1041\" y=\"1420\" type=\"line\"/>\n      <point x=\"706\" y=\"430\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"622\" y=\"181\"/>\n      <point x=\"504\" y=\"90\"/>\n      <point x=\"217\" y=\"90\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"593\" y=\"169\" type=\"line\"/>\n      <point x=\"678\" y=\"297\" type=\"line\"/>\n      <point x=\"644\" y=\"297\" type=\"line\"/>\n      <point x=\"211\" y=\"1420\" type=\"line\"/>\n      <point x=\"110\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0055\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"-20\"/>\n      <point x=\"1036\" y=\"138\"/>\n      <point x=\"1036\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"1420\" type=\"line\"/>\n      <point x=\"942\" y=\"1420\" type=\"line\"/>\n      <point x=\"942\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"200\"/>\n      <point x=\"826\" y=\"70\"/>\n      <point x=\"600\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"363\" y=\"70\"/>\n      <point x=\"258\" y=\"200\"/>\n      <point x=\"258\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"138\"/>\n      <point x=\"308\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"417\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"-9\"/>\n      <point x=\"732\" y=\"70\"/>\n      <point x=\"732\" y=\"255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"639\" type=\"line\"/>\n      <point x=\"638\" y=\"639\" type=\"line\"/>\n      <point x=\"638\" y=\"255\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"130\"/>\n      <point x=\"573\" y=\"77\"/>\n      <point x=\"420\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"77\"/>\n      <point x=\"202\" y=\"130\"/>\n      <point x=\"202\" y=\"255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"202\" y=\"639\" type=\"line\"/>\n      <point x=\"108\" y=\"639\" type=\"line\"/>\n      <point x=\"108\" y=\"255\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"108\" y=\"70\"/>\n      <point x=\"200\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DA\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ubreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016C\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ucircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DB\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Udieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DC\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Udotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE4\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ugrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D9\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE6\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01AF\"/>\n  <outline>\n    <contour>\n      <point x=\"968\" y=\"1335\" type=\"line\"/>\n      <point x=\"1028\" y=\"1345\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1202\" y=\"1375\"/>\n      <point x=\"1278\" y=\"1460\"/>\n      <point x=\"1278\" y=\"1653\" type=\"curve\"/>\n      <point x=\"1186\" y=\"1653\" type=\"line\"/>\n      <point x=\"1186\" y=\"1512\"/>\n      <point x=\"1132\" y=\"1451\"/>\n      <point x=\"1008\" y=\"1430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"U\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_hornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE8\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_horndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF0\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_horngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEA\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_hornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEC\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_horntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEE\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0170\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"hungarumlautcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_macron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Umacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04EE\"/>\n  <outline>\n    <component base=\"U-cy\"/>\n    <component base=\"macroncomb.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Umacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016A\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0172\"/>\n  <anchor x=\"600\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"632\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"-424\"/>\n      <point x=\"694\" y=\"-423\"/>\n      <point x=\"726\" y=\"-415\" type=\"curve\"/>\n      <point x=\"733\" y=\"-332\" type=\"line\"/>\n      <point x=\"706\" y=\"-335\"/>\n      <point x=\"679\" y=\"-337\"/>\n      <point x=\"658\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"-337\"/>\n      <point x=\"496\" y=\"-291\"/>\n      <point x=\"496\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"-84\"/>\n      <point x=\"596\" y=\"-45\"/>\n      <point x=\"770\" y=\"5\" type=\"curve\"/>\n      <point x=\"625\" y=\"32\" type=\"line\"/>\n      <point x=\"533\" y=\"34\" type=\"line\"/>\n      <point x=\"533\" y=\"-26\" type=\"line\"/>\n      <point x=\"450\" y=\"-60\"/>\n      <point x=\"402\" y=\"-130\"/>\n      <point x=\"402\" y=\"-218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"-349\"/>\n      <point x=\"486\" y=\"-424\"/>\n    </contour>\n    <component base=\"U\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_psilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A5\"/>\n  <outline>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_psilonafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilonafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B1\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1369\" type=\"line\"/>\n      <point x=\"350\" y=\"1321\" type=\"line\"/>\n      <point x=\"203\" y=\"1226\"/>\n      <point x=\"100\" y=\"1038\"/>\n      <point x=\"100\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"100\" y=\"213\"/>\n      <point x=\"271\" y=\"-20\"/>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"-20\"/>\n      <point x=\"1100\" y=\"213\"/>\n      <point x=\"1100\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1044\"/>\n      <point x=\"1005\" y=\"1232\"/>\n      <point x=\"874\" y=\"1321\" type=\"curve\"/>\n      <point x=\"874\" y=\"1361\" type=\"line\"/>\n      <point x=\"694\" y=\"1330\" type=\"line\"/>\n      <point x=\"900\" y=\"1248\"/>\n      <point x=\"1004\" y=\"1026\"/>\n      <point x=\"1004\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"272\"/>\n      <point x=\"865\" y=\"70\"/>\n      <point x=\"600\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"335\" y=\"70\"/>\n      <point x=\"196\" y=\"272\"/>\n      <point x=\"196\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"1019\"/>\n      <point x=\"308\" y=\"1241\"/>\n      <point x=\"530\" y=\"1330\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"1420\" type=\"line\"/>\n      <point x=\"128\" y=\"1330\" type=\"line\"/>\n      <point x=\"530\" y=\"1330\" type=\"line\"/>\n      <point x=\"530\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"694\" y=\"1420\" type=\"line\"/>\n      <point x=\"694\" y=\"1330\" type=\"line\"/>\n      <point x=\"1072\" y=\"1330\" type=\"line\"/>\n      <point x=\"1072\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_psilondieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilondieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AB\"/>\n  <outline>\n    <component base=\"Upsilon\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_psilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038E\"/>\n  <anchor x=\"741\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"741\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"720\" y=\"424\" type=\"line\"/>\n      <point x=\"780\" y=\"424\" type=\"line\"/>\n      <point x=\"1151\" y=\"1420\" type=\"line\"/>\n      <point x=\"1051\" y=\"1420\" type=\"line\"/>\n      <point x=\"759\" y=\"610\" type=\"line\"/>\n      <point x=\"741\" y=\"610\" type=\"line\"/>\n      <point x=\"449\" y=\"1420\" type=\"line\"/>\n      <point x=\"349\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"703\" y=\"0\" type=\"line\"/>\n      <point x=\"797\" y=\"0\" type=\"line\"/>\n      <point x=\"797\" y=\"590\" type=\"line\"/>\n      <point x=\"703\" y=\"590\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"23\" y=\"1040\" type=\"line\"/>\n      <point x=\"95\" y=\"1040\" type=\"line\"/>\n      <point x=\"215\" y=\"1420\" type=\"line\"/>\n      <point x=\"113\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016E\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"ringcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_short-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ushort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040E\"/>\n  <outline>\n    <component base=\"U-cy\"/>\n    <component base=\"brevecomb-cy.case\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_straight-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ustraight-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04AE\"/>\n  <outline>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_straightstroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ustraightstroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B0\"/>\n  <outline>\n    <contour>\n      <point x=\"257\" y=\"345\" type=\"line\"/>\n      <point x=\"946\" y=\"345\" type=\"line\"/>\n      <point x=\"946\" y=\"435\" type=\"line\"/>\n      <point x=\"257\" y=\"435\" type=\"line\"/>\n    </contour>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/U_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Utilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0168\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/V_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"V\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0056\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"523\" y=\"0\" type=\"line\"/>\n      <point x=\"677\" y=\"0\" type=\"line\"/>\n      <point x=\"1131\" y=\"1420\" type=\"line\"/>\n      <point x=\"1030\" y=\"1420\" type=\"line\"/>\n      <point x=\"605\" y=\"77\" type=\"line\"/>\n      <point x=\"595\" y=\"77\" type=\"line\"/>\n      <point x=\"170\" y=\"1420\" type=\"line\"/>\n      <point x=\"69\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/V_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"V.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"355\" y=\"0\" type=\"line\"/>\n      <point x=\"486\" y=\"0\" type=\"line\"/>\n      <point x=\"799\" y=\"639\" type=\"line\"/>\n      <point x=\"700\" y=\"639\" type=\"line\"/>\n      <point x=\"425\" y=\"80\" type=\"line\"/>\n      <point x=\"416\" y=\"80\" type=\"line\"/>\n      <point x=\"141\" y=\"639\" type=\"line\"/>\n      <point x=\"42\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/V_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ve-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0412\"/>\n  <outline>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/V_hook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Vhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B2\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1080\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1180\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"676\" y=\"1420\" type=\"line\"/>\n      <point x=\"676\" y=\"1330\" type=\"line\"/>\n      <point x=\"810\" y=\"1330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"1330\"/>\n      <point x=\"942\" y=\"1277\"/>\n      <point x=\"942\" y=\"1170\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"200\"/>\n      <point x=\"826\" y=\"70\"/>\n      <point x=\"600\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"363\" y=\"70\"/>\n      <point x=\"258\" y=\"200\"/>\n      <point x=\"258\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"1420\" type=\"line\"/>\n      <point x=\"164\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"138\"/>\n      <point x=\"308\" y=\"-20\"/>\n      <point x=\"596\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"-20\"/>\n      <point x=\"1036\" y=\"138\"/>\n      <point x=\"1036\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"1170\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"1337\"/>\n      <point x=\"967\" y=\"1420\"/>\n      <point x=\"830\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/V_turned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Vturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0245\"/>\n  <outline>\n    <component base=\"El-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/W_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"W\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0057\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"254\" y=\"0\" type=\"line\"/>\n      <point x=\"429\" y=\"0\" type=\"line\"/>\n      <point x=\"594\" y=\"990\" type=\"line\"/>\n      <point x=\"634\" y=\"990\" type=\"line\"/>\n      <point x=\"686\" y=\"1060\" type=\"line\"/>\n      <point x=\"516\" y=\"1060\" type=\"line\"/>\n      <point x=\"350\" y=\"80\" type=\"line\"/>\n      <point x=\"330\" y=\"80\" type=\"line\"/>\n      <point x=\"140\" y=\"1420\" type=\"line\"/>\n      <point x=\"44\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"771\" y=\"0\" type=\"line\"/>\n      <point x=\"946\" y=\"0\" type=\"line\"/>\n      <point x=\"1156\" y=\"1420\" type=\"line\"/>\n      <point x=\"1060\" y=\"1420\" type=\"line\"/>\n      <point x=\"870\" y=\"80\" type=\"line\"/>\n      <point x=\"850\" y=\"80\" type=\"line\"/>\n      <point x=\"686\" y=\"1060\" type=\"line\"/>\n      <point x=\"516\" y=\"1060\" type=\"line\"/>\n      <point x=\"566\" y=\"990\" type=\"line\"/>\n      <point x=\"606\" y=\"990\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/W_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E82\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/W_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0174\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/W_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wdieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E84\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/W_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E80\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/X_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"X\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0058\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1001\" y=\"0\" type=\"line\"/>\n      <point x=\"1111\" y=\"0\" type=\"line\"/>\n      <point x=\"641\" y=\"715\" type=\"line\"/>\n      <point x=\"199\" y=\"1420\" type=\"line\"/>\n      <point x=\"89\" y=\"1420\" type=\"line\"/>\n      <point x=\"572\" y=\"667\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"89\" y=\"0\" type=\"line\"/>\n      <point x=\"199\" y=\"0\" type=\"line\"/>\n      <point x=\"628\" y=\"667\" type=\"line\"/>\n      <point x=\"1111\" y=\"1420\" type=\"line\"/>\n      <point x=\"1001\" y=\"1420\" type=\"line\"/>\n      <point x=\"558\" y=\"714\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/X_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"X.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"663\" y=\"0\" type=\"line\"/>\n      <point x=\"785\" y=\"0\" type=\"line\"/>\n      <point x=\"461\" y=\"336\" type=\"line\"/>\n      <point x=\"178\" y=\"639\" type=\"line\"/>\n      <point x=\"56\" y=\"639\" type=\"line\"/>\n      <point x=\"389\" y=\"286\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"56\" y=\"0\" type=\"line\"/>\n      <point x=\"178\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"286\" type=\"line\"/>\n      <point x=\"785\" y=\"639\" type=\"line\"/>\n      <point x=\"663\" y=\"639\" type=\"line\"/>\n      <point x=\"379\" y=\"335\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/X_i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Xi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039E\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"1330\" type=\"line\"/>\n      <point x=\"1076\" y=\"1330\" type=\"line\"/>\n      <point x=\"1076\" y=\"1420\" type=\"line\"/>\n      <point x=\"124\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"90\" type=\"line\"/>\n      <point x=\"124\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"666\" type=\"line\"/>\n      <point x=\"1006\" y=\"666\" type=\"line\"/>\n      <point x=\"1006\" y=\"756\" type=\"line\"/>\n      <point x=\"194\" y=\"756\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Y\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0059\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"20\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"575\" y=\"464\" type=\"line\"/>\n      <point x=\"625\" y=\"464\" type=\"line\"/>\n      <point x=\"1151\" y=\"1420\" type=\"line\"/>\n      <point x=\"1042\" y=\"1420\" type=\"line\"/>\n      <point x=\"604\" y=\"605\" type=\"line\"/>\n      <point x=\"596\" y=\"605\" type=\"line\"/>\n      <point x=\"158\" y=\"1420\" type=\"line\"/>\n      <point x=\"49\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"590\" type=\"line\"/>\n      <point x=\"553\" y=\"590\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Y.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"386\" y=\"168\" type=\"line\"/>\n      <point x=\"455\" y=\"168\" type=\"line\"/>\n      <point x=\"813\" y=\"639\" type=\"line\"/>\n      <point x=\"709\" y=\"639\" type=\"line\"/>\n      <point x=\"425\" y=\"267\" type=\"line\"/>\n      <point x=\"416\" y=\"267\" type=\"line\"/>\n      <point x=\"132\" y=\"639\" type=\"line\"/>\n      <point x=\"28\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"468\" y=\"0\" type=\"line\"/>\n      <point x=\"468\" y=\"257\" type=\"line\"/>\n      <point x=\"373\" y=\"257\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DD\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ycircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0176\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ydieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0178\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ydotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF4\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_eru-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yeru-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"228\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"0\"/>\n      <point x=\"733\" y=\"158\"/>\n      <point x=\"733\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"708\"/>\n      <point x=\"595\" y=\"866\"/>\n      <point x=\"355\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"208\" y=\"866\" type=\"line\"/>\n      <point x=\"208\" y=\"776\" type=\"line\"/>\n      <point x=\"355\" y=\"776\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"776\"/>\n      <point x=\"637\" y=\"651\"/>\n      <point x=\"637\" y=\"433\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"215\"/>\n      <point x=\"534\" y=\"90\"/>\n      <point x=\"355\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"152\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"1420\" type=\"line\"/>\n      <point x=\"152\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"954\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"0\" type=\"line\"/>\n      <point x=\"1048\" y=\"1420\" type=\"line\"/>\n      <point x=\"954\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ygrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF2\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF6\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yi-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0407\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ymacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0232\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"macroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ytilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF8\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"tildecomb.case\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Z\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"710\" name=\"center\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"246\" y=\"38\" type=\"line\"/>\n      <point x=\"1026\" y=\"1330\" type=\"line\"/>\n      <point x=\"954\" y=\"1382\" type=\"line\"/>\n      <point x=\"174\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"0\" type=\"line\"/>\n      <point x=\"1046\" y=\"0\" type=\"line\"/>\n      <point x=\"1046\" y=\"90\" type=\"line\"/>\n      <point x=\"174\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"1330\" type=\"line\"/>\n      <point x=\"1026\" y=\"1330\" type=\"line\"/>\n      <point x=\"1026\" y=\"1420\" type=\"line\"/>\n      <point x=\"174\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0179\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"acutecomb.case\" xOffset=\"61\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017D\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017B\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"dotaccentcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0417\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"582\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"-20\"/>\n      <point x=\"1058\" y=\"144\"/>\n      <point x=\"1058\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"624\"/>\n      <point x=\"859\" y=\"743\"/>\n      <point x=\"654\" y=\"748\" type=\"curve\"/>\n      <point x=\"671\" y=\"694\" type=\"line\"/>\n      <point x=\"671\" y=\"811\" type=\"line\"/>\n      <point x=\"654\" y=\"755\" type=\"line\"/>\n      <point x=\"898\" y=\"803\"/>\n      <point x=\"1021\" y=\"922\"/>\n      <point x=\"1021\" y=\"1114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"1326\"/>\n      <point x=\"845\" y=\"1440\"/>\n      <point x=\"563\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"1440\"/>\n      <point x=\"256\" y=\"1393\"/>\n      <point x=\"194\" y=\"1363\" type=\"curve\"/>\n      <point x=\"219\" y=\"1274\" type=\"line\"/>\n      <point x=\"327\" y=\"1324\"/>\n      <point x=\"458\" y=\"1350\"/>\n      <point x=\"566\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1350\"/>\n      <point x=\"925\" y=\"1261\"/>\n      <point x=\"925\" y=\"1095\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"925\" y=\"891\"/>\n      <point x=\"759\" y=\"797\"/>\n      <point x=\"419\" y=\"783\" type=\"curve\"/>\n      <point x=\"419\" y=\"693\" type=\"line\"/>\n      <point x=\"534\" y=\"693\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"582\" y=\"693\"/>\n      <point x=\"962\" y=\"693\"/>\n      <point x=\"962\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"191\"/>\n      <point x=\"821\" y=\"70\"/>\n      <point x=\"582\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"70\"/>\n      <point x=\"289\" y=\"111\"/>\n      <point x=\"152\" y=\"217\" type=\"curve\"/>\n      <point x=\"88\" y=\"151\" type=\"line\"/>\n      <point x=\"206\" y=\"37\"/>\n      <point x=\"357\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zeta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0396\"/>\n  <outline>\n    <component base=\"Z\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_he-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0416\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"717\" y=\"703\" type=\"line\"/>\n      <point x=\"841\" y=\"713\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"943\" y=\"721\"/>\n      <point x=\"991\" y=\"795\"/>\n      <point x=\"1011\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"1223\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1073\" y=\"1304\"/>\n      <point x=\"1119\" y=\"1335\"/>\n      <point x=\"1170\" y=\"1335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1193\" y=\"1335\" type=\"line\"/>\n      <point x=\"1193\" y=\"1425\" type=\"line\"/>\n      <point x=\"1157\" y=\"1425\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"1425\"/>\n      <point x=\"993\" y=\"1368\"/>\n      <point x=\"971\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"936\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"897\" y=\"790\"/>\n      <point x=\"861\" y=\"755\"/>\n      <point x=\"723\" y=\"755\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"7\" y=\"-5\" type=\"line\"/>\n      <point x=\"43\" y=\"-5\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"-5\"/>\n      <point x=\"208\" y=\"49\"/>\n      <point x=\"229\" y=\"182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"279\" y=\"494\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"302\" y=\"635\"/>\n      <point x=\"339\" y=\"665\"/>\n      <point x=\"477\" y=\"665\" type=\"curve\"/>\n      <point x=\"483\" y=\"717\" type=\"line\"/>\n      <point x=\"359\" y=\"707\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"257\" y=\"699\"/>\n      <point x=\"209\" y=\"630\"/>\n      <point x=\"189\" y=\"505\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"197\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"126\" y=\"115\"/>\n      <point x=\"81\" y=\"85\"/>\n      <point x=\"30\" y=\"85\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"7\" y=\"85\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"447\" y=\"665\" type=\"line\"/>\n      <point x=\"555\" y=\"665\" type=\"line\"/>\n      <point x=\"555\" y=\"755\" type=\"line\"/>\n      <point x=\"447\" y=\"755\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"483\" y=\"703\" type=\"line\"/>\n      <point x=\"477\" y=\"755\" type=\"line\"/>\n      <point x=\"339\" y=\"755\"/>\n      <point x=\"303\" y=\"790\"/>\n      <point x=\"279\" y=\"936\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"229\" y=\"1238\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"207\" y=\"1368\"/>\n      <point x=\"159\" y=\"1425\"/>\n      <point x=\"43\" y=\"1425\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"7\" y=\"1425\" type=\"line\"/>\n      <point x=\"7\" y=\"1335\" type=\"line\"/>\n      <point x=\"30\" y=\"1335\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"81\" y=\"1335\"/>\n      <point x=\"125\" y=\"1304\"/>\n      <point x=\"139\" y=\"1223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"189\" y=\"925\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"211\" y=\"795\"/>\n      <point x=\"257\" y=\"721\"/>\n      <point x=\"359\" y=\"713\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"553\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1157\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1193\" y=\"-5\" type=\"line\"/>\n      <point x=\"1193\" y=\"85\" type=\"line\"/>\n      <point x=\"1170\" y=\"85\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1119\" y=\"85\"/>\n      <point x=\"1073\" y=\"115\"/>\n      <point x=\"1061\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"505\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"993\" y=\"630\"/>\n      <point x=\"943\" y=\"699\"/>\n      <point x=\"841\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"717\" type=\"line\"/>\n      <point x=\"723\" y=\"665\" type=\"line\"/>\n      <point x=\"861\" y=\"665\"/>\n      <point x=\"898\" y=\"635\"/>\n      <point x=\"921\" y=\"494\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"182\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"49\"/>\n      <point x=\"1041\" y=\"-5\"/>\n    </contour>\n    <contour>\n      <point x=\"645\" y=\"665\" type=\"line\"/>\n      <point x=\"753\" y=\"665\" type=\"line\"/>\n      <point x=\"753\" y=\"755\" type=\"line\"/>\n      <point x=\"645\" y=\"755\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_hedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zhedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0496\"/>\n  <anchor x=\"600\" y=\"-290\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"717\" y=\"703\" type=\"line\"/>\n      <point x=\"841\" y=\"713\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"943\" y=\"721\"/>\n      <point x=\"989\" y=\"795\"/>\n      <point x=\"1011\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"1223\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1075\" y=\"1304\"/>\n      <point x=\"1119\" y=\"1335\"/>\n      <point x=\"1170\" y=\"1335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1193\" y=\"1335\" type=\"line\"/>\n      <point x=\"1193\" y=\"1425\" type=\"line\"/>\n      <point x=\"1157\" y=\"1425\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"1425\"/>\n      <point x=\"993\" y=\"1368\"/>\n      <point x=\"971\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"936\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"897\" y=\"790\"/>\n      <point x=\"861\" y=\"755\"/>\n      <point x=\"723\" y=\"755\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"7\" y=\"-5\" type=\"line\"/>\n      <point x=\"43\" y=\"-5\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"-5\"/>\n      <point x=\"208\" y=\"49\"/>\n      <point x=\"229\" y=\"182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"279\" y=\"494\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"302\" y=\"635\"/>\n      <point x=\"339\" y=\"665\"/>\n      <point x=\"477\" y=\"665\" type=\"curve\"/>\n      <point x=\"483\" y=\"717\" type=\"line\"/>\n      <point x=\"359\" y=\"707\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"257\" y=\"699\"/>\n      <point x=\"209\" y=\"630\"/>\n      <point x=\"189\" y=\"505\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"197\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"126\" y=\"115\"/>\n      <point x=\"81\" y=\"85\"/>\n      <point x=\"30\" y=\"85\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"7\" y=\"85\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1099\" y=\"-290\" type=\"line\"/>\n      <point x=\"1193\" y=\"-290\" type=\"line\"/>\n      <point x=\"1193\" y=\"90\" type=\"line\"/>\n      <point x=\"1099\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"447\" y=\"665\" type=\"line\"/>\n      <point x=\"555\" y=\"665\" type=\"line\"/>\n      <point x=\"555\" y=\"755\" type=\"line\"/>\n      <point x=\"447\" y=\"755\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"483\" y=\"703\" type=\"line\"/>\n      <point x=\"477\" y=\"755\" type=\"line\"/>\n      <point x=\"339\" y=\"755\"/>\n      <point x=\"303\" y=\"790\"/>\n      <point x=\"279\" y=\"936\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"229\" y=\"1238\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"207\" y=\"1368\"/>\n      <point x=\"159\" y=\"1425\"/>\n      <point x=\"43\" y=\"1425\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"7\" y=\"1425\" type=\"line\"/>\n      <point x=\"7\" y=\"1335\" type=\"line\"/>\n      <point x=\"30\" y=\"1335\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"81\" y=\"1335\"/>\n      <point x=\"125\" y=\"1304\"/>\n      <point x=\"139\" y=\"1223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"189\" y=\"925\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"211\" y=\"795\"/>\n      <point x=\"257\" y=\"721\"/>\n      <point x=\"359\" y=\"713\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"553\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1157\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1193\" y=\"-5\" type=\"line\"/>\n      <point x=\"1193\" y=\"90\" type=\"line\"/>\n      <point x=\"1170\" y=\"90\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1119\" y=\"90\"/>\n      <point x=\"1074\" y=\"119\"/>\n      <point x=\"1061\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"505\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"630\"/>\n      <point x=\"943\" y=\"699\"/>\n      <point x=\"841\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"717\" type=\"line\"/>\n      <point x=\"723\" y=\"665\" type=\"line\"/>\n      <point x=\"861\" y=\"665\"/>\n      <point x=\"898\" y=\"635\"/>\n      <point x=\"921\" y=\"494\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"182\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"49\"/>\n      <point x=\"1041\" y=\"-5\"/>\n    </contour>\n    <contour>\n      <point x=\"645\" y=\"665\" type=\"line\"/>\n      <point x=\"753\" y=\"665\" type=\"line\"/>\n      <point x=\"753\" y=\"755\" type=\"line\"/>\n      <point x=\"645\" y=\"755\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alef-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alef-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"343\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"294\" y=\"1317\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-3\"/>\n      <point x=\"1014\" y=\"88\"/>\n      <point x=\"1014\" y=\"229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"462\"/>\n      <point x=\"665\" y=\"738\"/>\n      <point x=\"193\" y=\"1248\" type=\"curve\"/>\n      <point x=\"123\" y=\"1169\" type=\"line\"/>\n      <point x=\"602\" y=\"656\"/>\n      <point x=\"920\" y=\"408\"/>\n      <point x=\"920\" y=\"216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"113\"/>\n      <point x=\"802\" y=\"91\"/>\n      <point x=\"634\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"91\"/>\n      <point x=\"382\" y=\"95\"/>\n      <point x=\"246\" y=\"106\" type=\"curve\"/>\n      <point x=\"207\" y=\"139\" type=\"line\"/>\n      <point x=\"206\" y=\"10\" type=\"line\"/>\n      <point x=\"404\" y=\"-4\"/>\n      <point x=\"474\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alef-ar.fina.short.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alef-ar.fina.short.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"333\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"294\" y=\"1235\" name=\"top\"/>\n  <anchor x=\"294\" y=\"1171\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-3\"/>\n      <point x=\"1014\" y=\"88\"/>\n      <point x=\"1014\" y=\"229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"442\"/>\n      <point x=\"665\" y=\"714\"/>\n      <point x=\"193\" y=\"1156\" type=\"curve\"/>\n      <point x=\"123\" y=\"1077\" type=\"line\"/>\n      <point x=\"602\" y=\"632\"/>\n      <point x=\"920\" y=\"388\"/>\n      <point x=\"920\" y=\"216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"113\"/>\n      <point x=\"802\" y=\"91\"/>\n      <point x=\"634\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"91\"/>\n      <point x=\"382\" y=\"95\"/>\n      <point x=\"246\" y=\"106\" type=\"curve\"/>\n      <point x=\"207\" y=\"139\" type=\"line\"/>\n      <point x=\"206\" y=\"10\" type=\"line\"/>\n      <point x=\"404\" y=\"-4\"/>\n      <point x=\"474\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefF_athatan-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefFathatan-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"273\" y=\"1631\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"fathatan-ar\" xOffset=\"-305\" yOffset=\"-75\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefH_amzaabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefHamzaabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"290\" y=\"1684\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-326\" yOffset=\"67\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefH_amzabelow-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefHamzabelow-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"359\" y=\"-492\" name=\"bottom\"/>\n  <anchor x=\"294\" y=\"1317\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.rlig\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-262\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.rlig</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefM_adda-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefMadda-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"286\" y=\"1505\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"madda-ar\" xOffset=\"-309\" yOffset=\"48\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefT_hreeabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefThreeabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"35\" y=\"1481\" name=\"top\"/>\n  <outline>\n    <component base=\"three-persian.small01\" xOffset=\"-591\" yOffset=\"-161\"/>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefT_woabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefTwoabove-ar.fina.rlig\" format=\"2\">\n  <guideline x=\"234\" y=\"578\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"35\" y=\"1481\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-607\" yOffset=\"-161\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefW_asla-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefWasla-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"249\" y=\"1624\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"wasla-ar\" xOffset=\"-357\" yOffset=\"45\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefW_avyhamzaabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefWavyhamzaabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"296\" y=\"1688\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.short.rlig\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-326\" yOffset=\"67\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefW_avyhamzabelow-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefWavyhamzabelow-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"290\" y=\"-523\" name=\"bottom\"/>\n  <anchor x=\"294\" y=\"1317\" name=\"top\"/>\n  <outline>\n    <component base=\"_alef-ar.fina.rlig\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"-262\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alef-ar.fina.rlig</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"577\" y=\"578\" type=\"curve\"/>\n      <point x=\"663\" y=\"578\" type=\"line\"/>\n      <point x=\"673\" y=\"698\"/>\n      <point x=\"662\" y=\"868\"/>\n      <point x=\"628\" y=\"999\" type=\"curve\"/>\n      <point x=\"534\" y=\"999\" type=\"line\"/>\n      <point x=\"566\" y=\"864\"/>\n      <point x=\"577\" y=\"721\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_bar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"596\" y=\"318\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"282\" y=\"268\" type=\"line\"/>\n      <point x=\"897\" y=\"268\" type=\"line\"/>\n      <point x=\"897\" y=\"362\" type=\"line\"/>\n      <point x=\"282\" y=\"362\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_cuberoot_fourthroot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_cuberoot_fourthroot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"558\" y=\"0\" type=\"line\"/>\n      <point x=\"649\" y=\"0\" type=\"line\"/>\n      <point x=\"980\" y=\"831\" type=\"line\"/>\n      <point x=\"1176\" y=\"831\" type=\"line\"/>\n      <point x=\"1176\" y=\"932\" type=\"line\"/>\n      <point x=\"919\" y=\"932\" type=\"line\"/>\n      <point x=\"598\" y=\"114\" type=\"line\"/>\n      <point x=\"616\" y=\"113\" type=\"line\"/>\n      <point x=\"180\" y=\"1420\" type=\"line\"/>\n      <point x=\"81\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_damma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_damma-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"1229\" name=\"_top\"/>\n  <anchor x=\"599\" y=\"1056\" name=\"_top.dot\"/>\n  <anchor x=\"593\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"338\" y=\"1117\" type=\"line\"/>\n      <point x=\"705\" y=\"1215\"/>\n      <point x=\"799\" y=\"1286\"/>\n      <point x=\"799\" y=\"1412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"1506\"/>\n      <point x=\"744\" y=\"1567\"/>\n      <point x=\"652\" y=\"1567\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"1567\"/>\n      <point x=\"491\" y=\"1502\"/>\n      <point x=\"491\" y=\"1407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"1334\"/>\n      <point x=\"527\" y=\"1278\"/>\n      <point x=\"574\" y=\"1251\" type=\"curve\"/>\n      <point x=\"648\" y=\"1284\" type=\"line\"/>\n      <point x=\"595\" y=\"1315\"/>\n      <point x=\"573\" y=\"1359\"/>\n      <point x=\"573\" y=\"1407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"1452\"/>\n      <point x=\"601\" y=\"1483\"/>\n      <point x=\"649\" y=\"1483\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1483\"/>\n      <point x=\"717\" y=\"1452\"/>\n      <point x=\"717\" y=\"1403\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"1322\"/>\n      <point x=\"663\" y=\"1286\"/>\n      <point x=\"333\" y=\"1197\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_dot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_dot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"427\" type=\"line\"/>\n      <point x=\"711\" y=\"538\" type=\"line\"/>\n      <point x=\"600\" y=\"650\" type=\"line\"/>\n      <point x=\"489\" y=\"538\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_dotV_I_nvertedabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_dotVInvertedabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"767\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1282\" name=\"top\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" yOffset=\"976\"/>\n    <component base=\"_vabove\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1831\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_dotV_above.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_dotVabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"762\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"612\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1332\" name=\"top\"/>\n  <outline>\n    <component base=\"dotabove-ar\" xOffset=\"-4\" yOffset=\"1\"/>\n    <component base=\"vabove-ar\" xOffset=\"-4\" yOffset=\"401\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_dots.horz.below.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_dots.horz.below\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-8\" name=\"_bottom.dot\"/>\n  <anchor x=\"599\" y=\"-414\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"24\" yOffset=\"-741\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-226\" yOffset=\"-741\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"274\" yOffset=\"-741\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_doublebar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_doublebar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"596\" y=\"318\" name=\"_center\"/>\n  <outline>\n    <component base=\"_bar\" xScale=\"1.001\" yOffset=\"-103\"/>\n    <component base=\"_bar\" xScale=\"1.001\" yOffset=\"117\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_bar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_bar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_fatha-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_fatha-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"330\" y=\"1282\" type=\"line\"/>\n      <point x=\"838\" y=\"1426\" type=\"line\"/>\n      <point x=\"844\" y=\"1510\" type=\"line\"/>\n      <point x=\"336\" y=\"1366\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_four-persian.small01.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_four-persian.small01\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"505\" y=\"601\" type=\"curve\"/>\n      <point x=\"584\" y=\"601\" type=\"line\"/>\n      <point x=\"569\" y=\"698\"/>\n      <point x=\"540\" y=\"834\"/>\n      <point x=\"540\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"912\"/>\n      <point x=\"567\" y=\"939\"/>\n      <point x=\"600\" y=\"939\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"939\"/>\n      <point x=\"654\" y=\"890\"/>\n      <point x=\"663\" y=\"820\" type=\"curve\"/>\n      <point x=\"738\" y=\"820\" type=\"line\"/>\n      <point x=\"751\" y=\"877\"/>\n      <point x=\"789\" y=\"947\"/>\n      <point x=\"817\" y=\"997\" type=\"curve\"/>\n      <point x=\"741\" y=\"1024\" type=\"line\"/>\n      <point x=\"728\" y=\"1000\"/>\n      <point x=\"709\" y=\"954\"/>\n      <point x=\"701\" y=\"911\" type=\"curve\"/>\n      <point x=\"693\" y=\"911\" type=\"line\"/>\n      <point x=\"682\" y=\"991\"/>\n      <point x=\"644\" y=\"1023\"/>\n      <point x=\"585\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"1023\"/>\n      <point x=\"461\" y=\"978\"/>\n      <point x=\"461\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"833\"/>\n      <point x=\"492\" y=\"694\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_fourdotscenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_fourdotscenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"-80\" yOffset=\"681\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"-83\" yOffset=\"434\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"163\" yOffset=\"682\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"160\" yOffset=\"435\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>3</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_fourthroot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_fourthroot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"619\" y=\"1334\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1651\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"623\" y=\"1147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1147\"/>\n      <point x=\"716\" y=\"1153\"/>\n      <point x=\"756\" y=\"1163\" type=\"curve\"/>\n      <point x=\"750\" y=\"1220\" type=\"line\"/>\n      <point x=\"713\" y=\"1214\"/>\n      <point x=\"681\" y=\"1209\"/>\n      <point x=\"642\" y=\"1209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"1209\"/>\n      <point x=\"541\" y=\"1219\"/>\n      <point x=\"541\" y=\"1254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"541\" y=\"1289\"/>\n      <point x=\"600\" y=\"1324\"/>\n      <point x=\"701\" y=\"1346\" type=\"curve\"/>\n      <point x=\"696\" y=\"1408\" type=\"line\"/>\n      <point x=\"604\" y=\"1404\"/>\n      <point x=\"555\" y=\"1422\"/>\n      <point x=\"555\" y=\"1451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1482\"/>\n      <point x=\"591\" y=\"1504\"/>\n      <point x=\"707\" y=\"1529\" type=\"curve\"/>\n      <point x=\"702\" y=\"1593\" type=\"line\"/>\n      <point x=\"543\" y=\"1559\"/>\n      <point x=\"490\" y=\"1509\"/>\n      <point x=\"490\" y=\"1454\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"1406\"/>\n      <point x=\"527\" y=\"1378\"/>\n      <point x=\"585\" y=\"1367\" type=\"curve\"/>\n      <point x=\"585\" y=\"1352\" type=\"line\"/>\n      <point x=\"639\" y=\"1343\" type=\"line\"/>\n      <point x=\"638\" y=\"1380\" type=\"line\"/>\n      <point x=\"521\" y=\"1339\"/>\n      <point x=\"476\" y=\"1302\"/>\n      <point x=\"476\" y=\"1246\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"1181\"/>\n      <point x=\"527\" y=\"1147\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_hamzasmall-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_hamzasmall-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"396\" y=\"521\" type=\"line\"/>\n      <point x=\"780\" y=\"609\" type=\"line\"/>\n      <point x=\"769\" y=\"679\" type=\"line\"/>\n      <point x=\"705\" y=\"667\"/>\n      <point x=\"637\" y=\"650\"/>\n      <point x=\"590\" y=\"650\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"650\"/>\n      <point x=\"483\" y=\"678\"/>\n      <point x=\"483\" y=\"759\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"831\"/>\n      <point x=\"518\" y=\"870\"/>\n      <point x=\"617\" y=\"870\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"870\"/>\n      <point x=\"688\" y=\"864\"/>\n      <point x=\"723\" y=\"859\" type=\"curve\"/>\n      <point x=\"727\" y=\"923\" type=\"line\"/>\n      <point x=\"687\" y=\"936\"/>\n      <point x=\"647\" y=\"942\"/>\n      <point x=\"602\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"942\"/>\n      <point x=\"407\" y=\"882\"/>\n      <point x=\"407\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"407\" y=\"692\"/>\n      <point x=\"432\" y=\"648\"/>\n      <point x=\"488\" y=\"629\" type=\"curve\"/>\n      <point x=\"488\" y=\"605\" type=\"line\"/>\n      <point x=\"535\" y=\"604\" type=\"line\"/>\n      <point x=\"545\" y=\"630\" type=\"line\"/>\n      <point x=\"387\" y=\"591\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_hamzawavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_hamzawavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"285\" y=\"531\" type=\"line\"/>\n      <point x=\"321\" y=\"554\"/>\n      <point x=\"347\" y=\"566\"/>\n      <point x=\"373\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"566\"/>\n      <point x=\"457\" y=\"535\"/>\n      <point x=\"535\" y=\"535\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"618\" y=\"535\"/>\n      <point x=\"735\" y=\"576\"/>\n      <point x=\"843\" y=\"609\" type=\"curve\"/>\n      <point x=\"832\" y=\"681\" type=\"line\"/>\n      <point x=\"761\" y=\"666\"/>\n      <point x=\"700\" y=\"650\"/>\n      <point x=\"653\" y=\"650\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"650\"/>\n      <point x=\"546\" y=\"678\"/>\n      <point x=\"546\" y=\"759\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"831\"/>\n      <point x=\"581\" y=\"870\"/>\n      <point x=\"680\" y=\"870\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"870\"/>\n      <point x=\"751\" y=\"866\"/>\n      <point x=\"786\" y=\"861\" type=\"curve\"/>\n      <point x=\"790\" y=\"923\" type=\"line\"/>\n      <point x=\"750\" y=\"936\"/>\n      <point x=\"710\" y=\"942\"/>\n      <point x=\"665\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"942\"/>\n      <point x=\"470\" y=\"882\"/>\n      <point x=\"470\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"692\"/>\n      <point x=\"495\" y=\"648\"/>\n      <point x=\"551\" y=\"629\" type=\"curve\"/>\n      <point x=\"551\" y=\"605\" type=\"line\"/>\n      <point x=\"598\" y=\"604\" type=\"line\"/>\n      <point x=\"608\" y=\"630\" type=\"line\"/>\n      <point x=\"582\" y=\"624\"/>\n      <point x=\"565\" y=\"615\"/>\n      <point x=\"539\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"615\"/>\n      <point x=\"424\" y=\"650\"/>\n      <point x=\"374\" y=\"650\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"340\" y=\"650\"/>\n      <point x=\"309\" y=\"633\"/>\n      <point x=\"276\" y=\"605\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_hehgoalcomma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_hehgoalcomma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"590\" y=\"-5\" name=\"_bottom.dot\"/>\n  <anchor x=\"592\" y=\"-424\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"587\" y=\"-392\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"653\" y=\"-392\"/>\n      <point x=\"683\" y=\"-356\"/>\n      <point x=\"683\" y=\"-308\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"683\" y=\"-260\"/>\n      <point x=\"657\" y=\"-238\"/>\n      <point x=\"606\" y=\"-238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"-238\"/>\n      <point x=\"564\" y=\"-239\"/>\n      <point x=\"545\" y=\"-242\" type=\"curve\"/>\n      <point x=\"556\" y=\"-276\" type=\"line\"/>\n      <point x=\"561\" y=\"-190\"/>\n      <point x=\"602\" y=\"-130\"/>\n      <point x=\"667\" y=\"-75\" type=\"curve\"/>\n      <point x=\"620\" y=\"-39\" type=\"line\"/>\n      <point x=\"514\" y=\"-104\"/>\n      <point x=\"474\" y=\"-205\"/>\n      <point x=\"474\" y=\"-277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"-349\"/>\n      <point x=\"512\" y=\"-392\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_highhamzaA_lef-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_highhamzaAlef-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"532\" y=\"1741\" name=\"top\"/>\n  <outline>\n    <component base=\"highhamza-ar\" xOffset=\"-94\" yOffset=\"118\"/>\n    <component base=\"_alef-ar.fina.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_invertedstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_invertedstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"215\" y=\"856\" type=\"line\"/>\n      <point x=\"652\" y=\"1138\" type=\"line\"/>\n      <point x=\"653\" y=\"1241\" type=\"line\"/>\n      <point x=\"203\" y=\"948\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_notdef.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\".notdef\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"956\" y=\"0\" type=\"line\"/>\n      <point x=\"1046\" y=\"0\" type=\"line\"/>\n      <point x=\"1046\" y=\"1420\" type=\"line\"/>\n      <point x=\"956\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"0\" type=\"line\"/>\n      <point x=\"1046\" y=\"0\" type=\"line\"/>\n      <point x=\"1046\" y=\"88\" type=\"line\"/>\n      <point x=\"154\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"0\" type=\"line\"/>\n      <point x=\"244\" y=\"0\" type=\"line\"/>\n      <point x=\"244\" y=\"1420\" type=\"line\"/>\n      <point x=\"154\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"1332\" type=\"line\"/>\n      <point x=\"1046\" y=\"1332\" type=\"line\"/>\n      <point x=\"1046\" y=\"1420\" type=\"line\"/>\n      <point x=\"154\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_onedotstah.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_onedotstah\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"762\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"612\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1472\" name=\"top\"/>\n  <outline>\n    <component base=\"_tahabove\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"60\" yOffset=\"434\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-4\" yOffset=\"1\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_ringA_rabic.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_ringArabic\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"590\" y=\"-169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"-169\"/>\n      <point x=\"758\" y=\"-119\"/>\n      <point x=\"758\" y=\"-8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"99\"/>\n      <point x=\"694\" y=\"153\"/>\n      <point x=\"598\" y=\"153\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"153\"/>\n      <point x=\"433\" y=\"96\"/>\n      <point x=\"433\" y=\"-8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"-113\"/>\n      <point x=\"485\" y=\"-169\"/>\n    </contour>\n    <contour>\n      <point x=\"594\" y=\"-85\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"-85\"/>\n      <point x=\"515\" y=\"-62\"/>\n      <point x=\"515\" y=\"-8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"44\"/>\n      <point x=\"547\" y=\"69\"/>\n      <point x=\"598\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"69\"/>\n      <point x=\"676\" y=\"39\"/>\n      <point x=\"676\" y=\"-11\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"-63\"/>\n      <point x=\"646\" y=\"-85\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_stroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"312\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"332\" y=\"268\" type=\"line\"/>\n      <point x=\"867\" y=\"268\" type=\"line\"/>\n      <point x=\"867\" y=\"362\" type=\"line\"/>\n      <point x=\"332\" y=\"362\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_tahabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_tahabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"567\" y=\"661\" name=\"_top\"/>\n  <anchor x=\"567\" y=\"546\" name=\"_top.dot\"/>\n  <anchor x=\"551\" y=\"1092\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"557\" y=\"606\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"606\"/>\n      <point x=\"824\" y=\"655\"/>\n      <point x=\"824\" y=\"777\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"893\"/>\n      <point x=\"761\" y=\"970\"/>\n      <point x=\"670\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"970\"/>\n      <point x=\"483\" y=\"867\"/>\n      <point x=\"400\" y=\"695\" type=\"curve\"/>\n      <point x=\"471\" y=\"677\" type=\"line\"/>\n      <point x=\"537\" y=\"804\"/>\n      <point x=\"609\" y=\"886\"/>\n      <point x=\"663\" y=\"886\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"886\"/>\n      <point x=\"742\" y=\"839\"/>\n      <point x=\"742\" y=\"778\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"742\" y=\"713\"/>\n      <point x=\"698\" y=\"690\"/>\n      <point x=\"566\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"690\"/>\n      <point x=\"373\" y=\"702\"/>\n      <point x=\"309\" y=\"709\" type=\"curve\"/>\n      <point x=\"314\" y=\"630\" type=\"line\"/>\n      <point x=\"376\" y=\"618\"/>\n      <point x=\"466\" y=\"606\"/>\n    </contour>\n    <contour>\n      <point x=\"413\" y=\"700\" type=\"line\"/>\n      <point x=\"486\" y=\"751\" type=\"line\"/>\n      <point x=\"483\" y=\"831\" type=\"line\"/>\n      <point x=\"467\" y=\"838\" type=\"line\"/>\n      <point x=\"484\" y=\"874\"/>\n      <point x=\"490\" y=\"910\"/>\n      <point x=\"489\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"1064\" type=\"line\"/>\n      <point x=\"404\" y=\"1064\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_tahabovesmall.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_tahabovesmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"351\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"351\"/>\n      <point x=\"791\" y=\"387\"/>\n      <point x=\"791\" y=\"471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"553\"/>\n      <point x=\"739\" y=\"619\"/>\n      <point x=\"678\" y=\"619\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"619\"/>\n      <point x=\"543\" y=\"537\"/>\n      <point x=\"484\" y=\"416\" type=\"curve\"/>\n      <point x=\"544\" y=\"399\" type=\"line\"/>\n      <point x=\"593\" y=\"488\"/>\n      <point x=\"637\" y=\"537\"/>\n      <point x=\"671\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"697\" y=\"537\"/>\n      <point x=\"723\" y=\"507\"/>\n      <point x=\"723\" y=\"467\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"438\"/>\n      <point x=\"689\" y=\"425\"/>\n      <point x=\"602\" y=\"425\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"425\"/>\n      <point x=\"463\" y=\"434\"/>\n      <point x=\"425\" y=\"439\" type=\"curve\"/>\n      <point x=\"428\" y=\"368\" type=\"line\"/>\n      <point x=\"471\" y=\"358\"/>\n      <point x=\"529\" y=\"351\"/>\n    </contour>\n    <contour>\n      <point x=\"496\" y=\"418\" type=\"line\"/>\n      <point x=\"562\" y=\"456\" type=\"line\"/>\n      <point x=\"560\" y=\"530\" type=\"line\"/>\n      <point x=\"547\" y=\"538\" type=\"line\"/>\n      <point x=\"554\" y=\"553\"/>\n      <point x=\"558\" y=\"564\"/>\n      <point x=\"557\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"554\" y=\"657\" type=\"line\"/>\n      <point x=\"489\" y=\"657\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_threedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_threedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"31\" yOffset=\"293\"/>\n    <component base=\"_dot-ar\" xScale=\"1.0001\" xOffset=\"129\" yOffset=\"30\"/>\n    <component base=\"_dot-ar\" xScale=\"1.0001\" xOffset=\"-121\" yOffset=\"30\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_twodotshorizontal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_twodotshorizontal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"1.001\" xOffset=\"129\" yOffset=\"20\"/>\n    <component base=\"_dot-ar\" xScale=\"1.001\" xOffset=\"-121\" yOffset=\"20\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_twodotstah.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_twodotstah\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"767\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"628\" y=\"1387\" name=\"top\"/>\n  <outline>\n    <component base=\"_tahabove\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"99\" yOffset=\"402\"/>\n    <component base=\"_twodotshorizontal-ar\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotshorizontal-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_twodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_twodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" xScale=\"1.001\" xOffset=\"2\" yOffset=\"1229\"/>\n    <component base=\"dotbelow-ar\" xScale=\"1.001\" xOffset=\"-1\" yOffset=\"984\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_vabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_vabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"550\" y=\"600\" type=\"line\"/>\n      <point x=\"657\" y=\"600\" type=\"line\"/>\n      <point x=\"792\" y=\"896\" type=\"line\"/>\n      <point x=\"710\" y=\"911\" type=\"line\"/>\n      <point x=\"590\" y=\"631\" type=\"line\"/>\n      <point x=\"641\" y=\"631\" type=\"line\"/>\n      <point x=\"624\" y=\"677\" type=\"line\"/>\n      <point x=\"596\" y=\"677\" type=\"line\"/>\n      <point x=\"490\" y=\"911\" type=\"line\"/>\n      <point x=\"408\" y=\"891\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_vbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_vbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-476\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_vabove\" yOffset=\"-995\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_vabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_vinvertedbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_vinvertedbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-426\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_vabove\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"523\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_vabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_yehR_ohingya-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_yehRohingya-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"851\" y=\"-26\" name=\"bottom.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"-293\" type=\"curve\"/>\n      <point x=\"229\" y=\"-273\" type=\"line\"/>\n      <point x=\"211\" y=\"-214\"/>\n      <point x=\"197\" y=\"-172\"/>\n      <point x=\"197\" y=\"-131\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"197\" y=\"-53\"/>\n      <point x=\"229\" y=\"-16\"/>\n      <point x=\"510\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"5\"/>\n      <point x=\"824\" y=\"16\"/>\n      <point x=\"926\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"138\"/>\n      <point x=\"1128\" y=\"246\"/>\n      <point x=\"1128\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"633\"/>\n      <point x=\"1010\" y=\"751\"/>\n      <point x=\"843\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"751\"/>\n      <point x=\"543\" y=\"598\"/>\n      <point x=\"543\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"122\"/>\n      <point x=\"778\" y=\"-3\"/>\n      <point x=\"1185\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-3\"/>\n      <point x=\"1290\" y=\"6\"/>\n      <point x=\"1290\" y=\"50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1290\" y=\"84\"/>\n      <point x=\"1277\" y=\"91\"/>\n      <point x=\"1202\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"91\"/>\n      <point x=\"635\" y=\"224\"/>\n      <point x=\"635\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"635\" y=\"560\"/>\n      <point x=\"710\" y=\"659\"/>\n      <point x=\"841\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"659\"/>\n      <point x=\"1036\" y=\"554\"/>\n      <point x=\"1036\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"287\"/>\n      <point x=\"981\" y=\"203\"/>\n      <point x=\"901\" y=\"154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"107\"/>\n      <point x=\"721\" y=\"99\"/>\n      <point x=\"529\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"203\" y=\"78\"/>\n      <point x=\"105\" y=\"24\"/>\n      <point x=\"105\" y=\"-107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"105\" y=\"-169\"/>\n      <point x=\"123\" y=\"-235\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/_yehR_ohingya-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_yehRohingya-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"851\" y=\"-26\" name=\"bottom.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"510\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"-3\"/>\n      <point x=\"810\" y=\"10\"/>\n      <point x=\"926\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"138\"/>\n      <point x=\"1128\" y=\"246\"/>\n      <point x=\"1128\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"633\"/>\n      <point x=\"1010\" y=\"751\"/>\n      <point x=\"843\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"751\"/>\n      <point x=\"543\" y=\"598\"/>\n      <point x=\"543\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"122\"/>\n      <point x=\"778\" y=\"-3\"/>\n      <point x=\"1185\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-3\"/>\n      <point x=\"1300\" y=\"8\"/>\n      <point x=\"1300\" y=\"55\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1300\" y=\"84\"/>\n      <point x=\"1277\" y=\"91\"/>\n      <point x=\"1202\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"91\"/>\n      <point x=\"635\" y=\"224\"/>\n      <point x=\"635\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"635\" y=\"560\"/>\n      <point x=\"710\" y=\"659\"/>\n      <point x=\"841\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"659\"/>\n      <point x=\"1036\" y=\"554\"/>\n      <point x=\"1036\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"287\"/>\n      <point x=\"981\" y=\"203\"/>\n      <point x=\"901\" y=\"154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"107\"/>\n      <point x=\"691\" y=\"91\"/>\n      <point x=\"529\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"329\" y=\"91\"/>\n      <point x=\"227\" y=\"107\"/>\n      <point x=\"74\" y=\"129\" type=\"curve\"/>\n      <point x=\"67\" y=\"37\" type=\"line\"/>\n      <point x=\"204\" y=\"10\"/>\n      <point x=\"312\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"a-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0430\"/>\n  <outline>\n    <component base=\"a\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/a.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"a\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0061\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1057\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"878\" y=\"-10\" type=\"line\"/>\n      <point x=\"1134\" y=\"0\" type=\"line\"/>\n      <point x=\"1134\" y=\"63\" type=\"line\"/>\n      <point x=\"951\" y=\"76\" type=\"line\"/>\n      <point x=\"951\" y=\"597\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"921\"/>\n      <point x=\"804\" y=\"1062\"/>\n      <point x=\"460\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"270\" y=\"1070\" type=\"line\"/>\n      <point x=\"250\" y=\"978\" type=\"line\"/>\n      <point x=\"460\" y=\"975\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"971\"/>\n      <point x=\"855\" y=\"864\"/>\n      <point x=\"855\" y=\"610\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"383\" type=\"line\"/>\n      <point x=\"861\" y=\"408\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"448\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"-20\"/>\n      <point x=\"842\" y=\"94\"/>\n      <point x=\"859\" y=\"244\" type=\"curve\"/>\n      <point x=\"842\" y=\"224\" type=\"line\"/>\n      <point x=\"930\" y=\"224\" type=\"line\"/>\n      <point x=\"855\" y=\"496\" type=\"line\"/>\n      <point x=\"855\" y=\"371\" type=\"line\"/>\n      <point x=\"855\" y=\"201\"/>\n      <point x=\"680\" y=\"72\"/>\n      <point x=\"448\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"301\" y=\"72\"/>\n      <point x=\"216\" y=\"140\"/>\n      <point x=\"216\" y=\"261\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"420\"/>\n      <point x=\"334\" y=\"499\"/>\n      <point x=\"573\" y=\"499\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"499\"/>\n      <point x=\"842\" y=\"499\"/>\n      <point x=\"927\" y=\"466\" type=\"curve\"/>\n      <point x=\"936\" y=\"547\" type=\"line\"/>\n      <point x=\"866\" y=\"574\"/>\n      <point x=\"727\" y=\"586\"/>\n      <point x=\"578\" y=\"586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"586\"/>\n      <point x=\"120\" y=\"476\"/>\n      <point x=\"120\" y=\"254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"120\" y=\"80\"/>\n      <point x=\"239\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/aacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"acutecomb\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/abreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0103\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/abreveacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abreveacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAF\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n    <component base=\"acutecomb\" xOffset=\"70\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/abrevedotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevedotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB7\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/abrevegrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevegrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n    <component base=\"gravecomb\" xOffset=\"-89\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/abrevehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n    <component base=\"hookabovecomb\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/abrevetilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevetilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n    <component base=\"tildecomb\" xOffset=\"-13\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01CE\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"caroncomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E2\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n    <component base=\"acutecomb\" xOffset=\"427\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAD\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA7\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n    <component base=\"gravecomb\" xOffset=\"268\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA9\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n    <component base=\"hookabovecomb\" xOffset=\"357\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAB\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n    <component base=\"tildecomb\" xOffset=\"-13\" yOffset=\"520\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acknowledgeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acknowledgeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2406\"/>\n  <outline>\n    <component base=\"A.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"K.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>A.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>K.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acknowledgeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acknowledgeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"389\" y=\"185\" type=\"line\"/>\n      <point x=\"516\" y=\"185\" type=\"line\"/>\n      <point x=\"1062\" y=\"1236\" type=\"line\"/>\n      <point x=\"965\" y=\"1236\" type=\"line\"/>\n      <point x=\"459\" y=\"285\" type=\"line\"/>\n      <point x=\"441\" y=\"285\" type=\"line\"/>\n      <point x=\"227\" y=\"786\" type=\"line\"/>\n      <point x=\"130\" y=\"786\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B4\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acutecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.case\" format=\"2\">\n  <anchor x=\"539\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"579\" y=\"1420\" name=\"_top_viet\"/>\n  <anchor x=\"539\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"483\" y=\"1580\" type=\"line\"/>\n      <point x=\"595\" y=\"1580\" type=\"line\"/>\n      <point x=\"830\" y=\"1830\" type=\"line\"/>\n      <point x=\"708\" y=\"1830\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acutecomb.case.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.case.loclPLK\" format=\"2\">\n  <anchor x=\"570\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"570\" y=\"1800\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"534\" y=\"1540\" type=\"line\"/>\n      <point x=\"631\" y=\"1540\" type=\"line\"/>\n      <point x=\"711\" y=\"1840\" type=\"line\"/>\n      <point x=\"614\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acutecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb\" format=\"2\">\n  <unicode hex=\"0301\"/>\n  <anchor x=\"510\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"510\" y=\"1060\" name=\"_top_viet\"/>\n  <anchor x=\"510\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"454\" y=\"1248\" type=\"line\"/>\n      <point x=\"555\" y=\"1248\" type=\"line\"/>\n      <point x=\"805\" y=\"1628\" type=\"line\"/>\n      <point x=\"694\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acutecomb.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.loclPLK\" format=\"2\">\n  <anchor x=\"550\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"550\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"1248\" type=\"line\"/>\n      <point x=\"602\" y=\"1248\" type=\"line\"/>\n      <point x=\"698\" y=\"1648\" type=\"line\"/>\n      <point x=\"598\" y=\"1648\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/acutetonecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutetonecomb\" format=\"2\">\n  <unicode hex=\"0341\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/adieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"adieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E4\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-18\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/adotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"adotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ae-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ae-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ae-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ae-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D5\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ae.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ae\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E6\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"317\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"-20\"/>\n      <point x=\"577\" y=\"95\"/>\n      <point x=\"597\" y=\"294\" type=\"curve\"/>\n      <point x=\"581\" y=\"274\" type=\"line\"/>\n      <point x=\"654\" y=\"274\" type=\"line\"/>\n      <point x=\"539\" y=\"496\" type=\"line\"/>\n      <point x=\"539\" y=\"371\" type=\"line\"/>\n      <point x=\"539\" y=\"191\"/>\n      <point x=\"451\" y=\"72\"/>\n      <point x=\"317\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"72\"/>\n      <point x=\"130\" y=\"143\"/>\n      <point x=\"130\" y=\"271\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"130\" y=\"430\"/>\n      <point x=\"209\" y=\"509\"/>\n      <point x=\"370\" y=\"509\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"452\" y=\"509\"/>\n      <point x=\"553\" y=\"509\"/>\n      <point x=\"611\" y=\"476\" type=\"curve\"/>\n      <point x=\"620\" y=\"562\" type=\"line\"/>\n      <point x=\"572\" y=\"589\"/>\n      <point x=\"477\" y=\"601\"/>\n      <point x=\"375\" y=\"601\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"147\" y=\"601\"/>\n      <point x=\"34\" y=\"491\"/>\n      <point x=\"34\" y=\"271\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"34\" y=\"86\"/>\n      <point x=\"137\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"539\" y=\"310\" type=\"line\"/>\n      <point x=\"607\" y=\"310\" type=\"line\"/>\n      <point x=\"607\" y=\"634\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"607\" y=\"901\"/>\n      <point x=\"471\" y=\"1057\"/>\n      <point x=\"234\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"1070\" type=\"line\"/>\n      <point x=\"144\" y=\"978\" type=\"line\"/>\n      <point x=\"214\" y=\"975\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"421\" y=\"966\"/>\n      <point x=\"539\" y=\"855\"/>\n      <point x=\"539\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"392\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"943\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"995\" y=\"-20\"/>\n      <point x=\"1049\" y=\"-10\"/>\n      <point x=\"1088\" y=\"5\" type=\"curve\"/>\n      <point x=\"1073\" y=\"97\" type=\"line\"/>\n      <point x=\"1039\" y=\"81\"/>\n      <point x=\"999\" y=\"72\"/>\n      <point x=\"967\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"72\"/>\n      <point x=\"636\" y=\"245\"/>\n      <point x=\"636\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"825\"/>\n      <point x=\"721\" y=\"988\"/>\n      <point x=\"867\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"985\" y=\"988\"/>\n      <point x=\"1044\" y=\"845\"/>\n      <point x=\"1044\" y=\"558\" type=\"curve\"/>\n      <point x=\"613\" y=\"558\" type=\"line\"/>\n      <point x=\"613\" y=\"468\" type=\"line\"/>\n      <point x=\"1134\" y=\"468\" type=\"line\"/>\n      <point x=\"1138\" y=\"494\"/>\n      <point x=\"1140\" y=\"527\"/>\n      <point x=\"1140\" y=\"556\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1140\" y=\"906\"/>\n      <point x=\"1049\" y=\"1080\"/>\n      <point x=\"865\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"1080\"/>\n      <point x=\"570\" y=\"885\"/>\n      <point x=\"570\" y=\"544\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"176\"/>\n      <point x=\"706\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/aeacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aeacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FD\"/>\n  <outline>\n    <component base=\"ae\"/>\n    <component base=\"acutecomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/afghani-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"afghani-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060B\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n    <component base=\"alefbelow-ar\" xOffset=\"3\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/agrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"agrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E0\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"gravecomb\" xOffset=\"-89\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ahookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ahookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ain-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ain-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"611\" y=\"-645\" name=\"bottom\"/>\n  <anchor x=\"612\" y=\"-606\" name=\"bottom.dot\"/>\n  <anchor x=\"633\" y=\"-214\" name=\"center\"/>\n  <anchor x=\"589\" y=\"1085\" name=\"top\"/>\n  <anchor x=\"590\" y=\"795\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"-609\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"-609\"/>\n      <point x=\"945\" y=\"-585\"/>\n      <point x=\"1054\" y=\"-555\" type=\"curve\"/>\n      <point x=\"1056\" y=\"-470\" type=\"line\"/>\n      <point x=\"940\" y=\"-493\"/>\n      <point x=\"791\" y=\"-515\"/>\n      <point x=\"648\" y=\"-515\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"345\" y=\"-515\"/>\n      <point x=\"216\" y=\"-469\"/>\n      <point x=\"216\" y=\"-318\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"-152\"/>\n      <point x=\"433\" y=\"-38\"/>\n      <point x=\"727\" y=\"160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"281\"/>\n      <point x=\"991\" y=\"356\"/>\n      <point x=\"991\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"627\"/>\n      <point x=\"846\" y=\"686\"/>\n      <point x=\"609\" y=\"686\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"686\"/>\n      <point x=\"301\" y=\"652\"/>\n      <point x=\"184\" y=\"603\" type=\"curve\"/>\n      <point x=\"173\" y=\"477\" type=\"line\"/>\n      <point x=\"297\" y=\"346\"/>\n      <point x=\"405\" y=\"210\"/>\n      <point x=\"522\" y=\"115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"18\"/>\n      <point x=\"685\" y=\"-3\"/>\n      <point x=\"1181\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1269\" y=\"-3\"/>\n      <point x=\"1285\" y=\"16\"/>\n      <point x=\"1285\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1285\" y=\"83\"/>\n      <point x=\"1262\" y=\"91\"/>\n      <point x=\"1197\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"91\"/>\n      <point x=\"680\" y=\"104\"/>\n      <point x=\"605\" y=\"161\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"477\" y=\"258\"/>\n      <point x=\"396\" y=\"360\"/>\n      <point x=\"233\" y=\"541\" type=\"curve\"/>\n      <point x=\"227\" y=\"525\" type=\"line\"/>\n      <point x=\"293\" y=\"550\"/>\n      <point x=\"430\" y=\"592\"/>\n      <point x=\"618\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"592\"/>\n      <point x=\"899\" y=\"540\"/>\n      <point x=\"899\" y=\"474\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"387\"/>\n      <point x=\"818\" y=\"328\"/>\n      <point x=\"664\" y=\"223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"6\"/>\n      <point x=\"124\" y=\"-100\"/>\n      <point x=\"124\" y=\"-316\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"-516\"/>\n      <point x=\"250\" y=\"-609\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ain-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ain-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0639\"/>\n  <anchor x=\"591\" y=\"-645\" name=\"bottom\"/>\n  <anchor x=\"592\" y=\"-606\" name=\"bottom.dot\"/>\n  <anchor x=\"658\" y=\"-116\" name=\"center\"/>\n  <anchor x=\"506\" y=\"1248\" name=\"top\"/>\n  <anchor x=\"507\" y=\"998\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"-609\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"-609\"/>\n      <point x=\"975\" y=\"-582\"/>\n      <point x=\"1104\" y=\"-543\" type=\"curve\"/>\n      <point x=\"1106\" y=\"-459\" type=\"line\"/>\n      <point x=\"972\" y=\"-488\"/>\n      <point x=\"821\" y=\"-515\"/>\n      <point x=\"648\" y=\"-515\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"-515\"/>\n      <point x=\"166\" y=\"-430\"/>\n      <point x=\"166\" y=\"-219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"11\"/>\n      <point x=\"294\" y=\"155\"/>\n      <point x=\"903\" y=\"299\" type=\"curve\"/>\n      <point x=\"891\" y=\"387\" type=\"line\"/>\n      <point x=\"745\" y=\"353\"/>\n      <point x=\"629\" y=\"328\"/>\n      <point x=\"536\" y=\"328\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"328\"/>\n      <point x=\"248\" y=\"411\"/>\n      <point x=\"248\" y=\"571\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"742\"/>\n      <point x=\"344\" y=\"830\"/>\n      <point x=\"551\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"634\" y=\"830\"/>\n      <point x=\"716\" y=\"812\"/>\n      <point x=\"795\" y=\"790\" type=\"curve\"/>\n      <point x=\"803\" y=\"872\" type=\"line\"/>\n      <point x=\"732\" y=\"902\"/>\n      <point x=\"626\" y=\"924\"/>\n      <point x=\"533\" y=\"924\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"924\"/>\n      <point x=\"156\" y=\"797\"/>\n      <point x=\"156\" y=\"578\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"156\" y=\"412\"/>\n      <point x=\"248\" y=\"289\"/>\n      <point x=\"409\" y=\"258\" type=\"curve\"/>\n      <point x=\"409\" y=\"216\" type=\"line\"/>\n      <point x=\"445\" y=\"229\" type=\"line\"/>\n      <point x=\"454\" y=\"264\" type=\"line\"/>\n      <point x=\"215\" y=\"151\"/>\n      <point x=\"74\" y=\"18\"/>\n      <point x=\"74\" y=\"-216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"74\" y=\"-536\"/>\n      <point x=\"298\" y=\"-609\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ain-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ain-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"649\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"649\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"640\" y=\"1085\" name=\"top\"/>\n  <anchor x=\"641\" y=\"815\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-17\" y=\"-3\" type=\"line\"/>\n      <point x=\"327\" y=\"-3\"/>\n      <point x=\"707\" y=\"-8\"/>\n      <point x=\"1044\" y=\"90\" type=\"curve\"/>\n      <point x=\"1034\" y=\"176\" type=\"line\"/>\n      <point x=\"888\" y=\"141\"/>\n      <point x=\"771\" y=\"119\"/>\n      <point x=\"676\" y=\"119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"119\"/>\n      <point x=\"389\" y=\"225\"/>\n      <point x=\"389\" y=\"369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"389\" y=\"535\"/>\n      <point x=\"490\" y=\"621\"/>\n      <point x=\"692\" y=\"621\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"621\"/>\n      <point x=\"857\" y=\"603\"/>\n      <point x=\"936\" y=\"581\" type=\"curve\"/>\n      <point x=\"944\" y=\"663\" type=\"line\"/>\n      <point x=\"873\" y=\"692\"/>\n      <point x=\"767\" y=\"715\"/>\n      <point x=\"674\" y=\"715\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"715\"/>\n      <point x=\"297\" y=\"602\"/>\n      <point x=\"297\" y=\"371\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"200\"/>\n      <point x=\"382\" y=\"132\"/>\n      <point x=\"443\" y=\"103\" type=\"curve\"/>\n      <point x=\"443\" y=\"59\" type=\"line\"/>\n      <point x=\"519\" y=\"28\" type=\"line\"/>\n      <point x=\"518\" y=\"96\" type=\"line\"/>\n      <point x=\"378\" y=\"89\"/>\n      <point x=\"228\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ain-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ain-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"611\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"611\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"589\" y=\"1085\" name=\"top\"/>\n  <anchor x=\"590\" y=\"795\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-13\" y=\"-3\" type=\"line\"/>\n      <point x=\"476\" y=\"-4\"/>\n      <point x=\"991\" y=\"169\"/>\n      <point x=\"991\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"627\"/>\n      <point x=\"836\" y=\"686\"/>\n      <point x=\"609\" y=\"686\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"686\"/>\n      <point x=\"301\" y=\"652\"/>\n      <point x=\"184\" y=\"603\" type=\"curve\"/>\n      <point x=\"173\" y=\"477\" type=\"line\"/>\n      <point x=\"297\" y=\"346\"/>\n      <point x=\"415\" y=\"220\"/>\n      <point x=\"532\" y=\"125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"28\"/>\n      <point x=\"755\" y=\"-3\"/>\n      <point x=\"1181\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1269\" y=\"-3\"/>\n      <point x=\"1285\" y=\"16\"/>\n      <point x=\"1285\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1285\" y=\"83\"/>\n      <point x=\"1262\" y=\"91\"/>\n      <point x=\"1197\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"785\" y=\"91\"/>\n      <point x=\"690\" y=\"114\"/>\n      <point x=\"615\" y=\"171\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"268\"/>\n      <point x=\"396\" y=\"360\"/>\n      <point x=\"233\" y=\"541\" type=\"curve\"/>\n      <point x=\"227\" y=\"525\" type=\"line\"/>\n      <point x=\"293\" y=\"550\"/>\n      <point x=\"430\" y=\"592\"/>\n      <point x=\"618\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"592\"/>\n      <point x=\"899\" y=\"540\"/>\n      <point x=\"899\" y=\"474\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"227\"/>\n      <point x=\"435\" y=\"92\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"417\" y=\"519\" angle=\"0\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"253\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A0\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-93\" yOffset=\"456\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"41\" yOffset=\"273\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"253\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedotsdownabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedotsdownabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"591\" y=\"1434\" name=\"top\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"threedotsdownabove-ar\" xScale=\"1.001\" xOffset=\"-11\" yOffset=\"263\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedotsdownabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedotsdownabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075E\"/>\n  <anchor x=\"511\" y=\"1624\" name=\"top\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"threedotsdownabove-ar\" xScale=\"1.001\" xOffset=\"-94\" yOffset=\"466\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedotsdownabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedotsdownabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"651\" y=\"1444\" name=\"top\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"threedotsdownabove-ar\" xScale=\"1.001\" xOffset=\"40\" yOffset=\"283\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedotsdownabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainThreedotsdownabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"591\" y=\"1434\" name=\"top\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"threedotsdownabove-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"14\" yOffset=\"284\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"263\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075D\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-93\" yOffset=\"466\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"41\" yOffset=\"283\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"263\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotsverticalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotsverticalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-10\" yOffset=\"233\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075F\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-93\" yOffset=\"436\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotsverticalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotsverticalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"41\" yOffset=\"253\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotsverticalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ainTwodotsverticalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-10\" yOffset=\"233\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"318\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"318\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"270\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"604\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"-3\"/>\n      <point x=\"641\" y=\"19\"/>\n      <point x=\"641\" y=\"48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"79\"/>\n      <point x=\"631\" y=\"91\"/>\n      <point x=\"616\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"91\"/>\n      <point x=\"325\" y=\"103\"/>\n      <point x=\"323\" y=\"341\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"315\" y=\"1420\" type=\"line\"/>\n      <point x=\"223\" y=\"1420\" type=\"line\"/>\n      <point x=\"231\" y=\"306\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"49\"/>\n      <point x=\"300\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"462\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"462\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"414\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1221\" y=\"-3\"/>\n      <point x=\"1235\" y=\"15\"/>\n      <point x=\"1235\" y=\"48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1235\" y=\"78\"/>\n      <point x=\"1218\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"91\"/>\n      <point x=\"839\" y=\"90\"/>\n      <point x=\"705\" y=\"93\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"97\"/>\n      <point x=\"469\" y=\"131\"/>\n      <point x=\"467\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"1420\" type=\"line\"/>\n      <point x=\"367\" y=\"1420\" type=\"line\"/>\n      <point x=\"375\" y=\"346\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"67\"/>\n      <point x=\"470\" y=\"5\"/>\n      <point x=\"680\" y=\"-1\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"-5\"/>\n      <point x=\"1012\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"293\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"293\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"274\" y=\"1310\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"795\" y=\"182\" type=\"curve\"/>\n      <point x=\"870\" y=\"242\" type=\"line\"/>\n      <point x=\"660\" y=\"581\"/>\n      <point x=\"407\" y=\"936\"/>\n      <point x=\"173\" y=\"1245\" type=\"curve\"/>\n      <point x=\"95\" y=\"1177\" type=\"line\"/>\n      <point x=\"334\" y=\"862\"/>\n      <point x=\"578\" y=\"520\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.short.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.short.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"319\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"273\" y=\"1204\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"618\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"649\" y=\"-3\"/>\n      <point x=\"665\" y=\"14\"/>\n      <point x=\"665\" y=\"51\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"79\"/>\n      <point x=\"656\" y=\"91\"/>\n      <point x=\"630\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"91\"/>\n      <point x=\"325\" y=\"103\"/>\n      <point x=\"323\" y=\"341\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"317\" y=\"1190\" type=\"line\"/>\n      <point x=\"225\" y=\"1190\" type=\"line\"/>\n      <point x=\"231\" y=\"306\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"49\"/>\n      <point x=\"314\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.short.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.short\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"462\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"462\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"416\" y=\"1204\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1219\" y=\"-3\"/>\n      <point x=\"1235\" y=\"17\"/>\n      <point x=\"1235\" y=\"48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1235\" y=\"76\"/>\n      <point x=\"1219\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"91\"/>\n      <point x=\"839\" y=\"90\"/>\n      <point x=\"705\" y=\"93\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"97\"/>\n      <point x=\"469\" y=\"131\"/>\n      <point x=\"467\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"1190\" type=\"line\"/>\n      <point x=\"369\" y=\"1190\" type=\"line\"/>\n      <point x=\"375\" y=\"346\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"67\"/>\n      <point x=\"470\" y=\"5\"/>\n      <point x=\"680\" y=\"-1\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"-5\"/>\n      <point x=\"1012\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.short.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.fina.short.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"274\" y=\"1223\" name=\"top\"/>\n  <anchor x=\"274\" y=\"1159\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"795\" y=\"182\" type=\"curve\"/>\n      <point x=\"870\" y=\"242\" type=\"line\"/>\n      <point x=\"660\" y=\"551\"/>\n      <point x=\"437\" y=\"846\"/>\n      <point x=\"173\" y=\"1155\" type=\"curve\"/>\n      <point x=\"98\" y=\"1080\" type=\"line\"/>\n      <point x=\"367\" y=\"765\"/>\n      <point x=\"578\" y=\"490\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0627\"/>\n  <anchor x=\"612\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"612\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"594\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"562\" y=\"0\" type=\"line\"/>\n      <point x=\"654\" y=\"0\" type=\"line\"/>\n      <point x=\"633\" y=\"1420\" type=\"line\"/>\n      <point x=\"541\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.short.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-ar.short\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"610\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"610\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"588\" y=\"1204\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"562\" y=\"0\" type=\"line\"/>\n      <point x=\"654\" y=\"0\" type=\"line\"/>\n      <point x=\"633\" y=\"1190\" type=\"line\"/>\n      <point x=\"541\" y=\"1190\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alef-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D0\"/>\n  <guideline x=\"982\" y=\"625\" angle=\"90\"/>\n  <guideline x=\"998\" y=\"315\" angle=\"90\"/>\n  <anchor x=\"584\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"443\" y=\"331\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"929\" y=\"0\" type=\"line\"/>\n      <point x=\"1047\" y=\"0\" type=\"line\"/>\n      <point x=\"224\" y=\"1200\" type=\"line\"/>\n      <point x=\"108\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"147\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"99\" type=\"line\"/>\n      <point x=\"147\" y=\"99\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"136\" y=\"0\" type=\"curve\"/>\n      <point x=\"234\" y=\"0\" type=\"line\"/>\n      <point x=\"234\" y=\"43\"/>\n      <point x=\"234\" y=\"90\"/>\n      <point x=\"234\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"234\" y=\"550\"/>\n      <point x=\"276\" y=\"803\"/>\n      <point x=\"439\" y=\"817\" type=\"curve\"/>\n      <point x=\"413\" y=\"875\" type=\"line\"/>\n      <point x=\"177\" y=\"853\"/>\n      <point x=\"136\" y=\"541\"/>\n      <point x=\"136\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"88\"/>\n      <point x=\"136\" y=\"41\"/>\n    </contour>\n    <contour>\n      <point x=\"655\" y=\"513\" type=\"line\"/>\n      <point x=\"784\" y=\"513\"/>\n      <point x=\"978\" y=\"588\"/>\n      <point x=\"997\" y=\"907\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"991\"/>\n      <point x=\"1008\" y=\"1094\"/>\n      <point x=\"1008\" y=\"1200\" type=\"curve\"/>\n      <point x=\"910\" y=\"1200\" type=\"line\"/>\n      <point x=\"910\" y=\"1094\"/>\n      <point x=\"904\" y=\"975\"/>\n      <point x=\"896\" y=\"869\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"687\"/>\n      <point x=\"779\" y=\"582\"/>\n      <point x=\"625\" y=\"582\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"731\" y=\"1101\" type=\"line\"/>\n      <point x=\"998\" y=\"1101\" type=\"line\"/>\n      <point x=\"998\" y=\"1200\" type=\"line\"/>\n      <point x=\"731\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefF_athatan-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefFathatan-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FD3C\"/>\n  <outline>\n    <component base=\"alef-ar.fina\"/>\n    <component base=\"fathatan-ar\" xOffset=\"309\" yOffset=\"-252\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fathatan-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefF_athatan-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefFathatan-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"332\" y=\"1681\" name=\"top\"/>\n  <outline>\n    <component base=\"fathatan-ar\" xOffset=\"-260\" yOffset=\"-20\"/>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefF_athatan-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefFathatan-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FD3D\"/>\n  <outline>\n    <component base=\"alef-ar\"/>\n    <component base=\"fathatan-ar\" xOffset=\"439\" yOffset=\"-252\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fathatan-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzaabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzaabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"282\" y=\"1721\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-341\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"462\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-204\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzaabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzaabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"262\" y=\"1674\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-346\" yOffset=\"55\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0623\"/>\n  <anchor x=\"590\" y=\"1721\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-32\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzabelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzabelow-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"351\" y=\"-491\" name=\"bottom\"/>\n  <anchor x=\"270\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.alt\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-284\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzabelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzabelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"462\" y=\"-491\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alef-ar.fina\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-143\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzabelow-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzabelow-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"321\" y=\"-491\" name=\"bottom\"/>\n  <anchor x=\"274\" y=\"1310\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.rlig\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-312\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.rlig</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefHamzabelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0625\"/>\n  <anchor x=\"626\" y=\"-493\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alef-ar\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"7\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_adda-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMadda-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"293\" y=\"1541\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n    <component base=\"madda-ar\" xOffset=\"-324\" yOffset=\"81\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>madda-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_adda-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMadda-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"madda-ar\" xOffset=\"-187\" yOffset=\"81\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_adda-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMadda-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"293\" y=\"1521\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n    <component base=\"madda-ar\" xOffset=\"-329\" yOffset=\"36\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_adda-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMadda-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0622\"/>\n  <anchor x=\"588\" y=\"1546\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"madda-ar\" xOffset=\"-15\" yOffset=\"81\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"517\" y=\"-458\" name=\"bottom\"/>\n  <anchor x=\"517\" y=\"-381\" name=\"bottom.dot\"/>\n  <anchor x=\"411\" y=\"476\" name=\"top\"/>\n  <anchor x=\"154\" y=\"270\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"527\" y=\"-400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"-400\"/>\n      <point x=\"1117\" y=\"-264\"/>\n      <point x=\"1117\" y=\"-71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"40\"/>\n      <point x=\"1012\" y=\"86\"/>\n      <point x=\"746\" y=\"116\" type=\"curve\"/>\n      <point x=\"734\" y=\"22\" type=\"line\"/>\n      <point x=\"950\" y=\"12\"/>\n      <point x=\"1029\" y=\"-18\"/>\n      <point x=\"1029\" y=\"-84\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"-185\"/>\n      <point x=\"873\" y=\"-306\"/>\n      <point x=\"535\" y=\"-306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"229\" y=\"-306\"/>\n      <point x=\"132\" y=\"-232\"/>\n      <point x=\"132\" y=\"-23\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"132\" y=\"56\"/>\n      <point x=\"144\" y=\"127\"/>\n      <point x=\"159\" y=\"204\" type=\"curve\"/>\n      <point x=\"75\" y=\"204\" type=\"line\"/>\n      <point x=\"51\" y=\"118\"/>\n      <point x=\"40\" y=\"35\"/>\n      <point x=\"40\" y=\"-50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"40\" y=\"-294\"/>\n      <point x=\"167\" y=\"-400\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"517\" y=\"-458\" name=\"bottom\"/>\n  <anchor x=\"517\" y=\"-361\" name=\"bottom.dot\"/>\n  <anchor x=\"411\" y=\"476\" name=\"top\"/>\n  <anchor x=\"154\" y=\"270\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"527\" y=\"-400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"-400\"/>\n      <point x=\"1117\" y=\"-264\"/>\n      <point x=\"1117\" y=\"-71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"-20\"/>\n      <point x=\"1092\" y=\"21\"/>\n      <point x=\"1056\" y=\"42\" type=\"curve\"/>\n      <point x=\"1053\" y=\"5\" type=\"line\"/>\n      <point x=\"1085\" y=\"-2\"/>\n      <point x=\"1136\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1263\" y=\"-3\"/>\n      <point x=\"1294\" y=\"6\"/>\n      <point x=\"1294\" y=\"50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1294\" y=\"84\"/>\n      <point x=\"1272\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1097\" y=\"91\"/>\n      <point x=\"940\" y=\"93\"/>\n      <point x=\"818\" y=\"101\" type=\"curve\"/>\n      <point x=\"803\" y=\"11\" type=\"line\"/>\n      <point x=\"999\" y=\"1\"/>\n      <point x=\"1029\" y=\"-18\"/>\n      <point x=\"1029\" y=\"-74\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"-185\"/>\n      <point x=\"873\" y=\"-306\"/>\n      <point x=\"535\" y=\"-306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"229\" y=\"-306\"/>\n      <point x=\"132\" y=\"-232\"/>\n      <point x=\"132\" y=\"-23\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"132\" y=\"56\"/>\n      <point x=\"144\" y=\"127\"/>\n      <point x=\"159\" y=\"204\" type=\"curve\"/>\n      <point x=\"75\" y=\"204\" type=\"line\"/>\n      <point x=\"51\" y=\"118\"/>\n      <point x=\"40\" y=\"35\"/>\n      <point x=\"40\" y=\"-50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"40\" y=\"-294\"/>\n      <point x=\"167\" y=\"-400\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0649\"/>\n  <anchor x=\"585\" y=\"-399\" name=\"bottom\"/>\n  <anchor x=\"585\" y=\"-286\" name=\"bottom.dot\"/>\n  <anchor x=\"291\" y=\"656\" name=\"top\"/>\n  <anchor x=\"184\" y=\"440\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"561\" y=\"-326\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"-326\"/>\n      <point x=\"1108\" y=\"-188\"/>\n      <point x=\"1108\" y=\"5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1108\" y=\"115\"/>\n      <point x=\"1066\" y=\"177\"/>\n      <point x=\"849\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"648\" y=\"275\"/>\n      <point x=\"621\" y=\"313\"/>\n      <point x=\"621\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"530\"/>\n      <point x=\"706\" y=\"687\"/>\n      <point x=\"920\" y=\"687\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"687\"/>\n      <point x=\"1052\" y=\"673\"/>\n      <point x=\"1109\" y=\"649\" type=\"curve\"/>\n      <point x=\"1127\" y=\"732\" type=\"line\"/>\n      <point x=\"1081\" y=\"758\"/>\n      <point x=\"1010\" y=\"781\"/>\n      <point x=\"926\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"781\"/>\n      <point x=\"529\" y=\"574\"/>\n      <point x=\"529\" y=\"387\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"249\"/>\n      <point x=\"599\" y=\"182\"/>\n      <point x=\"786\" y=\"143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"99\"/>\n      <point x=\"1016\" y=\"59\"/>\n      <point x=\"1016\" y=\"-12\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"-134\"/>\n      <point x=\"821\" y=\"-232\"/>\n      <point x=\"581\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"-232\"/>\n      <point x=\"146\" y=\"-126\"/>\n      <point x=\"146\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"146\" y=\"198\"/>\n      <point x=\"157\" y=\"267\"/>\n      <point x=\"180\" y=\"379\" type=\"curve\"/>\n      <point x=\"96\" y=\"379\" type=\"line\"/>\n      <point x=\"65\" y=\"270\"/>\n      <point x=\"54\" y=\"170\"/>\n      <point x=\"54\" y=\"67\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"54\" y=\"-225\"/>\n      <point x=\"220\" y=\"-326\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksura-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksuraAlefabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-210\" yOffset=\"-51\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alefMaksura-ar.fina.alt</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksuraAlefabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FC90\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-210\" yOffset=\"-51\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksuraA_lefabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefMaksuraAlefabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FC5D\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-330\" yOffset=\"129\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_hreeabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefThreeabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"137\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"three-persian.small01\" xOffset=\"-494\" yOffset=\"-84\"/>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_hreeabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefThreeabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"271\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-356\" yOffset=\"-84\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=alef-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_hreeabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefThreeabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"7\" y=\"1490\" name=\"top\"/>\n  <outline>\n    <component base=\"three-persian.small01\" xOffset=\"-600\" yOffset=\"-151\"/>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_hreeabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefThreeabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0774\"/>\n  <anchor x=\"610\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"461\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-166\" yOffset=\"-84\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_woabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefTwoabove-ar.fina.alt\" format=\"2\">\n  <guideline x=\"234\" y=\"578\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"89\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"two-persian.small01\" xOffset=\"-552\" yOffset=\"-83\"/>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_woabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefTwoabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"234\" y=\"578\" angle=\"0\"/>\n  <anchor x=\"221\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"two-persian.small01\" xOffset=\"-414\" yOffset=\"-83\"/>\n    <component base=\"alef-ar.fina.short\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=alef-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_woabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefTwoabove-ar.fina.rlig\" format=\"2\">\n  <guideline x=\"234\" y=\"578\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"-12\" y=\"1490\" name=\"top\"/>\n  <outline>\n    <component base=\"two-persian.small01\" xOffset=\"-651\" yOffset=\"-151\"/>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_woabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefTwoabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0773\"/>\n  <guideline x=\"248\" y=\"578\" angle=\"0\"/>\n  <anchor x=\"610\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"391\" y=\"1570\" name=\"top\"/>\n  <outline>\n    <component base=\"two-persian.small01\" xOffset=\"-239\" yOffset=\"-83\"/>\n    <component base=\"alef-ar.short\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_asla-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWasla-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"253\" y=\"1660\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n    <component base=\"wasla-ar\" xOffset=\"-372\" yOffset=\"78\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_asla-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWasla-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"wasla-ar\" xOffset=\"-235\" yOffset=\"78\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_asla-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWasla-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"223\" y=\"1610\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n    <component base=\"wasla-ar\" xOffset=\"-377\" yOffset=\"33\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_asla-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWasla-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0671\"/>\n  <anchor x=\"567\" y=\"1655\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"wasla-ar\" xOffset=\"-63\" yOffset=\"78\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzaabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzaabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"319\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"282\" y=\"1671\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.alt\" xOffset=\"6\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-341\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-204\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzaabove-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzaabove-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"292\" y=\"1674\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.short.rlig\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-346\" yOffset=\"55\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.short.rlig</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0672\"/>\n  <anchor x=\"590\" y=\"1721\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.short\"/>\n    <component base=\"wavyhamzaabove-ar\" xOffset=\"-32\" yOffset=\"100\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzabelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzabelow-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"291\" y=\"-491\" name=\"bottom\"/>\n  <anchor x=\"270\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.alt\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"-287\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzabelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzabelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alef-ar.fina\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"-143\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzabelow-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzabelow-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"271\" y=\"-491\" name=\"bottom\"/>\n  <anchor x=\"274\" y=\"1310\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina.rlig\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"-312\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alef-ar.fina.rlig</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefWavyhamzabelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0673\"/>\n  <anchor x=\"559\" y=\"-523\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alef-ar\"/>\n    <component base=\"wavyhamzabelow-ar\" xOffset=\"7\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>wavyhamzabelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefabove-ar\" format=\"2\">\n  <unicode hex=\"0670\"/>\n  <anchor x=\"621\" y=\"527\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"414\" name=\"_top.dot\"/>\n  <anchor x=\"573\" y=\"1025\" name=\"top\"/>\n  <outline>\n    <component base=\"_alefabove\" xOffset=\"-1\" yOffset=\"3\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alefabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefbelow-ar\" format=\"2\">\n  <unicode hex=\"0656\"/>\n  <anchor x=\"612\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"615\" y=\"0\" name=\"_bottom.dot\"/>\n  <anchor x=\"639\" y=\"-547\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_alefabove\" xOffset=\"29\" yOffset=\"-1081\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_alefabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefdagesh-hb.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefdagesh-hb.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"443\" y=\"331\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"443\" y=\"241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"241\"/>\n      <point x=\"534\" y=\"281\"/>\n      <point x=\"534\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"381\"/>\n      <point x=\"493\" y=\"422\"/>\n      <point x=\"443\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"422\"/>\n      <point x=\"352\" y=\"381\"/>\n      <point x=\"352\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"352\" y=\"281\"/>\n      <point x=\"393\" y=\"241\"/>\n    </contour>\n    <component base=\"alef-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB30\"/>\n  <outline>\n    <component base=\"alef-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-157\" yOffset=\"-213\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefpatah-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefpatah-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2E\"/>\n  <outline>\n    <component base=\"alef-hb\"/>\n    <component base=\"patah-hb\" xOffset=\"-15\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alefqamats-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alefqamats-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2F\"/>\n  <outline>\n    <component base=\"alef-hb\"/>\n    <component base=\"qamats-hb\" xOffset=\"-15\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/allah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"allah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FDF2\"/>\n  <anchor x=\"2292\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"1829\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"1280\" y=\"-141\" name=\"bottom_3\"/>\n  <anchor x=\"519\" y=\"-141\" name=\"bottom_4\"/>\n  <anchor x=\"2265\" y=\"1310\" name=\"top_1\"/>\n  <anchor x=\"1819\" y=\"1310\" name=\"top_2\"/>\n  <anchor x=\"1270\" y=\"1310\" name=\"top_3\"/>\n  <anchor x=\"652\" y=\"1250\" name=\"top_4\"/>\n  <outline>\n    <component base=\"lam_lam_heh-ar\" xOffset=\"-280\"/>\n    <component base=\"alef-ar.short\" xOffset=\"1680\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>lam_lam_heh-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alpha-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alpha-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0251\"/>\n  <outline>\n    <component base=\"alpha\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alpha.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alpha\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B1\"/>\n  <anchor x=\"610\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"538\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"-20\"/>\n      <point x=\"847\" y=\"91\"/>\n      <point x=\"872\" y=\"202\" type=\"curve\"/>\n      <point x=\"899\" y=\"202\" type=\"line\"/>\n      <point x=\"867\" y=\"580\" type=\"line\"/>\n      <point x=\"867\" y=\"464\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"202\"/>\n      <point x=\"760\" y=\"72\"/>\n      <point x=\"542\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"321\" y=\"72\"/>\n      <point x=\"206\" y=\"224\"/>\n      <point x=\"206\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"818\"/>\n      <point x=\"326\" y=\"988\"/>\n      <point x=\"540\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"988\"/>\n      <point x=\"867\" y=\"859\"/>\n      <point x=\"867\" y=\"596\" type=\"curve\"/>\n      <point x=\"929\" y=\"858\" type=\"line\"/>\n      <point x=\"858\" y=\"858\" type=\"line\"/>\n      <point x=\"827\" y=\"990\"/>\n      <point x=\"723\" y=\"1080\"/>\n      <point x=\"540\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"1080\"/>\n      <point x=\"110\" y=\"876\"/>\n      <point x=\"110\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"110\" y=\"172\"/>\n      <point x=\"266\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"890\" y=\"-10\" type=\"line\"/>\n      <point x=\"1144\" y=\"0\" type=\"line\"/>\n      <point x=\"1144\" y=\"62\" type=\"line\"/>\n      <point x=\"961\" y=\"77\" type=\"line\"/>\n      <point x=\"961\" y=\"430\" type=\"line\"/>\n      <point x=\"867\" y=\"554\" type=\"line\"/>\n      <point x=\"875\" y=\"364\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"867\" y=\"300\" type=\"line\"/>\n      <point x=\"961\" y=\"360\" type=\"line\"/>\n      <point x=\"961\" y=\"1060\" type=\"line\"/>\n      <point x=\"867\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/alphatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alphatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AC\"/>\n  <outline>\n    <component base=\"alpha\"/>\n    <component base=\"tonos\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/amacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"amacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0101\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"macroncomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ampersand.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0026\"/>\n  <outline>\n    <contour>\n      <point x=\"1067\" y=\"0\" type=\"line\"/>\n      <point x=\"1200\" y=\"0\" type=\"line\"/>\n      <point x=\"450\" y=\"750\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"366\" y=\"834\"/>\n      <point x=\"312\" y=\"936\"/>\n      <point x=\"312\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"312\" y=\"1237\"/>\n      <point x=\"423\" y=\"1350\"/>\n      <point x=\"614\" y=\"1350\" type=\"curve\"/>\n      <point x=\"610\" y=\"1440\" type=\"line\"/>\n      <point x=\"360\" y=\"1440\"/>\n      <point x=\"216\" y=\"1295\"/>\n      <point x=\"216\" y=\"1042\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"917\"/>\n      <point x=\"270\" y=\"801\"/>\n      <point x=\"355\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"462\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"-20\"/>\n      <point x=\"1068\" y=\"266\"/>\n      <point x=\"1068\" y=\"766\" type=\"curve\"/>\n      <point x=\"972\" y=\"766\" type=\"line\"/>\n      <point x=\"972\" y=\"324\"/>\n      <point x=\"794\" y=\"70\"/>\n      <point x=\"486\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"70\"/>\n      <point x=\"176\" y=\"173\"/>\n      <point x=\"176\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"176\" y=\"515\"/>\n      <point x=\"289\" y=\"632\"/>\n      <point x=\"486\" y=\"676\" type=\"curve\"/>\n      <point x=\"436\" y=\"738\" type=\"line\"/>\n      <point x=\"210\" y=\"702\"/>\n      <point x=\"80\" y=\"558\"/>\n      <point x=\"80\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"113\"/>\n      <point x=\"219\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"870\" y=\"1122\" type=\"curve\"/>\n      <point x=\"966\" y=\"1122\" type=\"line\"/>\n      <point x=\"966\" y=\"1324\"/>\n      <point x=\"836\" y=\"1440\"/>\n      <point x=\"610\" y=\"1440\" type=\"curve\"/>\n      <point x=\"614\" y=\"1350\" type=\"line\"/>\n      <point x=\"776\" y=\"1350\"/>\n      <point x=\"870\" y=\"1267\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ampersand_ampersand.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand_ampersand.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2048\" y=\"0\" type=\"line\"/>\n      <point x=\"2176\" y=\"0\" type=\"line\"/>\n      <point x=\"1583\" y=\"820\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1501\" y=\"932\"/>\n      <point x=\"1466\" y=\"1024\"/>\n      <point x=\"1466\" y=\"1132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1466\" y=\"1271\"/>\n      <point x=\"1553\" y=\"1350\"/>\n      <point x=\"1704\" y=\"1350\" type=\"curve\"/>\n      <point x=\"1700\" y=\"1440\" type=\"line\"/>\n      <point x=\"1490\" y=\"1440\"/>\n      <point x=\"1370\" y=\"1328\"/>\n      <point x=\"1370\" y=\"1132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1370\" y=\"1008\"/>\n      <point x=\"1405\" y=\"904\"/>\n      <point x=\"1489\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"546\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"-20\"/>\n      <point x=\"1064\" y=\"266\"/>\n      <point x=\"1064\" y=\"766\" type=\"curve\"/>\n      <point x=\"968\" y=\"766\" type=\"line\"/>\n      <point x=\"968\" y=\"324\"/>\n      <point x=\"823\" y=\"70\"/>\n      <point x=\"570\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"70\"/>\n      <point x=\"309\" y=\"158\"/>\n      <point x=\"309\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"480\"/>\n      <point x=\"430\" y=\"612\"/>\n      <point x=\"640\" y=\"646\" type=\"curve\"/>\n      <point x=\"590\" y=\"718\" type=\"line\"/>\n      <point x=\"350\" y=\"681\"/>\n      <point x=\"213\" y=\"534\"/>\n      <point x=\"213\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"213\" y=\"102\"/>\n      <point x=\"334\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"1032\" y=\"0\" type=\"line\"/>\n      <point x=\"1160\" y=\"0\" type=\"line\"/>\n      <point x=\"567\" y=\"820\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"932\"/>\n      <point x=\"450\" y=\"1024\"/>\n      <point x=\"450\" y=\"1132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"1271\"/>\n      <point x=\"537\" y=\"1350\"/>\n      <point x=\"688\" y=\"1350\" type=\"curve\"/>\n      <point x=\"684\" y=\"1440\" type=\"line\"/>\n      <point x=\"474\" y=\"1440\"/>\n      <point x=\"354\" y=\"1328\"/>\n      <point x=\"354\" y=\"1132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"1008\"/>\n      <point x=\"389\" y=\"904\"/>\n      <point x=\"473\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1562\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1891\" y=\"-20\"/>\n      <point x=\"2080\" y=\"266\"/>\n      <point x=\"2080\" y=\"766\" type=\"curve\"/>\n      <point x=\"1984\" y=\"766\" type=\"line\"/>\n      <point x=\"1984\" y=\"324\"/>\n      <point x=\"1839\" y=\"70\"/>\n      <point x=\"1586\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1421\" y=\"70\"/>\n      <point x=\"1325\" y=\"158\"/>\n      <point x=\"1325\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1325\" y=\"480\"/>\n      <point x=\"1446\" y=\"612\"/>\n      <point x=\"1656\" y=\"646\" type=\"curve\"/>\n      <point x=\"1606\" y=\"718\" type=\"line\"/>\n      <point x=\"1366\" y=\"681\"/>\n      <point x=\"1229\" y=\"534\"/>\n      <point x=\"1229\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1229\" y=\"102\"/>\n      <point x=\"1350\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"914\" y=\"1122\" type=\"curve\"/>\n      <point x=\"1010\" y=\"1122\" type=\"line\"/>\n      <point x=\"1010\" y=\"1324\"/>\n      <point x=\"891\" y=\"1440\"/>\n      <point x=\"684\" y=\"1440\" type=\"curve\"/>\n      <point x=\"688\" y=\"1350\" type=\"line\"/>\n      <point x=\"831\" y=\"1350\"/>\n      <point x=\"914\" y=\"1267\"/>\n    </contour>\n    <contour>\n      <point x=\"1930\" y=\"1122\" type=\"curve\"/>\n      <point x=\"2026\" y=\"1122\" type=\"line\"/>\n      <point x=\"2026\" y=\"1324\"/>\n      <point x=\"1907\" y=\"1440\"/>\n      <point x=\"1700\" y=\"1440\" type=\"curve\"/>\n      <point x=\"1704\" y=\"1350\" type=\"line\"/>\n      <point x=\"1847\" y=\"1350\"/>\n      <point x=\"1930\" y=\"1267\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/anoteleia.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"anoteleia\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0387\"/>\n  <outline>\n    <component base=\"period\" yOffset=\"900\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/aogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0105\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1016\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1043\" y=\"-424\"/>\n      <point x=\"1078\" y=\"-423\"/>\n      <point x=\"1110\" y=\"-415\" type=\"curve\"/>\n      <point x=\"1117\" y=\"-332\" type=\"line\"/>\n      <point x=\"1090\" y=\"-335\"/>\n      <point x=\"1063\" y=\"-337\"/>\n      <point x=\"1042\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"939\" y=\"-337\"/>\n      <point x=\"880\" y=\"-290\"/>\n      <point x=\"880\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"-87\"/>\n      <point x=\"973\" y=\"0\"/>\n      <point x=\"1134\" y=\"0\" type=\"curve\"/>\n      <point x=\"1009\" y=\"32\" type=\"line\"/>\n      <point x=\"909\" y=\"50\" type=\"line\"/>\n      <point x=\"909\" y=\"-15\" type=\"line\"/>\n      <point x=\"831\" y=\"-62\"/>\n      <point x=\"786\" y=\"-136\"/>\n      <point x=\"786\" y=\"-218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"-349\"/>\n      <point x=\"870\" y=\"-424\"/>\n    </contour>\n    <component base=\"a\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/apostrophemod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"apostrophemod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02BC\"/>\n  <outline>\n    <component base=\"quoteright\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/approxequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"approxequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2248\"/>\n  <outline>\n    <component base=\"asciitilde\" yOffset=\"290\"/>\n    <component base=\"asciitilde\" yOffset=\"-290\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/aring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"ringcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/aringacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aringacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FB\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"ringcomb\" xOffset=\"-20\"/>\n    <component base=\"acutecomb\" xOffset=\"10\" yOffset=\"305\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asciicircum.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciicircum\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005E\"/>\n  <outline>\n    <contour>\n      <point x=\"229\" y=\"820\" type=\"line\"/>\n      <point x=\"330\" y=\"820\" type=\"line\"/>\n      <point x=\"596\" y=\"1340\" type=\"line\"/>\n      <point x=\"604\" y=\"1340\" type=\"line\"/>\n      <point x=\"870\" y=\"820\" type=\"line\"/>\n      <point x=\"971\" y=\"820\" type=\"line\"/>\n      <point x=\"661\" y=\"1420\" type=\"line\"/>\n      <point x=\"539\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asciicircum_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciicircum_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"219\" y=\"658\" type=\"line\"/>\n      <point x=\"321\" y=\"658\" type=\"line\"/>\n      <point x=\"670\" y=\"1340\" type=\"line\"/>\n      <point x=\"678\" y=\"1340\" type=\"line\"/>\n      <point x=\"896\" y=\"914\" type=\"line\"/>\n      <point x=\"996\" y=\"914\" type=\"line\"/>\n      <point x=\"735\" y=\"1420\" type=\"line\"/>\n      <point x=\"613\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1136\" y=\"414\" type=\"line\"/>\n      <point x=\"2120\" y=\"414\" type=\"line\"/>\n      <point x=\"2120\" y=\"504\" type=\"line\"/>\n      <point x=\"1136\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"896\" y=\"914\" type=\"line\"/>\n      <point x=\"2120\" y=\"914\" type=\"line\"/>\n      <point x=\"2120\" y=\"1004\" type=\"line\"/>\n      <point x=\"896\" y=\"1004\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007E\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"486\" type=\"line\"/>\n      <point x=\"214\" y=\"486\" type=\"line\"/>\n      <point x=\"214\" y=\"576\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"214\" y=\"737\"/>\n      <point x=\"260\" y=\"806\"/>\n      <point x=\"369\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"806\"/>\n      <point x=\"485\" y=\"774\"/>\n      <point x=\"594\" y=\"664\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"555\"/>\n      <point x=\"763\" y=\"520\"/>\n      <point x=\"860\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"520\"/>\n      <point x=\"1076\" y=\"619\"/>\n      <point x=\"1076\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1076\" y=\"930\" type=\"line\"/>\n      <point x=\"986\" y=\"930\" type=\"line\"/>\n      <point x=\"986\" y=\"840\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"986\" y=\"679\"/>\n      <point x=\"949\" y=\"610\"/>\n      <point x=\"859\" y=\"610\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"610\"/>\n      <point x=\"748\" y=\"641\"/>\n      <point x=\"635\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"514\" y=\"860\"/>\n      <point x=\"453\" y=\"896\"/>\n      <point x=\"370\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"198\" y=\"896\"/>\n      <point x=\"124\" y=\"797\"/>\n      <point x=\"124\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"304\" y=\"446\" type=\"line\"/>\n      <point x=\"400\" y=\"446\" type=\"line\"/>\n      <point x=\"400\" y=\"531\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"677\"/>\n      <point x=\"449\" y=\"749\"/>\n      <point x=\"549\" y=\"749\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"598\" y=\"749\"/>\n      <point x=\"660\" y=\"720\"/>\n      <point x=\"735\" y=\"661\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"604\"/>\n      <point x=\"883\" y=\"574\"/>\n      <point x=\"960\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"574\"/>\n      <point x=\"1156\" y=\"629\"/>\n      <point x=\"1250\" y=\"739\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1308\" y=\"806\"/>\n      <point x=\"1368\" y=\"839\"/>\n      <point x=\"1429\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1492\" y=\"839\"/>\n      <point x=\"1557\" y=\"813\"/>\n      <point x=\"1625\" y=\"761\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1709\" y=\"696\"/>\n      <point x=\"1783\" y=\"664\"/>\n      <point x=\"1850\" y=\"664\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2014\" y=\"664\"/>\n      <point x=\"2096\" y=\"770\"/>\n      <point x=\"2096\" y=\"984\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2096\" y=\"1060\" type=\"line\"/>\n      <point x=\"2000\" y=\"1060\" type=\"line\"/>\n      <point x=\"2000\" y=\"965\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2000\" y=\"825\"/>\n      <point x=\"1948\" y=\"756\"/>\n      <point x=\"1843\" y=\"756\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1801\" y=\"756\"/>\n      <point x=\"1740\" y=\"786\"/>\n      <point x=\"1657\" y=\"847\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1579\" y=\"903\"/>\n      <point x=\"1504\" y=\"931\"/>\n      <point x=\"1430\" y=\"931\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1337\" y=\"931\"/>\n      <point x=\"1252\" y=\"884\"/>\n      <point x=\"1173\" y=\"789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1102\" y=\"707\"/>\n      <point x=\"1033\" y=\"666\"/>\n      <point x=\"963\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"666\"/>\n      <point x=\"846\" y=\"692\"/>\n      <point x=\"780\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"808\"/>\n      <point x=\"612\" y=\"841\"/>\n      <point x=\"550\" y=\"841\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"841\"/>\n      <point x=\"304\" y=\"735\"/>\n      <point x=\"304\" y=\"521\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1630\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1535\" y=\"878\"/>\n      <point x=\"1426\" y=\"821\"/>\n      <point x=\"1321\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1241\" y=\"724\"/>\n      <point x=\"1159\" y=\"691\"/>\n      <point x=\"1086\" y=\"691\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1007\" y=\"691\"/>\n      <point x=\"934\" y=\"733\"/>\n      <point x=\"857\" y=\"771\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"822\"/>\n      <point x=\"644\" y=\"878\"/>\n      <point x=\"520\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"319\" y=\"878\"/>\n      <point x=\"224\" y=\"779\"/>\n      <point x=\"224\" y=\"577\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"487\" type=\"line\"/>\n      <point x=\"320\" y=\"487\" type=\"line\"/>\n      <point x=\"320\" y=\"557\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"716\"/>\n      <point x=\"389\" y=\"793\"/>\n      <point x=\"522\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"610\" y=\"793\"/>\n      <point x=\"688\" y=\"746\"/>\n      <point x=\"771\" y=\"703\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"657\"/>\n      <point x=\"966\" y=\"601\"/>\n      <point x=\"1080\" y=\"601\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1178\" y=\"601\"/>\n      <point x=\"1290\" y=\"648\"/>\n      <point x=\"1395\" y=\"703\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1477\" y=\"746\"/>\n      <point x=\"1558\" y=\"787\"/>\n      <point x=\"1632\" y=\"787\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1728\" y=\"787\"/>\n      <point x=\"1803\" y=\"759\"/>\n      <point x=\"1873\" y=\"720\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1964\" y=\"671\"/>\n      <point x=\"2055\" y=\"621\"/>\n      <point x=\"2188\" y=\"621\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2438\" y=\"621\"/>\n      <point x=\"2534\" y=\"718\"/>\n      <point x=\"2790\" y=\"718\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3010\" y=\"718\"/>\n      <point x=\"3076\" y=\"669\"/>\n      <point x=\"3265\" y=\"669\" type=\"curve\"/>\n      <point x=\"3265\" y=\"755\" type=\"line\"/>\n      <point x=\"3076\" y=\"755\"/>\n      <point x=\"3010\" y=\"808\"/>\n      <point x=\"2788\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2535\" y=\"808\"/>\n      <point x=\"2437\" y=\"711\"/>\n      <point x=\"2194\" y=\"711\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2096\" y=\"711\"/>\n      <point x=\"2023\" y=\"752\"/>\n      <point x=\"1946\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1860\" y=\"841\"/>\n      <point x=\"1763\" y=\"878\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"2400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_at.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_at.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"224\" y=\"487\" type=\"line\"/>\n      <point x=\"314\" y=\"487\" type=\"line\"/>\n      <point x=\"314\" y=\"577\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"729\"/>\n      <point x=\"365\" y=\"805\"/>\n      <point x=\"469\" y=\"805\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"805\"/>\n      <point x=\"606\" y=\"732\"/>\n      <point x=\"704\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"513\"/>\n      <point x=\"848\" y=\"473\"/>\n      <point x=\"940\" y=\"473\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"473\"/>\n      <point x=\"1184\" y=\"557\"/>\n      <point x=\"1239\" y=\"893\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1289\" y=\"1198\"/>\n      <point x=\"1427\" y=\"1349\"/>\n      <point x=\"1658\" y=\"1349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1872\" y=\"1349\"/>\n      <point x=\"2012\" y=\"1166\"/>\n      <point x=\"2012\" y=\"887\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2012\" y=\"524\" type=\"line\"/>\n      <point x=\"2106\" y=\"524\" type=\"line\"/>\n      <point x=\"2106\" y=\"893\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2106\" y=\"1222\"/>\n      <point x=\"1928\" y=\"1439\"/>\n      <point x=\"1658\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1378\" y=\"1439\"/>\n      <point x=\"1210\" y=\"1255\"/>\n      <point x=\"1146\" y=\"883\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"617\"/>\n      <point x=\"1039\" y=\"565\"/>\n      <point x=\"939\" y=\"565\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"565\"/>\n      <point x=\"829\" y=\"607\"/>\n      <point x=\"745\" y=\"703\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"822\"/>\n      <point x=\"562\" y=\"897\"/>\n      <point x=\"470\" y=\"897\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"897\"/>\n      <point x=\"224\" y=\"788\"/>\n      <point x=\"224\" y=\"567\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1768\" y=\"-203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1850\" y=\"-203\"/>\n      <point x=\"1908\" y=\"-196\"/>\n      <point x=\"1965\" y=\"-178\" type=\"curve\"/>\n      <point x=\"1965\" y=\"-88\" type=\"line\"/>\n      <point x=\"1913\" y=\"-106\"/>\n      <point x=\"1854\" y=\"-113\"/>\n      <point x=\"1768\" y=\"-113\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1444\" y=\"-113\"/>\n      <point x=\"1296\" y=\"80\"/>\n      <point x=\"1283\" y=\"530\" type=\"curve\"/>\n      <point x=\"1256\" y=\"502\"/>\n      <point x=\"1228\" y=\"477\"/>\n      <point x=\"1199\" y=\"457\" type=\"curve\"/>\n      <point x=\"1227\" y=\"-4\"/>\n      <point x=\"1402\" y=\"-203\"/>\n    </contour>\n    <contour>\n      <point x=\"1754\" y=\"148\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1884\" y=\"148\"/>\n      <point x=\"1976\" y=\"228\"/>\n      <point x=\"2005\" y=\"370\" type=\"curve\"/>\n      <point x=\"2024\" y=\"370\" type=\"line\"/>\n      <point x=\"2024\" y=\"867\" type=\"line\"/>\n      <point x=\"2005\" y=\"867\" type=\"line\"/>\n      <point x=\"1970\" y=\"1009\"/>\n      <point x=\"1877\" y=\"1089\"/>\n      <point x=\"1756\" y=\"1089\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1563\" y=\"1089\"/>\n      <point x=\"1454\" y=\"935\"/>\n      <point x=\"1454\" y=\"619\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1454\" y=\"320\"/>\n      <point x=\"1563\" y=\"148\"/>\n    </contour>\n    <contour>\n      <point x=\"1752\" y=\"238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1623\" y=\"238\"/>\n      <point x=\"1548\" y=\"376\"/>\n      <point x=\"1548\" y=\"620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1548\" y=\"884\"/>\n      <point x=\"1627\" y=\"999\"/>\n      <point x=\"1766\" y=\"999\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1924\" y=\"999\"/>\n      <point x=\"2012\" y=\"884\"/>\n      <point x=\"2012\" y=\"620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2012\" y=\"376\"/>\n      <point x=\"1918\" y=\"238\"/>\n    </contour>\n    <contour>\n      <point x=\"2012\" y=\"168\" type=\"line\"/>\n      <point x=\"2106\" y=\"168\" type=\"line\"/>\n      <point x=\"2106\" y=\"769\" type=\"line\"/>\n      <point x=\"2012\" y=\"769\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asciitilde\" xOffset=\"39\"/>\n    <component base=\"equal\" xOffset=\"1161\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"224\" y=\"486\" type=\"line\"/>\n      <point x=\"320\" y=\"486\" type=\"line\"/>\n      <point x=\"320\" y=\"588\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"720\"/>\n      <point x=\"396\" y=\"784\"/>\n      <point x=\"542\" y=\"784\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"633\" y=\"784\"/>\n      <point x=\"707\" y=\"736\"/>\n      <point x=\"782\" y=\"692\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"639\"/>\n      <point x=\"963\" y=\"592\"/>\n      <point x=\"1070\" y=\"592\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1260\" y=\"592\"/>\n      <point x=\"1376\" y=\"709\"/>\n      <point x=\"1598\" y=\"709\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1760\" y=\"709\"/>\n      <point x=\"1891\" y=\"661\"/>\n      <point x=\"2065\" y=\"661\" type=\"curve\"/>\n      <point x=\"2065\" y=\"743\" type=\"line\"/>\n      <point x=\"1903\" y=\"743\"/>\n      <point x=\"1760\" y=\"799\"/>\n      <point x=\"1598\" y=\"799\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1376\" y=\"799\"/>\n      <point x=\"1260\" y=\"682\"/>\n      <point x=\"1076\" y=\"682\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"682\"/>\n      <point x=\"911\" y=\"722\"/>\n      <point x=\"835\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"818\"/>\n      <point x=\"652\" y=\"874\"/>\n      <point x=\"540\" y=\"874\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"874\"/>\n      <point x=\"224\" y=\"780\"/>\n      <point x=\"224\" y=\"599\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"1200\" yOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"980\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1114\" y=\"480\"/>\n      <point x=\"1176\" y=\"559\"/>\n      <point x=\"1176\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1176\" y=\"740\" type=\"line\"/>\n      <point x=\"1086\" y=\"740\" type=\"line\"/>\n      <point x=\"1086\" y=\"720\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1086\" y=\"617\"/>\n      <point x=\"1052\" y=\"570\"/>\n      <point x=\"979\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"570\"/>\n      <point x=\"834\" y=\"616\"/>\n      <point x=\"735\" y=\"717\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"608\" y=\"846\"/>\n      <point x=\"550\" y=\"896\"/>\n      <point x=\"450\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"896\"/>\n      <point x=\"224\" y=\"797\"/>\n      <point x=\"224\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"486\" type=\"line\"/>\n      <point x=\"314\" y=\"486\" type=\"line\"/>\n      <point x=\"314\" y=\"576\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"737\"/>\n      <point x=\"354\" y=\"806\"/>\n      <point x=\"449\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"527\" y=\"806\"/>\n      <point x=\"574\" y=\"755\"/>\n      <point x=\"694\" y=\"634\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"528\"/>\n      <point x=\"888\" y=\"480\"/>\n    </contour>\n    <contour>\n      <point x=\"1087\" y=\"654\" type=\"line\"/>\n      <point x=\"2120\" y=\"654\" type=\"line\"/>\n      <point x=\"2120\" y=\"744\" type=\"line\"/>\n      <point x=\"1087\" y=\"744\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066D\"/>\n  <outline>\n    <contour>\n      <point x=\"517\" y=\"394\" type=\"line\"/>\n      <point x=\"681\" y=\"394\" type=\"line\"/>\n      <point x=\"635\" y=\"619\" type=\"line\"/>\n      <point x=\"809\" y=\"465\" type=\"line\"/>\n      <point x=\"893\" y=\"612\" type=\"line\"/>\n      <point x=\"674\" y=\"683\" type=\"line\"/>\n      <point x=\"892\" y=\"753\" type=\"line\"/>\n      <point x=\"807\" y=\"900\" type=\"line\"/>\n      <point x=\"633\" y=\"744\" type=\"line\"/>\n      <point x=\"683\" y=\"968\" type=\"line\"/>\n      <point x=\"512\" y=\"968\" type=\"line\"/>\n      <point x=\"560\" y=\"747\" type=\"line\"/>\n      <point x=\"392\" y=\"899\" type=\"line\"/>\n      <point x=\"307\" y=\"752\" type=\"line\"/>\n      <point x=\"524\" y=\"683\" type=\"line\"/>\n      <point x=\"310\" y=\"610\" type=\"line\"/>\n      <point x=\"393\" y=\"467\" type=\"line\"/>\n      <point x=\"562\" y=\"622\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"579\" y=\"647\"/>\n      <point x=\"562\" y=\"664\"/>\n      <point x=\"562\" y=\"684\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"704\"/>\n      <point x=\"579\" y=\"721\"/>\n      <point x=\"599\" y=\"721\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"619\" y=\"721\"/>\n      <point x=\"636\" y=\"704\"/>\n      <point x=\"636\" y=\"684\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"664\"/>\n      <point x=\"619\" y=\"647\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002A\"/>\n  <outline>\n    <contour>\n      <point x=\"853\" y=\"282\" type=\"line\"/>\n      <point x=\"925\" y=\"337\" type=\"line\"/>\n      <point x=\"629\" y=\"720\" type=\"line\"/>\n      <point x=\"571\" y=\"672\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"347\" y=\"282\" type=\"line\"/>\n      <point x=\"629\" y=\"672\" type=\"line\"/>\n      <point x=\"571\" y=\"720\" type=\"line\"/>\n      <point x=\"275\" y=\"337\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"587\" y=\"660\" type=\"line\"/>\n      <point x=\"613\" y=\"732\" type=\"line\"/>\n      <point x=\"165\" y=\"904\" type=\"line\"/>\n      <point x=\"133\" y=\"816\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"562\" y=\"696\" type=\"line\"/>\n      <point x=\"638\" y=\"696\" type=\"line\"/>\n      <point x=\"647\" y=\"1176\" type=\"line\"/>\n      <point x=\"553\" y=\"1176\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"613\" y=\"660\" type=\"line\"/>\n      <point x=\"1067\" y=\"816\" type=\"line\"/>\n      <point x=\"1035\" y=\"904\" type=\"line\"/>\n      <point x=\"587\" y=\"732\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asteriskA_rt-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asteriskArt-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06DE\"/>\n  <outline>\n    <contour>\n      <point x=\"601\" y=\"-240\" type=\"line\"/>\n      <point x=\"1176\" y=\"335\" type=\"line\"/>\n      <point x=\"599\" y=\"912\" type=\"line\"/>\n      <point x=\"24\" y=\"337\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"601\" y=\"-184\" type=\"line\"/>\n      <point x=\"79\" y=\"339\" type=\"line\"/>\n      <point x=\"599\" y=\"857\" type=\"line\"/>\n      <point x=\"1120\" y=\"337\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"193\" y=\"-70\" type=\"line\"/>\n      <point x=\"1009\" y=\"-70\" type=\"line\"/>\n      <point x=\"1009\" y=\"743\" type=\"line\"/>\n      <point x=\"193\" y=\"743\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"231\" y=\"-30\" type=\"line\"/>\n      <point x=\"231\" y=\"705\" type=\"line\"/>\n      <point x=\"969\" y=\"705\" type=\"line\"/>\n      <point x=\"969\" y=\"-30\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"229\"/>\n      <point x=\"710\" y=\"279\"/>\n      <point x=\"710\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"710\" y=\"400\"/>\n      <point x=\"660\" y=\"450\"/>\n      <point x=\"600\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"450\"/>\n      <point x=\"490\" y=\"400\"/>\n      <point x=\"490\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"279\"/>\n      <point x=\"540\" y=\"229\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"264\"/>\n      <point x=\"525\" y=\"299\"/>\n      <point x=\"525\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"381\"/>\n      <point x=\"558\" y=\"415\"/>\n      <point x=\"600\" y=\"415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"642\" y=\"415\"/>\n      <point x=\"675\" y=\"381\"/>\n      <point x=\"675\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"299\"/>\n      <point x=\"642\" y=\"264\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"60\"/>\n    <component base=\"asterisk\" xOffset=\"1140\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_asterisk_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"2340\"/>\n    <component base=\"asterisk\" xOffset=\"60\"/>\n    <component base=\"asterisk\" xOffset=\"1208\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"62\"/>\n    <component base=\"greater\" xOffset=\"1102\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_parenright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_parenright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1318\" y=\"-200\" type=\"line\"/>\n      <point x=\"1346\" y=\"-200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1865\" y=\"-200\"/>\n      <point x=\"2162\" y=\"133\"/>\n      <point x=\"2162\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2162\" y=\"1291\"/>\n      <point x=\"1865\" y=\"1620\"/>\n      <point x=\"1346\" y=\"1620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1318\" y=\"1620\" type=\"line\"/>\n      <point x=\"1318\" y=\"1530\" type=\"line\"/>\n      <point x=\"1346\" y=\"1530\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1806\" y=\"1530\"/>\n      <point x=\"2066\" y=\"1232\"/>\n      <point x=\"2066\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2066\" y=\"192\"/>\n      <point x=\"1806\" y=\"-110\"/>\n      <point x=\"1346\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1318\" y=\"-110\" type=\"line\"/>\n    </contour>\n    <component base=\"asterisk\" xOffset=\"205\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"62\"/>\n    <component base=\"slash\" xOffset=\"1142\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/at.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"at\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0040\"/>\n  <outline>\n    <contour>\n      <point x=\"710\" y=\"-203\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"-203\"/>\n      <point x=\"850\" y=\"-196\"/>\n      <point x=\"907\" y=\"-178\" type=\"curve\"/>\n      <point x=\"907\" y=\"-88\" type=\"line\"/>\n      <point x=\"855\" y=\"-106\"/>\n      <point x=\"796\" y=\"-113\"/>\n      <point x=\"710\" y=\"-113\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"-113\"/>\n      <point x=\"228\" y=\"99\"/>\n      <point x=\"228\" y=\"598\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"1101\"/>\n      <point x=\"361\" y=\"1349\"/>\n      <point x=\"630\" y=\"1349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"1349\"/>\n      <point x=\"954\" y=\"1196\"/>\n      <point x=\"954\" y=\"887\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"769\"/>\n      <point x=\"954\" y=\"667\"/>\n      <point x=\"954\" y=\"524\" type=\"curve\"/>\n      <point x=\"1048\" y=\"524\" type=\"line\"/>\n      <point x=\"1048\" y=\"669\"/>\n      <point x=\"1048\" y=\"773\"/>\n      <point x=\"1048\" y=\"893\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1258\"/>\n      <point x=\"908\" y=\"1439\"/>\n      <point x=\"630\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"1439\"/>\n      <point x=\"132\" y=\"1160\"/>\n      <point x=\"132\" y=\"598\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"132\" y=\"36\"/>\n      <point x=\"305\" y=\"-203\"/>\n    </contour>\n    <contour>\n      <point x=\"711\" y=\"148\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"148\"/>\n      <point x=\"925\" y=\"228\"/>\n      <point x=\"942\" y=\"370\" type=\"curve\"/>\n      <point x=\"961\" y=\"370\" type=\"line\"/>\n      <point x=\"961\" y=\"897\" type=\"line\"/>\n      <point x=\"942\" y=\"897\" type=\"line\"/>\n      <point x=\"919\" y=\"1020\"/>\n      <point x=\"824\" y=\"1089\"/>\n      <point x=\"713\" y=\"1089\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"1089\"/>\n      <point x=\"396\" y=\"935\"/>\n      <point x=\"396\" y=\"619\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"320\"/>\n      <point x=\"510\" y=\"148\"/>\n    </contour>\n    <contour>\n      <point x=\"713\" y=\"238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"568\" y=\"238\"/>\n      <point x=\"492\" y=\"376\"/>\n      <point x=\"492\" y=\"620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"884\"/>\n      <point x=\"572\" y=\"999\"/>\n      <point x=\"713\" y=\"999\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"999\"/>\n      <point x=\"954\" y=\"884\"/>\n      <point x=\"954\" y=\"620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"376\"/>\n      <point x=\"862\" y=\"238\"/>\n    </contour>\n    <contour>\n      <point x=\"954\" y=\"168\" type=\"line\"/>\n      <point x=\"1048\" y=\"168\" type=\"line\"/>\n      <point x=\"1048\" y=\"769\" type=\"line\"/>\n      <point x=\"954\" y=\"769\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/atilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"atilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"tildecomb\" xOffset=\"-13\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ayin-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ayin-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E2\"/>\n  <outline>\n    <contour>\n      <point x=\"97\" y=\"0\" type=\"line\"/>\n      <point x=\"174\" y=\"0\"/>\n      <point x=\"251\" y=\"0\"/>\n      <point x=\"328\" y=\"0\" type=\"curve\"/>\n      <point x=\"772\" y=\"0\"/>\n      <point x=\"966\" y=\"132\"/>\n      <point x=\"966\" y=\"627\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"966\" y=\"1200\" type=\"line\"/>\n      <point x=\"867\" y=\"1200\" type=\"line\"/>\n      <point x=\"867\" y=\"629\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"169\"/>\n      <point x=\"686\" y=\"99\"/>\n      <point x=\"322\" y=\"99\" type=\"curve\"/>\n      <point x=\"97\" y=\"99\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"396\" y=\"77\" type=\"line\"/>\n      <point x=\"499\" y=\"77\" type=\"line\"/>\n      <point x=\"318\" y=\"1200\" type=\"line\"/>\n      <point x=\"215\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/b.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"b\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0062\"/>\n  <anchor x=\"640\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"239\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"397\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"-20\"/>\n      <point x=\"1075\" y=\"206\"/>\n      <point x=\"1075\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1075\" y=\"906\"/>\n      <point x=\"922\" y=\"1080\"/>\n      <point x=\"655\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"1080\"/>\n      <point x=\"338\" y=\"1010\"/>\n      <point x=\"291\" y=\"868\" type=\"curve\"/>\n      <point x=\"219\" y=\"868\" type=\"line\"/>\n      <point x=\"281\" y=\"596\" type=\"line\"/>\n      <point x=\"281\" y=\"859\"/>\n      <point x=\"403\" y=\"988\"/>\n      <point x=\"645\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"988\"/>\n      <point x=\"979\" y=\"848\"/>\n      <point x=\"979\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"264\"/>\n      <point x=\"783\" y=\"72\"/>\n      <point x=\"439\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"72\"/>\n      <point x=\"304\" y=\"77\"/>\n      <point x=\"249\" y=\"86\" type=\"curve\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"-12\"/>\n      <point x=\"326\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"281\" y=\"18\" type=\"line\"/>\n      <point x=\"277\" y=\"1500\" type=\"line\"/>\n      <point x=\"187\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/backslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005C\"/>\n  <outline>\n    <contour>\n      <point x=\"934\" y=\"-190\" type=\"line\"/>\n      <point x=\"1032\" y=\"-190\" type=\"line\"/>\n      <point x=\"162\" y=\"1610\" type=\"line\"/>\n      <point x=\"64\" y=\"1610\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/backslash_backslash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash_backslash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"backslash\" xOffset=\"168\"/>\n    <component base=\"backslash\" xOffset=\"1050\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/backslash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"996\"/>\n    <component base=\"backslash\" xOffset=\"204\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/backspaceC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backspaceControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2408\"/>\n  <outline>\n    <component base=\"B.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/backspaceC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backspaceControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1035\" y=\"285\" type=\"line\"/>\n      <point x=\"1125\" y=\"285\" type=\"line\"/>\n      <point x=\"1125\" y=\"947\" type=\"line\"/>\n      <point x=\"1035\" y=\"947\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"857\" type=\"line\"/>\n      <point x=\"1100\" y=\"947\" type=\"line\"/>\n      <point x=\"124\" y=\"947\" type=\"line\"/>\n      <point x=\"124\" y=\"857\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"452\" y=\"496\" type=\"line\"/>\n      <point x=\"516\" y=\"553\" type=\"line\"/>\n      <point x=\"177\" y=\"893\" type=\"line\"/>\n      <point x=\"177\" y=\"911\" type=\"line\"/>\n      <point x=\"516\" y=\"1251\" type=\"line\"/>\n      <point x=\"452\" y=\"1308\" type=\"line\"/>\n      <point x=\"64\" y=\"913\" type=\"line\"/>\n      <point x=\"64\" y=\"891\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"baht.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"538\" y=\"1371\" type=\"line\"/>\n      <point x=\"628\" y=\"1371\" type=\"line\"/>\n      <point x=\"628\" y=\"1740\" type=\"line\"/>\n      <point x=\"538\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"538\" y=\"-320\" type=\"line\"/>\n      <point x=\"628\" y=\"-320\" type=\"line\"/>\n      <point x=\"628\" y=\"42\" type=\"line\"/>\n      <point x=\"538\" y=\"42\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/baht.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"baht\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0E3F\"/>\n  <outline>\n    <contour>\n      <point x=\"536\" y=\"-320\" type=\"line\"/>\n      <point x=\"630\" y=\"-320\" type=\"line\"/>\n      <point x=\"630\" y=\"1740\" type=\"line\"/>\n      <point x=\"536\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-310\" type=\"line\"/>\n      <point x=\"647\" y=\"-310\" type=\"line\"/>\n      <point x=\"647\" y=\"1730\" type=\"line\"/>\n      <point x=\"553\" y=\"1730\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"1070\"/>\n    <component base=\"bar\" xOffset=\"130\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"1200\"/>\n    <component base=\"bar\" xOffset=\"2400\"/>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2796\" y=\"-10\" type=\"line\"/>\n      <point x=\"4300\" y=\"648\" type=\"line\"/>\n      <point x=\"4300\" y=\"770\" type=\"line\"/>\n      <point x=\"2796\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2890\" y=\"65\" type=\"line\"/>\n      <point x=\"2890\" y=\"1355\" type=\"line\"/>\n      <point x=\"2811\" y=\"1314\" type=\"line\"/>\n      <point x=\"4182\" y=\"718\" type=\"line\"/>\n      <point x=\"4182\" y=\"700\" type=\"line\"/>\n      <point x=\"2811\" y=\"107\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"356\"/>\n    <component base=\"bar\" xOffset=\"1356\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"914\" type=\"line\"/>\n      <point x=\"800\" y=\"914\" type=\"line\"/>\n      <point x=\"800\" y=\"1004\" type=\"line\"/>\n      <point x=\"-20\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"414\" type=\"line\"/>\n      <point x=\"800\" y=\"414\" type=\"line\"/>\n      <point x=\"800\" y=\"504\" type=\"line\"/>\n      <point x=\"-20\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"914\" type=\"line\"/>\n      <point x=\"800\" y=\"914\" type=\"line\"/>\n      <point x=\"800\" y=\"1004\" type=\"line\"/>\n      <point x=\"-50\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"414\" type=\"line\"/>\n      <point x=\"800\" y=\"414\" type=\"line\"/>\n      <point x=\"800\" y=\"504\" type=\"line\"/>\n      <point x=\"-50\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1597\" y=\"914\" type=\"line\"/>\n      <point x=\"2450\" y=\"914\" type=\"line\"/>\n      <point x=\"2450\" y=\"1004\" type=\"line\"/>\n      <point x=\"1597\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1597\" y=\"414\" type=\"line\"/>\n      <point x=\"2450\" y=\"414\" type=\"line\"/>\n      <point x=\"2450\" y=\"504\" type=\"line\"/>\n      <point x=\"1597\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1597\" y=\"414\" type=\"line\"/>\n      <point x=\"2420\" y=\"414\" type=\"line\"/>\n      <point x=\"2420\" y=\"504\" type=\"line\"/>\n      <point x=\"1597\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1597\" y=\"914\" type=\"line\"/>\n      <point x=\"2420\" y=\"914\" type=\"line\"/>\n      <point x=\"2420\" y=\"1004\" type=\"line\"/>\n      <point x=\"1597\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1551\" y=\"-10\" type=\"line\"/>\n      <point x=\"3055\" y=\"648\" type=\"line\"/>\n      <point x=\"3055\" y=\"770\" type=\"line\"/>\n      <point x=\"1551\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1645\" y=\"65\" type=\"line\"/>\n      <point x=\"1645\" y=\"1355\" type=\"line\"/>\n      <point x=\"1566\" y=\"1314\" type=\"line\"/>\n      <point x=\"2937\" y=\"718\" type=\"line\"/>\n      <point x=\"2937\" y=\"700\" type=\"line\"/>\n      <point x=\"1566\" y=\"107\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xScale=\"-1\" xOffset=\"1460\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"664\" type=\"line\"/>\n      <point x=\"791\" y=\"664\" type=\"line\"/>\n      <point x=\"791\" y=\"754\" type=\"line\"/>\n      <point x=\"-20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1601\" y=\"664\" type=\"line\"/>\n      <point x=\"2450\" y=\"664\" type=\"line\"/>\n      <point x=\"2450\" y=\"754\" type=\"line\"/>\n      <point x=\"1601\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"664\" type=\"line\"/>\n      <point x=\"791\" y=\"664\" type=\"line\"/>\n      <point x=\"791\" y=\"754\" type=\"line\"/>\n      <point x=\"-50\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1601\" y=\"664\" type=\"line\"/>\n      <point x=\"2420\" y=\"664\" type=\"line\"/>\n      <point x=\"2420\" y=\"754\" type=\"line\"/>\n      <point x=\"1601\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1020\"/>\n    <component base=\"bar\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_braceright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_braceright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1530\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1756\" y=\"-214\"/>\n      <point x=\"1932\" y=\"-77\"/>\n      <point x=\"1892\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1873\" y=\"267\"/>\n      <point x=\"1810\" y=\"375\"/>\n      <point x=\"1810\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1810\" y=\"607\"/>\n      <point x=\"1925\" y=\"640\"/>\n      <point x=\"2136\" y=\"640\" type=\"curve\"/>\n      <point x=\"2136\" y=\"772\" type=\"line\"/>\n      <point x=\"1931\" y=\"772\"/>\n      <point x=\"1810\" y=\"832\"/>\n      <point x=\"1810\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1810\" y=\"1060\"/>\n      <point x=\"1872\" y=\"1164\"/>\n      <point x=\"1892\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1932\" y=\"1498\"/>\n      <point x=\"1756\" y=\"1626\"/>\n      <point x=\"1530\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1417\" y=\"1626\"/>\n      <point x=\"1348\" y=\"1618\"/>\n      <point x=\"1284\" y=\"1606\" type=\"curve\"/>\n      <point x=\"1298\" y=\"1524\" type=\"line\"/>\n      <point x=\"1377\" y=\"1531\"/>\n      <point x=\"1450\" y=\"1536\"/>\n      <point x=\"1512\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1691\" y=\"1536\"/>\n      <point x=\"1828\" y=\"1439\"/>\n      <point x=\"1796\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1774\" y=\"1161\"/>\n      <point x=\"1710\" y=\"1058\"/>\n      <point x=\"1710\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1710\" y=\"796\"/>\n      <point x=\"1839\" y=\"713\"/>\n      <point x=\"2058\" y=\"710\" type=\"curve\"/>\n      <point x=\"2058\" y=\"702\" type=\"line\"/>\n      <point x=\"1839\" y=\"699\"/>\n      <point x=\"1710\" y=\"618\"/>\n      <point x=\"1710\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1710\" y=\"367\"/>\n      <point x=\"1776\" y=\"264\"/>\n      <point x=\"1796\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1828\" y=\"-21\"/>\n      <point x=\"1691\" y=\"-124\"/>\n      <point x=\"1512\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1450\" y=\"-124\"/>\n      <point x=\"1376\" y=\"-119\"/>\n      <point x=\"1297\" y=\"-112\" type=\"curve\"/>\n      <point x=\"1284\" y=\"-194\" type=\"line\"/>\n      <point x=\"1348\" y=\"-206\"/>\n      <point x=\"1417\" y=\"-214\"/>\n    </contour>\n    <component base=\"bar\" xScale=\"-1\" xOffset=\"1200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bracketright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bracketright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1732\" y=\"-214\" type=\"line\"/>\n      <point x=\"1830\" y=\"-214\" type=\"line\"/>\n      <point x=\"1830\" y=\"1634\" type=\"line\"/>\n      <point x=\"1732\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1146\" y=\"-214\" type=\"line\"/>\n      <point x=\"1752\" y=\"-214\" type=\"line\"/>\n      <point x=\"1752\" y=\"-122\" type=\"line\"/>\n      <point x=\"1146\" y=\"-122\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1146\" y=\"1542\" type=\"line\"/>\n      <point x=\"1752\" y=\"1542\" type=\"line\"/>\n      <point x=\"1752\" y=\"1634\" type=\"line\"/>\n      <point x=\"1146\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"46\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"914\" type=\"line\"/>\n      <point x=\"602\" y=\"914\" type=\"line\"/>\n      <point x=\"602\" y=\"1004\" type=\"line\"/>\n      <point x=\"-20\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"414\" type=\"line\"/>\n      <point x=\"602\" y=\"414\" type=\"line\"/>\n      <point x=\"602\" y=\"504\" type=\"line\"/>\n      <point x=\"-20\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"598\" y=\"914\" type=\"line\"/>\n      <point x=\"1220\" y=\"914\" type=\"line\"/>\n      <point x=\"1220\" y=\"1004\" type=\"line\"/>\n      <point x=\"598\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"598\" y=\"414\" type=\"line\"/>\n      <point x=\"1220\" y=\"414\" type=\"line\"/>\n      <point x=\"1220\" y=\"504\" type=\"line\"/>\n      <point x=\"598\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"541\" y=\"-10\" type=\"line\"/>\n      <point x=\"2045\" y=\"648\" type=\"line\"/>\n      <point x=\"2045\" y=\"770\" type=\"line\"/>\n      <point x=\"541\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"635\" y=\"65\" type=\"line\"/>\n      <point x=\"635\" y=\"1355\" type=\"line\"/>\n      <point x=\"556\" y=\"1314\" type=\"line\"/>\n      <point x=\"1927\" y=\"718\" type=\"line\"/>\n      <point x=\"1927\" y=\"700\" type=\"line\"/>\n      <point x=\"556\" y=\"107\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"664\" type=\"line\"/>\n      <point x=\"607\" y=\"664\" type=\"line\"/>\n      <point x=\"607\" y=\"754\" type=\"line\"/>\n      <point x=\"-20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\"/>\n    <component base=\"hyphen_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"593\" y=\"664\" type=\"line\"/>\n      <point x=\"1220\" y=\"664\" type=\"line\"/>\n      <point x=\"1220\" y=\"754\" type=\"line\"/>\n      <point x=\"593\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_underscore_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_underscore_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"1009\" y=\"619\" angle=\"90\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-50\" type=\"line\"/>\n      <point x=\"647\" y=\"-50\" type=\"line\"/>\n      <point x=\"647\" y=\"1730\" type=\"line\"/>\n      <point x=\"553\" y=\"1730\" type=\"line\"/>\n    </contour>\n    <component base=\"underscore_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/be-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"be-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0431\"/>\n  <anchor x=\"609\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"609\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"607\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"-21\"/>\n      <point x=\"1059\" y=\"170\"/>\n      <point x=\"1059\" y=\"501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1059\" y=\"820\"/>\n      <point x=\"904\" y=\"1003\"/>\n      <point x=\"635\" y=\"1003\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"1003\"/>\n      <point x=\"310\" y=\"913\"/>\n      <point x=\"266\" y=\"755\" type=\"curve\"/>\n      <point x=\"258\" y=\"755\" type=\"line\"/>\n      <point x=\"258\" y=\"773\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"1234\"/>\n      <point x=\"463\" y=\"1313\"/>\n      <point x=\"714\" y=\"1362\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1018\" y=\"1421\" type=\"line\"/>\n      <point x=\"1008\" y=\"1520\" type=\"line\"/>\n      <point x=\"661\" y=\"1452\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"1391\"/>\n      <point x=\"165\" y=\"1213\"/>\n      <point x=\"165\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"165\" y=\"529\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"165\" y=\"168\"/>\n      <point x=\"318\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"624\" y=\"74\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"399\" y=\"74\"/>\n      <point x=\"263\" y=\"220\"/>\n      <point x=\"263\" y=\"491\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"263\" y=\"762\"/>\n      <point x=\"391\" y=\"907\"/>\n      <point x=\"628\" y=\"907\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"849\" y=\"907\"/>\n      <point x=\"964\" y=\"769\"/>\n      <point x=\"964\" y=\"491\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"220\"/>\n      <point x=\"836\" y=\"74\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/be-cy.loclS_R_B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"be-cy.loclSRB\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1440\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"-20\"/>\n      <point x=\"1060\" y=\"155\"/>\n      <point x=\"1060\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"710\"/>\n      <point x=\"921\" y=\"897\"/>\n      <point x=\"596\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"944\"/>\n      <point x=\"320\" y=\"991\"/>\n      <point x=\"320\" y=\"1113\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"1243\"/>\n      <point x=\"430\" y=\"1316\"/>\n      <point x=\"651\" y=\"1325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"1338\" type=\"line\"/>\n      <point x=\"976\" y=\"1421\" type=\"line\"/>\n      <point x=\"670\" y=\"1409\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"1397\"/>\n      <point x=\"224\" y=\"1300\"/>\n      <point x=\"224\" y=\"1118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"1027\"/>\n      <point x=\"256\" y=\"926\"/>\n      <point x=\"457\" y=\"876\" type=\"curve\"/>\n      <point x=\"457\" y=\"868\" type=\"line\"/>\n      <point x=\"262\" y=\"837\"/>\n      <point x=\"150\" y=\"667\"/>\n      <point x=\"150\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"147\"/>\n      <point x=\"317\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"605\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"379\" y=\"72\"/>\n      <point x=\"246\" y=\"213\"/>\n      <point x=\"246\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"692\"/>\n      <point x=\"376\" y=\"831\"/>\n      <point x=\"604\" y=\"831\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"831\"/>\n      <point x=\"964\" y=\"691\"/>\n      <point x=\"964\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"211\"/>\n      <point x=\"831\" y=\"72\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067B\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"104\" y=\"-120\" angle=\"0\"/>\n  <guideline x=\"181\" y=\"520\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"104\" y=\"-120\" angle=\"0\"/>\n  <guideline x=\"181\" y=\"520\" angle=\"0\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0628\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"-18\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"-18\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"-10\" y=\"975\" name=\"top\"/>\n  <anchor x=\"-10\" y=\"625\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-16\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"-3\"/>\n      <point x=\"865\" y=\"101\"/>\n      <point x=\"865\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"455\"/>\n      <point x=\"847\" y=\"558\"/>\n      <point x=\"823\" y=\"673\" type=\"curve\"/>\n      <point x=\"733\" y=\"666\" type=\"line\"/>\n      <point x=\"754\" y=\"554\"/>\n      <point x=\"773\" y=\"446\"/>\n      <point x=\"773\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"153\"/>\n      <point x=\"644\" y=\"91\"/>\n      <point x=\"4\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-696\" y=\"91\"/>\n      <point x=\"-796\" y=\"163\"/>\n      <point x=\"-796\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-796\" y=\"486\"/>\n      <point x=\"-780\" y=\"587\"/>\n      <point x=\"-765\" y=\"665\" type=\"curve\"/>\n      <point x=\"-846\" y=\"665\" type=\"line\"/>\n      <point x=\"-871\" y=\"589\"/>\n      <point x=\"-888\" y=\"477\"/>\n      <point x=\"-888\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-888\" y=\"85\"/>\n      <point x=\"-734\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"-108\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"-108\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"-100\" y=\"975\" name=\"top\"/>\n  <anchor x=\"-100\" y=\"625\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-86\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"-3\"/>\n      <point x=\"598\" y=\"30\"/>\n      <point x=\"666\" y=\"137\" type=\"curve\"/>\n      <point x=\"722\" y=\"137\" type=\"line\"/>\n      <point x=\"747\" y=\"174\"/>\n      <point x=\"752\" y=\"228\"/>\n      <point x=\"752\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"751\" y=\"605\" type=\"line\"/>\n      <point x=\"659\" y=\"601\" type=\"line\"/>\n      <point x=\"658\" y=\"316\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"148\"/>\n      <point x=\"615\" y=\"91\"/>\n      <point x=\"-76\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-776\" y=\"91\"/>\n      <point x=\"-866\" y=\"163\"/>\n      <point x=\"-866\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-866\" y=\"486\"/>\n      <point x=\"-850\" y=\"587\"/>\n      <point x=\"-835\" y=\"665\" type=\"curve\"/>\n      <point x=\"-916\" y=\"665\" type=\"line\"/>\n      <point x=\"-941\" y=\"589\"/>\n      <point x=\"-958\" y=\"477\"/>\n      <point x=\"-958\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-958\" y=\"85\"/>\n      <point x=\"-804\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"1190\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1213\" y=\"-3\"/>\n      <point x=\"1227\" y=\"7\"/>\n      <point x=\"1227\" y=\"48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1227\" y=\"74\"/>\n      <point x=\"1221\" y=\"91\"/>\n      <point x=\"1202\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"91\"/>\n      <point x=\"752\" y=\"112\"/>\n      <point x=\"752\" y=\"313\" type=\"curve\"/>\n      <point x=\"676\" y=\"196\" type=\"line\"/>\n      <point x=\"694\" y=\"28\"/>\n      <point x=\"758\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"582\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"582\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"590\" y=\"975\" name=\"top\"/>\n  <anchor x=\"590\" y=\"625\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"509\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"-3\"/>\n      <point x=\"957\" y=\"22\"/>\n      <point x=\"1025\" y=\"120\" type=\"curve\"/>\n      <point x=\"1071\" y=\"120\" type=\"line\"/>\n      <point x=\"1108\" y=\"313\" type=\"line\"/>\n      <point x=\"1103\" y=\"645\" type=\"line\"/>\n      <point x=\"1013\" y=\"641\" type=\"line\"/>\n      <point x=\"1016\" y=\"316\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1018\" y=\"144\"/>\n      <point x=\"984\" y=\"91\"/>\n      <point x=\"529\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"91\"/>\n      <point x=\"106\" y=\"153\"/>\n      <point x=\"106\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"456\"/>\n      <point x=\"122\" y=\"540\"/>\n      <point x=\"137\" y=\"626\" type=\"curve\"/>\n      <point x=\"56\" y=\"626\" type=\"line\"/>\n      <point x=\"34\" y=\"550\"/>\n      <point x=\"14\" y=\"449\"/>\n      <point x=\"14\" y=\"356\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"57\"/>\n      <point x=\"151\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"1200\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1223\" y=\"-3\"/>\n      <point x=\"1237\" y=\"14\"/>\n      <point x=\"1237\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1237\" y=\"75\"/>\n      <point x=\"1231\" y=\"91\"/>\n      <point x=\"1212\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"91\"/>\n      <point x=\"1110\" y=\"125\"/>\n      <point x=\"1108\" y=\"313\" type=\"curve\"/>\n      <point x=\"1021\" y=\"201\" type=\"line\"/>\n      <point x=\"1037\" y=\"53\"/>\n      <point x=\"1090\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066E\"/>\n  <anchor x=\"582\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"582\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"590\" y=\"975\" name=\"top\"/>\n  <anchor x=\"590\" y=\"625\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"509\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1068\" y=\"-3\"/>\n      <point x=\"1190\" y=\"94\"/>\n      <point x=\"1190\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1190\" y=\"438\"/>\n      <point x=\"1171\" y=\"550\"/>\n      <point x=\"1148\" y=\"673\" type=\"curve\"/>\n      <point x=\"1058\" y=\"666\" type=\"line\"/>\n      <point x=\"1082\" y=\"524\"/>\n      <point x=\"1098\" y=\"434\"/>\n      <point x=\"1098\" y=\"345\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1098\" y=\"143\"/>\n      <point x=\"989\" y=\"91\"/>\n      <point x=\"529\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"91\"/>\n      <point x=\"106\" y=\"133\"/>\n      <point x=\"106\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"466\"/>\n      <point x=\"124\" y=\"549\"/>\n      <point x=\"137\" y=\"625\" type=\"curve\"/>\n      <point x=\"56\" y=\"625\" type=\"line\"/>\n      <point x=\"38\" y=\"569\"/>\n      <point x=\"14\" y=\"457\"/>\n      <point x=\"14\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"65\"/>\n      <point x=\"151\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"852\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"852\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"932\" y=\"1067\" name=\"top\"/>\n  <anchor x=\"935\" y=\"817\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"-3\" type=\"line\"/>\n      <point x=\"907\" y=\"-3\"/>\n      <point x=\"1026\" y=\"71\"/>\n      <point x=\"1026\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"435\"/>\n      <point x=\"1008\" y=\"608\"/>\n      <point x=\"984\" y=\"723\" type=\"curve\"/>\n      <point x=\"894\" y=\"716\" type=\"line\"/>\n      <point x=\"915\" y=\"604\"/>\n      <point x=\"934\" y=\"426\"/>\n      <point x=\"934\" y=\"334\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"133\"/>\n      <point x=\"848\" y=\"91\"/>\n      <point x=\"638\" y=\"91\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"812\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"812\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"872\" y=\"1067\" name=\"top\"/>\n  <anchor x=\"875\" y=\"817\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"-3\"/>\n      <point x=\"976\" y=\"101\"/>\n      <point x=\"976\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"475\"/>\n      <point x=\"958\" y=\"608\"/>\n      <point x=\"934\" y=\"723\" type=\"curve\"/>\n      <point x=\"844\" y=\"716\" type=\"line\"/>\n      <point x=\"865\" y=\"604\"/>\n      <point x=\"884\" y=\"478\"/>\n      <point x=\"884\" y=\"378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"176\"/>\n      <point x=\"840\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-21\" y=\"91\"/>\n      <point x=\"-35\" y=\"76\"/>\n      <point x=\"-35\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-35\" y=\"13\"/>\n      <point x=\"-28\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behDotless-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"592\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"592\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"610\" y=\"1005\" name=\"top\"/>\n  <anchor x=\"610\" y=\"655\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"line\"/>\n      <point x=\"376\" y=\"-3\"/>\n      <point x=\"510\" y=\"-8\"/>\n      <point x=\"571\" y=\"111\" type=\"curve\"/>\n      <point x=\"625\" y=\"112\" type=\"line\"/>\n      <point x=\"630\" y=\"131\"/>\n      <point x=\"642\" y=\"130\"/>\n      <point x=\"642\" y=\"254\" type=\"curve\"/>\n      <point x=\"647\" y=\"605\" type=\"line\"/>\n      <point x=\"555\" y=\"601\" type=\"line\"/>\n      <point x=\"547\" y=\"244\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"109\"/>\n      <point x=\"513\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1265\" y=\"5\"/>\n      <point x=\"1265\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"86\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1074\" y=\"91\"/>\n      <point x=\"991\" y=\"91\"/>\n      <point x=\"886\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"91\"/>\n      <point x=\"642\" y=\"130\"/>\n      <point x=\"642\" y=\"254\" type=\"curve\"/>\n      <point x=\"569\" y=\"169\" type=\"line\"/>\n      <point x=\"599\" y=\"32\"/>\n      <point x=\"650\" y=\"-3\"/>\n      <point x=\"863\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"965\" y=\"-3\"/>\n      <point x=\"1062\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-626\" yOffset=\"-369\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-716\" yOffset=\"-369\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-26\" yOffset=\"-369\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B6\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-26\" yOffset=\"-369\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"319\" yOffset=\"-177\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"259\" yOffset=\"-177\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behMeemabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-6\" yOffset=\"-339\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-618\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-708\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-18\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0750\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-18\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"908\" y=\"-414\" name=\"bottom\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"302\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"212\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotshorizontalbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_dots.horz.below\" xOffset=\"-8\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dots.horz.below</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-610\" yOffset=\"83\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-700\" yOffset=\"83\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0751\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"335\" yOffset=\"275\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"275\" yOffset=\"275\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"10\" yOffset=\"113\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0752\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-610\" yOffset=\"83\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-700\" yOffset=\"83\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0754\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"335\" yOffset=\"275\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"275\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behTwodotsbelowDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"10\" yOffset=\"113\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0756\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"335\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"vabove-ar\" xOffset=\"275\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"vabove-ar\" xOffset=\"10\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A0\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_vbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0755\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behVinvertedbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0680\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-630\" yOffset=\"-479\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.fina.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-720\" yOffset=\"-479\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-30\" yOffset=\"-479\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A1\"/>\n  <outline>\n    <component base=\"beh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-30\" yOffset=\"-479\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"255\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"behhamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beh-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-10\" yOffset=\"-449\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bellC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bellControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2407\"/>\n  <outline>\n    <component base=\"B.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bellC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bellControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"305\" type=\"line\"/>\n      <point x=\"171\" y=\"305\" type=\"line\"/>\n      <point x=\"171\" y=\"385\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"171\" y=\"822\"/>\n      <point x=\"306\" y=\"1023\"/>\n      <point x=\"600\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"1023\"/>\n      <point x=\"1029\" y=\"822\"/>\n      <point x=\"1029\" y=\"385\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"305\" type=\"line\"/>\n      <point x=\"1125\" y=\"305\" type=\"line\"/>\n      <point x=\"1125\" y=\"385\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"886\"/>\n      <point x=\"960\" y=\"1115\"/>\n      <point x=\"600\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1115\"/>\n      <point x=\"75\" y=\"886\"/>\n      <point x=\"75\" y=\"385\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"125\" y=\"305\" type=\"line\"/>\n      <point x=\"1075\" y=\"305\" type=\"line\"/>\n      <point x=\"1075\" y=\"395\" type=\"line\"/>\n      <point x=\"125\" y=\"395\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bet-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bet-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D1\"/>\n  <anchor x=\"417\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"1038\" y=\"82\" type=\"line\"/>\n      <point x=\"861\" y=\"99\" type=\"line\"/>\n      <point x=\"125\" y=\"99\" type=\"line\"/>\n      <point x=\"125\" y=\"0\" type=\"line\"/>\n      <point x=\"1038\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"862\" y=\"829\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"1065\"/>\n      <point x=\"719\" y=\"1200\"/>\n      <point x=\"481\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1200\"/>\n      <point x=\"198\" y=\"1230\"/>\n      <point x=\"168\" y=\"1253\" type=\"curve\"/>\n      <point x=\"114\" y=\"1174\" type=\"line\"/>\n      <point x=\"149\" y=\"1143\"/>\n      <point x=\"192\" y=\"1101\"/>\n      <point x=\"269\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"481\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"1101\"/>\n      <point x=\"763\" y=\"997\"/>\n      <point x=\"763\" y=\"809\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"763\" y=\"0\" type=\"line\"/>\n      <point x=\"862\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/beta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B2\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"605\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"624\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"-20\"/>\n      <point x=\"1070\" y=\"144\"/>\n      <point x=\"1070\" y=\"430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"670\"/>\n      <point x=\"940\" y=\"806\"/>\n      <point x=\"712\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"806\" type=\"line\"/>\n      <point x=\"508\" y=\"765\" type=\"line\"/>\n      <point x=\"612\" y=\"765\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"765\"/>\n      <point x=\"974\" y=\"643\"/>\n      <point x=\"974\" y=\"430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"203\"/>\n      <point x=\"843\" y=\"72\"/>\n      <point x=\"616\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"72\"/>\n      <point x=\"278\" y=\"203\"/>\n      <point x=\"278\" y=\"470\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"1313\"/>\n      <point x=\"389\" y=\"1428\"/>\n      <point x=\"612\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"803\" y=\"1428\"/>\n      <point x=\"914\" y=\"1315\"/>\n      <point x=\"914\" y=\"1120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"952\"/>\n      <point x=\"801\" y=\"855\"/>\n      <point x=\"606\" y=\"855\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"855\" type=\"line\"/>\n      <point x=\"508\" y=\"814\" type=\"line\"/>\n      <point x=\"664\" y=\"814\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"814\"/>\n      <point x=\"1010\" y=\"930\"/>\n      <point x=\"1010\" y=\"1130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"1377\"/>\n      <point x=\"865\" y=\"1520\"/>\n      <point x=\"612\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"1520\"/>\n      <point x=\"184\" y=\"1376\"/>\n      <point x=\"184\" y=\"1083\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"470\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"347\"/>\n      <point x=\"202\" y=\"249\"/>\n      <point x=\"237\" y=\"176\" type=\"curve\"/>\n      <point x=\"330\" y=\"176\" type=\"line\"/>\n      <point x=\"296\" y=\"216\" type=\"line\"/>\n      <point x=\"296\" y=\"66\"/>\n      <point x=\"415\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"-460\" type=\"line\"/>\n      <point x=\"278\" y=\"-460\" type=\"line\"/>\n      <point x=\"278\" y=\"708\" type=\"line\"/>\n      <point x=\"184\" y=\"708\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"768\" type=\"line\"/>\n      <point x=\"754\" y=\"758\" type=\"line\"/>\n      <point x=\"754\" y=\"856\" type=\"line\"/>\n      <point x=\"508\" y=\"846\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/betdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"betdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB31\"/>\n  <outline>\n    <component base=\"bet-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-183\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bitcoin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bitcoin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BF\"/>\n  <outline>\n    <contour>\n      <point x=\"396\" y=\"54\" type=\"line\"/>\n      <point x=\"396\" y=\"-320\" type=\"line\"/>\n      <point x=\"490\" y=\"-320\" type=\"line\"/>\n      <point x=\"490\" y=\"54\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"676\" y=\"54\" type=\"line\"/>\n      <point x=\"676\" y=\"-320\" type=\"line\"/>\n      <point x=\"770\" y=\"-320\" type=\"line\"/>\n      <point x=\"770\" y=\"54\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"490\" y=\"1367\" type=\"line\"/>\n      <point x=\"490\" y=\"1740\" type=\"line\"/>\n      <point x=\"396\" y=\"1740\" type=\"line\"/>\n      <point x=\"396\" y=\"1367\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"770\" y=\"1367\" type=\"line\"/>\n      <point x=\"770\" y=\"1740\" type=\"line\"/>\n      <point x=\"676\" y=\"1740\" type=\"line\"/>\n      <point x=\"676\" y=\"1367\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CF\"/>\n  <note>\nH18533\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C6\"/>\n  <note>\nuni25C6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B22\"/>\n  <note>\nuni2B22\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1120\" y=\"410\" type=\"line\"/>\n      <point x=\"1120\" y=\"1010\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"80\" y=\"1010\" type=\"line\"/>\n      <point x=\"80\" y=\"410\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackH_orizontalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackHorizontalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2C\"/>\n  <note>\nuni2B2C\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"395\"/>\n      <point x=\"1125\" y=\"520\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"900\"/>\n      <point x=\"916\" y=\"1025\"/>\n      <point x=\"600\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1025\"/>\n      <point x=\"75\" y=\"900\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"520\"/>\n      <point x=\"284\" y=\"395\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackI_nW_hiteD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackInWhiteDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C8\"/>\n  <note>\nuni25C8\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"534\" type=\"line\"/>\n      <point x=\"776\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"886\" type=\"line\"/>\n      <point x=\"424\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackL_argeC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackLargeCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B24\"/>\n  <note>\nuni2B24\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackL_argeS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackLargeSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1B\"/>\n  <note>\nuni2B1B\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B25\"/>\n  <note>\nuni2B25\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"322\" type=\"line\"/>\n      <point x=\"988\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\n      <point x=\"212\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumDownTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC6\"/>\n  <note>\nuni2BC6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"466\" type=\"line\"/>\n      <point x=\"938\" y=\"1040\" type=\"line\"/>\n      <point x=\"262\" y=\"1040\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumLeftTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC7\"/>\n  <note>\nuni2BC7\n</note>\n  <outline>\n    <contour>\n      <point x=\"840\" y=\"372\" type=\"line\"/>\n      <point x=\"840\" y=\"1048\" type=\"line\"/>\n      <point x=\"266\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B27\"/>\n  <note>\nuni2B27\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"256\" type=\"line\"/>\n      <point x=\"873\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1164\" type=\"line\"/>\n      <point x=\"328\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumRightTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC8\"/>\n  <note>\nuni2BC8\n</note>\n  <outline>\n    <contour>\n      <point x=\"360\" y=\"372\" type=\"line\"/>\n      <point x=\"934\" y=\"710\" type=\"line\"/>\n      <point x=\"360\" y=\"1048\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumUpTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC5\"/>\n  <note>\nuni2BC5\n</note>\n  <outline>\n    <contour>\n      <point x=\"262\" y=\"380\" type=\"line\"/>\n      <point x=\"938\" y=\"380\" type=\"line\"/>\n      <point x=\"600\" y=\"954\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackP_arallelogram.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackParallelogram\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B0\"/>\n  <note>\nuni25B0\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1030\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"170\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackP_entagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackPentagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1F\"/>\n  <note>\nuni2B1F\n</note>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"168\" type=\"line\"/>\n      <point x=\"970\" y=\"168\" type=\"line\"/>\n      <point x=\"1200\" y=\"874\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"874\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_mallD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B29\"/>\n  <note>\nuni2B29\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"534\" type=\"line\"/>\n      <point x=\"776\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"886\" type=\"line\"/>\n      <point x=\"424\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_mallL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2A\"/>\n  <note>\nuni2B2A\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"402\" type=\"line\"/>\n      <point x=\"785\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1019\" type=\"line\"/>\n      <point x=\"415\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AA\"/>\n  <note>\nH18543\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"1010\" type=\"line\"/>\n      <point x=\"300\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_milingF_ace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmilingFace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263B\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"596\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"427\" y=\"343\"/>\n      <point x=\"316\" y=\"433\"/>\n      <point x=\"316\" y=\"569\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"611\"/>\n      <point x=\"334\" y=\"629\"/>\n      <point x=\"376\" y=\"629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"629\"/>\n      <point x=\"705\" y=\"629\"/>\n      <point x=\"836\" y=\"629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"629\"/>\n      <point x=\"896\" y=\"613\"/>\n      <point x=\"896\" y=\"569\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"433\"/>\n      <point x=\"777\" y=\"343\"/>\n    </contour>\n    <contour>\n      <point x=\"390\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"792\"/>\n      <point x=\"292\" y=\"831\"/>\n      <point x=\"292\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"949\"/>\n      <point x=\"331\" y=\"988\"/>\n      <point x=\"390\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"988\"/>\n      <point x=\"488\" y=\"949\"/>\n      <point x=\"488\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"831\"/>\n      <point x=\"449\" y=\"792\"/>\n    </contour>\n    <contour>\n      <point x=\"810\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"751\" y=\"792\"/>\n      <point x=\"712\" y=\"831\"/>\n      <point x=\"712\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"949\"/>\n      <point x=\"751\" y=\"988\"/>\n      <point x=\"810\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"988\"/>\n      <point x=\"908\" y=\"949\"/>\n      <point x=\"908\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"831\"/>\n      <point x=\"869\" y=\"792\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A0\"/>\n  <note>\nfilledbox\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackV_erticalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerticalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2E\"/>\n  <note>\nuni2B2E\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"185\"/>\n      <point x=\"915\" y=\"394\"/>\n      <point x=\"915\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"1026\"/>\n      <point x=\"790\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1235\"/>\n      <point x=\"285\" y=\"1026\"/>\n      <point x=\"285\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"394\"/>\n      <point x=\"410\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackV_erticalR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerticalRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AE\"/>\n  <note>\nuni25AE\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"1310\" type=\"line\"/>\n      <point x=\"300\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blackV_erysmallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerysmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1D\"/>\n  <note>\nuni2B1D\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blank-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blank-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2800\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blank.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blank\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2423\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"-338\" type=\"line\"/>\n      <point x=\"1100\" y=\"-338\" type=\"line\"/>\n      <point x=\"1100\" y=\"-248\" type=\"line\"/>\n      <point x=\"100\" y=\"-248\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1006\" y=\"-298\" type=\"line\"/>\n      <point x=\"1100\" y=\"-298\" type=\"line\"/>\n      <point x=\"1100\" y=\"-20\" type=\"line\"/>\n      <point x=\"1006\" y=\"-20\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"-298\" type=\"line\"/>\n      <point x=\"194\" y=\"-298\" type=\"line\"/>\n      <point x=\"194\" y=\"-20\" type=\"line\"/>\n      <point x=\"100\" y=\"-20\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blankS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blankSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2422\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"985\" type=\"line\"/>\n      <point x=\"706\" y=\"1305\" type=\"line\"/>\n      <point x=\"706\" y=\"1411\" type=\"line\"/>\n      <point x=\"0\" y=\"1091\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"397\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"-20\"/>\n      <point x=\"1075\" y=\"206\"/>\n      <point x=\"1075\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1075\" y=\"906\"/>\n      <point x=\"922\" y=\"1080\"/>\n      <point x=\"655\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"1080\"/>\n      <point x=\"335\" y=\"1010\"/>\n      <point x=\"287\" y=\"868\" type=\"curve\"/>\n      <point x=\"215\" y=\"868\" type=\"line\"/>\n      <point x=\"277\" y=\"596\" type=\"line\"/>\n      <point x=\"277\" y=\"859\"/>\n      <point x=\"400\" y=\"988\"/>\n      <point x=\"645\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"988\"/>\n      <point x=\"979\" y=\"848\"/>\n      <point x=\"979\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"264\"/>\n      <point x=\"783\" y=\"72\"/>\n      <point x=\"439\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"72\"/>\n      <point x=\"304\" y=\"77\"/>\n      <point x=\"249\" y=\"86\" type=\"curve\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"-12\"/>\n      <point x=\"326\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"277\" y=\"18\" type=\"line\"/>\n      <point x=\"277\" y=\"1500\" type=\"line\"/>\n      <point x=\"187\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"0\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBED\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-LC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-LC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"196\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"196\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-LC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-LC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"115\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"115\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-ML.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-ML\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"2226\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"600\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"300\" y=\"-480\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-ML.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-ML.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"1900\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"300\" y=\"-480\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-MR.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-MR\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"2226\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"600\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"900\" y=\"-480\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-MR.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-MR.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"1900\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"900\" y=\"-480\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-UC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-UC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1549\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"1549\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-UC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-UC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1305\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"1305\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB40.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB40\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB40.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB41.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB41\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB41.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB42.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB42\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB42.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB43.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB43\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB43.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB44.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB44\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB44.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB45\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB49.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB49\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB49.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB50.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB50\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB50.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB51.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB51\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB51.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB52.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB52\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB52.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB53.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB53\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB53.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB54.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB54\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB54.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB55.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB55\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB55.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB57.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB57\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB57.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB58.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB58\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB58.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB59.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB59\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB59.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB60.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB60\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB60.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB61.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB61\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB61.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB62.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB62\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB62.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB63.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB63\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB63.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB64.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB64\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB64.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB65.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB65\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB65.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB66.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB66\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB66.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB67.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB67\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB67.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD02\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD17\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD70\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1235678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1235678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD87\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1237.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1237\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1237.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1237.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1238.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1238\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD77\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1238.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1238.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD05\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD13\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1245678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1245678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD98\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1247.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1247\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1247.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1247.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1248.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1248\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1248.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1248.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-125678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-125678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1257.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1257\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1257.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1257.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1258.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1258\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1258.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1258.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1267.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1267\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1267.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1267.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1268.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1268\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD92\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1268.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1268.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-127.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-127\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-127.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-127.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1278.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1278\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1278.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1278.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-128.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-128\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD73\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-128.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-128.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD07\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD15\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1345678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1345678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-135.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-135\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-135.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-135.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-137.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-137\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-137.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-137.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-138.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-138\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD75\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-138.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-138.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD04\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD11\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-145678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-145678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD89\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-147.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-147\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-147.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-147.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-148.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-148\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD79\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-148.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-148.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-15678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-15678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-157.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-157\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD45\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-157.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-157.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-158.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-158\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD81\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-158.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-158.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD19\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-167.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-167\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-167.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-167.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-168.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-168\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD90\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-168.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-168.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-17.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-17\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-17.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-17.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-178.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-178\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-178.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-178.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-18.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-18\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD71\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-18.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-18.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD01\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD08\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD16\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2345678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2345678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-235678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-235678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD94\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-237.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-237\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-237.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-237.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-238.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-238\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD76\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-238.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-238.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD12\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-247.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-247\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-247.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-247.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-248.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-248\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-248.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-248.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-25678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-25678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-257.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-257\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-257.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-257.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-258.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-258\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-258.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-258.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-267.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-267\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-267.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-267.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-268.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-268\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD91\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-268.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-268.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-27.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-27\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-27.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-27.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-278.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-278\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-278.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-278.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-28.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-28\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD72\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-28.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-28.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD00\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD06\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD14\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD99\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-35678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-35678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-35678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-35678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD93\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-37.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-37\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-37.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-37.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-38.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-38\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD74\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-38.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-38.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD03\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD10\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-45678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-45678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD88\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD78\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD09\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-58.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-58\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD80\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-58.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-58.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD18\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-67.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-67\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-67.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-67.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-7\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-7.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-8\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-8.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-8.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-LC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-LC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-LC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-LC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-ML.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-ML\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-ML.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-ML.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-MR.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-MR\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-MR.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-MR.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-UC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-UC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-UC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-UC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE90\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-159.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-159\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-159.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-159.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE91\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE92\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE93\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-48C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-48C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE94\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-59D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-59D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-59D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-59D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-7\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-7.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-8.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-8CG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8CG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-8CG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8CG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-9.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE98\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-9.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-9D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-9D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE99\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-CG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-CG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-CG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-CG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-DEF.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-DEF\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-DEF.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-DEF.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-EFG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-EFG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-EFG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-EFG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-G.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-G\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-G.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-G.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-123456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE87\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE77\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE73\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-135.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-135\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-135.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE75\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE89\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE79\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE81\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE71\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE76\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE72\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE74\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE88\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE78\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE80\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE70\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB00\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB02\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB06\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB15\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB19\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB12\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB04\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB08\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB17\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB10\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB01\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB05\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB14\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB09\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB18\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB11\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB03\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB13\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB07\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB16\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bottomH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bottomHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BCB\"/>\n  <note>\nuni2BCB\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bottomH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bottomHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B19\"/>\n  <note>\nuni2B19\n</note>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2566\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2557\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2554\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2550\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2569\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255D\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255A\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2551\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256C\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2563\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2560\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2565\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2556\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2553\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2530\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2512\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2527\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250E\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251F\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndUpHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2541\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndUpHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252F\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2511\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2529\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-571\" type=\"line\"/>\n      <point x=\"647\" y=\"-571\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"2185\" type=\"line\"/>\n      <point x=\"506\" y=\"2185\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2521\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndUpHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2547\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndUpHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2564\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2555\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2552\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254D\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"613\" type=\"line\"/>\n      <point x=\"1050\" y=\"613\" type=\"line\"/>\n      <point x=\"1050\" y=\"801\" type=\"line\"/>\n      <point x=\"750\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"613\" type=\"line\"/>\n      <point x=\"450\" y=\"613\" type=\"line\"/>\n      <point x=\"450\" y=\"801\" type=\"line\"/>\n      <point x=\"150\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"613\" type=\"line\"/>\n      <point x=\"1050\" y=\"613\" type=\"line\"/>\n      <point x=\"1050\" y=\"801\" type=\"line\"/>\n      <point x=\"750\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"613\" type=\"line\"/>\n      <point x=\"450\" y=\"613\" type=\"line\"/>\n      <point x=\"450\" y=\"801\" type=\"line\"/>\n      <point x=\"150\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254F\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1013\" type=\"line\"/>\n      <point x=\"694\" y=\"1013\" type=\"line\"/>\n      <point x=\"694\" y=\"1626\" type=\"line\"/>\n      <point x=\"506\" y=\"1626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-212\" type=\"line\"/>\n      <point x=\"694\" y=\"-212\" type=\"line\"/>\n      <point x=\"694\" y=\"401\" type=\"line\"/>\n      <point x=\"506\" y=\"401\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"972\" type=\"line\"/>\n      <point x=\"694\" y=\"972\" type=\"line\"/>\n      <point x=\"694\" y=\"1503\" type=\"line\"/>\n      <point x=\"506\" y=\"1503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-90\" type=\"line\"/>\n      <point x=\"694\" y=\"-90\" type=\"line\"/>\n      <point x=\"694\" y=\"441\" type=\"line\"/>\n      <point x=\"506\" y=\"441\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257B\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2533\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2513\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250F\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2501\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2578\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeftAndLightRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257E\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeftAndLightRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2509\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"613\" type=\"line\"/>\n      <point x=\"1162\" y=\"613\" type=\"line\"/>\n      <point x=\"1162\" y=\"801\" type=\"line\"/>\n      <point x=\"937\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"613\" type=\"line\"/>\n      <point x=\"262\" y=\"613\" type=\"line\"/>\n      <point x=\"262\" y=\"801\" type=\"line\"/>\n      <point x=\"37\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"613\" type=\"line\"/>\n      <point x=\"562\" y=\"613\" type=\"line\"/>\n      <point x=\"562\" y=\"801\" type=\"line\"/>\n      <point x=\"337\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"613\" type=\"line\"/>\n      <point x=\"862\" y=\"613\" type=\"line\"/>\n      <point x=\"862\" y=\"801\" type=\"line\"/>\n      <point x=\"637\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"613\" type=\"line\"/>\n      <point x=\"1162\" y=\"613\" type=\"line\"/>\n      <point x=\"1162\" y=\"801\" type=\"line\"/>\n      <point x=\"937\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"613\" type=\"line\"/>\n      <point x=\"262\" y=\"613\" type=\"line\"/>\n      <point x=\"262\" y=\"801\" type=\"line\"/>\n      <point x=\"37\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"613\" type=\"line\"/>\n      <point x=\"562\" y=\"613\" type=\"line\"/>\n      <point x=\"562\" y=\"801\" type=\"line\"/>\n      <point x=\"337\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"613\" type=\"line\"/>\n      <point x=\"862\" y=\"613\" type=\"line\"/>\n      <point x=\"862\" y=\"801\" type=\"line\"/>\n      <point x=\"637\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250B\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1394\" type=\"line\"/>\n      <point x=\"694\" y=\"1394\" type=\"line\"/>\n      <point x=\"694\" y=\"1853\" type=\"line\"/>\n      <point x=\"506\" y=\"1853\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-442\" type=\"line\"/>\n      <point x=\"694\" y=\"-442\" type=\"line\"/>\n      <point x=\"694\" y=\"17\" type=\"line\"/>\n      <point x=\"506\" y=\"17\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"170\" type=\"line\"/>\n      <point x=\"694\" y=\"170\" type=\"line\"/>\n      <point x=\"694\" y=\"629\" type=\"line\"/>\n      <point x=\"506\" y=\"629\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"782\" type=\"line\"/>\n      <point x=\"694\" y=\"782\" type=\"line\"/>\n      <point x=\"694\" y=\"1241\" type=\"line\"/>\n      <point x=\"506\" y=\"1241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1304\" type=\"line\"/>\n      <point x=\"694\" y=\"1304\" type=\"line\"/>\n      <point x=\"694\" y=\"1703\" type=\"line\"/>\n      <point x=\"506\" y=\"1703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-289\" type=\"line\"/>\n      <point x=\"694\" y=\"-289\" type=\"line\"/>\n      <point x=\"694\" y=\"110\" type=\"line\"/>\n      <point x=\"506\" y=\"110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"242\" type=\"line\"/>\n      <point x=\"694\" y=\"242\" type=\"line\"/>\n      <point x=\"694\" y=\"641\" type=\"line\"/>\n      <point x=\"506\" y=\"641\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"773\" type=\"line\"/>\n      <point x=\"694\" y=\"773\" type=\"line\"/>\n      <point x=\"694\" y=\"1172\" type=\"line\"/>\n      <point x=\"506\" y=\"1172\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257A\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2505\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"613\" type=\"line\"/>\n      <point x=\"1133\" y=\"613\" type=\"line\"/>\n      <point x=\"1133\" y=\"801\" type=\"line\"/>\n      <point x=\"866\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"613\" type=\"line\"/>\n      <point x=\"333\" y=\"613\" type=\"line\"/>\n      <point x=\"333\" y=\"801\" type=\"line\"/>\n      <point x=\"66\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"613\" type=\"line\"/>\n      <point x=\"733\" y=\"613\" type=\"line\"/>\n      <point x=\"733\" y=\"801\" type=\"line\"/>\n      <point x=\"466\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"613\" type=\"line\"/>\n      <point x=\"1133\" y=\"613\" type=\"line\"/>\n      <point x=\"1133\" y=\"801\" type=\"line\"/>\n      <point x=\"866\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"613\" type=\"line\"/>\n      <point x=\"333\" y=\"613\" type=\"line\"/>\n      <point x=\"333\" y=\"801\" type=\"line\"/>\n      <point x=\"66\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"613\" type=\"line\"/>\n      <point x=\"733\" y=\"613\" type=\"line\"/>\n      <point x=\"733\" y=\"801\" type=\"line\"/>\n      <point x=\"466\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2507\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1250\" type=\"line\"/>\n      <point x=\"694\" y=\"1250\" type=\"line\"/>\n      <point x=\"694\" y=\"1794\" type=\"line\"/>\n      <point x=\"506\" y=\"1794\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-382\" type=\"line\"/>\n      <point x=\"694\" y=\"-382\" type=\"line\"/>\n      <point x=\"694\" y=\"162\" type=\"line\"/>\n      <point x=\"506\" y=\"162\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"434\" type=\"line\"/>\n      <point x=\"694\" y=\"434\" type=\"line\"/>\n      <point x=\"694\" y=\"978\" type=\"line\"/>\n      <point x=\"506\" y=\"978\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1179\" type=\"line\"/>\n      <point x=\"694\" y=\"1179\" type=\"line\"/>\n      <point x=\"694\" y=\"1651\" type=\"line\"/>\n      <point x=\"506\" y=\"1651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-237\" type=\"line\"/>\n      <point x=\"694\" y=\"-237\" type=\"line\"/>\n      <point x=\"694\" y=\"235\" type=\"line\"/>\n      <point x=\"506\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"471\" type=\"line\"/>\n      <point x=\"694\" y=\"471\" type=\"line\"/>\n      <point x=\"694\" y=\"943\" type=\"line\"/>\n      <point x=\"506\" y=\"943\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2579\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_p.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUp.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253B\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251B\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLightDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257F\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLightDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2517\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2503\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254B\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252B\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2523\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftDownHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2545\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftDownHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2535\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightVerticalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightVerticalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2532\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253A\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightVerticalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254A\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightVerticalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftUpHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2543\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftUpHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"464\"/>\n      <point x=\"357\" y=\"754\"/>\n      <point x=\"0\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"0\" y=\"660\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"660\"/>\n      <point x=\"553\" y=\"412\"/>\n      <point x=\"553\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"464\"/>\n      <point x=\"357\" y=\"754\"/>\n      <point x=\"0\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"0\" y=\"660\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"660\"/>\n      <point x=\"553\" y=\"412\"/>\n      <point x=\"553\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"412\"/>\n      <point x=\"895\" y=\"660\"/>\n      <point x=\"1200\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1200\" y=\"754\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"754\"/>\n      <point x=\"553\" y=\"464\"/>\n      <point x=\"553\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"412\"/>\n      <point x=\"895\" y=\"660\"/>\n      <point x=\"1200\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1200\" y=\"754\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"754\"/>\n      <point x=\"553\" y=\"464\"/>\n      <point x=\"553\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256F\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"0\" y=\"660\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"660\"/>\n      <point x=\"647\" y=\"950\"/>\n      <point x=\"647\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"1002\"/>\n      <point x=\"305\" y=\"754\"/>\n      <point x=\"0\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"0\" y=\"660\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"660\"/>\n      <point x=\"647\" y=\"950\"/>\n      <point x=\"647\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"1002\"/>\n      <point x=\"305\" y=\"754\"/>\n      <point x=\"0\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2570\"/>\n  <outline>\n    <contour>\n      <point x=\"1200\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1200\" y=\"754\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"754\"/>\n      <point x=\"647\" y=\"1002\"/>\n      <point x=\"647\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"950\"/>\n      <point x=\"843\" y=\"660\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1200\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1200\" y=\"754\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"754\"/>\n      <point x=\"647\" y=\"1002\"/>\n      <point x=\"647\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"950\"/>\n      <point x=\"843\" y=\"660\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalC_ross.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalCross\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2573\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-518\" type=\"line\"/>\n      <point x=\"52\" y=\"-518\" type=\"line\"/>\n      <point x=\"600\" y=\"600\" type=\"line\"/>\n      <point x=\"1148\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-411\" type=\"line\"/>\n      <point x=\"652\" y=\"707\" type=\"line\"/>\n      <point x=\"1200\" y=\"1825\" type=\"line\"/>\n      <point x=\"1200\" y=\"1932\" type=\"line\"/>\n      <point x=\"1148\" y=\"1932\" type=\"line\"/>\n      <point x=\"600\" y=\"814\" type=\"line\"/>\n      <point x=\"52\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1825\" type=\"line\"/>\n      <point x=\"548\" y=\"707\" type=\"line\"/>\n      <point x=\"0\" y=\"-411\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalCross.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-355\" type=\"line\"/>\n      <point x=\"54\" y=\"-355\" type=\"line\"/>\n      <point x=\"600\" y=\"611\" type=\"line\"/>\n      <point x=\"1146\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-259\" type=\"line\"/>\n      <point x=\"654\" y=\"707\" type=\"line\"/>\n      <point x=\"1200\" y=\"1673\" type=\"line\"/>\n      <point x=\"1200\" y=\"1769\" type=\"line\"/>\n      <point x=\"1146\" y=\"1769\" type=\"line\"/>\n      <point x=\"600\" y=\"803\" type=\"line\"/>\n      <point x=\"54\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1673\" type=\"line\"/>\n      <point x=\"546\" y=\"707\" type=\"line\"/>\n      <point x=\"0\" y=\"-259\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperLeftToLowerRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2572\"/>\n  <outline>\n    <contour>\n      <point x=\"1148\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-411\" type=\"line\"/>\n      <point x=\"52\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1825\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperLeftToLowerRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1146\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-259\" type=\"line\"/>\n      <point x=\"54\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1673\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperRightToLowerLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2571\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-518\" type=\"line\"/>\n      <point x=\"52\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"1825\" type=\"line\"/>\n      <point x=\"1200\" y=\"1932\" type=\"line\"/>\n      <point x=\"1148\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"-411\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperRightToLowerLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-355\" type=\"line\"/>\n      <point x=\"54\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"1673\" type=\"line\"/>\n      <point x=\"1200\" y=\"1769\" type=\"line\"/>\n      <point x=\"1146\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"-259\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254C\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"660\" type=\"line\"/>\n      <point x=\"1050\" y=\"660\" type=\"line\"/>\n      <point x=\"1050\" y=\"754\" type=\"line\"/>\n      <point x=\"750\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"660\" type=\"line\"/>\n      <point x=\"450\" y=\"660\" type=\"line\"/>\n      <point x=\"450\" y=\"754\" type=\"line\"/>\n      <point x=\"150\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"660\" type=\"line\"/>\n      <point x=\"1050\" y=\"660\" type=\"line\"/>\n      <point x=\"1050\" y=\"754\" type=\"line\"/>\n      <point x=\"750\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"660\" type=\"line\"/>\n      <point x=\"450\" y=\"660\" type=\"line\"/>\n      <point x=\"450\" y=\"754\" type=\"line\"/>\n      <point x=\"150\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1013\" type=\"line\"/>\n      <point x=\"647\" y=\"1013\" type=\"line\"/>\n      <point x=\"647\" y=\"1626\" type=\"line\"/>\n      <point x=\"553\" y=\"1626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-212\" type=\"line\"/>\n      <point x=\"647\" y=\"-212\" type=\"line\"/>\n      <point x=\"647\" y=\"401\" type=\"line\"/>\n      <point x=\"553\" y=\"401\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"972\" type=\"line\"/>\n      <point x=\"647\" y=\"972\" type=\"line\"/>\n      <point x=\"647\" y=\"1503\" type=\"line\"/>\n      <point x=\"553\" y=\"1503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-90\" type=\"line\"/>\n      <point x=\"647\" y=\"-90\" type=\"line\"/>\n      <point x=\"647\" y=\"441\" type=\"line\"/>\n      <point x=\"553\" y=\"441\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2577\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2510\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2500\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2574\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeftAndHeavyRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeftAndHeavyRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2508\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"660\" type=\"line\"/>\n      <point x=\"1162\" y=\"660\" type=\"line\"/>\n      <point x=\"1162\" y=\"754\" type=\"line\"/>\n      <point x=\"937\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"660\" type=\"line\"/>\n      <point x=\"262\" y=\"660\" type=\"line\"/>\n      <point x=\"262\" y=\"754\" type=\"line\"/>\n      <point x=\"37\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"660\" type=\"line\"/>\n      <point x=\"562\" y=\"660\" type=\"line\"/>\n      <point x=\"562\" y=\"754\" type=\"line\"/>\n      <point x=\"337\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"660\" type=\"line\"/>\n      <point x=\"862\" y=\"660\" type=\"line\"/>\n      <point x=\"862\" y=\"754\" type=\"line\"/>\n      <point x=\"637\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"660\" type=\"line\"/>\n      <point x=\"1162\" y=\"660\" type=\"line\"/>\n      <point x=\"1162\" y=\"754\" type=\"line\"/>\n      <point x=\"937\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"660\" type=\"line\"/>\n      <point x=\"262\" y=\"660\" type=\"line\"/>\n      <point x=\"262\" y=\"754\" type=\"line\"/>\n      <point x=\"37\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"660\" type=\"line\"/>\n      <point x=\"562\" y=\"660\" type=\"line\"/>\n      <point x=\"562\" y=\"754\" type=\"line\"/>\n      <point x=\"337\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"660\" type=\"line\"/>\n      <point x=\"862\" y=\"660\" type=\"line\"/>\n      <point x=\"862\" y=\"754\" type=\"line\"/>\n      <point x=\"637\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250A\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1535\" type=\"line\"/>\n      <point x=\"647\" y=\"1535\" type=\"line\"/>\n      <point x=\"647\" y=\"1994\" type=\"line\"/>\n      <point x=\"553\" y=\"1994\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-301\" type=\"line\"/>\n      <point x=\"647\" y=\"-301\" type=\"line\"/>\n      <point x=\"647\" y=\"158\" type=\"line\"/>\n      <point x=\"553\" y=\"158\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"311\" type=\"line\"/>\n      <point x=\"647\" y=\"311\" type=\"line\"/>\n      <point x=\"647\" y=\"770\" type=\"line\"/>\n      <point x=\"553\" y=\"770\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"923\" type=\"line\"/>\n      <point x=\"647\" y=\"923\" type=\"line\"/>\n      <point x=\"647\" y=\"1382\" type=\"line\"/>\n      <point x=\"553\" y=\"1382\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1304\" type=\"line\"/>\n      <point x=\"647\" y=\"1304\" type=\"line\"/>\n      <point x=\"647\" y=\"1703\" type=\"line\"/>\n      <point x=\"553\" y=\"1703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-289\" type=\"line\"/>\n      <point x=\"647\" y=\"-289\" type=\"line\"/>\n      <point x=\"647\" y=\"110\" type=\"line\"/>\n      <point x=\"553\" y=\"110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"242\" type=\"line\"/>\n      <point x=\"647\" y=\"242\" type=\"line\"/>\n      <point x=\"647\" y=\"641\" type=\"line\"/>\n      <point x=\"553\" y=\"641\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"773\" type=\"line\"/>\n      <point x=\"647\" y=\"773\" type=\"line\"/>\n      <point x=\"647\" y=\"1172\" type=\"line\"/>\n      <point x=\"553\" y=\"1172\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2576\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2504\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"660\" type=\"line\"/>\n      <point x=\"1133\" y=\"660\" type=\"line\"/>\n      <point x=\"1133\" y=\"754\" type=\"line\"/>\n      <point x=\"866\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"660\" type=\"line\"/>\n      <point x=\"333\" y=\"660\" type=\"line\"/>\n      <point x=\"333\" y=\"754\" type=\"line\"/>\n      <point x=\"66\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"660\" type=\"line\"/>\n      <point x=\"733\" y=\"660\" type=\"line\"/>\n      <point x=\"733\" y=\"754\" type=\"line\"/>\n      <point x=\"466\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"660\" type=\"line\"/>\n      <point x=\"1133\" y=\"660\" type=\"line\"/>\n      <point x=\"1133\" y=\"754\" type=\"line\"/>\n      <point x=\"866\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"660\" type=\"line\"/>\n      <point x=\"333\" y=\"660\" type=\"line\"/>\n      <point x=\"333\" y=\"754\" type=\"line\"/>\n      <point x=\"66\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"660\" type=\"line\"/>\n      <point x=\"733\" y=\"660\" type=\"line\"/>\n      <point x=\"733\" y=\"754\" type=\"line\"/>\n      <point x=\"466\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2506\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1391\" type=\"line\"/>\n      <point x=\"647\" y=\"1391\" type=\"line\"/>\n      <point x=\"647\" y=\"1935\" type=\"line\"/>\n      <point x=\"553\" y=\"1935\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-241\" type=\"line\"/>\n      <point x=\"647\" y=\"-241\" type=\"line\"/>\n      <point x=\"647\" y=\"303\" type=\"line\"/>\n      <point x=\"553\" y=\"303\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"575\" type=\"line\"/>\n      <point x=\"647\" y=\"575\" type=\"line\"/>\n      <point x=\"647\" y=\"1119\" type=\"line\"/>\n      <point x=\"553\" y=\"1119\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1179\" type=\"line\"/>\n      <point x=\"647\" y=\"1179\" type=\"line\"/>\n      <point x=\"647\" y=\"1651\" type=\"line\"/>\n      <point x=\"553\" y=\"1651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-237\" type=\"line\"/>\n      <point x=\"647\" y=\"-237\" type=\"line\"/>\n      <point x=\"647\" y=\"235\" type=\"line\"/>\n      <point x=\"553\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"471\" type=\"line\"/>\n      <point x=\"647\" y=\"471\" type=\"line\"/>\n      <point x=\"647\" y=\"943\" type=\"line\"/>\n      <point x=\"553\" y=\"943\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2575\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_p.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUp.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHeavyDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257D\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHeavyDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2534\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2518\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2514\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2502\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2524\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightDownHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2546\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightDownHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2536\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftVerticalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftVerticalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2531\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2539\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftVerticalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2549\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftVerticalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightUpHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2544\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightUpHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2568\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255C\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2559\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndDownHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2540\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndDownHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2538\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2526\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251A\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2516\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndDownHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2548\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndDownHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2537\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252A\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2519\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2522\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2515\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2567\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255B\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2558\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256B\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2562\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255F\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2542\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2528\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2520\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253F\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2525\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256A\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2561\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/braceleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007B\"/>\n  <outline>\n    <contour>\n      <point x=\"836\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"-214\"/>\n      <point x=\"944\" y=\"-206\"/>\n      <point x=\"982\" y=\"-194\" type=\"curve\"/>\n      <point x=\"969\" y=\"-112\" type=\"line\"/>\n      <point x=\"927\" y=\"-119\"/>\n      <point x=\"887\" y=\"-124\"/>\n      <point x=\"854\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"708\" y=\"-124\"/>\n      <point x=\"598\" y=\"-21\"/>\n      <point x=\"630\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"264\"/>\n      <point x=\"716\" y=\"367\"/>\n      <point x=\"716\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"618\"/>\n      <point x=\"587\" y=\"699\"/>\n      <point x=\"368\" y=\"702\" type=\"curve\"/>\n      <point x=\"368\" y=\"710\" type=\"line\"/>\n      <point x=\"587\" y=\"713\"/>\n      <point x=\"716\" y=\"796\"/>\n      <point x=\"716\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"1058\"/>\n      <point x=\"652\" y=\"1161\"/>\n      <point x=\"630\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"598\" y=\"1439\"/>\n      <point x=\"708\" y=\"1536\"/>\n      <point x=\"854\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"1536\"/>\n      <point x=\"926\" y=\"1531\"/>\n      <point x=\"968\" y=\"1524\" type=\"curve\"/>\n      <point x=\"982\" y=\"1606\" type=\"line\"/>\n      <point x=\"944\" y=\"1618\"/>\n      <point x=\"903\" y=\"1626\"/>\n      <point x=\"836\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"1626\"/>\n      <point x=\"494\" y=\"1498\"/>\n      <point x=\"534\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"554\" y=\"1164\"/>\n      <point x=\"616\" y=\"1060\"/>\n      <point x=\"616\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"832\"/>\n      <point x=\"495\" y=\"772\"/>\n      <point x=\"290\" y=\"772\" type=\"curve\"/>\n      <point x=\"290\" y=\"640\" type=\"line\"/>\n      <point x=\"501\" y=\"640\"/>\n      <point x=\"616\" y=\"607\"/>\n      <point x=\"616\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"375\"/>\n      <point x=\"553\" y=\"267\"/>\n      <point x=\"534\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"494\" y=\"-77\"/>\n      <point x=\"644\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/braceleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"870\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"-214\"/>\n      <point x=\"1052\" y=\"-206\"/>\n      <point x=\"1116\" y=\"-194\" type=\"curve\"/>\n      <point x=\"1103\" y=\"-112\" type=\"line\"/>\n      <point x=\"1024\" y=\"-119\"/>\n      <point x=\"950\" y=\"-124\"/>\n      <point x=\"888\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"-124\"/>\n      <point x=\"572\" y=\"-21\"/>\n      <point x=\"604\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"624\" y=\"264\"/>\n      <point x=\"690\" y=\"367\"/>\n      <point x=\"690\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"618\"/>\n      <point x=\"561\" y=\"699\"/>\n      <point x=\"342\" y=\"702\" type=\"curve\"/>\n      <point x=\"342\" y=\"710\" type=\"line\"/>\n      <point x=\"561\" y=\"713\"/>\n      <point x=\"690\" y=\"796\"/>\n      <point x=\"690\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"1058\"/>\n      <point x=\"626\" y=\"1161\"/>\n      <point x=\"604\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"1439\"/>\n      <point x=\"709\" y=\"1536\"/>\n      <point x=\"888\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"1536\"/>\n      <point x=\"1023\" y=\"1531\"/>\n      <point x=\"1102\" y=\"1524\" type=\"curve\"/>\n      <point x=\"1116\" y=\"1606\" type=\"line\"/>\n      <point x=\"1052\" y=\"1618\"/>\n      <point x=\"983\" y=\"1626\"/>\n      <point x=\"870\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"1626\"/>\n      <point x=\"468\" y=\"1498\"/>\n      <point x=\"508\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"528\" y=\"1164\"/>\n      <point x=\"590\" y=\"1060\"/>\n      <point x=\"590\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"832\"/>\n      <point x=\"469\" y=\"772\"/>\n      <point x=\"264\" y=\"772\" type=\"curve\"/>\n      <point x=\"264\" y=\"640\" type=\"line\"/>\n      <point x=\"475\" y=\"640\"/>\n      <point x=\"590\" y=\"607\"/>\n      <point x=\"590\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"375\"/>\n      <point x=\"527\" y=\"267\"/>\n      <point x=\"508\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"-77\"/>\n      <point x=\"644\" y=\"-214\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/braceright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007D\"/>\n  <outline>\n    <contour>\n      <point x=\"364\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"-214\"/>\n      <point x=\"706\" y=\"-77\"/>\n      <point x=\"666\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"267\"/>\n      <point x=\"584\" y=\"375\"/>\n      <point x=\"584\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"607\"/>\n      <point x=\"699\" y=\"640\"/>\n      <point x=\"910\" y=\"640\" type=\"curve\"/>\n      <point x=\"910\" y=\"772\" type=\"line\"/>\n      <point x=\"705\" y=\"772\"/>\n      <point x=\"584\" y=\"832\"/>\n      <point x=\"584\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"1060\"/>\n      <point x=\"646\" y=\"1164\"/>\n      <point x=\"666\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"1498\"/>\n      <point x=\"556\" y=\"1626\"/>\n      <point x=\"364\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"1626\"/>\n      <point x=\"256\" y=\"1618\"/>\n      <point x=\"218\" y=\"1606\" type=\"curve\"/>\n      <point x=\"232\" y=\"1524\" type=\"line\"/>\n      <point x=\"274\" y=\"1531\"/>\n      <point x=\"313\" y=\"1536\"/>\n      <point x=\"346\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"1536\"/>\n      <point x=\"598\" y=\"1439\"/>\n      <point x=\"570\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"1161\"/>\n      <point x=\"484\" y=\"1058\"/>\n      <point x=\"484\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"796\"/>\n      <point x=\"613\" y=\"713\"/>\n      <point x=\"832\" y=\"710\" type=\"curve\"/>\n      <point x=\"832\" y=\"702\" type=\"line\"/>\n      <point x=\"613\" y=\"699\"/>\n      <point x=\"484\" y=\"618\"/>\n      <point x=\"484\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"367\"/>\n      <point x=\"554\" y=\"264\"/>\n      <point x=\"570\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"596\" y=\"-21\"/>\n      <point x=\"492\" y=\"-124\"/>\n      <point x=\"346\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"-124\"/>\n      <point x=\"273\" y=\"-119\"/>\n      <point x=\"231\" y=\"-112\" type=\"curve\"/>\n      <point x=\"218\" y=\"-194\" type=\"line\"/>\n      <point x=\"256\" y=\"-206\"/>\n      <point x=\"297\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/braceright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright_numbersign.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"564\" y=\"419\" type=\"line\"/>\n      <point x=\"2096\" y=\"419\" type=\"line\"/>\n      <point x=\"2096\" y=\"509\" type=\"line\"/>\n      <point x=\"564\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1292\" y=\"0\" type=\"line\"/>\n      <point x=\"1382\" y=\"0\" type=\"line\"/>\n      <point x=\"1502\" y=\"1420\" type=\"line\"/>\n      <point x=\"1412\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"564\" y=\"911\" type=\"line\"/>\n      <point x=\"2096\" y=\"911\" type=\"line\"/>\n      <point x=\"2096\" y=\"1001\" type=\"line\"/>\n      <point x=\"564\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1738\" y=\"0\" type=\"line\"/>\n      <point x=\"1828\" y=\"0\" type=\"line\"/>\n      <point x=\"1948\" y=\"1420\" type=\"line\"/>\n      <point x=\"1858\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"389\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"581\" y=\"-214\"/>\n      <point x=\"731\" y=\"-77\"/>\n      <point x=\"691\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"267\"/>\n      <point x=\"609\" y=\"375\"/>\n      <point x=\"609\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"607\"/>\n      <point x=\"724\" y=\"640\"/>\n      <point x=\"935\" y=\"640\" type=\"curve\"/>\n      <point x=\"935\" y=\"772\" type=\"line\"/>\n      <point x=\"730\" y=\"772\"/>\n      <point x=\"609\" y=\"832\"/>\n      <point x=\"609\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"1060\"/>\n      <point x=\"671\" y=\"1164\"/>\n      <point x=\"691\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"1498\"/>\n      <point x=\"581\" y=\"1626\"/>\n      <point x=\"389\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"322\" y=\"1626\"/>\n      <point x=\"281\" y=\"1618\"/>\n      <point x=\"243\" y=\"1606\" type=\"curve\"/>\n      <point x=\"257\" y=\"1524\" type=\"line\"/>\n      <point x=\"299\" y=\"1531\"/>\n      <point x=\"338\" y=\"1536\"/>\n      <point x=\"371\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"1536\"/>\n      <point x=\"623\" y=\"1439\"/>\n      <point x=\"595\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"576\" y=\"1161\"/>\n      <point x=\"509\" y=\"1058\"/>\n      <point x=\"509\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"796\"/>\n      <point x=\"638\" y=\"713\"/>\n      <point x=\"857\" y=\"710\" type=\"curve\"/>\n      <point x=\"857\" y=\"702\" type=\"line\"/>\n      <point x=\"638\" y=\"699\"/>\n      <point x=\"509\" y=\"618\"/>\n      <point x=\"509\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"367\"/>\n      <point x=\"579\" y=\"264\"/>\n      <point x=\"595\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"-21\"/>\n      <point x=\"517\" y=\"-124\"/>\n      <point x=\"371\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"-124\"/>\n      <point x=\"298\" y=\"-119\"/>\n      <point x=\"256\" y=\"-112\" type=\"curve\"/>\n      <point x=\"243\" y=\"-194\" type=\"line\"/>\n      <point x=\"281\" y=\"-206\"/>\n      <point x=\"322\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bracketleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005B\"/>\n  <outline>\n    <contour>\n      <point x=\"396\" y=\"-214\" type=\"line\"/>\n      <point x=\"490\" y=\"-214\" type=\"line\"/>\n      <point x=\"490\" y=\"1634\" type=\"line\"/>\n      <point x=\"396\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"-214\" type=\"line\"/>\n      <point x=\"974\" y=\"-214\" type=\"line\"/>\n      <point x=\"974\" y=\"-124\" type=\"line\"/>\n      <point x=\"470\" y=\"-124\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"1544\" type=\"line\"/>\n      <point x=\"974\" y=\"1544\" type=\"line\"/>\n      <point x=\"974\" y=\"1634\" type=\"line\"/>\n      <point x=\"470\" y=\"1634\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bracketleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketleft_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"564\" y=\"-214\" type=\"line\"/>\n      <point x=\"662\" y=\"-214\" type=\"line\"/>\n      <point x=\"662\" y=\"1634\" type=\"line\"/>\n      <point x=\"564\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"642\" y=\"-214\" type=\"line\"/>\n      <point x=\"1248\" y=\"-214\" type=\"line\"/>\n      <point x=\"1248\" y=\"-122\" type=\"line\"/>\n      <point x=\"642\" y=\"-122\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"642\" y=\"1542\" type=\"line\"/>\n      <point x=\"1248\" y=\"1542\" type=\"line\"/>\n      <point x=\"1248\" y=\"1634\" type=\"line\"/>\n      <point x=\"642\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1154\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bracketright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005D\"/>\n  <outline>\n    <contour>\n      <point x=\"710\" y=\"-214\" type=\"line\"/>\n      <point x=\"804\" y=\"-214\" type=\"line\"/>\n      <point x=\"804\" y=\"1634\" type=\"line\"/>\n      <point x=\"710\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"226\" y=\"-214\" type=\"line\"/>\n      <point x=\"730\" y=\"-214\" type=\"line\"/>\n      <point x=\"730\" y=\"-124\" type=\"line\"/>\n      <point x=\"226\" y=\"-124\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"226\" y=\"1544\" type=\"line\"/>\n      <point x=\"730\" y=\"1544\" type=\"line\"/>\n      <point x=\"730\" y=\"1634\" type=\"line\"/>\n      <point x=\"226\" y=\"1634\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bracketright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketright_numbersign.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1738\" y=\"0\" type=\"line\"/>\n      <point x=\"1828\" y=\"0\" type=\"line\"/>\n      <point x=\"1948\" y=\"1420\" type=\"line\"/>\n      <point x=\"1858\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"794\" y=\"419\" type=\"line\"/>\n      <point x=\"2096\" y=\"419\" type=\"line\"/>\n      <point x=\"2096\" y=\"509\" type=\"line\"/>\n      <point x=\"794\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1292\" y=\"0\" type=\"line\"/>\n      <point x=\"1382\" y=\"0\" type=\"line\"/>\n      <point x=\"1502\" y=\"1420\" type=\"line\"/>\n      <point x=\"1412\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"794\" y=\"911\" type=\"line\"/>\n      <point x=\"2096\" y=\"911\" type=\"line\"/>\n      <point x=\"2096\" y=\"1001\" type=\"line\"/>\n      <point x=\"794\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <component base=\"bracketleft\" xScale=\"-1\" xOffset=\"1237\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"breve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D8\"/>\n  <outline>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/brevecomb-cy.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb-cy.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"803\" y=\"1570\"/>\n      <point x=\"920\" y=\"1676\"/>\n      <point x=\"920\" y=\"1860\" type=\"curve\"/>\n      <point x=\"830\" y=\"1860\" type=\"line\"/>\n      <point x=\"830\" y=\"1727\"/>\n      <point x=\"746\" y=\"1650\"/>\n      <point x=\"600\" y=\"1650\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"1650\"/>\n      <point x=\"370\" y=\"1727\"/>\n      <point x=\"370\" y=\"1860\" type=\"curve\"/>\n      <point x=\"280\" y=\"1860\" type=\"line\"/>\n      <point x=\"280\" y=\"1676\"/>\n      <point x=\"397\" y=\"1570\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/brevecomb-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb-cy\" format=\"2\">\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"1238\"/>\n      <point x=\"923\" y=\"1356\"/>\n      <point x=\"923\" y=\"1603\" type=\"curve\"/>\n      <point x=\"829\" y=\"1603\" type=\"line\"/>\n      <point x=\"829\" y=\"1412\"/>\n      <point x=\"770\" y=\"1324\"/>\n      <point x=\"600\" y=\"1324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"1324\"/>\n      <point x=\"371\" y=\"1408\"/>\n      <point x=\"371\" y=\"1603\" type=\"curve\"/>\n      <point x=\"277\" y=\"1603\" type=\"line\"/>\n      <point x=\"277\" y=\"1358\"/>\n      <point x=\"378\" y=\"1238\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/brevecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"1570\"/>\n      <point x=\"954\" y=\"1676\"/>\n      <point x=\"954\" y=\"1860\" type=\"curve\"/>\n      <point x=\"864\" y=\"1860\" type=\"line\"/>\n      <point x=\"864\" y=\"1730\"/>\n      <point x=\"767\" y=\"1655\"/>\n      <point x=\"600\" y=\"1655\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"1655\"/>\n      <point x=\"336\" y=\"1730\"/>\n      <point x=\"336\" y=\"1860\" type=\"curve\"/>\n      <point x=\"246\" y=\"1860\" type=\"line\"/>\n      <point x=\"246\" y=\"1676\"/>\n      <point x=\"376\" y=\"1570\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/brevecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb\" format=\"2\">\n  <unicode hex=\"0306\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"1238\"/>\n      <point x=\"934\" y=\"1355\"/>\n      <point x=\"934\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"1603\" type=\"line\"/>\n      <point x=\"844\" y=\"1603\" type=\"line\"/>\n      <point x=\"844\" y=\"1560\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"1408\"/>\n      <point x=\"757\" y=\"1323\"/>\n      <point x=\"600\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"443\" y=\"1323\"/>\n      <point x=\"356\" y=\"1408\"/>\n      <point x=\"356\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"1603\" type=\"line\"/>\n      <point x=\"266\" y=\"1603\" type=\"line\"/>\n      <point x=\"266\" y=\"1560\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"1355\"/>\n      <point x=\"388\" y=\"1238\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/brokenbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brokenbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A6\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"870\" type=\"line\"/>\n      <point x=\"647\" y=\"870\" type=\"line\"/>\n      <point x=\"647\" y=\"1730\" type=\"line\"/>\n      <point x=\"553\" y=\"1730\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-310\" type=\"line\"/>\n      <point x=\"647\" y=\"-310\" type=\"line\"/>\n      <point x=\"647\" y=\"550\" type=\"line\"/>\n      <point x=\"553\" y=\"550\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2022\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"554\"/>\n      <point x=\"756\" y=\"624\"/>\n      <point x=\"756\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"796\"/>\n      <point x=\"686\" y=\"866\"/>\n      <point x=\"600\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"514\" y=\"866\"/>\n      <point x=\"444\" y=\"796\"/>\n      <point x=\"444\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"624\"/>\n      <point x=\"514\" y=\"554\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bulletoperator.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bulletoperator\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2219\"/>\n  <outline>\n    <component base=\"bullet\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/bullseye.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bullseye\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CE\"/>\n  <note>\nuni25CE\n</note>\n  <outline>\n    <component base=\"largeCircle\"/>\n    <component base=\"whiteBullet\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/c.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"c\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0063\"/>\n  <anchor x=\"650\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"650\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"702\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"-20\"/>\n      <point x=\"929\" y=\"-13\"/>\n      <point x=\"1038\" y=\"15\" type=\"curve\"/>\n      <point x=\"1026\" y=\"106\" type=\"line\"/>\n      <point x=\"923\" y=\"85\"/>\n      <point x=\"815\" y=\"72\"/>\n      <point x=\"706\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"72\"/>\n      <point x=\"256\" y=\"233\"/>\n      <point x=\"256\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"256\" y=\"827\"/>\n      <point x=\"407\" y=\"988\"/>\n      <point x=\"666\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"988\"/>\n      <point x=\"918\" y=\"942\"/>\n      <point x=\"990\" y=\"807\" type=\"curve\"/>\n      <point x=\"1073\" y=\"860\" type=\"line\"/>\n      <point x=\"1014\" y=\"1000\"/>\n      <point x=\"868\" y=\"1080\"/>\n      <point x=\"674\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"1080\"/>\n      <point x=\"160\" y=\"878\"/>\n      <point x=\"160\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"169\"/>\n      <point x=\"346\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0107\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"acutecomb\" xOffset=\"140\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cancelC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cancelControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2418\"/>\n  <outline>\n    <component base=\"C.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"N.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cancelC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cancelControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"138\" y=\"219\" type=\"line\"/>\n      <point x=\"1125\" y=\"1145\" type=\"line\"/>\n      <point x=\"1062\" y=\"1203\" type=\"line\"/>\n      <point x=\"75\" y=\"275\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"275\" type=\"line\"/>\n      <point x=\"75\" y=\"275\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1062\" y=\"219\" type=\"line\"/>\n      <point x=\"1125\" y=\"275\" type=\"line\"/>\n      <point x=\"138\" y=\"1203\" type=\"line\"/>\n      <point x=\"75\" y=\"1145\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"1145\" type=\"line\"/>\n      <point x=\"1125\" y=\"1145\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/careof.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"careof\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2105\"/>\n  <outline>\n    <contour>\n      <point x=\"166\" y=\"306\" type=\"line\"/>\n      <point x=\"1058\" y=\"1030\" type=\"line\"/>\n      <point x=\"1004\" y=\"1106\" type=\"line\"/>\n      <point x=\"112\" y=\"382\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"834\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"-20\"/>\n      <point x=\"1122\" y=\"108\"/>\n      <point x=\"1122\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1122\" y=\"498\"/>\n      <point x=\"1008\" y=\"626\"/>\n      <point x=\"834\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"626\"/>\n      <point x=\"544\" y=\"498\"/>\n      <point x=\"544\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"108\"/>\n      <point x=\"659\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"834\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"72\"/>\n      <point x=\"640\" y=\"165\"/>\n      <point x=\"640\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"640\" y=\"442\"/>\n      <point x=\"716\" y=\"534\"/>\n      <point x=\"834\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"534\"/>\n      <point x=\"1026\" y=\"442\"/>\n      <point x=\"1026\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"165\"/>\n      <point x=\"950\" y=\"72\"/>\n    </contour>\n    <contour>\n      <point x=\"368\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"443\" y=\"815\"/>\n      <point x=\"514\" y=\"830\"/>\n      <point x=\"564\" y=\"855\" type=\"curve\"/>\n      <point x=\"550\" y=\"943\" type=\"line\"/>\n      <point x=\"499\" y=\"920\"/>\n      <point x=\"441\" y=\"907\"/>\n      <point x=\"392\" y=\"907\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"239\" y=\"907\"/>\n      <point x=\"152\" y=\"989\"/>\n      <point x=\"152\" y=\"1131\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"1268\"/>\n      <point x=\"236\" y=\"1347\"/>\n      <point x=\"382\" y=\"1347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"435\" y=\"1347\"/>\n      <point x=\"493\" y=\"1331\"/>\n      <point x=\"540\" y=\"1276\" type=\"curve\"/>\n      <point x=\"609\" y=\"1339\" type=\"line\"/>\n      <point x=\"566\" y=\"1403\"/>\n      <point x=\"483\" y=\"1439\"/>\n      <point x=\"380\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"174\" y=\"1439\"/>\n      <point x=\"56\" y=\"1327\"/>\n      <point x=\"56\" y=\"1131\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"56\" y=\"930\"/>\n      <point x=\"170\" y=\"815\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C7\"/>\n  <outline>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/caroncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caroncomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1800\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"559\" y=\"1580\" type=\"line\"/>\n      <point x=\"641\" y=\"1580\" type=\"line\"/>\n      <point x=\"926\" y=\"1840\" type=\"line\"/>\n      <point x=\"799\" y=\"1840\" type=\"line\"/>\n      <point x=\"541\" y=\"1601\" type=\"line\"/>\n      <point x=\"659\" y=\"1601\" type=\"line\"/>\n      <point x=\"401\" y=\"1840\" type=\"line\"/>\n      <point x=\"274\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/caroncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caroncomb\" format=\"2\">\n  <unicode hex=\"030C\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"569\" y=\"1210\" type=\"line\"/>\n      <point x=\"631\" y=\"1210\" type=\"line\"/>\n      <point x=\"926\" y=\"1590\" type=\"line\"/>\n      <point x=\"804\" y=\"1590\" type=\"line\"/>\n      <point x=\"590\" y=\"1299\" type=\"line\"/>\n      <point x=\"610\" y=\"1299\" type=\"line\"/>\n      <point x=\"396\" y=\"1590\" type=\"line\"/>\n      <point x=\"274\" y=\"1590\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/carriageR_eturnC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"carriageReturnControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240D\"/>\n  <outline>\n    <component base=\"C.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"R.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>R.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"carriageReturnControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"183\" type=\"line\"/>\n      <point x=\"1125\" y=\"295\" type=\"line\"/>\n      <point x=\"348\" y=\"645\" type=\"line\"/>\n      <point x=\"348\" y=\"773\" type=\"line\"/>\n      <point x=\"1125\" y=\"1123\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"70\" y=\"720\" type=\"line\"/>\n      <point x=\"70\" y=\"698\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"298\" y=\"664\" type=\"line\"/>\n      <point x=\"1125\" y=\"664\" type=\"line\"/>\n      <point x=\"1125\" y=\"754\" type=\"line\"/>\n      <point x=\"298\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ccaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010D\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"caroncomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ccedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E7\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"cedillacomb\" xOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ccircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0109\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"circumflexcomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010B\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"48\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cedi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B5\"/>\n  <outline>\n    <contour>\n      <point x=\"656\" y=\"-320\" type=\"line\"/>\n      <point x=\"750\" y=\"-320\" type=\"line\"/>\n      <point x=\"750\" y=\"1740\" type=\"line\"/>\n      <point x=\"656\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B8\"/>\n  <outline>\n    <component base=\"cedillacomb\" xOffset=\"-80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cedillacomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedillacomb\" format=\"2\">\n  <unicode hex=\"0327\"/>\n  <anchor x=\"575\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"500\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"434\" y=\"-480\" type=\"line\"/>\n      <point x=\"671\" y=\"-480\"/>\n      <point x=\"772\" y=\"-419\"/>\n      <point x=\"772\" y=\"-277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"-180\"/>\n      <point x=\"715\" y=\"-120\"/>\n      <point x=\"580\" y=\"-110\" type=\"curve\"/>\n      <point x=\"620\" y=\"12\" type=\"line\"/>\n      <point x=\"549\" y=\"49\" type=\"line\"/>\n      <point x=\"465\" y=\"-169\" type=\"line\"/>\n      <point x=\"621\" y=\"-169\"/>\n      <point x=\"686\" y=\"-201\"/>\n      <point x=\"686\" y=\"-277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"-363\"/>\n      <point x=\"611\" y=\"-399\"/>\n      <point x=\"434\" y=\"-399\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A2\"/>\n  <outline>\n    <contour>\n      <point x=\"616\" y=\"-334\" type=\"line\"/>\n      <point x=\"710\" y=\"-334\" type=\"line\"/>\n      <point x=\"710\" y=\"1394\" type=\"line\"/>\n      <point x=\"616\" y=\"1394\" type=\"line\"/>\n    </contour>\n    <component base=\"c\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/che-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"che-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0447\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"520\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"938\" y=\"422\" type=\"line\"/>\n      <point x=\"938\" y=\"512\" type=\"line\"/>\n      <point x=\"520\" y=\"512\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"512\"/>\n      <point x=\"226\" y=\"618\"/>\n      <point x=\"226\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"1060\" type=\"line\"/>\n      <point x=\"132\" y=\"1060\" type=\"line\"/>\n      <point x=\"132\" y=\"830\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"132\" y=\"558\"/>\n      <point x=\"260\" y=\"422\"/>\n    </contour>\n    <contour>\n      <point x=\"894\" y=\"0\" type=\"line\"/>\n      <point x=\"988\" y=\"0\" type=\"line\"/>\n      <point x=\"988\" y=\"1060\" type=\"line\"/>\n      <point x=\"894\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardDeleteAmstradCpc\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"2429\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1888\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"535\" type=\"line\"/>\r\n      <point x=\"0\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"535\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardDeleteAmstradCpc.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1602\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"412\" type=\"line\"/>\r\n      <point x=\"0\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"412\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-183\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-183\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkerBoardDeleteApple2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2427\"/>\n  <outline>\n    <contour>\n      <point x=\"140\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"140\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"140\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"140\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkerBoardDeleteTrs80\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2428\"/>\n  <outline>\n    <contour>\n      <point x=\"324\" y=\"1421\" type=\"line\"/>\n      <point x=\"508\" y=\"1421\" type=\"line\"/>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1421\" type=\"line\"/>\n      <point x=\"876\" y=\"1421\" type=\"line\"/>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"140\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"140\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"140\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"0\" type=\"line\"/>\n      <point x=\"324\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"0\" type=\"line\"/>\n      <point x=\"692\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardF_ill.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFill\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardF_ill.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFill.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardF_illI_nverse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFillInverse\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFillInverse.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/checkmark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkmark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2713\"/>\n  <outline>\n    <contour>\n      <point x=\"399\" y=\"0\" type=\"line\"/>\n      <point x=\"526\" y=\"0\" type=\"line\"/>\n      <point x=\"1102\" y=\"1420\" type=\"line\"/>\n      <point x=\"1005\" y=\"1420\" type=\"line\"/>\n      <point x=\"469\" y=\"100\" type=\"line\"/>\n      <point x=\"451\" y=\"100\" type=\"line\"/>\n      <point x=\"247\" y=\"601\" type=\"line\"/>\n      <point x=\"150\" y=\"601\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/chedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B7\"/>\n  <anchor x=\"560\" y=\"-270\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"958\" y=\"-270\" type=\"line\"/>\n      <point x=\"1052\" y=\"-270\" type=\"line\"/>\n      <point x=\"1052\" y=\"90\" type=\"line\"/>\n      <point x=\"958\" y=\"90\" type=\"line\"/>\n    </contour>\n    <component base=\"che-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/chi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C7\"/>\n  <anchor x=\"600\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"586\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1043\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1063\" y=\"-480\"/>\n      <point x=\"1082\" y=\"-477\"/>\n      <point x=\"1125\" y=\"-468\" type=\"curve\"/>\n      <point x=\"1114\" y=\"-382\" type=\"line\"/>\n      <point x=\"1094\" y=\"-387\"/>\n      <point x=\"1082\" y=\"-388\"/>\n      <point x=\"1063\" y=\"-388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"977\" y=\"-388\"/>\n      <point x=\"935\" y=\"-356\"/>\n      <point x=\"887\" y=\"-248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"389\" y=\"876\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"1033\"/>\n      <point x=\"259\" y=\"1080\"/>\n      <point x=\"143\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"123\" y=\"1080\"/>\n      <point x=\"104\" y=\"1077\"/>\n      <point x=\"61\" y=\"1068\" type=\"curve\"/>\n      <point x=\"72\" y=\"983\" type=\"line\"/>\n      <point x=\"84\" y=\"987\"/>\n      <point x=\"95\" y=\"988\"/>\n      <point x=\"123\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"205\" y=\"988\"/>\n      <point x=\"246\" y=\"956\"/>\n      <point x=\"295\" y=\"845\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"-269\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"-432\"/>\n      <point x=\"921\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"110\" y=\"-460\" type=\"line\"/>\n      <point x=\"216\" y=\"-460\" type=\"line\"/>\n      <point x=\"616\" y=\"248\" type=\"line\"/>\n      <point x=\"1090\" y=\"1060\" type=\"line\"/>\n      <point x=\"984\" y=\"1060\" type=\"line\"/>\n      <point x=\"578\" y=\"354\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C6\"/>\n  <outline>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/circumflexcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflexcomb.case\" format=\"2\">\n  <anchor x=\"605\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"605\" y=\"1800\" name=\"top\"/>\n  <anchor x=\"891\" y=\"1668\" name=\"top_viet\"/>\n  <outline>\n    <contour>\n      <point x=\"279\" y=\"1580\" type=\"line\"/>\n      <point x=\"406\" y=\"1580\" type=\"line\"/>\n      <point x=\"664\" y=\"1819\" type=\"line\"/>\n      <point x=\"546\" y=\"1819\" type=\"line\"/>\n      <point x=\"804\" y=\"1580\" type=\"line\"/>\n      <point x=\"931\" y=\"1580\" type=\"line\"/>\n      <point x=\"646\" y=\"1840\" type=\"line\"/>\n      <point x=\"564\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/circumflexcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflexcomb\" format=\"2\">\n  <unicode hex=\"0302\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1580\" name=\"top\"/>\n  <anchor x=\"957\" y=\"1400\" name=\"top_viet\"/>\n  <outline>\n    <contour>\n      <point x=\"274\" y=\"1248\" type=\"line\"/>\n      <point x=\"396\" y=\"1248\" type=\"line\"/>\n      <point x=\"610\" y=\"1539\" type=\"line\"/>\n      <point x=\"590\" y=\"1539\" type=\"line\"/>\n      <point x=\"804\" y=\"1248\" type=\"line\"/>\n      <point x=\"926\" y=\"1248\" type=\"line\"/>\n      <point x=\"631\" y=\"1628\" type=\"line\"/>\n      <point x=\"569\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/clubB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"clubBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2663\"/>\n  <guideline x=\"834\" y=\"60\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"1280\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"1260\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"80\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"40\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"590\"/>\n      <point x=\"955\" y=\"717\"/>\n      <point x=\"955\" y=\"910\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"955\" y=\"1133\"/>\n      <point x=\"814\" y=\"1280\"/>\n      <point x=\"600\" y=\"1280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"1280\"/>\n      <point x=\"245\" y=\"1133\"/>\n      <point x=\"245\" y=\"910\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"245\" y=\"717\"/>\n      <point x=\"386\" y=\"590\"/>\n    </contour>\n    <contour>\n      <point x=\"320\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"162\"/>\n      <point x=\"544\" y=\"250\"/>\n      <point x=\"544\" y=\"383\" type=\"curve\"/>\n      <point x=\"647\" y=\"383\" type=\"line\"/>\n      <point x=\"647\" y=\"466\" type=\"line\"/>\n      <point x=\"415\" y=\"501\" type=\"line\"/>\n      <point x=\"534\" y=\"383\" type=\"line\"/>\n      <point x=\"534\" y=\"529\"/>\n      <point x=\"443\" y=\"625\"/>\n      <point x=\"304\" y=\"625\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"174\" y=\"625\"/>\n      <point x=\"89\" y=\"531\"/>\n      <point x=\"89\" y=\"388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"89\" y=\"252\"/>\n      <point x=\"181\" y=\"162\"/>\n    </contour>\n    <contour>\n      <point x=\"364\" y=\"439\" type=\"line\"/>\n      <point x=\"647\" y=\"439\" type=\"line\"/>\n      <point x=\"647\" y=\"641\" type=\"line\"/>\n      <point x=\"436\" y=\"641\" type=\"line\"/>\n      <point x=\"364\" y=\"491\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"60\" type=\"line\"/>\n      <point x=\"647\" y=\"60\" type=\"line\"/>\n      <point x=\"647\" y=\"1060\" type=\"line\"/>\n      <point x=\"553\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"439\" type=\"line\"/>\n      <point x=\"836\" y=\"439\" type=\"line\"/>\n      <point x=\"836\" y=\"491\" type=\"line\"/>\n      <point x=\"764\" y=\"641\" type=\"line\"/>\n      <point x=\"553\" y=\"641\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"880\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1019\" y=\"162\"/>\n      <point x=\"1111\" y=\"252\"/>\n      <point x=\"1111\" y=\"388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"531\"/>\n      <point x=\"1026\" y=\"625\"/>\n      <point x=\"896\" y=\"625\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"625\"/>\n      <point x=\"666\" y=\"529\"/>\n      <point x=\"666\" y=\"383\" type=\"curve\"/>\n      <point x=\"785\" y=\"501\" type=\"line\"/>\n      <point x=\"553\" y=\"466\" type=\"line\"/>\n      <point x=\"553\" y=\"383\" type=\"line\"/>\n      <point x=\"656\" y=\"383\" type=\"line\"/>\n      <point x=\"656\" y=\"250\"/>\n      <point x=\"745\" y=\"162\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colon.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003A\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"881\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"881\"/>\n      <point x=\"700\" y=\"925\"/>\n      <point x=\"700\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1035\"/>\n      <point x=\"655\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"1080\"/>\n      <point x=\"500\" y=\"1035\"/>\n      <point x=\"500\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"925\"/>\n      <point x=\"545\" y=\"881\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"-20\"/>\n      <point x=\"700\" y=\"24\"/>\n      <point x=\"700\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"134\"/>\n      <point x=\"655\" y=\"179\"/>\n      <point x=\"600\" y=\"179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"179\"/>\n      <point x=\"500\" y=\"134\"/>\n      <point x=\"500\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"24\"/>\n      <point x=\"545\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"140\"/>\n    <component base=\"colon\" xOffset=\"1060\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_colon_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"400\"/>\n    <component base=\"colon\" xOffset=\"1200\"/>\n    <component base=\"colon\" xOffset=\"2000\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_colon_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1900\" y=\"914\" type=\"line\"/>\n      <point x=\"3320\" y=\"914\" type=\"line\"/>\n      <point x=\"3320\" y=\"1004\" type=\"line\"/>\n      <point x=\"1900\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1900\" y=\"416\" type=\"line\"/>\n      <point x=\"3320\" y=\"416\" type=\"line\"/>\n      <point x=\"3320\" y=\"506\" type=\"line\"/>\n      <point x=\"1900\" y=\"506\" type=\"line\"/>\n    </contour>\n    <component base=\"colon\" xOffset=\"650\" yOffset=\"180\"/>\n    <component base=\"colon\" xOffset=\"-120\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1000\" y=\"914\" type=\"line\"/>\n      <point x=\"2120\" y=\"914\" type=\"line\"/>\n      <point x=\"2120\" y=\"1004\" type=\"line\"/>\n      <point x=\"1000\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1000\" y=\"416\" type=\"line\"/>\n      <point x=\"2120\" y=\"416\" type=\"line\"/>\n      <point x=\"2120\" y=\"506\" type=\"line\"/>\n      <point x=\"1000\" y=\"506\" type=\"line\"/>\n    </contour>\n    <component base=\"colon\" xOffset=\"-60\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"914\" type=\"line\"/>\n      <point x=\"1250\" y=\"914\" type=\"line\"/>\n      <point x=\"1250\" y=\"1004\" type=\"line\"/>\n      <point x=\"900\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"900\" y=\"414\" type=\"line\"/>\n      <point x=\"1250\" y=\"414\" type=\"line\"/>\n      <point x=\"1250\" y=\"504\" type=\"line\"/>\n      <point x=\"900\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"914\" type=\"line\"/>\n      <point x=\"300\" y=\"914\" type=\"line\"/>\n      <point x=\"300\" y=\"1004\" type=\"line\"/>\n      <point x=\"-50\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"414\" type=\"line\"/>\n      <point x=\"300\" y=\"414\" type=\"line\"/>\n      <point x=\"300\" y=\"504\" type=\"line\"/>\n      <point x=\"-50\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"colon.center\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"110\"/>\n    <component base=\"slash\" xOffset=\"2080\"/>\n    <component base=\"slash\" xOffset=\"1120\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colonsign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colonsign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A1\"/>\n  <outline>\n    <contour>\n      <point x=\"633\" y=\"-330\" type=\"line\"/>\n      <point x=\"1029\" y=\"1692\" type=\"line\"/>\n      <point x=\"933\" y=\"1716\" type=\"line\"/>\n      <point x=\"547\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"343\" y=\"-330\" type=\"line\"/>\n      <point x=\"739\" y=\"1692\" type=\"line\"/>\n      <point x=\"643\" y=\"1716\" type=\"line\"/>\n      <point x=\"257\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/colontriangularmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colontriangularmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D0\"/>\n  <guideline x=\"600\" y=\"663\" angle=\"90\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"780\" type=\"line\"/>\n      <point x=\"750\" y=\"1060\" type=\"line\"/>\n      <point x=\"450\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"450\" y=\"0\" type=\"line\"/>\n      <point x=\"750\" y=\"0\" type=\"line\"/>\n      <point x=\"600\" y=\"280\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/comma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"comma-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060C\"/>\n  <outline>\n    <contour>\n      <point x=\"606\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"668\" y=\"-6\"/>\n      <point x=\"702\" y=\"33\"/>\n      <point x=\"702\" y=\"98\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"146\"/>\n      <point x=\"676\" y=\"197\"/>\n      <point x=\"583\" y=\"191\" type=\"curve\"/>\n      <point x=\"588\" y=\"294\"/>\n      <point x=\"639\" y=\"413\"/>\n      <point x=\"721\" y=\"540\" type=\"curve\"/>\n      <point x=\"640\" y=\"550\" type=\"line\"/>\n      <point x=\"543\" y=\"413\"/>\n      <point x=\"500\" y=\"257\"/>\n      <point x=\"500\" y=\"143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"32\"/>\n      <point x=\"547\" y=\"-6\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/comma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"comma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002C\"/>\n  <outline>\n    <contour>\n      <point x=\"482\" y=\"-436\" type=\"line\"/>\n      <point x=\"574\" y=\"-436\" type=\"line\"/>\n      <point x=\"659\" y=\"254\" type=\"line\"/>\n      <point x=\"562\" y=\"254\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/commaabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaabovecomb\" format=\"2\">\n  <unicode hex=\"0313\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"590\" y=\"1498\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"587\" y=\"1192\" type=\"line\"/>\n      <point x=\"699\" y=\"1308\"/>\n      <point x=\"750\" y=\"1392\"/>\n      <point x=\"750\" y=\"1459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"1567\"/>\n      <point x=\"692\" y=\"1616\"/>\n      <point x=\"567\" y=\"1616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"1616\" type=\"line\"/>\n      <point x=\"492\" y=\"1524\" type=\"line\"/>\n      <point x=\"567\" y=\"1524\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"1524\"/>\n      <point x=\"654\" y=\"1504\"/>\n      <point x=\"654\" y=\"1459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"1413\"/>\n      <point x=\"609\" y=\"1348\"/>\n      <point x=\"510\" y=\"1251\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/commaaboverightcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaaboverightcomb\" format=\"2\">\n  <unicode hex=\"0315\"/>\n  <outline>\n    <component base=\"commaabovecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/commaaccentcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaaccentcomb\" format=\"2\">\n  <unicode hex=\"0326\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <component base=\"commaabovecomb\" xOffset=\"-10\" yOffset=\"-1730\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/commaturnedabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaturnedabovecomb\" format=\"2\">\n  <unicode hex=\"0312\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"590\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"612\" y=\"1635\" type=\"line\"/>\n      <point x=\"500\" y=\"1519\"/>\n      <point x=\"449\" y=\"1435\"/>\n      <point x=\"449\" y=\"1368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"1260\"/>\n      <point x=\"507\" y=\"1211\"/>\n      <point x=\"632\" y=\"1211\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"1211\" type=\"line\"/>\n      <point x=\"707\" y=\"1303\" type=\"line\"/>\n      <point x=\"632\" y=\"1303\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"1303\"/>\n      <point x=\"545\" y=\"1323\"/>\n      <point x=\"545\" y=\"1368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"1414\"/>\n      <point x=\"590\" y=\"1479\"/>\n      <point x=\"689\" y=\"1576\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/commaturnedmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaturnedmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02BB\"/>\n  <outline>\n    <component base=\"quoteleft\" yOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>.notdef</key>\n    <string>_notdef.glif</string>\n    <key>A</key>\n    <string>A_.glif</string>\n    <key>A-cy</key>\n    <string>A_-cy.glif</string>\n    <key>A.half</key>\n    <string>A_.half.glif</string>\n    <key>AE</key>\n    <string>A_E_.glif</string>\n    <key>AEacute</key>\n    <string>A_E_acute.glif</string>\n    <key>Aacute</key>\n    <string>A_acute.glif</string>\n    <key>Abreve</key>\n    <string>A_breve.glif</string>\n    <key>Abreveacute</key>\n    <string>A_breveacute.glif</string>\n    <key>Abrevedotbelow</key>\n    <string>A_brevedotbelow.glif</string>\n    <key>Abrevegrave</key>\n    <string>A_brevegrave.glif</string>\n    <key>Abrevehookabove</key>\n    <string>A_brevehookabove.glif</string>\n    <key>Abrevetilde</key>\n    <string>A_brevetilde.glif</string>\n    <key>Acaron</key>\n    <string>A_caron.glif</string>\n    <key>Acircumflex</key>\n    <string>A_circumflex.glif</string>\n    <key>Acircumflexacute</key>\n    <string>A_circumflexacute.glif</string>\n    <key>Acircumflexdotbelow</key>\n    <string>A_circumflexdotbelow.glif</string>\n    <key>Acircumflexgrave</key>\n    <string>A_circumflexgrave.glif</string>\n    <key>Acircumflexhookabove</key>\n    <string>A_circumflexhookabove.glif</string>\n    <key>Acircumflextilde</key>\n    <string>A_circumflextilde.glif</string>\n    <key>Adieresis</key>\n    <string>A_dieresis.glif</string>\n    <key>Adotbelow</key>\n    <string>A_dotbelow.glif</string>\n    <key>Agrave</key>\n    <string>A_grave.glif</string>\n    <key>Ahookabove</key>\n    <string>A_hookabove.glif</string>\n    <key>Alpha</key>\n    <string>A_lpha.glif</string>\n    <key>Alpha-latin</key>\n    <string>A_lpha-latin.glif</string>\n    <key>Alphatonos</key>\n    <string>A_lphatonos.glif</string>\n    <key>Amacron</key>\n    <string>A_macron.glif</string>\n    <key>Aogonek</key>\n    <string>A_ogonek.glif</string>\n    <key>Aring</key>\n    <string>A_ring.glif</string>\n    <key>Aringacute</key>\n    <string>A_ringacute.glif</string>\n    <key>Asmall</key>\n    <string>A_small.glif</string>\n    <key>Astroke</key>\n    <string>A_stroke.glif</string>\n    <key>Atilde</key>\n    <string>A_tilde.glif</string>\n    <key>B</key>\n    <string>B_.glif</string>\n    <key>B.half</key>\n    <string>B_.half.glif</string>\n    <key>Be-cy</key>\n    <string>B_e-cy.glif</string>\n    <key>Beta</key>\n    <string>B_eta.glif</string>\n    <key>C</key>\n    <string>C_.glif</string>\n    <key>C.half</key>\n    <string>C_.half.glif</string>\n    <key>CR</key>\n    <string>C_R_.glif</string>\n    <key>Cacute</key>\n    <string>C_acute.glif</string>\n    <key>Cacute.loclPLK</key>\n    <string>C_acute.loclP_L_K_.glif</string>\n    <key>Ccaron</key>\n    <string>C_caron.glif</string>\n    <key>Ccedilla</key>\n    <string>C_cedilla.glif</string>\n    <key>Ccircumflex</key>\n    <string>C_circumflex.glif</string>\n    <key>Cdotaccent</key>\n    <string>C_dotaccent.glif</string>\n    <key>Che-cy</key>\n    <string>C_he-cy.glif</string>\n    <key>Chedescender-cy</key>\n    <string>C_hedescender-cy.glif</string>\n    <key>Chi</key>\n    <string>C_hi.glif</string>\n    <key>Cstroke</key>\n    <string>C_stroke.glif</string>\n    <key>D</key>\n    <string>D_.glif</string>\n    <key>D.half</key>\n    <string>D_.half.glif</string>\n    <key>Dafrican</key>\n    <string>D_african.glif</string>\n    <key>Dcaron</key>\n    <string>D_caron.glif</string>\n    <key>Dcroat</key>\n    <string>D_croat.glif</string>\n    <key>De-cy</key>\n    <string>D_e-cy.glif</string>\n    <key>De-cy.loclBGR</key>\n    <string>D_e-cy.loclB_G_R_.glif</string>\n    <key>Delta</key>\n    <string>D_elta.glif</string>\n    <key>Dje-cy</key>\n    <string>D_je-cy.glif</string>\n    <key>Dze-cy</key>\n    <string>D_ze-cy.glif</string>\n    <key>Dzhe-cy</key>\n    <string>D_zhe-cy.glif</string>\n    <key>E</key>\n    <string>E_.glif</string>\n    <key>E-cy</key>\n    <string>E_-cy.glif</string>\n    <key>E.half</key>\n    <string>E_.half.glif</string>\n    <key>Eacute</key>\n    <string>E_acute.glif</string>\n    <key>Ebreve</key>\n    <string>E_breve.glif</string>\n    <key>Ecaron</key>\n    <string>E_caron.glif</string>\n    <key>Ecircumflex</key>\n    <string>E_circumflex.glif</string>\n    <key>Ecircumflexacute</key>\n    <string>E_circumflexacute.glif</string>\n    <key>Ecircumflexdotbelow</key>\n    <string>E_circumflexdotbelow.glif</string>\n    <key>Ecircumflexgrave</key>\n    <string>E_circumflexgrave.glif</string>\n    <key>Ecircumflexhookabove</key>\n    <string>E_circumflexhookabove.glif</string>\n    <key>Ecircumflextilde</key>\n    <string>E_circumflextilde.glif</string>\n    <key>Edieresis</key>\n    <string>E_dieresis.glif</string>\n    <key>Edotaccent</key>\n    <string>E_dotaccent.glif</string>\n    <key>Edotbelow</key>\n    <string>E_dotbelow.glif</string>\n    <key>Ef-cy</key>\n    <string>E_f-cy.glif</string>\n    <key>Ef-cy.loclBGR</key>\n    <string>E_f-cy.loclB_G_R_.glif</string>\n    <key>Egrave</key>\n    <string>E_grave.glif</string>\n    <key>Ehookabove</key>\n    <string>E_hookabove.glif</string>\n    <key>El-cy</key>\n    <string>E_l-cy.glif</string>\n    <key>El-cy.loclBGR</key>\n    <string>E_l-cy.loclB_G_R_.glif</string>\n    <key>Em-cy</key>\n    <string>E_m-cy.glif</string>\n    <key>Emacron</key>\n    <string>E_macron.glif</string>\n    <key>En-cy</key>\n    <string>E_n-cy.glif</string>\n    <key>Endescender-cy</key>\n    <string>E_ndescender-cy.glif</string>\n    <key>Eng</key>\n    <string>E_ng.glif</string>\n    <key>Eogonek</key>\n    <string>E_ogonek.glif</string>\n    <key>Eopen</key>\n    <string>E_open.glif</string>\n    <key>Epsilon</key>\n    <string>E_psilon.glif</string>\n    <key>Epsilontonos</key>\n    <string>E_psilontonos.glif</string>\n    <key>Er-cy</key>\n    <string>E_r-cy.glif</string>\n    <key>Ereversed</key>\n    <string>E_reversed.glif</string>\n    <key>Ereversed-cy</key>\n    <string>E_reversed-cy.glif</string>\n    <key>Es-cy</key>\n    <string>E_s-cy.glif</string>\n    <key>Esh</key>\n    <string>E_sh.glif</string>\n    <key>Eta</key>\n    <string>E_ta.glif</string>\n    <key>Etatonos</key>\n    <string>E_tatonos.glif</string>\n    <key>Eth</key>\n    <string>E_th.glif</string>\n    <key>Etilde</key>\n    <string>E_tilde.glif</string>\n    <key>Ezh</key>\n    <string>E_zh.glif</string>\n    <key>F</key>\n    <string>F_.glif</string>\n    <key>F.half</key>\n    <string>F_.half.glif</string>\n    <key>Fhook</key>\n    <string>F_hook.glif</string>\n    <key>G</key>\n    <string>G_.glif</string>\n    <key>G.half</key>\n    <string>G_.half.glif</string>\n    <key>Gamma</key>\n    <string>G_amma.glif</string>\n    <key>Gammaafrican</key>\n    <string>G_ammaafrican.glif</string>\n    <key>Gbreve</key>\n    <string>G_breve.glif</string>\n    <key>Gcaron</key>\n    <string>G_caron.glif</string>\n    <key>Gcircumflex</key>\n    <string>G_circumflex.glif</string>\n    <key>Gcommaaccent</key>\n    <string>G_commaaccent.glif</string>\n    <key>Gdotaccent</key>\n    <string>G_dotaccent.glif</string>\n    <key>Ge-cy</key>\n    <string>G_e-cy.glif</string>\n    <key>Germandbls</key>\n    <string>G_ermandbls.glif</string>\n    <key>Ghestroke-cy</key>\n    <string>G_hestroke-cy.glif</string>\n    <key>Gheupturn-cy</key>\n    <string>G_heupturn-cy.glif</string>\n    <key>Gje-cy</key>\n    <string>G_je-cy.glif</string>\n    <key>Gsmall</key>\n    <string>G_small.glif</string>\n    <key>Gstroke</key>\n    <string>G_stroke.glif</string>\n    <key>H</key>\n    <string>H_.glif</string>\n    <key>H.half</key>\n    <string>H_.half.glif</string>\n    <key>Ha-cy</key>\n    <string>H_a-cy.glif</string>\n    <key>Hadescender-cy</key>\n    <string>H_adescender-cy.glif</string>\n    <key>Hardsign-cy</key>\n    <string>H_ardsign-cy.glif</string>\n    <key>Hbar</key>\n    <string>H_bar.glif</string>\n    <key>Hcaron</key>\n    <string>H_caron.glif</string>\n    <key>Hcircumflex</key>\n    <string>H_circumflex.glif</string>\n    <key>Hdotbelow</key>\n    <string>H_dotbelow.glif</string>\n    <key>I</key>\n    <string>I_.glif</string>\n    <key>I-cy</key>\n    <string>I_-cy.glif</string>\n    <key>I.half</key>\n    <string>I_.half.glif</string>\n    <key>IJ</key>\n    <string>I_J_.glif</string>\n    <key>IJ_acute</key>\n    <string>I_J__acute.glif</string>\n    <key>Ia-cy</key>\n    <string>I_a-cy.glif</string>\n    <key>Iacute</key>\n    <string>I_acute.glif</string>\n    <key>Ibreve</key>\n    <string>I_breve.glif</string>\n    <key>Icircumflex</key>\n    <string>I_circumflex.glif</string>\n    <key>Idieresis</key>\n    <string>I_dieresis.glif</string>\n    <key>Idotaccent</key>\n    <string>I_dotaccent.glif</string>\n    <key>Idotbelow</key>\n    <string>I_dotbelow.glif</string>\n    <key>Ie-cy</key>\n    <string>I_e-cy.glif</string>\n    <key>Iegrave-cy</key>\n    <string>I_egrave-cy.glif</string>\n    <key>Igrave</key>\n    <string>I_grave.glif</string>\n    <key>Ihookabove</key>\n    <string>I_hookabove.glif</string>\n    <key>Ii-cy</key>\n    <string>I_i-cy.glif</string>\n    <key>Iigrave-cy</key>\n    <string>I_igrave-cy.glif</string>\n    <key>Iishort-cy</key>\n    <string>I_ishort-cy.glif</string>\n    <key>Imacron</key>\n    <string>I_macron.glif</string>\n    <key>Imacron-cy</key>\n    <string>I_macron-cy.glif</string>\n    <key>Io-cy</key>\n    <string>I_o-cy.glif</string>\n    <key>Iogonek</key>\n    <string>I_ogonek.glif</string>\n    <key>Iota</key>\n    <string>I_ota.glif</string>\n    <key>Iotaafrican</key>\n    <string>I_otaafrican.glif</string>\n    <key>Iotadieresis</key>\n    <string>I_otadieresis.glif</string>\n    <key>Iotatonos</key>\n    <string>I_otatonos.glif</string>\n    <key>Ismall</key>\n    <string>I_small.glif</string>\n    <key>Itilde</key>\n    <string>I_tilde.glif</string>\n    <key>Iu-cy</key>\n    <string>I_u-cy.glif</string>\n    <key>J</key>\n    <string>J_.glif</string>\n    <key>Jacute</key>\n    <string>J_acute.glif</string>\n    <key>Jcircumflex</key>\n    <string>J_circumflex.glif</string>\n    <key>Je-cy</key>\n    <string>J_e-cy.glif</string>\n    <key>K</key>\n    <string>K_.glif</string>\n    <key>K.half</key>\n    <string>K_.half.glif</string>\n    <key>Ka-cy</key>\n    <string>K_a-cy.glif</string>\n    <key>Kacute</key>\n    <string>K_acute.glif</string>\n    <key>Kadescender-cy</key>\n    <string>K_adescender-cy.glif</string>\n    <key>KaiSymbol</key>\n    <string>K_aiS_ymbol.glif</string>\n    <key>Kappa</key>\n    <string>K_appa.glif</string>\n    <key>Kcommaaccent</key>\n    <string>K_commaaccent.glif</string>\n    <key>Kdotbelow</key>\n    <string>K_dotbelow.glif</string>\n    <key>Kje-cy</key>\n    <string>K_je-cy.glif</string>\n    <key>Klinebelow</key>\n    <string>K_linebelow.glif</string>\n    <key>L</key>\n    <string>L_.glif</string>\n    <key>L.half</key>\n    <string>L_.half.glif</string>\n    <key>LIG</key>\n    <string>L_I_G_.glif</string>\n    <key>Lacute</key>\n    <string>L_acute.glif</string>\n    <key>Lambda</key>\n    <string>L_ambda.glif</string>\n    <key>Lbar</key>\n    <string>L_bar.glif</string>\n    <key>Lcaron</key>\n    <string>L_caron.glif</string>\n    <key>Lcommaaccent</key>\n    <string>L_commaaccent.glif</string>\n    <key>Ldot</key>\n    <string>L_dot.glif</string>\n    <key>Ldotbelow</key>\n    <string>L_dotbelow.glif</string>\n    <key>Lje-cy</key>\n    <string>L_je-cy.glif</string>\n    <key>Llinebelow</key>\n    <string>L_linebelow.glif</string>\n    <key>Lmiddletilde</key>\n    <string>L_middletilde.glif</string>\n    <key>Lslash</key>\n    <string>L_slash.glif</string>\n    <key>Lsmall</key>\n    <string>L_small.glif</string>\n    <key>M</key>\n    <string>M_.glif</string>\n    <key>M.half</key>\n    <string>M_.half.glif</string>\n    <key>Mu</key>\n    <string>M_u.glif</string>\n    <key>N</key>\n    <string>N_.glif</string>\n    <key>N.half</key>\n    <string>N_.half.glif</string>\n    <key>Nacute</key>\n    <string>N_acute.glif</string>\n    <key>Nacute.loclPLK</key>\n    <string>N_acute.loclP_L_K_.glif</string>\n    <key>Ncaron</key>\n    <string>N_caron.glif</string>\n    <key>Ncommaaccent</key>\n    <string>N_commaaccent.glif</string>\n    <key>Nhookleft</key>\n    <string>N_hookleft.glif</string>\n    <key>Nje-cy</key>\n    <string>N_je-cy.glif</string>\n    <key>Nlinebelow</key>\n    <string>N_linebelow.glif</string>\n    <key>Ntilde</key>\n    <string>N_tilde.glif</string>\n    <key>Nu</key>\n    <string>N_u.glif</string>\n    <key>O</key>\n    <string>O_.glif</string>\n    <key>O-cy</key>\n    <string>O_-cy.glif</string>\n    <key>O.half</key>\n    <string>O_.half.glif</string>\n    <key>OE</key>\n    <string>O_E_.glif</string>\n    <key>Oacute</key>\n    <string>O_acute.glif</string>\n    <key>Oacute.loclPLK</key>\n    <string>O_acute.loclP_L_K_.glif</string>\n    <key>Obarred-cy</key>\n    <string>O_barred-cy.glif</string>\n    <key>Obreve</key>\n    <string>O_breve.glif</string>\n    <key>Ocircumflex</key>\n    <string>O_circumflex.glif</string>\n    <key>Ocircumflexacute</key>\n    <string>O_circumflexacute.glif</string>\n    <key>Ocircumflexdotbelow</key>\n    <string>O_circumflexdotbelow.glif</string>\n    <key>Ocircumflexgrave</key>\n    <string>O_circumflexgrave.glif</string>\n    <key>Ocircumflexhookabove</key>\n    <string>O_circumflexhookabove.glif</string>\n    <key>Ocircumflextilde</key>\n    <string>O_circumflextilde.glif</string>\n    <key>Odieresis</key>\n    <string>O_dieresis.glif</string>\n    <key>Odotbelow</key>\n    <string>O_dotbelow.glif</string>\n    <key>Ograve</key>\n    <string>O_grave.glif</string>\n    <key>Ohm</key>\n    <string>O_hm.glif</string>\n    <key>Ohookabove</key>\n    <string>O_hookabove.glif</string>\n    <key>Ohorn</key>\n    <string>O_horn.glif</string>\n    <key>Ohornacute</key>\n    <string>O_hornacute.glif</string>\n    <key>Ohorndotbelow</key>\n    <string>O_horndotbelow.glif</string>\n    <key>Ohorngrave</key>\n    <string>O_horngrave.glif</string>\n    <key>Ohornhookabove</key>\n    <string>O_hornhookabove.glif</string>\n    <key>Ohorntilde</key>\n    <string>O_horntilde.glif</string>\n    <key>Ohungarumlaut</key>\n    <string>O_hungarumlaut.glif</string>\n    <key>Omacron</key>\n    <string>O_macron.glif</string>\n    <key>Omacronacute</key>\n    <string>O_macronacute.glif</string>\n    <key>Omacrongrave</key>\n    <string>O_macrongrave.glif</string>\n    <key>Omega</key>\n    <string>O_mega.glif</string>\n    <key>Omegatonos</key>\n    <string>O_megatonos.glif</string>\n    <key>Omicron</key>\n    <string>O_micron.glif</string>\n    <key>Omicrontonos</key>\n    <string>O_microntonos.glif</string>\n    <key>Oogonek</key>\n    <string>O_ogonek.glif</string>\n    <key>Oopen</key>\n    <string>O_open.glif</string>\n    <key>Oslash</key>\n    <string>O_slash.glif</string>\n    <key>Oslashacute</key>\n    <string>O_slashacute.glif</string>\n    <key>Otilde</key>\n    <string>O_tilde.glif</string>\n    <key>P</key>\n    <string>P_.glif</string>\n    <key>P.half</key>\n    <string>P_.half.glif</string>\n    <key>Palochka-cy</key>\n    <string>P_alochka-cy.glif</string>\n    <key>Pe-cy</key>\n    <string>P_e-cy.glif</string>\n    <key>Phi</key>\n    <string>P_hi.glif</string>\n    <key>Pi</key>\n    <string>P_i.glif</string>\n    <key>Psi</key>\n    <string>P_si.glif</string>\n    <key>Q</key>\n    <string>Q_.glif</string>\n    <key>Q.half</key>\n    <string>Q_.half.glif</string>\n    <key>R</key>\n    <string>R_.glif</string>\n    <key>R.half</key>\n    <string>R_.half.glif</string>\n    <key>Racute</key>\n    <string>R_acute.glif</string>\n    <key>Rcaron</key>\n    <string>R_caron.glif</string>\n    <key>Rcommaaccent</key>\n    <string>R_commaaccent.glif</string>\n    <key>Rdotbelow</key>\n    <string>R_dotbelow.glif</string>\n    <key>Rho</key>\n    <string>R_ho.glif</string>\n    <key>S</key>\n    <string>S_.glif</string>\n    <key>S.half</key>\n    <string>S_.half.glif</string>\n    <key>Sacute</key>\n    <string>S_acute.glif</string>\n    <key>Sacute.loclPLK</key>\n    <string>S_acute.loclP_L_K_.glif</string>\n    <key>Scaron</key>\n    <string>S_caron.glif</string>\n    <key>Scedilla</key>\n    <string>S_cedilla.glif</string>\n    <key>Schwa</key>\n    <string>S_chwa.glif</string>\n    <key>Schwa-cy</key>\n    <string>S_chwa-cy.glif</string>\n    <key>Scircumflex</key>\n    <string>S_circumflex.glif</string>\n    <key>Scommaaccent</key>\n    <string>S_commaaccent.glif</string>\n    <key>Sdotbelow</key>\n    <string>S_dotbelow.glif</string>\n    <key>Sha-cy</key>\n    <string>S_ha-cy.glif</string>\n    <key>Shcha-cy</key>\n    <string>S_hcha-cy.glif</string>\n    <key>Shha-cy</key>\n    <string>S_hha-cy.glif</string>\n    <key>Sigma</key>\n    <string>S_igma.glif</string>\n    <key>Softsign-cy</key>\n    <string>S_oftsign-cy.glif</string>\n    <key>T</key>\n    <string>T_.glif</string>\n    <key>T.half</key>\n    <string>T_.half.glif</string>\n    <key>Tau</key>\n    <string>T_au.glif</string>\n    <key>Tbar</key>\n    <string>T_bar.glif</string>\n    <key>Tcaron</key>\n    <string>T_caron.glif</string>\n    <key>Tcedilla</key>\n    <string>T_cedilla.glif</string>\n    <key>Tcommaaccent</key>\n    <string>T_commaaccent.glif</string>\n    <key>Tdiagonalstroke</key>\n    <string>T_diagonalstroke.glif</string>\n    <key>Te-cy</key>\n    <string>T_e-cy.glif</string>\n    <key>Theta</key>\n    <string>T_heta.glif</string>\n    <key>Thorn</key>\n    <string>T_horn.glif</string>\n    <key>Tlinebelow</key>\n    <string>T_linebelow.glif</string>\n    <key>Tse-cy</key>\n    <string>T_se-cy.glif</string>\n    <key>Tshe-cy</key>\n    <string>T_she-cy.glif</string>\n    <key>U</key>\n    <string>U_.glif</string>\n    <key>U-cy</key>\n    <string>U_-cy.glif</string>\n    <key>U.half</key>\n    <string>U_.half.glif</string>\n    <key>Uacute</key>\n    <string>U_acute.glif</string>\n    <key>Ubreve</key>\n    <string>U_breve.glif</string>\n    <key>Ucircumflex</key>\n    <string>U_circumflex.glif</string>\n    <key>Udieresis</key>\n    <string>U_dieresis.glif</string>\n    <key>Udotbelow</key>\n    <string>U_dotbelow.glif</string>\n    <key>Ugrave</key>\n    <string>U_grave.glif</string>\n    <key>Uhookabove</key>\n    <string>U_hookabove.glif</string>\n    <key>Uhorn</key>\n    <string>U_horn.glif</string>\n    <key>Uhornacute</key>\n    <string>U_hornacute.glif</string>\n    <key>Uhorndotbelow</key>\n    <string>U_horndotbelow.glif</string>\n    <key>Uhorngrave</key>\n    <string>U_horngrave.glif</string>\n    <key>Uhornhookabove</key>\n    <string>U_hornhookabove.glif</string>\n    <key>Uhorntilde</key>\n    <string>U_horntilde.glif</string>\n    <key>Uhungarumlaut</key>\n    <string>U_hungarumlaut.glif</string>\n    <key>Umacron</key>\n    <string>U_macron.glif</string>\n    <key>Umacron-cy</key>\n    <string>U_macron-cy.glif</string>\n    <key>Uogonek</key>\n    <string>U_ogonek.glif</string>\n    <key>Upsilon</key>\n    <string>U_psilon.glif</string>\n    <key>Upsilonafrican</key>\n    <string>U_psilonafrican.glif</string>\n    <key>Upsilondieresis</key>\n    <string>U_psilondieresis.glif</string>\n    <key>Upsilontonos</key>\n    <string>U_psilontonos.glif</string>\n    <key>Uring</key>\n    <string>U_ring.glif</string>\n    <key>Ushort-cy</key>\n    <string>U_short-cy.glif</string>\n    <key>Ustraight-cy</key>\n    <string>U_straight-cy.glif</string>\n    <key>Ustraightstroke-cy</key>\n    <string>U_straightstroke-cy.glif</string>\n    <key>Utilde</key>\n    <string>U_tilde.glif</string>\n    <key>V</key>\n    <string>V_.glif</string>\n    <key>V.half</key>\n    <string>V_.half.glif</string>\n    <key>Ve-cy</key>\n    <string>V_e-cy.glif</string>\n    <key>Vhook</key>\n    <string>V_hook.glif</string>\n    <key>Vturned</key>\n    <string>V_turned.glif</string>\n    <key>W</key>\n    <string>W_.glif</string>\n    <key>Wacute</key>\n    <string>W_acute.glif</string>\n    <key>Wcircumflex</key>\n    <string>W_circumflex.glif</string>\n    <key>Wdieresis</key>\n    <string>W_dieresis.glif</string>\n    <key>Wgrave</key>\n    <string>W_grave.glif</string>\n    <key>X</key>\n    <string>X_.glif</string>\n    <key>X.half</key>\n    <string>X_.half.glif</string>\n    <key>Xi</key>\n    <string>X_i.glif</string>\n    <key>Y</key>\n    <string>Y_.glif</string>\n    <key>Y.half</key>\n    <string>Y_.half.glif</string>\n    <key>Yacute</key>\n    <string>Y_acute.glif</string>\n    <key>Ycircumflex</key>\n    <string>Y_circumflex.glif</string>\n    <key>Ydieresis</key>\n    <string>Y_dieresis.glif</string>\n    <key>Ydotbelow</key>\n    <string>Y_dotbelow.glif</string>\n    <key>Yeru-cy</key>\n    <string>Y_eru-cy.glif</string>\n    <key>Ygrave</key>\n    <string>Y_grave.glif</string>\n    <key>Yhookabove</key>\n    <string>Y_hookabove.glif</string>\n    <key>Yi-cy</key>\n    <string>Y_i-cy.glif</string>\n    <key>Ymacron</key>\n    <string>Y_macron.glif</string>\n    <key>Ytilde</key>\n    <string>Y_tilde.glif</string>\n    <key>Z</key>\n    <string>Z_.glif</string>\n    <key>Zacute</key>\n    <string>Z_acute.glif</string>\n    <key>Zacute.loclPLK</key>\n    <string>Z_acute.loclP_L_K_.glif</string>\n    <key>Zcaron</key>\n    <string>Z_caron.glif</string>\n    <key>Zdotaccent</key>\n    <string>Z_dotaccent.glif</string>\n    <key>Ze-cy</key>\n    <string>Z_e-cy.glif</string>\n    <key>Zeta</key>\n    <string>Z_eta.glif</string>\n    <key>Zhe-cy</key>\n    <string>Z_he-cy.glif</string>\n    <key>Zhedescender-cy</key>\n    <string>Z_hedescender-cy.glif</string>\n    <key>_alef-ar.fina.rlig</key>\n    <string>_alef-ar.fina.rlig.glif</string>\n    <key>_alef-ar.fina.short.rlig</key>\n    <string>_alef-ar.fina.short.rlig.glif</string>\n    <key>_alefFathatan-ar.fina.rlig</key>\n    <string>_alefF_athatan-ar.fina.rlig.glif</string>\n    <key>_alefHamzaabove-ar.fina.rlig</key>\n    <string>_alefH_amzaabove-ar.fina.rlig.glif</string>\n    <key>_alefHamzabelow-ar.fina.rlig</key>\n    <string>_alefH_amzabelow-ar.fina.rlig.glif</string>\n    <key>_alefMadda-ar.fina.rlig</key>\n    <string>_alefM_adda-ar.fina.rlig.glif</string>\n    <key>_alefThreeabove-ar.fina.rlig</key>\n    <string>_alefT_hreeabove-ar.fina.rlig.glif</string>\n    <key>_alefTwoabove-ar.fina.rlig</key>\n    <string>_alefT_woabove-ar.fina.rlig.glif</string>\n    <key>_alefWasla-ar.fina.rlig</key>\n    <string>_alefW_asla-ar.fina.rlig.glif</string>\n    <key>_alefWavyhamzaabove-ar.fina.rlig</key>\n    <string>_alefW_avyhamzaabove-ar.fina.rlig.glif</string>\n    <key>_alefWavyhamzabelow-ar.fina.rlig</key>\n    <string>_alefW_avyhamzabelow-ar.fina.rlig.glif</string>\n    <key>_alefabove</key>\n    <string>_alefabove.glif</string>\n    <key>_bar</key>\n    <string>_bar.glif</string>\n    <key>_cuberoot_fourthroot-ar</key>\n    <string>_cuberoot_fourthroot-ar.glif</string>\n    <key>_damma-ar</key>\n    <string>_damma-ar.glif</string>\n    <key>_dot-ar</key>\n    <string>_dot-ar.glif</string>\n    <key>_dotVInvertedabove</key>\n    <string>_dotV_I_nvertedabove.glif</string>\n    <key>_dotVabove</key>\n    <string>_dotV_above.glif</string>\n    <key>_dots.horz.below</key>\n    <string>_dots.horz.below.glif</string>\n    <key>_doublebar</key>\n    <string>_doublebar.glif</string>\n    <key>_fatha-ar</key>\n    <string>_fatha-ar.glif</string>\n    <key>_four-persian.small01</key>\n    <string>_four-persian.small01.glif</string>\n    <key>_fourdotscenter-ar</key>\n    <string>_fourdotscenter-ar.glif</string>\n    <key>_fourthroot-ar</key>\n    <string>_fourthroot-ar.glif</string>\n    <key>_hamzasmall-ar</key>\n    <string>_hamzasmall-ar.glif</string>\n    <key>_hamzawavy</key>\n    <string>_hamzawavy.glif</string>\n    <key>_hehgoalcomma</key>\n    <string>_hehgoalcomma.glif</string>\n    <key>_highhamzaAlef-ar.fina.rlig</key>\n    <string>_highhamzaA_lef-ar.fina.rlig.glif</string>\n    <key>_invertedstroke</key>\n    <string>_invertedstroke.glif</string>\n    <key>_onedotstah</key>\n    <string>_onedotstah.glif</string>\n    <key>_ringArabic</key>\n    <string>_ringA_rabic.glif</string>\n    <key>_stroke</key>\n    <string>_stroke.glif</string>\n    <key>_tahabove</key>\n    <string>_tahabove.glif</string>\n    <key>_tahabovesmall</key>\n    <string>_tahabovesmall.glif</string>\n    <key>_threedots-ar</key>\n    <string>_threedots-ar.glif</string>\n    <key>_twodotshorizontal-ar</key>\n    <string>_twodotshorizontal-ar.glif</string>\n    <key>_twodotstah</key>\n    <string>_twodotstah.glif</string>\n    <key>_twodotsverticalabove-ar</key>\n    <string>_twodotsverticalabove-ar.glif</string>\n    <key>_vabove</key>\n    <string>_vabove.glif</string>\n    <key>_vbelow-ar</key>\n    <string>_vbelow-ar.glif</string>\n    <key>_vinvertedbelow-ar</key>\n    <string>_vinvertedbelow-ar.glif</string>\n    <key>_yehRohingya-ar</key>\n    <string>_yehR_ohingya-ar.glif</string>\n    <key>_yehRohingya-ar.fina</key>\n    <string>_yehR_ohingya-ar.fina.glif</string>\n    <key>a</key>\n    <string>a.glif</string>\n    <key>a-cy</key>\n    <string>a-cy.glif</string>\n    <key>aacute</key>\n    <string>aacute.glif</string>\n    <key>abreve</key>\n    <string>abreve.glif</string>\n    <key>abreveacute</key>\n    <string>abreveacute.glif</string>\n    <key>abrevedotbelow</key>\n    <string>abrevedotbelow.glif</string>\n    <key>abrevegrave</key>\n    <string>abrevegrave.glif</string>\n    <key>abrevehookabove</key>\n    <string>abrevehookabove.glif</string>\n    <key>abrevetilde</key>\n    <string>abrevetilde.glif</string>\n    <key>acaron</key>\n    <string>acaron.glif</string>\n    <key>acircumflex</key>\n    <string>acircumflex.glif</string>\n    <key>acircumflexacute</key>\n    <string>acircumflexacute.glif</string>\n    <key>acircumflexdotbelow</key>\n    <string>acircumflexdotbelow.glif</string>\n    <key>acircumflexgrave</key>\n    <string>acircumflexgrave.glif</string>\n    <key>acircumflexhookabove</key>\n    <string>acircumflexhookabove.glif</string>\n    <key>acircumflextilde</key>\n    <string>acircumflextilde.glif</string>\n    <key>acknowledgeControl</key>\n    <string>acknowledgeC_ontrol.glif</string>\n    <key>acknowledgeControl.ss20</key>\n    <string>acknowledgeC_ontrol.ss20.glif</string>\n    <key>acute</key>\n    <string>acute.glif</string>\n    <key>acutecomb</key>\n    <string>acutecomb.glif</string>\n    <key>acutecomb.case</key>\n    <string>acutecomb.case.glif</string>\n    <key>acutecomb.case.loclPLK</key>\n    <string>acutecomb.case.loclP_L_K_.glif</string>\n    <key>acutecomb.loclPLK</key>\n    <string>acutecomb.loclP_L_K_.glif</string>\n    <key>acutetonecomb</key>\n    <string>acutetonecomb.glif</string>\n    <key>adieresis</key>\n    <string>adieresis.glif</string>\n    <key>adotbelow</key>\n    <string>adotbelow.glif</string>\n    <key>ae</key>\n    <string>ae.glif</string>\n    <key>ae-ar</key>\n    <string>ae-ar.glif</string>\n    <key>ae-ar.fina</key>\n    <string>ae-ar.fina.glif</string>\n    <key>aeacute</key>\n    <string>aeacute.glif</string>\n    <key>afghani-ar</key>\n    <string>afghani-ar.glif</string>\n    <key>agrave</key>\n    <string>agrave.glif</string>\n    <key>ahookabove</key>\n    <string>ahookabove.glif</string>\n    <key>ain-ar</key>\n    <string>ain-ar.glif</string>\n    <key>ain-ar.fina</key>\n    <string>ain-ar.fina.glif</string>\n    <key>ain-ar.init</key>\n    <string>ain-ar.init.glif</string>\n    <key>ain-ar.medi</key>\n    <string>ain-ar.medi.glif</string>\n    <key>ainThreedots-ar</key>\n    <string>ainT_hreedots-ar.glif</string>\n    <key>ainThreedots-ar.fina</key>\n    <string>ainT_hreedots-ar.fina.glif</string>\n    <key>ainThreedots-ar.init</key>\n    <string>ainT_hreedots-ar.init.glif</string>\n    <key>ainThreedots-ar.medi</key>\n    <string>ainT_hreedots-ar.medi.glif</string>\n    <key>ainThreedotsdownabove-ar</key>\n    <string>ainT_hreedotsdownabove-ar.glif</string>\n    <key>ainThreedotsdownabove-ar.fina</key>\n    <string>ainT_hreedotsdownabove-ar.fina.glif</string>\n    <key>ainThreedotsdownabove-ar.init</key>\n    <string>ainT_hreedotsdownabove-ar.init.glif</string>\n    <key>ainThreedotsdownabove-ar.medi</key>\n    <string>ainT_hreedotsdownabove-ar.medi.glif</string>\n    <key>ainTwodotshorizontalabove-ar</key>\n    <string>ainT_wodotshorizontalabove-ar.glif</string>\n    <key>ainTwodotshorizontalabove-ar.fina</key>\n    <string>ainT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>ainTwodotshorizontalabove-ar.init</key>\n    <string>ainT_wodotshorizontalabove-ar.init.glif</string>\n    <key>ainTwodotshorizontalabove-ar.medi</key>\n    <string>ainT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>ainTwodotsverticalabove-ar</key>\n    <string>ainT_wodotsverticalabove-ar.glif</string>\n    <key>ainTwodotsverticalabove-ar.fina</key>\n    <string>ainT_wodotsverticalabove-ar.fina.glif</string>\n    <key>ainTwodotsverticalabove-ar.init</key>\n    <string>ainT_wodotsverticalabove-ar.init.glif</string>\n    <key>ainTwodotsverticalabove-ar.medi</key>\n    <string>ainT_wodotsverticalabove-ar.medi.glif</string>\n    <key>alef-ar</key>\n    <string>alef-ar.glif</string>\n    <key>alef-ar.fina</key>\n    <string>alef-ar.fina.glif</string>\n    <key>alef-ar.fina.alt</key>\n    <string>alef-ar.fina.alt.glif</string>\n    <key>alef-ar.fina.rlig</key>\n    <string>alef-ar.fina.rlig.glif</string>\n    <key>alef-ar.fina.short</key>\n    <string>alef-ar.fina.short.glif</string>\n    <key>alef-ar.fina.short.alt</key>\n    <string>alef-ar.fina.short.alt.glif</string>\n    <key>alef-ar.fina.short.rlig</key>\n    <string>alef-ar.fina.short.rlig.glif</string>\n    <key>alef-ar.short</key>\n    <string>alef-ar.short.glif</string>\n    <key>alef-hb</key>\n    <string>alef-hb.glif</string>\n    <key>alefFathatan-ar</key>\n    <string>alefF_athatan-ar.glif</string>\n    <key>alefFathatan-ar.fina</key>\n    <string>alefF_athatan-ar.fina.glif</string>\n    <key>alefFathatan-ar.fina.rlig</key>\n    <string>alefF_athatan-ar.fina.rlig.glif</string>\n    <key>alefHamzaabove-ar</key>\n    <string>alefH_amzaabove-ar.glif</string>\n    <key>alefHamzaabove-ar.fina</key>\n    <string>alefH_amzaabove-ar.fina.glif</string>\n    <key>alefHamzaabove-ar.fina.alt</key>\n    <string>alefH_amzaabove-ar.fina.alt.glif</string>\n    <key>alefHamzaabove-ar.fina.rlig</key>\n    <string>alefH_amzaabove-ar.fina.rlig.glif</string>\n    <key>alefHamzabelow-ar</key>\n    <string>alefH_amzabelow-ar.glif</string>\n    <key>alefHamzabelow-ar.fina</key>\n    <string>alefH_amzabelow-ar.fina.glif</string>\n    <key>alefHamzabelow-ar.fina.alt</key>\n    <string>alefH_amzabelow-ar.fina.alt.glif</string>\n    <key>alefHamzabelow-ar.fina.rlig</key>\n    <string>alefH_amzabelow-ar.fina.rlig.glif</string>\n    <key>alefMadda-ar</key>\n    <string>alefM_adda-ar.glif</string>\n    <key>alefMadda-ar.fina</key>\n    <string>alefM_adda-ar.fina.glif</string>\n    <key>alefMadda-ar.fina.alt</key>\n    <string>alefM_adda-ar.fina.alt.glif</string>\n    <key>alefMadda-ar.fina.rlig</key>\n    <string>alefM_adda-ar.fina.rlig.glif</string>\n    <key>alefMaksura-ar</key>\n    <string>alefM_aksura-ar.glif</string>\n    <key>alefMaksura-ar.fina</key>\n    <string>alefM_aksura-ar.fina.glif</string>\n    <key>alefMaksura-ar.fina.alt</key>\n    <string>alefM_aksura-ar.fina.alt.glif</string>\n    <key>alefMaksura-ar.init</key>\n    <string>alefM_aksura-ar.init.glif</string>\n    <key>alefMaksura-ar.init.alt</key>\n    <string>alefM_aksura-ar.init.alt.glif</string>\n    <key>alefMaksura-ar.medi</key>\n    <string>alefM_aksura-ar.medi.glif</string>\n    <key>alefMaksuraAlefabove-ar</key>\n    <string>alefM_aksuraA_lefabove-ar.glif</string>\n    <key>alefMaksuraAlefabove-ar.fina</key>\n    <string>alefM_aksuraA_lefabove-ar.fina.glif</string>\n    <key>alefMaksuraAlefabove-ar.fina.alt</key>\n    <string>alefM_aksuraA_lefabove-ar.fina.alt.glif</string>\n    <key>alefThreeabove-ar</key>\n    <string>alefT_hreeabove-ar.glif</string>\n    <key>alefThreeabove-ar.fina</key>\n    <string>alefT_hreeabove-ar.fina.glif</string>\n    <key>alefThreeabove-ar.fina.alt</key>\n    <string>alefT_hreeabove-ar.fina.alt.glif</string>\n    <key>alefThreeabove-ar.fina.rlig</key>\n    <string>alefT_hreeabove-ar.fina.rlig.glif</string>\n    <key>alefTwoabove-ar</key>\n    <string>alefT_woabove-ar.glif</string>\n    <key>alefTwoabove-ar.fina</key>\n    <string>alefT_woabove-ar.fina.glif</string>\n    <key>alefTwoabove-ar.fina.alt</key>\n    <string>alefT_woabove-ar.fina.alt.glif</string>\n    <key>alefTwoabove-ar.fina.rlig</key>\n    <string>alefT_woabove-ar.fina.rlig.glif</string>\n    <key>alefWasla-ar</key>\n    <string>alefW_asla-ar.glif</string>\n    <key>alefWasla-ar.fina</key>\n    <string>alefW_asla-ar.fina.glif</string>\n    <key>alefWasla-ar.fina.alt</key>\n    <string>alefW_asla-ar.fina.alt.glif</string>\n    <key>alefWasla-ar.fina.rlig</key>\n    <string>alefW_asla-ar.fina.rlig.glif</string>\n    <key>alefWavyhamzaabove-ar</key>\n    <string>alefW_avyhamzaabove-ar.glif</string>\n    <key>alefWavyhamzaabove-ar.fina</key>\n    <string>alefW_avyhamzaabove-ar.fina.glif</string>\n    <key>alefWavyhamzaabove-ar.fina.alt</key>\n    <string>alefW_avyhamzaabove-ar.fina.alt.glif</string>\n    <key>alefWavyhamzaabove-ar.fina.rlig</key>\n    <string>alefW_avyhamzaabove-ar.fina.rlig.glif</string>\n    <key>alefWavyhamzabelow-ar</key>\n    <string>alefW_avyhamzabelow-ar.glif</string>\n    <key>alefWavyhamzabelow-ar.fina</key>\n    <string>alefW_avyhamzabelow-ar.fina.glif</string>\n    <key>alefWavyhamzabelow-ar.fina.alt</key>\n    <string>alefW_avyhamzabelow-ar.fina.alt.glif</string>\n    <key>alefWavyhamzabelow-ar.fina.rlig</key>\n    <string>alefW_avyhamzabelow-ar.fina.rlig.glif</string>\n    <key>alefabove-ar</key>\n    <string>alefabove-ar.glif</string>\n    <key>alefbelow-ar</key>\n    <string>alefbelow-ar.glif</string>\n    <key>alefdagesh-hb</key>\n    <string>alefdagesh-hb.glif</string>\n    <key>alefdagesh-hb.BRACKET.500</key>\n    <string>alefdagesh-hb.B_R_A_C_K_E_T_.500.glif</string>\n    <key>alefpatah-hb</key>\n    <string>alefpatah-hb.glif</string>\n    <key>alefqamats-hb</key>\n    <string>alefqamats-hb.glif</string>\n    <key>allah-ar</key>\n    <string>allah-ar.glif</string>\n    <key>alpha</key>\n    <string>alpha.glif</string>\n    <key>alpha-latin</key>\n    <string>alpha-latin.glif</string>\n    <key>alphatonos</key>\n    <string>alphatonos.glif</string>\n    <key>amacron</key>\n    <string>amacron.glif</string>\n    <key>ampersand</key>\n    <string>ampersand.glif</string>\n    <key>ampersand_ampersand.liga</key>\n    <string>ampersand_ampersand.liga.glif</string>\n    <key>anoteleia</key>\n    <string>anoteleia.glif</string>\n    <key>aogonek</key>\n    <string>aogonek.glif</string>\n    <key>apostrophemod</key>\n    <string>apostrophemod.glif</string>\n    <key>approxequal</key>\n    <string>approxequal.glif</string>\n    <key>aring</key>\n    <string>aring.glif</string>\n    <key>aringacute</key>\n    <string>aringacute.glif</string>\n    <key>asciicircum</key>\n    <string>asciicircum.glif</string>\n    <key>asciicircum_equal.liga</key>\n    <string>asciicircum_equal.liga.glif</string>\n    <key>asciitilde</key>\n    <string>asciitilde.glif</string>\n    <key>asciitilde_asciitilde.liga</key>\n    <string>asciitilde_asciitilde.liga.glif</string>\n    <key>asciitilde_asciitilde_greater.liga</key>\n    <string>asciitilde_asciitilde_greater.liga.glif</string>\n    <key>asciitilde_at.liga</key>\n    <string>asciitilde_at.liga.glif</string>\n    <key>asciitilde_equal.liga</key>\n    <string>asciitilde_equal.liga.glif</string>\n    <key>asciitilde_greater.liga</key>\n    <string>asciitilde_greater.liga.glif</string>\n    <key>asciitilde_hyphen.liga</key>\n    <string>asciitilde_hyphen.liga.glif</string>\n    <key>asterisk</key>\n    <string>asterisk.glif</string>\n    <key>asterisk-ar</key>\n    <string>asterisk-ar.glif</string>\n    <key>asteriskArt-ar</key>\n    <string>asteriskA_rt-ar.glif</string>\n    <key>asterisk_asterisk.liga</key>\n    <string>asterisk_asterisk.liga.glif</string>\n    <key>asterisk_asterisk_asterisk.liga</key>\n    <string>asterisk_asterisk_asterisk.liga.glif</string>\n    <key>asterisk_greater.liga</key>\n    <string>asterisk_greater.liga.glif</string>\n    <key>asterisk_parenright.liga</key>\n    <string>asterisk_parenright.liga.glif</string>\n    <key>asterisk_slash.liga</key>\n    <string>asterisk_slash.liga.glif</string>\n    <key>at</key>\n    <string>at.glif</string>\n    <key>atilde</key>\n    <string>atilde.glif</string>\n    <key>ayin-hb</key>\n    <string>ayin-hb.glif</string>\n    <key>b</key>\n    <string>b.glif</string>\n    <key>backslash</key>\n    <string>backslash.glif</string>\n    <key>backslash_backslash.liga</key>\n    <string>backslash_backslash.liga.glif</string>\n    <key>backslash_slash.liga</key>\n    <string>backslash_slash.liga.glif</string>\n    <key>backspaceControl</key>\n    <string>backspaceC_ontrol.glif</string>\n    <key>backspaceControl.ss20</key>\n    <string>backspaceC_ontrol.ss20.glif</string>\n    <key>baht</key>\n    <string>baht.glif</string>\n    <key>baht.BRACKET.600</key>\n    <string>baht.B_R_A_C_K_E_T_.600.glif</string>\n    <key>bar</key>\n    <string>bar.glif</string>\n    <key>bar_bar.liga</key>\n    <string>bar_bar.liga.glif</string>\n    <key>bar_bar_bar.liga</key>\n    <string>bar_bar_bar.liga.glif</string>\n    <key>bar_bar_bar_greater.liga</key>\n    <string>bar_bar_bar_greater.liga.glif</string>\n    <key>bar_bar_equal_end.seq</key>\n    <string>bar_bar_equal_end.seq.glif</string>\n    <key>bar_bar_equal_middle.seq</key>\n    <string>bar_bar_equal_middle.seq.glif</string>\n    <key>bar_bar_equal_start.seq</key>\n    <string>bar_bar_equal_start.seq.glif</string>\n    <key>bar_bar_greater.liga</key>\n    <string>bar_bar_greater.liga.glif</string>\n    <key>bar_bar_hyphen_end.seq</key>\n    <string>bar_bar_hyphen_end.seq.glif</string>\n    <key>bar_bar_hyphen_middle.seq</key>\n    <string>bar_bar_hyphen_middle.seq.glif</string>\n    <key>bar_bar_hyphen_start.seq</key>\n    <string>bar_bar_hyphen_start.seq.glif</string>\n    <key>bar_braceright.liga</key>\n    <string>bar_braceright.liga.glif</string>\n    <key>bar_bracketright.liga</key>\n    <string>bar_bracketright.liga.glif</string>\n    <key>bar_equal_end.seq</key>\n    <string>bar_equal_end.seq.glif</string>\n    <key>bar_equal_middle.seq</key>\n    <string>bar_equal_middle.seq.glif</string>\n    <key>bar_equal_start.seq</key>\n    <string>bar_equal_start.seq.glif</string>\n    <key>bar_greater.liga</key>\n    <string>bar_greater.liga.glif</string>\n    <key>bar_hyphen_end.seq</key>\n    <string>bar_hyphen_end.seq.glif</string>\n    <key>bar_hyphen_middle.seq</key>\n    <string>bar_hyphen_middle.seq.glif</string>\n    <key>bar_hyphen_start.seq</key>\n    <string>bar_hyphen_start.seq.glif</string>\n    <key>bar_underscore_middle.seq</key>\n    <string>bar_underscore_middle.seq.glif</string>\n    <key>be-cy</key>\n    <string>be-cy.glif</string>\n    <key>be-cy.loclSRB</key>\n    <string>be-cy.loclS_R_B_.glif</string>\n    <key>beeh-ar</key>\n    <string>beeh-ar.glif</string>\n    <key>beeh-ar.alt</key>\n    <string>beeh-ar.alt.glif</string>\n    <key>beeh-ar.fina</key>\n    <string>beeh-ar.fina.glif</string>\n    <key>beeh-ar.fina.alt</key>\n    <string>beeh-ar.fina.alt.glif</string>\n    <key>beeh-ar.init</key>\n    <string>beeh-ar.init.glif</string>\n    <key>beeh-ar.init.alt</key>\n    <string>beeh-ar.init.alt.glif</string>\n    <key>beeh-ar.medi</key>\n    <string>beeh-ar.medi.glif</string>\n    <key>beh-ar</key>\n    <string>beh-ar.glif</string>\n    <key>beh-ar.alt</key>\n    <string>beh-ar.alt.glif</string>\n    <key>beh-ar.fina</key>\n    <string>beh-ar.fina.glif</string>\n    <key>beh-ar.fina.alt</key>\n    <string>beh-ar.fina.alt.glif</string>\n    <key>beh-ar.init</key>\n    <string>beh-ar.init.glif</string>\n    <key>beh-ar.init.alt</key>\n    <string>beh-ar.init.alt.glif</string>\n    <key>beh-ar.medi</key>\n    <string>beh-ar.medi.glif</string>\n    <key>behDotless-ar</key>\n    <string>behD_otless-ar.glif</string>\n    <key>behDotless-ar.alt</key>\n    <string>behD_otless-ar.alt.glif</string>\n    <key>behDotless-ar.fina</key>\n    <string>behD_otless-ar.fina.glif</string>\n    <key>behDotless-ar.fina.alt</key>\n    <string>behD_otless-ar.fina.alt.glif</string>\n    <key>behDotless-ar.init</key>\n    <string>behD_otless-ar.init.glif</string>\n    <key>behDotless-ar.init.alt</key>\n    <string>behD_otless-ar.init.alt.glif</string>\n    <key>behDotless-ar.medi</key>\n    <string>behD_otless-ar.medi.glif</string>\n    <key>behMeemabove-ar</key>\n    <string>behM_eemabove-ar.glif</string>\n    <key>behMeemabove-ar.alt</key>\n    <string>behM_eemabove-ar.alt.glif</string>\n    <key>behMeemabove-ar.fina</key>\n    <string>behM_eemabove-ar.fina.glif</string>\n    <key>behMeemabove-ar.fina.alt</key>\n    <string>behM_eemabove-ar.fina.alt.glif</string>\n    <key>behMeemabove-ar.init</key>\n    <string>behM_eemabove-ar.init.glif</string>\n    <key>behMeemabove-ar.init.alt</key>\n    <string>behM_eemabove-ar.init.alt.glif</string>\n    <key>behMeemabove-ar.medi</key>\n    <string>behM_eemabove-ar.medi.glif</string>\n    <key>behThreedotshorizontalbelow-ar</key>\n    <string>behT_hreedotshorizontalbelow-ar.glif</string>\n    <key>behThreedotshorizontalbelow-ar.alt</key>\n    <string>behT_hreedotshorizontalbelow-ar.alt.glif</string>\n    <key>behThreedotshorizontalbelow-ar.fina</key>\n    <string>behT_hreedotshorizontalbelow-ar.fina.glif</string>\n    <key>behThreedotshorizontalbelow-ar.fina.alt</key>\n    <string>behT_hreedotshorizontalbelow-ar.fina.alt.glif</string>\n    <key>behThreedotshorizontalbelow-ar.init</key>\n    <string>behT_hreedotshorizontalbelow-ar.init.glif</string>\n    <key>behThreedotshorizontalbelow-ar.init.alt</key>\n    <string>behT_hreedotshorizontalbelow-ar.init.alt.glif</string>\n    <key>behThreedotshorizontalbelow-ar.medi</key>\n    <string>behT_hreedotshorizontalbelow-ar.medi.glif</string>\n    <key>behThreedotsupabove-ar</key>\n    <string>behT_hreedotsupabove-ar.glif</string>\n    <key>behThreedotsupabove-ar.alt</key>\n    <string>behT_hreedotsupabove-ar.alt.glif</string>\n    <key>behThreedotsupabove-ar.fina</key>\n    <string>behT_hreedotsupabove-ar.fina.glif</string>\n    <key>behThreedotsupabove-ar.fina.alt</key>\n    <string>behT_hreedotsupabove-ar.fina.alt.glif</string>\n    <key>behThreedotsupabove-ar.init</key>\n    <string>behT_hreedotsupabove-ar.init.glif</string>\n    <key>behThreedotsupabove-ar.init.alt</key>\n    <string>behT_hreedotsupabove-ar.init.alt.glif</string>\n    <key>behThreedotsupabove-ar.medi</key>\n    <string>behT_hreedotsupabove-ar.medi.glif</string>\n    <key>behThreedotsupbelow-ar</key>\n    <string>behT_hreedotsupbelow-ar.glif</string>\n    <key>behThreedotsupbelow-ar.alt</key>\n    <string>behT_hreedotsupbelow-ar.alt.glif</string>\n    <key>behThreedotsupbelow-ar.fina</key>\n    <string>behT_hreedotsupbelow-ar.fina.glif</string>\n    <key>behThreedotsupbelow-ar.fina.alt</key>\n    <string>behT_hreedotsupbelow-ar.fina.alt.glif</string>\n    <key>behThreedotsupbelow-ar.init</key>\n    <string>behT_hreedotsupbelow-ar.init.glif</string>\n    <key>behThreedotsupbelow-ar.init.alt</key>\n    <string>behT_hreedotsupbelow-ar.init.alt.glif</string>\n    <key>behThreedotsupbelow-ar.medi</key>\n    <string>behT_hreedotsupbelow-ar.medi.glif</string>\n    <key>behTwodotsbelowDotabove-ar</key>\n    <string>behT_wodotsbelowD_otabove-ar.glif</string>\n    <key>behTwodotsbelowDotabove-ar.alt</key>\n    <string>behT_wodotsbelowD_otabove-ar.alt.glif</string>\n    <key>behTwodotsbelowDotabove-ar.fina</key>\n    <string>behT_wodotsbelowD_otabove-ar.fina.glif</string>\n    <key>behTwodotsbelowDotabove-ar.fina.alt</key>\n    <string>behT_wodotsbelowD_otabove-ar.fina.alt.glif</string>\n    <key>behTwodotsbelowDotabove-ar.init</key>\n    <string>behT_wodotsbelowD_otabove-ar.init.glif</string>\n    <key>behTwodotsbelowDotabove-ar.init.alt</key>\n    <string>behT_wodotsbelowD_otabove-ar.init.alt.glif</string>\n    <key>behTwodotsbelowDotabove-ar.medi</key>\n    <string>behT_wodotsbelowD_otabove-ar.medi.glif</string>\n    <key>behVabove-ar</key>\n    <string>behV_above-ar.glif</string>\n    <key>behVabove-ar.alt</key>\n    <string>behV_above-ar.alt.glif</string>\n    <key>behVabove-ar.fina</key>\n    <string>behV_above-ar.fina.glif</string>\n    <key>behVabove-ar.fina.alt</key>\n    <string>behV_above-ar.fina.alt.glif</string>\n    <key>behVabove-ar.init</key>\n    <string>behV_above-ar.init.glif</string>\n    <key>behVabove-ar.init.alt</key>\n    <string>behV_above-ar.init.alt.glif</string>\n    <key>behVabove-ar.medi</key>\n    <string>behV_above-ar.medi.glif</string>\n    <key>behVbelow-ar</key>\n    <string>behV_below-ar.glif</string>\n    <key>behVbelow-ar.alt</key>\n    <string>behV_below-ar.alt.glif</string>\n    <key>behVbelow-ar.fina</key>\n    <string>behV_below-ar.fina.glif</string>\n    <key>behVbelow-ar.fina.alt</key>\n    <string>behV_below-ar.fina.alt.glif</string>\n    <key>behVbelow-ar.init</key>\n    <string>behV_below-ar.init.glif</string>\n    <key>behVbelow-ar.init.alt</key>\n    <string>behV_below-ar.init.alt.glif</string>\n    <key>behVbelow-ar.medi</key>\n    <string>behV_below-ar.medi.glif</string>\n    <key>behVinvertedbelow-ar</key>\n    <string>behV_invertedbelow-ar.glif</string>\n    <key>behVinvertedbelow-ar.alt</key>\n    <string>behV_invertedbelow-ar.alt.glif</string>\n    <key>behVinvertedbelow-ar.fina</key>\n    <string>behV_invertedbelow-ar.fina.glif</string>\n    <key>behVinvertedbelow-ar.fina.alt</key>\n    <string>behV_invertedbelow-ar.fina.alt.glif</string>\n    <key>behVinvertedbelow-ar.init</key>\n    <string>behV_invertedbelow-ar.init.glif</string>\n    <key>behVinvertedbelow-ar.init.alt</key>\n    <string>behV_invertedbelow-ar.init.alt.glif</string>\n    <key>behVinvertedbelow-ar.medi</key>\n    <string>behV_invertedbelow-ar.medi.glif</string>\n    <key>beheh-ar</key>\n    <string>beheh-ar.glif</string>\n    <key>beheh-ar.alt</key>\n    <string>beheh-ar.alt.glif</string>\n    <key>beheh-ar.fina</key>\n    <string>beheh-ar.fina.glif</string>\n    <key>beheh-ar.fina.alt</key>\n    <string>beheh-ar.fina.alt.glif</string>\n    <key>beheh-ar.init</key>\n    <string>beheh-ar.init.glif</string>\n    <key>beheh-ar.init.alt</key>\n    <string>beheh-ar.init.alt.glif</string>\n    <key>beheh-ar.medi</key>\n    <string>beheh-ar.medi.glif</string>\n    <key>behhamzaabove-ar</key>\n    <string>behhamzaabove-ar.glif</string>\n    <key>behhamzaabove-ar.alt</key>\n    <string>behhamzaabove-ar.alt.glif</string>\n    <key>behhamzaabove-ar.fina</key>\n    <string>behhamzaabove-ar.fina.glif</string>\n    <key>behhamzaabove-ar.fina.alt</key>\n    <string>behhamzaabove-ar.fina.alt.glif</string>\n    <key>behhamzaabove-ar.init</key>\n    <string>behhamzaabove-ar.init.glif</string>\n    <key>behhamzaabove-ar.medi</key>\n    <string>behhamzaabove-ar.medi.glif</string>\n    <key>bellControl</key>\n    <string>bellC_ontrol.glif</string>\n    <key>bellControl.ss20</key>\n    <string>bellC_ontrol.ss20.glif</string>\n    <key>bet-hb</key>\n    <string>bet-hb.glif</string>\n    <key>beta</key>\n    <string>beta.glif</string>\n    <key>betdagesh-hb</key>\n    <string>betdagesh-hb.glif</string>\n    <key>bitcoin</key>\n    <string>bitcoin.glif</string>\n    <key>blackCircle</key>\n    <string>blackC_ircle.glif</string>\n    <key>blackDiamond</key>\n    <string>blackD_iamond.glif</string>\n    <key>blackHexagon</key>\n    <string>blackH_exagon.glif</string>\n    <key>blackHorizontalEllipse</key>\n    <string>blackH_orizontalE_llipse.glif</string>\n    <key>blackInWhiteDiamond</key>\n    <string>blackI_nW_hiteD_iamond.glif</string>\n    <key>blackLargeCircle</key>\n    <string>blackL_argeC_ircle.glif</string>\n    <key>blackLargeSquare</key>\n    <string>blackL_argeS_quare.glif</string>\n    <key>blackMediumDiamond</key>\n    <string>blackM_ediumD_iamond.glif</string>\n    <key>blackMediumDownTriangleCentred</key>\n    <string>blackM_ediumD_ownT_riangleC_entred.glif</string>\n    <key>blackMediumLeftTriangleCentred</key>\n    <string>blackM_ediumL_eftT_riangleC_entred.glif</string>\n    <key>blackMediumLozenge</key>\n    <string>blackM_ediumL_ozenge.glif</string>\n    <key>blackMediumRightTriangleCentred</key>\n    <string>blackM_ediumR_ightT_riangleC_entred.glif</string>\n    <key>blackMediumUpTriangleCentred</key>\n    <string>blackM_ediumU_pT_riangleC_entred.glif</string>\n    <key>blackParallelogram</key>\n    <string>blackP_arallelogram.glif</string>\n    <key>blackPentagon</key>\n    <string>blackP_entagon.glif</string>\n    <key>blackSmallDiamond</key>\n    <string>blackS_mallD_iamond.glif</string>\n    <key>blackSmallLozenge</key>\n    <string>blackS_mallL_ozenge.glif</string>\n    <key>blackSmallSquare</key>\n    <string>blackS_mallS_quare.glif</string>\n    <key>blackSmilingFace</key>\n    <string>blackS_milingF_ace.glif</string>\n    <key>blackSquare</key>\n    <string>blackS_quare.glif</string>\n    <key>blackVerticalEllipse</key>\n    <string>blackV_erticalE_llipse.glif</string>\n    <key>blackVerticalRect</key>\n    <string>blackV_erticalR_ect.glif</string>\n    <key>blackVerysmallSquare</key>\n    <string>blackV_erysmallS_quare.glif</string>\n    <key>blank</key>\n    <string>blank.glif</string>\n    <key>blank-braille</key>\n    <string>blank-braille.glif</string>\n    <key>blankSymbol</key>\n    <string>blankS_ymbol.glif</string>\n    <key>bottomHalfBlackCircle</key>\n    <string>bottomH_alfB_lackC_ircle.glif</string>\n    <key>bottomHalfBlackDiamond</key>\n    <string>bottomH_alfB_lackD_iamond.glif</string>\n    <key>boxDoubleDownAndHorizontal</key>\n    <string>boxD_oubleD_ownA_ndH_orizontal.glif</string>\n    <key>boxDoubleDownAndHorizontal.stypo</key>\n    <string>boxD_oubleD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleDownAndLeft</key>\n    <string>boxD_oubleD_ownA_ndL_eft.glif</string>\n    <key>boxDoubleDownAndLeft.stypo</key>\n    <string>boxD_oubleD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleDownAndRight</key>\n    <string>boxD_oubleD_ownA_ndR_ight.glif</string>\n    <key>boxDoubleDownAndRight.stypo</key>\n    <string>boxD_oubleD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxDoubleHorizontal</key>\n    <string>boxD_oubleH_orizontal.glif</string>\n    <key>boxDoubleHorizontal.stypo</key>\n    <string>boxD_oubleH_orizontal.stypo.glif</string>\n    <key>boxDoubleUpAndHorizontal</key>\n    <string>boxD_oubleU_pA_ndH_orizontal.glif</string>\n    <key>boxDoubleUpAndHorizontal.stypo</key>\n    <string>boxD_oubleU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleUpAndLeft</key>\n    <string>boxD_oubleU_pA_ndL_eft.glif</string>\n    <key>boxDoubleUpAndLeft.stypo</key>\n    <string>boxD_oubleU_pA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleUpAndRight</key>\n    <string>boxD_oubleU_pA_ndR_ight.glif</string>\n    <key>boxDoubleUpAndRight.stypo</key>\n    <string>boxD_oubleU_pA_ndR_ight.stypo.glif</string>\n    <key>boxDoubleVertical</key>\n    <string>boxD_oubleV_ertical.glif</string>\n    <key>boxDoubleVertical.stypo</key>\n    <string>boxD_oubleV_ertical.stypo.glif</string>\n    <key>boxDoubleVerticalAndHorizontal</key>\n    <string>boxD_oubleV_erticalA_ndH_orizontal.glif</string>\n    <key>boxDoubleVerticalAndHorizontal.stypo</key>\n    <string>boxD_oubleV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleVerticalAndLeft</key>\n    <string>boxD_oubleV_erticalA_ndL_eft.glif</string>\n    <key>boxDoubleVerticalAndLeft.stypo</key>\n    <string>boxD_oubleV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleVerticalAndRight</key>\n    <string>boxD_oubleV_erticalA_ndR_ight.glif</string>\n    <key>boxDoubleVerticalAndRight.stypo</key>\n    <string>boxD_oubleV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxDownDoubleAndHorizontalSingle</key>\n    <string>boxD_ownD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxDownDoubleAndHorizontalSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxDownDoubleAndLeftSingle</key>\n    <string>boxD_ownD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxDownDoubleAndLeftSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxDownDoubleAndRightSingle</key>\n    <string>boxD_ownD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxDownDoubleAndRightSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxDownHeavyAndHorizontalLight</key>\n    <string>boxD_ownH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxDownHeavyAndHorizontalLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndLeftLight</key>\n    <string>boxD_ownH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxDownHeavyAndLeftLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndLeftUpLight</key>\n    <string>boxD_ownH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxDownHeavyAndLeftUpLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndRightLight</key>\n    <string>boxD_ownH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxDownHeavyAndRightLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndRightUpLight</key>\n    <string>boxD_ownH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxDownHeavyAndRightUpLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndUpHorizontalLight</key>\n    <string>boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif</string>\n    <key>boxDownHeavyAndUpHorizontalLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif</string>\n    <key>boxDownLightAndHorizontalHeavy</key>\n    <string>boxD_ownL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxDownLightAndHorizontalHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxDownLightAndLeftHeavy</key>\n    <string>boxD_ownL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxDownLightAndLeftHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxDownLightAndLeftUpHeavy</key>\n    <string>boxD_ownL_ightA_ndL_eftU_pH_eavy.glif</string>\n    <key>boxDownLightAndLeftUpHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif</string>\n    <key>boxDownLightAndRightHeavy</key>\n    <string>boxD_ownL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxDownLightAndRightHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxDownLightAndRightUpHeavy</key>\n    <string>boxD_ownL_ightA_ndR_ightU_pH_eavy.glif</string>\n    <key>boxDownLightAndRightUpHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif</string>\n    <key>boxDownLightAndUpHorizontalHeavy</key>\n    <string>boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif</string>\n    <key>boxDownLightAndUpHorizontalHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif</string>\n    <key>boxDownSingleAndHorizontalDouble</key>\n    <string>boxD_ownS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxDownSingleAndHorizontalDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxDownSingleAndLeftDouble</key>\n    <string>boxD_ownS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxDownSingleAndLeftDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxDownSingleAndRightDouble</key>\n    <string>boxD_ownS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxDownSingleAndRightDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>boxHeavyDoubleDashHorizontal</key>\n    <string>boxH_eavyD_oubleD_ashH_orizontal.glif</string>\n    <key>boxHeavyDoubleDashHorizontal.stypo</key>\n    <string>boxH_eavyD_oubleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyDoubleDashVertical</key>\n    <string>boxH_eavyD_oubleD_ashV_ertical.glif</string>\n    <key>boxHeavyDoubleDashVertical.stypo</key>\n    <string>boxH_eavyD_oubleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyDown</key>\n    <string>boxH_eavyD_own.glif</string>\n    <key>boxHeavyDown.stypo</key>\n    <string>boxH_eavyD_own.stypo.glif</string>\n    <key>boxHeavyDownAndHorizontal</key>\n    <string>boxH_eavyD_ownA_ndH_orizontal.glif</string>\n    <key>boxHeavyDownAndHorizontal.stypo</key>\n    <string>boxH_eavyD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyDownAndLeft</key>\n    <string>boxH_eavyD_ownA_ndL_eft.glif</string>\n    <key>boxHeavyDownAndLeft.stypo</key>\n    <string>boxH_eavyD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyDownAndRight</key>\n    <string>boxH_eavyD_ownA_ndR_ight.glif</string>\n    <key>boxHeavyDownAndRight.stypo</key>\n    <string>boxH_eavyD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxHeavyHorizontal</key>\n    <string>boxH_eavyH_orizontal.glif</string>\n    <key>boxHeavyHorizontal.stypo</key>\n    <string>boxH_eavyH_orizontal.stypo.glif</string>\n    <key>boxHeavyLeft</key>\n    <string>boxH_eavyL_eft.glif</string>\n    <key>boxHeavyLeft.stypo</key>\n    <string>boxH_eavyL_eft.stypo.glif</string>\n    <key>boxHeavyLeftAndLightRight</key>\n    <string>boxH_eavyL_eftA_ndL_ightR_ight.glif</string>\n    <key>boxHeavyLeftAndLightRight.stypo</key>\n    <string>boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif</string>\n    <key>boxHeavyQuadrupleDashHorizontal</key>\n    <string>boxH_eavyQ_uadrupleD_ashH_orizontal.glif</string>\n    <key>boxHeavyQuadrupleDashHorizontal.stypo</key>\n    <string>boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyQuadrupleDashVertical</key>\n    <string>boxH_eavyQ_uadrupleD_ashV_ertical.glif</string>\n    <key>boxHeavyQuadrupleDashVertical.stypo</key>\n    <string>boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyRight</key>\n    <string>boxH_eavyR_ight.glif</string>\n    <key>boxHeavyRight.stypo</key>\n    <string>boxH_eavyR_ight.stypo.glif</string>\n    <key>boxHeavyTripleDashHorizontal</key>\n    <string>boxH_eavyT_ripleD_ashH_orizontal.glif</string>\n    <key>boxHeavyTripleDashHorizontal.stypo</key>\n    <string>boxH_eavyT_ripleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyTripleDashVertical</key>\n    <string>boxH_eavyT_ripleD_ashV_ertical.glif</string>\n    <key>boxHeavyTripleDashVertical.stypo</key>\n    <string>boxH_eavyT_ripleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyUp</key>\n    <string>boxH_eavyU_p.glif</string>\n    <key>boxHeavyUp.stypo</key>\n    <string>boxH_eavyU_p.stypo.glif</string>\n    <key>boxHeavyUpAndHorizontal</key>\n    <string>boxH_eavyU_pA_ndH_orizontal.glif</string>\n    <key>boxHeavyUpAndHorizontal.stypo</key>\n    <string>boxH_eavyU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyUpAndLeft</key>\n    <string>boxH_eavyU_pA_ndL_eft.glif</string>\n    <key>boxHeavyUpAndLeft.stypo</key>\n    <string>boxH_eavyU_pA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyUpAndLightDown</key>\n    <string>boxH_eavyU_pA_ndL_ightD_own.glif</string>\n    <key>boxHeavyUpAndLightDown.stypo</key>\n    <string>boxH_eavyU_pA_ndL_ightD_own.stypo.glif</string>\n    <key>boxHeavyUpAndRight</key>\n    <string>boxH_eavyU_pA_ndR_ight.glif</string>\n    <key>boxHeavyUpAndRight.stypo</key>\n    <string>boxH_eavyU_pA_ndR_ight.stypo.glif</string>\n    <key>boxHeavyVertical</key>\n    <string>boxH_eavyV_ertical.glif</string>\n    <key>boxHeavyVertical.stypo</key>\n    <string>boxH_eavyV_ertical.stypo.glif</string>\n    <key>boxHeavyVerticalAndHorizontal</key>\n    <string>boxH_eavyV_erticalA_ndH_orizontal.glif</string>\n    <key>boxHeavyVerticalAndHorizontal.stypo</key>\n    <string>boxH_eavyV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyVerticalAndLeft</key>\n    <string>boxH_eavyV_erticalA_ndL_eft.glif</string>\n    <key>boxHeavyVerticalAndLeft.stypo</key>\n    <string>boxH_eavyV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyVerticalAndRight</key>\n    <string>boxH_eavyV_erticalA_ndR_ight.glif</string>\n    <key>boxHeavyVerticalAndRight.stypo</key>\n    <string>boxH_eavyV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxLeftDownHeavyAndRightUpLight</key>\n    <string>boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxLeftDownHeavyAndRightUpLight.stypo</key>\n    <string>boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightDownLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxLeftHeavyAndRightDownLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightUpLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxLeftHeavyAndRightUpLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightVerticalLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif</string>\n    <key>boxLeftHeavyAndRightVerticalLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif</string>\n    <key>boxLeftLightAndRightDownHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif</string>\n    <key>boxLeftLightAndRightDownHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif</string>\n    <key>boxLeftLightAndRightUpHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightU_pH_eavy.glif</string>\n    <key>boxLeftLightAndRightUpHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif</string>\n    <key>boxLeftLightAndRightVerticalHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif</string>\n    <key>boxLeftLightAndRightVerticalHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif</string>\n    <key>boxLeftUpHeavyAndRightDownLight</key>\n    <string>boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxLeftUpHeavyAndRightDownLight.stypo</key>\n    <string>boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxLightArcDownAndLeft</key>\n    <string>boxL_ightA_rcD_ownA_ndL_eft.glif</string>\n    <key>boxLightArcDownAndLeft.stypo</key>\n    <string>boxL_ightA_rcD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxLightArcDownAndRight</key>\n    <string>boxL_ightA_rcD_ownA_ndR_ight.glif</string>\n    <key>boxLightArcDownAndRight.stypo</key>\n    <string>boxL_ightA_rcD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxLightArcUpAndLeft</key>\n    <string>boxL_ightA_rcU_pA_ndL_eft.glif</string>\n    <key>boxLightArcUpAndLeft.stypo</key>\n    <string>boxL_ightA_rcU_pA_ndL_eft.stypo.glif</string>\n    <key>boxLightArcUpAndRight</key>\n    <string>boxL_ightA_rcU_pA_ndR_ight.glif</string>\n    <key>boxLightArcUpAndRight.stypo</key>\n    <string>boxL_ightA_rcU_pA_ndR_ight.stypo.glif</string>\n    <key>boxLightDiagonalCross</key>\n    <string>boxL_ightD_iagonalC_ross.glif</string>\n    <key>boxLightDiagonalCross.stypo</key>\n    <string>boxL_ightD_iagonalC_ross.stypo.glif</string>\n    <key>boxLightDiagonalUpperLeftToLowerRight</key>\n    <string>boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif</string>\n    <key>boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n    <string>boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif</string>\n    <key>boxLightDiagonalUpperRightToLowerLeft</key>\n    <string>boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif</string>\n    <key>boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n    <string>boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif</string>\n    <key>boxLightDoubleDashHorizontal</key>\n    <string>boxL_ightD_oubleD_ashH_orizontal.glif</string>\n    <key>boxLightDoubleDashHorizontal.stypo</key>\n    <string>boxL_ightD_oubleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightDoubleDashVertical</key>\n    <string>boxL_ightD_oubleD_ashV_ertical.glif</string>\n    <key>boxLightDoubleDashVertical.stypo</key>\n    <string>boxL_ightD_oubleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightDown</key>\n    <string>boxL_ightD_own.glif</string>\n    <key>boxLightDown.stypo</key>\n    <string>boxL_ightD_own.stypo.glif</string>\n    <key>boxLightDownAndHorizontal</key>\n    <string>boxL_ightD_ownA_ndH_orizontal.glif</string>\n    <key>boxLightDownAndHorizontal.stypo</key>\n    <string>boxL_ightD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightDownAndLeft</key>\n    <string>boxL_ightD_ownA_ndL_eft.glif</string>\n    <key>boxLightDownAndLeft.stypo</key>\n    <string>boxL_ightD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxLightDownAndRight</key>\n    <string>boxL_ightD_ownA_ndR_ight.glif</string>\n    <key>boxLightDownAndRight.stypo</key>\n    <string>boxL_ightD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxLightHorizontal</key>\n    <string>boxL_ightH_orizontal.glif</string>\n    <key>boxLightHorizontal.stypo</key>\n    <string>boxL_ightH_orizontal.stypo.glif</string>\n    <key>boxLightLeft</key>\n    <string>boxL_ightL_eft.glif</string>\n    <key>boxLightLeft.stypo</key>\n    <string>boxL_ightL_eft.stypo.glif</string>\n    <key>boxLightLeftAndHeavyRight</key>\n    <string>boxL_ightL_eftA_ndH_eavyR_ight.glif</string>\n    <key>boxLightLeftAndHeavyRight.stypo</key>\n    <string>boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif</string>\n    <key>boxLightQuadrupleDashHorizontal</key>\n    <string>boxL_ightQ_uadrupleD_ashH_orizontal.glif</string>\n    <key>boxLightQuadrupleDashHorizontal.stypo</key>\n    <string>boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightQuadrupleDashVertical</key>\n    <string>boxL_ightQ_uadrupleD_ashV_ertical.glif</string>\n    <key>boxLightQuadrupleDashVertical.stypo</key>\n    <string>boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightRight</key>\n    <string>boxL_ightR_ight.glif</string>\n    <key>boxLightRight.stypo</key>\n    <string>boxL_ightR_ight.stypo.glif</string>\n    <key>boxLightTripleDashHorizontal</key>\n    <string>boxL_ightT_ripleD_ashH_orizontal.glif</string>\n    <key>boxLightTripleDashHorizontal.stypo</key>\n    <string>boxL_ightT_ripleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightTripleDashVertical</key>\n    <string>boxL_ightT_ripleD_ashV_ertical.glif</string>\n    <key>boxLightTripleDashVertical.stypo</key>\n    <string>boxL_ightT_ripleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightUp</key>\n    <string>boxL_ightU_p.glif</string>\n    <key>boxLightUp.stypo</key>\n    <string>boxL_ightU_p.stypo.glif</string>\n    <key>boxLightUpAndHeavyDown</key>\n    <string>boxL_ightU_pA_ndH_eavyD_own.glif</string>\n    <key>boxLightUpAndHeavyDown.stypo</key>\n    <string>boxL_ightU_pA_ndH_eavyD_own.stypo.glif</string>\n    <key>boxLightUpAndHorizontal</key>\n    <string>boxL_ightU_pA_ndH_orizontal.glif</string>\n    <key>boxLightUpAndHorizontal.stypo</key>\n    <string>boxL_ightU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightUpAndLeft</key>\n    <string>boxL_ightU_pA_ndL_eft.glif</string>\n    <key>boxLightUpAndLeft.stypo</key>\n    <string>boxL_ightU_pA_ndL_eft.stypo.glif</string>\n    <key>boxLightUpAndRight</key>\n    <string>boxL_ightU_pA_ndR_ight.glif</string>\n    <key>boxLightUpAndRight.stypo</key>\n    <string>boxL_ightU_pA_ndR_ight.stypo.glif</string>\n    <key>boxLightVertical</key>\n    <string>boxL_ightV_ertical.glif</string>\n    <key>boxLightVertical.stypo</key>\n    <string>boxL_ightV_ertical.stypo.glif</string>\n    <key>boxLightVerticalAndHorizontal</key>\n    <string>boxL_ightV_erticalA_ndH_orizontal.glif</string>\n    <key>boxLightVerticalAndHorizontal.stypo</key>\n    <string>boxL_ightV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightVerticalAndLeft</key>\n    <string>boxL_ightV_erticalA_ndL_eft.glif</string>\n    <key>boxLightVerticalAndLeft.stypo</key>\n    <string>boxL_ightV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxLightVerticalAndRight</key>\n    <string>boxL_ightV_erticalA_ndR_ight.glif</string>\n    <key>boxLightVerticalAndRight.stypo</key>\n    <string>boxL_ightV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxRightDownHeavyAndLeftUpLight</key>\n    <string>boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxRightDownHeavyAndLeftUpLight.stypo</key>\n    <string>boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftDownLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxRightHeavyAndLeftDownLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftUpLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxRightHeavyAndLeftUpLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftVerticalLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif</string>\n    <key>boxRightHeavyAndLeftVerticalLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif</string>\n    <key>boxRightLightAndLeftDownHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif</string>\n    <key>boxRightLightAndLeftDownHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif</string>\n    <key>boxRightLightAndLeftUpHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftU_pH_eavy.glif</string>\n    <key>boxRightLightAndLeftUpHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif</string>\n    <key>boxRightLightAndLeftVerticalHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif</string>\n    <key>boxRightLightAndLeftVerticalHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif</string>\n    <key>boxRightUpHeavyAndLeftDownLight</key>\n    <string>boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxRightUpHeavyAndLeftDownLight.stypo</key>\n    <string>boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxUpDoubleAndHorizontalSingle</key>\n    <string>boxU_pD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxUpDoubleAndHorizontalSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxUpDoubleAndLeftSingle</key>\n    <string>boxU_pD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxUpDoubleAndLeftSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxUpDoubleAndRightSingle</key>\n    <string>boxU_pD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxUpDoubleAndRightSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxUpHeavyAndDownHorizontalLight</key>\n    <string>boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif</string>\n    <key>boxUpHeavyAndDownHorizontalLight.stypo</key>\n    <string>boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndHorizontalLight</key>\n    <string>boxU_pH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxUpHeavyAndHorizontalLight.stypo</key>\n    <string>boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndLeftDownLight</key>\n    <string>boxU_pH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxUpHeavyAndLeftDownLight.stypo</key>\n    <string>boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndLeftLight</key>\n    <string>boxU_pH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxUpHeavyAndLeftLight.stypo</key>\n    <string>boxU_pH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndRightDownLight</key>\n    <string>boxU_pH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxUpHeavyAndRightDownLight.stypo</key>\n    <string>boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndRightLight</key>\n    <string>boxU_pH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxUpHeavyAndRightLight.stypo</key>\n    <string>boxU_pH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxUpLightAndDownHorizontalHeavy</key>\n    <string>boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif</string>\n    <key>boxUpLightAndDownHorizontalHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif</string>\n    <key>boxUpLightAndHorizontalHeavy</key>\n    <string>boxU_pL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxUpLightAndHorizontalHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxUpLightAndLeftDownHeavy</key>\n    <string>boxU_pL_ightA_ndL_eftD_ownH_eavy.glif</string>\n    <key>boxUpLightAndLeftDownHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif</string>\n    <key>boxUpLightAndLeftHeavy</key>\n    <string>boxU_pL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxUpLightAndLeftHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxUpLightAndRightDownHeavy</key>\n    <string>boxU_pL_ightA_ndR_ightD_ownH_eavy.glif</string>\n    <key>boxUpLightAndRightDownHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif</string>\n    <key>boxUpLightAndRightHeavy</key>\n    <string>boxU_pL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxUpLightAndRightHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxUpSingleAndHorizontalDouble</key>\n    <string>boxU_pS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxUpSingleAndHorizontalDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxUpSingleAndLeftDouble</key>\n    <string>boxU_pS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxUpSingleAndLeftDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxUpSingleAndRightDouble</key>\n    <string>boxU_pS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxUpSingleAndRightDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>boxVerticalDoubleAndHorizontalSingle</key>\n    <string>boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxVerticalDoubleAndHorizontalSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxVerticalDoubleAndLeftSingle</key>\n    <string>boxV_erticalD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxVerticalDoubleAndLeftSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxVerticalDoubleAndRightSingle</key>\n    <string>boxV_erticalD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxVerticalDoubleAndRightSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxVerticalHeavyAndHorizontalLight</key>\n    <string>boxV_erticalH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxVerticalHeavyAndHorizontalLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxVerticalHeavyAndLeftLight</key>\n    <string>boxV_erticalH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxVerticalHeavyAndLeftLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxVerticalHeavyAndRightLight</key>\n    <string>boxV_erticalH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxVerticalHeavyAndRightLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxVerticalLightAndHorizontalHeavy</key>\n    <string>boxV_erticalL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxVerticalLightAndHorizontalHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxVerticalLightAndLeftHeavy</key>\n    <string>boxV_erticalL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxVerticalLightAndLeftHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxVerticalLightAndRightHeavy</key>\n    <string>boxV_erticalL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxVerticalLightAndRightHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxVerticalSingleAndHorizontalDouble</key>\n    <string>boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxVerticalSingleAndHorizontalDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxVerticalSingleAndLeftDouble</key>\n    <string>boxV_erticalS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxVerticalSingleAndLeftDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxVerticalSingleAndRightDouble</key>\n    <string>boxV_erticalS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxVerticalSingleAndRightDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>braceleft</key>\n    <string>braceleft.glif</string>\n    <key>braceleft_bar.liga</key>\n    <string>braceleft_bar.liga.glif</string>\n    <key>braceright</key>\n    <string>braceright.glif</string>\n    <key>braceright_numbersign.liga</key>\n    <string>braceright_numbersign.liga.glif</string>\n    <key>bracketleft</key>\n    <string>bracketleft.glif</string>\n    <key>bracketleft_bar.liga</key>\n    <string>bracketleft_bar.liga.glif</string>\n    <key>bracketright</key>\n    <string>bracketright.glif</string>\n    <key>bracketright_numbersign.liga</key>\n    <string>bracketright_numbersign.liga.glif</string>\n    <key>breve</key>\n    <string>breve.glif</string>\n    <key>brevecomb</key>\n    <string>brevecomb.glif</string>\n    <key>brevecomb-cy</key>\n    <string>brevecomb-cy.glif</string>\n    <key>brevecomb-cy.case</key>\n    <string>brevecomb-cy.case.glif</string>\n    <key>brevecomb.case</key>\n    <string>brevecomb.case.glif</string>\n    <key>brokenbar</key>\n    <string>brokenbar.glif</string>\n    <key>bullet</key>\n    <string>bullet.glif</string>\n    <key>bulletoperator</key>\n    <string>bulletoperator.glif</string>\n    <key>bullseye</key>\n    <string>bullseye.glif</string>\n    <key>c</key>\n    <string>c.glif</string>\n    <key>cacute</key>\n    <string>cacute.glif</string>\n    <key>cacute.loclPLK</key>\n    <string>cacute.loclP_L_K_.glif</string>\n    <key>cancelControl</key>\n    <string>cancelC_ontrol.glif</string>\n    <key>cancelControl.ss20</key>\n    <string>cancelC_ontrol.ss20.glif</string>\n    <key>careof</key>\n    <string>careof.glif</string>\n    <key>caron</key>\n    <string>caron.glif</string>\n    <key>caroncomb</key>\n    <string>caroncomb.glif</string>\n    <key>caroncomb.case</key>\n    <string>caroncomb.case.glif</string>\n    <key>carriageReturnControl</key>\n    <string>carriageR_eturnC_ontrol.glif</string>\n    <key>carriageReturnControl.ss20</key>\n    <string>carriageR_eturnC_ontrol.ss20.glif</string>\n    <key>ccaron</key>\n    <string>ccaron.glif</string>\n    <key>ccedilla</key>\n    <string>ccedilla.glif</string>\n    <key>ccircumflex</key>\n    <string>ccircumflex.glif</string>\n    <key>cdotaccent</key>\n    <string>cdotaccent.glif</string>\n    <key>cedi</key>\n    <string>cedi.glif</string>\n    <key>cedilla</key>\n    <string>cedilla.glif</string>\n    <key>cedillacomb</key>\n    <string>cedillacomb.glif</string>\n    <key>cent</key>\n    <string>cent.glif</string>\n    <key>che-cy</key>\n    <string>che-cy.glif</string>\n    <key>checkmark</key>\n    <string>checkmark.glif</string>\n    <key>chedescender-cy</key>\n    <string>chedescender-cy.glif</string>\n    <key>chi</key>\n    <string>chi.glif</string>\n    <key>circumflex</key>\n    <string>circumflex.glif</string>\n    <key>circumflexcomb</key>\n    <string>circumflexcomb.glif</string>\n    <key>circumflexcomb.case</key>\n    <string>circumflexcomb.case.glif</string>\n    <key>clubBlackSuit</key>\n    <string>clubB_lackS_uit.glif</string>\n    <key>colon</key>\n    <string>colon.glif</string>\n    <key>colon.center</key>\n    <string>colon.center.glif</string>\n    <key>colon_colon.liga</key>\n    <string>colon_colon.liga.glif</string>\n    <key>colon_colon_colon.liga</key>\n    <string>colon_colon_colon.liga.glif</string>\n    <key>colon_colon_equal.liga</key>\n    <string>colon_colon_equal.liga.glif</string>\n    <key>colon_equal.liga</key>\n    <string>colon_equal.liga.glif</string>\n    <key>colon_equal_middle.seq</key>\n    <string>colon_equal_middle.seq.glif</string>\n    <key>colon_slash_slash.liga</key>\n    <string>colon_slash_slash.liga.glif</string>\n    <key>colonsign</key>\n    <string>colonsign.glif</string>\n    <key>colontriangularmod</key>\n    <string>colontriangularmod.glif</string>\n    <key>comma</key>\n    <string>comma.glif</string>\n    <key>comma-ar</key>\n    <string>comma-ar.glif</string>\n    <key>commaabovecomb</key>\n    <string>commaabovecomb.glif</string>\n    <key>commaaboverightcomb</key>\n    <string>commaaboverightcomb.glif</string>\n    <key>commaaccentcomb</key>\n    <string>commaaccentcomb.glif</string>\n    <key>commaturnedabovecomb</key>\n    <string>commaturnedabovecomb.glif</string>\n    <key>commaturnedmod</key>\n    <string>commaturnedmod.glif</string>\n    <key>copyright</key>\n    <string>copyright.glif</string>\n    <key>crosshatchFillSquare</key>\n    <string>crosshatchF_illS_quare.glif</string>\n    <key>cuberoot-ar</key>\n    <string>cuberoot-ar.glif</string>\n    <key>currency</key>\n    <string>currency.glif</string>\n    <key>d</key>\n    <string>d.glif</string>\n    <key>dad-ar</key>\n    <string>dad-ar.glif</string>\n    <key>dad-ar.alt</key>\n    <string>dad-ar.alt.glif</string>\n    <key>dad-ar.fina</key>\n    <string>dad-ar.fina.glif</string>\n    <key>dad-ar.fina.alt</key>\n    <string>dad-ar.fina.alt.glif</string>\n    <key>dad-ar.init</key>\n    <string>dad-ar.init.glif</string>\n    <key>dad-ar.medi</key>\n    <string>dad-ar.medi.glif</string>\n    <key>dadDotbelow-ar</key>\n    <string>dadD_otbelow-ar.glif</string>\n    <key>dadDotbelow-ar.alt</key>\n    <string>dadD_otbelow-ar.alt.glif</string>\n    <key>dadDotbelow-ar.fina</key>\n    <string>dadD_otbelow-ar.fina.glif</string>\n    <key>dadDotbelow-ar.fina.alt</key>\n    <string>dadD_otbelow-ar.fina.alt.glif</string>\n    <key>dadDotbelow-ar.init</key>\n    <string>dadD_otbelow-ar.init.glif</string>\n    <key>dadDotbelow-ar.medi</key>\n    <string>dadD_otbelow-ar.medi.glif</string>\n    <key>dagesh-hb</key>\n    <string>dagesh-hb.glif</string>\n    <key>dagger</key>\n    <string>dagger.glif</string>\n    <key>daggerdbl</key>\n    <string>daggerdbl.glif</string>\n    <key>dahal-ar</key>\n    <string>dahal-ar.glif</string>\n    <key>dahal-ar.fina</key>\n    <string>dahal-ar.fina.glif</string>\n    <key>dal-ar</key>\n    <string>dal-ar.glif</string>\n    <key>dal-ar.fina</key>\n    <string>dal-ar.fina.glif</string>\n    <key>dalDotbelow-ar</key>\n    <string>dalD_otbelow-ar.glif</string>\n    <key>dalDotbelow-ar.fina</key>\n    <string>dalD_otbelow-ar.fina.glif</string>\n    <key>dalDotbelowTah-ar</key>\n    <string>dalD_otbelowT_ah-ar.glif</string>\n    <key>dalDotbelowTah-ar.fina</key>\n    <string>dalD_otbelowT_ah-ar.fina.glif</string>\n    <key>dalFourdots-ar</key>\n    <string>dalF_ourdots-ar.glif</string>\n    <key>dalFourdots-ar.fina</key>\n    <string>dalF_ourdots-ar.fina.glif</string>\n    <key>dalRing-ar</key>\n    <string>dalR_ing-ar.glif</string>\n    <key>dalRing-ar.fina</key>\n    <string>dalR_ing-ar.fina.glif</string>\n    <key>dalThreedotsbelow-ar</key>\n    <string>dalT_hreedotsbelow-ar.glif</string>\n    <key>dalThreedotsbelow-ar.fina</key>\n    <string>dalT_hreedotsbelow-ar.fina.glif</string>\n    <key>dalThreedotsdown-ar</key>\n    <string>dalT_hreedotsdown-ar.glif</string>\n    <key>dalThreedotsdown-ar.fina</key>\n    <string>dalT_hreedotsdown-ar.fina.glif</string>\n    <key>dalTwodotsverticalbelowTahabove-ar</key>\n    <string>dalT_wodotsverticalbelowT_ahabove-ar.glif</string>\n    <key>dalTwodotsverticalbelowTahabove-ar.fina</key>\n    <string>dalT_wodotsverticalbelowT_ahabove-ar.fina.glif</string>\n    <key>dalVinvertedabove-ar</key>\n    <string>dalV_invertedabove-ar.glif</string>\n    <key>dalVinvertedabove-ar.fina</key>\n    <string>dalV_invertedabove-ar.fina.glif</string>\n    <key>dalVinvertedbelow-ar</key>\n    <string>dalV_invertedbelow-ar.glif</string>\n    <key>dalVinvertedbelow-ar.fina</key>\n    <string>dalV_invertedbelow-ar.fina.glif</string>\n    <key>dalet-hb</key>\n    <string>dalet-hb.glif</string>\n    <key>daletdagesh-hb</key>\n    <string>daletdagesh-hb.glif</string>\n    <key>damma-ar</key>\n    <string>damma-ar.glif</string>\n    <key>dammatan-ar</key>\n    <string>dammatan-ar.glif</string>\n    <key>dashdownArrow</key>\n    <string>dashdownA_rrow.glif</string>\n    <key>dataLinkEscapeControl</key>\n    <string>dataL_inkE_scapeC_ontrol.glif</string>\n    <key>dataLinkEscapeControl.ss20</key>\n    <string>dataL_inkE_scapeC_ontrol.ss20.glif</string>\n    <key>dateseparator-ar</key>\n    <string>dateseparator-ar.glif</string>\n    <key>dcaron</key>\n    <string>dcaron.glif</string>\n    <key>dcaron.alt</key>\n    <string>dcaron.alt.glif</string>\n    <key>dcroat</key>\n    <string>dcroat.glif</string>\n    <key>ddahal-ar</key>\n    <string>ddahal-ar.glif</string>\n    <key>ddahal-ar.fina</key>\n    <string>ddahal-ar.fina.glif</string>\n    <key>ddal-ar</key>\n    <string>ddal-ar.glif</string>\n    <key>ddal-ar.fina</key>\n    <string>ddal-ar.fina.glif</string>\n    <key>de-cy</key>\n    <string>de-cy.glif</string>\n    <key>de-cy.loclBGR</key>\n    <string>de-cy.loclB_G_R_.glif</string>\n    <key>decimalseparator-ar</key>\n    <string>decimalseparator-ar.glif</string>\n    <key>degree</key>\n    <string>degree.glif</string>\n    <key>deleteControl</key>\n    <string>deleteC_ontrol.glif</string>\n    <key>deleteFormTwoControl</key>\n    <string>deleteF_ormT_woC_ontrol.glif</string>\n    <key>delta</key>\n    <string>delta.glif</string>\n    <key>deviceControlFourControl</key>\n    <string>deviceC_ontrolF_ourC_ontrol.glif</string>\n    <key>deviceControlOneControl</key>\n    <string>deviceC_ontrolO_neC_ontrol.glif</string>\n    <key>deviceControlThreeControl</key>\n    <string>deviceC_ontrolT_hreeC_ontrol.glif</string>\n    <key>deviceControlTwoControl</key>\n    <string>deviceC_ontrolT_woC_ontrol.glif</string>\n    <key>diagonalcrosshatchFillSquare</key>\n    <string>diagonalcrosshatchF_illS_quare.glif</string>\n    <key>diamondBlackSuit</key>\n    <string>diamondB_lackS_uit.glif</string>\n    <key>dieresis</key>\n    <string>dieresis.glif</string>\n    <key>dieresiscomb</key>\n    <string>dieresiscomb.glif</string>\n    <key>dieresiscomb.case</key>\n    <string>dieresiscomb.case.glif</string>\n    <key>dieresistonos</key>\n    <string>dieresistonos.glif</string>\n    <key>divide</key>\n    <string>divide.glif</string>\n    <key>divisionslash</key>\n    <string>divisionslash.glif</string>\n    <key>dje-cy</key>\n    <string>dje-cy.glif</string>\n    <key>dollar</key>\n    <string>dollar.glif</string>\n    <key>dollar.BRACKET.600</key>\n    <string>dollar.B_R_A_C_K_E_T_.600.glif</string>\n    <key>dollar_greater.liga</key>\n    <string>dollar_greater.liga.glif</string>\n    <key>dollar_greater.liga.BRACKET.600</key>\n    <string>dollar_greater.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>dong</key>\n    <string>dong.glif</string>\n    <key>dotabove-ar</key>\n    <string>dotabove-ar.glif</string>\n    <key>dotaccent</key>\n    <string>dotaccent.glif</string>\n    <key>dotaccentcomb</key>\n    <string>dotaccentcomb.glif</string>\n    <key>dotaccentcomb.case</key>\n    <string>dotaccentcomb.case.glif</string>\n    <key>dotbelow-ar</key>\n    <string>dotbelow-ar.glif</string>\n    <key>dotbelowcomb</key>\n    <string>dotbelowcomb.glif</string>\n    <key>dotcenter-ar</key>\n    <string>dotcenter-ar.glif</string>\n    <key>dots1-braille</key>\n    <string>dots1-braille.glif</string>\n    <key>dots12-braille</key>\n    <string>dots12-braille.glif</string>\n    <key>dots123-braille</key>\n    <string>dots123-braille.glif</string>\n    <key>dots1234-braille</key>\n    <string>dots1234-braille.glif</string>\n    <key>dots12345-braille</key>\n    <string>dots12345-braille.glif</string>\n    <key>dots123456-braille</key>\n    <string>dots123456-braille.glif</string>\n    <key>dots1234567-braille</key>\n    <string>dots1234567-braille.glif</string>\n    <key>dots12345678-braille</key>\n    <string>dots12345678-braille.glif</string>\n    <key>dots1234568-braille</key>\n    <string>dots1234568-braille.glif</string>\n    <key>dots123457-braille</key>\n    <string>dots123457-braille.glif</string>\n    <key>dots1234578-braille</key>\n    <string>dots1234578-braille.glif</string>\n    <key>dots123458-braille</key>\n    <string>dots123458-braille.glif</string>\n    <key>dots12346-braille</key>\n    <string>dots12346-braille.glif</string>\n    <key>dots123467-braille</key>\n    <string>dots123467-braille.glif</string>\n    <key>dots1234678-braille</key>\n    <string>dots1234678-braille.glif</string>\n    <key>dots123468-braille</key>\n    <string>dots123468-braille.glif</string>\n    <key>dots12347-braille</key>\n    <string>dots12347-braille.glif</string>\n    <key>dots123478-braille</key>\n    <string>dots123478-braille.glif</string>\n    <key>dots12348-braille</key>\n    <string>dots12348-braille.glif</string>\n    <key>dots1235-braille</key>\n    <string>dots1235-braille.glif</string>\n    <key>dots12356-braille</key>\n    <string>dots12356-braille.glif</string>\n    <key>dots123567-braille</key>\n    <string>dots123567-braille.glif</string>\n    <key>dots1235678-braille</key>\n    <string>dots1235678-braille.glif</string>\n    <key>dots123568-braille</key>\n    <string>dots123568-braille.glif</string>\n    <key>dots12357-braille</key>\n    <string>dots12357-braille.glif</string>\n    <key>dots123578-braille</key>\n    <string>dots123578-braille.glif</string>\n    <key>dots12358-braille</key>\n    <string>dots12358-braille.glif</string>\n    <key>dots1236-braille</key>\n    <string>dots1236-braille.glif</string>\n    <key>dots12367-braille</key>\n    <string>dots12367-braille.glif</string>\n    <key>dots123678-braille</key>\n    <string>dots123678-braille.glif</string>\n    <key>dots12368-braille</key>\n    <string>dots12368-braille.glif</string>\n    <key>dots1237-braille</key>\n    <string>dots1237-braille.glif</string>\n    <key>dots12378-braille</key>\n    <string>dots12378-braille.glif</string>\n    <key>dots1238-braille</key>\n    <string>dots1238-braille.glif</string>\n    <key>dots124-braille</key>\n    <string>dots124-braille.glif</string>\n    <key>dots1245-braille</key>\n    <string>dots1245-braille.glif</string>\n    <key>dots12456-braille</key>\n    <string>dots12456-braille.glif</string>\n    <key>dots124567-braille</key>\n    <string>dots124567-braille.glif</string>\n    <key>dots1245678-braille</key>\n    <string>dots1245678-braille.glif</string>\n    <key>dots124568-braille</key>\n    <string>dots124568-braille.glif</string>\n    <key>dots12457-braille</key>\n    <string>dots12457-braille.glif</string>\n    <key>dots124578-braille</key>\n    <string>dots124578-braille.glif</string>\n    <key>dots12458-braille</key>\n    <string>dots12458-braille.glif</string>\n    <key>dots1246-braille</key>\n    <string>dots1246-braille.glif</string>\n    <key>dots12467-braille</key>\n    <string>dots12467-braille.glif</string>\n    <key>dots124678-braille</key>\n    <string>dots124678-braille.glif</string>\n    <key>dots12468-braille</key>\n    <string>dots12468-braille.glif</string>\n    <key>dots1247-braille</key>\n    <string>dots1247-braille.glif</string>\n    <key>dots12478-braille</key>\n    <string>dots12478-braille.glif</string>\n    <key>dots1248-braille</key>\n    <string>dots1248-braille.glif</string>\n    <key>dots125-braille</key>\n    <string>dots125-braille.glif</string>\n    <key>dots1256-braille</key>\n    <string>dots1256-braille.glif</string>\n    <key>dots12567-braille</key>\n    <string>dots12567-braille.glif</string>\n    <key>dots125678-braille</key>\n    <string>dots125678-braille.glif</string>\n    <key>dots12568-braille</key>\n    <string>dots12568-braille.glif</string>\n    <key>dots1257-braille</key>\n    <string>dots1257-braille.glif</string>\n    <key>dots12578-braille</key>\n    <string>dots12578-braille.glif</string>\n    <key>dots1258-braille</key>\n    <string>dots1258-braille.glif</string>\n    <key>dots126-braille</key>\n    <string>dots126-braille.glif</string>\n    <key>dots1267-braille</key>\n    <string>dots1267-braille.glif</string>\n    <key>dots12678-braille</key>\n    <string>dots12678-braille.glif</string>\n    <key>dots1268-braille</key>\n    <string>dots1268-braille.glif</string>\n    <key>dots127-braille</key>\n    <string>dots127-braille.glif</string>\n    <key>dots1278-braille</key>\n    <string>dots1278-braille.glif</string>\n    <key>dots128-braille</key>\n    <string>dots128-braille.glif</string>\n    <key>dots13-braille</key>\n    <string>dots13-braille.glif</string>\n    <key>dots134-braille</key>\n    <string>dots134-braille.glif</string>\n    <key>dots1345-braille</key>\n    <string>dots1345-braille.glif</string>\n    <key>dots13456-braille</key>\n    <string>dots13456-braille.glif</string>\n    <key>dots134567-braille</key>\n    <string>dots134567-braille.glif</string>\n    <key>dots1345678-braille</key>\n    <string>dots1345678-braille.glif</string>\n    <key>dots134568-braille</key>\n    <string>dots134568-braille.glif</string>\n    <key>dots13457-braille</key>\n    <string>dots13457-braille.glif</string>\n    <key>dots134578-braille</key>\n    <string>dots134578-braille.glif</string>\n    <key>dots13458-braille</key>\n    <string>dots13458-braille.glif</string>\n    <key>dots1346-braille</key>\n    <string>dots1346-braille.glif</string>\n    <key>dots13467-braille</key>\n    <string>dots13467-braille.glif</string>\n    <key>dots134678-braille</key>\n    <string>dots134678-braille.glif</string>\n    <key>dots13468-braille</key>\n    <string>dots13468-braille.glif</string>\n    <key>dots1347-braille</key>\n    <string>dots1347-braille.glif</string>\n    <key>dots13478-braille</key>\n    <string>dots13478-braille.glif</string>\n    <key>dots1348-braille</key>\n    <string>dots1348-braille.glif</string>\n    <key>dots135-braille</key>\n    <string>dots135-braille.glif</string>\n    <key>dots1356-braille</key>\n    <string>dots1356-braille.glif</string>\n    <key>dots13567-braille</key>\n    <string>dots13567-braille.glif</string>\n    <key>dots135678-braille</key>\n    <string>dots135678-braille.glif</string>\n    <key>dots13568-braille</key>\n    <string>dots13568-braille.glif</string>\n    <key>dots1357-braille</key>\n    <string>dots1357-braille.glif</string>\n    <key>dots13578-braille</key>\n    <string>dots13578-braille.glif</string>\n    <key>dots1358-braille</key>\n    <string>dots1358-braille.glif</string>\n    <key>dots136-braille</key>\n    <string>dots136-braille.glif</string>\n    <key>dots1367-braille</key>\n    <string>dots1367-braille.glif</string>\n    <key>dots13678-braille</key>\n    <string>dots13678-braille.glif</string>\n    <key>dots1368-braille</key>\n    <string>dots1368-braille.glif</string>\n    <key>dots137-braille</key>\n    <string>dots137-braille.glif</string>\n    <key>dots1378-braille</key>\n    <string>dots1378-braille.glif</string>\n    <key>dots138-braille</key>\n    <string>dots138-braille.glif</string>\n    <key>dots14-braille</key>\n    <string>dots14-braille.glif</string>\n    <key>dots145-braille</key>\n    <string>dots145-braille.glif</string>\n    <key>dots1456-braille</key>\n    <string>dots1456-braille.glif</string>\n    <key>dots14567-braille</key>\n    <string>dots14567-braille.glif</string>\n    <key>dots145678-braille</key>\n    <string>dots145678-braille.glif</string>\n    <key>dots14568-braille</key>\n    <string>dots14568-braille.glif</string>\n    <key>dots1457-braille</key>\n    <string>dots1457-braille.glif</string>\n    <key>dots14578-braille</key>\n    <string>dots14578-braille.glif</string>\n    <key>dots1458-braille</key>\n    <string>dots1458-braille.glif</string>\n    <key>dots146-braille</key>\n    <string>dots146-braille.glif</string>\n    <key>dots1467-braille</key>\n    <string>dots1467-braille.glif</string>\n    <key>dots14678-braille</key>\n    <string>dots14678-braille.glif</string>\n    <key>dots1468-braille</key>\n    <string>dots1468-braille.glif</string>\n    <key>dots147-braille</key>\n    <string>dots147-braille.glif</string>\n    <key>dots1478-braille</key>\n    <string>dots1478-braille.glif</string>\n    <key>dots148-braille</key>\n    <string>dots148-braille.glif</string>\n    <key>dots15-braille</key>\n    <string>dots15-braille.glif</string>\n    <key>dots156-braille</key>\n    <string>dots156-braille.glif</string>\n    <key>dots1567-braille</key>\n    <string>dots1567-braille.glif</string>\n    <key>dots15678-braille</key>\n    <string>dots15678-braille.glif</string>\n    <key>dots1568-braille</key>\n    <string>dots1568-braille.glif</string>\n    <key>dots157-braille</key>\n    <string>dots157-braille.glif</string>\n    <key>dots1578-braille</key>\n    <string>dots1578-braille.glif</string>\n    <key>dots158-braille</key>\n    <string>dots158-braille.glif</string>\n    <key>dots16-braille</key>\n    <string>dots16-braille.glif</string>\n    <key>dots167-braille</key>\n    <string>dots167-braille.glif</string>\n    <key>dots1678-braille</key>\n    <string>dots1678-braille.glif</string>\n    <key>dots168-braille</key>\n    <string>dots168-braille.glif</string>\n    <key>dots17-braille</key>\n    <string>dots17-braille.glif</string>\n    <key>dots178-braille</key>\n    <string>dots178-braille.glif</string>\n    <key>dots18-braille</key>\n    <string>dots18-braille.glif</string>\n    <key>dots2-braille</key>\n    <string>dots2-braille.glif</string>\n    <key>dots23-braille</key>\n    <string>dots23-braille.glif</string>\n    <key>dots234-braille</key>\n    <string>dots234-braille.glif</string>\n    <key>dots2345-braille</key>\n    <string>dots2345-braille.glif</string>\n    <key>dots23456-braille</key>\n    <string>dots23456-braille.glif</string>\n    <key>dots234567-braille</key>\n    <string>dots234567-braille.glif</string>\n    <key>dots2345678-braille</key>\n    <string>dots2345678-braille.glif</string>\n    <key>dots234568-braille</key>\n    <string>dots234568-braille.glif</string>\n    <key>dots23457-braille</key>\n    <string>dots23457-braille.glif</string>\n    <key>dots234578-braille</key>\n    <string>dots234578-braille.glif</string>\n    <key>dots23458-braille</key>\n    <string>dots23458-braille.glif</string>\n    <key>dots2346-braille</key>\n    <string>dots2346-braille.glif</string>\n    <key>dots23467-braille</key>\n    <string>dots23467-braille.glif</string>\n    <key>dots234678-braille</key>\n    <string>dots234678-braille.glif</string>\n    <key>dots23468-braille</key>\n    <string>dots23468-braille.glif</string>\n    <key>dots2347-braille</key>\n    <string>dots2347-braille.glif</string>\n    <key>dots23478-braille</key>\n    <string>dots23478-braille.glif</string>\n    <key>dots2348-braille</key>\n    <string>dots2348-braille.glif</string>\n    <key>dots235-braille</key>\n    <string>dots235-braille.glif</string>\n    <key>dots2356-braille</key>\n    <string>dots2356-braille.glif</string>\n    <key>dots23567-braille</key>\n    <string>dots23567-braille.glif</string>\n    <key>dots235678-braille</key>\n    <string>dots235678-braille.glif</string>\n    <key>dots23568-braille</key>\n    <string>dots23568-braille.glif</string>\n    <key>dots2357-braille</key>\n    <string>dots2357-braille.glif</string>\n    <key>dots23578-braille</key>\n    <string>dots23578-braille.glif</string>\n    <key>dots2358-braille</key>\n    <string>dots2358-braille.glif</string>\n    <key>dots236-braille</key>\n    <string>dots236-braille.glif</string>\n    <key>dots2367-braille</key>\n    <string>dots2367-braille.glif</string>\n    <key>dots23678-braille</key>\n    <string>dots23678-braille.glif</string>\n    <key>dots2368-braille</key>\n    <string>dots2368-braille.glif</string>\n    <key>dots237-braille</key>\n    <string>dots237-braille.glif</string>\n    <key>dots2378-braille</key>\n    <string>dots2378-braille.glif</string>\n    <key>dots238-braille</key>\n    <string>dots238-braille.glif</string>\n    <key>dots24-braille</key>\n    <string>dots24-braille.glif</string>\n    <key>dots245-braille</key>\n    <string>dots245-braille.glif</string>\n    <key>dots2456-braille</key>\n    <string>dots2456-braille.glif</string>\n    <key>dots24567-braille</key>\n    <string>dots24567-braille.glif</string>\n    <key>dots245678-braille</key>\n    <string>dots245678-braille.glif</string>\n    <key>dots24568-braille</key>\n    <string>dots24568-braille.glif</string>\n    <key>dots2457-braille</key>\n    <string>dots2457-braille.glif</string>\n    <key>dots24578-braille</key>\n    <string>dots24578-braille.glif</string>\n    <key>dots2458-braille</key>\n    <string>dots2458-braille.glif</string>\n    <key>dots246-braille</key>\n    <string>dots246-braille.glif</string>\n    <key>dots2467-braille</key>\n    <string>dots2467-braille.glif</string>\n    <key>dots24678-braille</key>\n    <string>dots24678-braille.glif</string>\n    <key>dots2468-braille</key>\n    <string>dots2468-braille.glif</string>\n    <key>dots247-braille</key>\n    <string>dots247-braille.glif</string>\n    <key>dots2478-braille</key>\n    <string>dots2478-braille.glif</string>\n    <key>dots248-braille</key>\n    <string>dots248-braille.glif</string>\n    <key>dots25-braille</key>\n    <string>dots25-braille.glif</string>\n    <key>dots256-braille</key>\n    <string>dots256-braille.glif</string>\n    <key>dots2567-braille</key>\n    <string>dots2567-braille.glif</string>\n    <key>dots25678-braille</key>\n    <string>dots25678-braille.glif</string>\n    <key>dots2568-braille</key>\n    <string>dots2568-braille.glif</string>\n    <key>dots257-braille</key>\n    <string>dots257-braille.glif</string>\n    <key>dots2578-braille</key>\n    <string>dots2578-braille.glif</string>\n    <key>dots258-braille</key>\n    <string>dots258-braille.glif</string>\n    <key>dots26-braille</key>\n    <string>dots26-braille.glif</string>\n    <key>dots267-braille</key>\n    <string>dots267-braille.glif</string>\n    <key>dots2678-braille</key>\n    <string>dots2678-braille.glif</string>\n    <key>dots268-braille</key>\n    <string>dots268-braille.glif</string>\n    <key>dots27-braille</key>\n    <string>dots27-braille.glif</string>\n    <key>dots278-braille</key>\n    <string>dots278-braille.glif</string>\n    <key>dots28-braille</key>\n    <string>dots28-braille.glif</string>\n    <key>dots3-braille</key>\n    <string>dots3-braille.glif</string>\n    <key>dots34-braille</key>\n    <string>dots34-braille.glif</string>\n    <key>dots345-braille</key>\n    <string>dots345-braille.glif</string>\n    <key>dots3456-braille</key>\n    <string>dots3456-braille.glif</string>\n    <key>dots34567-braille</key>\n    <string>dots34567-braille.glif</string>\n    <key>dots345678-braille</key>\n    <string>dots345678-braille.glif</string>\n    <key>dots34568-braille</key>\n    <string>dots34568-braille.glif</string>\n    <key>dots3457-braille</key>\n    <string>dots3457-braille.glif</string>\n    <key>dots34578-braille</key>\n    <string>dots34578-braille.glif</string>\n    <key>dots3458-braille</key>\n    <string>dots3458-braille.glif</string>\n    <key>dots346-braille</key>\n    <string>dots346-braille.glif</string>\n    <key>dots3467-braille</key>\n    <string>dots3467-braille.glif</string>\n    <key>dots34678-braille</key>\n    <string>dots34678-braille.glif</string>\n    <key>dots3468-braille</key>\n    <string>dots3468-braille.glif</string>\n    <key>dots347-braille</key>\n    <string>dots347-braille.glif</string>\n    <key>dots3478-braille</key>\n    <string>dots3478-braille.glif</string>\n    <key>dots348-braille</key>\n    <string>dots348-braille.glif</string>\n    <key>dots35-braille</key>\n    <string>dots35-braille.glif</string>\n    <key>dots356-braille</key>\n    <string>dots356-braille.glif</string>\n    <key>dots3567-braille</key>\n    <string>dots3567-braille.glif</string>\n    <key>dots35678-braille</key>\n    <string>dots35678-braille.glif</string>\n    <key>dots3568-braille</key>\n    <string>dots3568-braille.glif</string>\n    <key>dots357-braille</key>\n    <string>dots357-braille.glif</string>\n    <key>dots3578-braille</key>\n    <string>dots3578-braille.glif</string>\n    <key>dots358-braille</key>\n    <string>dots358-braille.glif</string>\n    <key>dots36-braille</key>\n    <string>dots36-braille.glif</string>\n    <key>dots367-braille</key>\n    <string>dots367-braille.glif</string>\n    <key>dots3678-braille</key>\n    <string>dots3678-braille.glif</string>\n    <key>dots368-braille</key>\n    <string>dots368-braille.glif</string>\n    <key>dots37-braille</key>\n    <string>dots37-braille.glif</string>\n    <key>dots378-braille</key>\n    <string>dots378-braille.glif</string>\n    <key>dots38-braille</key>\n    <string>dots38-braille.glif</string>\n    <key>dots4-braille</key>\n    <string>dots4-braille.glif</string>\n    <key>dots45-braille</key>\n    <string>dots45-braille.glif</string>\n    <key>dots456-braille</key>\n    <string>dots456-braille.glif</string>\n    <key>dots4567-braille</key>\n    <string>dots4567-braille.glif</string>\n    <key>dots45678-braille</key>\n    <string>dots45678-braille.glif</string>\n    <key>dots4568-braille</key>\n    <string>dots4568-braille.glif</string>\n    <key>dots457-braille</key>\n    <string>dots457-braille.glif</string>\n    <key>dots4578-braille</key>\n    <string>dots4578-braille.glif</string>\n    <key>dots458-braille</key>\n    <string>dots458-braille.glif</string>\n    <key>dots46-braille</key>\n    <string>dots46-braille.glif</string>\n    <key>dots467-braille</key>\n    <string>dots467-braille.glif</string>\n    <key>dots4678-braille</key>\n    <string>dots4678-braille.glif</string>\n    <key>dots468-braille</key>\n    <string>dots468-braille.glif</string>\n    <key>dots47-braille</key>\n    <string>dots47-braille.glif</string>\n    <key>dots478-braille</key>\n    <string>dots478-braille.glif</string>\n    <key>dots48-braille</key>\n    <string>dots48-braille.glif</string>\n    <key>dots5-braille</key>\n    <string>dots5-braille.glif</string>\n    <key>dots56-braille</key>\n    <string>dots56-braille.glif</string>\n    <key>dots567-braille</key>\n    <string>dots567-braille.glif</string>\n    <key>dots5678-braille</key>\n    <string>dots5678-braille.glif</string>\n    <key>dots568-braille</key>\n    <string>dots568-braille.glif</string>\n    <key>dots57-braille</key>\n    <string>dots57-braille.glif</string>\n    <key>dots578-braille</key>\n    <string>dots578-braille.glif</string>\n    <key>dots58-braille</key>\n    <string>dots58-braille.glif</string>\n    <key>dots6-braille</key>\n    <string>dots6-braille.glif</string>\n    <key>dots67-braille</key>\n    <string>dots67-braille.glif</string>\n    <key>dots678-braille</key>\n    <string>dots678-braille.glif</string>\n    <key>dots68-braille</key>\n    <string>dots68-braille.glif</string>\n    <key>dots7-braille</key>\n    <string>dots7-braille.glif</string>\n    <key>dots78-braille</key>\n    <string>dots78-braille.glif</string>\n    <key>dots8-braille</key>\n    <string>dots8-braille.glif</string>\n    <key>dottedCircle</key>\n    <string>dottedC_ircle.glif</string>\n    <key>dottedSquare</key>\n    <string>dottedS_quare.glif</string>\n    <key>doubleverticalbarbelowSymbol-ar</key>\n    <string>doubleverticalbarbelowS_ymbol-ar.glif</string>\n    <key>doubleverticalbarbelowSymbol-ar.comb</key>\n    <string>doubleverticalbarbelowS_ymbol-ar.comb.glif</string>\n    <key>downArrow</key>\n    <string>downA_rrow.glif</string>\n    <key>downBlackSmallTriangle</key>\n    <string>downB_lackS_mallT_riangle.glif</string>\n    <key>downBlackTriangle</key>\n    <string>downB_lackT_riangle.glif</string>\n    <key>downTipLeftArrow</key>\n    <string>downT_ipL_eftA_rrow.glif</string>\n    <key>downWhiteSmallTriangle</key>\n    <string>downW_hiteS_mallT_riangle.glif</string>\n    <key>downWhiteTriangle</key>\n    <string>downW_hiteT_riangle.glif</string>\n    <key>dtail</key>\n    <string>dtail.glif</string>\n    <key>dul-ar</key>\n    <string>dul-ar.glif</string>\n    <key>dul-ar.fina</key>\n    <string>dul-ar.fina.glif</string>\n    <key>dyeh-ar</key>\n    <string>dyeh-ar.glif</string>\n    <key>dyeh-ar.fina</key>\n    <string>dyeh-ar.fina.glif</string>\n    <key>dyeh-ar.init</key>\n    <string>dyeh-ar.init.glif</string>\n    <key>dyeh-ar.medi</key>\n    <string>dyeh-ar.medi.glif</string>\n    <key>dze-cy</key>\n    <string>dze-cy.glif</string>\n    <key>dzhe-cy</key>\n    <string>dzhe-cy.glif</string>\n    <key>e</key>\n    <string>e.glif</string>\n    <key>e-ar</key>\n    <string>e-ar.glif</string>\n    <key>e-ar.fina</key>\n    <string>e-ar.fina.glif</string>\n    <key>e-ar.fina.alt</key>\n    <string>e-ar.fina.alt.glif</string>\n    <key>e-ar.init</key>\n    <string>e-ar.init.glif</string>\n    <key>e-ar.init.alt</key>\n    <string>e-ar.init.alt.glif</string>\n    <key>e-ar.medi</key>\n    <string>e-ar.medi.glif</string>\n    <key>e-cy</key>\n    <string>e-cy.glif</string>\n    <key>eacute</key>\n    <string>eacute.glif</string>\n    <key>ebreve</key>\n    <string>ebreve.glif</string>\n    <key>ecaron</key>\n    <string>ecaron.glif</string>\n    <key>ecircumflex</key>\n    <string>ecircumflex.glif</string>\n    <key>ecircumflexacute</key>\n    <string>ecircumflexacute.glif</string>\n    <key>ecircumflexdotbelow</key>\n    <string>ecircumflexdotbelow.glif</string>\n    <key>ecircumflexgrave</key>\n    <string>ecircumflexgrave.glif</string>\n    <key>ecircumflexhookabove</key>\n    <string>ecircumflexhookabove.glif</string>\n    <key>ecircumflextilde</key>\n    <string>ecircumflextilde.glif</string>\n    <key>edieresis</key>\n    <string>edieresis.glif</string>\n    <key>edotaccent</key>\n    <string>edotaccent.glif</string>\n    <key>edotbelow</key>\n    <string>edotbelow.glif</string>\n    <key>ef-cy</key>\n    <string>ef-cy.glif</string>\n    <key>ef-cy.loclBGR</key>\n    <string>ef-cy.loclB_G_R_.glif</string>\n    <key>egrave</key>\n    <string>egrave.glif</string>\n    <key>ehookabove</key>\n    <string>ehookabove.glif</string>\n    <key>eight</key>\n    <string>eight.glif</string>\n    <key>eight-ar</key>\n    <string>eight-ar.glif</string>\n    <key>eight-arinferior</key>\n    <string>eight-arinferior.glif</string>\n    <key>eight-arsuperior</key>\n    <string>eight-arsuperior.glif</string>\n    <key>eight-persian</key>\n    <string>eight-persian.glif</string>\n    <key>eight-persianinferior</key>\n    <string>eight-persianinferior.glif</string>\n    <key>eight-persiansuperior</key>\n    <string>eight-persiansuperior.glif</string>\n    <key>eight.dnom</key>\n    <string>eight.dnom.glif</string>\n    <key>eight.numr</key>\n    <string>eight.numr.glif</string>\n    <key>eightinferior</key>\n    <string>eightinferior.glif</string>\n    <key>eightsuperior</key>\n    <string>eightsuperior.glif</string>\n    <key>el-cy</key>\n    <string>el-cy.glif</string>\n    <key>el-cy.loclBGR</key>\n    <string>el-cy.loclB_G_R_.glif</string>\n    <key>ellipsis</key>\n    <string>ellipsis.glif</string>\n    <key>em-cy</key>\n    <string>em-cy.glif</string>\n    <key>emacron</key>\n    <string>emacron.glif</string>\n    <key>emdash</key>\n    <string>emdash.glif</string>\n    <key>en-cy</key>\n    <string>en-cy.glif</string>\n    <key>endOfMediumControl</key>\n    <string>endO_fM_ediumC_ontrol.glif</string>\n    <key>endOfMediumControl.ss20</key>\n    <string>endO_fM_ediumC_ontrol.ss20.glif</string>\n    <key>endOfTextControl</key>\n    <string>endO_fT_extC_ontrol.glif</string>\n    <key>endOfTextControl.ss20</key>\n    <string>endO_fT_extC_ontrol.ss20.glif</string>\n    <key>endOfTransmissionBlockControl</key>\n    <string>endO_fT_ransmissionB_lockC_ontrol.glif</string>\n    <key>endOfTransmissionBlockControl.ss20</key>\n    <string>endO_fT_ransmissionB_lockC_ontrol.ss20.glif</string>\n    <key>endOfTransmissionControl</key>\n    <string>endO_fT_ransmissionC_ontrol.glif</string>\n    <key>endOfTransmissionControl.ss20</key>\n    <string>endO_fT_ransmissionC_ontrol.ss20.glif</string>\n    <key>endash</key>\n    <string>endash.glif</string>\n    <key>endescender-cy</key>\n    <string>endescender-cy.glif</string>\n    <key>endofayah-ar</key>\n    <string>endofayah-ar.glif</string>\n    <key>eng</key>\n    <string>eng.glif</string>\n    <key>enquiryControl</key>\n    <string>enquiryC_ontrol.glif</string>\n    <key>enquiryControl.ss20</key>\n    <string>enquiryC_ontrol.ss20.glif</string>\n    <key>eogonek</key>\n    <string>eogonek.glif</string>\n    <key>eopen</key>\n    <string>eopen.glif</string>\n    <key>epsilon</key>\n    <string>epsilon.glif</string>\n    <key>epsilontonos</key>\n    <string>epsilontonos.glif</string>\n    <key>equal</key>\n    <string>equal.glif</string>\n    <key>equal_end.seq</key>\n    <string>equal_end.seq.glif</string>\n    <key>equal_equal.liga</key>\n    <string>equal_equal.liga.glif</string>\n    <key>equal_equal_equal.liga</key>\n    <string>equal_equal_equal.liga.glif</string>\n    <key>equal_greater_greater.liga</key>\n    <string>equal_greater_greater.liga.glif</string>\n    <key>equal_less_less.liga</key>\n    <string>equal_less_less.liga.glif</string>\n    <key>equal_middle.seq</key>\n    <string>equal_middle.seq.glif</string>\n    <key>equal_start.seq</key>\n    <string>equal_start.seq.glif</string>\n    <key>equivalence</key>\n    <string>equivalence.glif</string>\n    <key>er-cy</key>\n    <string>er-cy.glif</string>\n    <key>ereversed-cy</key>\n    <string>ereversed-cy.glif</string>\n    <key>es-cy</key>\n    <string>es-cy.glif</string>\n    <key>escapeControl</key>\n    <string>escapeC_ontrol.glif</string>\n    <key>escapeControl.ss20</key>\n    <string>escapeC_ontrol.ss20.glif</string>\n    <key>esh</key>\n    <string>esh.glif</string>\n    <key>estimated</key>\n    <string>estimated.glif</string>\n    <key>eta</key>\n    <string>eta.glif</string>\n    <key>etatonos</key>\n    <string>etatonos.glif</string>\n    <key>eth</key>\n    <string>eth.glif</string>\n    <key>etilde</key>\n    <string>etilde.glif</string>\n    <key>eturned</key>\n    <string>eturned.glif</string>\n    <key>euro</key>\n    <string>euro.glif</string>\n    <key>eurocurrency</key>\n    <string>eurocurrency.glif</string>\n    <key>exclam</key>\n    <string>exclam.glif</string>\n    <key>exclam_colon.liga</key>\n    <string>exclam_colon.liga.glif</string>\n    <key>exclam_equal.liga</key>\n    <string>exclam_equal.liga.glif</string>\n    <key>exclam_equal_equal.liga</key>\n    <string>exclam_equal_equal.liga.glif</string>\n    <key>exclam_equal_middle.seq</key>\n    <string>exclam_equal_middle.seq.glif</string>\n    <key>exclam_exclam.liga</key>\n    <string>exclam_exclam.liga.glif</string>\n    <key>exclam_exclam_period.liga</key>\n    <string>exclam_exclam_period.liga.glif</string>\n    <key>exclam_period.liga</key>\n    <string>exclam_period.liga.glif</string>\n    <key>exclamdouble</key>\n    <string>exclamdouble.glif</string>\n    <key>exclamdown</key>\n    <string>exclamdown.glif</string>\n    <key>ezh</key>\n    <string>ezh.glif</string>\n    <key>f</key>\n    <string>f.glif</string>\n    <key>fatha-ar</key>\n    <string>fatha-ar.glif</string>\n    <key>fathatan-ar</key>\n    <string>fathatan-ar.glif</string>\n    <key>feh-ar</key>\n    <string>feh-ar.glif</string>\n    <key>feh-ar.alt</key>\n    <string>feh-ar.alt.glif</string>\n    <key>feh-ar.fina</key>\n    <string>feh-ar.fina.glif</string>\n    <key>feh-ar.fina.alt</key>\n    <string>feh-ar.fina.alt.glif</string>\n    <key>feh-ar.init</key>\n    <string>feh-ar.init.glif</string>\n    <key>feh-ar.init.alt</key>\n    <string>feh-ar.init.alt.glif</string>\n    <key>feh-ar.medi</key>\n    <string>feh-ar.medi.glif</string>\n    <key>fehDotMovedbelow-ar</key>\n    <string>fehD_otM_ovedbelow-ar.glif</string>\n    <key>fehDotMovedbelow-ar.alt</key>\n    <string>fehD_otM_ovedbelow-ar.alt.glif</string>\n    <key>fehDotMovedbelow-ar.fina</key>\n    <string>fehD_otM_ovedbelow-ar.fina.glif</string>\n    <key>fehDotMovedbelow-ar.fina.alt</key>\n    <string>fehD_otM_ovedbelow-ar.fina.alt.glif</string>\n    <key>fehDotMovedbelow-ar.init</key>\n    <string>fehD_otM_ovedbelow-ar.init.glif</string>\n    <key>fehDotMovedbelow-ar.medi</key>\n    <string>fehD_otM_ovedbelow-ar.medi.glif</string>\n    <key>fehDotbelow-ar</key>\n    <string>fehD_otbelow-ar.glif</string>\n    <key>fehDotbelow-ar.alt</key>\n    <string>fehD_otbelow-ar.alt.glif</string>\n    <key>fehDotbelow-ar.fina</key>\n    <string>fehD_otbelow-ar.fina.glif</string>\n    <key>fehDotbelow-ar.fina.alt</key>\n    <string>fehD_otbelow-ar.fina.alt.glif</string>\n    <key>fehDotbelow-ar.init</key>\n    <string>fehD_otbelow-ar.init.glif</string>\n    <key>fehDotbelow-ar.medi</key>\n    <string>fehD_otbelow-ar.medi.glif</string>\n    <key>fehDotbelowThreedotsabove-ar</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.alt</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.alt.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.fina</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.fina.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.fina.alt</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.fina.alt.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.init</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.init.glif</string>\n    <key>fehDotbelowThreedotsabove-ar.medi</key>\n    <string>fehD_otbelowT_hreedotsabove-ar.medi.glif</string>\n    <key>fehDotless-ar</key>\n    <string>fehD_otless-ar.glif</string>\n    <key>fehDotless-ar.alt</key>\n    <string>fehD_otless-ar.alt.glif</string>\n    <key>fehDotless-ar.fina</key>\n    <string>fehD_otless-ar.fina.glif</string>\n    <key>fehDotless-ar.fina.alt</key>\n    <string>fehD_otless-ar.fina.alt.glif</string>\n    <key>fehDotless-ar.init</key>\n    <string>fehD_otless-ar.init.glif</string>\n    <key>fehDotless-ar.init.alt</key>\n    <string>fehD_otless-ar.init.alt.glif</string>\n    <key>fehDotless-ar.medi</key>\n    <string>fehD_otless-ar.medi.glif</string>\n    <key>fehThreedotsbelow-ar</key>\n    <string>fehT_hreedotsbelow-ar.glif</string>\n    <key>fehThreedotsbelow-ar.alt</key>\n    <string>fehT_hreedotsbelow-ar.alt.glif</string>\n    <key>fehThreedotsbelow-ar.fina</key>\n    <string>fehT_hreedotsbelow-ar.fina.glif</string>\n    <key>fehThreedotsbelow-ar.fina.alt</key>\n    <string>fehT_hreedotsbelow-ar.fina.alt.glif</string>\n    <key>fehThreedotsbelow-ar.init</key>\n    <string>fehT_hreedotsbelow-ar.init.glif</string>\n    <key>fehThreedotsbelow-ar.medi</key>\n    <string>fehT_hreedotsbelow-ar.medi.glif</string>\n    <key>fehThreedotsupbelow-ar</key>\n    <string>fehT_hreedotsupbelow-ar.glif</string>\n    <key>fehThreedotsupbelow-ar.alt</key>\n    <string>fehT_hreedotsupbelow-ar.alt.glif</string>\n    <key>fehThreedotsupbelow-ar.fina</key>\n    <string>fehT_hreedotsupbelow-ar.fina.glif</string>\n    <key>fehThreedotsupbelow-ar.fina.alt</key>\n    <string>fehT_hreedotsupbelow-ar.fina.alt.glif</string>\n    <key>fehThreedotsupbelow-ar.init</key>\n    <string>fehT_hreedotsupbelow-ar.init.glif</string>\n    <key>fehThreedotsupbelow-ar.medi</key>\n    <string>fehT_hreedotsupbelow-ar.medi.glif</string>\n    <key>fehTwodotsbelow-ar</key>\n    <string>fehT_wodotsbelow-ar.glif</string>\n    <key>fehTwodotsbelow-ar.alt</key>\n    <string>fehT_wodotsbelow-ar.alt.glif</string>\n    <key>fehTwodotsbelow-ar.fina</key>\n    <string>fehT_wodotsbelow-ar.fina.glif</string>\n    <key>fehTwodotsbelow-ar.fina.alt</key>\n    <string>fehT_wodotsbelow-ar.fina.alt.glif</string>\n    <key>fehTwodotsbelow-ar.init</key>\n    <string>fehT_wodotsbelow-ar.init.glif</string>\n    <key>fehTwodotsbelow-ar.medi</key>\n    <string>fehT_wodotsbelow-ar.medi.glif</string>\n    <key>fi</key>\n    <string>fi.glif</string>\n    <key>fileSeparatorControl</key>\n    <string>fileS_eparatorC_ontrol.glif</string>\n    <key>filledRect</key>\n    <string>filledR_ect.glif</string>\n    <key>finalkaf-hb</key>\n    <string>finalkaf-hb.glif</string>\n    <key>finalkafdagesh-hb</key>\n    <string>finalkafdagesh-hb.glif</string>\n    <key>finalmem-hb</key>\n    <string>finalmem-hb.glif</string>\n    <key>finalnun-hb</key>\n    <string>finalnun-hb.glif</string>\n    <key>finalpe-hb</key>\n    <string>finalpe-hb.glif</string>\n    <key>finalpedagesh-hb</key>\n    <string>finalpedagesh-hb.glif</string>\n    <key>finaltsadi-hb</key>\n    <string>finaltsadi-hb.glif</string>\n    <key>firsttonechinese</key>\n    <string>firsttonechinese.glif</string>\n    <key>fisheye</key>\n    <string>fisheye.glif</string>\n    <key>five</key>\n    <string>five.glif</string>\n    <key>five-ar</key>\n    <string>five-ar.glif</string>\n    <key>five-arinferior</key>\n    <string>five-arinferior.glif</string>\n    <key>five-arsuperior</key>\n    <string>five-arsuperior.glif</string>\n    <key>five-persian</key>\n    <string>five-persian.glif</string>\n    <key>five-persianinferior</key>\n    <string>five-persianinferior.glif</string>\n    <key>five-persiansuperior</key>\n    <string>five-persiansuperior.glif</string>\n    <key>five.dnom</key>\n    <string>five.dnom.glif</string>\n    <key>five.numr</key>\n    <string>five.numr.glif</string>\n    <key>fiveeighths</key>\n    <string>fiveeighths.glif</string>\n    <key>fiveeighths.BRACKET.500</key>\n    <string>fiveeighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>fiveinferior</key>\n    <string>fiveinferior.glif</string>\n    <key>fivesuperior</key>\n    <string>fivesuperior.glif</string>\n    <key>fl</key>\n    <string>fl.glif</string>\n    <key>florin</key>\n    <string>florin.glif</string>\n    <key>footnotemarker-ar</key>\n    <string>footnotemarker-ar.glif</string>\n    <key>formFeedControl</key>\n    <string>formF_eedC_ontrol.glif</string>\n    <key>formFeedControl.ss20</key>\n    <string>formF_eedC_ontrol.ss20.glif</string>\n    <key>four</key>\n    <string>four.glif</string>\n    <key>four-ar</key>\n    <string>four-ar.glif</string>\n    <key>four-arinferior</key>\n    <string>four-arinferior.glif</string>\n    <key>four-arsuperior</key>\n    <string>four-arsuperior.glif</string>\n    <key>four-persian</key>\n    <string>four-persian.glif</string>\n    <key>four-persian.small01</key>\n    <string>four-persian.small01.glif</string>\n    <key>four-persian.urdu</key>\n    <string>four-persian.urdu.glif</string>\n    <key>four-persian.urduinferior</key>\n    <string>four-persian.urduinferior.glif</string>\n    <key>four-persian.urdusuperior</key>\n    <string>four-persian.urdusuperior.glif</string>\n    <key>four-persianbelow-ar</key>\n    <string>four-persianbelow-ar.glif</string>\n    <key>four-persiancenter-ar</key>\n    <string>four-persiancenter-ar.glif</string>\n    <key>four-persianinferior</key>\n    <string>four-persianinferior.glif</string>\n    <key>four-persiansuperior</key>\n    <string>four-persiansuperior.glif</string>\n    <key>four.dnom</key>\n    <string>four.dnom.glif</string>\n    <key>four.half</key>\n    <string>four.half.glif</string>\n    <key>four.numr</key>\n    <string>four.numr.glif</string>\n    <key>fourdotsabove-ar</key>\n    <string>fourdotsabove-ar.glif</string>\n    <key>fourdotsbelow-ar</key>\n    <string>fourdotsbelow-ar.glif</string>\n    <key>fourdotscenter-ar</key>\n    <string>fourdotscenter-ar.glif</string>\n    <key>fourinferior</key>\n    <string>fourinferior.glif</string>\n    <key>foursuperior</key>\n    <string>foursuperior.glif</string>\n    <key>fourthroot-ar</key>\n    <string>fourthroot-ar.glif</string>\n    <key>fraction</key>\n    <string>fraction.glif</string>\n    <key>franc</key>\n    <string>franc.glif</string>\n    <key>fullBlock</key>\n    <string>fullB_lock.glif</string>\n    <key>fullBlock.stypo</key>\n    <string>fullB_lock.stypo.glif</string>\n    <key>fullstop-ar</key>\n    <string>fullstop-ar.glif</string>\n    <key>g</key>\n    <string>g.glif</string>\n    <key>gaf-ar</key>\n    <string>gaf-ar.glif</string>\n    <key>gaf-ar.fina</key>\n    <string>gaf-ar.fina.glif</string>\n    <key>gaf-ar.init</key>\n    <string>gaf-ar.init.glif</string>\n    <key>gaf-ar.medi</key>\n    <string>gaf-ar.medi.glif</string>\n    <key>gafInvertedstroke-ar</key>\n    <string>gafI_nvertedstroke-ar.glif</string>\n    <key>gafInvertedstroke-ar.fina</key>\n    <string>gafI_nvertedstroke-ar.fina.glif</string>\n    <key>gafInvertedstroke-ar.init</key>\n    <string>gafI_nvertedstroke-ar.init.glif</string>\n    <key>gafInvertedstroke-ar.medi</key>\n    <string>gafI_nvertedstroke-ar.medi.glif</string>\n    <key>gafRing-ar</key>\n    <string>gafR_ing-ar.glif</string>\n    <key>gafRing-ar.fina</key>\n    <string>gafR_ing-ar.fina.glif</string>\n    <key>gafRing-ar.init</key>\n    <string>gafR_ing-ar.init.glif</string>\n    <key>gafRing-ar.medi</key>\n    <string>gafR_ing-ar.medi.glif</string>\n    <key>gafThreedots-ar</key>\n    <string>gafT_hreedots-ar.glif</string>\n    <key>gafThreedots-ar.fina</key>\n    <string>gafT_hreedots-ar.fina.glif</string>\n    <key>gafThreedots-ar.init</key>\n    <string>gafT_hreedots-ar.init.glif</string>\n    <key>gafThreedots-ar.medi</key>\n    <string>gafT_hreedots-ar.medi.glif</string>\n    <key>gafTwodotsbelow-ar</key>\n    <string>gafT_wodotsbelow-ar.glif</string>\n    <key>gafTwodotsbelow-ar.fina</key>\n    <string>gafT_wodotsbelow-ar.fina.glif</string>\n    <key>gafTwodotsbelow-ar.init</key>\n    <string>gafT_wodotsbelow-ar.init.glif</string>\n    <key>gafTwodotsbelow-ar.medi</key>\n    <string>gafT_wodotsbelow-ar.medi.glif</string>\n    <key>gafsarkashabove-ar</key>\n    <string>gafsarkashabove-ar.glif</string>\n    <key>gamma</key>\n    <string>gamma.glif</string>\n    <key>gamma-latin</key>\n    <string>gamma-latin.glif</string>\n    <key>gbreve</key>\n    <string>gbreve.glif</string>\n    <key>gcaron</key>\n    <string>gcaron.glif</string>\n    <key>gcircumflex</key>\n    <string>gcircumflex.glif</string>\n    <key>gcommaaccent</key>\n    <string>gcommaaccent.glif</string>\n    <key>gdotaccent</key>\n    <string>gdotaccent.glif</string>\n    <key>ge-cy</key>\n    <string>ge-cy.glif</string>\n    <key>ge-cy.loclBGR</key>\n    <string>ge-cy.loclB_G_R_.glif</string>\n    <key>geresh-hb</key>\n    <string>geresh-hb.glif</string>\n    <key>germandbls</key>\n    <string>germandbls.glif</string>\n    <key>gershayim-hb</key>\n    <string>gershayim-hb.glif</string>\n    <key>ghain-ar</key>\n    <string>ghain-ar.glif</string>\n    <key>ghain-ar.fina</key>\n    <string>ghain-ar.fina.glif</string>\n    <key>ghain-ar.init</key>\n    <string>ghain-ar.init.glif</string>\n    <key>ghain-ar.medi</key>\n    <string>ghain-ar.medi.glif</string>\n    <key>ghainDotbelow-ar</key>\n    <string>ghainD_otbelow-ar.glif</string>\n    <key>ghainDotbelow-ar.fina</key>\n    <string>ghainD_otbelow-ar.fina.glif</string>\n    <key>ghainDotbelow-ar.init</key>\n    <string>ghainD_otbelow-ar.init.glif</string>\n    <key>ghainDotbelow-ar.medi</key>\n    <string>ghainD_otbelow-ar.medi.glif</string>\n    <key>ghestroke-cy</key>\n    <string>ghestroke-cy.glif</string>\n    <key>gheupturn-cy</key>\n    <string>gheupturn-cy.glif</string>\n    <key>gimel-hb</key>\n    <string>gimel-hb.glif</string>\n    <key>gimeldagesh-hb</key>\n    <string>gimeldagesh-hb.glif</string>\n    <key>gje-cy</key>\n    <string>gje-cy.glif</string>\n    <key>glottalstop</key>\n    <string>glottalstop.glif</string>\n    <key>glottalstopmod</key>\n    <string>glottalstopmod.glif</string>\n    <key>glottalstopreversed</key>\n    <string>glottalstopreversed.glif</string>\n    <key>grave</key>\n    <string>grave.glif</string>\n    <key>gravecomb</key>\n    <string>gravecomb.glif</string>\n    <key>gravecomb.case</key>\n    <string>gravecomb.case.glif</string>\n    <key>gravetonecomb</key>\n    <string>gravetonecomb.glif</string>\n    <key>greater</key>\n    <string>greater.glif</string>\n    <key>greater.alt</key>\n    <string>greater.alt.glif</string>\n    <key>greater.center</key>\n    <string>greater.center.glif</string>\n    <key>greater_equal.liga</key>\n    <string>greater_equal.liga.glif</string>\n    <key>greater_equal_end.seq</key>\n    <string>greater_equal_end.seq.glif</string>\n    <key>greater_equal_middle.seq</key>\n    <string>greater_equal_middle.seq.glif</string>\n    <key>greater_equal_start.seq</key>\n    <string>greater_equal_start.seq.glif</string>\n    <key>greater_greater.liga</key>\n    <string>greater_greater.liga.glif</string>\n    <key>greater_greater_equal.liga</key>\n    <string>greater_greater_equal.liga.glif</string>\n    <key>greater_greater_equal_end.seq</key>\n    <string>greater_greater_equal_end.seq.glif</string>\n    <key>greater_greater_equal_middle.seq</key>\n    <string>greater_greater_equal_middle.seq.glif</string>\n    <key>greater_greater_equal_start.seq</key>\n    <string>greater_greater_equal_start.seq.glif</string>\n    <key>greater_greater_greater.liga</key>\n    <string>greater_greater_greater.liga.glif</string>\n    <key>greater_greater_hyphen_end.seq</key>\n    <string>greater_greater_hyphen_end.seq.glif</string>\n    <key>greater_greater_hyphen_middle.seq</key>\n    <string>greater_greater_hyphen_middle.seq.glif</string>\n    <key>greater_greater_hyphen_start.seq</key>\n    <string>greater_greater_hyphen_start.seq.glif</string>\n    <key>greater_hyphen_end.seq</key>\n    <string>greater_hyphen_end.seq.glif</string>\n    <key>greater_hyphen_middle.seq</key>\n    <string>greater_hyphen_middle.seq.glif</string>\n    <key>greater_hyphen_start.seq</key>\n    <string>greater_hyphen_start.seq.glif</string>\n    <key>greaterequal</key>\n    <string>greaterequal.glif</string>\n    <key>groupSeparatorControl</key>\n    <string>groupS_eparatorC_ontrol.glif</string>\n    <key>gstroke</key>\n    <string>gstroke.glif</string>\n    <key>guarani</key>\n    <string>guarani.glif</string>\n    <key>gueh-ar</key>\n    <string>gueh-ar.glif</string>\n    <key>gueh-ar.fina</key>\n    <string>gueh-ar.fina.glif</string>\n    <key>gueh-ar.init</key>\n    <string>gueh-ar.init.glif</string>\n    <key>gueh-ar.medi</key>\n    <string>gueh-ar.medi.glif</string>\n    <key>guillemetleft</key>\n    <string>guillemetleft.glif</string>\n    <key>guillemetright</key>\n    <string>guillemetright.glif</string>\n    <key>guilsinglleft</key>\n    <string>guilsinglleft.glif</string>\n    <key>guilsinglright</key>\n    <string>guilsinglright.glif</string>\n    <key>h</key>\n    <string>h.glif</string>\n    <key>ha-cy</key>\n    <string>ha-cy.glif</string>\n    <key>hadescender-cy</key>\n    <string>hadescender-cy.glif</string>\n    <key>hah-ar</key>\n    <string>hah-ar.glif</string>\n    <key>hah-ar.fina</key>\n    <string>hah-ar.fina.glif</string>\n    <key>hah-ar.init</key>\n    <string>hah-ar.init.glif</string>\n    <key>hah-ar.medi</key>\n    <string>hah-ar.medi.glif</string>\n    <key>hahFourbelow-ar</key>\n    <string>hahF_ourbelow-ar.glif</string>\n    <key>hahFourbelow-ar.fina</key>\n    <string>hahF_ourbelow-ar.fina.glif</string>\n    <key>hahFourbelow-ar.init</key>\n    <string>hahF_ourbelow-ar.init.glif</string>\n    <key>hahFourbelow-ar.medi</key>\n    <string>hahF_ourbelow-ar.medi.glif</string>\n    <key>hahHamzaabove-ar</key>\n    <string>hahH_amzaabove-ar.glif</string>\n    <key>hahHamzaabove-ar.fina</key>\n    <string>hahH_amzaabove-ar.fina.glif</string>\n    <key>hahHamzaabove-ar.init</key>\n    <string>hahH_amzaabove-ar.init.glif</string>\n    <key>hahHamzaabove-ar.medi</key>\n    <string>hahH_amzaabove-ar.medi.glif</string>\n    <key>hahTahTwodotshorizontalabove-ar</key>\n    <string>hahT_ahT_wodotshorizontalabove-ar.glif</string>\n    <key>hahTahTwodotshorizontalabove-ar.fina</key>\n    <string>hahT_ahT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>hahTahTwodotshorizontalabove-ar.init</key>\n    <string>hahT_ahT_wodotshorizontalabove-ar.init.glif</string>\n    <key>hahTahTwodotshorizontalabove-ar.medi</key>\n    <string>hahT_ahT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>hahTahabove-ar</key>\n    <string>hahT_ahabove-ar.glif</string>\n    <key>hahTahabove-ar.fina</key>\n    <string>hahT_ahabove-ar.fina.glif</string>\n    <key>hahTahabove-ar.init</key>\n    <string>hahT_ahabove-ar.init.glif</string>\n    <key>hahTahabove-ar.medi</key>\n    <string>hahT_ahabove-ar.medi.glif</string>\n    <key>hahTahbelow-ar</key>\n    <string>hahT_ahbelow-ar.glif</string>\n    <key>hahTahbelow-ar.fina</key>\n    <string>hahT_ahbelow-ar.fina.glif</string>\n    <key>hahTahbelow-ar.init</key>\n    <string>hahT_ahbelow-ar.init.glif</string>\n    <key>hahTahbelow-ar.medi</key>\n    <string>hahT_ahbelow-ar.medi.glif</string>\n    <key>hahThreedotsabove-ar</key>\n    <string>hahT_hreedotsabove-ar.glif</string>\n    <key>hahThreedotsabove-ar.fina</key>\n    <string>hahT_hreedotsabove-ar.fina.glif</string>\n    <key>hahThreedotsabove-ar.init</key>\n    <string>hahT_hreedotsabove-ar.init.glif</string>\n    <key>hahThreedotsabove-ar.medi</key>\n    <string>hahT_hreedotsabove-ar.medi.glif</string>\n    <key>hahThreedotsupbelow-ar</key>\n    <string>hahT_hreedotsupbelow-ar.glif</string>\n    <key>hahThreedotsupbelow-ar.fina</key>\n    <string>hahT_hreedotsupbelow-ar.fina.glif</string>\n    <key>hahThreedotsupbelow-ar.init</key>\n    <string>hahT_hreedotsupbelow-ar.init.glif</string>\n    <key>hahThreedotsupbelow-ar.medi</key>\n    <string>hahT_hreedotsupbelow-ar.medi.glif</string>\n    <key>hahTwodotshorizontalabove-ar</key>\n    <string>hahT_wodotshorizontalabove-ar.glif</string>\n    <key>hahTwodotshorizontalabove-ar.fina</key>\n    <string>hahT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>hahTwodotshorizontalabove-ar.init</key>\n    <string>hahT_wodotshorizontalabove-ar.init.glif</string>\n    <key>hahTwodotshorizontalabove-ar.medi</key>\n    <string>hahT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>hahTwodotsverticalabove-ar</key>\n    <string>hahT_wodotsverticalabove-ar.glif</string>\n    <key>hahTwodotsverticalabove-ar.fina</key>\n    <string>hahT_wodotsverticalabove-ar.fina.glif</string>\n    <key>hahTwodotsverticalabove-ar.init</key>\n    <string>hahT_wodotsverticalabove-ar.init.glif</string>\n    <key>hahTwodotsverticalabove-ar.medi</key>\n    <string>hahT_wodotsverticalabove-ar.medi.glif</string>\n    <key>hamza-ar</key>\n    <string>hamza-ar.glif</string>\n    <key>hamzaabove-ar</key>\n    <string>hamzaabove-ar.glif</string>\n    <key>hamzabelow-ar</key>\n    <string>hamzabelow-ar.glif</string>\n    <key>hardsign-cy</key>\n    <string>hardsign-cy.glif</string>\n    <key>hardsign-cy.loclBGR</key>\n    <string>hardsign-cy.loclB_G_R_.glif</string>\n    <key>hbar</key>\n    <string>hbar.glif</string>\n    <key>hcaron</key>\n    <string>hcaron.glif</string>\n    <key>hcircumflex</key>\n    <string>hcircumflex.glif</string>\n    <key>hdotbelow</key>\n    <string>hdotbelow.glif</string>\n    <key>he-hb</key>\n    <string>he-hb.glif</string>\n    <key>heartBlackSuit</key>\n    <string>heartB_lackS_uit.glif</string>\n    <key>heavyleftpointinganglebracketornament</key>\n    <string>heavyleftpointinganglebracketornament.glif</string>\n    <key>heavyleftpointinganglequotationmarkornament</key>\n    <string>heavyleftpointinganglequotationmarkornament.glif</string>\n    <key>heavyrightpointinganglebracketornament</key>\n    <string>heavyrightpointinganglebracketornament.glif</string>\n    <key>heavyrightpointinganglequotationmarkornament</key>\n    <string>heavyrightpointinganglequotationmarkornament.glif</string>\n    <key>hedagesh-hb</key>\n    <string>hedagesh-hb.glif</string>\n    <key>heh-ar</key>\n    <string>heh-ar.glif</string>\n    <key>heh-ar.fina</key>\n    <string>heh-ar.fina.glif</string>\n    <key>heh-ar.init</key>\n    <string>heh-ar.init.glif</string>\n    <key>heh-ar.medi</key>\n    <string>heh-ar.medi.glif</string>\n    <key>hehAlefabove-ar.init</key>\n    <string>hehA_lefabove-ar.init.glif</string>\n    <key>hehAlefabove-ar.init.fina</key>\n    <string>hehA_lefabove-ar.init.fina.glif</string>\n    <key>hehDoachashmee-ar</key>\n    <string>hehD_oachashmee-ar.glif</string>\n    <key>hehDoachashmee-ar.fina</key>\n    <string>hehD_oachashmee-ar.fina.glif</string>\n    <key>hehDoachashmee-ar.init</key>\n    <string>hehD_oachashmee-ar.init.glif</string>\n    <key>hehDoachashmee-ar.medi</key>\n    <string>hehD_oachashmee-ar.medi.glif</string>\n    <key>hehHamzaabove-ar</key>\n    <string>hehH_amzaabove-ar.glif</string>\n    <key>hehHamzaabove-ar.fina</key>\n    <string>hehH_amzaabove-ar.fina.glif</string>\n    <key>hehVinvertedabove-ar</key>\n    <string>hehV_invertedabove-ar.glif</string>\n    <key>hehVinvertedabove-ar.fina</key>\n    <string>hehV_invertedabove-ar.fina.glif</string>\n    <key>hehVinvertedabove-ar.init</key>\n    <string>hehV_invertedabove-ar.init.glif</string>\n    <key>hehVinvertedabove-ar.medi</key>\n    <string>hehV_invertedabove-ar.medi.glif</string>\n    <key>hehgoal-ar</key>\n    <string>hehgoal-ar.glif</string>\n    <key>hehgoal-ar.fina</key>\n    <string>hehgoal-ar.fina.glif</string>\n    <key>hehgoal-ar.init</key>\n    <string>hehgoal-ar.init.glif</string>\n    <key>hehgoal-ar.init.alt</key>\n    <string>hehgoal-ar.init.alt.glif</string>\n    <key>hehgoal-ar.medi</key>\n    <string>hehgoal-ar.medi.glif</string>\n    <key>hehgoalHamzaabove-ar</key>\n    <string>hehgoalH_amzaabove-ar.glif</string>\n    <key>hehgoalHamzaabove-ar.fina</key>\n    <string>hehgoalH_amzaabove-ar.fina.glif</string>\n    <key>hehgoalHamzaabove-ar.init</key>\n    <string>hehgoalH_amzaabove-ar.init.glif</string>\n    <key>hehgoalHamzaabove-ar.init.alt</key>\n    <string>hehgoalH_amzaabove-ar.init.alt.glif</string>\n    <key>hehgoalHamzaabove-ar.medi</key>\n    <string>hehgoalH_amzaabove-ar.medi.glif</string>\n    <key>het-hb</key>\n    <string>het-hb.glif</string>\n    <key>highhamza-ar</key>\n    <string>highhamza-ar.glif</string>\n    <key>highhamzaAlef-ar</key>\n    <string>highhamzaA_lef-ar.glif</string>\n    <key>highhamzaAlef-ar.fina</key>\n    <string>highhamzaA_lef-ar.fina.glif</string>\n    <key>highhamzaAlef-ar.fina.rlig</key>\n    <string>highhamzaA_lef-ar.fina.rlig.glif</string>\n    <key>highhamzaWaw-ar</key>\n    <string>highhamzaW_aw-ar.glif</string>\n    <key>highhamzaWaw-ar.fina</key>\n    <string>highhamzaW_aw-ar.fina.glif</string>\n    <key>highhamzaYeh-ar</key>\n    <string>highhamzaY_eh-ar.glif</string>\n    <key>highhamzaYeh-ar.fina</key>\n    <string>highhamzaY_eh-ar.fina.glif</string>\n    <key>highhamzaYeh-ar.fina.alt</key>\n    <string>highhamzaY_eh-ar.fina.alt.glif</string>\n    <key>highhamzaYeh-ar.init</key>\n    <string>highhamzaY_eh-ar.init.glif</string>\n    <key>highhamzaYeh-ar.init.alt</key>\n    <string>highhamzaY_eh-ar.init.alt.glif</string>\n    <key>highhamzaYeh-ar.medi</key>\n    <string>highhamzaY_eh-ar.medi.glif</string>\n    <key>holam-hb</key>\n    <string>holam-hb.glif</string>\n    <key>holamhaser-hb</key>\n    <string>holamhaser-hb.glif</string>\n    <key>hookabovecomb</key>\n    <string>hookabovecomb.glif</string>\n    <key>hookabovecomb.case</key>\n    <string>hookabovecomb.case.glif</string>\n    <key>horizontalBlackHexagon</key>\n    <string>horizontalB_lackH_exagon.glif</string>\n    <key>horizontalFillSquare</key>\n    <string>horizontalF_illS_quare.glif</string>\n    <key>horizontalTabulationControl</key>\n    <string>horizontalT_abulationC_ontrol.glif</string>\n    <key>horizontalTabulationControl.ss20</key>\n    <string>horizontalT_abulationC_ontrol.ss20.glif</string>\n    <key>horizontalbar</key>\n    <string>horizontalbar.glif</string>\n    <key>horizontallineextension</key>\n    <string>horizontallineextension.glif</string>\n    <key>horncomb</key>\n    <string>horncomb.glif</string>\n    <key>horncomb.case</key>\n    <string>horncomb.case.glif</string>\n    <key>house</key>\n    <string>house.glif</string>\n    <key>hryvnia</key>\n    <string>hryvnia.glif</string>\n    <key>hungarumlaut</key>\n    <string>hungarumlaut.glif</string>\n    <key>hungarumlautcomb</key>\n    <string>hungarumlautcomb.glif</string>\n    <key>hungarumlautcomb.case</key>\n    <string>hungarumlautcomb.case.glif</string>\n    <key>hyphen</key>\n    <string>hyphen.glif</string>\n    <key>hyphen_asciitilde.liga</key>\n    <string>hyphen_asciitilde.liga.glif</string>\n    <key>hyphen_end.seq</key>\n    <string>hyphen_end.seq.glif</string>\n    <key>hyphen_hyphen.liga</key>\n    <string>hyphen_hyphen.liga.glif</string>\n    <key>hyphen_hyphen_hyphen.liga</key>\n    <string>hyphen_hyphen_hyphen.liga.glif</string>\n    <key>hyphen_middle.seq</key>\n    <string>hyphen_middle.seq.glif</string>\n    <key>hyphen_start.seq</key>\n    <string>hyphen_start.seq.glif</string>\n    <key>hyphentwo</key>\n    <string>hyphentwo.glif</string>\n    <key>i</key>\n    <string>i.glif</string>\n    <key>i-cy</key>\n    <string>i-cy.glif</string>\n    <key>ia-cy</key>\n    <string>ia-cy.glif</string>\n    <key>iacute</key>\n    <string>iacute.glif</string>\n    <key>ibreve</key>\n    <string>ibreve.glif</string>\n    <key>icircumflex</key>\n    <string>icircumflex.glif</string>\n    <key>idieresis</key>\n    <string>idieresis.glif</string>\n    <key>idotbelow</key>\n    <string>idotbelow.glif</string>\n    <key>idotless</key>\n    <string>idotless.glif</string>\n    <key>ie-cy</key>\n    <string>ie-cy.glif</string>\n    <key>iegrave-cy</key>\n    <string>iegrave-cy.glif</string>\n    <key>igrave</key>\n    <string>igrave.glif</string>\n    <key>ihookabove</key>\n    <string>ihookabove.glif</string>\n    <key>ii-cy</key>\n    <string>ii-cy.glif</string>\n    <key>ii-cy.loclBGR</key>\n    <string>ii-cy.loclB_G_R_.glif</string>\n    <key>iigrave-cy</key>\n    <string>iigrave-cy.glif</string>\n    <key>iigrave-cy.loclBGR</key>\n    <string>iigrave-cy.loclB_G_R_.glif</string>\n    <key>iishort-cy</key>\n    <string>iishort-cy.glif</string>\n    <key>iishort-cy.loclBGR</key>\n    <string>iishort-cy.loclB_G_R_.glif</string>\n    <key>ij</key>\n    <string>ij.glif</string>\n    <key>ij_acute</key>\n    <string>ij_acute.glif</string>\n    <key>imacron</key>\n    <string>imacron.glif</string>\n    <key>imacron-cy</key>\n    <string>imacron-cy.glif</string>\n    <key>increment</key>\n    <string>increment.glif</string>\n    <key>infinity</key>\n    <string>infinity.glif</string>\n    <key>integral</key>\n    <string>integral.glif</string>\n    <key>integralbt</key>\n    <string>integralbt.glif</string>\n    <key>integraltp</key>\n    <string>integraltp.glif</string>\n    <key>intersection</key>\n    <string>intersection.glif</string>\n    <key>inverseBullet</key>\n    <string>inverseB_ullet.glif</string>\n    <key>inverseWhiteCircle</key>\n    <string>inverseW_hiteC_ircle.glif</string>\n    <key>io-cy</key>\n    <string>io-cy.glif</string>\n    <key>iogonek</key>\n    <string>iogonek.glif</string>\n    <key>iota</key>\n    <string>iota.glif</string>\n    <key>iota-latin</key>\n    <string>iota-latin.glif</string>\n    <key>iotadieresis</key>\n    <string>iotadieresis.glif</string>\n    <key>iotadieresistonos</key>\n    <string>iotadieresistonos.glif</string>\n    <key>iotatonos</key>\n    <string>iotatonos.glif</string>\n    <key>itilde</key>\n    <string>itilde.glif</string>\n    <key>iu-cy</key>\n    <string>iu-cy.glif</string>\n    <key>iu-cy.loclBGR</key>\n    <string>iu-cy.loclB_G_R_.glif</string>\n    <key>j</key>\n    <string>j.glif</string>\n    <key>jacute</key>\n    <string>jacute.glif</string>\n    <key>jcaron</key>\n    <string>jcaron.glif</string>\n    <key>jcircumflex</key>\n    <string>jcircumflex.glif</string>\n    <key>jdotless</key>\n    <string>jdotless.glif</string>\n    <key>je-cy</key>\n    <string>je-cy.glif</string>\n    <key>jeem-ar</key>\n    <string>jeem-ar.glif</string>\n    <key>jeem-ar.fina</key>\n    <string>jeem-ar.fina.glif</string>\n    <key>jeem-ar.init</key>\n    <string>jeem-ar.init.glif</string>\n    <key>jeem-ar.medi</key>\n    <string>jeem-ar.medi.glif</string>\n    <key>jeemTwodotsabove-ar</key>\n    <string>jeemT_wodotsabove-ar.glif</string>\n    <key>jeemTwodotsabove-ar.fina</key>\n    <string>jeemT_wodotsabove-ar.fina.glif</string>\n    <key>jeemTwodotsabove-ar.init</key>\n    <string>jeemT_wodotsabove-ar.init.glif</string>\n    <key>jeemTwodotsabove-ar.medi</key>\n    <string>jeemT_wodotsabove-ar.medi.glif</string>\n    <key>jeh-ar</key>\n    <string>jeh-ar.glif</string>\n    <key>jeh-ar.fina</key>\n    <string>jeh-ar.fina.glif</string>\n    <key>k</key>\n    <string>k.glif</string>\n    <key>ka-cy</key>\n    <string>ka-cy.glif</string>\n    <key>ka-cy.loclBGR</key>\n    <string>ka-cy.loclB_G_R_.glif</string>\n    <key>kadescender-cy</key>\n    <string>kadescender-cy.glif</string>\n    <key>kaf-ar</key>\n    <string>kaf-ar.glif</string>\n    <key>kaf-ar.fina</key>\n    <string>kaf-ar.fina.glif</string>\n    <key>kaf-ar.init</key>\n    <string>kaf-ar.init.glif</string>\n    <key>kaf-ar.medi</key>\n    <string>kaf-ar.medi.glif</string>\n    <key>kaf-hb</key>\n    <string>kaf-hb.glif</string>\n    <key>kafDotabove-ar</key>\n    <string>kafD_otabove-ar.glif</string>\n    <key>kafDotabove-ar.fina</key>\n    <string>kafD_otabove-ar.fina.glif</string>\n    <key>kafDotabove-ar.init</key>\n    <string>kafD_otabove-ar.init.glif</string>\n    <key>kafDotabove-ar.medi</key>\n    <string>kafD_otabove-ar.medi.glif</string>\n    <key>kafRing-ar</key>\n    <string>kafR_ing-ar.glif</string>\n    <key>kafRing-ar.fina</key>\n    <string>kafR_ing-ar.fina.glif</string>\n    <key>kafRing-ar.init</key>\n    <string>kafR_ing-ar.init.glif</string>\n    <key>kafRing-ar.medi</key>\n    <string>kafR_ing-ar.medi.glif</string>\n    <key>kafThreedotsbelow-ar</key>\n    <string>kafT_hreedotsbelow-ar.glif</string>\n    <key>kafThreedotsbelow-ar.fina</key>\n    <string>kafT_hreedotsbelow-ar.fina.glif</string>\n    <key>kafThreedotsbelow-ar.init</key>\n    <string>kafT_hreedotsbelow-ar.init.glif</string>\n    <key>kafThreedotsbelow-ar.medi</key>\n    <string>kafT_hreedotsbelow-ar.medi.glif</string>\n    <key>kafTwodotshorizontalabove-ar</key>\n    <string>kafT_wodotshorizontalabove-ar.glif</string>\n    <key>kafTwodotshorizontalabove-ar.fina</key>\n    <string>kafT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>kafTwodotshorizontalabove-ar.init</key>\n    <string>kafT_wodotshorizontalabove-ar.init.glif</string>\n    <key>kafTwodotshorizontalabove-ar.medi</key>\n    <string>kafT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>kafdagesh-hb</key>\n    <string>kafdagesh-hb.glif</string>\n    <key>kafswash-ar</key>\n    <string>kafswash-ar.glif</string>\n    <key>kafswash-ar.alt</key>\n    <string>kafswash-ar.alt.glif</string>\n    <key>kafswash-ar.fina</key>\n    <string>kafswash-ar.fina.glif</string>\n    <key>kafswash-ar.fina.alt</key>\n    <string>kafswash-ar.fina.alt.glif</string>\n    <key>kafswash-ar.init</key>\n    <string>kafswash-ar.init.glif</string>\n    <key>kafswash-ar.init.alt</key>\n    <string>kafswash-ar.init.alt.glif</string>\n    <key>kafswash-ar.medi</key>\n    <string>kafswash-ar.medi.glif</string>\n    <key>kafswash-ar.medi.alt</key>\n    <string>kafswash-ar.medi.alt.glif</string>\n    <key>kaiSymbol</key>\n    <string>kaiS_ymbol.glif</string>\n    <key>kappa</key>\n    <string>kappa.glif</string>\n    <key>kashida-ar</key>\n    <string>kashida-ar.glif</string>\n    <key>kasra-ar</key>\n    <string>kasra-ar.glif</string>\n    <key>kasratan-ar</key>\n    <string>kasratan-ar.glif</string>\n    <key>kcommaaccent</key>\n    <string>kcommaaccent.glif</string>\n    <key>kdotbelow</key>\n    <string>kdotbelow.glif</string>\n    <key>keheh-ar</key>\n    <string>keheh-ar.glif</string>\n    <key>keheh-ar.fina</key>\n    <string>keheh-ar.fina.glif</string>\n    <key>keheh-ar.init</key>\n    <string>keheh-ar.init.glif</string>\n    <key>keheh-ar.medi</key>\n    <string>keheh-ar.medi.glif</string>\n    <key>kehehDotabove-ar</key>\n    <string>kehehD_otabove-ar.glif</string>\n    <key>kehehDotabove-ar.fina</key>\n    <string>kehehD_otabove-ar.fina.glif</string>\n    <key>kehehDotabove-ar.init</key>\n    <string>kehehD_otabove-ar.init.glif</string>\n    <key>kehehDotabove-ar.medi</key>\n    <string>kehehD_otabove-ar.medi.glif</string>\n    <key>kehehThreedotsabove-ar</key>\n    <string>kehehT_hreedotsabove-ar.glif</string>\n    <key>kehehThreedotsabove-ar.fina</key>\n    <string>kehehT_hreedotsabove-ar.fina.glif</string>\n    <key>kehehThreedotsabove-ar.init</key>\n    <string>kehehT_hreedotsabove-ar.init.glif</string>\n    <key>kehehThreedotsabove-ar.medi</key>\n    <string>kehehT_hreedotsabove-ar.medi.glif</string>\n    <key>kehehThreedotsbelow-ar</key>\n    <string>kehehT_hreedotsbelow-ar.glif</string>\n    <key>kehehThreedotsbelow-ar.fina</key>\n    <string>kehehT_hreedotsbelow-ar.fina.glif</string>\n    <key>kehehThreedotsbelow-ar.init</key>\n    <string>kehehT_hreedotsbelow-ar.init.glif</string>\n    <key>kehehThreedotsbelow-ar.medi</key>\n    <string>kehehT_hreedotsbelow-ar.medi.glif</string>\n    <key>kehehThreedotsupbelow-ar</key>\n    <string>kehehT_hreedotsupbelow-ar.glif</string>\n    <key>kehehThreedotsupbelow-ar.fina</key>\n    <string>kehehT_hreedotsupbelow-ar.fina.glif</string>\n    <key>kehehThreedotsupbelow-ar.init</key>\n    <string>kehehT_hreedotsupbelow-ar.init.glif</string>\n    <key>kehehThreedotsupbelow-ar.medi</key>\n    <string>kehehT_hreedotsupbelow-ar.medi.glif</string>\n    <key>kehehTwodotshorizontalabove-ar</key>\n    <string>kehehT_wodotshorizontalabove-ar.glif</string>\n    <key>kehehTwodotshorizontalabove-ar.fina</key>\n    <string>kehehT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>kehehTwodotshorizontalabove-ar.init</key>\n    <string>kehehT_wodotshorizontalabove-ar.init.glif</string>\n    <key>kehehTwodotshorizontalabove-ar.medi</key>\n    <string>kehehT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>kgreenlandic</key>\n    <string>kgreenlandic.glif</string>\n    <key>khah-ar</key>\n    <string>khah-ar.glif</string>\n    <key>khah-ar.fina</key>\n    <string>khah-ar.fina.glif</string>\n    <key>khah-ar.init</key>\n    <string>khah-ar.init.glif</string>\n    <key>khah-ar.medi</key>\n    <string>khah-ar.medi.glif</string>\n    <key>kip</key>\n    <string>kip.glif</string>\n    <key>kirghizoe-ar</key>\n    <string>kirghizoe-ar.glif</string>\n    <key>kirghizoe-ar.fina</key>\n    <string>kirghizoe-ar.fina.glif</string>\n    <key>kirghizyu-ar</key>\n    <string>kirghizyu-ar.glif</string>\n    <key>kirghizyu-ar.fina</key>\n    <string>kirghizyu-ar.fina.glif</string>\n    <key>kje-cy</key>\n    <string>kje-cy.glif</string>\n    <key>klinebelow</key>\n    <string>klinebelow.glif</string>\n    <key>l</key>\n    <string>l.glif</string>\n    <key>lacute</key>\n    <string>lacute.glif</string>\n    <key>lam-ar</key>\n    <string>lam-ar.glif</string>\n    <key>lam-ar.fina</key>\n    <string>lam-ar.fina.glif</string>\n    <key>lam-ar.init</key>\n    <string>lam-ar.init.glif</string>\n    <key>lam-ar.init.rlig</key>\n    <string>lam-ar.init.rlig.glif</string>\n    <key>lam-ar.medi</key>\n    <string>lam-ar.medi.glif</string>\n    <key>lam-ar.medi.rlig</key>\n    <string>lam-ar.medi.rlig.glif</string>\n    <key>lamBar-ar</key>\n    <string>lamB_ar-ar.glif</string>\n    <key>lamBar-ar.fina</key>\n    <string>lamB_ar-ar.fina.glif</string>\n    <key>lamBar-ar.init</key>\n    <string>lamB_ar-ar.init.glif</string>\n    <key>lamBar-ar.init.rlig</key>\n    <string>lamB_ar-ar.init.rlig.glif</string>\n    <key>lamBar-ar.medi</key>\n    <string>lamB_ar-ar.medi.glif</string>\n    <key>lamBar-ar.medi.rlig</key>\n    <string>lamB_ar-ar.medi.rlig.glif</string>\n    <key>lamDotabove-ar</key>\n    <string>lamD_otabove-ar.glif</string>\n    <key>lamDotabove-ar.fina</key>\n    <string>lamD_otabove-ar.fina.glif</string>\n    <key>lamDotabove-ar.init</key>\n    <string>lamD_otabove-ar.init.glif</string>\n    <key>lamDotabove-ar.init.rlig</key>\n    <string>lamD_otabove-ar.init.rlig.glif</string>\n    <key>lamDotabove-ar.medi</key>\n    <string>lamD_otabove-ar.medi.glif</string>\n    <key>lamDotabove-ar.medi.rlig</key>\n    <string>lamD_otabove-ar.medi.rlig.glif</string>\n    <key>lamDoublebar-ar</key>\n    <string>lamD_oublebar-ar.glif</string>\n    <key>lamDoublebar-ar.fina</key>\n    <string>lamD_oublebar-ar.fina.glif</string>\n    <key>lamDoublebar-ar.init</key>\n    <string>lamD_oublebar-ar.init.glif</string>\n    <key>lamDoublebar-ar.init.rlig</key>\n    <string>lamD_oublebar-ar.init.rlig.glif</string>\n    <key>lamDoublebar-ar.medi</key>\n    <string>lamD_oublebar-ar.medi.glif</string>\n    <key>lamDoublebar-ar.medi.rlig</key>\n    <string>lamD_oublebar-ar.medi.rlig.glif</string>\n    <key>lamThreedotsabove-ar</key>\n    <string>lamT_hreedotsabove-ar.glif</string>\n    <key>lamThreedotsabove-ar.fina</key>\n    <string>lamT_hreedotsabove-ar.fina.glif</string>\n    <key>lamThreedotsabove-ar.init</key>\n    <string>lamT_hreedotsabove-ar.init.glif</string>\n    <key>lamThreedotsabove-ar.init.rlig</key>\n    <string>lamT_hreedotsabove-ar.init.rlig.glif</string>\n    <key>lamThreedotsabove-ar.medi</key>\n    <string>lamT_hreedotsabove-ar.medi.glif</string>\n    <key>lamThreedotsabove-ar.medi.rlig</key>\n    <string>lamT_hreedotsabove-ar.medi.rlig.glif</string>\n    <key>lamThreedotsbelow-ar</key>\n    <string>lamT_hreedotsbelow-ar.glif</string>\n    <key>lamThreedotsbelow-ar.fina</key>\n    <string>lamT_hreedotsbelow-ar.fina.glif</string>\n    <key>lamThreedotsbelow-ar.init</key>\n    <string>lamT_hreedotsbelow-ar.init.glif</string>\n    <key>lamThreedotsbelow-ar.init.rlig</key>\n    <string>lamT_hreedotsbelow-ar.init.rlig.glif</string>\n    <key>lamThreedotsbelow-ar.medi</key>\n    <string>lamT_hreedotsbelow-ar.medi.glif</string>\n    <key>lamThreedotsbelow-ar.medi.rlig</key>\n    <string>lamT_hreedotsbelow-ar.medi.rlig.glif</string>\n    <key>lamVabove-ar</key>\n    <string>lamV_above-ar.glif</string>\n    <key>lamVabove-ar.fina</key>\n    <string>lamV_above-ar.fina.glif</string>\n    <key>lamVabove-ar.init</key>\n    <string>lamV_above-ar.init.glif</string>\n    <key>lamVabove-ar.init.rlig</key>\n    <string>lamV_above-ar.init.rlig.glif</string>\n    <key>lamVabove-ar.medi</key>\n    <string>lamV_above-ar.medi.glif</string>\n    <key>lamVabove-ar.medi.rlig</key>\n    <string>lamV_above-ar.medi.rlig.glif</string>\n    <key>lam_alef-ar</key>\n    <string>lam_alef-ar.glif</string>\n    <key>lam_alef-ar.fina</key>\n    <string>lam_alef-ar.fina.glif</string>\n    <key>lam_alef-ar.fina.short</key>\n    <string>lam_alef-ar.fina.short.glif</string>\n    <key>lam_alef-ar.short</key>\n    <string>lam_alef-ar.short.glif</string>\n    <key>lam_alefHamzaabove-ar</key>\n    <string>lam_alefH_amzaabove-ar.glif</string>\n    <key>lam_alefHamzaabove-ar.fina</key>\n    <string>lam_alefH_amzaabove-ar.fina.glif</string>\n    <key>lam_alefHamzabelow-ar</key>\n    <string>lam_alefH_amzabelow-ar.glif</string>\n    <key>lam_alefHamzabelow-ar.fina</key>\n    <string>lam_alefH_amzabelow-ar.fina.glif</string>\n    <key>lam_alefMadda-ar</key>\n    <string>lam_alefM_adda-ar.glif</string>\n    <key>lam_alefMadda-ar.fina</key>\n    <string>lam_alefM_adda-ar.fina.glif</string>\n    <key>lam_alefWasla-ar</key>\n    <string>lam_alefW_asla-ar.glif</string>\n    <key>lam_alefWasla-ar.fina</key>\n    <string>lam_alefW_asla-ar.fina.glif</string>\n    <key>lam_lam_heh-ar</key>\n    <string>lam_lam_heh-ar.glif</string>\n    <key>lambda</key>\n    <string>lambda.glif</string>\n    <key>lambdastroke</key>\n    <string>lambdastroke.glif</string>\n    <key>lamed-hb</key>\n    <string>lamed-hb.glif</string>\n    <key>lameddagesh-hb</key>\n    <string>lameddagesh-hb.glif</string>\n    <key>largeCircle</key>\n    <string>largeC_ircle.glif</string>\n    <key>lari</key>\n    <string>lari.glif</string>\n    <key>lbar</key>\n    <string>lbar.glif</string>\n    <key>lbelt</key>\n    <string>lbelt.glif</string>\n    <key>lcaron</key>\n    <string>lcaron.glif</string>\n    <key>lcommaaccent</key>\n    <string>lcommaaccent.glif</string>\n    <key>ldot</key>\n    <string>ldot.glif</string>\n    <key>ldotbelow</key>\n    <string>ldotbelow.glif</string>\n    <key>leftArrow</key>\n    <string>leftA_rrow.glif</string>\n    <key>leftBlackPointer</key>\n    <string>leftB_lackP_ointer.glif</string>\n    <key>leftBlackSmallTriangle</key>\n    <string>leftB_lackS_mallT_riangle.glif</string>\n    <key>leftBlackTriangle</key>\n    <string>leftB_lackT_riangle.glif</string>\n    <key>leftBlock</key>\n    <string>leftB_lock.glif</string>\n    <key>leftBlock.stypo</key>\n    <string>leftB_lock.stypo.glif</string>\n    <key>leftFiveEighthsBlock</key>\n    <string>leftF_iveE_ighthsB_lock.glif</string>\n    <key>leftFiveEighthsBlock.stypo</key>\n    <string>leftF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>leftHalfBlackCircle</key>\n    <string>leftH_alfB_lackC_ircle.glif</string>\n    <key>leftHalfBlackDiamond</key>\n    <string>leftH_alfB_lackD_iamond.glif</string>\n    <key>leftHalfBlackSquare</key>\n    <string>leftH_alfB_lackS_quare.glif</string>\n    <key>leftHalfBlackWhiteCircle</key>\n    <string>leftH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>leftOneEighthBlock</key>\n    <string>leftO_neE_ighthB_lock.glif</string>\n    <key>leftOneEighthBlock.stypo</key>\n    <string>leftO_neE_ighthB_lock.stypo.glif</string>\n    <key>leftOneQuarterBlock</key>\n    <string>leftO_neQ_uarterB_lock.glif</string>\n    <key>leftOneQuarterBlock.stypo</key>\n    <string>leftO_neQ_uarterB_lock.stypo.glif</string>\n    <key>leftRightArrow</key>\n    <string>leftR_ightA_rrow.glif</string>\n    <key>leftSevenEighthsBlock</key>\n    <string>leftS_evenE_ighthsB_lock.glif</string>\n    <key>leftSevenEighthsBlock.stypo</key>\n    <string>leftS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>leftThreeEighthsBlock</key>\n    <string>leftT_hreeE_ighthsB_lock.glif</string>\n    <key>leftThreeEighthsBlock.stypo</key>\n    <string>leftT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>leftThreeQuartersBlock</key>\n    <string>leftT_hreeQ_uartersB_lock.glif</string>\n    <key>leftThreeQuartersBlock.stypo</key>\n    <string>leftT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>leftWhitePointer</key>\n    <string>leftW_hiteP_ointer.glif</string>\n    <key>leftWhiteSmallTriangle</key>\n    <string>leftW_hiteS_mallT_riangle.glif</string>\n    <key>leftWhiteTriangle</key>\n    <string>leftW_hiteT_riangle.glif</string>\n    <key>less</key>\n    <string>less.glif</string>\n    <key>less.alt</key>\n    <string>less.alt.glif</string>\n    <key>less.center</key>\n    <string>less.center.glif</string>\n    <key>less_asciitilde.liga</key>\n    <string>less_asciitilde.liga.glif</string>\n    <key>less_asciitilde_asciitilde.liga</key>\n    <string>less_asciitilde_asciitilde.liga.glif</string>\n    <key>less_asciitilde_greater.liga</key>\n    <string>less_asciitilde_greater.liga.glif</string>\n    <key>less_asterisk.liga</key>\n    <string>less_asterisk.liga.glif</string>\n    <key>less_asterisk_greater.liga</key>\n    <string>less_asterisk_greater.liga.glif</string>\n    <key>less_bar.liga</key>\n    <string>less_bar.liga.glif</string>\n    <key>less_bar_bar.liga</key>\n    <string>less_bar_bar.liga.glif</string>\n    <key>less_bar_bar_bar.liga</key>\n    <string>less_bar_bar_bar.liga.glif</string>\n    <key>less_bar_greater.liga</key>\n    <string>less_bar_greater.liga.glif</string>\n    <key>less_dollar.liga</key>\n    <string>less_dollar.liga.glif</string>\n    <key>less_dollar.liga.BRACKET.600</key>\n    <string>less_dollar.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>less_dollar_greater.liga</key>\n    <string>less_dollar_greater.liga.glif</string>\n    <key>less_dollar_greater.liga.BRACKET.600</key>\n    <string>less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>less_equal.liga</key>\n    <string>less_equal.liga.glif</string>\n    <key>less_equal_end.seq</key>\n    <string>less_equal_end.seq.glif</string>\n    <key>less_equal_middle.seq</key>\n    <string>less_equal_middle.seq.glif</string>\n    <key>less_equal_start.seq</key>\n    <string>less_equal_start.seq.glif</string>\n    <key>less_exclam_hyphen_hyphen.liga</key>\n    <string>less_exclam_hyphen_hyphen.liga.glif</string>\n    <key>less_greater.liga</key>\n    <string>less_greater.liga.glif</string>\n    <key>less_hyphen_end.seq</key>\n    <string>less_hyphen_end.seq.glif</string>\n    <key>less_hyphen_middle.seq</key>\n    <string>less_hyphen_middle.seq.glif</string>\n    <key>less_hyphen_start.seq</key>\n    <string>less_hyphen_start.seq.glif</string>\n    <key>less_less.liga</key>\n    <string>less_less.liga.glif</string>\n    <key>less_less_equal.liga</key>\n    <string>less_less_equal.liga.glif</string>\n    <key>less_less_equal_end.seq</key>\n    <string>less_less_equal_end.seq.glif</string>\n    <key>less_less_equal_middle.seq</key>\n    <string>less_less_equal_middle.seq.glif</string>\n    <key>less_less_equal_start.seq</key>\n    <string>less_less_equal_start.seq.glif</string>\n    <key>less_less_hyphen_end.seq</key>\n    <string>less_less_hyphen_end.seq.glif</string>\n    <key>less_less_hyphen_middle.seq</key>\n    <string>less_less_hyphen_middle.seq.glif</string>\n    <key>less_less_hyphen_start.seq</key>\n    <string>less_less_hyphen_start.seq.glif</string>\n    <key>less_less_less.liga</key>\n    <string>less_less_less.liga.glif</string>\n    <key>less_plus.liga</key>\n    <string>less_plus.liga.glif</string>\n    <key>less_plus_greater.liga</key>\n    <string>less_plus_greater.liga.glif</string>\n    <key>less_slash.liga</key>\n    <string>less_slash.liga.glif</string>\n    <key>less_slash_greater.liga</key>\n    <string>less_slash_greater.liga.glif</string>\n    <key>lessequal</key>\n    <string>lessequal.glif</string>\n    <key>lineFeedControl</key>\n    <string>lineF_eedC_ontrol.glif</string>\n    <key>lineFeedControl.ss20</key>\n    <string>lineF_eedC_ontrol.ss20.glif</string>\n    <key>lineseparator</key>\n    <string>lineseparator.glif</string>\n    <key>lira</key>\n    <string>lira.glif</string>\n    <key>liraTurkish</key>\n    <string>liraT_urkish.glif</string>\n    <key>literSign</key>\n    <string>literS_ign.glif</string>\n    <key>lje-cy</key>\n    <string>lje-cy.glif</string>\n    <key>llinebelow</key>\n    <string>llinebelow.glif</string>\n    <key>lmiddletilde</key>\n    <string>lmiddletilde.glif</string>\n    <key>logicalnot</key>\n    <string>logicalnot.glif</string>\n    <key>logicalnotReversed</key>\n    <string>logicalnotR_eversed.glif</string>\n    <key>longs</key>\n    <string>longs.glif</string>\n    <key>lowerFiveEighthsBlock</key>\n    <string>lowerF_iveE_ighthsB_lock.glif</string>\n    <key>lowerFiveEighthsBlock.stypo</key>\n    <string>lowerF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>lowerHalfArc</key>\n    <string>lowerH_alfA_rc.glif</string>\n    <key>lowerHalfBlackWhiteCircle</key>\n    <string>lowerH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>lowerHalfBlock</key>\n    <string>lowerH_alfB_lock.glif</string>\n    <key>lowerHalfBlock.stypo</key>\n    <string>lowerH_alfB_lock.stypo.glif</string>\n    <key>lowerHalfInverseWhiteCircle</key>\n    <string>lowerH_alfI_nverseW_hiteC_ircle.glif</string>\n    <key>lowerHalfWhiteSquare</key>\n    <string>lowerH_alfW_hiteS_quare.glif</string>\n    <key>lowerLeftArc</key>\n    <string>lowerL_eftA_rc.glif</string>\n    <key>lowerLeftBlackTriangle</key>\n    <string>lowerL_eftB_lackT_riangle.glif</string>\n    <key>lowerLeftBlock</key>\n    <string>lowerL_eftB_lock.glif</string>\n    <key>lowerLeftBlock.stypo</key>\n    <string>lowerL_eftB_lock.stypo.glif</string>\n    <key>lowerLeftHalfWhiteSquare</key>\n    <string>lowerL_eftH_alfW_hiteS_quare.glif</string>\n    <key>lowerLeftQuadrantWhiteCircle</key>\n    <string>lowerL_eftQ_uadrantW_hiteC_ircle.glif</string>\n    <key>lowerLeftTriangle</key>\n    <string>lowerL_eftT_riangle.glif</string>\n    <key>lowerOneEighthBlock</key>\n    <string>lowerO_neE_ighthB_lock.glif</string>\n    <key>lowerOneEighthBlock.stypo</key>\n    <string>lowerO_neE_ighthB_lock.stypo.glif</string>\n    <key>lowerOneQuarterBlock</key>\n    <string>lowerO_neQ_uarterB_lock.glif</string>\n    <key>lowerOneQuarterBlock.stypo</key>\n    <string>lowerO_neQ_uarterB_lock.stypo.glif</string>\n    <key>lowerRightArc</key>\n    <string>lowerR_ightA_rc.glif</string>\n    <key>lowerRightBlackTriangle</key>\n    <string>lowerR_ightB_lackT_riangle.glif</string>\n    <key>lowerRightBlock</key>\n    <string>lowerR_ightB_lock.glif</string>\n    <key>lowerRightBlock.stypo</key>\n    <string>lowerR_ightB_lock.stypo.glif</string>\n    <key>lowerRightDiagonalHalfBlackSquare</key>\n    <string>lowerR_ightD_iagonalH_alfB_lackS_quare.glif</string>\n    <key>lowerRightQuadrantWhiteCircle</key>\n    <string>lowerR_ightQ_uadrantW_hiteC_ircle.glif</string>\n    <key>lowerRightTriangle</key>\n    <string>lowerR_ightT_riangle.glif</string>\n    <key>lowerSevenEighthsBlock</key>\n    <string>lowerS_evenE_ighthsB_lock.glif</string>\n    <key>lowerSevenEighthsBlock.stypo</key>\n    <string>lowerS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>lowerThreeEighthsBlock</key>\n    <string>lowerT_hreeE_ighthsB_lock.glif</string>\n    <key>lowerThreeEighthsBlock.stypo</key>\n    <string>lowerT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>lowerThreeQuartersBlock</key>\n    <string>lowerT_hreeQ_uartersB_lock.glif</string>\n    <key>lowerThreeQuartersBlock.stypo</key>\n    <string>lowerT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>lowernumeral-greek</key>\n    <string>lowernumeral-greek.glif</string>\n    <key>lowlinecomb</key>\n    <string>lowlinecomb.glif</string>\n    <key>lozenge</key>\n    <string>lozenge.glif</string>\n    <key>lslash</key>\n    <string>lslash.glif</string>\n    <key>m</key>\n    <string>m.glif</string>\n    <key>macron</key>\n    <string>macron.glif</string>\n    <key>macronbelowcomb</key>\n    <string>macronbelowcomb.glif</string>\n    <key>macroncomb</key>\n    <string>macroncomb.glif</string>\n    <key>macroncomb.case</key>\n    <string>macroncomb.case.glif</string>\n    <key>madda-ar</key>\n    <string>madda-ar.glif</string>\n    <key>manat</key>\n    <string>manat.glif</string>\n    <key>maqaf-hb</key>\n    <string>maqaf-hb.glif</string>\n    <key>mars</key>\n    <string>mars.glif</string>\n    <key>mediumBlackSmallSquare</key>\n    <string>mediumB_lackS_mallS_quare.glif</string>\n    <key>mediumBlackSquare</key>\n    <string>mediumB_lackS_quare.glif</string>\n    <key>mediumWhiteSmallSquare</key>\n    <string>mediumW_hiteS_mallS_quare.glif</string>\n    <key>mediumWhiteSquare</key>\n    <string>mediumW_hiteS_quare.glif</string>\n    <key>mediumleftpointinganglebracketornament</key>\n    <string>mediumleftpointinganglebracketornament.glif</string>\n    <key>mediumrightpointinganglebracketornament</key>\n    <string>mediumrightpointinganglebracketornament.glif</string>\n    <key>meem-ar</key>\n    <string>meem-ar.glif</string>\n    <key>meem-ar.fina</key>\n    <string>meem-ar.fina.glif</string>\n    <key>meem-ar.init</key>\n    <string>meem-ar.init.glif</string>\n    <key>meem-ar.medi</key>\n    <string>meem-ar.medi.glif</string>\n    <key>meemDotabove-ar</key>\n    <string>meemD_otabove-ar.glif</string>\n    <key>meemDotabove-ar.fina</key>\n    <string>meemD_otabove-ar.fina.glif</string>\n    <key>meemDotabove-ar.init</key>\n    <string>meemD_otabove-ar.init.glif</string>\n    <key>meemDotabove-ar.medi</key>\n    <string>meemD_otabove-ar.medi.glif</string>\n    <key>meemDotbelow-ar</key>\n    <string>meemD_otbelow-ar.glif</string>\n    <key>meemDotbelow-ar.fina</key>\n    <string>meemD_otbelow-ar.fina.glif</string>\n    <key>meemDotbelow-ar.init</key>\n    <string>meemD_otbelow-ar.init.glif</string>\n    <key>meemDotbelow-ar.medi</key>\n    <string>meemD_otbelow-ar.medi.glif</string>\n    <key>meemStopabove-ar</key>\n    <string>meemS_topabove-ar.glif</string>\n    <key>meemThreedotsabove-ar</key>\n    <string>meemT_hreedotsabove-ar.glif</string>\n    <key>meemThreedotsabove-ar.fina</key>\n    <string>meemT_hreedotsabove-ar.fina.glif</string>\n    <key>meemThreedotsabove-ar.init</key>\n    <string>meemT_hreedotsabove-ar.init.glif</string>\n    <key>meemThreedotsabove-ar.medi</key>\n    <string>meemT_hreedotsabove-ar.medi.glif</string>\n    <key>mem-hb</key>\n    <string>mem-hb.glif</string>\n    <key>memdagesh-hb</key>\n    <string>memdagesh-hb.glif</string>\n    <key>micro</key>\n    <string>micro.glif</string>\n    <key>minus</key>\n    <string>minus.glif</string>\n    <key>minute</key>\n    <string>minute.glif</string>\n    <key>misraComma-ar</key>\n    <string>misraC_omma-ar.glif</string>\n    <key>mu</key>\n    <string>mu.glif</string>\n    <key>multiply</key>\n    <string>multiply.glif</string>\n    <key>n</key>\n    <string>n.glif</string>\n    <key>nacute</key>\n    <string>nacute.glif</string>\n    <key>nacute.loclPLK</key>\n    <string>nacute.loclP_L_K_.glif</string>\n    <key>naira</key>\n    <string>naira.glif</string>\n    <key>napostrophe</key>\n    <string>napostrophe.glif</string>\n    <key>nbspace</key>\n    <string>nbspace.glif</string>\n    <key>ncaron</key>\n    <string>ncaron.glif</string>\n    <key>ncommaaccent</key>\n    <string>ncommaaccent.glif</string>\n    <key>negativeAcknowledgeControl</key>\n    <string>negativeA_cknowledgeC_ontrol.glif</string>\n    <key>negativeAcknowledgeControl.ss20</key>\n    <string>negativeA_cknowledgeC_ontrol.ss20.glif</string>\n    <key>newlineControl</key>\n    <string>newlineC_ontrol.glif</string>\n    <key>ng-ar</key>\n    <string>ng-ar.glif</string>\n    <key>ng-ar.fina</key>\n    <string>ng-ar.fina.glif</string>\n    <key>ng-ar.init</key>\n    <string>ng-ar.init.glif</string>\n    <key>ng-ar.medi</key>\n    <string>ng-ar.medi.glif</string>\n    <key>ngoeh-ar</key>\n    <string>ngoeh-ar.glif</string>\n    <key>ngoeh-ar.fina</key>\n    <string>ngoeh-ar.fina.glif</string>\n    <key>ngoeh-ar.init</key>\n    <string>ngoeh-ar.init.glif</string>\n    <key>ngoeh-ar.medi</key>\n    <string>ngoeh-ar.medi.glif</string>\n    <key>nhookleft</key>\n    <string>nhookleft.glif</string>\n    <key>nine</key>\n    <string>nine.glif</string>\n    <key>nine-ar</key>\n    <string>nine-ar.glif</string>\n    <key>nine-arinferior</key>\n    <string>nine-arinferior.glif</string>\n    <key>nine-arsuperior</key>\n    <string>nine-arsuperior.glif</string>\n    <key>nine-persian</key>\n    <string>nine-persian.glif</string>\n    <key>nine-persianinferior</key>\n    <string>nine-persianinferior.glif</string>\n    <key>nine-persiansuperior</key>\n    <string>nine-persiansuperior.glif</string>\n    <key>nine.dnom</key>\n    <string>nine.dnom.glif</string>\n    <key>nine.numr</key>\n    <string>nine.numr.glif</string>\n    <key>nineinferior</key>\n    <string>nineinferior.glif</string>\n    <key>ninesuperior</key>\n    <string>ninesuperior.glif</string>\n    <key>nje-cy</key>\n    <string>nje-cy.glif</string>\n    <key>nlinebelow</key>\n    <string>nlinebelow.glif</string>\n    <key>nmod</key>\n    <string>nmod.glif</string>\n    <key>nonbreakinghyphen</key>\n    <string>nonbreakinghyphen.glif</string>\n    <key>noon-ar</key>\n    <string>noon-ar.glif</string>\n    <key>noon-ar.fina</key>\n    <string>noon-ar.fina.glif</string>\n    <key>noon-ar.init</key>\n    <string>noon-ar.init.glif</string>\n    <key>noon-ar.init.alt</key>\n    <string>noon-ar.init.alt.glif</string>\n    <key>noon-ar.medi</key>\n    <string>noon-ar.medi.glif</string>\n    <key>noonAfrican-ar</key>\n    <string>noonA_frican-ar.glif</string>\n    <key>noonAfrican-ar.fina</key>\n    <string>noonA_frican-ar.fina.glif</string>\n    <key>noonAfrican-ar.init</key>\n    <string>noonA_frican-ar.init.glif</string>\n    <key>noonAfrican-ar.init.alt</key>\n    <string>noonA_frican-ar.init.alt.glif</string>\n    <key>noonAfrican-ar.medi</key>\n    <string>noonA_frican-ar.medi.glif</string>\n    <key>noonDotbelow-ar</key>\n    <string>noonD_otbelow-ar.glif</string>\n    <key>noonDotbelow-ar.fina</key>\n    <string>noonD_otbelow-ar.fina.glif</string>\n    <key>noonDotbelow-ar.init</key>\n    <string>noonD_otbelow-ar.init.glif</string>\n    <key>noonDotbelow-ar.init.alt</key>\n    <string>noonD_otbelow-ar.init.alt.glif</string>\n    <key>noonDotbelow-ar.medi</key>\n    <string>noonD_otbelow-ar.medi.glif</string>\n    <key>noonRing-ar</key>\n    <string>noonR_ing-ar.glif</string>\n    <key>noonRing-ar.fina</key>\n    <string>noonR_ing-ar.fina.glif</string>\n    <key>noonRing-ar.init</key>\n    <string>noonR_ing-ar.init.glif</string>\n    <key>noonRing-ar.init.alt</key>\n    <string>noonR_ing-ar.init.alt.glif</string>\n    <key>noonRing-ar.medi</key>\n    <string>noonR_ing-ar.medi.glif</string>\n    <key>noonTahabove-ar</key>\n    <string>noonT_ahabove-ar.glif</string>\n    <key>noonTahabove-ar.fina</key>\n    <string>noonT_ahabove-ar.fina.glif</string>\n    <key>noonTahabove-ar.init</key>\n    <string>noonT_ahabove-ar.init.glif</string>\n    <key>noonTahabove-ar.init.alt</key>\n    <string>noonT_ahabove-ar.init.alt.glif</string>\n    <key>noonTahabove-ar.medi</key>\n    <string>noonT_ahabove-ar.medi.glif</string>\n    <key>noonThreedotsabove-ar</key>\n    <string>noonT_hreedotsabove-ar.glif</string>\n    <key>noonThreedotsabove-ar.fina</key>\n    <string>noonT_hreedotsabove-ar.fina.glif</string>\n    <key>noonThreedotsabove-ar.init</key>\n    <string>noonT_hreedotsabove-ar.init.glif</string>\n    <key>noonThreedotsabove-ar.init.alt</key>\n    <string>noonT_hreedotsabove-ar.init.alt.glif</string>\n    <key>noonThreedotsabove-ar.medi</key>\n    <string>noonT_hreedotsabove-ar.medi.glif</string>\n    <key>noonTwodotsbelow-ar</key>\n    <string>noonT_wodotsbelow-ar.glif</string>\n    <key>noonTwodotsbelow-ar.fina</key>\n    <string>noonT_wodotsbelow-ar.fina.glif</string>\n    <key>noonTwodotsbelow-ar.init</key>\n    <string>noonT_wodotsbelow-ar.init.glif</string>\n    <key>noonTwodotsbelow-ar.init.alt</key>\n    <string>noonT_wodotsbelow-ar.init.alt.glif</string>\n    <key>noonTwodotsbelow-ar.medi</key>\n    <string>noonT_wodotsbelow-ar.medi.glif</string>\n    <key>noonVabove-ar</key>\n    <string>noonV_above-ar.glif</string>\n    <key>noonVabove-ar.fina</key>\n    <string>noonV_above-ar.fina.glif</string>\n    <key>noonVabove-ar.init</key>\n    <string>noonV_above-ar.init.glif</string>\n    <key>noonVabove-ar.init.alt</key>\n    <string>noonV_above-ar.init.alt.glif</string>\n    <key>noonVabove-ar.medi</key>\n    <string>noonV_above-ar.medi.glif</string>\n    <key>noonabove-ar</key>\n    <string>noonabove-ar.glif</string>\n    <key>noonghunna-ar</key>\n    <string>noonghunna-ar.glif</string>\n    <key>noonghunna-ar.fina</key>\n    <string>noonghunna-ar.fina.glif</string>\n    <key>noonghunna-ar.init</key>\n    <string>noonghunna-ar.init.glif</string>\n    <key>noonghunna-ar.init.alt</key>\n    <string>noonghunna-ar.init.alt.glif</string>\n    <key>noonghunna-ar.medi</key>\n    <string>noonghunna-ar.medi.glif</string>\n    <key>noonghunnaabove-ar</key>\n    <string>noonghunnaabove-ar.glif</string>\n    <key>note-musical</key>\n    <string>note-musical.glif</string>\n    <key>notedbl-musical</key>\n    <string>notedbl-musical.glif</string>\n    <key>notequal</key>\n    <string>notequal.glif</string>\n    <key>notidentical</key>\n    <string>notidentical.glif</string>\n    <key>ntilde</key>\n    <string>ntilde.glif</string>\n    <key>nu</key>\n    <string>nu.glif</string>\n    <key>nullControl</key>\n    <string>nullC_ontrol.glif</string>\n    <key>number-ar</key>\n    <string>number-ar.glif</string>\n    <key>numbermark-ar</key>\n    <string>numbermark-ar.glif</string>\n    <key>numbersign</key>\n    <string>numbersign.glif</string>\n    <key>numbersign_braceleft.liga</key>\n    <string>numbersign_braceleft.liga.glif</string>\n    <key>numbersign_bracketleft.liga</key>\n    <string>numbersign_bracketleft.liga.glif</string>\n    <key>numbersign_colon.liga</key>\n    <string>numbersign_colon.liga.glif</string>\n    <key>numbersign_end.seq</key>\n    <string>numbersign_end.seq.glif</string>\n    <key>numbersign_equal.liga</key>\n    <string>numbersign_equal.liga.glif</string>\n    <key>numbersign_exclam.liga</key>\n    <string>numbersign_exclam.liga.glif</string>\n    <key>numbersign_middle.seq</key>\n    <string>numbersign_middle.seq.glif</string>\n    <key>numbersign_parenleft.liga</key>\n    <string>numbersign_parenleft.liga.glif</string>\n    <key>numbersign_question.liga</key>\n    <string>numbersign_question.liga.glif</string>\n    <key>numbersign_start.seq</key>\n    <string>numbersign_start.seq.glif</string>\n    <key>numbersign_underscore.liga</key>\n    <string>numbersign_underscore.liga.glif</string>\n    <key>numbersign_underscore_parenleft.liga</key>\n    <string>numbersign_underscore_parenleft.liga.glif</string>\n    <key>numeral-greek</key>\n    <string>numeral-greek.glif</string>\n    <key>numero</key>\n    <string>numero.glif</string>\n    <key>nun-hb</key>\n    <string>nun-hb.glif</string>\n    <key>nundagesh-hb</key>\n    <string>nundagesh-hb.glif</string>\n    <key>nyeh-ar</key>\n    <string>nyeh-ar.glif</string>\n    <key>nyeh-ar.fina</key>\n    <string>nyeh-ar.fina.glif</string>\n    <key>nyeh-ar.init</key>\n    <string>nyeh-ar.init.glif</string>\n    <key>nyeh-ar.medi</key>\n    <string>nyeh-ar.medi.glif</string>\n    <key>o</key>\n    <string>o.glif</string>\n    <key>o-cy</key>\n    <string>o-cy.glif</string>\n    <key>oacute</key>\n    <string>oacute.glif</string>\n    <key>oacute.loclPLK</key>\n    <string>oacute.loclP_L_K_.glif</string>\n    <key>obarred-cy</key>\n    <string>obarred-cy.glif</string>\n    <key>obreve</key>\n    <string>obreve.glif</string>\n    <key>ocircumflex</key>\n    <string>ocircumflex.glif</string>\n    <key>ocircumflexacute</key>\n    <string>ocircumflexacute.glif</string>\n    <key>ocircumflexdotbelow</key>\n    <string>ocircumflexdotbelow.glif</string>\n    <key>ocircumflexgrave</key>\n    <string>ocircumflexgrave.glif</string>\n    <key>ocircumflexhookabove</key>\n    <string>ocircumflexhookabove.glif</string>\n    <key>ocircumflextilde</key>\n    <string>ocircumflextilde.glif</string>\n    <key>odieresis</key>\n    <string>odieresis.glif</string>\n    <key>odotbelow</key>\n    <string>odotbelow.glif</string>\n    <key>oe</key>\n    <string>oe.glif</string>\n    <key>oe-ar</key>\n    <string>oe-ar.glif</string>\n    <key>oe-ar.fina</key>\n    <string>oe-ar.fina.glif</string>\n    <key>ogonek</key>\n    <string>ogonek.glif</string>\n    <key>ogonekcomb</key>\n    <string>ogonekcomb.glif</string>\n    <key>ograve</key>\n    <string>ograve.glif</string>\n    <key>ohookabove</key>\n    <string>ohookabove.glif</string>\n    <key>ohorn</key>\n    <string>ohorn.glif</string>\n    <key>ohornacute</key>\n    <string>ohornacute.glif</string>\n    <key>ohorndotbelow</key>\n    <string>ohorndotbelow.glif</string>\n    <key>ohorngrave</key>\n    <string>ohorngrave.glif</string>\n    <key>ohornhookabove</key>\n    <string>ohornhookabove.glif</string>\n    <key>ohorntilde</key>\n    <string>ohorntilde.glif</string>\n    <key>ohungarumlaut</key>\n    <string>ohungarumlaut.glif</string>\n    <key>omacron</key>\n    <string>omacron.glif</string>\n    <key>omacronacute</key>\n    <string>omacronacute.glif</string>\n    <key>omacrongrave</key>\n    <string>omacrongrave.glif</string>\n    <key>omega</key>\n    <string>omega.glif</string>\n    <key>omegatonos</key>\n    <string>omegatonos.glif</string>\n    <key>omicron</key>\n    <string>omicron.glif</string>\n    <key>omicrontonos</key>\n    <string>omicrontonos.glif</string>\n    <key>one</key>\n    <string>one.glif</string>\n    <key>one-ar</key>\n    <string>one-ar.glif</string>\n    <key>one-arinferior</key>\n    <string>one-arinferior.glif</string>\n    <key>one-arsuperior</key>\n    <string>one-arsuperior.glif</string>\n    <key>one-persian</key>\n    <string>one-persian.glif</string>\n    <key>one-persianinferior</key>\n    <string>one-persianinferior.glif</string>\n    <key>one-persiansuperior</key>\n    <string>one-persiansuperior.glif</string>\n    <key>one.dnom</key>\n    <string>one.dnom.glif</string>\n    <key>one.half</key>\n    <string>one.half.glif</string>\n    <key>one.numr</key>\n    <string>one.numr.glif</string>\n    <key>onedotenleader</key>\n    <string>onedotenleader.glif</string>\n    <key>oneeighth</key>\n    <string>oneeighth.glif</string>\n    <key>oneeighth.BRACKET.500</key>\n    <string>oneeighth.B_R_A_C_K_E_T_.500.glif</string>\n    <key>onehalf</key>\n    <string>onehalf.glif</string>\n    <key>onehalf.BRACKET.500</key>\n    <string>onehalf.B_R_A_C_K_E_T_.500.glif</string>\n    <key>oneinferior</key>\n    <string>oneinferior.glif</string>\n    <key>onequarter</key>\n    <string>onequarter.glif</string>\n    <key>onequarter.BRACKET.500</key>\n    <string>onequarter.B_R_A_C_K_E_T_.500.glif</string>\n    <key>onesuperior</key>\n    <string>onesuperior.glif</string>\n    <key>oogonek</key>\n    <string>oogonek.glif</string>\n    <key>oopen</key>\n    <string>oopen.glif</string>\n    <key>ordfeminine</key>\n    <string>ordfeminine.glif</string>\n    <key>ordmasculine</key>\n    <string>ordmasculine.glif</string>\n    <key>orthogonal</key>\n    <string>orthogonal.glif</string>\n    <key>oslash</key>\n    <string>oslash.glif</string>\n    <key>oslashacute</key>\n    <string>oslashacute.glif</string>\n    <key>otilde</key>\n    <string>otilde.glif</string>\n    <key>overline</key>\n    <string>overline.glif</string>\n    <key>p</key>\n    <string>p.glif</string>\n    <key>pagenumber-ar</key>\n    <string>pagenumber-ar.glif</string>\n    <key>palochka-cy</key>\n    <string>palochka-cy.glif</string>\n    <key>paragraph</key>\n    <string>paragraph.glif</string>\n    <key>parenleft</key>\n    <string>parenleft.glif</string>\n    <key>parenleft-ar</key>\n    <string>parenleft-ar.glif</string>\n    <key>parenleft_asterisk.liga</key>\n    <string>parenleft_asterisk.liga.glif</string>\n    <key>parenright</key>\n    <string>parenright.glif</string>\n    <key>parenright-ar</key>\n    <string>parenright-ar.glif</string>\n    <key>partialdiff</key>\n    <string>partialdiff.glif</string>\n    <key>paseq-hb</key>\n    <string>paseq-hb.glif</string>\n    <key>patah-hb</key>\n    <string>patah-hb.glif</string>\n    <key>pe-cy</key>\n    <string>pe-cy.glif</string>\n    <key>pe-cy.loclBGR</key>\n    <string>pe-cy.loclB_G_R_.glif</string>\n    <key>pe-hb</key>\n    <string>pe-hb.glif</string>\n    <key>pedagesh-hb</key>\n    <string>pedagesh-hb.glif</string>\n    <key>pedagesh-hb.BRACKET.600</key>\n    <string>pedagesh-hb.B_R_A_C_K_E_T_.600.glif</string>\n    <key>peh-ar</key>\n    <string>peh-ar.glif</string>\n    <key>peh-ar.alt</key>\n    <string>peh-ar.alt.glif</string>\n    <key>peh-ar.fina</key>\n    <string>peh-ar.fina.glif</string>\n    <key>peh-ar.fina.alt</key>\n    <string>peh-ar.fina.alt.glif</string>\n    <key>peh-ar.init</key>\n    <string>peh-ar.init.glif</string>\n    <key>peh-ar.init.alt</key>\n    <string>peh-ar.init.alt.glif</string>\n    <key>peh-ar.medi</key>\n    <string>peh-ar.medi.glif</string>\n    <key>pehMeemabove-ar</key>\n    <string>pehM_eemabove-ar.glif</string>\n    <key>pehMeemabove-ar.alt</key>\n    <string>pehM_eemabove-ar.alt.glif</string>\n    <key>pehMeemabove-ar.fina</key>\n    <string>pehM_eemabove-ar.fina.glif</string>\n    <key>pehMeemabove-ar.fina.alt</key>\n    <string>pehM_eemabove-ar.fina.alt.glif</string>\n    <key>pehMeemabove-ar.init</key>\n    <string>pehM_eemabove-ar.init.glif</string>\n    <key>pehMeemabove-ar.init.alt</key>\n    <string>pehM_eemabove-ar.init.alt.glif</string>\n    <key>pehMeemabove-ar.medi</key>\n    <string>pehM_eemabove-ar.medi.glif</string>\n    <key>peheh-ar</key>\n    <string>peheh-ar.glif</string>\n    <key>peheh-ar.alt</key>\n    <string>peheh-ar.alt.glif</string>\n    <key>peheh-ar.fina</key>\n    <string>peheh-ar.fina.glif</string>\n    <key>peheh-ar.fina.alt</key>\n    <string>peheh-ar.fina.alt.glif</string>\n    <key>peheh-ar.init</key>\n    <string>peheh-ar.init.glif</string>\n    <key>peheh-ar.init.alt</key>\n    <string>peheh-ar.init.alt.glif</string>\n    <key>peheh-ar.medi</key>\n    <string>peheh-ar.medi.glif</string>\n    <key>percent</key>\n    <string>percent.glif</string>\n    <key>percent-ar</key>\n    <string>percent-ar.glif</string>\n    <key>percent_percent.liga</key>\n    <string>percent_percent.liga.glif</string>\n    <key>period</key>\n    <string>period.glif</string>\n    <key>period_equal.liga</key>\n    <string>period_equal.liga.glif</string>\n    <key>period_hyphen.liga</key>\n    <string>period_hyphen.liga.glif</string>\n    <key>period_period.liga</key>\n    <string>period_period.liga.glif</string>\n    <key>period_period_equal.liga</key>\n    <string>period_period_equal.liga.glif</string>\n    <key>period_period_less.liga</key>\n    <string>period_period_less.liga.glif</string>\n    <key>period_period_period.liga</key>\n    <string>period_period_period.liga.glif</string>\n    <key>period_question.liga</key>\n    <string>period_question.liga.glif</string>\n    <key>periodcentered</key>\n    <string>periodcentered.glif</string>\n    <key>perispomenicomb</key>\n    <string>perispomenicomb.glif</string>\n    <key>perthousand</key>\n    <string>perthousand.glif</string>\n    <key>perthousand-ar</key>\n    <string>perthousand-ar.glif</string>\n    <key>peseta</key>\n    <string>peseta.glif</string>\n    <key>peso</key>\n    <string>peso.glif</string>\n    <key>phi</key>\n    <string>phi.glif</string>\n    <key>pi</key>\n    <string>pi.glif</string>\n    <key>plus</key>\n    <string>plus.glif</string>\n    <key>plus_greater.liga</key>\n    <string>plus_greater.liga.glif</string>\n    <key>plus_plus.liga</key>\n    <string>plus_plus.liga.glif</string>\n    <key>plus_plus_plus.liga</key>\n    <string>plus_plus_plus.liga.glif</string>\n    <key>plusminus</key>\n    <string>plusminus.glif</string>\n    <key>prescription</key>\n    <string>prescription.glif</string>\n    <key>product</key>\n    <string>product.glif</string>\n    <key>psi</key>\n    <string>psi.glif</string>\n    <key>published</key>\n    <string>published.glif</string>\n    <key>punctuationspace</key>\n    <string>punctuationspace.glif</string>\n    <key>q</key>\n    <string>q.glif</string>\n    <key>qaf-ar</key>\n    <string>qaf-ar.glif</string>\n    <key>qaf-ar.fina</key>\n    <string>qaf-ar.fina.glif</string>\n    <key>qaf-ar.init</key>\n    <string>qaf-ar.init.glif</string>\n    <key>qaf-ar.init.alt</key>\n    <string>qaf-ar.init.alt.glif</string>\n    <key>qaf-ar.medi</key>\n    <string>qaf-ar.medi.glif</string>\n    <key>qafAfrican-ar</key>\n    <string>qafA_frican-ar.glif</string>\n    <key>qafAfrican-ar.fina</key>\n    <string>qafA_frican-ar.fina.glif</string>\n    <key>qafAfrican-ar.init</key>\n    <string>qafA_frican-ar.init.glif</string>\n    <key>qafAfrican-ar.init.alt</key>\n    <string>qafA_frican-ar.init.alt.glif</string>\n    <key>qafAfrican-ar.medi</key>\n    <string>qafA_frican-ar.medi.glif</string>\n    <key>qafDotabove-ar</key>\n    <string>qafD_otabove-ar.glif</string>\n    <key>qafDotabove-ar.fina</key>\n    <string>qafD_otabove-ar.fina.glif</string>\n    <key>qafDotabove-ar.init</key>\n    <string>qafD_otabove-ar.init.glif</string>\n    <key>qafDotabove-ar.init.alt</key>\n    <string>qafD_otabove-ar.init.alt.glif</string>\n    <key>qafDotabove-ar.medi</key>\n    <string>qafD_otabove-ar.medi.glif</string>\n    <key>qafDotbelow-ar</key>\n    <string>qafD_otbelow-ar.glif</string>\n    <key>qafDotbelow-ar.fina</key>\n    <string>qafD_otbelow-ar.fina.glif</string>\n    <key>qafDotbelow-ar.init</key>\n    <string>qafD_otbelow-ar.init.glif</string>\n    <key>qafDotbelow-ar.medi</key>\n    <string>qafD_otbelow-ar.medi.glif</string>\n    <key>qafDotless-ar</key>\n    <string>qafD_otless-ar.glif</string>\n    <key>qafDotless-ar.fina</key>\n    <string>qafD_otless-ar.fina.glif</string>\n    <key>qafDotless-ar.init</key>\n    <string>qafD_otless-ar.init.glif</string>\n    <key>qafDotless-ar.init.alt</key>\n    <string>qafD_otless-ar.init.alt.glif</string>\n    <key>qafDotless-ar.medi</key>\n    <string>qafD_otless-ar.medi.glif</string>\n    <key>qafThreedotsabove-ar</key>\n    <string>qafT_hreedotsabove-ar.glif</string>\n    <key>qafThreedotsabove-ar.fina</key>\n    <string>qafT_hreedotsabove-ar.fina.glif</string>\n    <key>qafThreedotsabove-ar.init</key>\n    <string>qafT_hreedotsabove-ar.init.glif</string>\n    <key>qafThreedotsabove-ar.medi</key>\n    <string>qafT_hreedotsabove-ar.medi.glif</string>\n    <key>qamats-hb</key>\n    <string>qamats-hb.glif</string>\n    <key>qamatsqatan-hb</key>\n    <string>qamatsqatan-hb.glif</string>\n    <key>qof-hb</key>\n    <string>qof-hb.glif</string>\n    <key>qofdagesh-hb</key>\n    <string>qofdagesh-hb.glif</string>\n    <key>question</key>\n    <string>question.glif</string>\n    <key>question-ar</key>\n    <string>question-ar.glif</string>\n    <key>question_colon.liga</key>\n    <string>question_colon.liga.glif</string>\n    <key>question_equal.liga</key>\n    <string>question_equal.liga.glif</string>\n    <key>question_period.liga</key>\n    <string>question_period.liga.glif</string>\n    <key>question_question.liga</key>\n    <string>question_question.liga.glif</string>\n    <key>question_question_equal.liga</key>\n    <string>question_question_equal.liga.glif</string>\n    <key>questiondown</key>\n    <string>questiondown.glif</string>\n    <key>questiongreek</key>\n    <string>questiongreek.glif</string>\n    <key>quotedbl</key>\n    <string>quotedbl.glif</string>\n    <key>quotedblbase</key>\n    <string>quotedblbase.glif</string>\n    <key>quotedblleft</key>\n    <string>quotedblleft.glif</string>\n    <key>quotedblright</key>\n    <string>quotedblright.glif</string>\n    <key>quoteleft</key>\n    <string>quoteleft.glif</string>\n    <key>quotereversed</key>\n    <string>quotereversed.glif</string>\n    <key>quoteright</key>\n    <string>quoteright.glif</string>\n    <key>quotesinglbase</key>\n    <string>quotesinglbase.glif</string>\n    <key>quotesingle</key>\n    <string>quotesingle.glif</string>\n    <key>r</key>\n    <string>r.glif</string>\n    <key>racute</key>\n    <string>racute.glif</string>\n    <key>radical</key>\n    <string>radical.glif</string>\n    <key>ratio</key>\n    <string>ratio.glif</string>\n    <key>ray-ar</key>\n    <string>ray-ar.glif</string>\n    <key>rcaron</key>\n    <string>rcaron.glif</string>\n    <key>rcommaaccent</key>\n    <string>rcommaaccent.glif</string>\n    <key>rdotbelow</key>\n    <string>rdotbelow.glif</string>\n    <key>recordSeparatorControl</key>\n    <string>recordS_eparatorC_ontrol.glif</string>\n    <key>registered</key>\n    <string>registered.glif</string>\n    <key>reh-ar</key>\n    <string>reh-ar.glif</string>\n    <key>reh-ar.fina</key>\n    <string>reh-ar.fina.glif</string>\n    <key>rehAlefabove-ar</key>\n    <string>rehA_lefabove-ar.glif</string>\n    <key>rehAlefabove-ar.fina</key>\n    <string>rehA_lefabove-ar.fina.glif</string>\n    <key>rehDotbelow-ar</key>\n    <string>rehD_otbelow-ar.glif</string>\n    <key>rehDotbelow-ar.fina</key>\n    <string>rehD_otbelow-ar.fina.glif</string>\n    <key>rehDotbelowdotabove-ar</key>\n    <string>rehD_otbelowdotabove-ar.glif</string>\n    <key>rehDotbelowdotabove-ar.fina</key>\n    <string>rehD_otbelowdotabove-ar.fina.glif</string>\n    <key>rehFourdots-ar</key>\n    <string>rehF_ourdots-ar.glif</string>\n    <key>rehFourdots-ar.fina</key>\n    <string>rehF_ourdots-ar.fina.glif</string>\n    <key>rehHamzaabove-ar</key>\n    <string>rehH_amzaabove-ar.glif</string>\n    <key>rehHamzaabove-ar.fina</key>\n    <string>rehH_amzaabove-ar.fina.glif</string>\n    <key>rehLoop-ar</key>\n    <string>rehL_oop-ar.glif</string>\n    <key>rehLoop-ar.fina</key>\n    <string>rehL_oop-ar.fina.glif</string>\n    <key>rehRing-ar</key>\n    <string>rehR_ing-ar.glif</string>\n    <key>rehRing-ar.fina</key>\n    <string>rehR_ing-ar.fina.glif</string>\n    <key>rehStroke-ar</key>\n    <string>rehS_troke-ar.glif</string>\n    <key>rehStroke-ar.fina</key>\n    <string>rehS_troke-ar.fina.glif</string>\n    <key>rehTwodots-ar</key>\n    <string>rehT_wodots-ar.glif</string>\n    <key>rehTwodots-ar.fina</key>\n    <string>rehT_wodots-ar.fina.glif</string>\n    <key>rehTwodotshorizontalaboveTahabove-ar</key>\n    <string>rehT_wodotshorizontalaboveT_ahabove-ar.glif</string>\n    <key>rehTwodotshorizontalaboveTahabove-ar.fina</key>\n    <string>rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif</string>\n    <key>rehTwodotsverticalabove-ar</key>\n    <string>rehT_wodotsverticalabove-ar.glif</string>\n    <key>rehTwodotsverticalabove-ar.fina</key>\n    <string>rehT_wodotsverticalabove-ar.fina.glif</string>\n    <key>rehVbelow-ar</key>\n    <string>rehV_below-ar.glif</string>\n    <key>rehVbelow-ar.fina</key>\n    <string>rehV_below-ar.fina.glif</string>\n    <key>rehVinvertedabove-ar</key>\n    <string>rehV_invertedabove-ar.glif</string>\n    <key>rehVinvertedabove-ar.fina</key>\n    <string>rehV_invertedabove-ar.fina.glif</string>\n    <key>rehv-ar</key>\n    <string>rehv-ar.glif</string>\n    <key>rehv-ar.fina</key>\n    <string>rehv-ar.fina.glif</string>\n    <key>replacementCharacter</key>\n    <string>replacementC_haracter.glif</string>\n    <key>resh-hb</key>\n    <string>resh-hb.glif</string>\n    <key>reshdagesh-hb</key>\n    <string>reshdagesh-hb.glif</string>\n    <key>returnsymbol</key>\n    <string>returnsymbol.glif</string>\n    <key>reversedRotatedFloralHeartBullet</key>\n    <string>reversedR_otatedF_loralH_eartB_ullet.glif</string>\n    <key>rho</key>\n    <string>rho.glif</string>\n    <key>rightArrow</key>\n    <string>rightA_rrow.glif</string>\n    <key>rightBlackPointer</key>\n    <string>rightB_lackP_ointer.glif</string>\n    <key>rightBlackSmallTriangle</key>\n    <string>rightB_lackS_mallT_riangle.glif</string>\n    <key>rightBlackTriangle</key>\n    <string>rightB_lackT_riangle.glif</string>\n    <key>rightBlock</key>\n    <string>rightB_lock.glif</string>\n    <key>rightBlock.stypo</key>\n    <string>rightB_lock.stypo.glif</string>\n    <key>rightHalfBlackCircle</key>\n    <string>rightH_alfB_lackC_ircle.glif</string>\n    <key>rightHalfBlackDiamond</key>\n    <string>rightH_alfB_lackD_iamond.glif</string>\n    <key>rightHalfBlackSquare</key>\n    <string>rightH_alfB_lackS_quare.glif</string>\n    <key>rightHalfBlackWhiteCircle</key>\n    <string>rightH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>rightOneEighthBlock</key>\n    <string>rightO_neE_ighthB_lock.glif</string>\n    <key>rightOneEighthBlock.stypo</key>\n    <string>rightO_neE_ighthB_lock.stypo.glif</string>\n    <key>rightWhitePointer</key>\n    <string>rightW_hiteP_ointer.glif</string>\n    <key>rightWhiteSmallTriangle</key>\n    <string>rightW_hiteS_mallT_riangle.glif</string>\n    <key>rightWhiteTriangle</key>\n    <string>rightW_hiteT_riangle.glif</string>\n    <key>ring</key>\n    <string>ring.glif</string>\n    <key>ringArabic</key>\n    <string>ringA_rabic.glif</string>\n    <key>ringbelowcomb</key>\n    <string>ringbelowcomb.glif</string>\n    <key>ringcomb</key>\n    <string>ringcomb.glif</string>\n    <key>ringcomb.case</key>\n    <string>ringcomb.case.glif</string>\n    <key>rnoon-ar</key>\n    <string>rnoon-ar.glif</string>\n    <key>rnoon-ar.fina</key>\n    <string>rnoon-ar.fina.glif</string>\n    <key>rnoon-ar.init</key>\n    <string>rnoon-ar.init.glif</string>\n    <key>rnoon-ar.init.alt</key>\n    <string>rnoon-ar.init.alt.glif</string>\n    <key>rnoon-ar.medi</key>\n    <string>rnoon-ar.medi.glif</string>\n    <key>rotatedFloralHeartBullet</key>\n    <string>rotatedF_loralH_eartB_ullet.glif</string>\n    <key>rreh-ar</key>\n    <string>rreh-ar.glif</string>\n    <key>rreh-ar.fina</key>\n    <string>rreh-ar.fina.glif</string>\n    <key>ruble</key>\n    <string>ruble.glif</string>\n    <key>rupee</key>\n    <string>rupee.glif</string>\n    <key>rupeeIndian</key>\n    <string>rupeeI_ndian.glif</string>\n    <key>s</key>\n    <string>s.glif</string>\n    <key>sacute</key>\n    <string>sacute.glif</string>\n    <key>sacute.loclPLK</key>\n    <string>sacute.loclP_L_K_.glif</string>\n    <key>sad-ar</key>\n    <string>sad-ar.glif</string>\n    <key>sad-ar.alt</key>\n    <string>sad-ar.alt.glif</string>\n    <key>sad-ar.fina</key>\n    <string>sad-ar.fina.glif</string>\n    <key>sad-ar.fina.alt</key>\n    <string>sad-ar.fina.alt.glif</string>\n    <key>sad-ar.init</key>\n    <string>sad-ar.init.glif</string>\n    <key>sad-ar.medi</key>\n    <string>sad-ar.medi.glif</string>\n    <key>sadThreedots-ar</key>\n    <string>sadT_hreedots-ar.glif</string>\n    <key>sadThreedots-ar.alt</key>\n    <string>sadT_hreedots-ar.alt.glif</string>\n    <key>sadThreedots-ar.fina</key>\n    <string>sadT_hreedots-ar.fina.glif</string>\n    <key>sadThreedots-ar.fina.alt</key>\n    <string>sadT_hreedots-ar.fina.alt.glif</string>\n    <key>sadThreedots-ar.init</key>\n    <string>sadT_hreedots-ar.init.glif</string>\n    <key>sadThreedots-ar.medi</key>\n    <string>sadT_hreedots-ar.medi.glif</string>\n    <key>sadThreedotsbelow-ar</key>\n    <string>sadT_hreedotsbelow-ar.glif</string>\n    <key>sadThreedotsbelow-ar.alt</key>\n    <string>sadT_hreedotsbelow-ar.alt.glif</string>\n    <key>sadThreedotsbelow-ar.fina</key>\n    <string>sadT_hreedotsbelow-ar.fina.glif</string>\n    <key>sadThreedotsbelow-ar.fina.alt</key>\n    <string>sadT_hreedotsbelow-ar.fina.alt.glif</string>\n    <key>sadThreedotsbelow-ar.init</key>\n    <string>sadT_hreedotsbelow-ar.init.glif</string>\n    <key>sadThreedotsbelow-ar.medi</key>\n    <string>sadT_hreedotsbelow-ar.medi.glif</string>\n    <key>sadTwodotsbelow-ar</key>\n    <string>sadT_wodotsbelow-ar.glif</string>\n    <key>sadTwodotsbelow-ar.alt</key>\n    <string>sadT_wodotsbelow-ar.alt.glif</string>\n    <key>sadTwodotsbelow-ar.fina</key>\n    <string>sadT_wodotsbelow-ar.fina.glif</string>\n    <key>sadTwodotsbelow-ar.fina.alt</key>\n    <string>sadT_wodotsbelow-ar.fina.alt.glif</string>\n    <key>sadTwodotsbelow-ar.init</key>\n    <string>sadT_wodotsbelow-ar.init.glif</string>\n    <key>sadTwodotsbelow-ar.medi</key>\n    <string>sadT_wodotsbelow-ar.medi.glif</string>\n    <key>samekh-hb</key>\n    <string>samekh-hb.glif</string>\n    <key>samekhdagesh-hb</key>\n    <string>samekhdagesh-hb.glif</string>\n    <key>samvat-ar</key>\n    <string>samvat-ar.glif</string>\n    <key>scaron</key>\n    <string>scaron.glif</string>\n    <key>scedilla</key>\n    <string>scedilla.glif</string>\n    <key>schwa</key>\n    <string>schwa.glif</string>\n    <key>schwa-cy</key>\n    <string>schwa-cy.glif</string>\n    <key>scircumflex</key>\n    <string>scircumflex.glif</string>\n    <key>scommaaccent</key>\n    <string>scommaaccent.glif</string>\n    <key>sdotbelow</key>\n    <string>sdotbelow.glif</string>\n    <key>second</key>\n    <string>second.glif</string>\n    <key>section</key>\n    <string>section.glif</string>\n    <key>seen-ar</key>\n    <string>seen-ar.glif</string>\n    <key>seen-ar.alt</key>\n    <string>seen-ar.alt.glif</string>\n    <key>seen-ar.fina</key>\n    <string>seen-ar.fina.glif</string>\n    <key>seen-ar.fina.alt</key>\n    <string>seen-ar.fina.alt.glif</string>\n    <key>seen-ar.init</key>\n    <string>seen-ar.init.glif</string>\n    <key>seen-ar.medi</key>\n    <string>seen-ar.medi.glif</string>\n    <key>seenDotbelowDotabove-ar</key>\n    <string>seenD_otbelowD_otabove-ar.glif</string>\n    <key>seenDotbelowDotabove-ar.alt</key>\n    <string>seenD_otbelowD_otabove-ar.alt.glif</string>\n    <key>seenDotbelowDotabove-ar.fina</key>\n    <string>seenD_otbelowD_otabove-ar.fina.glif</string>\n    <key>seenDotbelowDotabove-ar.fina.alt</key>\n    <string>seenD_otbelowD_otabove-ar.fina.alt.glif</string>\n    <key>seenDotbelowDotabove-ar.init</key>\n    <string>seenD_otbelowD_otabove-ar.init.glif</string>\n    <key>seenDotbelowDotabove-ar.medi</key>\n    <string>seenD_otbelowD_otabove-ar.medi.glif</string>\n    <key>seenFourabove-ar</key>\n    <string>seenF_ourabove-ar.glif</string>\n    <key>seenFourabove-ar.alt</key>\n    <string>seenF_ourabove-ar.alt.glif</string>\n    <key>seenFourabove-ar.fina</key>\n    <string>seenF_ourabove-ar.fina.glif</string>\n    <key>seenFourabove-ar.fina.alt</key>\n    <string>seenF_ourabove-ar.fina.alt.glif</string>\n    <key>seenFourabove-ar.init</key>\n    <string>seenF_ourabove-ar.init.glif</string>\n    <key>seenFourabove-ar.medi</key>\n    <string>seenF_ourabove-ar.medi.glif</string>\n    <key>seenFourdotsabove-ar</key>\n    <string>seenF_ourdotsabove-ar.glif</string>\n    <key>seenFourdotsabove-ar.alt</key>\n    <string>seenF_ourdotsabove-ar.alt.glif</string>\n    <key>seenFourdotsabove-ar.fina</key>\n    <string>seenF_ourdotsabove-ar.fina.glif</string>\n    <key>seenFourdotsabove-ar.fina.alt</key>\n    <string>seenF_ourdotsabove-ar.fina.alt.glif</string>\n    <key>seenFourdotsabove-ar.init</key>\n    <string>seenF_ourdotsabove-ar.init.glif</string>\n    <key>seenFourdotsabove-ar.medi</key>\n    <string>seenF_ourdotsabove-ar.medi.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.alt</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.alt.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.fina</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.fina.alt</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.init</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.init.glif</string>\n    <key>seenTahTwodotshorizontalabove-ar.medi</key>\n    <string>seenT_ahT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>seenThreedotsbelow-ar</key>\n    <string>seenT_hreedotsbelow-ar.glif</string>\n    <key>seenThreedotsbelow-ar.alt</key>\n    <string>seenT_hreedotsbelow-ar.alt.glif</string>\n    <key>seenThreedotsbelow-ar.fina</key>\n    <string>seenT_hreedotsbelow-ar.fina.glif</string>\n    <key>seenThreedotsbelow-ar.fina.alt</key>\n    <string>seenT_hreedotsbelow-ar.fina.alt.glif</string>\n    <key>seenThreedotsbelow-ar.init</key>\n    <string>seenT_hreedotsbelow-ar.init.glif</string>\n    <key>seenThreedotsbelow-ar.medi</key>\n    <string>seenT_hreedotsbelow-ar.medi.glif</string>\n    <key>seenThreedotsbelowthreedots-ar</key>\n    <string>seenT_hreedotsbelowthreedots-ar.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.alt</key>\n    <string>seenT_hreedotsbelowthreedots-ar.alt.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.fina</key>\n    <string>seenT_hreedotsbelowthreedots-ar.fina.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.fina.alt</key>\n    <string>seenT_hreedotsbelowthreedots-ar.fina.alt.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.init</key>\n    <string>seenT_hreedotsbelowthreedots-ar.init.glif</string>\n    <key>seenThreedotsbelowthreedots-ar.medi</key>\n    <string>seenT_hreedotsbelowthreedots-ar.medi.glif</string>\n    <key>seenTwodotshorizontalabove-ar</key>\n    <string>seenT_wodotshorizontalabove-ar.glif</string>\n    <key>seenTwodotshorizontalabove-ar.fina</key>\n    <string>seenT_wodotshorizontalabove-ar.fina.glif</string>\n    <key>seenTwodotshorizontalabove-ar.init</key>\n    <string>seenT_wodotshorizontalabove-ar.init.glif</string>\n    <key>seenTwodotshorizontalabove-ar.medi</key>\n    <string>seenT_wodotshorizontalabove-ar.medi.glif</string>\n    <key>seenTwodotsverticalabove-ar.alt</key>\n    <string>seenT_wodotsverticalabove-ar.alt.glif</string>\n    <key>seenTwodotsverticalabove-ar.fina.alt</key>\n    <string>seenT_wodotsverticalabove-ar.fina.alt.glif</string>\n    <key>seenVinvertedabove-ar</key>\n    <string>seenV_invertedabove-ar.glif</string>\n    <key>seenVinvertedabove-ar.alt</key>\n    <string>seenV_invertedabove-ar.alt.glif</string>\n    <key>seenVinvertedabove-ar.fina</key>\n    <string>seenV_invertedabove-ar.fina.glif</string>\n    <key>seenVinvertedabove-ar.fina.alt</key>\n    <string>seenV_invertedabove-ar.fina.alt.glif</string>\n    <key>seenVinvertedabove-ar.init</key>\n    <string>seenV_invertedabove-ar.init.glif</string>\n    <key>seenVinvertedabove-ar.medi</key>\n    <string>seenV_invertedabove-ar.medi.glif</string>\n    <key>semicolon</key>\n    <string>semicolon.glif</string>\n    <key>semicolon-ar</key>\n    <string>semicolon-ar.glif</string>\n    <key>semicolon_semicolon.liga</key>\n    <string>semicolon_semicolon.liga.glif</string>\n    <key>seven</key>\n    <string>seven.glif</string>\n    <key>seven-ar</key>\n    <string>seven-ar.glif</string>\n    <key>seven-arinferior</key>\n    <string>seven-arinferior.glif</string>\n    <key>seven-arsuperior</key>\n    <string>seven-arsuperior.glif</string>\n    <key>seven-persian</key>\n    <string>seven-persian.glif</string>\n    <key>seven-persian.urdu</key>\n    <string>seven-persian.urdu.glif</string>\n    <key>seven-persian.urduinferior</key>\n    <string>seven-persian.urduinferior.glif</string>\n    <key>seven-persian.urdusuperior</key>\n    <string>seven-persian.urdusuperior.glif</string>\n    <key>seven-persianinferior</key>\n    <string>seven-persianinferior.glif</string>\n    <key>seven-persiansuperior</key>\n    <string>seven-persiansuperior.glif</string>\n    <key>seven.dnom</key>\n    <string>seven.dnom.glif</string>\n    <key>seven.numr</key>\n    <string>seven.numr.glif</string>\n    <key>seveneighths</key>\n    <string>seveneighths.glif</string>\n    <key>seveneighths.BRACKET.500</key>\n    <string>seveneighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>seveninferior</key>\n    <string>seveninferior.glif</string>\n    <key>sevensuperior</key>\n    <string>sevensuperior.glif</string>\n    <key>sha-cy</key>\n    <string>sha-cy.glif</string>\n    <key>sha-cy.loclBGR</key>\n    <string>sha-cy.loclB_G_R_.glif</string>\n    <key>shadda-ar</key>\n    <string>shadda-ar.glif</string>\n    <key>shadedark</key>\n    <string>shadedark.glif</string>\n    <key>shadedark.stypo</key>\n    <string>shadedark.stypo.glif</string>\n    <key>shadelight</key>\n    <string>shadelight.glif</string>\n    <key>shadelight.stypo</key>\n    <string>shadelight.stypo.glif</string>\n    <key>shademedium</key>\n    <string>shademedium.glif</string>\n    <key>shademedium.stypo</key>\n    <string>shademedium.stypo.glif</string>\n    <key>shcha-cy</key>\n    <string>shcha-cy.glif</string>\n    <key>shcha-cy.loclBGR</key>\n    <string>shcha-cy.loclB_G_R_.glif</string>\n    <key>sheen-ar</key>\n    <string>sheen-ar.glif</string>\n    <key>sheen-ar.alt</key>\n    <string>sheen-ar.alt.glif</string>\n    <key>sheen-ar.fina</key>\n    <string>sheen-ar.fina.glif</string>\n    <key>sheen-ar.fina.alt</key>\n    <string>sheen-ar.fina.alt.glif</string>\n    <key>sheen-ar.init</key>\n    <string>sheen-ar.init.glif</string>\n    <key>sheen-ar.medi</key>\n    <string>sheen-ar.medi.glif</string>\n    <key>sheenDotbelow-ar</key>\n    <string>sheenD_otbelow-ar.glif</string>\n    <key>sheenDotbelow-ar.alt</key>\n    <string>sheenD_otbelow-ar.alt.glif</string>\n    <key>sheenDotbelow-ar.fina</key>\n    <string>sheenD_otbelow-ar.fina.glif</string>\n    <key>sheenDotbelow-ar.fina.alt</key>\n    <string>sheenD_otbelow-ar.fina.alt.glif</string>\n    <key>sheenDotbelow-ar.init</key>\n    <string>sheenD_otbelow-ar.init.glif</string>\n    <key>sheenDotbelow-ar.medi</key>\n    <string>sheenD_otbelow-ar.medi.glif</string>\n    <key>sheqel</key>\n    <string>sheqel.glif</string>\n    <key>shha-cy</key>\n    <string>shha-cy.glif</string>\n    <key>shiftInControl</key>\n    <string>shiftI_nC_ontrol.glif</string>\n    <key>shiftInControl.ss20</key>\n    <string>shiftI_nC_ontrol.ss20.glif</string>\n    <key>shiftOutControl</key>\n    <string>shiftO_utC_ontrol.glif</string>\n    <key>shiftOutControl.ss20</key>\n    <string>shiftO_utC_ontrol.ss20.glif</string>\n    <key>shin-hb</key>\n    <string>shin-hb.glif</string>\n    <key>shindagesh-hb</key>\n    <string>shindagesh-hb.glif</string>\n    <key>shindageshshindot-hb</key>\n    <string>shindageshshindot-hb.glif</string>\n    <key>shindageshsindot-hb</key>\n    <string>shindageshsindot-hb.glif</string>\n    <key>shindot-hb</key>\n    <string>shindot-hb.glif</string>\n    <key>shinshindot-hb</key>\n    <string>shinshindot-hb.glif</string>\n    <key>shinsindot-hb</key>\n    <string>shinsindot-hb.glif</string>\n    <key>sigma</key>\n    <string>sigma.glif</string>\n    <key>sigmafinal</key>\n    <string>sigmafinal.glif</string>\n    <key>sindhiampersand-ar</key>\n    <string>sindhiampersand-ar.glif</string>\n    <key>sindhipostpositionmen-ar</key>\n    <string>sindhipostpositionmen-ar.glif</string>\n    <key>sindot-hb</key>\n    <string>sindot-hb.glif</string>\n    <key>six</key>\n    <string>six.glif</string>\n    <key>six-ar</key>\n    <string>six-ar.glif</string>\n    <key>six-arinferior</key>\n    <string>six-arinferior.glif</string>\n    <key>six-arsuperior</key>\n    <string>six-arsuperior.glif</string>\n    <key>six-persian</key>\n    <string>six-persian.glif</string>\n    <key>six-persianinferior</key>\n    <string>six-persianinferior.glif</string>\n    <key>six-persiansuperior</key>\n    <string>six-persiansuperior.glif</string>\n    <key>six.dnom</key>\n    <string>six.dnom.glif</string>\n    <key>six.numr</key>\n    <string>six.numr.glif</string>\n    <key>sixinferior</key>\n    <string>sixinferior.glif</string>\n    <key>sixsuperior</key>\n    <string>sixsuperior.glif</string>\n    <key>slash</key>\n    <string>slash.glif</string>\n    <key>slash_asterisk.liga</key>\n    <string>slash_asterisk.liga.glif</string>\n    <key>slash_backslash.liga</key>\n    <string>slash_backslash.liga.glif</string>\n    <key>slash_equal_end.seq</key>\n    <string>slash_equal_end.seq.glif</string>\n    <key>slash_equal_middle.seq</key>\n    <string>slash_equal_middle.seq.glif</string>\n    <key>slash_equal_start.seq</key>\n    <string>slash_equal_start.seq.glif</string>\n    <key>slash_greater.liga</key>\n    <string>slash_greater.liga.glif</string>\n    <key>slash_slash.liga</key>\n    <string>slash_slash.liga.glif</string>\n    <key>slash_slash_equal_end.seq</key>\n    <string>slash_slash_equal_end.seq.glif</string>\n    <key>slash_slash_equal_middle.seq</key>\n    <string>slash_slash_equal_middle.seq.glif</string>\n    <key>slash_slash_equal_start.seq</key>\n    <string>slash_slash_equal_start.seq.glif</string>\n    <key>slash_slash_slash.liga</key>\n    <string>slash_slash_slash.liga.glif</string>\n    <key>softhyphen</key>\n    <string>softhyphen.glif</string>\n    <key>softsign-cy</key>\n    <string>softsign-cy.glif</string>\n    <key>softsign-cy.loclBGR</key>\n    <string>softsign-cy.loclB_G_R_.glif</string>\n    <key>space</key>\n    <string>space.glif</string>\n    <key>spaceControl</key>\n    <string>spaceC_ontrol.glif</string>\n    <key>spadeBlackSuit</key>\n    <string>spadeB_lackS_uit.glif</string>\n    <key>startOfHeadingControl</key>\n    <string>startO_fH_eadingC_ontrol.glif</string>\n    <key>startOfHeadingControl.ss20</key>\n    <string>startO_fH_eadingC_ontrol.ss20.glif</string>\n    <key>startOfTextControl</key>\n    <string>startO_fT_extC_ontrol.glif</string>\n    <key>startOfTextControl.ss20</key>\n    <string>startO_fT_extC_ontrol.ss20.glif</string>\n    <key>sterling</key>\n    <string>sterling.glif</string>\n    <key>strictlyequivalentto</key>\n    <string>strictlyequivalentto.glif</string>\n    <key>substituteControl</key>\n    <string>substituteC_ontrol.glif</string>\n    <key>substituteControl.ss20</key>\n    <string>substituteC_ontrol.ss20.glif</string>\n    <key>substituteFormTwoControl</key>\n    <string>substituteF_ormT_woC_ontrol.glif</string>\n    <key>sukun-ar</key>\n    <string>sukun-ar.glif</string>\n    <key>summation</key>\n    <string>summation.glif</string>\n    <key>sunWithRays</key>\n    <string>sunW_ithR_ays.glif</string>\n    <key>synchronousIdleControl</key>\n    <string>synchronousI_dleC_ontrol.glif</string>\n    <key>synchronousIdleControl.ss20</key>\n    <string>synchronousI_dleC_ontrol.ss20.glif</string>\n    <key>t</key>\n    <string>t.glif</string>\n    <key>tah-ar</key>\n    <string>tah-ar.glif</string>\n    <key>tah-ar.fina</key>\n    <string>tah-ar.fina.glif</string>\n    <key>tah-ar.init</key>\n    <string>tah-ar.init.glif</string>\n    <key>tah-ar.medi</key>\n    <string>tah-ar.medi.glif</string>\n    <key>tahThreedots-ar</key>\n    <string>tahT_hreedots-ar.glif</string>\n    <key>tahThreedots-ar.fina</key>\n    <string>tahT_hreedots-ar.fina.glif</string>\n    <key>tahThreedots-ar.init</key>\n    <string>tahT_hreedots-ar.init.glif</string>\n    <key>tahThreedots-ar.medi</key>\n    <string>tahT_hreedots-ar.medi.glif</string>\n    <key>tahTwodotsabove-ar</key>\n    <string>tahT_wodotsabove-ar.glif</string>\n    <key>tahTwodotsabove-ar.fina</key>\n    <string>tahT_wodotsabove-ar.fina.glif</string>\n    <key>tahTwodotsabove-ar.init</key>\n    <string>tahT_wodotsabove-ar.init.glif</string>\n    <key>tahTwodotsabove-ar.medi</key>\n    <string>tahT_wodotsabove-ar.medi.glif</string>\n    <key>tahbelow-ar</key>\n    <string>tahbelow-ar.glif</string>\n    <key>tahcenter-ar</key>\n    <string>tahcenter-ar.glif</string>\n    <key>tau</key>\n    <string>tau.glif</string>\n    <key>tav-hb</key>\n    <string>tav-hb.glif</string>\n    <key>tavdagesh-hb</key>\n    <string>tavdagesh-hb.glif</string>\n    <key>tbar</key>\n    <string>tbar.glif</string>\n    <key>tcaron</key>\n    <string>tcaron.glif</string>\n    <key>tcedilla</key>\n    <string>tcedilla.glif</string>\n    <key>tcheh-ar</key>\n    <string>tcheh-ar.glif</string>\n    <key>tcheh-ar.fina</key>\n    <string>tcheh-ar.fina.glif</string>\n    <key>tcheh-ar.init</key>\n    <string>tcheh-ar.init.glif</string>\n    <key>tcheh-ar.medi</key>\n    <string>tcheh-ar.medi.glif</string>\n    <key>tchehDotabove-ar</key>\n    <string>tchehD_otabove-ar.glif</string>\n    <key>tchehDotabove-ar.fina</key>\n    <string>tchehD_otabove-ar.fina.glif</string>\n    <key>tchehDotabove-ar.init</key>\n    <string>tchehD_otabove-ar.init.glif</string>\n    <key>tchehDotabove-ar.medi</key>\n    <string>tchehD_otabove-ar.medi.glif</string>\n    <key>tcheheh-ar</key>\n    <string>tcheheh-ar.glif</string>\n    <key>tcheheh-ar.fina</key>\n    <string>tcheheh-ar.fina.glif</string>\n    <key>tcheheh-ar.init</key>\n    <string>tcheheh-ar.init.glif</string>\n    <key>tcheheh-ar.medi</key>\n    <string>tcheheh-ar.medi.glif</string>\n    <key>tcommaaccent</key>\n    <string>tcommaaccent.glif</string>\n    <key>te-cy</key>\n    <string>te-cy.glif</string>\n    <key>te-cy.loclBGR</key>\n    <string>te-cy.loclB_G_R_.glif</string>\n    <key>teh-ar</key>\n    <string>teh-ar.glif</string>\n    <key>teh-ar.alt</key>\n    <string>teh-ar.alt.glif</string>\n    <key>teh-ar.fina</key>\n    <string>teh-ar.fina.glif</string>\n    <key>teh-ar.fina.alt</key>\n    <string>teh-ar.fina.alt.glif</string>\n    <key>teh-ar.init</key>\n    <string>teh-ar.init.glif</string>\n    <key>teh-ar.init.alt</key>\n    <string>teh-ar.init.alt.glif</string>\n    <key>teh-ar.medi</key>\n    <string>teh-ar.medi.glif</string>\n    <key>tehMarbuta-ar</key>\n    <string>tehM_arbuta-ar.glif</string>\n    <key>tehMarbuta-ar.fina</key>\n    <string>tehM_arbuta-ar.fina.glif</string>\n    <key>tehMarbutagoal-ar</key>\n    <string>tehM_arbutagoal-ar.glif</string>\n    <key>tehMarbutagoal-ar.fina</key>\n    <string>tehM_arbutagoal-ar.fina.glif</string>\n    <key>tehRing-ar</key>\n    <string>tehR_ing-ar.glif</string>\n    <key>tehRing-ar.alt</key>\n    <string>tehR_ing-ar.alt.glif</string>\n    <key>tehRing-ar.fina</key>\n    <string>tehR_ing-ar.fina.glif</string>\n    <key>tehRing-ar.fina.alt</key>\n    <string>tehR_ing-ar.fina.alt.glif</string>\n    <key>tehRing-ar.init</key>\n    <string>tehR_ing-ar.init.glif</string>\n    <key>tehRing-ar.init.alt</key>\n    <string>tehR_ing-ar.init.alt.glif</string>\n    <key>tehRing-ar.medi</key>\n    <string>tehR_ing-ar.medi.glif</string>\n    <key>tehTehabove-ar</key>\n    <string>tehT_ehabove-ar.glif</string>\n    <key>tehTehabove-ar.alt</key>\n    <string>tehT_ehabove-ar.alt.glif</string>\n    <key>tehTehabove-ar.fina</key>\n    <string>tehT_ehabove-ar.fina.glif</string>\n    <key>tehTehabove-ar.fina.alt</key>\n    <string>tehT_ehabove-ar.fina.alt.glif</string>\n    <key>tehTehabove-ar.init</key>\n    <string>tehT_ehabove-ar.init.glif</string>\n    <key>tehTehabove-ar.init.alt</key>\n    <string>tehT_ehabove-ar.init.alt.glif</string>\n    <key>tehTehabove-ar.medi</key>\n    <string>tehT_ehabove-ar.medi.glif</string>\n    <key>tehThreedotsdown-ar</key>\n    <string>tehT_hreedotsdown-ar.glif</string>\n    <key>tehThreedotsdown-ar.alt</key>\n    <string>tehT_hreedotsdown-ar.alt.glif</string>\n    <key>tehThreedotsdown-ar.fina</key>\n    <string>tehT_hreedotsdown-ar.fina.glif</string>\n    <key>tehThreedotsdown-ar.fina.alt</key>\n    <string>tehT_hreedotsdown-ar.fina.alt.glif</string>\n    <key>tehThreedotsdown-ar.init</key>\n    <string>tehT_hreedotsdown-ar.init.glif</string>\n    <key>tehThreedotsdown-ar.init.alt</key>\n    <string>tehT_hreedotsdown-ar.init.alt.glif</string>\n    <key>tehThreedotsdown-ar.medi</key>\n    <string>tehT_hreedotsdown-ar.medi.glif</string>\n    <key>tehThreedotsupbelow-ar</key>\n    <string>tehT_hreedotsupbelow-ar.glif</string>\n    <key>tehThreedotsupbelow-ar.alt</key>\n    <string>tehT_hreedotsupbelow-ar.alt.glif</string>\n    <key>tehThreedotsupbelow-ar.fina</key>\n    <string>tehT_hreedotsupbelow-ar.fina.glif</string>\n    <key>tehThreedotsupbelow-ar.fina.alt</key>\n    <string>tehT_hreedotsupbelow-ar.fina.alt.glif</string>\n    <key>tehThreedotsupbelow-ar.init</key>\n    <string>tehT_hreedotsupbelow-ar.init.glif</string>\n    <key>tehThreedotsupbelow-ar.init.alt</key>\n    <string>tehT_hreedotsupbelow-ar.init.alt.glif</string>\n    <key>tehThreedotsupbelow-ar.medi</key>\n    <string>tehT_hreedotsupbelow-ar.medi.glif</string>\n    <key>tehabove-ar.small</key>\n    <string>tehabove-ar.small.glif</string>\n    <key>teheh-ar</key>\n    <string>teheh-ar.glif</string>\n    <key>teheh-ar.alt</key>\n    <string>teheh-ar.alt.glif</string>\n    <key>teheh-ar.fina</key>\n    <string>teheh-ar.fina.glif</string>\n    <key>teheh-ar.fina.alt</key>\n    <string>teheh-ar.fina.alt.glif</string>\n    <key>teheh-ar.init</key>\n    <string>teheh-ar.init.glif</string>\n    <key>teheh-ar.init.alt</key>\n    <string>teheh-ar.init.alt.glif</string>\n    <key>teheh-ar.medi</key>\n    <string>teheh-ar.medi.glif</string>\n    <key>tenge</key>\n    <string>tenge.glif</string>\n    <key>tesh</key>\n    <string>tesh.glif</string>\n    <key>tet-hb</key>\n    <string>tet-hb.glif</string>\n    <key>tetdagesh-hb</key>\n    <string>tetdagesh-hb.glif</string>\n    <key>thal-ar</key>\n    <string>thal-ar.glif</string>\n    <key>thal-ar.fina</key>\n    <string>thal-ar.fina.glif</string>\n    <key>thalAlefabove-ar</key>\n    <string>thalA_lefabove-ar.glif</string>\n    <key>thalAlefabove-ar.fina</key>\n    <string>thalA_lefabove-ar.fina.glif</string>\n    <key>theh-ar</key>\n    <string>theh-ar.glif</string>\n    <key>theh-ar.alt</key>\n    <string>theh-ar.alt.glif</string>\n    <key>theh-ar.fina</key>\n    <string>theh-ar.fina.glif</string>\n    <key>theh-ar.fina.alt</key>\n    <string>theh-ar.fina.alt.glif</string>\n    <key>theh-ar.init</key>\n    <string>theh-ar.init.glif</string>\n    <key>theh-ar.init.alt</key>\n    <string>theh-ar.init.alt.glif</string>\n    <key>theh-ar.medi</key>\n    <string>theh-ar.medi.glif</string>\n    <key>theta</key>\n    <string>theta.glif</string>\n    <key>thetamod</key>\n    <string>thetamod.glif</string>\n    <key>thorn</key>\n    <string>thorn.glif</string>\n    <key>thousandseparator-ar</key>\n    <string>thousandseparator-ar.glif</string>\n    <key>three</key>\n    <string>three.glif</string>\n    <key>three-ar</key>\n    <string>three-ar.glif</string>\n    <key>three-arinferior</key>\n    <string>three-arinferior.glif</string>\n    <key>three-arsuperior</key>\n    <string>three-arsuperior.glif</string>\n    <key>three-persian</key>\n    <string>three-persian.glif</string>\n    <key>three-persian.small01</key>\n    <string>three-persian.small01.glif</string>\n    <key>three-persianinferior</key>\n    <string>three-persianinferior.glif</string>\n    <key>three-persiansuperior</key>\n    <string>three-persiansuperior.glif</string>\n    <key>three.dnom</key>\n    <string>three.dnom.glif</string>\n    <key>three.half</key>\n    <string>three.half.glif</string>\n    <key>three.numr</key>\n    <string>three.numr.glif</string>\n    <key>threedots-ar</key>\n    <string>threedots-ar.glif</string>\n    <key>threedotsdownabove-ar</key>\n    <string>threedotsdownabove-ar.glif</string>\n    <key>threedotsdownbelow-ar</key>\n    <string>threedotsdownbelow-ar.glif</string>\n    <key>threedotsdowncenter-ar</key>\n    <string>threedotsdowncenter-ar.glif</string>\n    <key>threedotsupabove-ar</key>\n    <string>threedotsupabove-ar.glif</string>\n    <key>threedotsupabove-ar.v2</key>\n    <string>threedotsupabove-ar.v2.glif</string>\n    <key>threedotsupbelow-ar</key>\n    <string>threedotsupbelow-ar.glif</string>\n    <key>threedotsupcenter-ar</key>\n    <string>threedotsupcenter-ar.glif</string>\n    <key>threeeighths</key>\n    <string>threeeighths.glif</string>\n    <key>threeeighths.BRACKET.500</key>\n    <string>threeeighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>threeinferior</key>\n    <string>threeinferior.glif</string>\n    <key>threequarters</key>\n    <string>threequarters.glif</string>\n    <key>threequarters.BRACKET.500</key>\n    <string>threequarters.B_R_A_C_K_E_T_.500.glif</string>\n    <key>threesuperior</key>\n    <string>threesuperior.glif</string>\n    <key>tilde</key>\n    <string>tilde.glif</string>\n    <key>tildecomb</key>\n    <string>tildecomb.glif</string>\n    <key>tildecomb.case</key>\n    <string>tildecomb.case.glif</string>\n    <key>tonos</key>\n    <string>tonos.glif</string>\n    <key>tonos.case</key>\n    <string>tonos.case.glif</string>\n    <key>topHalfBlackCircle</key>\n    <string>topH_alfB_lackC_ircle.glif</string>\n    <key>topHalfBlackDiamond</key>\n    <string>topH_alfB_lackD_iamond.glif</string>\n    <key>topHalfWhiteSquare</key>\n    <string>topH_alfW_hiteS_quare.glif</string>\n    <key>topRightHalfWhiteSquare</key>\n    <string>topR_ightH_alfW_hiteS_quare.glif</string>\n    <key>trademark</key>\n    <string>trademark.glif</string>\n    <key>tsadi-hb</key>\n    <string>tsadi-hb.glif</string>\n    <key>tsadidagesh-hb</key>\n    <string>tsadidagesh-hb.glif</string>\n    <key>tse-cy</key>\n    <string>tse-cy.glif</string>\n    <key>tse-cy.loclBGR</key>\n    <string>tse-cy.loclB_G_R_.glif</string>\n    <key>tshe-cy</key>\n    <string>tshe-cy.glif</string>\n    <key>tteh-ar</key>\n    <string>tteh-ar.glif</string>\n    <key>tteh-ar.alt</key>\n    <string>tteh-ar.alt.glif</string>\n    <key>tteh-ar.fina</key>\n    <string>tteh-ar.fina.glif</string>\n    <key>tteh-ar.fina.alt</key>\n    <string>tteh-ar.fina.alt.glif</string>\n    <key>tteh-ar.init</key>\n    <string>tteh-ar.init.glif</string>\n    <key>tteh-ar.init.alt</key>\n    <string>tteh-ar.init.alt.glif</string>\n    <key>tteh-ar.medi</key>\n    <string>tteh-ar.medi.glif</string>\n    <key>tteheh-ar</key>\n    <string>tteheh-ar.glif</string>\n    <key>tteheh-ar.alt</key>\n    <string>tteheh-ar.alt.glif</string>\n    <key>tteheh-ar.fina</key>\n    <string>tteheh-ar.fina.glif</string>\n    <key>tteheh-ar.fina.alt</key>\n    <string>tteheh-ar.fina.alt.glif</string>\n    <key>tteheh-ar.init</key>\n    <string>tteheh-ar.init.glif</string>\n    <key>tteheh-ar.init.alt</key>\n    <string>tteheh-ar.init.alt.glif</string>\n    <key>tteheh-ar.medi</key>\n    <string>tteheh-ar.medi.glif</string>\n    <key>tugrik</key>\n    <string>tugrik.glif</string>\n    <key>two</key>\n    <string>two.glif</string>\n    <key>two-ar</key>\n    <string>two-ar.glif</string>\n    <key>two-arinferior</key>\n    <string>two-arinferior.glif</string>\n    <key>two-arsuperior</key>\n    <string>two-arsuperior.glif</string>\n    <key>two-persian</key>\n    <string>two-persian.glif</string>\n    <key>two-persian.small01</key>\n    <string>two-persian.small01.glif</string>\n    <key>two-persianinferior</key>\n    <string>two-persianinferior.glif</string>\n    <key>two-persiansuperior</key>\n    <string>two-persiansuperior.glif</string>\n    <key>two.dnom</key>\n    <string>two.dnom.glif</string>\n    <key>two.half</key>\n    <string>two.half.glif</string>\n    <key>two.numr</key>\n    <string>two.numr.glif</string>\n    <key>twodotshorizontalabove-ar</key>\n    <string>twodotshorizontalabove-ar.glif</string>\n    <key>twodotshorizontalabove-ar.v2</key>\n    <string>twodotshorizontalabove-ar.v2.glif</string>\n    <key>twodotshorizontalbelow-ar</key>\n    <string>twodotshorizontalbelow-ar.glif</string>\n    <key>twodotshorizontalcenter-ar</key>\n    <string>twodotshorizontalcenter-ar.glif</string>\n    <key>twodotstahbelow-ar</key>\n    <string>twodotstahbelow-ar.glif</string>\n    <key>twodotstahcenter-ar</key>\n    <string>twodotstahcenter-ar.glif</string>\n    <key>twodotsverticalabove-ar</key>\n    <string>twodotsverticalabove-ar.glif</string>\n    <key>twodotsverticalbelow-ar</key>\n    <string>twodotsverticalbelow-ar.glif</string>\n    <key>twodotsverticalcenter-ar</key>\n    <string>twodotsverticalcenter-ar.glif</string>\n    <key>twoinferior</key>\n    <string>twoinferior.glif</string>\n    <key>twosuperior</key>\n    <string>twosuperior.glif</string>\n    <key>u</key>\n    <string>u.glif</string>\n    <key>u-ar</key>\n    <string>u-ar.glif</string>\n    <key>u-ar.fina</key>\n    <string>u-ar.fina.glif</string>\n    <key>u-cy</key>\n    <string>u-cy.glif</string>\n    <key>uHamzaabove-ar</key>\n    <string>uH_amzaabove-ar.glif</string>\n    <key>uHamzaabove-ar.fina</key>\n    <string>uH_amzaabove-ar.fina.glif</string>\n    <key>uacute</key>\n    <string>uacute.glif</string>\n    <key>ubreve</key>\n    <string>ubreve.glif</string>\n    <key>ucircumflex</key>\n    <string>ucircumflex.glif</string>\n    <key>udieresis</key>\n    <string>udieresis.glif</string>\n    <key>udotbelow</key>\n    <string>udotbelow.glif</string>\n    <key>ugrave</key>\n    <string>ugrave.glif</string>\n    <key>uhookabove</key>\n    <string>uhookabove.glif</string>\n    <key>uhorn</key>\n    <string>uhorn.glif</string>\n    <key>uhornacute</key>\n    <string>uhornacute.glif</string>\n    <key>uhorndotbelow</key>\n    <string>uhorndotbelow.glif</string>\n    <key>uhorngrave</key>\n    <string>uhorngrave.glif</string>\n    <key>uhornhookabove</key>\n    <string>uhornhookabove.glif</string>\n    <key>uhorntilde</key>\n    <string>uhorntilde.glif</string>\n    <key>uhungarumlaut</key>\n    <string>uhungarumlaut.glif</string>\n    <key>umacron</key>\n    <string>umacron.glif</string>\n    <key>umacron-cy</key>\n    <string>umacron-cy.glif</string>\n    <key>underscore</key>\n    <string>underscore.glif</string>\n    <key>underscore_end.seq</key>\n    <string>underscore_end.seq.glif</string>\n    <key>underscore_middle.seq</key>\n    <string>underscore_middle.seq.glif</string>\n    <key>underscore_start.seq</key>\n    <string>underscore_start.seq.glif</string>\n    <key>underscore_underscore.liga</key>\n    <string>underscore_underscore.liga.glif</string>\n    <key>underscoredbl</key>\n    <string>underscoredbl.glif</string>\n    <key>uni08B3</key>\n    <string>uni08B_3.glif</string>\n    <key>uni08B3.fina</key>\n    <string>uni08B_3.fina.glif</string>\n    <key>uni08B3.init</key>\n    <string>uni08B_3.init.glif</string>\n    <key>uni08B3.medi</key>\n    <string>uni08B_3.medi.glif</string>\n    <key>uni08B4</key>\n    <string>uni08B_4.glif</string>\n    <key>uni08B4.fina</key>\n    <string>uni08B_4.fina.glif</string>\n    <key>uni08B4.init</key>\n    <string>uni08B_4.init.glif</string>\n    <key>uni08B4.medi</key>\n    <string>uni08B_4.medi.glif</string>\n    <key>uni08B9.fina</key>\n    <string>uni08B_9.fina.glif</string>\n    <key>uniFBC0</key>\n    <string>uniF_B_C_0.glif</string>\n    <key>unitSeparatorControl</key>\n    <string>unitS_eparatorC_ontrol.glif</string>\n    <key>uogonek</key>\n    <string>uogonek.glif</string>\n    <key>upArrow</key>\n    <string>upA_rrow.glif</string>\n    <key>upBlackSmallTriangle</key>\n    <string>upB_lackS_mallT_riangle.glif</string>\n    <key>upBlackTriangle</key>\n    <string>upB_lackT_riangle.glif</string>\n    <key>upDashArrow</key>\n    <string>upD_ashA_rrow.glif</string>\n    <key>upDownArrow</key>\n    <string>upD_ownA_rrow.glif</string>\n    <key>upDownbaseArrow</key>\n    <string>upD_ownbaseA_rrow.glif</string>\n    <key>upLeftHalfBlackTriangle</key>\n    <string>upL_eftH_alfB_lackT_riangle.glif</string>\n    <key>upRightHalfBlackTriangle</key>\n    <string>upR_ightH_alfB_lackT_riangle.glif</string>\n    <key>upWhiteSmallTriangle</key>\n    <string>upW_hiteS_mallT_riangle.glif</string>\n    <key>upWhiteTriangle</key>\n    <string>upW_hiteT_riangle.glif</string>\n    <key>upWhiteTriangleWithDot</key>\n    <string>upW_hiteT_riangleW_ithD_ot.glif</string>\n    <key>upperHalfArc</key>\n    <string>upperH_alfA_rc.glif</string>\n    <key>upperHalfBlackWhiteCircle</key>\n    <string>upperH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>upperHalfBlock</key>\n    <string>upperH_alfB_lock.glif</string>\n    <key>upperHalfBlock.stypo</key>\n    <string>upperH_alfB_lock.stypo.glif</string>\n    <key>upperHalfInverseWhiteCircle</key>\n    <string>upperH_alfI_nverseW_hiteC_ircle.glif</string>\n    <key>upperLeftAndLowerLeftAndLowerRightBlock</key>\n    <string>upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftAndLowerRightBlock</key>\n    <string>upperL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftAndUpperRightAndLowerLeftBlock</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif</string>\n    <key>upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif</string>\n    <key>upperLeftAndUpperRightAndLowerRightBlock</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftArc</key>\n    <string>upperL_eftA_rc.glif</string>\n    <key>upperLeftBlackTriangle</key>\n    <string>upperL_eftB_lackT_riangle.glif</string>\n    <key>upperLeftBlock</key>\n    <string>upperL_eftB_lock.glif</string>\n    <key>upperLeftBlock.stypo</key>\n    <string>upperL_eftB_lock.stypo.glif</string>\n    <key>upperLeftDiagonalHalfBlackSquare</key>\n    <string>upperL_eftD_iagonalH_alfB_lackS_quare.glif</string>\n    <key>upperLeftQuadrantWhiteCircle</key>\n    <string>upperL_eftQ_uadrantW_hiteC_ircle.glif</string>\n    <key>upperLeftTriangle</key>\n    <string>upperL_eftT_riangle.glif</string>\n    <key>upperLeftWhiteCircle</key>\n    <string>upperL_eftW_hiteC_ircle.glif</string>\n    <key>upperOneEighthBlock</key>\n    <string>upperO_neE_ighthB_lock.glif</string>\n    <key>upperOneEighthBlock.stypo</key>\n    <string>upperO_neE_ighthB_lock.stypo.glif</string>\n    <key>upperRightAndLowerLeftAndLowerRightBlock</key>\n    <string>upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n    <string>upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperRightAndLowerLeftBlock</key>\n    <string>upperR_ightA_ndL_owerL_eftB_lock.glif</string>\n    <key>upperRightAndLowerLeftBlock.stypo</key>\n    <string>upperR_ightA_ndL_owerL_eftB_lock.stypo.glif</string>\n    <key>upperRightArc</key>\n    <string>upperR_ightA_rc.glif</string>\n    <key>upperRightBlackCircle</key>\n    <string>upperR_ightB_lackC_ircle.glif</string>\n    <key>upperRightBlackTriangle</key>\n    <string>upperR_ightB_lackT_riangle.glif</string>\n    <key>upperRightBlock</key>\n    <string>upperR_ightB_lock.glif</string>\n    <key>upperRightBlock.stypo</key>\n    <string>upperR_ightB_lock.stypo.glif</string>\n    <key>upperRightQuadrantWhiteCircle</key>\n    <string>upperR_ightQ_uadrantW_hiteC_ircle.glif</string>\n    <key>upperRightTriangle</key>\n    <string>upperR_ightT_riangle.glif</string>\n    <key>upperlefttolowerrightFillSquare</key>\n    <string>upperlefttolowerrightF_illS_quare.glif</string>\n    <key>upperrighttolowerleftFillSquare</key>\n    <string>upperrighttolowerleftF_illS_quare.glif</string>\n    <key>upsilon</key>\n    <string>upsilon.glif</string>\n    <key>upsilon-latin</key>\n    <string>upsilon-latin.glif</string>\n    <key>upsilondieresis</key>\n    <string>upsilondieresis.glif</string>\n    <key>upsilondieresistonos</key>\n    <string>upsilondieresistonos.glif</string>\n    <key>upsilontonos</key>\n    <string>upsilontonos.glif</string>\n    <key>uring</key>\n    <string>uring.glif</string>\n    <key>ushort-cy</key>\n    <string>ushort-cy.glif</string>\n    <key>ustraight-cy</key>\n    <string>ustraight-cy.glif</string>\n    <key>ustraightstroke-cy</key>\n    <string>ustraightstroke-cy.glif</string>\n    <key>utilde</key>\n    <string>utilde.glif</string>\n    <key>v</key>\n    <string>v.glif</string>\n    <key>vabove-ar</key>\n    <string>vabove-ar.glif</string>\n    <key>vav-hb</key>\n    <string>vav-hb.glif</string>\n    <key>vavdagesh-hb</key>\n    <string>vavdagesh-hb.glif</string>\n    <key>vavholam-hb</key>\n    <string>vavholam-hb.glif</string>\n    <key>ve-ar</key>\n    <string>ve-ar.glif</string>\n    <key>ve-ar.fina</key>\n    <string>ve-ar.fina.glif</string>\n    <key>ve-cy</key>\n    <string>ve-cy.glif</string>\n    <key>ve-cy.loclBGR</key>\n    <string>ve-cy.loclB_G_R_.glif</string>\n    <key>vectorOrCrossProduct</key>\n    <string>vectorO_rC_rossP_roduct.glif</string>\n    <key>veh-ar</key>\n    <string>veh-ar.glif</string>\n    <key>veh-ar.alt</key>\n    <string>veh-ar.alt.glif</string>\n    <key>veh-ar.fina</key>\n    <string>veh-ar.fina.glif</string>\n    <key>veh-ar.fina.alt</key>\n    <string>veh-ar.fina.alt.glif</string>\n    <key>veh-ar.init</key>\n    <string>veh-ar.init.glif</string>\n    <key>veh-ar.init.alt</key>\n    <string>veh-ar.init.alt.glif</string>\n    <key>veh-ar.medi</key>\n    <string>veh-ar.medi.glif</string>\n    <key>venus</key>\n    <string>venus.glif</string>\n    <key>verseComma-ar</key>\n    <string>verseC_omma-ar.glif</string>\n    <key>verticalBisectingLineWhiteSquare</key>\n    <string>verticalB_isectingL_ineW_hiteS_quare.glif</string>\n    <key>verticalFillCircle</key>\n    <string>verticalF_illC_ircle.glif</string>\n    <key>verticalFillSquare</key>\n    <string>verticalF_illS_quare.glif</string>\n    <key>verticalTabulationControl</key>\n    <string>verticalT_abulationC_ontrol.glif</string>\n    <key>verticalTabulationControl.ss20</key>\n    <string>verticalT_abulationC_ontrol.ss20.glif</string>\n    <key>vhook</key>\n    <string>vhook.glif</string>\n    <key>vinvertedabove-ar</key>\n    <string>vinvertedabove-ar.glif</string>\n    <key>vturned</key>\n    <string>vturned.glif</string>\n    <key>w</key>\n    <string>w.glif</string>\n    <key>w_w_w.liga</key>\n    <string>w_w_w.liga.glif</string>\n    <key>wacute</key>\n    <string>wacute.glif</string>\n    <key>wasla-ar</key>\n    <string>wasla-ar.glif</string>\n    <key>wavyhamzaabove-ar</key>\n    <string>wavyhamzaabove-ar.glif</string>\n    <key>wavyhamzabelow-ar</key>\n    <string>wavyhamzabelow-ar.glif</string>\n    <key>waw-ar</key>\n    <string>waw-ar.glif</string>\n    <key>waw-ar.fina</key>\n    <string>waw-ar.fina.glif</string>\n    <key>wawDotabove-ar</key>\n    <string>wawD_otabove-ar.glif</string>\n    <key>wawDotabove-ar.fina</key>\n    <string>wawD_otabove-ar.fina.glif</string>\n    <key>wawDotcenter-ar</key>\n    <string>wawD_otcenter-ar.glif</string>\n    <key>wawDotcenter-ar.fina</key>\n    <string>wawD_otcenter-ar.fina.glif</string>\n    <key>wawHamzaabove-ar</key>\n    <string>wawH_amzaabove-ar.glif</string>\n    <key>wawHamzaabove-ar.fina</key>\n    <string>wawH_amzaabove-ar.fina.glif</string>\n    <key>wawStraight-ar</key>\n    <string>wawS_traight-ar.glif</string>\n    <key>wawThreeAbove-ar</key>\n    <string>wawT_hreeA_bove-ar.glif</string>\n    <key>wawThreeAbove-ar.fina</key>\n    <string>wawT_hreeA_bove-ar.fina.glif</string>\n    <key>wawTwoabove-ar</key>\n    <string>wawT_woabove-ar.glif</string>\n    <key>wawTwoabove-ar.fina</key>\n    <string>wawT_woabove-ar.fina.glif</string>\n    <key>wawTwodots-ar</key>\n    <string>wawT_wodots-ar.glif</string>\n    <key>wawTwodots-ar.fina</key>\n    <string>wawT_wodots-ar.fina.glif</string>\n    <key>wawring-ar</key>\n    <string>wawring-ar.glif</string>\n    <key>wawring-ar.fina</key>\n    <string>wawring-ar.fina.glif</string>\n    <key>wcircumflex</key>\n    <string>wcircumflex.glif</string>\n    <key>wdieresis</key>\n    <string>wdieresis.glif</string>\n    <key>wgrave</key>\n    <string>wgrave.glif</string>\n    <key>whiteBullet</key>\n    <string>whiteB_ullet.glif</string>\n    <key>whiteCircle</key>\n    <string>whiteC_ircle.glif</string>\n    <key>whiteDiamond</key>\n    <string>whiteD_iamond.glif</string>\n    <key>whiteHexagon</key>\n    <string>whiteH_exagon.glif</string>\n    <key>whiteHorizontalEllipse</key>\n    <string>whiteH_orizontalE_llipse.glif</string>\n    <key>whiteInBlackSquare</key>\n    <string>whiteI_nB_lackS_quare.glif</string>\n    <key>whiteLargeSquare</key>\n    <string>whiteL_argeS_quare.glif</string>\n    <key>whiteLowerLeftQuadrantSquare</key>\n    <string>whiteL_owerL_eftQ_uadrantS_quare.glif</string>\n    <key>whiteLowerRightQuadrantSquare</key>\n    <string>whiteL_owerR_ightQ_uadrantS_quare.glif</string>\n    <key>whiteMediumDiamond</key>\n    <string>whiteM_ediumD_iamond.glif</string>\n    <key>whiteMediumLozenge</key>\n    <string>whiteM_ediumL_ozenge.glif</string>\n    <key>whiteParallelogram</key>\n    <string>whiteP_arallelogram.glif</string>\n    <key>whitePentagon</key>\n    <string>whiteP_entagon.glif</string>\n    <key>whiteRect</key>\n    <string>whiteR_ect.glif</string>\n    <key>whiteRoundedCornersSquare</key>\n    <string>whiteR_oundedC_ornersS_quare.glif</string>\n    <key>whiteSmallLozenge</key>\n    <string>whiteS_mallL_ozenge.glif</string>\n    <key>whiteSmallSquare</key>\n    <string>whiteS_mallS_quare.glif</string>\n    <key>whiteSmilingFace</key>\n    <string>whiteS_milingF_ace.glif</string>\n    <key>whiteSquare</key>\n    <string>whiteS_quare.glif</string>\n    <key>whiteUpperLeftQuadrantSquare</key>\n    <string>whiteU_pperL_eftQ_uadrantS_quare.glif</string>\n    <key>whiteUpperRightQuadrantSquare</key>\n    <string>whiteU_pperR_ightQ_uadrantS_quare.glif</string>\n    <key>whiteVerticalEllipse</key>\n    <string>whiteV_erticalE_llipse.glif</string>\n    <key>whiteVerticalRect</key>\n    <string>whiteV_erticalR_ect.glif</string>\n    <key>whiteVerysmallSquare</key>\n    <string>whiteV_erysmallS_quare.glif</string>\n    <key>wmod</key>\n    <string>wmod.glif</string>\n    <key>won</key>\n    <string>won.glif</string>\n    <key>x</key>\n    <string>x.glif</string>\n    <key>x.multiply</key>\n    <string>x.multiply.glif</string>\n    <key>xi</key>\n    <string>xi.glif</string>\n    <key>y</key>\n    <string>y.glif</string>\n    <key>yacute</key>\n    <string>yacute.glif</string>\n    <key>ycircumflex</key>\n    <string>ycircumflex.glif</string>\n    <key>ydieresis</key>\n    <string>ydieresis.glif</string>\n    <key>ydotbelow</key>\n    <string>ydotbelow.glif</string>\n    <key>year-ar</key>\n    <string>year-ar.glif</string>\n    <key>yeh-ar</key>\n    <string>yeh-ar.glif</string>\n    <key>yeh-ar.fina</key>\n    <string>yeh-ar.fina.glif</string>\n    <key>yeh-ar.fina.alt</key>\n    <string>yeh-ar.fina.alt.glif</string>\n    <key>yeh-ar.init</key>\n    <string>yeh-ar.init.glif</string>\n    <key>yeh-ar.init.alt</key>\n    <string>yeh-ar.init.alt.glif</string>\n    <key>yeh-ar.medi</key>\n    <string>yeh-ar.medi.glif</string>\n    <key>yeh-farsi</key>\n    <string>yeh-farsi.glif</string>\n    <key>yeh-farsi.fina</key>\n    <string>yeh-farsi.fina.glif</string>\n    <key>yeh-farsi.fina.alt</key>\n    <string>yeh-farsi.fina.alt.glif</string>\n    <key>yeh-farsi.init</key>\n    <string>yeh-farsi.init.glif</string>\n    <key>yeh-farsi.init.alt</key>\n    <string>yeh-farsi.init.alt.glif</string>\n    <key>yeh-farsi.medi</key>\n    <string>yeh-farsi.medi.glif</string>\n    <key>yehFourbelow-farsi</key>\n    <string>yehF_ourbelow-farsi.glif</string>\n    <key>yehFourbelow-farsi.fina</key>\n    <string>yehF_ourbelow-farsi.fina.glif</string>\n    <key>yehFourbelow-farsi.fina.alt</key>\n    <string>yehF_ourbelow-farsi.fina.alt.glif</string>\n    <key>yehFourbelow-farsi.init</key>\n    <string>yehF_ourbelow-farsi.init.glif</string>\n    <key>yehFourbelow-farsi.init.alt</key>\n    <string>yehF_ourbelow-farsi.init.alt.glif</string>\n    <key>yehFourbelow-farsi.medi</key>\n    <string>yehF_ourbelow-farsi.medi.glif</string>\n    <key>yehHamzaabove-ar</key>\n    <string>yehH_amzaabove-ar.glif</string>\n    <key>yehHamzaabove-ar.fina</key>\n    <string>yehH_amzaabove-ar.fina.glif</string>\n    <key>yehHamzaabove-ar.fina.alt</key>\n    <string>yehH_amzaabove-ar.fina.alt.glif</string>\n    <key>yehHamzaabove-ar.init</key>\n    <string>yehH_amzaabove-ar.init.glif</string>\n    <key>yehHamzaabove-ar.init.alt</key>\n    <string>yehH_amzaabove-ar.init.alt.glif</string>\n    <key>yehHamzaabove-ar.medi</key>\n    <string>yehH_amzaabove-ar.medi.glif</string>\n    <key>yehKashmiri-ar</key>\n    <string>yehK_ashmiri-ar.glif</string>\n    <key>yehKashmiri-ar.fina</key>\n    <string>yehK_ashmiri-ar.fina.glif</string>\n    <key>yehKashmiri-ar.fina.alt</key>\n    <string>yehK_ashmiri-ar.fina.alt.glif</string>\n    <key>yehKashmiri-ar.init</key>\n    <string>yehK_ashmiri-ar.init.glif</string>\n    <key>yehKashmiri-ar.init.alt</key>\n    <string>yehK_ashmiri-ar.init.alt.glif</string>\n    <key>yehKashmiri-ar.medi</key>\n    <string>yehK_ashmiri-ar.medi.glif</string>\n    <key>yehRohingya-ar</key>\n    <string>yehR_ohingya-ar.glif</string>\n    <key>yehRohingya-ar.fina</key>\n    <string>yehR_ohingya-ar.fina.glif</string>\n    <key>yehRohingya-ar.isol</key>\n    <string>yehR_ohingya-ar.isol.glif</string>\n    <key>yehTail-ar</key>\n    <string>yehT_ail-ar.glif</string>\n    <key>yehTail-ar.fina</key>\n    <string>yehT_ail-ar.fina.glif</string>\n    <key>yehTail-ar.fina.alt</key>\n    <string>yehT_ail-ar.fina.alt.glif</string>\n    <key>yehThreeabove-farsi</key>\n    <string>yehT_hreeabove-farsi.glif</string>\n    <key>yehThreeabove-farsi.fina</key>\n    <string>yehT_hreeabove-farsi.fina.glif</string>\n    <key>yehThreeabove-farsi.fina.alt</key>\n    <string>yehT_hreeabove-farsi.fina.alt.glif</string>\n    <key>yehThreeabove-farsi.init</key>\n    <string>yehT_hreeabove-farsi.init.glif</string>\n    <key>yehThreeabove-farsi.init.alt</key>\n    <string>yehT_hreeabove-farsi.init.alt.glif</string>\n    <key>yehThreeabove-farsi.medi</key>\n    <string>yehT_hreeabove-farsi.medi.glif</string>\n    <key>yehThreedotsabove-farsi</key>\n    <string>yehT_hreedotsabove-farsi.glif</string>\n    <key>yehThreedotsabove-farsi.fina</key>\n    <string>yehT_hreedotsabove-farsi.fina.glif</string>\n    <key>yehThreedotsabove-farsi.fina.alt</key>\n    <string>yehT_hreedotsabove-farsi.fina.alt.glif</string>\n    <key>yehThreedotsabove-farsi.init</key>\n    <string>yehT_hreedotsabove-farsi.init.glif</string>\n    <key>yehThreedotsabove-farsi.init.alt</key>\n    <string>yehT_hreedotsabove-farsi.init.alt.glif</string>\n    <key>yehThreedotsabove-farsi.medi</key>\n    <string>yehT_hreedotsabove-farsi.medi.glif</string>\n    <key>yehThreedotsbelow-ar</key>\n    <string>yehT_hreedotsbelow-ar.glif</string>\n    <key>yehThreedotsbelow-ar.fina</key>\n    <string>yehT_hreedotsbelow-ar.fina.glif</string>\n    <key>yehThreedotsbelow-ar.fina.alt</key>\n    <string>yehT_hreedotsbelow-ar.fina.alt.glif</string>\n    <key>yehThreedotsbelow-ar.init</key>\n    <string>yehT_hreedotsbelow-ar.init.glif</string>\n    <key>yehThreedotsbelow-ar.init.alt</key>\n    <string>yehT_hreedotsbelow-ar.init.alt.glif</string>\n    <key>yehThreedotsbelow-ar.medi</key>\n    <string>yehT_hreedotsbelow-ar.medi.glif</string>\n    <key>yehTwoabove-farsi</key>\n    <string>yehT_woabove-farsi.glif</string>\n    <key>yehTwoabove-farsi.fina</key>\n    <string>yehT_woabove-farsi.fina.glif</string>\n    <key>yehTwoabove-farsi.fina.alt</key>\n    <string>yehT_woabove-farsi.fina.alt.glif</string>\n    <key>yehTwoabove-farsi.init</key>\n    <string>yehT_woabove-farsi.init.glif</string>\n    <key>yehTwoabove-farsi.init.alt</key>\n    <string>yehT_woabove-farsi.init.alt.glif</string>\n    <key>yehTwoabove-farsi.medi</key>\n    <string>yehT_woabove-farsi.medi.glif</string>\n    <key>yehTwodotsabove-farsi</key>\n    <string>yehT_wodotsabove-farsi.glif</string>\n    <key>yehTwodotsabove-farsi.fina</key>\n    <string>yehT_wodotsabove-farsi.fina.glif</string>\n    <key>yehTwodotsabove-farsi.fina.alt</key>\n    <string>yehT_wodotsabove-farsi.fina.alt.glif</string>\n    <key>yehTwodotsabove-farsi.init</key>\n    <string>yehT_wodotsabove-farsi.init.glif</string>\n    <key>yehTwodotsabove-farsi.init.alt</key>\n    <string>yehT_wodotsabove-farsi.init.alt.glif</string>\n    <key>yehTwodotsabove-farsi.medi</key>\n    <string>yehT_wodotsabove-farsi.medi.glif</string>\n    <key>yehTwodotsbelowDotabove-ar</key>\n    <string>yehT_wodotsbelowD_otabove-ar.glif</string>\n    <key>yehTwodotsbelowDotabove-ar.fina</key>\n    <string>yehT_wodotsbelowD_otabove-ar.fina.glif</string>\n    <key>yehTwodotsbelowDotabove-ar.init</key>\n    <string>yehT_wodotsbelowD_otabove-ar.init.glif</string>\n    <key>yehTwodotsbelowDotabove-ar.init.alt</key>\n    <string>yehT_wodotsbelowD_otabove-ar.init.alt.glif</string>\n    <key>yehTwodotsbelowDotabove-ar.medi</key>\n    <string>yehT_wodotsbelowD_otabove-ar.medi.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar.fina</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.fina.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar.init</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.init.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar.init.alt</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.init.alt.glif</string>\n    <key>yehTwodotsbelowHamzaabove-ar.medi</key>\n    <string>yehT_wodotsbelowH_amzaabove-ar.medi.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.fina</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.fina.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.fina.alt</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.fina.alt.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.init</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.init.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.init.alt</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.init.alt.glif</string>\n    <key>yehTwodotsbelowNoonabove-ar.medi</key>\n    <string>yehT_wodotsbelowN_oonabove-ar.medi.glif</string>\n    <key>yehVabove-ar</key>\n    <string>yehV_above-ar.glif</string>\n    <key>yehVabove-ar.fina</key>\n    <string>yehV_above-ar.fina.glif</string>\n    <key>yehVabove-ar.fina.alt</key>\n    <string>yehV_above-ar.fina.alt.glif</string>\n    <key>yehVabove-ar.init</key>\n    <string>yehV_above-ar.init.glif</string>\n    <key>yehVabove-ar.init.alt</key>\n    <string>yehV_above-ar.init.alt.glif</string>\n    <key>yehVabove-ar.medi</key>\n    <string>yehV_above-ar.medi.glif</string>\n    <key>yehVinverted-farsi</key>\n    <string>yehV_inverted-farsi.glif</string>\n    <key>yehVinverted-farsi.fina</key>\n    <string>yehV_inverted-farsi.fina.glif</string>\n    <key>yehVinverted-farsi.fina.alt</key>\n    <string>yehV_inverted-farsi.fina.alt.glif</string>\n    <key>yehVinverted-farsi.init</key>\n    <string>yehV_inverted-farsi.init.glif</string>\n    <key>yehVinverted-farsi.init.alt</key>\n    <string>yehV_inverted-farsi.init.alt.glif</string>\n    <key>yehVinverted-farsi.medi</key>\n    <string>yehV_inverted-farsi.medi.glif</string>\n    <key>yehbarree-ar</key>\n    <string>yehbarree-ar.glif</string>\n    <key>yehbarree-ar.fina</key>\n    <string>yehbarree-ar.fina.glif</string>\n    <key>yehbarreeHamzaabove-ar</key>\n    <string>yehbarreeH_amzaabove-ar.glif</string>\n    <key>yehbarreeHamzaabove-ar.fina</key>\n    <string>yehbarreeH_amzaabove-ar.fina.glif</string>\n    <key>yehbarreeThreeabove-ar</key>\n    <string>yehbarreeT_hreeabove-ar.glif</string>\n    <key>yehbarreeThreeabove-ar.fina</key>\n    <string>yehbarreeT_hreeabove-ar.fina.glif</string>\n    <key>yehbarreeThreeabove-ar.init</key>\n    <string>yehbarreeT_hreeabove-ar.init.glif</string>\n    <key>yehbarreeThreeabove-ar.init.alt</key>\n    <string>yehbarreeT_hreeabove-ar.init.alt.glif</string>\n    <key>yehbarreeThreeabove-ar.medi</key>\n    <string>yehbarreeT_hreeabove-ar.medi.glif</string>\n    <key>yehbarreeTwoabove-ar</key>\n    <string>yehbarreeT_woabove-ar.glif</string>\n    <key>yehbarreeTwoabove-ar.fina</key>\n    <string>yehbarreeT_woabove-ar.fina.glif</string>\n    <key>yehbarreeTwoabove-ar.init</key>\n    <string>yehbarreeT_woabove-ar.init.glif</string>\n    <key>yehbarreeTwoabove-ar.init.alt</key>\n    <string>yehbarreeT_woabove-ar.init.alt.glif</string>\n    <key>yehbarreeTwoabove-ar.medi</key>\n    <string>yehbarreeT_woabove-ar.medi.glif</string>\n    <key>yen</key>\n    <string>yen.glif</string>\n    <key>yeru-cy</key>\n    <string>yeru-cy.glif</string>\n    <key>ygrave</key>\n    <string>ygrave.glif</string>\n    <key>yhookabove</key>\n    <string>yhookabove.glif</string>\n    <key>yi-cy</key>\n    <string>yi-cy.glif</string>\n    <key>ymacron</key>\n    <string>ymacron.glif</string>\n    <key>ymod</key>\n    <string>ymod.glif</string>\n    <key>yod-hb</key>\n    <string>yod-hb.glif</string>\n    <key>yoddagesh-hb</key>\n    <string>yoddagesh-hb.glif</string>\n    <key>ytilde</key>\n    <string>ytilde.glif</string>\n    <key>yu-ar</key>\n    <string>yu-ar.glif</string>\n    <key>yu-ar.fina</key>\n    <string>yu-ar.fina.glif</string>\n    <key>z</key>\n    <string>z.glif</string>\n    <key>zacute</key>\n    <string>zacute.glif</string>\n    <key>zacute.loclPLK</key>\n    <string>zacute.loclP_L_K_.glif</string>\n    <key>zah-ar</key>\n    <string>zah-ar.glif</string>\n    <key>zah-ar.fina</key>\n    <string>zah-ar.fina.glif</string>\n    <key>zah-ar.init</key>\n    <string>zah-ar.init.glif</string>\n    <key>zah-ar.medi</key>\n    <string>zah-ar.medi.glif</string>\n    <key>zain-ar</key>\n    <string>zain-ar.glif</string>\n    <key>zain-ar.fina</key>\n    <string>zain-ar.fina.glif</string>\n    <key>zainVInvertedabove-ar</key>\n    <string>zainV_I_nvertedabove-ar.glif</string>\n    <key>zainVInvertedabove-ar.fina</key>\n    <string>zainV_I_nvertedabove-ar.fina.glif</string>\n    <key>zayin-hb</key>\n    <string>zayin-hb.glif</string>\n    <key>zayindagesh-hb</key>\n    <string>zayindagesh-hb.glif</string>\n    <key>zcaron</key>\n    <string>zcaron.glif</string>\n    <key>zdotaccent</key>\n    <string>zdotaccent.glif</string>\n    <key>ze-cy</key>\n    <string>ze-cy.glif</string>\n    <key>ze-cy.loclBGR</key>\n    <string>ze-cy.loclB_G_R_.glif</string>\n    <key>zero</key>\n    <string>zero.glif</string>\n    <key>zero-ar</key>\n    <string>zero-ar.glif</string>\n    <key>zero-arinferior</key>\n    <string>zero-arinferior.glif</string>\n    <key>zero-arsuperior</key>\n    <string>zero-arsuperior.glif</string>\n    <key>zero-persian</key>\n    <string>zero-persian.glif</string>\n    <key>zero-persianinferior</key>\n    <string>zero-persianinferior.glif</string>\n    <key>zero-persiansuperior</key>\n    <string>zero-persiansuperior.glif</string>\n    <key>zero.dnom</key>\n    <string>zero.dnom.glif</string>\n    <key>zero.numr</key>\n    <string>zero.numr.glif</string>\n    <key>zero.zero</key>\n    <string>zero.zero.glif</string>\n    <key>zeroinferior</key>\n    <string>zeroinferior.glif</string>\n    <key>zerosuperior</key>\n    <string>zerosuperior.glif</string>\n    <key>zeta</key>\n    <string>zeta.glif</string>\n    <key>zhe-cy</key>\n    <string>zhe-cy.glif</string>\n    <key>zhe-cy.loclBGR</key>\n    <string>zhe-cy.loclB_G_R_.glif</string>\n    <key>zhedescender-cy</key>\n    <string>zhedescender-cy.glif</string>\n    <key>zmod</key>\n    <string>zmod.glif</string>\n    <key>checkerBoardDeleteApple2</key>\n    <string>checkerB_oardD_eleteA_pple2.glif</string>\n    <key>checkerBoardDeleteTrs80</key>\n    <string>checkerB_oardD_eleteT_rs80.glif</string>\n    <key>checkerBoardDeleteAmstradCpc</key>\n    <string>checkerB_oardD_eleteA_mstradC_pc.glif</string>\n    <key>checkerBoardDeleteAmstradCpc.stypo</key>\n    <string>checkerB_oardD_eleteA_mstradC_pc.stypo.glif</string>\n    <key>checkerBoardFill</key>\n    <string>checkerB_oardF_ill.glif</string>\n    <key>checkerBoardFill.stypo</key>\n    <string>checkerB_oardF_ill.stypo.glif</string>\n    <key>checkerBoardFillInverse</key>\n    <string>checkerB_oardF_illI_nverse.glif</string>\n    <key>checkerBoardFillInverse.stypo</key>\n    <string>checkerB_oardF_illI_nverse.stypo.glif</string>\n    <key>blockQuadrant-UC</key>\n    <string>blockQ_uadrant-UC.glif</string>\n    <key>blockQuadrant-UC.stypo</key>\n    <string>blockQ_uadrant-UC.stypo.glif</string>\n    <key>blockQuadrant-LC</key>\n    <string>blockQ_uadrant-LC.glif</string>\n    <key>blockQuadrant-LC.stypo</key>\n    <string>blockQ_uadrant-LC.stypo.glif</string>\n    <key>blockQuadrant-ML</key>\n    <string>blockQ_uadrant-ML.glif</string>\n    <key>blockQuadrant-ML.stypo</key>\n    <string>blockQ_uadrant-ML.stypo.glif</string>\n    <key>blockQuadrant-MR</key>\n    <string>blockQ_uadrant-MR.glif</string>\n    <key>blockQuadrant-MR.stypo</key>\n    <string>blockQ_uadrant-MR.stypo.glif</string>\n    <key>blockTriangle-1</key>\n    <string>blockT_riangle-1.glif</string>\n    <key>blockTriangle-1.stypo</key>\n    <string>blockT_riangle-1.stypo.glif</string>\n    <key>blockTriangle-2</key>\n    <string>blockT_riangle-2.glif</string>\n    <key>blockTriangle-2.stypo</key>\n    <string>blockT_riangle-2.stypo.glif</string>\n    <key>blockTriangle-3</key>\n    <string>blockT_riangle-3.glif</string>\n    <key>blockTriangle-3.stypo</key>\n    <string>blockT_riangle-3.stypo.glif</string>\n    <key>blockTriangle-4</key>\n    <string>blockT_riangle-4.glif</string>\n    <key>blockTriangle-4.stypo</key>\n    <string>blockT_riangle-4.stypo.glif</string>\n    <key>blockTriangle-14</key>\n    <string>blockT_riangle-14.glif</string>\n    <key>blockTriangle-14.stypo</key>\n    <string>blockT_riangle-14.stypo.glif</string>\n    <key>blockTriangle-23</key>\n    <string>blockT_riangle-23.glif</string>\n    <key>blockTriangle-23.stypo</key>\n    <string>blockT_riangle-23.stypo.glif</string>\n    <key>blockTriangle-123</key>\n    <string>blockT_riangle-123.glif</string>\n    <key>blockTriangle-123.stypo</key>\n    <string>blockT_riangle-123.stypo.glif</string>\n    <key>blockTriangle-124</key>\n    <string>blockT_riangle-124.glif</string>\n    <key>blockTriangle-124.stypo</key>\n    <string>blockT_riangle-124.stypo.glif</string>\n    <key>blockTriangle-134</key>\n    <string>blockT_riangle-134.glif</string>\n    <key>blockTriangle-134.stypo</key>\n    <string>blockT_riangle-134.stypo.glif</string>\n    <key>blockTriangle-234</key>\n    <string>blockT_riangle-234.glif</string>\n    <key>blockTriangle-234.stypo</key>\n    <string>blockT_riangle-234.stypo.glif</string>\n    <key>blockCircle-UC</key>\n    <string>blockC_ircle-UC.glif</string>\n    <key>blockCircle-UC.stypo</key>\n    <string>blockC_ircle-UC.stypo.glif</string>\n    <key>blockCircle-LC</key>\n    <string>blockC_ircle-LC.glif</string>\n    <key>blockCircle-LC.stypo</key>\n    <string>blockC_ircle-LC.stypo.glif</string>\n    <key>blockCircle-ML</key>\n    <string>blockC_ircle-ML.glif</string>\n    <key>blockCircle-ML.stypo</key>\n    <string>blockC_ircle-ML.stypo.glif</string>\n    <key>blockCircle-MR</key>\n    <string>blockC_ircle-MR.glif</string>\n    <key>blockCircle-MR.stypo</key>\n    <string>blockC_ircle-MR.stypo.glif</string>\n    <key>blockCircle-1</key>\n    <string>blockC_ircle-1.glif</string>\n    <key>blockCircle-1.stypo</key>\n    <string>blockC_ircle-1.stypo.glif</string>\n    <key>blockCircle-2</key>\n    <string>blockC_ircle-2.glif</string>\n    <key>blockCircle-2.stypo</key>\n    <string>blockC_ircle-2.stypo.glif</string>\n    <key>blockCircle-3</key>\n    <string>blockC_ircle-3.glif</string>\n    <key>blockCircle-3.stypo</key>\n    <string>blockC_ircle-3.stypo.glif</string>\n    <key>blockCircle-4</key>\n    <string>blockC_ircle-4.glif</string>\n    <key>blockCircle-4.stypo</key>\n    <string>blockC_ircle-4.stypo.glif</string>\n    <key>blockSextant-1</key>\n    <string>blockS_extant-1.glif</string>\n    <key>blockSextant-1.stypo</key>\n    <string>blockS_extant-1.stypo.glif</string>\n    <key>blockSextant-2</key>\n    <string>blockS_extant-2.glif</string>\n    <key>blockSextant-2.stypo</key>\n    <string>blockS_extant-2.stypo.glif</string>\n    <key>blockSextant-12</key>\n    <string>blockS_extant-12.glif</string>\n    <key>blockSextant-12.stypo</key>\n    <string>blockS_extant-12.stypo.glif</string>\n    <key>blockSextant-3</key>\n    <string>blockS_extant-3.glif</string>\n    <key>blockSextant-3.stypo</key>\n    <string>blockS_extant-3.stypo.glif</string>\n    <key>blockSextant-13</key>\n    <string>blockS_extant-13.glif</string>\n    <key>blockSextant-13.stypo</key>\n    <string>blockS_extant-13.stypo.glif</string>\n    <key>blockSextant-23</key>\n    <string>blockS_extant-23.glif</string>\n    <key>blockSextant-23.stypo</key>\n    <string>blockS_extant-23.stypo.glif</string>\n    <key>blockSextant-123</key>\n    <string>blockS_extant-123.glif</string>\n    <key>blockSextant-123.stypo</key>\n    <string>blockS_extant-123.stypo.glif</string>\n    <key>blockSextant-4</key>\n    <string>blockS_extant-4.glif</string>\n    <key>blockSextant-4.stypo</key>\n    <string>blockS_extant-4.stypo.glif</string>\n    <key>blockSextant-14</key>\n    <string>blockS_extant-14.glif</string>\n    <key>blockSextant-14.stypo</key>\n    <string>blockS_extant-14.stypo.glif</string>\n    <key>blockSextant-24</key>\n    <string>blockS_extant-24.glif</string>\n    <key>blockSextant-24.stypo</key>\n    <string>blockS_extant-24.stypo.glif</string>\n    <key>blockSextant-124</key>\n    <string>blockS_extant-124.glif</string>\n    <key>blockSextant-124.stypo</key>\n    <string>blockS_extant-124.stypo.glif</string>\n    <key>blockSextant-34</key>\n    <string>blockS_extant-34.glif</string>\n    <key>blockSextant-34.stypo</key>\n    <string>blockS_extant-34.stypo.glif</string>\n    <key>blockSextant-134</key>\n    <string>blockS_extant-134.glif</string>\n    <key>blockSextant-134.stypo</key>\n    <string>blockS_extant-134.stypo.glif</string>\n    <key>blockSextant-234</key>\n    <string>blockS_extant-234.glif</string>\n    <key>blockSextant-234.stypo</key>\n    <string>blockS_extant-234.stypo.glif</string>\n    <key>blockSextant-1234</key>\n    <string>blockS_extant-1234.glif</string>\n    <key>blockSextant-1234.stypo</key>\n    <string>blockS_extant-1234.stypo.glif</string>\n    <key>blockSextant-5</key>\n    <string>blockS_extant-5.glif</string>\n    <key>blockSextant-5.stypo</key>\n    <string>blockS_extant-5.stypo.glif</string>\n    <key>blockSextant-15</key>\n    <string>blockS_extant-15.glif</string>\n    <key>blockSextant-15.stypo</key>\n    <string>blockS_extant-15.stypo.glif</string>\n    <key>blockSextant-25</key>\n    <string>blockS_extant-25.glif</string>\n    <key>blockSextant-25.stypo</key>\n    <string>blockS_extant-25.stypo.glif</string>\n    <key>blockSextant-125</key>\n    <string>blockS_extant-125.glif</string>\n    <key>blockSextant-125.stypo</key>\n    <string>blockS_extant-125.stypo.glif</string>\n    <key>blockSextant-35</key>\n    <string>blockS_extant-35.glif</string>\n    <key>blockSextant-35.stypo</key>\n    <string>blockS_extant-35.stypo.glif</string>\n    <key>blockSextant-235</key>\n    <string>blockS_extant-235.glif</string>\n    <key>blockSextant-235.stypo</key>\n    <string>blockS_extant-235.stypo.glif</string>\n    <key>blockSextant-1235</key>\n    <string>blockS_extant-1235.glif</string>\n    <key>blockSextant-1235.stypo</key>\n    <string>blockS_extant-1235.stypo.glif</string>\n    <key>blockSextant-45</key>\n    <string>blockS_extant-45.glif</string>\n    <key>blockSextant-45.stypo</key>\n    <string>blockS_extant-45.stypo.glif</string>\n    <key>blockSextant-145</key>\n    <string>blockS_extant-145.glif</string>\n    <key>blockSextant-145.stypo</key>\n    <string>blockS_extant-145.stypo.glif</string>\n    <key>blockSextant-245</key>\n    <string>blockS_extant-245.glif</string>\n    <key>blockSextant-245.stypo</key>\n    <string>blockS_extant-245.stypo.glif</string>\n    <key>blockSextant-1245</key>\n    <string>blockS_extant-1245.glif</string>\n    <key>blockSextant-1245.stypo</key>\n    <string>blockS_extant-1245.stypo.glif</string>\n    <key>blockSextant-345</key>\n    <string>blockS_extant-345.glif</string>\n    <key>blockSextant-345.stypo</key>\n    <string>blockS_extant-345.stypo.glif</string>\n    <key>blockSextant-1345</key>\n    <string>blockS_extant-1345.glif</string>\n    <key>blockSextant-1345.stypo</key>\n    <string>blockS_extant-1345.stypo.glif</string>\n    <key>blockSextant-2345</key>\n    <string>blockS_extant-2345.glif</string>\n    <key>blockSextant-2345.stypo</key>\n    <string>blockS_extant-2345.stypo.glif</string>\n    <key>blockSextant-12345</key>\n    <string>blockS_extant-12345.glif</string>\n    <key>blockSextant-12345.stypo</key>\n    <string>blockS_extant-12345.stypo.glif</string>\n    <key>blockSextant-6</key>\n    <string>blockS_extant-6.glif</string>\n    <key>blockSextant-6.stypo</key>\n    <string>blockS_extant-6.stypo.glif</string>\n    <key>blockSextant-16</key>\n    <string>blockS_extant-16.glif</string>\n    <key>blockSextant-16.stypo</key>\n    <string>blockS_extant-16.stypo.glif</string>\n    <key>blockSextant-26</key>\n    <string>blockS_extant-26.glif</string>\n    <key>blockSextant-26.stypo</key>\n    <string>blockS_extant-26.stypo.glif</string>\n    <key>blockSextant-126</key>\n    <string>blockS_extant-126.glif</string>\n    <key>blockSextant-126.stypo</key>\n    <string>blockS_extant-126.stypo.glif</string>\n    <key>blockSextant-36</key>\n    <string>blockS_extant-36.glif</string>\n    <key>blockSextant-36.stypo</key>\n    <string>blockS_extant-36.stypo.glif</string>\n    <key>blockSextant-136</key>\n    <string>blockS_extant-136.glif</string>\n    <key>blockSextant-136.stypo</key>\n    <string>blockS_extant-136.stypo.glif</string>\n    <key>blockSextant-236</key>\n    <string>blockS_extant-236.glif</string>\n    <key>blockSextant-236.stypo</key>\n    <string>blockS_extant-236.stypo.glif</string>\n    <key>blockSextant-1236</key>\n    <string>blockS_extant-1236.glif</string>\n    <key>blockSextant-1236.stypo</key>\n    <string>blockS_extant-1236.stypo.glif</string>\n    <key>blockSextant-46</key>\n    <string>blockS_extant-46.glif</string>\n    <key>blockSextant-46.stypo</key>\n    <string>blockS_extant-46.stypo.glif</string>\n    <key>blockSextant-146</key>\n    <string>blockS_extant-146.glif</string>\n    <key>blockSextant-146.stypo</key>\n    <string>blockS_extant-146.stypo.glif</string>\n    <key>blockSextant-1246</key>\n    <string>blockS_extant-1246.glif</string>\n    <key>blockSextant-1246.stypo</key>\n    <string>blockS_extant-1246.stypo.glif</string>\n    <key>blockSextant-346</key>\n    <string>blockS_extant-346.glif</string>\n    <key>blockSextant-346.stypo</key>\n    <string>blockS_extant-346.stypo.glif</string>\n    <key>blockSextant-1346</key>\n    <string>blockS_extant-1346.glif</string>\n    <key>blockSextant-1346.stypo</key>\n    <string>blockS_extant-1346.stypo.glif</string>\n    <key>blockSextant-2346</key>\n    <string>blockS_extant-2346.glif</string>\n    <key>blockSextant-2346.stypo</key>\n    <string>blockS_extant-2346.stypo.glif</string>\n    <key>blockSextant-12346</key>\n    <string>blockS_extant-12346.glif</string>\n    <key>blockSextant-12346.stypo</key>\n    <string>blockS_extant-12346.stypo.glif</string>\n    <key>blockSextant-56</key>\n    <string>blockS_extant-56.glif</string>\n    <key>blockSextant-56.stypo</key>\n    <string>blockS_extant-56.stypo.glif</string>\n    <key>blockSextant-156</key>\n    <string>blockS_extant-156.glif</string>\n    <key>blockSextant-156.stypo</key>\n    <string>blockS_extant-156.stypo.glif</string>\n    <key>blockSextant-256</key>\n    <string>blockS_extant-256.glif</string>\n    <key>blockSextant-256.stypo</key>\n    <string>blockS_extant-256.stypo.glif</string>\n    <key>blockSextant-1256</key>\n    <string>blockS_extant-1256.glif</string>\n    <key>blockSextant-1256.stypo</key>\n    <string>blockS_extant-1256.stypo.glif</string>\n    <key>blockSextant-356</key>\n    <string>blockS_extant-356.glif</string>\n    <key>blockSextant-356.stypo</key>\n    <string>blockS_extant-356.stypo.glif</string>\n    <key>blockSextant-1356</key>\n    <string>blockS_extant-1356.glif</string>\n    <key>blockSextant-1356.stypo</key>\n    <string>blockS_extant-1356.stypo.glif</string>\n    <key>blockSextant-2356</key>\n    <string>blockS_extant-2356.glif</string>\n    <key>blockSextant-2356.stypo</key>\n    <string>blockS_extant-2356.stypo.glif</string>\n    <key>blockSextant-12356</key>\n    <string>blockS_extant-12356.glif</string>\n    <key>blockSextant-12356.stypo</key>\n    <string>blockS_extant-12356.stypo.glif</string>\n    <key>blockSextant-456</key>\n    <string>blockS_extant-456.glif</string>\n    <key>blockSextant-456.stypo</key>\n    <string>blockS_extant-456.stypo.glif</string>\n    <key>blockSextant-1456</key>\n    <string>blockS_extant-1456.glif</string>\n    <key>blockSextant-1456.stypo</key>\n    <string>blockS_extant-1456.stypo.glif</string>\n    <key>blockSextant-2456</key>\n    <string>blockS_extant-2456.glif</string>\n    <key>blockSextant-2456.stypo</key>\n    <string>blockS_extant-2456.stypo.glif</string>\n    <key>blockSextant-12456</key>\n    <string>blockS_extant-12456.glif</string>\n    <key>blockSextant-12456.stypo</key>\n    <string>blockS_extant-12456.stypo.glif</string>\n    <key>blockSextant-3456</key>\n    <string>blockS_extant-3456.glif</string>\n    <key>blockSextant-3456.stypo</key>\n    <string>blockS_extant-3456.stypo.glif</string>\n    <key>blockSextant-13456</key>\n    <string>blockS_extant-13456.glif</string>\n    <key>blockSextant-13456.stypo</key>\n    <string>blockS_extant-13456.stypo.glif</string>\n    <key>blockSextant-23456</key>\n    <string>blockS_extant-23456.glif</string>\n    <key>blockSextant-23456.stypo</key>\n    <string>blockS_extant-23456.stypo.glif</string>\n    <key>blockDiagonal-1FB3C</key>\n    <string>blockD_iagonal-1FB3C.glif</string>\n    <key>blockDiagonal-1FB3C.stypo</key>\n    <string>blockD_iagonal-1FB3C.stypo.glif</string>\n    <key>blockDiagonal-1FB3D</key>\n    <string>blockD_iagonal-1FB3D.glif</string>\n    <key>blockDiagonal-1FB3D.stypo</key>\n    <string>blockD_iagonal-1FB3D.stypo.glif</string>\n    <key>blockDiagonal-1FB3E</key>\n    <string>blockD_iagonal-1FB3E.glif</string>\n    <key>blockDiagonal-1FB3E.stypo</key>\n    <string>blockD_iagonal-1FB3E.stypo.glif</string>\n    <key>blockDiagonal-1FB3F</key>\n    <string>blockD_iagonal-1FB3F.glif</string>\n    <key>blockDiagonal-1FB3F.stypo</key>\n    <string>blockD_iagonal-1FB3F.stypo.glif</string>\n    <key>blockDiagonal-1FB40</key>\n    <string>blockD_iagonal-1FB40.glif</string>\n    <key>blockDiagonal-1FB40.stypo</key>\n    <string>blockD_iagonal-1FB40.stypo.glif</string>\n    <key>blockDiagonal-1FB41</key>\n    <string>blockD_iagonal-1FB41.glif</string>\n    <key>blockDiagonal-1FB41.stypo</key>\n    <string>blockD_iagonal-1FB41.stypo.glif</string>\n    <key>blockDiagonal-1FB42</key>\n    <string>blockD_iagonal-1FB42.glif</string>\n    <key>blockDiagonal-1FB42.stypo</key>\n    <string>blockD_iagonal-1FB42.stypo.glif</string>\n    <key>blockDiagonal-1FB43</key>\n    <string>blockD_iagonal-1FB43.glif</string>\n    <key>blockDiagonal-1FB43.stypo</key>\n    <string>blockD_iagonal-1FB43.stypo.glif</string>\n    <key>blockDiagonal-1FB44</key>\n    <string>blockD_iagonal-1FB44.glif</string>\n    <key>blockDiagonal-1FB44.stypo</key>\n    <string>blockD_iagonal-1FB44.stypo.glif</string>\n    <key>blockDiagonal-1FB45</key>\n    <string>blockD_iagonal-1FB45.glif</string>\n    <key>blockDiagonal-1FB45.stypo</key>\n    <string>blockD_iagonal-1FB45.stypo.glif</string>\n    <key>blockDiagonal-1FB46</key>\n    <string>blockD_iagonal-1FB46.glif</string>\n    <key>blockDiagonal-1FB46.stypo</key>\n    <string>blockD_iagonal-1FB46.stypo.glif</string>\n    <key>blockDiagonal-1FB47</key>\n    <string>blockD_iagonal-1FB47.glif</string>\n    <key>blockDiagonal-1FB47.stypo</key>\n    <string>blockD_iagonal-1FB47.stypo.glif</string>\n    <key>blockDiagonal-1FB48</key>\n    <string>blockD_iagonal-1FB48.glif</string>\n    <key>blockDiagonal-1FB48.stypo</key>\n    <string>blockD_iagonal-1FB48.stypo.glif</string>\n    <key>blockDiagonal-1FB49</key>\n    <string>blockD_iagonal-1FB49.glif</string>\n    <key>blockDiagonal-1FB49.stypo</key>\n    <string>blockD_iagonal-1FB49.stypo.glif</string>\n    <key>blockDiagonal-1FB4A</key>\n    <string>blockD_iagonal-1FB4A.glif</string>\n    <key>blockDiagonal-1FB4A.stypo</key>\n    <string>blockD_iagonal-1FB4A.stypo.glif</string>\n    <key>blockDiagonal-1FB4B</key>\n    <string>blockD_iagonal-1FB4B.glif</string>\n    <key>blockDiagonal-1FB4B.stypo</key>\n    <string>blockD_iagonal-1FB4B.stypo.glif</string>\n    <key>blockDiagonal-1FB4C</key>\n    <string>blockD_iagonal-1FB4C.glif</string>\n    <key>blockDiagonal-1FB4C.stypo</key>\n    <string>blockD_iagonal-1FB4C.stypo.glif</string>\n    <key>blockDiagonal-1FB4D</key>\n    <string>blockD_iagonal-1FB4D.glif</string>\n    <key>blockDiagonal-1FB4D.stypo</key>\n    <string>blockD_iagonal-1FB4D.stypo.glif</string>\n    <key>blockDiagonal-1FB4E</key>\n    <string>blockD_iagonal-1FB4E.glif</string>\n    <key>blockDiagonal-1FB4E.stypo</key>\n    <string>blockD_iagonal-1FB4E.stypo.glif</string>\n    <key>blockDiagonal-1FB4F</key>\n    <string>blockD_iagonal-1FB4F.glif</string>\n    <key>blockDiagonal-1FB4F.stypo</key>\n    <string>blockD_iagonal-1FB4F.stypo.glif</string>\n    <key>blockDiagonal-1FB50</key>\n    <string>blockD_iagonal-1FB50.glif</string>\n    <key>blockDiagonal-1FB50.stypo</key>\n    <string>blockD_iagonal-1FB50.stypo.glif</string>\n    <key>blockDiagonal-1FB51</key>\n    <string>blockD_iagonal-1FB51.glif</string>\n    <key>blockDiagonal-1FB51.stypo</key>\n    <string>blockD_iagonal-1FB51.stypo.glif</string>\n    <key>blockDiagonal-1FB52</key>\n    <string>blockD_iagonal-1FB52.glif</string>\n    <key>blockDiagonal-1FB52.stypo</key>\n    <string>blockD_iagonal-1FB52.stypo.glif</string>\n    <key>blockDiagonal-1FB53</key>\n    <string>blockD_iagonal-1FB53.glif</string>\n    <key>blockDiagonal-1FB53.stypo</key>\n    <string>blockD_iagonal-1FB53.stypo.glif</string>\n    <key>blockDiagonal-1FB54</key>\n    <string>blockD_iagonal-1FB54.glif</string>\n    <key>blockDiagonal-1FB54.stypo</key>\n    <string>blockD_iagonal-1FB54.stypo.glif</string>\n    <key>blockDiagonal-1FB55</key>\n    <string>blockD_iagonal-1FB55.glif</string>\n    <key>blockDiagonal-1FB55.stypo</key>\n    <string>blockD_iagonal-1FB55.stypo.glif</string>\n    <key>blockDiagonal-1FB56</key>\n    <string>blockD_iagonal-1FB56.glif</string>\n    <key>blockDiagonal-1FB56.stypo</key>\n    <string>blockD_iagonal-1FB56.stypo.glif</string>\n    <key>blockDiagonal-1FB57</key>\n    <string>blockD_iagonal-1FB57.glif</string>\n    <key>blockDiagonal-1FB57.stypo</key>\n    <string>blockD_iagonal-1FB57.stypo.glif</string>\n    <key>blockDiagonal-1FB58</key>\n    <string>blockD_iagonal-1FB58.glif</string>\n    <key>blockDiagonal-1FB58.stypo</key>\n    <string>blockD_iagonal-1FB58.stypo.glif</string>\n    <key>blockDiagonal-1FB59</key>\n    <string>blockD_iagonal-1FB59.glif</string>\n    <key>blockDiagonal-1FB59.stypo</key>\n    <string>blockD_iagonal-1FB59.stypo.glif</string>\n    <key>blockDiagonal-1FB5A</key>\n    <string>blockD_iagonal-1FB5A.glif</string>\n    <key>blockDiagonal-1FB5A.stypo</key>\n    <string>blockD_iagonal-1FB5A.stypo.glif</string>\n    <key>blockDiagonal-1FB5B</key>\n    <string>blockD_iagonal-1FB5B.glif</string>\n    <key>blockDiagonal-1FB5B.stypo</key>\n    <string>blockD_iagonal-1FB5B.stypo.glif</string>\n    <key>blockDiagonal-1FB5C</key>\n    <string>blockD_iagonal-1FB5C.glif</string>\n    <key>blockDiagonal-1FB5C.stypo</key>\n    <string>blockD_iagonal-1FB5C.stypo.glif</string>\n    <key>blockDiagonal-1FB5D</key>\n    <string>blockD_iagonal-1FB5D.glif</string>\n    <key>blockDiagonal-1FB5D.stypo</key>\n    <string>blockD_iagonal-1FB5D.stypo.glif</string>\n    <key>blockDiagonal-1FB5E</key>\n    <string>blockD_iagonal-1FB5E.glif</string>\n    <key>blockDiagonal-1FB5E.stypo</key>\n    <string>blockD_iagonal-1FB5E.stypo.glif</string>\n    <key>blockDiagonal-1FB5F</key>\n    <string>blockD_iagonal-1FB5F.glif</string>\n    <key>blockDiagonal-1FB5F.stypo</key>\n    <string>blockD_iagonal-1FB5F.stypo.glif</string>\n    <key>blockDiagonal-1FB60</key>\n    <string>blockD_iagonal-1FB60.glif</string>\n    <key>blockDiagonal-1FB60.stypo</key>\n    <string>blockD_iagonal-1FB60.stypo.glif</string>\n    <key>blockDiagonal-1FB61</key>\n    <string>blockD_iagonal-1FB61.glif</string>\n    <key>blockDiagonal-1FB61.stypo</key>\n    <string>blockD_iagonal-1FB61.stypo.glif</string>\n    <key>blockDiagonal-1FB62</key>\n    <string>blockD_iagonal-1FB62.glif</string>\n    <key>blockDiagonal-1FB62.stypo</key>\n    <string>blockD_iagonal-1FB62.stypo.glif</string>\n    <key>blockDiagonal-1FB63</key>\n    <string>blockD_iagonal-1FB63.glif</string>\n    <key>blockDiagonal-1FB63.stypo</key>\n    <string>blockD_iagonal-1FB63.stypo.glif</string>\n    <key>blockDiagonal-1FB64</key>\n    <string>blockD_iagonal-1FB64.glif</string>\n    <key>blockDiagonal-1FB64.stypo</key>\n    <string>blockD_iagonal-1FB64.stypo.glif</string>\n    <key>blockDiagonal-1FB65</key>\n    <string>blockD_iagonal-1FB65.glif</string>\n    <key>blockDiagonal-1FB65.stypo</key>\n    <string>blockD_iagonal-1FB65.stypo.glif</string>\n    <key>blockDiagonal-1FB66</key>\n    <string>blockD_iagonal-1FB66.glif</string>\n    <key>blockDiagonal-1FB66.stypo</key>\n    <string>blockD_iagonal-1FB66.stypo.glif</string>\n    <key>blockDiagonal-1FB67</key>\n    <string>blockD_iagonal-1FB67.glif</string>\n    <key>blockDiagonal-1FB67.stypo</key>\n    <string>blockD_iagonal-1FB67.stypo.glif</string>\n    <key>blockOctant-1</key>\n    <string>blockO_ctant-1.glif</string>\n    <key>blockOctant-1.stypo</key>\n    <string>blockO_ctant-1.stypo.glif</string>\n    <key>blockOctant-2</key>\n    <string>blockO_ctant-2.glif</string>\n    <key>blockOctant-2.stypo</key>\n    <string>blockO_ctant-2.stypo.glif</string>\n    <key>blockOctant-12</key>\n    <string>blockO_ctant-12.glif</string>\n    <key>blockOctant-12.stypo</key>\n    <string>blockO_ctant-12.stypo.glif</string>\n    <key>blockOctant-3</key>\n    <string>blockO_ctant-3.glif</string>\n    <key>blockOctant-3.stypo</key>\n    <string>blockO_ctant-3.stypo.glif</string>\n    <key>blockOctant-23</key>\n    <string>blockO_ctant-23.glif</string>\n    <key>blockOctant-23.stypo</key>\n    <string>blockO_ctant-23.stypo.glif</string>\n    <key>blockOctant-123</key>\n    <string>blockO_ctant-123.glif</string>\n    <key>blockOctant-123.stypo</key>\n    <string>blockO_ctant-123.stypo.glif</string>\n    <key>blockOctant-4</key>\n    <string>blockO_ctant-4.glif</string>\n    <key>blockOctant-4.stypo</key>\n    <string>blockO_ctant-4.stypo.glif</string>\n    <key>blockOctant-14</key>\n    <string>blockO_ctant-14.glif</string>\n    <key>blockOctant-14.stypo</key>\n    <string>blockO_ctant-14.stypo.glif</string>\n    <key>blockOctant-124</key>\n    <string>blockO_ctant-124.glif</string>\n    <key>blockOctant-124.stypo</key>\n    <string>blockO_ctant-124.stypo.glif</string>\n    <key>blockOctant-34</key>\n    <string>blockO_ctant-34.glif</string>\n    <key>blockOctant-34.stypo</key>\n    <string>blockO_ctant-34.stypo.glif</string>\n    <key>blockOctant-134</key>\n    <string>blockO_ctant-134.glif</string>\n    <key>blockOctant-134.stypo</key>\n    <string>blockO_ctant-134.stypo.glif</string>\n    <key>blockOctant-234</key>\n    <string>blockO_ctant-234.glif</string>\n    <key>blockOctant-234.stypo</key>\n    <string>blockO_ctant-234.stypo.glif</string>\n    <key>blockOctant-5</key>\n    <string>blockO_ctant-5.glif</string>\n    <key>blockOctant-5.stypo</key>\n    <string>blockO_ctant-5.stypo.glif</string>\n    <key>blockOctant-15</key>\n    <string>blockO_ctant-15.glif</string>\n    <key>blockOctant-15.stypo</key>\n    <string>blockO_ctant-15.stypo.glif</string>\n    <key>blockOctant-25</key>\n    <string>blockO_ctant-25.glif</string>\n    <key>blockOctant-25.stypo</key>\n    <string>blockO_ctant-25.stypo.glif</string>\n    <key>blockOctant-125</key>\n    <string>blockO_ctant-125.glif</string>\n    <key>blockOctant-125.stypo</key>\n    <string>blockO_ctant-125.stypo.glif</string>\n    <key>blockOctant-135</key>\n    <string>blockO_ctant-135.glif</string>\n    <key>blockOctant-135.stypo</key>\n    <string>blockO_ctant-135.stypo.glif</string>\n    <key>blockOctant-235</key>\n    <string>blockO_ctant-235.glif</string>\n    <key>blockOctant-235.stypo</key>\n    <string>blockO_ctant-235.stypo.glif</string>\n    <key>blockOctant-1235</key>\n    <string>blockO_ctant-1235.glif</string>\n    <key>blockOctant-1235.stypo</key>\n    <string>blockO_ctant-1235.stypo.glif</string>\n    <key>blockOctant-45</key>\n    <string>blockO_ctant-45.glif</string>\n    <key>blockOctant-45.stypo</key>\n    <string>blockO_ctant-45.stypo.glif</string>\n    <key>blockOctant-145</key>\n    <string>blockO_ctant-145.glif</string>\n    <key>blockOctant-145.stypo</key>\n    <string>blockO_ctant-145.stypo.glif</string>\n    <key>blockOctant-245</key>\n    <string>blockO_ctant-245.glif</string>\n    <key>blockOctant-245.stypo</key>\n    <string>blockO_ctant-245.stypo.glif</string>\n    <key>blockOctant-1245</key>\n    <string>blockO_ctant-1245.glif</string>\n    <key>blockOctant-1245.stypo</key>\n    <string>blockO_ctant-1245.stypo.glif</string>\n    <key>blockOctant-345</key>\n    <string>blockO_ctant-345.glif</string>\n    <key>blockOctant-345.stypo</key>\n    <string>blockO_ctant-345.stypo.glif</string>\n    <key>blockOctant-1345</key>\n    <string>blockO_ctant-1345.glif</string>\n    <key>blockOctant-1345.stypo</key>\n    <string>blockO_ctant-1345.stypo.glif</string>\n    <key>blockOctant-2345</key>\n    <string>blockO_ctant-2345.glif</string>\n    <key>blockOctant-2345.stypo</key>\n    <string>blockO_ctant-2345.stypo.glif</string>\n    <key>blockOctant-12345</key>\n    <string>blockO_ctant-12345.glif</string>\n    <key>blockOctant-12345.stypo</key>\n    <string>blockO_ctant-12345.stypo.glif</string>\n    <key>blockOctant-6</key>\n    <string>blockO_ctant-6.glif</string>\n    <key>blockOctant-6.stypo</key>\n    <string>blockO_ctant-6.stypo.glif</string>\n    <key>blockOctant-16</key>\n    <string>blockO_ctant-16.glif</string>\n    <key>blockOctant-16.stypo</key>\n    <string>blockO_ctant-16.stypo.glif</string>\n    <key>blockOctant-26</key>\n    <string>blockO_ctant-26.glif</string>\n    <key>blockOctant-26.stypo</key>\n    <string>blockO_ctant-26.stypo.glif</string>\n    <key>blockOctant-126</key>\n    <string>blockO_ctant-126.glif</string>\n    <key>blockOctant-126.stypo</key>\n    <string>blockO_ctant-126.stypo.glif</string>\n    <key>blockOctant-36</key>\n    <string>blockO_ctant-36.glif</string>\n    <key>blockOctant-36.stypo</key>\n    <string>blockO_ctant-36.stypo.glif</string>\n    <key>blockOctant-136</key>\n    <string>blockO_ctant-136.glif</string>\n    <key>blockOctant-136.stypo</key>\n    <string>blockO_ctant-136.stypo.glif</string>\n    <key>blockOctant-236</key>\n    <string>blockO_ctant-236.glif</string>\n    <key>blockOctant-236.stypo</key>\n    <string>blockO_ctant-236.stypo.glif</string>\n    <key>blockOctant-1236</key>\n    <string>blockO_ctant-1236.glif</string>\n    <key>blockOctant-1236.stypo</key>\n    <string>blockO_ctant-1236.stypo.glif</string>\n    <key>blockOctant-146</key>\n    <string>blockO_ctant-146.glif</string>\n    <key>blockOctant-146.stypo</key>\n    <string>blockO_ctant-146.stypo.glif</string>\n    <key>blockOctant-246</key>\n    <string>blockO_ctant-246.glif</string>\n    <key>blockOctant-246.stypo</key>\n    <string>blockO_ctant-246.stypo.glif</string>\n    <key>blockOctant-1246</key>\n    <string>blockO_ctant-1246.glif</string>\n    <key>blockOctant-1246.stypo</key>\n    <string>blockO_ctant-1246.stypo.glif</string>\n    <key>blockOctant-346</key>\n    <string>blockO_ctant-346.glif</string>\n    <key>blockOctant-346.stypo</key>\n    <string>blockO_ctant-346.stypo.glif</string>\n    <key>blockOctant-1346</key>\n    <string>blockO_ctant-1346.glif</string>\n    <key>blockOctant-1346.stypo</key>\n    <string>blockO_ctant-1346.stypo.glif</string>\n    <key>blockOctant-2346</key>\n    <string>blockO_ctant-2346.glif</string>\n    <key>blockOctant-2346.stypo</key>\n    <string>blockO_ctant-2346.stypo.glif</string>\n    <key>blockOctant-12346</key>\n    <string>blockO_ctant-12346.glif</string>\n    <key>blockOctant-12346.stypo</key>\n    <string>blockO_ctant-12346.stypo.glif</string>\n    <key>blockOctant-56</key>\n    <string>blockO_ctant-56.glif</string>\n    <key>blockOctant-56.stypo</key>\n    <string>blockO_ctant-56.stypo.glif</string>\n    <key>blockOctant-156</key>\n    <string>blockO_ctant-156.glif</string>\n    <key>blockOctant-156.stypo</key>\n    <string>blockO_ctant-156.stypo.glif</string>\n    <key>blockOctant-256</key>\n    <string>blockO_ctant-256.glif</string>\n    <key>blockOctant-256.stypo</key>\n    <string>blockO_ctant-256.stypo.glif</string>\n    <key>blockOctant-1256</key>\n    <string>blockO_ctant-1256.glif</string>\n    <key>blockOctant-1256.stypo</key>\n    <string>blockO_ctant-1256.stypo.glif</string>\n    <key>blockOctant-356</key>\n    <string>blockO_ctant-356.glif</string>\n    <key>blockOctant-356.stypo</key>\n    <string>blockO_ctant-356.stypo.glif</string>\n    <key>blockOctant-1356</key>\n    <string>blockO_ctant-1356.glif</string>\n    <key>blockOctant-1356.stypo</key>\n    <string>blockO_ctant-1356.stypo.glif</string>\n    <key>blockOctant-2356</key>\n    <string>blockO_ctant-2356.glif</string>\n    <key>blockOctant-2356.stypo</key>\n    <string>blockO_ctant-2356.stypo.glif</string>\n    <key>blockOctant-12356</key>\n    <string>blockO_ctant-12356.glif</string>\n    <key>blockOctant-12356.stypo</key>\n    <string>blockO_ctant-12356.stypo.glif</string>\n    <key>blockOctant-456</key>\n    <string>blockO_ctant-456.glif</string>\n    <key>blockOctant-456.stypo</key>\n    <string>blockO_ctant-456.stypo.glif</string>\n    <key>blockOctant-1456</key>\n    <string>blockO_ctant-1456.glif</string>\n    <key>blockOctant-1456.stypo</key>\n    <string>blockO_ctant-1456.stypo.glif</string>\n    <key>blockOctant-2456</key>\n    <string>blockO_ctant-2456.glif</string>\n    <key>blockOctant-2456.stypo</key>\n    <string>blockO_ctant-2456.stypo.glif</string>\n    <key>blockOctant-12456</key>\n    <string>blockO_ctant-12456.glif</string>\n    <key>blockOctant-12456.stypo</key>\n    <string>blockO_ctant-12456.stypo.glif</string>\n    <key>blockOctant-3456</key>\n    <string>blockO_ctant-3456.glif</string>\n    <key>blockOctant-3456.stypo</key>\n    <string>blockO_ctant-3456.stypo.glif</string>\n    <key>blockOctant-13456</key>\n    <string>blockO_ctant-13456.glif</string>\n    <key>blockOctant-13456.stypo</key>\n    <string>blockO_ctant-13456.stypo.glif</string>\n    <key>blockOctant-23456</key>\n    <string>blockO_ctant-23456.glif</string>\n    <key>blockOctant-23456.stypo</key>\n    <string>blockO_ctant-23456.stypo.glif</string>\n    <key>blockOctant-123456</key>\n    <string>blockO_ctant-123456.glif</string>\n    <key>blockOctant-123456.stypo</key>\n    <string>blockO_ctant-123456.stypo.glif</string>\n    <key>blockOctant-7</key>\n    <string>blockO_ctant-7.glif</string>\n    <key>blockOctant-7.stypo</key>\n    <string>blockO_ctant-7.stypo.glif</string>\n    <key>blockOctant-17</key>\n    <string>blockO_ctant-17.glif</string>\n    <key>blockOctant-17.stypo</key>\n    <string>blockO_ctant-17.stypo.glif</string>\n    <key>blockOctant-27</key>\n    <string>blockO_ctant-27.glif</string>\n    <key>blockOctant-27.stypo</key>\n    <string>blockO_ctant-27.stypo.glif</string>\n    <key>blockOctant-127</key>\n    <string>blockO_ctant-127.glif</string>\n    <key>blockOctant-127.stypo</key>\n    <string>blockO_ctant-127.stypo.glif</string>\n    <key>blockOctant-37</key>\n    <string>blockO_ctant-37.glif</string>\n    <key>blockOctant-37.stypo</key>\n    <string>blockO_ctant-37.stypo.glif</string>\n    <key>blockOctant-137</key>\n    <string>blockO_ctant-137.glif</string>\n    <key>blockOctant-137.stypo</key>\n    <string>blockO_ctant-137.stypo.glif</string>\n    <key>blockOctant-237</key>\n    <string>blockO_ctant-237.glif</string>\n    <key>blockOctant-237.stypo</key>\n    <string>blockO_ctant-237.stypo.glif</string>\n    <key>blockOctant-1237</key>\n    <string>blockO_ctant-1237.glif</string>\n    <key>blockOctant-1237.stypo</key>\n    <string>blockO_ctant-1237.stypo.glif</string>\n    <key>blockOctant-47</key>\n    <string>blockO_ctant-47.glif</string>\n    <key>blockOctant-47.stypo</key>\n    <string>blockO_ctant-47.stypo.glif</string>\n    <key>blockOctant-147</key>\n    <string>blockO_ctant-147.glif</string>\n    <key>blockOctant-147.stypo</key>\n    <string>blockO_ctant-147.stypo.glif</string>\n    <key>blockOctant-247</key>\n    <string>blockO_ctant-247.glif</string>\n    <key>blockOctant-247.stypo</key>\n    <string>blockO_ctant-247.stypo.glif</string>\n    <key>blockOctant-1247</key>\n    <string>blockO_ctant-1247.glif</string>\n    <key>blockOctant-1247.stypo</key>\n    <string>blockO_ctant-1247.stypo.glif</string>\n    <key>blockOctant-347</key>\n    <string>blockO_ctant-347.glif</string>\n    <key>blockOctant-347.stypo</key>\n    <string>blockO_ctant-347.stypo.glif</string>\n    <key>blockOctant-1347</key>\n    <string>blockO_ctant-1347.glif</string>\n    <key>blockOctant-1347.stypo</key>\n    <string>blockO_ctant-1347.stypo.glif</string>\n    <key>blockOctant-2347</key>\n    <string>blockO_ctant-2347.glif</string>\n    <key>blockOctant-2347.stypo</key>\n    <string>blockO_ctant-2347.stypo.glif</string>\n    <key>blockOctant-12347</key>\n    <string>blockO_ctant-12347.glif</string>\n    <key>blockOctant-12347.stypo</key>\n    <string>blockO_ctant-12347.stypo.glif</string>\n    <key>blockOctant-157</key>\n    <string>blockO_ctant-157.glif</string>\n    <key>blockOctant-157.stypo</key>\n    <string>blockO_ctant-157.stypo.glif</string>\n    <key>blockOctant-257</key>\n    <string>blockO_ctant-257.glif</string>\n    <key>blockOctant-257.stypo</key>\n    <string>blockO_ctant-257.stypo.glif</string>\n    <key>blockOctant-1257</key>\n    <string>blockO_ctant-1257.glif</string>\n    <key>blockOctant-1257.stypo</key>\n    <string>blockO_ctant-1257.stypo.glif</string>\n    <key>blockOctant-357</key>\n    <string>blockO_ctant-357.glif</string>\n    <key>blockOctant-357.stypo</key>\n    <string>blockO_ctant-357.stypo.glif</string>\n    <key>blockOctant-2357</key>\n    <string>blockO_ctant-2357.glif</string>\n    <key>blockOctant-2357.stypo</key>\n    <string>blockO_ctant-2357.stypo.glif</string>\n    <key>blockOctant-12357</key>\n    <string>blockO_ctant-12357.glif</string>\n    <key>blockOctant-12357.stypo</key>\n    <string>blockO_ctant-12357.stypo.glif</string>\n    <key>blockOctant-457</key>\n    <string>blockO_ctant-457.glif</string>\n    <key>blockOctant-457.stypo</key>\n    <string>blockO_ctant-457.stypo.glif</string>\n    <key>blockOctant-1457</key>\n    <string>blockO_ctant-1457.glif</string>\n    <key>blockOctant-1457.stypo</key>\n    <string>blockO_ctant-1457.stypo.glif</string>\n    <key>blockOctant-12457</key>\n    <string>blockO_ctant-12457.glif</string>\n    <key>blockOctant-12457.stypo</key>\n    <string>blockO_ctant-12457.stypo.glif</string>\n    <key>blockOctant-3457</key>\n    <string>blockO_ctant-3457.glif</string>\n    <key>blockOctant-3457.stypo</key>\n    <string>blockO_ctant-3457.stypo.glif</string>\n    <key>blockOctant-13457</key>\n    <string>blockO_ctant-13457.glif</string>\n    <key>blockOctant-13457.stypo</key>\n    <string>blockO_ctant-13457.stypo.glif</string>\n    <key>blockOctant-23457</key>\n    <string>blockO_ctant-23457.glif</string>\n    <key>blockOctant-23457.stypo</key>\n    <string>blockO_ctant-23457.stypo.glif</string>\n    <key>blockOctant-67</key>\n    <string>blockO_ctant-67.glif</string>\n    <key>blockOctant-67.stypo</key>\n    <string>blockO_ctant-67.stypo.glif</string>\n    <key>blockOctant-167</key>\n    <string>blockO_ctant-167.glif</string>\n    <key>blockOctant-167.stypo</key>\n    <string>blockO_ctant-167.stypo.glif</string>\n    <key>blockOctant-267</key>\n    <string>blockO_ctant-267.glif</string>\n    <key>blockOctant-267.stypo</key>\n    <string>blockO_ctant-267.stypo.glif</string>\n    <key>blockOctant-1267</key>\n    <string>blockO_ctant-1267.glif</string>\n    <key>blockOctant-1267.stypo</key>\n    <string>blockO_ctant-1267.stypo.glif</string>\n    <key>blockOctant-367</key>\n    <string>blockO_ctant-367.glif</string>\n    <key>blockOctant-367.stypo</key>\n    <string>blockO_ctant-367.stypo.glif</string>\n    <key>blockOctant-1367</key>\n    <string>blockO_ctant-1367.glif</string>\n    <key>blockOctant-1367.stypo</key>\n    <string>blockO_ctant-1367.stypo.glif</string>\n    <key>blockOctant-2367</key>\n    <string>blockO_ctant-2367.glif</string>\n    <key>blockOctant-2367.stypo</key>\n    <string>blockO_ctant-2367.stypo.glif</string>\n    <key>blockOctant-12367</key>\n    <string>blockO_ctant-12367.glif</string>\n    <key>blockOctant-12367.stypo</key>\n    <string>blockO_ctant-12367.stypo.glif</string>\n    <key>blockOctant-467</key>\n    <string>blockO_ctant-467.glif</string>\n    <key>blockOctant-467.stypo</key>\n    <string>blockO_ctant-467.stypo.glif</string>\n    <key>blockOctant-1467</key>\n    <string>blockO_ctant-1467.glif</string>\n    <key>blockOctant-1467.stypo</key>\n    <string>blockO_ctant-1467.stypo.glif</string>\n    <key>blockOctant-2467</key>\n    <string>blockO_ctant-2467.glif</string>\n    <key>blockOctant-2467.stypo</key>\n    <string>blockO_ctant-2467.stypo.glif</string>\n    <key>blockOctant-12467</key>\n    <string>blockO_ctant-12467.glif</string>\n    <key>blockOctant-12467.stypo</key>\n    <string>blockO_ctant-12467.stypo.glif</string>\n    <key>blockOctant-3467</key>\n    <string>blockO_ctant-3467.glif</string>\n    <key>blockOctant-3467.stypo</key>\n    <string>blockO_ctant-3467.stypo.glif</string>\n    <key>blockOctant-13467</key>\n    <string>blockO_ctant-13467.glif</string>\n    <key>blockOctant-13467.stypo</key>\n    <string>blockO_ctant-13467.stypo.glif</string>\n    <key>blockOctant-23467</key>\n    <string>blockO_ctant-23467.glif</string>\n    <key>blockOctant-23467.stypo</key>\n    <string>blockO_ctant-23467.stypo.glif</string>\n    <key>blockOctant-123467</key>\n    <string>blockO_ctant-123467.glif</string>\n    <key>blockOctant-123467.stypo</key>\n    <string>blockO_ctant-123467.stypo.glif</string>\n    <key>blockOctant-567</key>\n    <string>blockO_ctant-567.glif</string>\n    <key>blockOctant-567.stypo</key>\n    <string>blockO_ctant-567.stypo.glif</string>\n    <key>blockOctant-1567</key>\n    <string>blockO_ctant-1567.glif</string>\n    <key>blockOctant-1567.stypo</key>\n    <string>blockO_ctant-1567.stypo.glif</string>\n    <key>blockOctant-2567</key>\n    <string>blockO_ctant-2567.glif</string>\n    <key>blockOctant-2567.stypo</key>\n    <string>blockO_ctant-2567.stypo.glif</string>\n    <key>blockOctant-12567</key>\n    <string>blockO_ctant-12567.glif</string>\n    <key>blockOctant-12567.stypo</key>\n    <string>blockO_ctant-12567.stypo.glif</string>\n    <key>blockOctant-3567</key>\n    <string>blockO_ctant-3567.glif</string>\n    <key>blockOctant-3567.stypo</key>\n    <string>blockO_ctant-3567.stypo.glif</string>\n    <key>blockOctant-13567</key>\n    <string>blockO_ctant-13567.glif</string>\n    <key>blockOctant-13567.stypo</key>\n    <string>blockO_ctant-13567.stypo.glif</string>\n    <key>blockOctant-23567</key>\n    <string>blockO_ctant-23567.glif</string>\n    <key>blockOctant-23567.stypo</key>\n    <string>blockO_ctant-23567.stypo.glif</string>\n    <key>blockOctant-123567</key>\n    <string>blockO_ctant-123567.glif</string>\n    <key>blockOctant-123567.stypo</key>\n    <string>blockO_ctant-123567.stypo.glif</string>\n    <key>blockOctant-4567</key>\n    <string>blockO_ctant-4567.glif</string>\n    <key>blockOctant-4567.stypo</key>\n    <string>blockO_ctant-4567.stypo.glif</string>\n    <key>blockOctant-14567</key>\n    <string>blockO_ctant-14567.glif</string>\n    <key>blockOctant-14567.stypo</key>\n    <string>blockO_ctant-14567.stypo.glif</string>\n    <key>blockOctant-24567</key>\n    <string>blockO_ctant-24567.glif</string>\n    <key>blockOctant-24567.stypo</key>\n    <string>blockO_ctant-24567.stypo.glif</string>\n    <key>blockOctant-124567</key>\n    <string>blockO_ctant-124567.glif</string>\n    <key>blockOctant-124567.stypo</key>\n    <string>blockO_ctant-124567.stypo.glif</string>\n    <key>blockOctant-34567</key>\n    <string>blockO_ctant-34567.glif</string>\n    <key>blockOctant-34567.stypo</key>\n    <string>blockO_ctant-34567.stypo.glif</string>\n    <key>blockOctant-134567</key>\n    <string>blockO_ctant-134567.glif</string>\n    <key>blockOctant-134567.stypo</key>\n    <string>blockO_ctant-134567.stypo.glif</string>\n    <key>blockOctant-234567</key>\n    <string>blockO_ctant-234567.glif</string>\n    <key>blockOctant-234567.stypo</key>\n    <string>blockO_ctant-234567.stypo.glif</string>\n    <key>blockOctant-1234567</key>\n    <string>blockO_ctant-1234567.glif</string>\n    <key>blockOctant-1234567.stypo</key>\n    <string>blockO_ctant-1234567.stypo.glif</string>\n    <key>blockOctant-8</key>\n    <string>blockO_ctant-8.glif</string>\n    <key>blockOctant-8.stypo</key>\n    <string>blockO_ctant-8.stypo.glif</string>\n    <key>blockOctant-18</key>\n    <string>blockO_ctant-18.glif</string>\n    <key>blockOctant-18.stypo</key>\n    <string>blockO_ctant-18.stypo.glif</string>\n    <key>blockOctant-28</key>\n    <string>blockO_ctant-28.glif</string>\n    <key>blockOctant-28.stypo</key>\n    <string>blockO_ctant-28.stypo.glif</string>\n    <key>blockOctant-128</key>\n    <string>blockO_ctant-128.glif</string>\n    <key>blockOctant-128.stypo</key>\n    <string>blockO_ctant-128.stypo.glif</string>\n    <key>blockOctant-38</key>\n    <string>blockO_ctant-38.glif</string>\n    <key>blockOctant-38.stypo</key>\n    <string>blockO_ctant-38.stypo.glif</string>\n    <key>blockOctant-138</key>\n    <string>blockO_ctant-138.glif</string>\n    <key>blockOctant-138.stypo</key>\n    <string>blockO_ctant-138.stypo.glif</string>\n    <key>blockOctant-238</key>\n    <string>blockO_ctant-238.glif</string>\n    <key>blockOctant-238.stypo</key>\n    <string>blockO_ctant-238.stypo.glif</string>\n    <key>blockOctant-1238</key>\n    <string>blockO_ctant-1238.glif</string>\n    <key>blockOctant-1238.stypo</key>\n    <string>blockO_ctant-1238.stypo.glif</string>\n    <key>blockOctant-48</key>\n    <string>blockO_ctant-48.glif</string>\n    <key>blockOctant-48.stypo</key>\n    <string>blockO_ctant-48.stypo.glif</string>\n    <key>blockOctant-148</key>\n    <string>blockO_ctant-148.glif</string>\n    <key>blockOctant-148.stypo</key>\n    <string>blockO_ctant-148.stypo.glif</string>\n    <key>blockOctant-248</key>\n    <string>blockO_ctant-248.glif</string>\n    <key>blockOctant-248.stypo</key>\n    <string>blockO_ctant-248.stypo.glif</string>\n    <key>blockOctant-1248</key>\n    <string>blockO_ctant-1248.glif</string>\n    <key>blockOctant-1248.stypo</key>\n    <string>blockO_ctant-1248.stypo.glif</string>\n    <key>blockOctant-348</key>\n    <string>blockO_ctant-348.glif</string>\n    <key>blockOctant-348.stypo</key>\n    <string>blockO_ctant-348.stypo.glif</string>\n    <key>blockOctant-1348</key>\n    <string>blockO_ctant-1348.glif</string>\n    <key>blockOctant-1348.stypo</key>\n    <string>blockO_ctant-1348.stypo.glif</string>\n    <key>blockOctant-2348</key>\n    <string>blockO_ctant-2348.glif</string>\n    <key>blockOctant-2348.stypo</key>\n    <string>blockO_ctant-2348.stypo.glif</string>\n    <key>blockOctant-12348</key>\n    <string>blockO_ctant-12348.glif</string>\n    <key>blockOctant-12348.stypo</key>\n    <string>blockO_ctant-12348.stypo.glif</string>\n    <key>blockOctant-58</key>\n    <string>blockO_ctant-58.glif</string>\n    <key>blockOctant-58.stypo</key>\n    <string>blockO_ctant-58.stypo.glif</string>\n    <key>blockOctant-158</key>\n    <string>blockO_ctant-158.glif</string>\n    <key>blockOctant-158.stypo</key>\n    <string>blockO_ctant-158.stypo.glif</string>\n    <key>blockOctant-258</key>\n    <string>blockO_ctant-258.glif</string>\n    <key>blockOctant-258.stypo</key>\n    <string>blockO_ctant-258.stypo.glif</string>\n    <key>blockOctant-1258</key>\n    <string>blockO_ctant-1258.glif</string>\n    <key>blockOctant-1258.stypo</key>\n    <string>blockO_ctant-1258.stypo.glif</string>\n    <key>blockOctant-358</key>\n    <string>blockO_ctant-358.glif</string>\n    <key>blockOctant-358.stypo</key>\n    <string>blockO_ctant-358.stypo.glif</string>\n    <key>blockOctant-1358</key>\n    <string>blockO_ctant-1358.glif</string>\n    <key>blockOctant-1358.stypo</key>\n    <string>blockO_ctant-1358.stypo.glif</string>\n    <key>blockOctant-2358</key>\n    <string>blockO_ctant-2358.glif</string>\n    <key>blockOctant-2358.stypo</key>\n    <string>blockO_ctant-2358.stypo.glif</string>\n    <key>blockOctant-12358</key>\n    <string>blockO_ctant-12358.glif</string>\n    <key>blockOctant-12358.stypo</key>\n    <string>blockO_ctant-12358.stypo.glif</string>\n    <key>blockOctant-458</key>\n    <string>blockO_ctant-458.glif</string>\n    <key>blockOctant-458.stypo</key>\n    <string>blockO_ctant-458.stypo.glif</string>\n    <key>blockOctant-1458</key>\n    <string>blockO_ctant-1458.glif</string>\n    <key>blockOctant-1458.stypo</key>\n    <string>blockO_ctant-1458.stypo.glif</string>\n    <key>blockOctant-2458</key>\n    <string>blockO_ctant-2458.glif</string>\n    <key>blockOctant-2458.stypo</key>\n    <string>blockO_ctant-2458.stypo.glif</string>\n    <key>blockOctant-12458</key>\n    <string>blockO_ctant-12458.glif</string>\n    <key>blockOctant-12458.stypo</key>\n    <string>blockO_ctant-12458.stypo.glif</string>\n    <key>blockOctant-3458</key>\n    <string>blockO_ctant-3458.glif</string>\n    <key>blockOctant-3458.stypo</key>\n    <string>blockO_ctant-3458.stypo.glif</string>\n    <key>blockOctant-13458</key>\n    <string>blockO_ctant-13458.glif</string>\n    <key>blockOctant-13458.stypo</key>\n    <string>blockO_ctant-13458.stypo.glif</string>\n    <key>blockOctant-23458</key>\n    <string>blockO_ctant-23458.glif</string>\n    <key>blockOctant-23458.stypo</key>\n    <string>blockO_ctant-23458.stypo.glif</string>\n    <key>blockOctant-123458</key>\n    <string>blockO_ctant-123458.glif</string>\n    <key>blockOctant-123458.stypo</key>\n    <string>blockO_ctant-123458.stypo.glif</string>\n    <key>blockOctant-168</key>\n    <string>blockO_ctant-168.glif</string>\n    <key>blockOctant-168.stypo</key>\n    <string>blockO_ctant-168.stypo.glif</string>\n    <key>blockOctant-268</key>\n    <string>blockO_ctant-268.glif</string>\n    <key>blockOctant-268.stypo</key>\n    <string>blockO_ctant-268.stypo.glif</string>\n    <key>blockOctant-1268</key>\n    <string>blockO_ctant-1268.glif</string>\n    <key>blockOctant-1268.stypo</key>\n    <string>blockO_ctant-1268.stypo.glif</string>\n    <key>blockOctant-368</key>\n    <string>blockO_ctant-368.glif</string>\n    <key>blockOctant-368.stypo</key>\n    <string>blockO_ctant-368.stypo.glif</string>\n    <key>blockOctant-2368</key>\n    <string>blockO_ctant-2368.glif</string>\n    <key>blockOctant-2368.stypo</key>\n    <string>blockO_ctant-2368.stypo.glif</string>\n    <key>blockOctant-12368</key>\n    <string>blockO_ctant-12368.glif</string>\n    <key>blockOctant-12368.stypo</key>\n    <string>blockO_ctant-12368.stypo.glif</string>\n    <key>blockOctant-468</key>\n    <string>blockO_ctant-468.glif</string>\n    <key>blockOctant-468.stypo</key>\n    <string>blockO_ctant-468.stypo.glif</string>\n    <key>blockOctant-1468</key>\n    <string>blockO_ctant-1468.glif</string>\n    <key>blockOctant-1468.stypo</key>\n    <string>blockO_ctant-1468.stypo.glif</string>\n    <key>blockOctant-12468</key>\n    <string>blockO_ctant-12468.glif</string>\n    <key>blockOctant-12468.stypo</key>\n    <string>blockO_ctant-12468.stypo.glif</string>\n    <key>blockOctant-3468</key>\n    <string>blockO_ctant-3468.glif</string>\n    <key>blockOctant-3468.stypo</key>\n    <string>blockO_ctant-3468.stypo.glif</string>\n    <key>blockOctant-13468</key>\n    <string>blockO_ctant-13468.glif</string>\n    <key>blockOctant-13468.stypo</key>\n    <string>blockO_ctant-13468.stypo.glif</string>\n    <key>blockOctant-23468</key>\n    <string>blockO_ctant-23468.glif</string>\n    <key>blockOctant-23468.stypo</key>\n    <string>blockO_ctant-23468.stypo.glif</string>\n    <key>blockOctant-568</key>\n    <string>blockO_ctant-568.glif</string>\n    <key>blockOctant-568.stypo</key>\n    <string>blockO_ctant-568.stypo.glif</string>\n    <key>blockOctant-1568</key>\n    <string>blockO_ctant-1568.glif</string>\n    <key>blockOctant-1568.stypo</key>\n    <string>blockO_ctant-1568.stypo.glif</string>\n    <key>blockOctant-2568</key>\n    <string>blockO_ctant-2568.glif</string>\n    <key>blockOctant-2568.stypo</key>\n    <string>blockO_ctant-2568.stypo.glif</string>\n    <key>blockOctant-12568</key>\n    <string>blockO_ctant-12568.glif</string>\n    <key>blockOctant-12568.stypo</key>\n    <string>blockO_ctant-12568.stypo.glif</string>\n    <key>blockOctant-3568</key>\n    <string>blockO_ctant-3568.glif</string>\n    <key>blockOctant-3568.stypo</key>\n    <string>blockO_ctant-3568.stypo.glif</string>\n    <key>blockOctant-13568</key>\n    <string>blockO_ctant-13568.glif</string>\n    <key>blockOctant-13568.stypo</key>\n    <string>blockO_ctant-13568.stypo.glif</string>\n    <key>blockOctant-23568</key>\n    <string>blockO_ctant-23568.glif</string>\n    <key>blockOctant-23568.stypo</key>\n    <string>blockO_ctant-23568.stypo.glif</string>\n    <key>blockOctant-123568</key>\n    <string>blockO_ctant-123568.glif</string>\n    <key>blockOctant-123568.stypo</key>\n    <string>blockO_ctant-123568.stypo.glif</string>\n    <key>blockOctant-4568</key>\n    <string>blockO_ctant-4568.glif</string>\n    <key>blockOctant-4568.stypo</key>\n    <string>blockO_ctant-4568.stypo.glif</string>\n    <key>blockOctant-14568</key>\n    <string>blockO_ctant-14568.glif</string>\n    <key>blockOctant-14568.stypo</key>\n    <string>blockO_ctant-14568.stypo.glif</string>\n    <key>blockOctant-24568</key>\n    <string>blockO_ctant-24568.glif</string>\n    <key>blockOctant-24568.stypo</key>\n    <string>blockO_ctant-24568.stypo.glif</string>\n    <key>blockOctant-124568</key>\n    <string>blockO_ctant-124568.glif</string>\n    <key>blockOctant-124568.stypo</key>\n    <string>blockO_ctant-124568.stypo.glif</string>\n    <key>blockOctant-34568</key>\n    <string>blockO_ctant-34568.glif</string>\n    <key>blockOctant-34568.stypo</key>\n    <string>blockO_ctant-34568.stypo.glif</string>\n    <key>blockOctant-134568</key>\n    <string>blockO_ctant-134568.glif</string>\n    <key>blockOctant-134568.stypo</key>\n    <string>blockO_ctant-134568.stypo.glif</string>\n    <key>blockOctant-234568</key>\n    <string>blockO_ctant-234568.glif</string>\n    <key>blockOctant-234568.stypo</key>\n    <string>blockO_ctant-234568.stypo.glif</string>\n    <key>blockOctant-1234568</key>\n    <string>blockO_ctant-1234568.glif</string>\n    <key>blockOctant-1234568.stypo</key>\n    <string>blockO_ctant-1234568.stypo.glif</string>\n    <key>blockOctant-178</key>\n    <string>blockO_ctant-178.glif</string>\n    <key>blockOctant-178.stypo</key>\n    <string>blockO_ctant-178.stypo.glif</string>\n    <key>blockOctant-278</key>\n    <string>blockO_ctant-278.glif</string>\n    <key>blockOctant-278.stypo</key>\n    <string>blockO_ctant-278.stypo.glif</string>\n    <key>blockOctant-1278</key>\n    <string>blockO_ctant-1278.glif</string>\n    <key>blockOctant-1278.stypo</key>\n    <string>blockO_ctant-1278.stypo.glif</string>\n    <key>blockOctant-378</key>\n    <string>blockO_ctant-378.glif</string>\n    <key>blockOctant-378.stypo</key>\n    <string>blockO_ctant-378.stypo.glif</string>\n    <key>blockOctant-1378</key>\n    <string>blockO_ctant-1378.glif</string>\n    <key>blockOctant-1378.stypo</key>\n    <string>blockO_ctant-1378.stypo.glif</string>\n    <key>blockOctant-2378</key>\n    <string>blockO_ctant-2378.glif</string>\n    <key>blockOctant-2378.stypo</key>\n    <string>blockO_ctant-2378.stypo.glif</string>\n    <key>blockOctant-12378</key>\n    <string>blockO_ctant-12378.glif</string>\n    <key>blockOctant-12378.stypo</key>\n    <string>blockO_ctant-12378.stypo.glif</string>\n    <key>blockOctant-478</key>\n    <string>blockO_ctant-478.glif</string>\n    <key>blockOctant-478.stypo</key>\n    <string>blockO_ctant-478.stypo.glif</string>\n    <key>blockOctant-1478</key>\n    <string>blockO_ctant-1478.glif</string>\n    <key>blockOctant-1478.stypo</key>\n    <string>blockO_ctant-1478.stypo.glif</string>\n    <key>blockOctant-2478</key>\n    <string>blockO_ctant-2478.glif</string>\n    <key>blockOctant-2478.stypo</key>\n    <string>blockO_ctant-2478.stypo.glif</string>\n    <key>blockOctant-12478</key>\n    <string>blockO_ctant-12478.glif</string>\n    <key>blockOctant-12478.stypo</key>\n    <string>blockO_ctant-12478.stypo.glif</string>\n    <key>blockOctant-3478</key>\n    <string>blockO_ctant-3478.glif</string>\n    <key>blockOctant-3478.stypo</key>\n    <string>blockO_ctant-3478.stypo.glif</string>\n    <key>blockOctant-13478</key>\n    <string>blockO_ctant-13478.glif</string>\n    <key>blockOctant-13478.stypo</key>\n    <string>blockO_ctant-13478.stypo.glif</string>\n    <key>blockOctant-23478</key>\n    <string>blockO_ctant-23478.glif</string>\n    <key>blockOctant-23478.stypo</key>\n    <string>blockO_ctant-23478.stypo.glif</string>\n    <key>blockOctant-123478</key>\n    <string>blockO_ctant-123478.glif</string>\n    <key>blockOctant-123478.stypo</key>\n    <string>blockO_ctant-123478.stypo.glif</string>\n    <key>blockOctant-578</key>\n    <string>blockO_ctant-578.glif</string>\n    <key>blockOctant-578.stypo</key>\n    <string>blockO_ctant-578.stypo.glif</string>\n    <key>blockOctant-1578</key>\n    <string>blockO_ctant-1578.glif</string>\n    <key>blockOctant-1578.stypo</key>\n    <string>blockO_ctant-1578.stypo.glif</string>\n    <key>blockOctant-2578</key>\n    <string>blockO_ctant-2578.glif</string>\n    <key>blockOctant-2578.stypo</key>\n    <string>blockO_ctant-2578.stypo.glif</string>\n    <key>blockOctant-12578</key>\n    <string>blockO_ctant-12578.glif</string>\n    <key>blockOctant-12578.stypo</key>\n    <string>blockO_ctant-12578.stypo.glif</string>\n    <key>blockOctant-3578</key>\n    <string>blockO_ctant-3578.glif</string>\n    <key>blockOctant-3578.stypo</key>\n    <string>blockO_ctant-3578.stypo.glif</string>\n    <key>blockOctant-13578</key>\n    <string>blockO_ctant-13578.glif</string>\n    <key>blockOctant-13578.stypo</key>\n    <string>blockO_ctant-13578.stypo.glif</string>\n    <key>blockOctant-23578</key>\n    <string>blockO_ctant-23578.glif</string>\n    <key>blockOctant-23578.stypo</key>\n    <string>blockO_ctant-23578.stypo.glif</string>\n    <key>blockOctant-123578</key>\n    <string>blockO_ctant-123578.glif</string>\n    <key>blockOctant-123578.stypo</key>\n    <string>blockO_ctant-123578.stypo.glif</string>\n    <key>blockOctant-4578</key>\n    <string>blockO_ctant-4578.glif</string>\n    <key>blockOctant-4578.stypo</key>\n    <string>blockO_ctant-4578.stypo.glif</string>\n    <key>blockOctant-14578</key>\n    <string>blockO_ctant-14578.glif</string>\n    <key>blockOctant-14578.stypo</key>\n    <string>blockO_ctant-14578.stypo.glif</string>\n    <key>blockOctant-24578</key>\n    <string>blockO_ctant-24578.glif</string>\n    <key>blockOctant-24578.stypo</key>\n    <string>blockO_ctant-24578.stypo.glif</string>\n    <key>blockOctant-124578</key>\n    <string>blockO_ctant-124578.glif</string>\n    <key>blockOctant-124578.stypo</key>\n    <string>blockO_ctant-124578.stypo.glif</string>\n    <key>blockOctant-34578</key>\n    <string>blockO_ctant-34578.glif</string>\n    <key>blockOctant-34578.stypo</key>\n    <string>blockO_ctant-34578.stypo.glif</string>\n    <key>blockOctant-134578</key>\n    <string>blockO_ctant-134578.glif</string>\n    <key>blockOctant-134578.stypo</key>\n    <string>blockO_ctant-134578.stypo.glif</string>\n    <key>blockOctant-234578</key>\n    <string>blockO_ctant-234578.glif</string>\n    <key>blockOctant-234578.stypo</key>\n    <string>blockO_ctant-234578.stypo.glif</string>\n    <key>blockOctant-1234578</key>\n    <string>blockO_ctant-1234578.glif</string>\n    <key>blockOctant-1234578.stypo</key>\n    <string>blockO_ctant-1234578.stypo.glif</string>\n    <key>blockOctant-678</key>\n    <string>blockO_ctant-678.glif</string>\n    <key>blockOctant-678.stypo</key>\n    <string>blockO_ctant-678.stypo.glif</string>\n    <key>blockOctant-1678</key>\n    <string>blockO_ctant-1678.glif</string>\n    <key>blockOctant-1678.stypo</key>\n    <string>blockO_ctant-1678.stypo.glif</string>\n    <key>blockOctant-2678</key>\n    <string>blockO_ctant-2678.glif</string>\n    <key>blockOctant-2678.stypo</key>\n    <string>blockO_ctant-2678.stypo.glif</string>\n    <key>blockOctant-12678</key>\n    <string>blockO_ctant-12678.glif</string>\n    <key>blockOctant-12678.stypo</key>\n    <string>blockO_ctant-12678.stypo.glif</string>\n    <key>blockOctant-3678</key>\n    <string>blockO_ctant-3678.glif</string>\n    <key>blockOctant-3678.stypo</key>\n    <string>blockO_ctant-3678.stypo.glif</string>\n    <key>blockOctant-13678</key>\n    <string>blockO_ctant-13678.glif</string>\n    <key>blockOctant-13678.stypo</key>\n    <string>blockO_ctant-13678.stypo.glif</string>\n    <key>blockOctant-23678</key>\n    <string>blockO_ctant-23678.glif</string>\n    <key>blockOctant-23678.stypo</key>\n    <string>blockO_ctant-23678.stypo.glif</string>\n    <key>blockOctant-123678</key>\n    <string>blockO_ctant-123678.glif</string>\n    <key>blockOctant-123678.stypo</key>\n    <string>blockO_ctant-123678.stypo.glif</string>\n    <key>blockOctant-4678</key>\n    <string>blockO_ctant-4678.glif</string>\n    <key>blockOctant-4678.stypo</key>\n    <string>blockO_ctant-4678.stypo.glif</string>\n    <key>blockOctant-14678</key>\n    <string>blockO_ctant-14678.glif</string>\n    <key>blockOctant-14678.stypo</key>\n    <string>blockO_ctant-14678.stypo.glif</string>\n    <key>blockOctant-24678</key>\n    <string>blockO_ctant-24678.glif</string>\n    <key>blockOctant-24678.stypo</key>\n    <string>blockO_ctant-24678.stypo.glif</string>\n    <key>blockOctant-124678</key>\n    <string>blockO_ctant-124678.glif</string>\n    <key>blockOctant-124678.stypo</key>\n    <string>blockO_ctant-124678.stypo.glif</string>\n    <key>blockOctant-34678</key>\n    <string>blockO_ctant-34678.glif</string>\n    <key>blockOctant-34678.stypo</key>\n    <string>blockO_ctant-34678.stypo.glif</string>\n    <key>blockOctant-134678</key>\n    <string>blockO_ctant-134678.glif</string>\n    <key>blockOctant-134678.stypo</key>\n    <string>blockO_ctant-134678.stypo.glif</string>\n    <key>blockOctant-234678</key>\n    <string>blockO_ctant-234678.glif</string>\n    <key>blockOctant-234678.stypo</key>\n    <string>blockO_ctant-234678.stypo.glif</string>\n    <key>blockOctant-1234678</key>\n    <string>blockO_ctant-1234678.glif</string>\n    <key>blockOctant-1234678.stypo</key>\n    <string>blockO_ctant-1234678.stypo.glif</string>\n    <key>blockOctant-15678</key>\n    <string>blockO_ctant-15678.glif</string>\n    <key>blockOctant-15678.stypo</key>\n    <string>blockO_ctant-15678.stypo.glif</string>\n    <key>blockOctant-25678</key>\n    <string>blockO_ctant-25678.glif</string>\n    <key>blockOctant-25678.stypo</key>\n    <string>blockO_ctant-25678.stypo.glif</string>\n    <key>blockOctant-125678</key>\n    <string>blockO_ctant-125678.glif</string>\n    <key>blockOctant-125678.stypo</key>\n    <string>blockO_ctant-125678.stypo.glif</string>\n    <key>blockOctant-35678</key>\n    <string>blockO_ctant-35678.glif</string>\n    <key>blockOctant-35678.stypo</key>\n    <string>blockO_ctant-35678.stypo.glif</string>\n    <key>blockOctant-235678</key>\n    <string>blockO_ctant-235678.glif</string>\n    <key>blockOctant-235678.stypo</key>\n    <string>blockO_ctant-235678.stypo.glif</string>\n    <key>blockOctant-1235678</key>\n    <string>blockO_ctant-1235678.glif</string>\n    <key>blockOctant-1235678.stypo</key>\n    <string>blockO_ctant-1235678.stypo.glif</string>\n    <key>blockOctant-45678</key>\n    <string>blockO_ctant-45678.glif</string>\n    <key>blockOctant-45678.stypo</key>\n    <string>blockO_ctant-45678.stypo.glif</string>\n    <key>blockOctant-145678</key>\n    <string>blockO_ctant-145678.glif</string>\n    <key>blockOctant-145678.stypo</key>\n    <string>blockO_ctant-145678.stypo.glif</string>\n    <key>blockOctant-1245678</key>\n    <string>blockO_ctant-1245678.glif</string>\n    <key>blockOctant-1245678.stypo</key>\n    <string>blockO_ctant-1245678.stypo.glif</string>\n    <key>blockOctant-1345678</key>\n    <string>blockO_ctant-1345678.glif</string>\n    <key>blockOctant-1345678.stypo</key>\n    <string>blockO_ctant-1345678.stypo.glif</string>\n    <key>blockOctant-2345678</key>\n    <string>blockO_ctant-2345678.glif</string>\n    <key>blockOctant-2345678.stypo</key>\n    <string>blockO_ctant-2345678.stypo.glif</string>\n    <key>blockSedecimant-1</key>\n    <string>blockS_edecimant-1.glif</string>\n    <key>blockSedecimant-1.stypo</key>\n    <string>blockS_edecimant-1.stypo.glif</string>\n    <key>blockSedecimant-2</key>\n    <string>blockS_edecimant-2.glif</string>\n    <key>blockSedecimant-2.stypo</key>\n    <string>blockS_edecimant-2.stypo.glif</string>\n    <key>blockSedecimant-3</key>\n    <string>blockS_edecimant-3.glif</string>\n    <key>blockSedecimant-3.stypo</key>\n    <string>blockS_edecimant-3.stypo.glif</string>\n    <key>blockSedecimant-4</key>\n    <string>blockS_edecimant-4.glif</string>\n    <key>blockSedecimant-4.stypo</key>\n    <string>blockS_edecimant-4.stypo.glif</string>\n    <key>blockSedecimant-5</key>\n    <string>blockS_edecimant-5.glif</string>\n    <key>blockSedecimant-5.stypo</key>\n    <string>blockS_edecimant-5.stypo.glif</string>\n    <key>blockSedecimant-6</key>\n    <string>blockS_edecimant-6.glif</string>\n    <key>blockSedecimant-6.stypo</key>\n    <string>blockS_edecimant-6.stypo.glif</string>\n    <key>blockSedecimant-7</key>\n    <string>blockS_edecimant-7.glif</string>\n    <key>blockSedecimant-7.stypo</key>\n    <string>blockS_edecimant-7.stypo.glif</string>\n    <key>blockSedecimant-8</key>\n    <string>blockS_edecimant-8.glif</string>\n    <key>blockSedecimant-8.stypo</key>\n    <string>blockS_edecimant-8.stypo.glif</string>\n    <key>blockSedecimant-9</key>\n    <string>blockS_edecimant-9.glif</string>\n    <key>blockSedecimant-9.stypo</key>\n    <string>blockS_edecimant-9.stypo.glif</string>\n    <key>blockSedecimant-A</key>\n    <string>blockS_edecimant-A.glif</string>\n    <key>blockSedecimant-A.stypo</key>\n    <string>blockS_edecimant-A.stypo.glif</string>\n    <key>blockSedecimant-B</key>\n    <string>blockS_edecimant-B.glif</string>\n    <key>blockSedecimant-B.stypo</key>\n    <string>blockS_edecimant-B.stypo.glif</string>\n    <key>blockSedecimant-C</key>\n    <string>blockS_edecimant-C.glif</string>\n    <key>blockSedecimant-C.stypo</key>\n    <string>blockS_edecimant-C.stypo.glif</string>\n    <key>blockSedecimant-D</key>\n    <string>blockS_edecimant-D.glif</string>\n    <key>blockSedecimant-D.stypo</key>\n    <string>blockS_edecimant-D.stypo.glif</string>\n    <key>blockSedecimant-E</key>\n    <string>blockS_edecimant-E.glif</string>\n    <key>blockSedecimant-E.stypo</key>\n    <string>blockS_edecimant-E.stypo.glif</string>\n    <key>blockSedecimant-F</key>\n    <string>blockS_edecimant-F.glif</string>\n    <key>blockSedecimant-F.stypo</key>\n    <string>blockS_edecimant-F.stypo.glif</string>\n    <key>blockSedecimant-G</key>\n    <string>blockS_edecimant-G.glif</string>\n    <key>blockSedecimant-G.stypo</key>\n    <string>blockS_edecimant-G.stypo.glif</string>\n    <key>blockSedecimant-EFG</key>\n    <string>blockS_edecimant-EFG.glif</string>\n    <key>blockSedecimant-EFG.stypo</key>\n    <string>blockS_edecimant-EFG.stypo.glif</string>\n    <key>blockSedecimant-DEF</key>\n    <string>blockS_edecimant-DEF.glif</string>\n    <key>blockSedecimant-DEF.stypo</key>\n    <string>blockS_edecimant-DEF.stypo.glif</string>\n    <key>blockSedecimant-9D</key>\n    <string>blockS_edecimant-9D.glif</string>\n    <key>blockSedecimant-9D.stypo</key>\n    <string>blockS_edecimant-9D.stypo.glif</string>\n    <key>blockSedecimant-59D</key>\n    <string>blockS_edecimant-59D.glif</string>\n    <key>blockSedecimant-59D.stypo</key>\n    <string>blockS_edecimant-59D.stypo.glif</string>\n    <key>blockSedecimant-159</key>\n    <string>blockS_edecimant-159.glif</string>\n    <key>blockSedecimant-159.stypo</key>\n    <string>blockS_edecimant-159.stypo.glif</string>\n    <key>blockSedecimant-15</key>\n    <string>blockS_edecimant-15.glif</string>\n    <key>blockSedecimant-15.stypo</key>\n    <string>blockS_edecimant-15.stypo.glif</string>\n    <key>blockSedecimant-123</key>\n    <string>blockS_edecimant-123.glif</string>\n    <key>blockSedecimant-123.stypo</key>\n    <string>blockS_edecimant-123.stypo.glif</string>\n    <key>blockSedecimant-234</key>\n    <string>blockS_edecimant-234.glif</string>\n    <key>blockSedecimant-234.stypo</key>\n    <string>blockS_edecimant-234.stypo.glif</string>\n    <key>blockSedecimant-48</key>\n    <string>blockS_edecimant-48.glif</string>\n    <key>blockSedecimant-48.stypo</key>\n    <string>blockS_edecimant-48.stypo.glif</string>\n    <key>blockSedecimant-48C</key>\n    <string>blockS_edecimant-48C.glif</string>\n    <key>blockSedecimant-48C.stypo</key>\n    <string>blockS_edecimant-48C.stypo.glif</string>\n    <key>blockSedecimant-8CG</key>\n    <string>blockS_edecimant-8CG.glif</string>\n    <key>blockSedecimant-8CG.stypo</key>\n    <string>blockS_edecimant-8CG.stypo.glif</string>\n    <key>blockSedecimant-CG</key>\n    <string>blockS_edecimant-CG.glif</string>\n    <key>blockSedecimant-CG.stypo</key>\n    <string>blockS_edecimant-CG.stypo.glif</string>\n    <key>verticalOneEighthBlock-2</key>\n    <string>verticalO_neE_ighthB_lock-2.glif</string>\n    <key>verticalOneEighthBlock-2.stypo</key>\n    <string>verticalO_neE_ighthB_lock-2.stypo.glif</string>\n    <key>verticalOneEighthBlock-3</key>\n    <string>verticalO_neE_ighthB_lock-3.glif</string>\n    <key>verticalOneEighthBlock-3.stypo</key>\n    <string>verticalO_neE_ighthB_lock-3.stypo.glif</string>\n    <key>verticalOneEighthBlock-4</key>\n    <string>verticalO_neE_ighthB_lock-4.glif</string>\n    <key>verticalOneEighthBlock-4.stypo</key>\n    <string>verticalO_neE_ighthB_lock-4.stypo.glif</string>\n    <key>verticalOneEighthBlock-5</key>\n    <string>verticalO_neE_ighthB_lock-5.glif</string>\n    <key>verticalOneEighthBlock-5.stypo</key>\n    <string>verticalO_neE_ighthB_lock-5.stypo.glif</string>\n    <key>verticalOneEighthBlock-6</key>\n    <string>verticalO_neE_ighthB_lock-6.glif</string>\n    <key>verticalOneEighthBlock-6.stypo</key>\n    <string>verticalO_neE_ighthB_lock-6.stypo.glif</string>\n    <key>verticalOneEighthBlock-7</key>\n    <string>verticalO_neE_ighthB_lock-7.glif</string>\n    <key>verticalOneEighthBlock-7.stypo</key>\n    <string>verticalO_neE_ighthB_lock-7.stypo.glif</string>\n    <key>horizontalOneEightBlock-2</key>\n    <string>horizontalO_neE_ightB_lock-2.glif</string>\n    <key>horizontalOneEightBlock-2.stypo</key>\n    <string>horizontalO_neE_ightB_lock-2.stypo.glif</string>\n    <key>horizontalOneEightBlock-3</key>\n    <string>horizontalO_neE_ightB_lock-3.glif</string>\n    <key>horizontalOneEightBlock-3.stypo</key>\n    <string>horizontalO_neE_ightB_lock-3.stypo.glif</string>\n    <key>horizontalOneEightBlock-4</key>\n    <string>horizontalO_neE_ightB_lock-4.glif</string>\n    <key>horizontalOneEightBlock-4.stypo</key>\n    <string>horizontalO_neE_ightB_lock-4.stypo.glif</string>\n    <key>horizontalOneEightBlock-5</key>\n    <string>horizontalO_neE_ightB_lock-5.glif</string>\n    <key>horizontalOneEightBlock-5.stypo</key>\n    <string>horizontalO_neE_ightB_lock-5.stypo.glif</string>\n    <key>horizontalOneEightBlock-6</key>\n    <string>horizontalO_neE_ightB_lock-6.glif</string>\n    <key>horizontalOneEightBlock-6.stypo</key>\n    <string>horizontalO_neE_ightB_lock-6.stypo.glif</string>\n    <key>horizontalOneEightBlock-7</key>\n    <string>horizontalO_neE_ightB_lock-7.glif</string>\n    <key>horizontalOneEightBlock-7.stypo</key>\n    <string>horizontalO_neE_ightB_lock-7.stypo.glif</string>\n    <key>leftAndLowerOneEightBlock</key>\n    <string>leftA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>leftAndLowerOneEightBlock.stypo</key>\n    <string>leftA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>leftAndUpperOneEightBlock</key>\n    <string>leftA_ndU_pperO_neE_ightB_lock.glif</string>\n    <key>leftAndUpperOneEightBlock.stypo</key>\n    <string>leftA_ndU_pperO_neE_ightB_lock.stypo.glif</string>\n    <key>rightAndUpperOneEightBlock</key>\n    <string>rightA_ndU_pperO_neE_ightB_lock.glif</string>\n    <key>rightAndUpperOneEightBlock.stypo</key>\n    <string>rightA_ndU_pperO_neE_ightB_lock.stypo.glif</string>\n    <key>rightAndLowerOneEightBlock</key>\n    <string>rightA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>rightAndLowerOneEightBlock.stypo</key>\n    <string>rightA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>upperAndLowerOneEightBlock</key>\n    <string>upperA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>upperAndLowerOneEightBlock.stypo</key>\n    <string>upperA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>upperThreeEighthsBlock</key>\n    <string>upperT_hreeE_ighthsB_lock.glif</string>\n    <key>upperThreeEighthsBlock.stypo</key>\n    <string>upperT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>upperFiveEighthsBlock</key>\n    <string>upperF_iveE_ighthsB_lock.glif</string>\n    <key>upperFiveEighthsBlock.stypo</key>\n    <string>upperF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>upperSevenEighthsBlock</key>\n    <string>upperS_evenE_ighthsB_lock.glif</string>\n    <key>upperSevenEighthsBlock.stypo</key>\n    <string>upperS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>rightOneQuarterBlock</key>\n    <string>rightO_neQ_uarterB_lock.glif</string>\n    <key>rightOneQuarterBlock.stypo</key>\n    <string>rightO_neQ_uarterB_lock.stypo.glif</string>\n    <key>rightThreeEighthsBlock</key>\n    <string>rightT_hreeE_ighthsB_lock.glif</string>\n    <key>rightThreeEighthsBlock.stypo</key>\n    <string>rightT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>rightFiveEighthsBlock</key>\n    <string>rightF_iveE_ighthsB_lock.glif</string>\n    <key>rightFiveEighthsBlock.stypo</key>\n    <string>rightF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>rightThreeQuartersBlock</key>\n    <string>rightT_hreeQ_uartersB_lock.glif</string>\n    <key>rightThreeQuartersBlock.stypo</key>\n    <string>rightT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>rightSevenEighthsBlock</key>\n    <string>rightS_evenE_ighthsB_lock.glif</string>\n    <key>rightSevenEighthsBlock.stypo</key>\n    <string>rightS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>leftTwoThirdsBlock</key>\n    <string>leftT_woT_hirdsB_lock.glif</string>\n    <key>leftTwoThirdsBlock.stypo</key>\n    <string>leftT_woT_hirdsB_lock.stypo.glif</string>\n    <key>leftOneThirdBlock</key>\n    <string>leftO_neT_hirdB_lock.glif</string>\n    <key>leftOneThirdBlock.stypo</key>\n    <string>leftO_neT_hirdB_lock.stypo.glif</string>\n    <key>heavyHorizontalFill</key>\n    <string>heavyH_orizontalF_ill.glif</string>\n    <key>heavyHorizontalFill.stypo</key>\n    <string>heavyH_orizontalF_ill.stypo.glif</string>\n    <key>blockSeparatedQuadrant-1</key>\n    <string>blockS_eparatedQ_uadrant-1.glif</string>\n    <key>blockSeparatedQuadrant-1.stypo</key>\n    <string>blockS_eparatedQ_uadrant-1.stypo.glif</string>\n    <key>blockSeparatedQuadrant-2</key>\n    <string>blockS_eparatedQ_uadrant-2.glif</string>\n    <key>blockSeparatedQuadrant-2.stypo</key>\n    <string>blockS_eparatedQ_uadrant-2.stypo.glif</string>\n    <key>blockSeparatedQuadrant-12</key>\n    <string>blockS_eparatedQ_uadrant-12.glif</string>\n    <key>blockSeparatedQuadrant-12.stypo</key>\n    <string>blockS_eparatedQ_uadrant-12.stypo.glif</string>\n    <key>blockSeparatedQuadrant-3</key>\n    <string>blockS_eparatedQ_uadrant-3.glif</string>\n    <key>blockSeparatedQuadrant-3.stypo</key>\n    <string>blockS_eparatedQ_uadrant-3.stypo.glif</string>\n    <key>blockSeparatedQuadrant-13</key>\n    <string>blockS_eparatedQ_uadrant-13.glif</string>\n    <key>blockSeparatedQuadrant-13.stypo</key>\n    <string>blockS_eparatedQ_uadrant-13.stypo.glif</string>\n    <key>blockSeparatedQuadrant-23</key>\n    <string>blockS_eparatedQ_uadrant-23.glif</string>\n    <key>blockSeparatedQuadrant-23.stypo</key>\n    <string>blockS_eparatedQ_uadrant-23.stypo.glif</string>\n    <key>blockSeparatedQuadrant-123</key>\n    <string>blockS_eparatedQ_uadrant-123.glif</string>\n    <key>blockSeparatedQuadrant-123.stypo</key>\n    <string>blockS_eparatedQ_uadrant-123.stypo.glif</string>\n    <key>blockSeparatedQuadrant-4</key>\n    <string>blockS_eparatedQ_uadrant-4.glif</string>\n    <key>blockSeparatedQuadrant-4.stypo</key>\n    <string>blockS_eparatedQ_uadrant-4.stypo.glif</string>\n    <key>blockSeparatedQuadrant-14</key>\n    <string>blockS_eparatedQ_uadrant-14.glif</string>\n    <key>blockSeparatedQuadrant-14.stypo</key>\n    <string>blockS_eparatedQ_uadrant-14.stypo.glif</string>\n    <key>blockSeparatedQuadrant-24</key>\n    <string>blockS_eparatedQ_uadrant-24.glif</string>\n    <key>blockSeparatedQuadrant-24.stypo</key>\n    <string>blockS_eparatedQ_uadrant-24.stypo.glif</string>\n    <key>blockSeparatedQuadrant-124</key>\n    <string>blockS_eparatedQ_uadrant-124.glif</string>\n    <key>blockSeparatedQuadrant-124.stypo</key>\n    <string>blockS_eparatedQ_uadrant-124.stypo.glif</string>\n    <key>blockSeparatedQuadrant-34</key>\n    <string>blockS_eparatedQ_uadrant-34.glif</string>\n    <key>blockSeparatedQuadrant-34.stypo</key>\n    <string>blockS_eparatedQ_uadrant-34.stypo.glif</string>\n    <key>blockSeparatedQuadrant-134</key>\n    <string>blockS_eparatedQ_uadrant-134.glif</string>\n    <key>blockSeparatedQuadrant-134.stypo</key>\n    <string>blockS_eparatedQ_uadrant-134.stypo.glif</string>\n    <key>blockSeparatedQuadrant-234</key>\n    <string>blockS_eparatedQ_uadrant-234.glif</string>\n    <key>blockSeparatedQuadrant-234.stypo</key>\n    <string>blockS_eparatedQ_uadrant-234.stypo.glif</string>\n    <key>blockSeparatedQuadrant-1234</key>\n    <string>blockS_eparatedQ_uadrant-1234.glif</string>\n    <key>blockSeparatedQuadrant-1234.stypo</key>\n    <string>blockS_eparatedQ_uadrant-1234.stypo.glif</string>\n    <key>blockSeparatedSextant-1</key>\n    <string>blockS_eparatedS_extant-1.glif</string>\n    <key>blockSeparatedSextant-1.stypo</key>\n    <string>blockS_eparatedS_extant-1.stypo.glif</string>\n    <key>blockSeparatedSextant-2</key>\n    <string>blockS_eparatedS_extant-2.glif</string>\n    <key>blockSeparatedSextant-2.stypo</key>\n    <string>blockS_eparatedS_extant-2.stypo.glif</string>\n    <key>blockSeparatedSextant-12</key>\n    <string>blockS_eparatedS_extant-12.glif</string>\n    <key>blockSeparatedSextant-12.stypo</key>\n    <string>blockS_eparatedS_extant-12.stypo.glif</string>\n    <key>blockSeparatedSextant-3</key>\n    <string>blockS_eparatedS_extant-3.glif</string>\n    <key>blockSeparatedSextant-3.stypo</key>\n    <string>blockS_eparatedS_extant-3.stypo.glif</string>\n    <key>blockSeparatedSextant-13</key>\n    <string>blockS_eparatedS_extant-13.glif</string>\n    <key>blockSeparatedSextant-13.stypo</key>\n    <string>blockS_eparatedS_extant-13.stypo.glif</string>\n    <key>blockSeparatedSextant-23</key>\n    <string>blockS_eparatedS_extant-23.glif</string>\n    <key>blockSeparatedSextant-23.stypo</key>\n    <string>blockS_eparatedS_extant-23.stypo.glif</string>\n    <key>blockSeparatedSextant-123</key>\n    <string>blockS_eparatedS_extant-123.glif</string>\n    <key>blockSeparatedSextant-123.stypo</key>\n    <string>blockS_eparatedS_extant-123.stypo.glif</string>\n    <key>blockSeparatedSextant-4</key>\n    <string>blockS_eparatedS_extant-4.glif</string>\n    <key>blockSeparatedSextant-4.stypo</key>\n    <string>blockS_eparatedS_extant-4.stypo.glif</string>\n    <key>blockSeparatedSextant-14</key>\n    <string>blockS_eparatedS_extant-14.glif</string>\n    <key>blockSeparatedSextant-14.stypo</key>\n    <string>blockS_eparatedS_extant-14.stypo.glif</string>\n    <key>blockSeparatedSextant-24</key>\n    <string>blockS_eparatedS_extant-24.glif</string>\n    <key>blockSeparatedSextant-24.stypo</key>\n    <string>blockS_eparatedS_extant-24.stypo.glif</string>\n    <key>blockSeparatedSextant-124</key>\n    <string>blockS_eparatedS_extant-124.glif</string>\n    <key>blockSeparatedSextant-124.stypo</key>\n    <string>blockS_eparatedS_extant-124.stypo.glif</string>\n    <key>blockSeparatedSextant-34</key>\n    <string>blockS_eparatedS_extant-34.glif</string>\n    <key>blockSeparatedSextant-34.stypo</key>\n    <string>blockS_eparatedS_extant-34.stypo.glif</string>\n    <key>blockSeparatedSextant-134</key>\n    <string>blockS_eparatedS_extant-134.glif</string>\n    <key>blockSeparatedSextant-134.stypo</key>\n    <string>blockS_eparatedS_extant-134.stypo.glif</string>\n    <key>blockSeparatedSextant-234</key>\n    <string>blockS_eparatedS_extant-234.glif</string>\n    <key>blockSeparatedSextant-234.stypo</key>\n    <string>blockS_eparatedS_extant-234.stypo.glif</string>\n    <key>blockSeparatedSextant-1234</key>\n    <string>blockS_eparatedS_extant-1234.glif</string>\n    <key>blockSeparatedSextant-1234.stypo</key>\n    <string>blockS_eparatedS_extant-1234.stypo.glif</string>\n    <key>blockSeparatedSextant-5</key>\n    <string>blockS_eparatedS_extant-5.glif</string>\n    <key>blockSeparatedSextant-5.stypo</key>\n    <string>blockS_eparatedS_extant-5.stypo.glif</string>\n    <key>blockSeparatedSextant-15</key>\n    <string>blockS_eparatedS_extant-15.glif</string>\n    <key>blockSeparatedSextant-15.stypo</key>\n    <string>blockS_eparatedS_extant-15.stypo.glif</string>\n    <key>blockSeparatedSextant-25</key>\n    <string>blockS_eparatedS_extant-25.glif</string>\n    <key>blockSeparatedSextant-25.stypo</key>\n    <string>blockS_eparatedS_extant-25.stypo.glif</string>\n    <key>blockSeparatedSextant-125</key>\n    <string>blockS_eparatedS_extant-125.glif</string>\n    <key>blockSeparatedSextant-125.stypo</key>\n    <string>blockS_eparatedS_extant-125.stypo.glif</string>\n    <key>blockSeparatedSextant-35</key>\n    <string>blockS_eparatedS_extant-35.glif</string>\n    <key>blockSeparatedSextant-35.stypo</key>\n    <string>blockS_eparatedS_extant-35.stypo.glif</string>\n    <key>blockSeparatedSextant-135</key>\n    <string>blockS_eparatedS_extant-135.glif</string>\n    <key>blockSeparatedSextant-135.stypo</key>\n    <string>blockS_eparatedS_extant-135.stypo.glif</string>\n    <key>blockSeparatedSextant-235</key>\n    <string>blockS_eparatedS_extant-235.glif</string>\n    <key>blockSeparatedSextant-235.stypo</key>\n    <string>blockS_eparatedS_extant-235.stypo.glif</string>\n    <key>blockSeparatedSextant-1235</key>\n    <string>blockS_eparatedS_extant-1235.glif</string>\n    <key>blockSeparatedSextant-1235.stypo</key>\n    <string>blockS_eparatedS_extant-1235.stypo.glif</string>\n    <key>blockSeparatedSextant-45</key>\n    <string>blockS_eparatedS_extant-45.glif</string>\n    <key>blockSeparatedSextant-45.stypo</key>\n    <string>blockS_eparatedS_extant-45.stypo.glif</string>\n    <key>blockSeparatedSextant-145</key>\n    <string>blockS_eparatedS_extant-145.glif</string>\n    <key>blockSeparatedSextant-145.stypo</key>\n    <string>blockS_eparatedS_extant-145.stypo.glif</string>\n    <key>blockSeparatedSextant-245</key>\n    <string>blockS_eparatedS_extant-245.glif</string>\n    <key>blockSeparatedSextant-245.stypo</key>\n    <string>blockS_eparatedS_extant-245.stypo.glif</string>\n    <key>blockSeparatedSextant-1245</key>\n    <string>blockS_eparatedS_extant-1245.glif</string>\n    <key>blockSeparatedSextant-1245.stypo</key>\n    <string>blockS_eparatedS_extant-1245.stypo.glif</string>\n    <key>blockSeparatedSextant-345</key>\n    <string>blockS_eparatedS_extant-345.glif</string>\n    <key>blockSeparatedSextant-345.stypo</key>\n    <string>blockS_eparatedS_extant-345.stypo.glif</string>\n    <key>blockSeparatedSextant-1345</key>\n    <string>blockS_eparatedS_extant-1345.glif</string>\n    <key>blockSeparatedSextant-1345.stypo</key>\n    <string>blockS_eparatedS_extant-1345.stypo.glif</string>\n    <key>blockSeparatedSextant-2345</key>\n    <string>blockS_eparatedS_extant-2345.glif</string>\n    <key>blockSeparatedSextant-2345.stypo</key>\n    <string>blockS_eparatedS_extant-2345.stypo.glif</string>\n    <key>blockSeparatedSextant-12345</key>\n    <string>blockS_eparatedS_extant-12345.glif</string>\n    <key>blockSeparatedSextant-12345.stypo</key>\n    <string>blockS_eparatedS_extant-12345.stypo.glif</string>\n    <key>blockSeparatedSextant-6</key>\n    <string>blockS_eparatedS_extant-6.glif</string>\n    <key>blockSeparatedSextant-6.stypo</key>\n    <string>blockS_eparatedS_extant-6.stypo.glif</string>\n    <key>blockSeparatedSextant-16</key>\n    <string>blockS_eparatedS_extant-16.glif</string>\n    <key>blockSeparatedSextant-16.stypo</key>\n    <string>blockS_eparatedS_extant-16.stypo.glif</string>\n    <key>blockSeparatedSextant-26</key>\n    <string>blockS_eparatedS_extant-26.glif</string>\n    <key>blockSeparatedSextant-26.stypo</key>\n    <string>blockS_eparatedS_extant-26.stypo.glif</string>\n    <key>blockSeparatedSextant-126</key>\n    <string>blockS_eparatedS_extant-126.glif</string>\n    <key>blockSeparatedSextant-126.stypo</key>\n    <string>blockS_eparatedS_extant-126.stypo.glif</string>\n    <key>blockSeparatedSextant-36</key>\n    <string>blockS_eparatedS_extant-36.glif</string>\n    <key>blockSeparatedSextant-36.stypo</key>\n    <string>blockS_eparatedS_extant-36.stypo.glif</string>\n    <key>blockSeparatedSextant-136</key>\n    <string>blockS_eparatedS_extant-136.glif</string>\n    <key>blockSeparatedSextant-136.stypo</key>\n    <string>blockS_eparatedS_extant-136.stypo.glif</string>\n    <key>blockSeparatedSextant-236</key>\n    <string>blockS_eparatedS_extant-236.glif</string>\n    <key>blockSeparatedSextant-236.stypo</key>\n    <string>blockS_eparatedS_extant-236.stypo.glif</string>\n    <key>blockSeparatedSextant-1236</key>\n    <string>blockS_eparatedS_extant-1236.glif</string>\n    <key>blockSeparatedSextant-1236.stypo</key>\n    <string>blockS_eparatedS_extant-1236.stypo.glif</string>\n    <key>blockSeparatedSextant-46</key>\n    <string>blockS_eparatedS_extant-46.glif</string>\n    <key>blockSeparatedSextant-46.stypo</key>\n    <string>blockS_eparatedS_extant-46.stypo.glif</string>\n    <key>blockSeparatedSextant-146</key>\n    <string>blockS_eparatedS_extant-146.glif</string>\n    <key>blockSeparatedSextant-146.stypo</key>\n    <string>blockS_eparatedS_extant-146.stypo.glif</string>\n    <key>blockSeparatedSextant-246</key>\n    <string>blockS_eparatedS_extant-246.glif</string>\n    <key>blockSeparatedSextant-246.stypo</key>\n    <string>blockS_eparatedS_extant-246.stypo.glif</string>\n    <key>blockSeparatedSextant-1246</key>\n    <string>blockS_eparatedS_extant-1246.glif</string>\n    <key>blockSeparatedSextant-1246.stypo</key>\n    <string>blockS_eparatedS_extant-1246.stypo.glif</string>\n    <key>blockSeparatedSextant-346</key>\n    <string>blockS_eparatedS_extant-346.glif</string>\n    <key>blockSeparatedSextant-346.stypo</key>\n    <string>blockS_eparatedS_extant-346.stypo.glif</string>\n    <key>blockSeparatedSextant-1346</key>\n    <string>blockS_eparatedS_extant-1346.glif</string>\n    <key>blockSeparatedSextant-1346.stypo</key>\n    <string>blockS_eparatedS_extant-1346.stypo.glif</string>\n    <key>blockSeparatedSextant-2346</key>\n    <string>blockS_eparatedS_extant-2346.glif</string>\n    <key>blockSeparatedSextant-2346.stypo</key>\n    <string>blockS_eparatedS_extant-2346.stypo.glif</string>\n    <key>blockSeparatedSextant-12346</key>\n    <string>blockS_eparatedS_extant-12346.glif</string>\n    <key>blockSeparatedSextant-12346.stypo</key>\n    <string>blockS_eparatedS_extant-12346.stypo.glif</string>\n    <key>blockSeparatedSextant-56</key>\n    <string>blockS_eparatedS_extant-56.glif</string>\n    <key>blockSeparatedSextant-56.stypo</key>\n    <string>blockS_eparatedS_extant-56.stypo.glif</string>\n    <key>blockSeparatedSextant-156</key>\n    <string>blockS_eparatedS_extant-156.glif</string>\n    <key>blockSeparatedSextant-156.stypo</key>\n    <string>blockS_eparatedS_extant-156.stypo.glif</string>\n    <key>blockSeparatedSextant-256</key>\n    <string>blockS_eparatedS_extant-256.glif</string>\n    <key>blockSeparatedSextant-256.stypo</key>\n    <string>blockS_eparatedS_extant-256.stypo.glif</string>\n    <key>blockSeparatedSextant-1256</key>\n    <string>blockS_eparatedS_extant-1256.glif</string>\n    <key>blockSeparatedSextant-1256.stypo</key>\n    <string>blockS_eparatedS_extant-1256.stypo.glif</string>\n    <key>blockSeparatedSextant-356</key>\n    <string>blockS_eparatedS_extant-356.glif</string>\n    <key>blockSeparatedSextant-356.stypo</key>\n    <string>blockS_eparatedS_extant-356.stypo.glif</string>\n    <key>blockSeparatedSextant-1356</key>\n    <string>blockS_eparatedS_extant-1356.glif</string>\n    <key>blockSeparatedSextant-1356.stypo</key>\n    <string>blockS_eparatedS_extant-1356.stypo.glif</string>\n    <key>blockSeparatedSextant-2356</key>\n    <string>blockS_eparatedS_extant-2356.glif</string>\n    <key>blockSeparatedSextant-2356.stypo</key>\n    <string>blockS_eparatedS_extant-2356.stypo.glif</string>\n    <key>blockSeparatedSextant-12356</key>\n    <string>blockS_eparatedS_extant-12356.glif</string>\n    <key>blockSeparatedSextant-12356.stypo</key>\n    <string>blockS_eparatedS_extant-12356.stypo.glif</string>\n    <key>blockSeparatedSextant-456</key>\n    <string>blockS_eparatedS_extant-456.glif</string>\n    <key>blockSeparatedSextant-456.stypo</key>\n    <string>blockS_eparatedS_extant-456.stypo.glif</string>\n    <key>blockSeparatedSextant-1456</key>\n    <string>blockS_eparatedS_extant-1456.glif</string>\n    <key>blockSeparatedSextant-1456.stypo</key>\n    <string>blockS_eparatedS_extant-1456.stypo.glif</string>\n    <key>blockSeparatedSextant-2456</key>\n    <string>blockS_eparatedS_extant-2456.glif</string>\n    <key>blockSeparatedSextant-2456.stypo</key>\n    <string>blockS_eparatedS_extant-2456.stypo.glif</string>\n    <key>blockSeparatedSextant-12456</key>\n    <string>blockS_eparatedS_extant-12456.glif</string>\n    <key>blockSeparatedSextant-12456.stypo</key>\n    <string>blockS_eparatedS_extant-12456.stypo.glif</string>\n    <key>blockSeparatedSextant-3456</key>\n    <string>blockS_eparatedS_extant-3456.glif</string>\n    <key>blockSeparatedSextant-3456.stypo</key>\n    <string>blockS_eparatedS_extant-3456.stypo.glif</string>\n    <key>blockSeparatedSextant-13456</key>\n    <string>blockS_eparatedS_extant-13456.glif</string>\n    <key>blockSeparatedSextant-13456.stypo</key>\n    <string>blockS_eparatedS_extant-13456.stypo.glif</string>\n    <key>blockSeparatedSextant-23456</key>\n    <string>blockS_eparatedS_extant-23456.glif</string>\n    <key>blockSeparatedSextant-23456.stypo</key>\n    <string>blockS_eparatedS_extant-23456.stypo.glif</string>\n    <key>blockSeparatedSextant-123456</key>\n    <string>blockS_eparatedS_extant-123456.glif</string>\n    <key>blockSeparatedSextant-123456.stypo</key>\n    <string>blockS_eparatedS_extant-123456.stypo.glif</string>\n    <key>segmentedDigit0</key>\n    <string>segmentedD_igit0.glif</string>\n    <key>segmentedDigit1</key>\n    <string>segmentedD_igit1.glif</string>\n    <key>segmentedDigit2</key>\n    <string>segmentedD_igit2.glif</string>\n    <key>segmentedDigit3</key>\n    <string>segmentedD_igit3.glif</string>\n    <key>segmentedDigit4</key>\n    <string>segmentedD_igit4.glif</string>\n    <key>segmentedDigit5</key>\n    <string>segmentedD_igit5.glif</string>\n    <key>segmentedDigit6</key>\n    <string>segmentedD_igit6.glif</string>\n    <key>segmentedDigit7</key>\n    <string>segmentedD_igit7.glif</string>\n    <key>segmentedDigit8</key>\n    <string>segmentedD_igit8.glif</string>\n    <key>segmentedDigit9</key>\n    <string>segmentedD_igit9.glif</string>\n    <key>largeType-1CE1A</key>\n    <string>largeT_ype-1CE1A.glif</string>\n    <key>largeType-1CE1A.stypo</key>\n    <string>largeT_ype-1CE1A.stypo.glif</string>\n    <key>largeType-1CE1B</key>\n    <string>largeT_ype-1CE1B.glif</string>\n    <key>largeType-1CE1B.stypo</key>\n    <string>largeT_ype-1CE1B.stypo.glif</string>\n    <key>largeType-1CE1C</key>\n    <string>largeT_ype-1CE1C.glif</string>\n    <key>largeType-1CE1C.stypo</key>\n    <string>largeT_ype-1CE1C.stypo.glif</string>\n    <key>largeType-1CE1D</key>\n    <string>largeT_ype-1CE1D.glif</string>\n    <key>largeType-1CE1D.stypo</key>\n    <string>largeT_ype-1CE1D.stypo.glif</string>\n    <key>largeType-1CE1E</key>\n    <string>largeT_ype-1CE1E.glif</string>\n    <key>largeType-1CE1E.stypo</key>\n    <string>largeT_ype-1CE1E.stypo.glif</string>\n    <key>largeType-1CE1F</key>\n    <string>largeT_ype-1CE1F.glif</string>\n    <key>largeType-1CE1F.stypo</key>\n    <string>largeT_ype-1CE1F.stypo.glif</string>\n    <key>largeType-1CE20</key>\n    <string>largeT_ype-1CE20.glif</string>\n    <key>largeType-1CE20.stypo</key>\n    <string>largeT_ype-1CE20.stypo.glif</string>\n    <key>largeType-1CE21</key>\n    <string>largeT_ype-1CE21.glif</string>\n    <key>largeType-1CE21.stypo</key>\n    <string>largeT_ype-1CE21.stypo.glif</string>\n    <key>largeType-1CE22</key>\n    <string>largeT_ype-1CE22.glif</string>\n    <key>largeType-1CE22.stypo</key>\n    <string>largeT_ype-1CE22.stypo.glif</string>\n    <key>largeType-1CE23</key>\n    <string>largeT_ype-1CE23.glif</string>\n    <key>largeType-1CE23.stypo</key>\n    <string>largeT_ype-1CE23.stypo.glif</string>\n    <key>largeType-1CE24</key>\n    <string>largeT_ype-1CE24.glif</string>\n    <key>largeType-1CE24.stypo</key>\n    <string>largeT_ype-1CE24.stypo.glif</string>\n    <key>largeType-1CE25</key>\n    <string>largeT_ype-1CE25.glif</string>\n    <key>largeType-1CE25.stypo</key>\n    <string>largeT_ype-1CE25.stypo.glif</string>\n    <key>largeType-1CE26</key>\n    <string>largeT_ype-1CE26.glif</string>\n    <key>largeType-1CE26.stypo</key>\n    <string>largeT_ype-1CE26.stypo.glif</string>\n    <key>largeType-1CE27</key>\n    <string>largeT_ype-1CE27.glif</string>\n    <key>largeType-1CE27.stypo</key>\n    <string>largeT_ype-1CE27.stypo.glif</string>\n    <key>largeType-1CE28</key>\n    <string>largeT_ype-1CE28.glif</string>\n    <key>largeType-1CE28.stypo</key>\n    <string>largeT_ype-1CE28.stypo.glif</string>\n    <key>largeType-1CE29</key>\n    <string>largeT_ype-1CE29.glif</string>\n    <key>largeType-1CE29.stypo</key>\n    <string>largeT_ype-1CE29.stypo.glif</string>\n    <key>largeType-1CE2A</key>\n    <string>largeT_ype-1CE2A.glif</string>\n    <key>largeType-1CE2A.stypo</key>\n    <string>largeT_ype-1CE2A.stypo.glif</string>\n    <key>largeType-1CE2B</key>\n    <string>largeT_ype-1CE2B.glif</string>\n    <key>largeType-1CE2B.stypo</key>\n    <string>largeT_ype-1CE2B.stypo.glif</string>\n    <key>largeType-1CE2C</key>\n    <string>largeT_ype-1CE2C.glif</string>\n    <key>largeType-1CE2C.stypo</key>\n    <string>largeT_ype-1CE2C.stypo.glif</string>\n    <key>largeType-1CE2D</key>\n    <string>largeT_ype-1CE2D.glif</string>\n    <key>largeType-1CE2D.stypo</key>\n    <string>largeT_ype-1CE2D.stypo.glif</string>\n    <key>largeType-1CE2E</key>\n    <string>largeT_ype-1CE2E.glif</string>\n    <key>largeType-1CE2E.stypo</key>\n    <string>largeT_ype-1CE2E.stypo.glif</string>\n    <key>largeType-1CE2F</key>\n    <string>largeT_ype-1CE2F.glif</string>\n    <key>largeType-1CE2F.stypo</key>\n    <string>largeT_ype-1CE2F.stypo.glif</string>\n    <key>largeType-1CE30</key>\n    <string>largeT_ype-1CE30.glif</string>\n    <key>largeType-1CE30.stypo</key>\n    <string>largeT_ype-1CE30.stypo.glif</string>\n    <key>largeType-1CE31</key>\n    <string>largeT_ype-1CE31.glif</string>\n    <key>largeType-1CE31.stypo</key>\n    <string>largeT_ype-1CE31.stypo.glif</string>\n    <key>largeType-1CE32</key>\n    <string>largeT_ype-1CE32.glif</string>\n    <key>largeType-1CE32.stypo</key>\n    <string>largeT_ype-1CE32.stypo.glif</string>\n    <key>largeType-1CE33</key>\n    <string>largeT_ype-1CE33.glif</string>\n    <key>largeType-1CE33.stypo</key>\n    <string>largeT_ype-1CE33.stypo.glif</string>\n    <key>largeType-1CE34</key>\n    <string>largeT_ype-1CE34.glif</string>\n    <key>largeType-1CE34.stypo</key>\n    <string>largeT_ype-1CE34.stypo.glif</string>\n    <key>largeType-1CE35</key>\n    <string>largeT_ype-1CE35.glif</string>\n    <key>largeType-1CE35.stypo</key>\n    <string>largeT_ype-1CE35.stypo.glif</string>\n    <key>largeType-1CE36</key>\n    <string>largeT_ype-1CE36.glif</string>\n    <key>largeType-1CE36.stypo</key>\n    <string>largeT_ype-1CE36.stypo.glif</string>\n    <key>largeType-1CE37</key>\n    <string>largeT_ype-1CE37.glif</string>\n    <key>largeType-1CE37.stypo</key>\n    <string>largeT_ype-1CE37.stypo.glif</string>\n    <key>largeType-1CE38</key>\n    <string>largeT_ype-1CE38.glif</string>\n    <key>largeType-1CE38.stypo</key>\n    <string>largeT_ype-1CE38.stypo.glif</string>\n    <key>largeType-1CE39</key>\n    <string>largeT_ype-1CE39.glif</string>\n    <key>largeType-1CE39.stypo</key>\n    <string>largeT_ype-1CE39.stypo.glif</string>\n    <key>largeType-1CE3A</key>\n    <string>largeT_ype-1CE3A.glif</string>\n    <key>largeType-1CE3A.stypo</key>\n    <string>largeT_ype-1CE3A.stypo.glif</string>\n    <key>largeType-1CE3B</key>\n    <string>largeT_ype-1CE3B.glif</string>\n    <key>largeType-1CE3B.stypo</key>\n    <string>largeT_ype-1CE3B.stypo.glif</string>\n    <key>largeType-1CE3C</key>\n    <string>largeT_ype-1CE3C.glif</string>\n    <key>largeType-1CE3C.stypo</key>\n    <string>largeT_ype-1CE3C.stypo.glif</string>\n    <key>largeType-1CE3D</key>\n    <string>largeT_ype-1CE3D.glif</string>\n    <key>largeType-1CE3D.stypo</key>\n    <string>largeT_ype-1CE3D.stypo.glif</string>\n    <key>largeType-1CE3E</key>\n    <string>largeT_ype-1CE3E.glif</string>\n    <key>largeType-1CE3E.stypo</key>\n    <string>largeT_ype-1CE3E.stypo.glif</string>\n    <key>largeType-1CE3F</key>\n    <string>largeT_ype-1CE3F.glif</string>\n    <key>largeType-1CE3F.stypo</key>\n    <string>largeT_ype-1CE3F.stypo.glif</string>\n    <key>largeType-1CE40</key>\n    <string>largeT_ype-1CE40.glif</string>\n    <key>largeType-1CE40.stypo</key>\n    <string>largeT_ype-1CE40.stypo.glif</string>\n    <key>largeType-1CE41</key>\n    <string>largeT_ype-1CE41.glif</string>\n    <key>largeType-1CE41.stypo</key>\n    <string>largeT_ype-1CE41.stypo.glif</string>\n    <key>largeType-1CE42</key>\n    <string>largeT_ype-1CE42.glif</string>\n    <key>largeType-1CE42.stypo</key>\n    <string>largeT_ype-1CE42.stypo.glif</string>\n    <key>largeType-1CE43</key>\n    <string>largeT_ype-1CE43.glif</string>\n    <key>largeType-1CE43.stypo</key>\n    <string>largeT_ype-1CE43.stypo.glif</string>\n    <key>largeType-1CE44</key>\n    <string>largeT_ype-1CE44.glif</string>\n    <key>largeType-1CE44.stypo</key>\n    <string>largeT_ype-1CE44.stypo.glif</string>\n    <key>largeType-1CE45</key>\n    <string>largeT_ype-1CE45.glif</string>\n    <key>largeType-1CE45.stypo</key>\n    <string>largeT_ype-1CE45.stypo.glif</string>\n    <key>largeType-1CE46</key>\n    <string>largeT_ype-1CE46.glif</string>\n    <key>largeType-1CE46.stypo</key>\n    <string>largeT_ype-1CE46.stypo.glif</string>\n    <key>largeType-1CE47</key>\n    <string>largeT_ype-1CE47.glif</string>\n    <key>largeType-1CE47.stypo</key>\n    <string>largeT_ype-1CE47.stypo.glif</string>\n    <key>largeType-1CE48</key>\n    <string>largeT_ype-1CE48.glif</string>\n    <key>largeType-1CE48.stypo</key>\n    <string>largeT_ype-1CE48.stypo.glif</string>\n    <key>largeType-1CE49</key>\n    <string>largeT_ype-1CE49.glif</string>\n    <key>largeType-1CE49.stypo</key>\n    <string>largeT_ype-1CE49.stypo.glif</string>\n    <key>largeType-1CE4A</key>\n    <string>largeT_ype-1CE4A.glif</string>\n    <key>largeType-1CE4A.stypo</key>\n    <string>largeT_ype-1CE4A.stypo.glif</string>\n    <key>largeType-1CE4B</key>\n    <string>largeT_ype-1CE4B.glif</string>\n    <key>largeType-1CE4B.stypo</key>\n    <string>largeT_ype-1CE4B.stypo.glif</string>\n    <key>largeType-1CE4C</key>\n    <string>largeT_ype-1CE4C.glif</string>\n    <key>largeType-1CE4C.stypo</key>\n    <string>largeT_ype-1CE4C.stypo.glif</string>\n    <key>largeType-1CE4D</key>\n    <string>largeT_ype-1CE4D.glif</string>\n    <key>largeType-1CE4D.stypo</key>\n    <string>largeT_ype-1CE4D.stypo.glif</string>\n    <key>largeType-1CE4E</key>\n    <string>largeT_ype-1CE4E.glif</string>\n    <key>largeType-1CE4E.stypo</key>\n    <string>largeT_ype-1CE4E.stypo.glif</string>\n    <key>largeType-1CE4F</key>\n    <string>largeT_ype-1CE4F.glif</string>\n    <key>largeType-1CE4F.stypo</key>\n    <string>largeT_ype-1CE4F.stypo.glif</string>\n    <key>largeType-1CE50</key>\n    <string>largeT_ype-1CE50.glif</string>\n    <key>largeType-1CE50.stypo</key>\n    <string>largeT_ype-1CE50.stypo.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/copyright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"copyright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A9\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"15\"/>\n      <point x=\"1150\" y=\"263\"/>\n      <point x=\"1150\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1150\" y=\"1146\"/>\n      <point x=\"950\" y=\"1405\"/>\n      <point x=\"600\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"1405\"/>\n      <point x=\"50\" y=\"1146\"/>\n      <point x=\"50\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"50\" y=\"263\"/>\n      <point x=\"250\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"652\" y=\"414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"414\"/>\n      <point x=\"802\" y=\"420\"/>\n      <point x=\"872\" y=\"444\" type=\"curve\"/>\n      <point x=\"848\" y=\"532\" type=\"line\"/>\n      <point x=\"793\" y=\"516\"/>\n      <point x=\"735\" y=\"506\"/>\n      <point x=\"676\" y=\"506\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"506\"/>\n      <point x=\"429\" y=\"582\"/>\n      <point x=\"429\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"429\" y=\"845\"/>\n      <point x=\"504\" y=\"914\"/>\n      <point x=\"636\" y=\"914\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"914\"/>\n      <point x=\"770\" y=\"882\"/>\n      <point x=\"807\" y=\"828\" type=\"curve\"/>\n      <point x=\"877\" y=\"890\" type=\"line\"/>\n      <point x=\"842\" y=\"963\"/>\n      <point x=\"757\" y=\"1006\"/>\n      <point x=\"644\" y=\"1006\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"1006\"/>\n      <point x=\"333\" y=\"898\"/>\n      <point x=\"333\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"520\"/>\n      <point x=\"449\" y=\"414\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"105\"/>\n      <point x=\"142\" y=\"320\"/>\n      <point x=\"142\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"1087\"/>\n      <point x=\"309\" y=\"1313\"/>\n      <point x=\"600\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"1313\"/>\n      <point x=\"1058\" y=\"1087\"/>\n      <point x=\"1058\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"320\"/>\n      <point x=\"891\" y=\"105\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/crosshatchF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"crosshatchFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A6\"/>\n  <note>\nuni25A6\n</note>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"815\" type=\"line\"/>\n      <point x=\"1051\" y=\"815\" type=\"line\"/>\n      <point x=\"1051\" y=\"905\" type=\"line\"/>\n      <point x=\"149\" y=\"905\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"405\" y=\"259\" type=\"line\"/>\n      <point x=\"495\" y=\"259\" type=\"line\"/>\n      <point x=\"495\" y=\"1161\" type=\"line\"/>\n      <point x=\"405\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"515\" type=\"line\"/>\n      <point x=\"1051\" y=\"515\" type=\"line\"/>\n      <point x=\"1051\" y=\"605\" type=\"line\"/>\n      <point x=\"149\" y=\"605\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"705\" y=\"259\" type=\"line\"/>\n      <point x=\"795\" y=\"259\" type=\"line\"/>\n      <point x=\"795\" y=\"1161\" type=\"line\"/>\n      <point x=\"705\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/cuberoot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cuberoot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0606\"/>\n  <guideline x=\"317\" y=\"690\" angle=\"0\"/>\n  <guideline x=\"527\" y=\"289\" angle=\"270\"/>\n  <outline>\n    <component base=\"_cuberoot_fourthroot-ar\"/>\n    <component base=\"three-persian.small01\" xOffset=\"110\" yOffset=\"-115\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_cuberoot_fourthroot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>_cuberoot_fourthroot-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_cuberoot_fourthroot-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/currency.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"currency\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A4\"/>\n  <outline>\n    <contour>\n      <point x=\"603\" y=\"300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"300\"/>\n      <point x=\"1003\" y=\"459\"/>\n      <point x=\"1003\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"941\"/>\n      <point x=\"845\" y=\"1100\"/>\n      <point x=\"603\" y=\"1100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"1100\"/>\n      <point x=\"203\" y=\"941\"/>\n      <point x=\"203\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"203\" y=\"459\"/>\n      <point x=\"361\" y=\"300\"/>\n    </contour>\n    <contour>\n      <point x=\"172\" y=\"189\" type=\"line\"/>\n      <point x=\"372\" y=\"404\" type=\"line\"/>\n      <point x=\"279\" y=\"450\" type=\"line\"/>\n      <point x=\"96\" y=\"263\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1028\" y=\"189\" type=\"line\"/>\n      <point x=\"1104\" y=\"263\" type=\"line\"/>\n      <point x=\"902\" y=\"471\" type=\"line\"/>\n      <point x=\"824\" y=\"410\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"603\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"390\"/>\n      <point x=\"299\" y=\"513\"/>\n      <point x=\"299\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"299\" y=\"887\"/>\n      <point x=\"419\" y=\"1010\"/>\n      <point x=\"603\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"1010\"/>\n      <point x=\"907\" y=\"887\"/>\n      <point x=\"907\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"513\"/>\n      <point x=\"787\" y=\"390\"/>\n    </contour>\n    <contour>\n      <point x=\"282\" y=\"946\" type=\"line\"/>\n      <point x=\"379\" y=\"988\" type=\"line\"/>\n      <point x=\"172\" y=\"1201\" type=\"line\"/>\n      <point x=\"96\" y=\"1135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"919\" y=\"946\" type=\"line\"/>\n      <point x=\"1104\" y=\"1135\" type=\"line\"/>\n      <point x=\"1028\" y=\"1201\" type=\"line\"/>\n      <point x=\"826\" y=\"994\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/d.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"d\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0064\"/>\n  <anchor x=\"540\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"530\" name=\"center\"/>\n  <anchor x=\"961\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1157\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"543\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"-20\"/>\n      <point x=\"876\" y=\"83\"/>\n      <point x=\"910\" y=\"250\" type=\"curve\"/>\n      <point x=\"986\" y=\"250\" type=\"line\"/>\n      <point x=\"914\" y=\"524\" type=\"line\"/>\n      <point x=\"914\" y=\"227\"/>\n      <point x=\"794\" y=\"72\"/>\n      <point x=\"563\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"335\" y=\"72\"/>\n      <point x=\"216\" y=\"226\"/>\n      <point x=\"216\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"828\"/>\n      <point x=\"334\" y=\"988\"/>\n      <point x=\"561\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"988\"/>\n      <point x=\"914\" y=\"833\"/>\n      <point x=\"914\" y=\"535\" type=\"curve\"/>\n      <point x=\"976\" y=\"822\" type=\"line\"/>\n      <point x=\"906\" y=\"822\" type=\"line\"/>\n      <point x=\"873\" y=\"992\"/>\n      <point x=\"750\" y=\"1080\"/>\n      <point x=\"549\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"1080\"/>\n      <point x=\"120\" y=\"888\"/>\n      <point x=\"120\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"120\" y=\"165\"/>\n      <point x=\"265\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"935\" y=\"-10\" type=\"line\"/>\n      <point x=\"1008\" y=\"-5\" type=\"line\"/>\n      <point x=\"1008\" y=\"1500\" type=\"line\"/>\n      <point x=\"914\" y=\"1500\" type=\"line\"/>\n      <point x=\"914\" y=\"268\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-20\" yOffset=\"313\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-20\" yOffset=\"313\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"280\" yOffset=\"313\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0636\"/>\n  <outline>\n    <component base=\"sad-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"280\" yOffset=\"313\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"180\" yOffset=\"303\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dad-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"180\" yOffset=\"303\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-160\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-160\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FB\"/>\n  <outline>\n    <component base=\"dad-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dadDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dad-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dagesh-hb\" format=\"2\">\n  <unicode hex=\"05BC\"/>\n  <anchor x=\"600\" y=\"544\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"454\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"454\"/>\n      <point x=\"691\" y=\"494\"/>\n      <point x=\"691\" y=\"544\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"594\"/>\n      <point x=\"650\" y=\"635\"/>\n      <point x=\"600\" y=\"635\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"635\"/>\n      <point x=\"509\" y=\"594\"/>\n      <point x=\"509\" y=\"544\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"494\"/>\n      <point x=\"550\" y=\"454\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dagger.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dagger\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2020\"/>\n  <outline>\n    <contour>\n      <point x=\"555\" y=\"272\" type=\"line\"/>\n      <point x=\"645\" y=\"272\" type=\"line\"/>\n      <point x=\"645\" y=\"1440\" type=\"line\"/>\n      <point x=\"555\" y=\"1440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"246\" y=\"1004\" type=\"line\"/>\n      <point x=\"602\" y=\"1004\" type=\"line\"/>\n      <point x=\"954\" y=\"1004\" type=\"line\"/>\n      <point x=\"954\" y=\"1092\" type=\"line\"/>\n      <point x=\"602\" y=\"1092\" type=\"line\"/>\n      <point x=\"246\" y=\"1092\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/daggerdbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"daggerdbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2021\"/>\n  <outline>\n    <contour>\n      <point x=\"246\" y=\"1059\" type=\"line\"/>\n      <point x=\"602\" y=\"1059\" type=\"line\"/>\n      <point x=\"954\" y=\"1059\" type=\"line\"/>\n      <point x=\"954\" y=\"1147\" type=\"line\"/>\n      <point x=\"602\" y=\"1147\" type=\"line\"/>\n      <point x=\"246\" y=\"1147\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"272\" type=\"line\"/>\n      <point x=\"644\" y=\"272\" type=\"line\"/>\n      <point x=\"644\" y=\"620\" type=\"line\"/>\n      <point x=\"554\" y=\"620\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"246\" y=\"585\" type=\"line\"/>\n      <point x=\"602\" y=\"585\" type=\"line\"/>\n      <point x=\"954\" y=\"585\" type=\"line\"/>\n      <point x=\"954\" y=\"673\" type=\"line\"/>\n      <point x=\"602\" y=\"673\" type=\"line\"/>\n      <point x=\"246\" y=\"673\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"660\" type=\"line\"/>\n      <point x=\"644\" y=\"660\" type=\"line\"/>\n      <point x=\"644\" y=\"1104\" type=\"line\"/>\n      <point x=\"554\" y=\"1104\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"1082\" type=\"line\"/>\n      <point x=\"644\" y=\"1082\" type=\"line\"/>\n      <point x=\"644\" y=\"1440\" type=\"line\"/>\n      <point x=\"554\" y=\"1440\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dahal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dahal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"36\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dahal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dahal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068C\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"16\" yOffset=\"502\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"562\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"562\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"639\" y=\"1274\" name=\"top\"/>\n  <anchor x=\"636\" y=\"1024\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"458\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"640\" y=\"-3\"/>\n      <point x=\"831\" y=\"43\"/>\n      <point x=\"935\" y=\"155\" type=\"curve\"/>\n      <point x=\"863\" y=\"179\" type=\"line\"/>\n      <point x=\"923\" y=\"32\"/>\n      <point x=\"1009\" y=\"-2\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1261\" y=\"4\"/>\n      <point x=\"1261\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1261\" y=\"75\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1007\" y=\"91\"/>\n      <point x=\"975\" y=\"153\"/>\n      <point x=\"915\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"946\" type=\"line\"/>\n      <point x=\"603\" y=\"916\" type=\"line\"/>\n      <point x=\"857\" y=\"197\" type=\"line\"/>\n      <point x=\"752\" y=\"125\"/>\n      <point x=\"596\" y=\"91\"/>\n      <point x=\"468\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"371\" y=\"91\"/>\n      <point x=\"283\" y=\"99\"/>\n      <point x=\"191\" y=\"126\" type=\"curve\"/>\n      <point x=\"181\" y=\"36\" type=\"line\"/>\n      <point x=\"272\" y=\"3\"/>\n      <point x=\"371\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062F\"/>\n  <anchor x=\"572\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"572\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"619\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"616\" y=\"1034\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"537\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"-3\"/>\n      <point x=\"982\" y=\"110\"/>\n      <point x=\"982\" y=\"288\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"475\"/>\n      <point x=\"816\" y=\"700\"/>\n      <point x=\"598\" y=\"954\" type=\"curve\"/>\n      <point x=\"527\" y=\"899\" type=\"line\"/>\n      <point x=\"735\" y=\"646\"/>\n      <point x=\"890\" y=\"435\"/>\n      <point x=\"890\" y=\"283\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"165\"/>\n      <point x=\"794\" y=\"91\"/>\n      <point x=\"542\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"91\"/>\n      <point x=\"308\" y=\"111\"/>\n      <point x=\"205\" y=\"144\" type=\"curve\"/>\n      <point x=\"190\" y=\"53\" type=\"line\"/>\n      <point x=\"282\" y=\"15\"/>\n      <point x=\"423\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068A\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalD_otbelowT_ah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalDotbelowTah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n    <component base=\"_tahabove\" xOffset=\"72\" yOffset=\"613\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dal-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dal-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalD_otbelowT_ah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalDotbelowTah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068B\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n    <component base=\"_tahabove\" xOffset=\"52\" yOffset=\"623\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dal-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dal-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalF_ourdots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalFourdots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"36\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalF_ourdots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalFourdots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0690\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"16\" yOffset=\"502\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"-67\" yOffset=\"-75\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0689\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"-17\" yOffset=\"-75\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dal-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AE\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_hreedotsdown-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalThreedotsdown-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"36\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_hreedotsdown-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalThreedotsdown-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068F\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"16\" yOffset=\"502\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalTwodotsverticalbelowTahabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n    <component base=\"_tahabove\" xOffset=\"72\" yOffset=\"613\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dal-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dal-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalTwodotsverticalbelowTahabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0759\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n    <component base=\"_tahabove\" xOffset=\"52\" yOffset=\"623\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dal-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dal-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalV_invertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalVinvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"36\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalV_invertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalVinvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06EE\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"16\" yOffset=\"502\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalV_invertedbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalVinvertedbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalV_invertedbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalVinvertedbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075A\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"_vinvertedbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dalet-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dalet-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D3\"/>\n  <anchor x=\"461\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"753\" y=\"0\" type=\"line\"/>\n      <point x=\"852\" y=\"0\" type=\"line\"/>\n      <point x=\"852\" y=\"1200\" type=\"line\"/>\n      <point x=\"753\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"98\" y=\"1101\" type=\"line\"/>\n      <point x=\"846\" y=\"1101\" type=\"line\"/>\n      <point x=\"1033\" y=\"1118\" type=\"line\"/>\n      <point x=\"1033\" y=\"1200\" type=\"line\"/>\n      <point x=\"98\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/daletdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"daletdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB33\"/>\n  <outline>\n    <component base=\"dalet-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-139\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/damma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"damma-ar\" format=\"2\">\n  <unicode hex=\"064F\"/>\n  <anchor x=\"566\" y=\"1114\" name=\"_top\"/>\n  <anchor x=\"593\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"338\" y=\"1117\" type=\"line\"/>\n      <point x=\"705\" y=\"1215\"/>\n      <point x=\"799\" y=\"1286\"/>\n      <point x=\"799\" y=\"1412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"1506\"/>\n      <point x=\"744\" y=\"1567\"/>\n      <point x=\"652\" y=\"1567\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"1567\"/>\n      <point x=\"491\" y=\"1502\"/>\n      <point x=\"491\" y=\"1407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"1334\"/>\n      <point x=\"527\" y=\"1278\"/>\n      <point x=\"574\" y=\"1251\" type=\"curve\"/>\n      <point x=\"648\" y=\"1284\" type=\"line\"/>\n      <point x=\"595\" y=\"1315\"/>\n      <point x=\"573\" y=\"1359\"/>\n      <point x=\"573\" y=\"1407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"1452\"/>\n      <point x=\"601\" y=\"1483\"/>\n      <point x=\"649\" y=\"1483\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1483\"/>\n      <point x=\"717\" y=\"1452\"/>\n      <point x=\"717\" y=\"1403\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"1322\"/>\n      <point x=\"663\" y=\"1286\"/>\n      <point x=\"333\" y=\"1197\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dammatan-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dammatan-ar\" format=\"2\">\n  <unicode hex=\"064C\"/>\n  <anchor x=\"586\" y=\"1134\" name=\"_top\"/>\n  <anchor x=\"613\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"291\" y=\"1117\" type=\"line\"/>\n      <point x=\"768\" y=\"1215\"/>\n      <point x=\"862\" y=\"1282\"/>\n      <point x=\"862\" y=\"1412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"1506\"/>\n      <point x=\"807\" y=\"1567\"/>\n      <point x=\"715\" y=\"1567\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"623\" y=\"1567\"/>\n      <point x=\"554\" y=\"1502\"/>\n      <point x=\"554\" y=\"1407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"554\" y=\"1334\"/>\n      <point x=\"592\" y=\"1277\"/>\n      <point x=\"631\" y=\"1237\" type=\"curve\"/>\n      <point x=\"700\" y=\"1275\" type=\"line\"/>\n      <point x=\"655\" y=\"1316\"/>\n      <point x=\"636\" y=\"1356\"/>\n      <point x=\"636\" y=\"1407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"1452\"/>\n      <point x=\"664\" y=\"1483\"/>\n      <point x=\"710\" y=\"1483\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"1483\"/>\n      <point x=\"780\" y=\"1452\"/>\n      <point x=\"780\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1330\"/>\n      <point x=\"724\" y=\"1297\"/>\n      <point x=\"434\" y=\"1234\" type=\"curve\"/>\n      <point x=\"411\" y=\"1191\" type=\"line\"/>\n      <point x=\"472\" y=\"1218\"/>\n      <point x=\"491\" y=\"1258\"/>\n      <point x=\"491\" y=\"1321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"1412\"/>\n      <point x=\"455\" y=\"1458\"/>\n      <point x=\"384\" y=\"1458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"340\" y=\"1458\"/>\n      <point x=\"306\" y=\"1441\"/>\n      <point x=\"275\" y=\"1424\" type=\"curve\"/>\n      <point x=\"279\" y=\"1353\" type=\"line\"/>\n      <point x=\"308\" y=\"1365\"/>\n      <point x=\"335\" y=\"1374\"/>\n      <point x=\"357\" y=\"1374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"1374\"/>\n      <point x=\"409\" y=\"1357\"/>\n      <point x=\"409\" y=\"1300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"1230\"/>\n      <point x=\"374\" y=\"1222\"/>\n      <point x=\"286\" y=\"1201\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dashdownA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dashdownArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21E3\"/>\n  <outline>\n    <contour>\n      <point x=\"589\" y=\"-20\" type=\"line\"/>\n      <point x=\"611\" y=\"-20\" type=\"line\"/>\n      <point x=\"1006\" y=\"368\" type=\"line\"/>\n      <point x=\"949\" y=\"432\" type=\"line\"/>\n      <point x=\"609\" y=\"93\" type=\"line\"/>\n      <point x=\"591\" y=\"93\" type=\"line\"/>\n      <point x=\"251\" y=\"432\" type=\"line\"/>\n      <point x=\"194\" y=\"368\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"58\" type=\"line\"/>\n      <point x=\"647\" y=\"58\" type=\"line\"/>\n      <point x=\"647\" y=\"502\" type=\"line\"/>\n      <point x=\"553\" y=\"502\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"652\" type=\"line\"/>\n      <point x=\"647\" y=\"652\" type=\"line\"/>\n      <point x=\"647\" y=\"794\" type=\"line\"/>\n      <point x=\"553\" y=\"794\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"934\" type=\"line\"/>\n      <point x=\"647\" y=\"934\" type=\"line\"/>\n      <point x=\"647\" y=\"1076\" type=\"line\"/>\n      <point x=\"553\" y=\"1076\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"1236\" type=\"line\"/>\n      <point x=\"647\" y=\"1236\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"553\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dataLinkEscapeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2410\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dataLinkEscapeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"755\" type=\"line\"/>\n      <point x=\"109\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dateseparator-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dateseparator-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060D\"/>\n  <guideline x=\"100\" y=\"682\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"304\" y=\"0\" type=\"line\"/>\n      <point x=\"396\" y=\"0\" type=\"line\"/>\n      <point x=\"866\" y=\"1060\" type=\"line\"/>\n      <point x=\"774\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dcaron.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcaron.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"881\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1105\" y=\"1188\" type=\"line\"/>\n      <point x=\"1183\" y=\"1188\" type=\"line\"/>\n      <point x=\"1260\" y=\"1568\" type=\"line\"/>\n      <point x=\"1168\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"513\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"701\" y=\"-20\"/>\n      <point x=\"801\" y=\"83\"/>\n      <point x=\"830\" y=\"250\" type=\"curve\"/>\n      <point x=\"906\" y=\"250\" type=\"line\"/>\n      <point x=\"834\" y=\"524\" type=\"line\"/>\n      <point x=\"834\" y=\"227\"/>\n      <point x=\"731\" y=\"72\"/>\n      <point x=\"533\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"72\"/>\n      <point x=\"216\" y=\"226\"/>\n      <point x=\"216\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"828\"/>\n      <point x=\"324\" y=\"988\"/>\n      <point x=\"531\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"988\"/>\n      <point x=\"834\" y=\"833\"/>\n      <point x=\"834\" y=\"535\" type=\"curve\"/>\n      <point x=\"896\" y=\"822\" type=\"line\"/>\n      <point x=\"826\" y=\"822\" type=\"line\"/>\n      <point x=\"798\" y=\"992\"/>\n      <point x=\"692\" y=\"1080\"/>\n      <point x=\"519\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"257\" y=\"1080\"/>\n      <point x=\"120\" y=\"888\"/>\n      <point x=\"120\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"120\" y=\"165\"/>\n      <point x=\"255\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"855\" y=\"-10\" type=\"line\"/>\n      <point x=\"928\" y=\"-5\" type=\"line\"/>\n      <point x=\"928\" y=\"1500\" type=\"line\"/>\n      <point x=\"834\" y=\"1500\" type=\"line\"/>\n      <point x=\"834\" y=\"268\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010F\"/>\n  <outline>\n    <contour>\n      <point x=\"1169\" y=\"1188\" type=\"line\"/>\n      <point x=\"1247\" y=\"1188\" type=\"line\"/>\n      <point x=\"1324\" y=\"1568\" type=\"line\"/>\n      <point x=\"1232\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"d\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dcroat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcroat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0111\"/>\n  <outline>\n    <contour>\n      <point x=\"462\" y=\"1260\" type=\"line\"/>\n      <point x=\"1138\" y=\"1260\" type=\"line\"/>\n      <point x=\"1138\" y=\"1350\" type=\"line\"/>\n      <point x=\"462\" y=\"1350\" type=\"line\"/>\n    </contour>\n    <component base=\"d\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ddahal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ddahal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ddahal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ddahal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068D\"/>\n  <guideline x=\"62\" y=\"-118\" angle=\"0\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-30\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ddal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ddal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"72\" yOffset=\"613\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ddal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ddal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0688\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"52\" yOffset=\"623\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/de-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"de-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0434\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"227\" y=\"43\" type=\"line\"/>\n      <point x=\"319\" y=\"197\"/>\n      <point x=\"353\" y=\"406\"/>\n      <point x=\"353\" y=\"681\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"1060\" type=\"line\"/>\n      <point x=\"259\" y=\"1060\" type=\"line\"/>\n      <point x=\"259\" y=\"674\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"259\" y=\"403\"/>\n      <point x=\"221\" y=\"206\"/>\n      <point x=\"128\" y=\"68\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"64\" y=\"-270\" type=\"line\"/>\n      <point x=\"158\" y=\"-270\" type=\"line\"/>\n      <point x=\"158\" y=\"40\" type=\"line\"/>\n      <point x=\"64\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1012\" y=\"-270\" type=\"line\"/>\n      <point x=\"1106\" y=\"-270\" type=\"line\"/>\n      <point x=\"1106\" y=\"40\" type=\"line\"/>\n      <point x=\"1012\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"890\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"1060\" type=\"line\"/>\n      <point x=\"890\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"970\" type=\"line\"/>\n      <point x=\"919\" y=\"970\" type=\"line\"/>\n      <point x=\"919\" y=\"1060\" type=\"line\"/>\n      <point x=\"350\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1106\" y=\"90\" type=\"line\"/>\n      <point x=\"64\" y=\"90\" type=\"line\"/>\n      <point x=\"64\" y=\"0\" type=\"line\"/>\n      <point x=\"1106\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/de-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"de-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"g\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/decimalseparator-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"decimalseparator-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066B\"/>\n  <outline>\n    <contour>\n      <point x=\"535\" y=\"-278\" type=\"line\"/>\n      <point x=\"674\" y=\"-166\"/>\n      <point x=\"730\" y=\"13\"/>\n      <point x=\"730\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"232\"/>\n      <point x=\"696\" y=\"292\"/>\n      <point x=\"596\" y=\"292\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"530\" y=\"292\"/>\n      <point x=\"488\" y=\"239\"/>\n      <point x=\"488\" y=\"171\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"95\"/>\n      <point x=\"530\" y=\"74\"/>\n      <point x=\"627\" y=\"74\" type=\"curve\"/>\n      <point x=\"607\" y=\"-52\"/>\n      <point x=\"547\" y=\"-145\"/>\n      <point x=\"467\" y=\"-226\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/degree.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"degree\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B0\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"690\"/>\n      <point x=\"982\" y=\"829\"/>\n      <point x=\"982\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"1301\"/>\n      <point x=\"840\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"1440\"/>\n      <point x=\"218\" y=\"1301\"/>\n      <point x=\"218\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"218\" y=\"829\"/>\n      <point x=\"360\" y=\"690\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"782\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"782\"/>\n      <point x=\"314\" y=\"887\"/>\n      <point x=\"314\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"1243\"/>\n      <point x=\"420\" y=\"1348\"/>\n      <point x=\"600\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1348\"/>\n      <point x=\"886\" y=\"1243\"/>\n      <point x=\"886\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"887\"/>\n      <point x=\"780\" y=\"782\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/deleteC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deleteControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2421\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/deleteF_ormT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deleteFormTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2425\"/>\n  <outline>\n    <contour>\n      <point x=\"178\" y=\"341\" type=\"line\"/>\n      <point x=\"1090\" y=\"1098\" type=\"line\"/>\n      <point x=\"1030\" y=\"1182\" type=\"line\"/>\n      <point x=\"118\" y=\"425\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"485\" y=\"158\" type=\"line\"/>\n      <point x=\"1083\" y=\"651\" type=\"line\"/>\n      <point x=\"1024\" y=\"734\" type=\"line\"/>\n      <point x=\"425\" y=\"242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"170\" y=\"773\" type=\"line\"/>\n      <point x=\"664\" y=\"1176\" type=\"line\"/>\n      <point x=\"605\" y=\"1260\" type=\"line\"/>\n      <point x=\"110\" y=\"855\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/delta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"delta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B4\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"605\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"603\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"-20\"/>\n      <point x=\"1060\" y=\"138\"/>\n      <point x=\"1060\" y=\"416\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"724\"/>\n      <point x=\"897\" y=\"823\"/>\n      <point x=\"616\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"954\"/>\n      <point x=\"320\" y=\"1051\"/>\n      <point x=\"320\" y=\"1181\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"1338\"/>\n      <point x=\"427\" y=\"1428\"/>\n      <point x=\"614\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"1428\"/>\n      <point x=\"857\" y=\"1395\"/>\n      <point x=\"952\" y=\"1330\" type=\"curve\"/>\n      <point x=\"1010\" y=\"1413\" type=\"line\"/>\n      <point x=\"890\" y=\"1485\"/>\n      <point x=\"760\" y=\"1520\"/>\n      <point x=\"614\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"366\" y=\"1520\"/>\n      <point x=\"224\" y=\"1397\"/>\n      <point x=\"224\" y=\"1181\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"1023\"/>\n      <point x=\"318\" y=\"912\"/>\n      <point x=\"507\" y=\"846\" type=\"curve\"/>\n      <point x=\"496\" y=\"907\" type=\"line\"/>\n      <point x=\"496\" y=\"841\" type=\"line\"/>\n      <point x=\"275\" y=\"816\"/>\n      <point x=\"150\" y=\"672\"/>\n      <point x=\"150\" y=\"416\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"153\"/>\n      <point x=\"329\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"605\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"72\"/>\n      <point x=\"246\" y=\"209\"/>\n      <point x=\"246\" y=\"416\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"639\"/>\n      <point x=\"385\" y=\"786\"/>\n      <point x=\"596\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"786\"/>\n      <point x=\"964\" y=\"651\"/>\n      <point x=\"964\" y=\"416\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"197\"/>\n      <point x=\"833\" y=\"72\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlFourControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2414\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"four.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlOneControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2411\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"one.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>one.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlThreeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2413\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"three.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2412\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"two.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"diagonalcrosshatchFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A9\"/>\n  <note>\nuni25A9\n</note>\n  <outline>\n    <contour>\n      <point x=\"1031\" y=\"218\" type=\"line\"/>\n      <point x=\"1092\" y=\"289\" type=\"line\"/>\n      <point x=\"187\" y=\"1194\" type=\"line\"/>\n      <point x=\"116\" y=\"1133\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"593\" y=\"246\" type=\"line\"/>\n      <point x=\"725\" y=\"246\" type=\"line\"/>\n      <point x=\"150\" y=\"821\" type=\"line\"/>\n      <point x=\"150\" y=\"689\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"169\" y=\"218\" type=\"line\"/>\n      <point x=\"1084\" y=\"1133\" type=\"line\"/>\n      <point x=\"1013\" y=\"1194\" type=\"line\"/>\n      <point x=\"108\" y=\"289\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"475\" y=\"246\" type=\"line\"/>\n      <point x=\"607\" y=\"246\" type=\"line\"/>\n      <point x=\"1050\" y=\"689\" type=\"line\"/>\n      <point x=\"1050\" y=\"821\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"120\" y=\"579\" type=\"line\"/>\n      <point x=\"718\" y=\"1177\" type=\"line\"/>\n      <point x=\"586\" y=\"1177\" type=\"line\"/>\n      <point x=\"120\" y=\"711\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1080\" y=\"579\" type=\"line\"/>\n      <point x=\"1080\" y=\"711\" type=\"line\"/>\n      <point x=\"614\" y=\"1177\" type=\"line\"/>\n      <point x=\"482\" y=\"1177\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/diamondB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"diamondBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2666\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"40\" type=\"line\"/>\n      <point x=\"1051\" y=\"670\" type=\"line\"/>\n      <point x=\"600\" y=\"1300\" type=\"line\"/>\n      <point x=\"149\" y=\"670\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A8\"/>\n  <outline>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dieresiscomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresiscomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"808\" y=\"1614\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"1614\"/>\n      <point x=\"908\" y=\"1658\"/>\n      <point x=\"908\" y=\"1713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"1768\"/>\n      <point x=\"863\" y=\"1813\"/>\n      <point x=\"808\" y=\"1813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"1813\"/>\n      <point x=\"708\" y=\"1768\"/>\n      <point x=\"708\" y=\"1713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"708\" y=\"1658\"/>\n      <point x=\"753\" y=\"1614\"/>\n    </contour>\n    <contour>\n      <point x=\"392\" y=\"1614\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"1614\"/>\n      <point x=\"492\" y=\"1658\"/>\n      <point x=\"492\" y=\"1713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"1768\"/>\n      <point x=\"447\" y=\"1813\"/>\n      <point x=\"392\" y=\"1813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"337\" y=\"1813\"/>\n      <point x=\"292\" y=\"1768\"/>\n      <point x=\"292\" y=\"1713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"1658\"/>\n      <point x=\"337\" y=\"1614\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dieresiscomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresiscomb\" format=\"2\">\n  <unicode hex=\"0308\"/>\n  <anchor x=\"598\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"810\" y=\"1273\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"1273\"/>\n      <point x=\"910\" y=\"1317\"/>\n      <point x=\"910\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"1427\"/>\n      <point x=\"865\" y=\"1472\"/>\n      <point x=\"810\" y=\"1472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"1472\"/>\n      <point x=\"710\" y=\"1427\"/>\n      <point x=\"710\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"710\" y=\"1317\"/>\n      <point x=\"755\" y=\"1273\"/>\n    </contour>\n    <contour>\n      <point x=\"390\" y=\"1273\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"1273\"/>\n      <point x=\"490\" y=\"1317\"/>\n      <point x=\"490\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"1427\"/>\n      <point x=\"445\" y=\"1472\"/>\n      <point x=\"390\" y=\"1472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"335\" y=\"1472\"/>\n      <point x=\"290\" y=\"1427\"/>\n      <point x=\"290\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"1317\"/>\n      <point x=\"335\" y=\"1273\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0385\"/>\n  <anchor x=\"578\" y=\"1060\" name=\"_top\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"1248\" type=\"line\"/>\n      <point x=\"609\" y=\"1248\" type=\"line\"/>\n      <point x=\"799\" y=\"1628\" type=\"line\"/>\n      <point x=\"688\" y=\"1628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"340\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"395\" y=\"1238\"/>\n      <point x=\"440\" y=\"1282\"/>\n      <point x=\"440\" y=\"1337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1392\"/>\n      <point x=\"395\" y=\"1437\"/>\n      <point x=\"340\" y=\"1437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"1437\"/>\n      <point x=\"240\" y=\"1392\"/>\n      <point x=\"240\" y=\"1337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1282\"/>\n      <point x=\"285\" y=\"1238\"/>\n    </contour>\n    <contour>\n      <point x=\"880\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"1238\"/>\n      <point x=\"980\" y=\"1282\"/>\n      <point x=\"980\" y=\"1337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"980\" y=\"1392\"/>\n      <point x=\"935\" y=\"1437\"/>\n      <point x=\"880\" y=\"1437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"1437\"/>\n      <point x=\"780\" y=\"1392\"/>\n      <point x=\"780\" y=\"1337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1282\"/>\n      <point x=\"825\" y=\"1238\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/divide.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"divide\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F7\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"754\" type=\"line\"/>\n      <point x=\"124\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"187\"/>\n      <point x=\"705\" y=\"234\"/>\n      <point x=\"705\" y=\"291\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"349\"/>\n      <point x=\"658\" y=\"396\"/>\n      <point x=\"600\" y=\"396\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"396\"/>\n      <point x=\"495\" y=\"349\"/>\n      <point x=\"495\" y=\"291\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"234\"/>\n      <point x=\"542\" y=\"187\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1020\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"1020\"/>\n      <point x=\"705\" y=\"1067\"/>\n      <point x=\"705\" y=\"1125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"1182\"/>\n      <point x=\"658\" y=\"1229\"/>\n      <point x=\"600\" y=\"1229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"1229\"/>\n      <point x=\"495\" y=\"1182\"/>\n      <point x=\"495\" y=\"1125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"1067\"/>\n      <point x=\"542\" y=\"1020\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/divisionslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"divisionslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2215\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0452\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"275\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"570\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"793\"/>\n      <point x=\"878\" y=\"920\"/>\n      <point x=\"650\" y=\"920\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"920\"/>\n      <point x=\"383\" y=\"863\"/>\n      <point x=\"336\" y=\"748\" type=\"curve\"/>\n      <point x=\"264\" y=\"748\" type=\"line\"/>\n      <point x=\"326\" y=\"476\" type=\"line\"/>\n      <point x=\"326\" y=\"712\"/>\n      <point x=\"431\" y=\"828\"/>\n      <point x=\"640\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"828\"/>\n      <point x=\"914\" y=\"735\"/>\n      <point x=\"914\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"232\" y=\"0\" type=\"line\"/>\n      <point x=\"326\" y=\"0\" type=\"line\"/>\n      <point x=\"326\" y=\"1500\" type=\"line\"/>\n      <point x=\"232\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"25\" y=\"1188\" type=\"line\"/>\n      <point x=\"770\" y=\"1188\" type=\"line\"/>\n      <point x=\"770\" y=\"1278\" type=\"line\"/>\n      <point x=\"25\" y=\"1278\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-480\" type=\"line\"/>\n      <point x=\"665\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"-449\"/>\n      <point x=\"1008\" y=\"-320\"/>\n      <point x=\"1008\" y=\"-16\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"194\" type=\"line\"/>\n      <point x=\"914\" y=\"194\" type=\"line\"/>\n      <point x=\"914\" y=\"-18\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"-254\"/>\n      <point x=\"847\" y=\"-363\"/>\n      <point x=\"685\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"-394\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"566\" y=\"1393\" type=\"line\"/>\n      <point x=\"660\" y=\"1393\" type=\"line\"/>\n      <point x=\"660\" y=\"1740\" type=\"line\"/>\n      <point x=\"566\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"566\" y=\"-320\" type=\"line\"/>\n      <point x=\"660\" y=\"-320\" type=\"line\"/>\n      <point x=\"660\" y=\"38\" type=\"line\"/>\n      <point x=\"566\" y=\"38\" type=\"line\"/>\n    </contour>\n    <component base=\"S\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=S</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=S</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dollar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0024\"/>\n  <outline>\n    <contour>\n      <point x=\"566\" y=\"-320\" type=\"line\"/>\n      <point x=\"660\" y=\"-320\" type=\"line\"/>\n      <point x=\"660\" y=\"1740\" type=\"line\"/>\n      <point x=\"566\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"S\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=S</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=S</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar_greater.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1275\" y=\"214\" type=\"line\"/>\n      <point x=\"2233\" y=\"653\" type=\"line\"/>\n      <point x=\"2233\" y=\"765\" type=\"line\"/>\n      <point x=\"666\" y=\"1445\" type=\"line\"/>\n      <point x=\"666\" y=\"1350\" type=\"line\"/>\n      <point x=\"2150\" y=\"713\" type=\"line\"/>\n      <point x=\"2150\" y=\"705\" type=\"line\"/>\n      <point x=\"1275\" y=\"314\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"625\" y=\"-320\" type=\"line\"/>\n      <point x=\"719\" y=\"-320\" type=\"line\"/>\n      <point x=\"719\" y=\"68\" type=\"line\"/>\n      <point x=\"625\" y=\"68\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"610\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"932\" y=\"-20\"/>\n      <point x=\"1092\" y=\"96\"/>\n      <point x=\"1092\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1092\" y=\"479\"/>\n      <point x=\"1018\" y=\"600\"/>\n      <point x=\"860\" y=\"677\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"861\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"389\" y=\"907\"/>\n      <point x=\"342\" y=\"980\"/>\n      <point x=\"342\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"1261\"/>\n      <point x=\"449\" y=\"1350\"/>\n      <point x=\"666\" y=\"1350\" type=\"curve\"/>\n      <point x=\"665\" y=\"1440\" type=\"line\"/>\n      <point x=\"388\" y=\"1440\"/>\n      <point x=\"250\" y=\"1317\"/>\n      <point x=\"250\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"939\"/>\n      <point x=\"311\" y=\"843\"/>\n      <point x=\"435\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"578\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"523\"/>\n      <point x=\"1000\" y=\"436\"/>\n      <point x=\"1000\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"155\"/>\n      <point x=\"876\" y=\"70\"/>\n      <point x=\"626\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"70\"/>\n      <point x=\"363\" y=\"95\"/>\n      <point x=\"226\" y=\"145\" type=\"curve\"/>\n      <point x=\"212\" y=\"48\" type=\"line\"/>\n      <point x=\"330\" y=\"3\"/>\n      <point x=\"462\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"625\" y=\"1350\" type=\"line\"/>\n      <point x=\"719\" y=\"1350\" type=\"line\"/>\n      <point x=\"719\" y=\"1740\" type=\"line\"/>\n      <point x=\"625\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dollar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1275\" y=\"214\" type=\"line\"/>\n      <point x=\"2233\" y=\"653\" type=\"line\"/>\n      <point x=\"2233\" y=\"765\" type=\"line\"/>\n      <point x=\"685\" y=\"1437\" type=\"line\"/>\n      <point x=\"685\" y=\"1342\" type=\"line\"/>\n      <point x=\"2150\" y=\"713\" type=\"line\"/>\n      <point x=\"2150\" y=\"705\" type=\"line\"/>\n      <point x=\"1275\" y=\"314\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"610\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"932\" y=\"-20\"/>\n      <point x=\"1092\" y=\"96\"/>\n      <point x=\"1092\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1092\" y=\"479\"/>\n      <point x=\"1018\" y=\"600\"/>\n      <point x=\"860\" y=\"677\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"861\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"389\" y=\"907\"/>\n      <point x=\"342\" y=\"980\"/>\n      <point x=\"342\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"1261\"/>\n      <point x=\"449\" y=\"1350\"/>\n      <point x=\"666\" y=\"1350\" type=\"curve\"/>\n      <point x=\"665\" y=\"1440\" type=\"line\"/>\n      <point x=\"388\" y=\"1440\"/>\n      <point x=\"250\" y=\"1317\"/>\n      <point x=\"250\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"939\"/>\n      <point x=\"311\" y=\"843\"/>\n      <point x=\"435\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"578\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"523\"/>\n      <point x=\"1000\" y=\"436\"/>\n      <point x=\"1000\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"155\"/>\n      <point x=\"876\" y=\"70\"/>\n      <point x=\"626\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"70\"/>\n      <point x=\"363\" y=\"95\"/>\n      <point x=\"226\" y=\"145\" type=\"curve\"/>\n      <point x=\"212\" y=\"48\" type=\"line\"/>\n      <point x=\"330\" y=\"3\"/>\n      <point x=\"462\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"625\" y=\"-320\" type=\"line\"/>\n      <point x=\"719\" y=\"-320\" type=\"line\"/>\n      <point x=\"719\" y=\"1740\" type=\"line\"/>\n      <point x=\"625\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dong.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dong\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AB\"/>\n  <outline>\n    <contour>\n      <point x=\"166\" y=\"-282\" type=\"line\"/>\n      <point x=\"1032\" y=\"-282\" type=\"line\"/>\n      <point x=\"1032\" y=\"-192\" type=\"line\"/>\n      <point x=\"166\" y=\"-192\" type=\"line\"/>\n    </contour>\n    <component base=\"dcroat\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dotabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"782\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"542\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"972\" name=\"top\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" yOffset=\"1016\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D9\"/>\n  <outline>\n    <component base=\"dotaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dotaccentcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccentcomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1615\"/>\n      <point x=\"700\" y=\"1659\"/>\n      <point x=\"700\" y=\"1714\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1769\"/>\n      <point x=\"655\" y=\"1814\"/>\n      <point x=\"600\" y=\"1814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"1814\"/>\n      <point x=\"500\" y=\"1769\"/>\n      <point x=\"500\" y=\"1714\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"1659\"/>\n      <point x=\"545\" y=\"1615\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dotaccentcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccentcomb\" format=\"2\">\n  <unicode hex=\"0307\"/>\n  <anchor x=\"602\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1273\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1273\"/>\n      <point x=\"700\" y=\"1317\"/>\n      <point x=\"700\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1427\"/>\n      <point x=\"655\" y=\"1472\"/>\n      <point x=\"600\" y=\"1472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"1472\"/>\n      <point x=\"500\" y=\"1427\"/>\n      <point x=\"500\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"1317\"/>\n      <point x=\"545\" y=\"1273\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dotbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"599\" y=\"-414\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_dot-ar\" yOffset=\"-782\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dotbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotbelowcomb\" format=\"2\">\n  <unicode hex=\"0323\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-386\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"-386\"/>\n      <point x=\"700\" y=\"-342\"/>\n      <point x=\"700\" y=\"-287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"-232\"/>\n      <point x=\"655\" y=\"-187\"/>\n      <point x=\"600\" y=\"-187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"-187\"/>\n      <point x=\"500\" y=\"-232\"/>\n      <point x=\"500\" y=\"-287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"-342\"/>\n      <point x=\"545\" y=\"-386\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dotcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"596\" y=\"318\" name=\"_center\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" yOffset=\"560\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2801\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2803\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2807\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1235-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1235-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2817\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2837\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2877\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1235678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1235678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2857\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2897\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1236-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1236-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2827\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2867\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1237-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1237-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2847\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1238-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1238-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2887\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1245-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1245-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1245678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1245678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1246-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1246-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1247-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1247-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1248-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1248-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots125-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots125-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2813\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1256-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1256-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2833\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2873\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots125678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots125678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1257-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1257-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2853\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1258-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1258-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2893\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots126-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots126-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2823\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1267-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1267-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2863\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1268-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1268-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots127-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots127-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2843\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1278-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1278-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots128-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots128-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2883\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2805\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28ED\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots135-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots135-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2815\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2835\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2875\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots135678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots135678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2855\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2895\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots136-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots136-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2825\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2865\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots137-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots137-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2845\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots138-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots138-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2885\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2809\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots145-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots145-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2819\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2839\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2879\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots145678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots145678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2859\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2899\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots146-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots146-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2829\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2869\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots147-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots147-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2849\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots148-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots148-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2889\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots15-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots15-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2811\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots156-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots156-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2831\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2871\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots15678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots15678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots157-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots157-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2851\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots158-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots158-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2891\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots16-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots16-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2821\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots167-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots167-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2861\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots168-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots168-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots17-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots17-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2841\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots178-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots178-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots18-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots18-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2881\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2802\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2806\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots235-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots235-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2816\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2836\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2876\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots235678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots235678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2856\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2896\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots236-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots236-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2826\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2866\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots237-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots237-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2846\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C6\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots238-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots238-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2886\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots245-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots245-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots245678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots245678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots246-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots246-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots247-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots247-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots248-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots248-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots25-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots25-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2812\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots256-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots256-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2832\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2872\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots25678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots25678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots257-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots257-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2852\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots258-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots258-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2892\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots26-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots26-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2822\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots267-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots267-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2862\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots268-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots268-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots27-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots27-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2842\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots278-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots278-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C2\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots28-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots28-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2882\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2804\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots35-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots35-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2814\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2834\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2874\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots35678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots35678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2854\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2894\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots36-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots36-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2824\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2864\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots37-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots37-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2844\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots38-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots38-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2884\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2808\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots45-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots45-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2818\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2838\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2878\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots45678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots45678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2858\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2898\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots46-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots46-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2828\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2868\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots47-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots47-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2848\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots48-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots48-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2888\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots5-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots5-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2810\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots56-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots56-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2830\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2870\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots5678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots5678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots57-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots57-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2850\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots58-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots58-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2890\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots6-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots6-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2820\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots67-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots67-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2860\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots68-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots68-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots7-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots7-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2840\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots78-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots78-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dots8-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots8-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2880\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dottedC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dottedCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CC\"/>\n  <note>\nuni25CC\n</note>\n  <outline>\n    <contour>\n      <point x=\"826\" y=\"1037\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"1037\"/>\n      <point x=\"888\" y=\"1062\"/>\n      <point x=\"888\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"1136\"/>\n      <point x=\"863\" y=\"1161\"/>\n      <point x=\"826\" y=\"1161\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"1161\"/>\n      <point x=\"764\" y=\"1136\"/>\n      <point x=\"764\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"1062\"/>\n      <point x=\"789\" y=\"1037\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"412\" y=\"259\"/>\n      <point x=\"437\" y=\"284\"/>\n      <point x=\"437\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"358\"/>\n      <point x=\"412\" y=\"383\"/>\n      <point x=\"375\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"383\"/>\n      <point x=\"313\" y=\"358\"/>\n      <point x=\"313\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"284\"/>\n      <point x=\"338\" y=\"259\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"249\" y=\"424\"/>\n      <point x=\"274\" y=\"449\"/>\n      <point x=\"274\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"523\"/>\n      <point x=\"249\" y=\"548\"/>\n      <point x=\"212\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"548\"/>\n      <point x=\"150\" y=\"523\"/>\n      <point x=\"150\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"449\"/>\n      <point x=\"175\" y=\"424\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"198\"/>\n      <point x=\"662\" y=\"223\"/>\n      <point x=\"662\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"297\"/>\n      <point x=\"637\" y=\"322\"/>\n      <point x=\"600\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"322\"/>\n      <point x=\"538\" y=\"297\"/>\n      <point x=\"538\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"223\"/>\n      <point x=\"563\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"187\" y=\"648\"/>\n      <point x=\"212\" y=\"673\"/>\n      <point x=\"212\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"747\"/>\n      <point x=\"187\" y=\"772\"/>\n      <point x=\"150\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"113\" y=\"772\"/>\n      <point x=\"88\" y=\"747\"/>\n      <point x=\"88\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"673\"/>\n      <point x=\"113\" y=\"648\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"249\" y=\"873\"/>\n      <point x=\"274\" y=\"898\"/>\n      <point x=\"274\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"972\"/>\n      <point x=\"249\" y=\"997\"/>\n      <point x=\"212\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"997\"/>\n      <point x=\"150\" y=\"972\"/>\n      <point x=\"150\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"898\"/>\n      <point x=\"175\" y=\"873\"/>\n    </contour>\n    <contour>\n      <point x=\"826\" y=\"259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"259\"/>\n      <point x=\"888\" y=\"284\"/>\n      <point x=\"888\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"358\"/>\n      <point x=\"863\" y=\"383\"/>\n      <point x=\"826\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"383\"/>\n      <point x=\"764\" y=\"358\"/>\n      <point x=\"764\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"284\"/>\n      <point x=\"789\" y=\"259\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"1037\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"412\" y=\"1037\"/>\n      <point x=\"437\" y=\"1062\"/>\n      <point x=\"437\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"1136\"/>\n      <point x=\"412\" y=\"1161\"/>\n      <point x=\"375\" y=\"1161\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"1161\"/>\n      <point x=\"313\" y=\"1136\"/>\n      <point x=\"313\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"1062\"/>\n      <point x=\"338\" y=\"1037\"/>\n    </contour>\n    <contour>\n      <point x=\"989\" y=\"424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"424\"/>\n      <point x=\"1051\" y=\"449\"/>\n      <point x=\"1051\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"523\"/>\n      <point x=\"1026\" y=\"548\"/>\n      <point x=\"989\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"548\"/>\n      <point x=\"927\" y=\"523\"/>\n      <point x=\"927\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"449\"/>\n      <point x=\"952\" y=\"424\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"648\"/>\n      <point x=\"1112\" y=\"673\"/>\n      <point x=\"1112\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"747\"/>\n      <point x=\"1087\" y=\"772\"/>\n      <point x=\"1050\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1013\" y=\"772\"/>\n      <point x=\"988\" y=\"747\"/>\n      <point x=\"988\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"673\"/>\n      <point x=\"1013\" y=\"648\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"1098\"/>\n      <point x=\"662\" y=\"1123\"/>\n      <point x=\"662\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"1197\"/>\n      <point x=\"637\" y=\"1222\"/>\n      <point x=\"600\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"1222\"/>\n      <point x=\"538\" y=\"1197\"/>\n      <point x=\"538\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1123\"/>\n      <point x=\"563\" y=\"1098\"/>\n    </contour>\n    <contour>\n      <point x=\"989\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"873\"/>\n      <point x=\"1051\" y=\"898\"/>\n      <point x=\"1051\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"972\"/>\n      <point x=\"1026\" y=\"997\"/>\n      <point x=\"989\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"997\"/>\n      <point x=\"927\" y=\"972\"/>\n      <point x=\"927\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"898\"/>\n      <point x=\"952\" y=\"873\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dottedS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dottedSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1A\"/>\n  <note>\nuni2B1A\n</note>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"1098\"/>\n      <point x=\"1112\" y=\"1126\"/>\n      <point x=\"1112\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"1194\"/>\n      <point x=\"1084\" y=\"1222\"/>\n      <point x=\"1050\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"1222\"/>\n      <point x=\"988\" y=\"1194\"/>\n      <point x=\"988\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"1126\"/>\n      <point x=\"1016\" y=\"1098\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"198\"/>\n      <point x=\"212\" y=\"226\"/>\n      <point x=\"212\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"294\"/>\n      <point x=\"184\" y=\"322\"/>\n      <point x=\"150\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"116\" y=\"322\"/>\n      <point x=\"88\" y=\"294\"/>\n      <point x=\"88\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"226\"/>\n      <point x=\"116\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"498\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"498\"/>\n      <point x=\"212\" y=\"526\"/>\n      <point x=\"212\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"594\"/>\n      <point x=\"184\" y=\"622\"/>\n      <point x=\"150\" y=\"622\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"116\" y=\"622\"/>\n      <point x=\"88\" y=\"594\"/>\n      <point x=\"88\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"526\"/>\n      <point x=\"116\" y=\"498\"/>\n    </contour>\n    <contour>\n      <point x=\"450\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"198\"/>\n      <point x=\"512\" y=\"226\"/>\n      <point x=\"512\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"294\"/>\n      <point x=\"484\" y=\"322\"/>\n      <point x=\"450\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"322\"/>\n      <point x=\"388\" y=\"294\"/>\n      <point x=\"388\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"226\"/>\n      <point x=\"416\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"798\"/>\n      <point x=\"212\" y=\"826\"/>\n      <point x=\"212\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"894\"/>\n      <point x=\"184\" y=\"922\"/>\n      <point x=\"150\" y=\"922\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"116\" y=\"922\"/>\n      <point x=\"88\" y=\"894\"/>\n      <point x=\"88\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"826\"/>\n      <point x=\"116\" y=\"798\"/>\n    </contour>\n    <contour>\n      <point x=\"750\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"198\"/>\n      <point x=\"812\" y=\"226\"/>\n      <point x=\"812\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"294\"/>\n      <point x=\"784\" y=\"322\"/>\n      <point x=\"750\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"322\"/>\n      <point x=\"688\" y=\"294\"/>\n      <point x=\"688\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"226\"/>\n      <point x=\"716\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"1098\"/>\n      <point x=\"212\" y=\"1126\"/>\n      <point x=\"212\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"1194\"/>\n      <point x=\"184\" y=\"1222\"/>\n      <point x=\"150\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"116\" y=\"1222\"/>\n      <point x=\"88\" y=\"1194\"/>\n      <point x=\"88\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"1126\"/>\n      <point x=\"116\" y=\"1098\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"198\"/>\n      <point x=\"1112\" y=\"226\"/>\n      <point x=\"1112\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"294\"/>\n      <point x=\"1084\" y=\"322\"/>\n      <point x=\"1050\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"322\"/>\n      <point x=\"988\" y=\"294\"/>\n      <point x=\"988\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"226\"/>\n      <point x=\"1016\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"450\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"1098\"/>\n      <point x=\"512\" y=\"1126\"/>\n      <point x=\"512\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"1194\"/>\n      <point x=\"484\" y=\"1222\"/>\n      <point x=\"450\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"1222\"/>\n      <point x=\"388\" y=\"1194\"/>\n      <point x=\"388\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"1126\"/>\n      <point x=\"416\" y=\"1098\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"498\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"498\"/>\n      <point x=\"1112\" y=\"526\"/>\n      <point x=\"1112\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"594\"/>\n      <point x=\"1084\" y=\"622\"/>\n      <point x=\"1050\" y=\"622\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"622\"/>\n      <point x=\"988\" y=\"594\"/>\n      <point x=\"988\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"526\"/>\n      <point x=\"1016\" y=\"498\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"798\"/>\n      <point x=\"1112\" y=\"826\"/>\n      <point x=\"1112\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"894\"/>\n      <point x=\"1084\" y=\"922\"/>\n      <point x=\"1050\" y=\"922\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"922\"/>\n      <point x=\"988\" y=\"894\"/>\n      <point x=\"988\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"826\"/>\n      <point x=\"1016\" y=\"798\"/>\n    </contour>\n    <contour>\n      <point x=\"750\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"1098\"/>\n      <point x=\"812\" y=\"1126\"/>\n      <point x=\"812\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"1194\"/>\n      <point x=\"784\" y=\"1222\"/>\n      <point x=\"750\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"1222\"/>\n      <point x=\"688\" y=\"1194\"/>\n      <point x=\"688\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"1126\"/>\n      <point x=\"716\" y=\"1098\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.comb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"doubleverticalbarbelowSymbol-ar.comb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"612\" y=\"-62\" name=\"_bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"700\" y=\"-434\" type=\"line\"/>\n      <point x=\"792\" y=\"-434\" type=\"line\"/>\n      <point x=\"783\" y=\"-77\" type=\"line\"/>\n      <point x=\"690\" y=\"-77\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"443\" y=\"-434\" type=\"line\"/>\n      <point x=\"536\" y=\"-434\" type=\"line\"/>\n      <point x=\"527\" y=\"-77\" type=\"line\"/>\n      <point x=\"434\" y=\"-77\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"doubleverticalbarbelowSymbol-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FBBC\"/>\n  <outline>\n    <component base=\"doubleverticalbarbelowSymbol-ar.comb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/downA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2193\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"553\" y=\"1420\" type=\"line\"/>\n      <point x=\"553\" y=\"40\" type=\"line\"/>\n      <point x=\"647\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1006\" y=\"368\" type=\"line\"/>\n      <point x=\"949\" y=\"432\" type=\"line\"/>\n      <point x=\"609\" y=\"93\" type=\"line\"/>\n      <point x=\"591\" y=\"93\" type=\"line\"/>\n      <point x=\"251\" y=\"432\" type=\"line\"/>\n      <point x=\"194\" y=\"368\" type=\"line\"/>\n      <point x=\"589\" y=\"-20\" type=\"line\"/>\n      <point x=\"611\" y=\"-20\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/downB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BE\"/>\n  <note>\nuni25BE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"318\" type=\"line\"/>\n      <point x=\"1069\" y=\"1115\" type=\"line\"/>\n      <point x=\"131\" y=\"1115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/downB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BC\"/>\n  <note>\ntriagdn\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"170\" type=\"line\"/>\n      <point x=\"1200\" y=\"1190\" type=\"line\"/>\n      <point x=\"0\" y=\"1190\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/downT_ipL_eftA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downTipLeftArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21B2\"/>\n  <outline>\n    <contour>\n      <point x=\"1033\" y=\"466\" type=\"line\"/>\n      <point x=\"1127\" y=\"466\" type=\"line\"/>\n      <point x=\"1127\" y=\"1128\" type=\"line\"/>\n      <point x=\"1033\" y=\"1128\" type=\"line\"/>\n    </contour>\n    <component base=\"leftArrow\" yOffset=\"-198\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/downW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BF\"/>\n  <note>\nuni25BF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"318\" type=\"line\"/>\n      <point x=\"1069\" y=\"1115\" type=\"line\"/>\n      <point x=\"131\" y=\"1115\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"566\" y=\"434\" type=\"line\"/>\n      <point x=\"637\" y=\"434\" type=\"line\"/>\n      <point x=\"266\" y=\"1062\" type=\"line\"/>\n      <point x=\"262\" y=\"1025\" type=\"line\"/>\n      <point x=\"945\" y=\"1025\" type=\"line\"/>\n      <point x=\"939\" y=\"1071\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/downW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BD\"/>\n  <note>\nuni25BD\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"170\" type=\"line\"/>\n      <point x=\"1200\" y=\"1190\" type=\"line\"/>\n      <point x=\"0\" y=\"1190\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"596\" y=\"340\" type=\"line\"/>\n      <point x=\"604\" y=\"340\" type=\"line\"/>\n      <point x=\"116\" y=\"1170\" type=\"line\"/>\n      <point x=\"119\" y=\"1110\" type=\"line\"/>\n      <point x=\"1089\" y=\"1110\" type=\"line\"/>\n      <point x=\"1081\" y=\"1164\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dtail.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dtail\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0256\"/>\n  <anchor x=\"540\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"530\" name=\"center\"/>\n  <anchor x=\"961\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1157\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"543\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"-20\"/>\n      <point x=\"871\" y=\"83\"/>\n      <point x=\"905\" y=\"250\" type=\"curve\"/>\n      <point x=\"986\" y=\"250\" type=\"line\"/>\n      <point x=\"914\" y=\"524\" type=\"line\"/>\n      <point x=\"914\" y=\"227\"/>\n      <point x=\"794\" y=\"72\"/>\n      <point x=\"563\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"335\" y=\"72\"/>\n      <point x=\"216\" y=\"226\"/>\n      <point x=\"216\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"828\"/>\n      <point x=\"334\" y=\"988\"/>\n      <point x=\"561\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"988\"/>\n      <point x=\"914\" y=\"833\"/>\n      <point x=\"914\" y=\"535\" type=\"curve\"/>\n      <point x=\"976\" y=\"822\" type=\"line\"/>\n      <point x=\"906\" y=\"822\" type=\"line\"/>\n      <point x=\"873\" y=\"992\"/>\n      <point x=\"750\" y=\"1080\"/>\n      <point x=\"549\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"1080\"/>\n      <point x=\"120\" y=\"888\"/>\n      <point x=\"120\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"120\" y=\"165\"/>\n      <point x=\"265\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"1318\" y=\"-468\" type=\"line\"/>\n      <point x=\"1322\" y=\"-381\" type=\"line\"/>\n      <point x=\"1288\" y=\"-378\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"-361\"/>\n      <point x=\"1008\" y=\"-227\"/>\n      <point x=\"1008\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"384\" type=\"line\"/>\n      <point x=\"914\" y=\"384\" type=\"line\"/>\n      <point x=\"914\" y=\"84\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"-287\"/>\n      <point x=\"1008\" y=\"-451\"/>\n      <point x=\"1300\" y=\"-467\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"914\" y=\"268\" type=\"line\"/>\n      <point x=\"1008\" y=\"268\" type=\"line\"/>\n      <point x=\"1008\" y=\"1500\" type=\"line\"/>\n      <point x=\"914\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dul-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dul-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"36\" yOffset=\"482\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dul-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dul-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"068E\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"16\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dyeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dyeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotsverticalcenter-ar\" xScale=\"1.001\" xOffset=\"11\" yOffset=\"-394\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dyeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dyeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0684\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotsverticalcenter-ar\" xScale=\"1.001\" xOffset=\"58\" yOffset=\"-366\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dyeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dyeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dyeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dyeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0455\"/>\n  <outline>\n    <component base=\"s\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/dzhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dzhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045F\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"909\" y=\"0\" type=\"line\"/>\n      <point x=\"1003\" y=\"0\" type=\"line\"/>\n      <point x=\"1003\" y=\"1060\" type=\"line\"/>\n      <point x=\"909\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-270\" type=\"line\"/>\n      <point x=\"647\" y=\"-270\" type=\"line\"/>\n      <point x=\"647\" y=\"40\" type=\"line\"/>\n      <point x=\"553\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"197\" y=\"0\" type=\"line\"/>\n      <point x=\"1003\" y=\"0\" type=\"line\"/>\n      <point x=\"1003\" y=\"90\" type=\"line\"/>\n      <point x=\"197\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"197\" y=\"0\" type=\"line\"/>\n      <point x=\"291\" y=\"0\" type=\"line\"/>\n      <point x=\"291\" y=\"1060\" type=\"line\"/>\n      <point x=\"197\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\" xOffset=\"10\"/>\n    <component base=\"twodotsverticalbelow-ar\" xScale=\"1.001\" xOffset=\"-76\" yOffset=\"-341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alefMaksura-ar.fina.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"518\" y=\"-918\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"twodotsverticalbelow-ar\" xScale=\"1.001\" xOffset=\"-86\" yOffset=\"-359\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D0\"/>\n  <anchor x=\"585\" y=\"-827\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"twodotsverticalbelow-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"7\" yOffset=\"-284\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beeh-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beeh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"beeh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0454\"/>\n  <anchor x=\"650\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"650\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"682\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"-20\"/>\n      <point x=\"923\" y=\"-13\"/>\n      <point x=\"1038\" y=\"15\" type=\"curve\"/>\n      <point x=\"1026\" y=\"106\" type=\"line\"/>\n      <point x=\"923\" y=\"85\"/>\n      <point x=\"815\" y=\"72\"/>\n      <point x=\"706\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"72\"/>\n      <point x=\"256\" y=\"236\"/>\n      <point x=\"256\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"256\" y=\"827\"/>\n      <point x=\"407\" y=\"988\"/>\n      <point x=\"666\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"988\"/>\n      <point x=\"918\" y=\"942\"/>\n      <point x=\"990\" y=\"807\" type=\"curve\"/>\n      <point x=\"1073\" y=\"860\" type=\"line\"/>\n      <point x=\"1014\" y=\"1000\"/>\n      <point x=\"868\" y=\"1080\"/>\n      <point x=\"674\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"1080\"/>\n      <point x=\"160\" y=\"878\"/>\n      <point x=\"160\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"176\"/>\n      <point x=\"349\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"215\" y=\"488\" type=\"line\"/>\n      <point x=\"784\" y=\"488\" type=\"line\"/>\n      <point x=\"784\" y=\"578\" type=\"line\"/>\n      <point x=\"215\" y=\"578\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/e.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0065\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1047\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"693\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"-20\"/>\n      <point x=\"902\" y=\"-9\"/>\n      <point x=\"978\" y=\"8\" type=\"curve\"/>\n      <point x=\"963\" y=\"100\" type=\"line\"/>\n      <point x=\"885\" y=\"82\"/>\n      <point x=\"792\" y=\"72\"/>\n      <point x=\"717\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"72\"/>\n      <point x=\"246\" y=\"245\"/>\n      <point x=\"246\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"825\"/>\n      <point x=\"378\" y=\"988\"/>\n      <point x=\"607\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"988\"/>\n      <point x=\"934\" y=\"846\"/>\n      <point x=\"934\" y=\"598\" type=\"curve\"/>\n      <point x=\"223\" y=\"598\" type=\"line\"/>\n      <point x=\"223\" y=\"508\" type=\"line\"/>\n      <point x=\"1024\" y=\"508\" type=\"line\"/>\n      <point x=\"1028\" y=\"529\"/>\n      <point x=\"1030\" y=\"562\"/>\n      <point x=\"1030\" y=\"596\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1030\" y=\"902\"/>\n      <point x=\"874\" y=\"1080\"/>\n      <point x=\"605\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"1080\"/>\n      <point x=\"150\" y=\"885\"/>\n      <point x=\"150\" y=\"544\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"186\"/>\n      <point x=\"348\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E9\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"acutecomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ebreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ebreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0115\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ecaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011B\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EA\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBF\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"acutecomb\" xOffset=\"447\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC7\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC1\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"gravecomb\" xOffset=\"288\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC3\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"hookabovecomb\" xOffset=\"377\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC5\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"tildecomb\" xOffset=\"7\" yOffset=\"520\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/edieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EB\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dieresiscomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/edotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0117\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"-2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/edotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB9\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ef-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ef-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0444\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"848\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1046\" y=\"-20\"/>\n      <point x=\"1131\" y=\"141\"/>\n      <point x=\"1131\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"913\"/>\n      <point x=\"1046\" y=\"1080\"/>\n      <point x=\"846\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"1080\"/>\n      <point x=\"669\" y=\"1013\"/>\n      <point x=\"657\" y=\"878\" type=\"curve\"/>\n      <point x=\"630\" y=\"878\" type=\"line\"/>\n      <point x=\"652\" y=\"596\" type=\"line\"/>\n      <point x=\"652\" y=\"859\"/>\n      <point x=\"706\" y=\"988\"/>\n      <point x=\"816\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"988\"/>\n      <point x=\"1035\" y=\"849\"/>\n      <point x=\"1035\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1035\" y=\"205\"/>\n      <point x=\"969\" y=\"72\"/>\n      <point x=\"814\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"72\"/>\n      <point x=\"652\" y=\"161\"/>\n      <point x=\"652\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"652\" y=\"456\" type=\"line\"/>\n      <point x=\"620\" y=\"134\" type=\"line\"/>\n      <point x=\"657\" y=\"134\" type=\"line\"/>\n      <point x=\"666\" y=\"32\"/>\n      <point x=\"740\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"352\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"-20\"/>\n      <point x=\"543\" y=\"32\"/>\n      <point x=\"553\" y=\"134\" type=\"curve\"/>\n      <point x=\"590\" y=\"134\" type=\"line\"/>\n      <point x=\"558\" y=\"456\" type=\"line\"/>\n      <point x=\"558\" y=\"340\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"161\"/>\n      <point x=\"503\" y=\"72\"/>\n      <point x=\"386\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"231\" y=\"72\"/>\n      <point x=\"165\" y=\"205\"/>\n      <point x=\"165\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"165\" y=\"849\"/>\n      <point x=\"231\" y=\"988\"/>\n      <point x=\"384\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"988\"/>\n      <point x=\"558\" y=\"859\"/>\n      <point x=\"558\" y=\"596\" type=\"curve\"/>\n      <point x=\"580\" y=\"878\" type=\"line\"/>\n      <point x=\"553\" y=\"878\" type=\"line\"/>\n      <point x=\"540\" y=\"1013\"/>\n      <point x=\"474\" y=\"1080\"/>\n      <point x=\"354\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"154\" y=\"1080\"/>\n      <point x=\"69\" y=\"913\"/>\n      <point x=\"69\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"69\" y=\"141\"/>\n      <point x=\"154\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"558\" y=\"-440\" type=\"line\"/>\n      <point x=\"652\" y=\"-440\" type=\"line\"/>\n      <point x=\"652\" y=\"197\" type=\"line\"/>\n      <point x=\"652\" y=\"254\" type=\"line\"/>\n      <point x=\"652\" y=\"807\" type=\"line\"/>\n      <point x=\"652\" y=\"840\" type=\"line\"/>\n      <point x=\"652\" y=\"1500\" type=\"line\"/>\n      <point x=\"558\" y=\"1500\" type=\"line\"/>\n      <point x=\"558\" y=\"840\" type=\"line\"/>\n      <point x=\"558\" y=\"807\" type=\"line\"/>\n      <point x=\"558\" y=\"254\" type=\"line\"/>\n      <point x=\"558\" y=\"197\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ef-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ef-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"558\" y=\"-440\" type=\"line\"/>\n      <point x=\"652\" y=\"-440\" type=\"line\"/>\n      <point x=\"652\" y=\"7\" type=\"line\"/>\n      <point x=\"652\" y=\"64\" type=\"line\"/>\n      <point x=\"652\" y=\"1007\" type=\"line\"/>\n      <point x=\"652\" y=\"1040\" type=\"line\"/>\n      <point x=\"652\" y=\"1500\" type=\"line\"/>\n      <point x=\"558\" y=\"1500\" type=\"line\"/>\n      <point x=\"558\" y=\"1040\" type=\"line\"/>\n      <point x=\"558\" y=\"1007\" type=\"line\"/>\n      <point x=\"558\" y=\"64\" type=\"line\"/>\n      <point x=\"558\" y=\"7\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"-20\"/>\n      <point x=\"1090\" y=\"162\"/>\n      <point x=\"1090\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"898\"/>\n      <point x=\"928\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"1080\"/>\n      <point x=\"110\" y=\"898\"/>\n      <point x=\"110\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"110\" y=\"162\"/>\n      <point x=\"272\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"72\"/>\n      <point x=\"206\" y=\"223\"/>\n      <point x=\"206\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"837\"/>\n      <point x=\"336\" y=\"988\"/>\n      <point x=\"600\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"988\"/>\n      <point x=\"994\" y=\"837\"/>\n      <point x=\"994\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"223\"/>\n      <point x=\"864\" y=\"72\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/egrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"egrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E8\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"gravecomb\" xOffset=\"-69\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBB\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"hookabovecomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0668\"/>\n  <outline>\n    <component base=\"seven-ar\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1204\" yOffset=\"1430\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"400\" y=\"-6\" type=\"line\"/>\n      <point x=\"462\" y=\"131\"/>\n      <point x=\"539\" y=\"329\"/>\n      <point x=\"589\" y=\"518\" type=\"curve\"/>\n      <point x=\"622\" y=\"518\" type=\"line\"/>\n      <point x=\"628\" y=\"548\"/>\n      <point x=\"636\" y=\"563\"/>\n      <point x=\"641\" y=\"587\" type=\"curve\"/>\n      <point x=\"592\" y=\"564\" type=\"line\"/>\n      <point x=\"627\" y=\"383\"/>\n      <point x=\"708\" y=\"147\"/>\n      <point x=\"773\" y=\"-6\" type=\"curve\"/>\n      <point x=\"873\" y=\"27\" type=\"line\"/>\n      <point x=\"791\" y=\"225\"/>\n      <point x=\"717\" y=\"413\"/>\n      <point x=\"652\" y=\"633\" type=\"curve\"/>\n      <point x=\"532\" y=\"632\" type=\"line\"/>\n      <point x=\"461\" y=\"398\"/>\n      <point x=\"380\" y=\"198\"/>\n      <point x=\"302\" y=\"17\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eight-arinferior\" yOffset=\"801\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F8\"/>\n  <outline>\n    <component base=\"eight-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>eight-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>eight-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eight-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>eight-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eight-arsuperior\" xOffset=\"6\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>eight-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eight.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eightsuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0038\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"-20\"/>\n      <point x=\"1060\" y=\"123\"/>\n      <point x=\"1060\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"626\"/>\n      <point x=\"893\" y=\"772\"/>\n      <point x=\"600\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"772\"/>\n      <point x=\"140\" y=\"626\"/>\n      <point x=\"140\" y=\"370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"140\" y=\"123\"/>\n      <point x=\"307\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"369\" y=\"70\"/>\n      <point x=\"236\" y=\"183\"/>\n      <point x=\"236\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"236\" y=\"585\"/>\n      <point x=\"369\" y=\"705\"/>\n      <point x=\"600\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"705\"/>\n      <point x=\"964\" y=\"585\"/>\n      <point x=\"964\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"183\"/>\n      <point x=\"831\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"434\" y=\"726\" type=\"line\"/>\n      <point x=\"768\" y=\"726\" type=\"line\"/>\n      <point x=\"768\" y=\"788\" type=\"line\"/>\n      <point x=\"434\" y=\"788\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"795\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"395\" y=\"795\"/>\n      <point x=\"276\" y=\"893\"/>\n      <point x=\"276\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"1245\"/>\n      <point x=\"395\" y=\"1350\"/>\n      <point x=\"600\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"1350\"/>\n      <point x=\"924\" y=\"1245\"/>\n      <point x=\"924\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"893\"/>\n      <point x=\"805\" y=\"795\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"738\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"738\"/>\n      <point x=\"1020\" y=\"870\"/>\n      <point x=\"1020\" y=\"1100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1020\" y=\"1315\"/>\n      <point x=\"867\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"1440\"/>\n      <point x=\"180\" y=\"1315\"/>\n      <point x=\"180\" y=\"1100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"180\" y=\"870\"/>\n      <point x=\"333\" y=\"738\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eight.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eightsuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eightinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eightinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2088\"/>\n  <outline>\n    <component base=\"eightsuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eightsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eightsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2078\"/>\n  <outline>\n    <contour>\n      <point x=\"599\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"759\" y=\"793\"/>\n      <point x=\"851\" y=\"857\"/>\n      <point x=\"851\" y=\"968\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"851\" y=\"1070\"/>\n      <point x=\"759\" y=\"1127\"/>\n      <point x=\"599\" y=\"1127\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1127\"/>\n      <point x=\"348\" y=\"1070\"/>\n      <point x=\"348\" y=\"968\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"348\" y=\"857\"/>\n      <point x=\"440\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"885\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"885\"/>\n      <point x=\"444\" y=\"919\"/>\n      <point x=\"444\" y=\"982\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"1043\"/>\n      <point x=\"500\" y=\"1079\"/>\n      <point x=\"599\" y=\"1079\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"1079\"/>\n      <point x=\"755\" y=\"1043\"/>\n      <point x=\"755\" y=\"982\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"919\"/>\n      <point x=\"699\" y=\"885\"/>\n    </contour>\n    <contour>\n      <point x=\"559\" y=\"1107\" type=\"line\"/>\n      <point x=\"639\" y=\"1107\" type=\"line\"/>\n      <point x=\"639\" y=\"1151\" type=\"line\"/>\n      <point x=\"559\" y=\"1151\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"1171\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"511\" y=\"1171\"/>\n      <point x=\"461\" y=\"1204\"/>\n      <point x=\"461\" y=\"1259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"1315\"/>\n      <point x=\"511\" y=\"1347\"/>\n      <point x=\"599\" y=\"1347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"1347\"/>\n      <point x=\"738\" y=\"1315\"/>\n      <point x=\"738\" y=\"1259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"1204\"/>\n      <point x=\"688\" y=\"1171\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"1129\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"1129\"/>\n      <point x=\"834\" y=\"1185\"/>\n      <point x=\"834\" y=\"1281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"1381\"/>\n      <point x=\"748\" y=\"1439\"/>\n      <point x=\"599\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"1439\"/>\n      <point x=\"365\" y=\"1381\"/>\n      <point x=\"365\" y=\"1281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"365\" y=\"1185\"/>\n      <point x=\"451\" y=\"1129\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/el-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"el-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"87\" y=\"0\" type=\"line\"/>\n      <point x=\"300\" y=\"0\"/>\n      <point x=\"390\" y=\"120\"/>\n      <point x=\"390\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"1060\" type=\"line\"/>\n      <point x=\"296\" y=\"1060\" type=\"line\"/>\n      <point x=\"296\" y=\"394\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"181\"/>\n      <point x=\"234\" y=\"90\"/>\n      <point x=\"87\" y=\"90\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"920\" y=\"0\" type=\"line\"/>\n      <point x=\"1014\" y=\"0\" type=\"line\"/>\n      <point x=\"1014\" y=\"1060\" type=\"line\"/>\n      <point x=\"920\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"348\" y=\"970\" type=\"line\"/>\n      <point x=\"977\" y=\"970\" type=\"line\"/>\n      <point x=\"977\" y=\"1060\" type=\"line\"/>\n      <point x=\"348\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/el-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"el-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"119\" y=\"0\" type=\"line\"/>\n      <point x=\"220\" y=\"0\" type=\"line\"/>\n      <point x=\"591\" y=\"968\" type=\"line\"/>\n      <point x=\"609\" y=\"968\" type=\"line\"/>\n      <point x=\"980\" y=\"0\" type=\"line\"/>\n      <point x=\"1081\" y=\"0\" type=\"line\"/>\n      <point x=\"670\" y=\"1060\" type=\"line\"/>\n      <point x=\"530\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ellipsis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ellipsis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2026\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"-398\"/>\n    <component base=\"period\" xOffset=\"398\"/>\n    <component base=\"period\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/em-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"em-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043C\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"220\" type=\"line\"/>\n      <point x=\"664\" y=\"220\" type=\"line\"/>\n      <point x=\"947\" y=\"970\" type=\"line\"/>\n      <point x=\"985\" y=\"970\" type=\"line\"/>\n      <point x=\"985\" y=\"1060\" type=\"line\"/>\n      <point x=\"883\" y=\"1060\" type=\"line\"/>\n      <point x=\"604\" y=\"310\" type=\"line\"/>\n      <point x=\"596\" y=\"310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"153\" y=\"0\" type=\"line\"/>\n      <point x=\"247\" y=\"0\" type=\"line\"/>\n      <point x=\"247\" y=\"1060\" type=\"line\"/>\n      <point x=\"153\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"537\" y=\"220\" type=\"line\"/>\n      <point x=\"600\" y=\"220\" type=\"line\"/>\n      <point x=\"600\" y=\"310\" type=\"line\"/>\n      <point x=\"596\" y=\"310\" type=\"line\"/>\n      <point x=\"317\" y=\"1060\" type=\"line\"/>\n      <point x=\"215\" y=\"1060\" type=\"line\"/>\n      <point x=\"215\" y=\"970\" type=\"line\"/>\n      <point x=\"253\" y=\"970\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"953\" y=\"0\" type=\"line\"/>\n      <point x=\"1047\" y=\"0\" type=\"line\"/>\n      <point x=\"1047\" y=\"1060\" type=\"line\"/>\n      <point x=\"953\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/emacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"emacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0113\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/emdash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"emdash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2014\"/>\n  <outline>\n    <contour>\n      <point x=\"40\" y=\"664\" type=\"line\"/>\n      <point x=\"1160\" y=\"664\" type=\"line\"/>\n      <point x=\"1160\" y=\"754\" type=\"line\"/>\n      <point x=\"40\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/en-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"en-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043D\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"1060\" type=\"line\"/>\n      <point x=\"914\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n      <point x=\"192\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"228\" y=\"485\" type=\"line\"/>\n      <point x=\"972\" y=\"485\" type=\"line\"/>\n      <point x=\"972\" y=\"575\" type=\"line\"/>\n      <point x=\"228\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fM_ediumC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfMediumControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2419\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"M.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>M.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfMediumControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1234\" type=\"line\"/>\n      <point x=\"553\" y=\"185\" type=\"line\"/>\n      <point x=\"647\" y=\"185\" type=\"line\"/>\n      <point x=\"647\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"509\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"509\"/>\n      <point x=\"801\" y=\"597\"/>\n      <point x=\"801\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"818\"/>\n      <point x=\"709\" y=\"909\"/>\n      <point x=\"599\" y=\"909\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"909\"/>\n      <point x=\"397\" y=\"818\"/>\n      <point x=\"397\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"397\" y=\"597\"/>\n      <point x=\"489\" y=\"509\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_extC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTextControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2403\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"X.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>X.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTextControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1032\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"1032\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"1059\" y=\"186\" type=\"line\"/>\n      <point x=\"1059\" y=\"276\" type=\"line\"/>\n      <point x=\"75\" y=\"276\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionBlockControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2417\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"B.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionBlockControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1031\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"1031\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"664\" type=\"line\"/>\n      <point x=\"1056\" y=\"664\" type=\"line\"/>\n      <point x=\"1056\" y=\"758\" type=\"line\"/>\n      <point x=\"75\" y=\"758\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2404\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"500\" y=\"680\" type=\"line\"/>\n      <point x=\"135\" y=\"1140\" type=\"line\"/>\n      <point x=\"65\" y=\"1081\" type=\"line\"/>\n      <point x=\"495\" y=\"536\" type=\"line\"/>\n      <point x=\"703\" y=\"752\" type=\"line\"/>\n      <point x=\"1068\" y=\"296\" type=\"line\"/>\n      <point x=\"1135\" y=\"362\" type=\"line\"/>\n      <point x=\"701\" y=\"896\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2013\"/>\n  <outline>\n    <contour>\n      <point x=\"70\" y=\"664\" type=\"line\"/>\n      <point x=\"1130\" y=\"664\" type=\"line\"/>\n      <point x=\"1130\" y=\"754\" type=\"line\"/>\n      <point x=\"70\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04A3\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1006\" y=\"-270\" type=\"line\"/>\n      <point x=\"1100\" y=\"-270\" type=\"line\"/>\n      <point x=\"1100\" y=\"90\" type=\"line\"/>\n      <point x=\"1006\" y=\"90\" type=\"line\"/>\n    </contour>\n    <component base=\"en-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/endofayah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endofayah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06DD\"/>\n  <outline>\n    <contour>\n      <point x=\"139\" y=\"-103\" type=\"curve\"/>\n      <point x=\"166\" y=\"-70\" type=\"line\"/>\n      <point x=\"95\" y=\"25\"/>\n      <point x=\"57\" y=\"141\"/>\n      <point x=\"57\" y=\"255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"57\" y=\"370\"/>\n      <point x=\"92\" y=\"491\"/>\n      <point x=\"167\" y=\"587\" type=\"curve\"/>\n      <point x=\"139\" y=\"618\" type=\"line\"/>\n      <point x=\"57\" y=\"512\"/>\n      <point x=\"15\" y=\"385\"/>\n      <point x=\"15\" y=\"257\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"15\" y=\"130\"/>\n      <point x=\"57\" y=\"3\"/>\n    </contour>\n    <contour>\n      <point x=\"216\" y=\"556\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"556\"/>\n      <point x=\"308\" y=\"597\"/>\n      <point x=\"308\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"698\"/>\n      <point x=\"267\" y=\"740\"/>\n      <point x=\"216\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"740\"/>\n      <point x=\"124\" y=\"698\"/>\n      <point x=\"124\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"596\"/>\n      <point x=\"167\" y=\"556\"/>\n    </contour>\n    <contour>\n      <point x=\"216\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"181\" y=\"590\"/>\n      <point x=\"159\" y=\"617\"/>\n      <point x=\"159\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"680\"/>\n      <point x=\"184\" y=\"705\"/>\n      <point x=\"215\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"705\"/>\n      <point x=\"273\" y=\"679\"/>\n      <point x=\"273\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"273\" y=\"615\"/>\n      <point x=\"247\" y=\"590\"/>\n    </contour>\n    <contour>\n      <point x=\"926\" y=\"695\" type=\"curve\"/>\n      <point x=\"957\" y=\"721\" type=\"line\"/>\n      <point x=\"852\" y=\"802\"/>\n      <point x=\"726\" y=\"842\"/>\n      <point x=\"600\" y=\"842\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"842\"/>\n      <point x=\"353\" y=\"804\"/>\n      <point x=\"250\" y=\"726\" type=\"curve\"/>\n      <point x=\"279\" y=\"698\" type=\"line\"/>\n      <point x=\"373\" y=\"767\"/>\n      <point x=\"488\" y=\"801\"/>\n      <point x=\"601\" y=\"801\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"801\"/>\n      <point x=\"831\" y=\"766\"/>\n    </contour>\n    <contour>\n      <point x=\"992\" y=\"555\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"555\"/>\n      <point x=\"1084\" y=\"595\"/>\n      <point x=\"1084\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"697\"/>\n      <point x=\"1043\" y=\"739\"/>\n      <point x=\"992\" y=\"739\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"739\"/>\n      <point x=\"900\" y=\"697\"/>\n      <point x=\"900\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"597\"/>\n      <point x=\"942\" y=\"555\"/>\n    </contour>\n    <contour>\n      <point x=\"992\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"590\"/>\n      <point x=\"935\" y=\"614\"/>\n      <point x=\"935\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"678\"/>\n      <point x=\"959\" y=\"705\"/>\n      <point x=\"992\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1023\" y=\"705\"/>\n      <point x=\"1049\" y=\"680\"/>\n      <point x=\"1049\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"616\"/>\n      <point x=\"1026\" y=\"590\"/>\n    </contour>\n    <contour>\n      <point x=\"1063\" y=\"-102\" type=\"line\"/>\n      <point x=\"1145\" y=\"3\"/>\n      <point x=\"1185\" y=\"130\"/>\n      <point x=\"1185\" y=\"257\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1185\" y=\"385\"/>\n      <point x=\"1144\" y=\"512\"/>\n      <point x=\"1062\" y=\"617\" type=\"curve\"/>\n      <point x=\"1035\" y=\"585\" type=\"line\"/>\n      <point x=\"1108\" y=\"490\"/>\n      <point x=\"1144\" y=\"369\"/>\n      <point x=\"1144\" y=\"255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1144\" y=\"141\"/>\n      <point x=\"1107\" y=\"27\"/>\n      <point x=\"1038\" y=\"-68\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"998\" y=\"-227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"-227\"/>\n      <point x=\"1090\" y=\"-186\"/>\n      <point x=\"1090\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"-84\"/>\n      <point x=\"1048\" y=\"-43\"/>\n      <point x=\"998\" y=\"-43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"-43\"/>\n      <point x=\"906\" y=\"-85\"/>\n      <point x=\"906\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"-185\"/>\n      <point x=\"947\" y=\"-227\"/>\n    </contour>\n    <contour>\n      <point x=\"998\" y=\"-192\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"-192\"/>\n      <point x=\"941\" y=\"-166\"/>\n      <point x=\"941\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"-102\"/>\n      <point x=\"966\" y=\"-78\"/>\n      <point x=\"997\" y=\"-78\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1030\" y=\"-78\"/>\n      <point x=\"1055\" y=\"-103\"/>\n      <point x=\"1055\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"-168\"/>\n      <point x=\"1029\" y=\"-192\"/>\n    </contour>\n    <contour>\n      <point x=\"605\" y=\"-329\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"-329\"/>\n      <point x=\"857\" y=\"-289\"/>\n      <point x=\"962\" y=\"-208\" type=\"curve\"/>\n      <point x=\"931\" y=\"-181\" type=\"line\"/>\n      <point x=\"836\" y=\"-252\"/>\n      <point x=\"721\" y=\"-288\"/>\n      <point x=\"607\" y=\"-288\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"-288\"/>\n      <point x=\"373\" y=\"-250\"/>\n      <point x=\"279\" y=\"-180\" type=\"curve\"/>\n      <point x=\"255\" y=\"-212\" type=\"line\"/>\n      <point x=\"358\" y=\"-290\"/>\n      <point x=\"481\" y=\"-329\"/>\n    </contour>\n    <contour>\n      <point x=\"210\" y=\"-227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"-227\"/>\n      <point x=\"303\" y=\"-185\"/>\n      <point x=\"303\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"-85\"/>\n      <point x=\"261\" y=\"-43\"/>\n      <point x=\"211\" y=\"-43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"162\" y=\"-43\"/>\n      <point x=\"119\" y=\"-84\"/>\n      <point x=\"119\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"-186\"/>\n      <point x=\"160\" y=\"-227\"/>\n    </contour>\n    <contour>\n      <point x=\"210\" y=\"-192\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"178\" y=\"-192\"/>\n      <point x=\"154\" y=\"-168\"/>\n      <point x=\"154\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"154\" y=\"-103\"/>\n      <point x=\"178\" y=\"-78\"/>\n      <point x=\"211\" y=\"-78\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"-78\"/>\n      <point x=\"268\" y=\"-102\"/>\n      <point x=\"268\" y=\"-135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"-166\"/>\n      <point x=\"244\" y=\"-192\"/>\n    </contour>\n    <contour>\n      <point x=\"293\" y=\"-153\" type=\"line\"/>\n      <point x=\"924\" y=\"-153\" type=\"line\"/>\n      <point x=\"924\" y=\"-113\" type=\"line\"/>\n      <point x=\"293\" y=\"-113\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"293\" y=\"625\" type=\"line\"/>\n      <point x=\"924\" y=\"625\" type=\"line\"/>\n      <point x=\"924\" y=\"665\" type=\"line\"/>\n      <point x=\"293\" y=\"665\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eng.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eng\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014B\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"280\" type=\"line\"/>\n      <point x=\"1008\" y=\"280\" type=\"line\"/>\n      <point x=\"1008\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"938\"/>\n      <point x=\"867\" y=\"1080\"/>\n      <point x=\"621\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1080\"/>\n      <point x=\"333\" y=\"1010\"/>\n      <point x=\"294\" y=\"868\" type=\"curve\"/>\n      <point x=\"222\" y=\"868\" type=\"line\"/>\n      <point x=\"286\" y=\"600\" type=\"line\"/>\n      <point x=\"286\" y=\"860\"/>\n      <point x=\"402\" y=\"988\"/>\n      <point x=\"630\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"988\"/>\n      <point x=\"914\" y=\"882\"/>\n      <point x=\"914\" y=\"694\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"533\" y=\"-470\" type=\"line\"/>\n      <point x=\"564\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"-448\"/>\n      <point x=\"1008\" y=\"-287\"/>\n      <point x=\"1008\" y=\"84\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"384\" type=\"line\"/>\n      <point x=\"914\" y=\"384\" type=\"line\"/>\n      <point x=\"914\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"-227\"/>\n      <point x=\"817\" y=\"-352\"/>\n      <point x=\"584\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"-384\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"836\" type=\"line\"/>\n      <point x=\"278\" y=\"1060\" type=\"line\"/>\n      <point x=\"192\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/enquiryC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"enquiryControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2405\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"Q.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>Q.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/enquiryC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"enquiryControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1028\" y=\"219\" type=\"line\"/>\n      <point x=\"1091\" y=\"275\" type=\"line\"/>\n      <point x=\"158\" y=\"1210\" type=\"line\"/>\n      <point x=\"95\" y=\"1152\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"221\" type=\"line\"/>\n      <point x=\"1097\" y=\"1145\" type=\"line\"/>\n      <point x=\"1034\" y=\"1203\" type=\"line\"/>\n      <point x=\"111\" y=\"277\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0119\"/>\n  <anchor x=\"630\" y=\"-480\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"858\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"-424\"/>\n      <point x=\"920\" y=\"-423\"/>\n      <point x=\"952\" y=\"-415\" type=\"curve\"/>\n      <point x=\"959\" y=\"-332\" type=\"line\"/>\n      <point x=\"932\" y=\"-335\"/>\n      <point x=\"905\" y=\"-337\"/>\n      <point x=\"884\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"-337\"/>\n      <point x=\"722\" y=\"-290\"/>\n      <point x=\"722\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"722\" y=\"-82\"/>\n      <point x=\"815\" y=\"-43\"/>\n      <point x=\"978\" y=\"8\" type=\"curve\"/>\n      <point x=\"973\" y=\"35\" type=\"line\"/>\n      <point x=\"739\" y=\"34\" type=\"line\"/>\n      <point x=\"739\" y=\"-34\" type=\"line\"/>\n      <point x=\"669\" y=\"-67\"/>\n      <point x=\"628\" y=\"-134\"/>\n      <point x=\"628\" y=\"-218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"-349\"/>\n      <point x=\"712\" y=\"-424\"/>\n    </contour>\n    <component base=\"e\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eopen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"025B\"/>\n  <outline>\n    <component base=\"epsilon\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/epsilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"epsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B5\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"640\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"626\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"-20\"/>\n      <point x=\"915\" y=\"-3\"/>\n      <point x=\"1016\" y=\"28\" type=\"curve\"/>\n      <point x=\"986\" y=\"122\" type=\"line\"/>\n      <point x=\"900\" y=\"98\"/>\n      <point x=\"799\" y=\"72\"/>\n      <point x=\"634\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"72\"/>\n      <point x=\"286\" y=\"138\"/>\n      <point x=\"286\" y=\"270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"286\" y=\"410\"/>\n      <point x=\"450\" y=\"480\"/>\n      <point x=\"778\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"480\" type=\"line\"/>\n      <point x=\"829\" y=\"570\" type=\"line\"/>\n      <point x=\"528\" y=\"531\" type=\"line\"/>\n      <point x=\"302\" y=\"510\"/>\n      <point x=\"190\" y=\"420\"/>\n      <point x=\"190\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"190\" y=\"72\"/>\n      <point x=\"334\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"472\" y=\"480\" type=\"line\"/>\n      <point x=\"815\" y=\"480\" type=\"line\"/>\n      <point x=\"829\" y=\"570\" type=\"line\"/>\n      <point x=\"486\" y=\"586\"/>\n      <point x=\"316\" y=\"660\"/>\n      <point x=\"316\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"923\"/>\n      <point x=\"432\" y=\"988\"/>\n      <point x=\"664\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"988\"/>\n      <point x=\"898\" y=\"971\"/>\n      <point x=\"994\" y=\"935\" type=\"curve\"/>\n      <point x=\"1026\" y=\"1022\" type=\"line\"/>\n      <point x=\"947\" y=\"1061\"/>\n      <point x=\"820\" y=\"1080\"/>\n      <point x=\"642\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"1080\"/>\n      <point x=\"220\" y=\"991\"/>\n      <point x=\"220\" y=\"812\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"220\" y=\"679\"/>\n      <point x=\"303\" y=\"591\"/>\n      <point x=\"472\" y=\"545\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/epsilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"epsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AD\"/>\n  <outline>\n    <component base=\"epsilon\"/>\n    <component base=\"tonos\" xOffset=\"130\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/equal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003D\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"914\" type=\"line\"/>\n      <point x=\"1076\" y=\"914\" type=\"line\"/>\n      <point x=\"1076\" y=\"1004\" type=\"line\"/>\n      <point x=\"124\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"414\" type=\"line\"/>\n      <point x=\"1076\" y=\"414\" type=\"line\"/>\n      <point x=\"1076\" y=\"504\" type=\"line\"/>\n      <point x=\"124\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"914\" type=\"line\"/>\n      <point x=\"1076\" y=\"914\" type=\"line\"/>\n      <point x=\"1076\" y=\"1004\" type=\"line\"/>\n      <point x=\"-20\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"414\" type=\"line\"/>\n      <point x=\"1076\" y=\"414\" type=\"line\"/>\n      <point x=\"1076\" y=\"504\" type=\"line\"/>\n      <point x=\"-20\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1290\" y=\"914\" type=\"line\"/>\n      <point x=\"2220\" y=\"914\" type=\"line\"/>\n      <point x=\"2220\" y=\"1004\" type=\"line\"/>\n      <point x=\"1290\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"414\" type=\"line\"/>\n      <point x=\"1110\" y=\"414\" type=\"line\"/>\n      <point x=\"1110\" y=\"504\" type=\"line\"/>\n      <point x=\"180\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"914\" type=\"line\"/>\n      <point x=\"1110\" y=\"914\" type=\"line\"/>\n      <point x=\"1110\" y=\"1004\" type=\"line\"/>\n      <point x=\"180\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1290\" y=\"414\" type=\"line\"/>\n      <point x=\"2220\" y=\"414\" type=\"line\"/>\n      <point x=\"2220\" y=\"504\" type=\"line\"/>\n      <point x=\"1290\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"180\" y=\"1074\" type=\"line\"/>\n      <point x=\"3420\" y=\"1074\" type=\"line\"/>\n      <point x=\"3420\" y=\"1164\" type=\"line\"/>\n      <point x=\"180\" y=\"1164\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"254\" type=\"line\"/>\n      <point x=\"3420\" y=\"254\" type=\"line\"/>\n      <point x=\"3420\" y=\"344\" type=\"line\"/>\n      <point x=\"180\" y=\"344\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"664\" type=\"line\"/>\n      <point x=\"3420\" y=\"664\" type=\"line\"/>\n      <point x=\"3420\" y=\"754\" type=\"line\"/>\n      <point x=\"180\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2370\" yOffset=\"-3\"/>\n    <component base=\"greater\" xOffset=\"1240\"/>\n    <component base=\"equal\" xOffset=\"56\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"2374\"/>\n    <component base=\"less\" xOffset=\"1254\"/>\n    <component base=\"equal\" xOffset=\"56\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"914\" type=\"line\"/>\n      <point x=\"1250\" y=\"914\" type=\"line\"/>\n      <point x=\"1250\" y=\"1004\" type=\"line\"/>\n      <point x=\"-50\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"414\" type=\"line\"/>\n      <point x=\"1250\" y=\"414\" type=\"line\"/>\n      <point x=\"1250\" y=\"504\" type=\"line\"/>\n      <point x=\"-50\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"914\" type=\"line\"/>\n      <point x=\"1220\" y=\"914\" type=\"line\"/>\n      <point x=\"1220\" y=\"1004\" type=\"line\"/>\n      <point x=\"124\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"414\" type=\"line\"/>\n      <point x=\"1220\" y=\"414\" type=\"line\"/>\n      <point x=\"1220\" y=\"504\" type=\"line\"/>\n      <point x=\"124\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/equivalence.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equivalence\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2261\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"1054\" type=\"line\"/>\n      <point x=\"1076\" y=\"1054\" type=\"line\"/>\n      <point x=\"1076\" y=\"1144\" type=\"line\"/>\n      <point x=\"124\" y=\"1144\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"274\" type=\"line\"/>\n      <point x=\"1076\" y=\"274\" type=\"line\"/>\n      <point x=\"1076\" y=\"364\" type=\"line\"/>\n      <point x=\"124\" y=\"364\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"754\" type=\"line\"/>\n      <point x=\"124\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/er-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"er-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0440\"/>\n  <outline>\n    <component base=\"p\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ereversed-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ereversed-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044D\"/>\n  <anchor x=\"550\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"550\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"-20\"/>\n      <point x=\"1040\" y=\"182\"/>\n      <point x=\"1040\" y=\"528\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"884\"/>\n      <point x=\"837\" y=\"1080\"/>\n      <point x=\"478\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"1080\"/>\n      <point x=\"310\" y=\"1074\"/>\n      <point x=\"244\" y=\"1063\" type=\"curve\"/>\n      <point x=\"237\" y=\"971\" type=\"line\"/>\n      <point x=\"314\" y=\"982\"/>\n      <point x=\"383\" y=\"988\"/>\n      <point x=\"454\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"988\"/>\n      <point x=\"944\" y=\"824\"/>\n      <point x=\"944\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"233\"/>\n      <point x=\"793\" y=\"72\"/>\n      <point x=\"534\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"399\" y=\"72\"/>\n      <point x=\"281\" y=\"121\"/>\n      <point x=\"207\" y=\"177\" type=\"curve\"/>\n      <point x=\"156\" y=\"103\" type=\"line\"/>\n      <point x=\"230\" y=\"34\"/>\n      <point x=\"364\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"416\" y=\"488\" type=\"line\"/>\n      <point x=\"950\" y=\"488\" type=\"line\"/>\n      <point x=\"950\" y=\"578\" type=\"line\"/>\n      <point x=\"416\" y=\"578\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/es-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"es-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0441\"/>\n  <outline>\n    <component base=\"c\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/escapeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"escapeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241B\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"C.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/escapeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"escapeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"755\" type=\"line\"/>\n      <point x=\"109\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/esh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"esh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0283\"/>\n  <anchor x=\"550\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"890\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"501\" y=\"500\" type=\"line\"/>\n      <point x=\"595\" y=\"500\" type=\"line\"/>\n      <point x=\"595\" y=\"1040\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"1300\"/>\n      <point x=\"709\" y=\"1428\"/>\n      <point x=\"938\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"1428\"/>\n      <point x=\"1044\" y=\"1424\"/>\n      <point x=\"1118\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1140\" y=\"1500\" type=\"line\"/>\n      <point x=\"1074\" y=\"1514\"/>\n      <point x=\"1015\" y=\"1520\"/>\n      <point x=\"944\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1520\"/>\n      <point x=\"501\" y=\"1358\"/>\n      <point x=\"501\" y=\"1030\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"-476\" type=\"line\"/>\n      <point x=\"181\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"-424\"/>\n      <point x=\"595\" y=\"-310\"/>\n      <point x=\"595\" y=\"14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"584\" type=\"line\"/>\n      <point x=\"501\" y=\"584\" type=\"line\"/>\n      <point x=\"501\" y=\"-18\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"-254\"/>\n      <point x=\"410\" y=\"-345\"/>\n      <point x=\"201\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"-390\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/estimated.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"estimated\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"212E\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"-20\"/>\n      <point x=\"924\" y=\"59\"/>\n      <point x=\"1049\" y=\"248\" type=\"curve\"/>\n      <point x=\"984\" y=\"289\" type=\"line\"/>\n      <point x=\"888\" y=\"132\"/>\n      <point x=\"768\" y=\"50\"/>\n      <point x=\"596\" y=\"50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"50\"/>\n      <point x=\"386\" y=\"89\"/>\n      <point x=\"305\" y=\"167\" type=\"curve\"/>\n      <point x=\"305\" y=\"529\" type=\"line\"/>\n      <point x=\"1120\" y=\"529\" type=\"line\"/>\n      <point x=\"1105\" y=\"855\"/>\n      <point x=\"910\" y=\"1080\"/>\n      <point x=\"596\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"1080\"/>\n      <point x=\"80\" y=\"851\"/>\n      <point x=\"80\" y=\"531\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"222\"/>\n      <point x=\"280\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"305\" y=\"598\" type=\"line\"/>\n      <point x=\"305\" y=\"893\" type=\"line\"/>\n      <point x=\"383\" y=\"972\"/>\n      <point x=\"479\" y=\"1013\"/>\n      <point x=\"592\" y=\"1013\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"1013\"/>\n      <point x=\"808\" y=\"968\"/>\n      <point x=\"886\" y=\"891\" type=\"curve\"/>\n      <point x=\"886\" y=\"598\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B7\"/>\n  <anchor x=\"590\" y=\"-280\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"-460\" type=\"line\"/>\n      <point x=\"1008\" y=\"-460\" type=\"line\"/>\n      <point x=\"1008\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"938\"/>\n      <point x=\"867\" y=\"1080\"/>\n      <point x=\"621\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1080\"/>\n      <point x=\"333\" y=\"1010\"/>\n      <point x=\"294\" y=\"868\" type=\"curve\"/>\n      <point x=\"222\" y=\"868\" type=\"line\"/>\n      <point x=\"286\" y=\"600\" type=\"line\"/>\n      <point x=\"286\" y=\"860\"/>\n      <point x=\"402\" y=\"988\"/>\n      <point x=\"630\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"988\"/>\n      <point x=\"914\" y=\"882\"/>\n      <point x=\"914\" y=\"694\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"836\" type=\"line\"/>\n      <point x=\"278\" y=\"1060\" type=\"line\"/>\n      <point x=\"192\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/etatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"etatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AE\"/>\n  <outline>\n    <component base=\"eta\"/>\n    <component base=\"tonos\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eth.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F0\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"958\" y=\"272\" type=\"line\"/>\n      <point x=\"1055\" y=\"456\" type=\"line\"/>\n      <point x=\"1055\" y=\"574\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"1087\"/>\n      <point x=\"854\" y=\"1358\"/>\n      <point x=\"383\" y=\"1516\" type=\"curve\"/>\n      <point x=\"343\" y=\"1437\" type=\"line\"/>\n      <point x=\"775\" y=\"1298\"/>\n      <point x=\"958\" y=\"1068\"/>\n      <point x=\"958\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"577\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"72\"/>\n      <point x=\"233\" y=\"209\"/>\n      <point x=\"233\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"689\"/>\n      <point x=\"360\" y=\"828\"/>\n      <point x=\"591\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"828\"/>\n      <point x=\"959\" y=\"688\"/>\n      <point x=\"959\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"209\"/>\n      <point x=\"817\" y=\"72\"/>\n    </contour>\n    <contour>\n      <point x=\"579\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"-20\"/>\n      <point x=\"1055\" y=\"157\"/>\n      <point x=\"1055\" y=\"456\" type=\"curve\"/>\n      <point x=\"993\" y=\"408\" type=\"line\"/>\n      <point x=\"993\" y=\"708\" type=\"line\"/>\n      <point x=\"949\" y=\"708\" type=\"line\"/>\n      <point x=\"904\" y=\"843\"/>\n      <point x=\"763\" y=\"920\"/>\n      <point x=\"571\" y=\"920\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"294\" y=\"920\"/>\n      <point x=\"137\" y=\"745\"/>\n      <point x=\"137\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"151\"/>\n      <point x=\"301\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"265\" y=\"1037\" type=\"line\"/>\n      <point x=\"1079\" y=\"1327\" type=\"line\"/>\n      <point x=\"1059\" y=\"1412\" type=\"line\"/>\n      <point x=\"243\" y=\"1122\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/etilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"etilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBD\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"tildecomb\" xOffset=\"7\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eturned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01DD\"/>\n  <outline>\n    <component base=\"schwa\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/euro.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"euro\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AC\"/>\n  <outline>\n    <contour>\n      <point x=\"798\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"-20\"/>\n      <point x=\"1003\" y=\"2\"/>\n      <point x=\"1100\" y=\"48\" type=\"curve\"/>\n      <point x=\"1075\" y=\"137\" type=\"line\"/>\n      <point x=\"988\" y=\"92\"/>\n      <point x=\"902\" y=\"70\"/>\n      <point x=\"812\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"70\"/>\n      <point x=\"331\" y=\"287\"/>\n      <point x=\"331\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"1123\"/>\n      <point x=\"506\" y=\"1350\"/>\n      <point x=\"776\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"1350\"/>\n      <point x=\"996\" y=\"1293\"/>\n      <point x=\"1060\" y=\"1194\" type=\"curve\"/>\n      <point x=\"1125\" y=\"1261\" type=\"line\"/>\n      <point x=\"1068\" y=\"1375\"/>\n      <point x=\"940\" y=\"1440\"/>\n      <point x=\"774\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"1440\"/>\n      <point x=\"235\" y=\"1174\"/>\n      <point x=\"235\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"235\" y=\"224\"/>\n      <point x=\"424\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"79\" y=\"515\" type=\"line\"/>\n      <point x=\"897\" y=\"515\" type=\"line\"/>\n      <point x=\"897\" y=\"605\" type=\"line\"/>\n      <point x=\"79\" y=\"605\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"79\" y=\"805\" type=\"line\"/>\n      <point x=\"897\" y=\"805\" type=\"line\"/>\n      <point x=\"897\" y=\"895\" type=\"line\"/>\n      <point x=\"79\" y=\"895\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/eurocurrency.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eurocurrency\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A0\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"584\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"584\" type=\"line\"/>\n      <point x=\"578\" y=\"676\" type=\"line\"/>\n      <point x=\"532\" y=\"676\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"676\"/>\n      <point x=\"182\" y=\"791\"/>\n      <point x=\"182\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"182\" y=\"1224\"/>\n      <point x=\"298\" y=\"1347\"/>\n      <point x=\"502\" y=\"1347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"1347\"/>\n      <point x=\"693\" y=\"1303\"/>\n      <point x=\"746\" y=\"1228\" type=\"curve\"/>\n      <point x=\"813\" y=\"1299\" type=\"line\"/>\n      <point x=\"737\" y=\"1387\"/>\n      <point x=\"654\" y=\"1439\"/>\n      <point x=\"500\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"1439\"/>\n      <point x=\"86\" y=\"1283\"/>\n      <point x=\"86\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"86\" y=\"740\"/>\n      <point x=\"239\" y=\"584\"/>\n    </contour>\n    <contour>\n      <point x=\"519\" y=\"0\" type=\"line\"/>\n      <point x=\"1055\" y=\"0\" type=\"line\"/>\n      <point x=\"1055\" y=\"90\" type=\"line\"/>\n      <point x=\"519\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"519\" y=\"0\" type=\"line\"/>\n      <point x=\"613\" y=\"0\" type=\"line\"/>\n      <point x=\"613\" y=\"880\" type=\"line\"/>\n      <point x=\"519\" y=\"880\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"519\" y=\"396\" type=\"line\"/>\n      <point x=\"975\" y=\"396\" type=\"line\"/>\n      <point x=\"975\" y=\"486\" type=\"line\"/>\n      <point x=\"519\" y=\"486\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"519\" y=\"790\" type=\"line\"/>\n      <point x=\"1055\" y=\"790\" type=\"line\"/>\n      <point x=\"1055\" y=\"880\" type=\"line\"/>\n      <point x=\"519\" y=\"880\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0021\"/>\n  <outline>\n    <contour>\n      <point x=\"552\" y=\"356\" type=\"line\"/>\n      <point x=\"644\" y=\"356\" type=\"line\"/>\n      <point x=\"650\" y=\"1430\" type=\"line\"/>\n      <point x=\"550\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <component base=\"period\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"240\"/>\n    <component base=\"colon\" xOffset=\"1100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"684\" y=\"-100\" type=\"line\"/>\n      <point x=\"786\" y=\"-100\" type=\"line\"/>\n      <point x=\"1700\" y=\"1520\" type=\"line\"/>\n      <point x=\"1598\" y=\"1520\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"414\" type=\"line\"/>\n      <point x=\"2220\" y=\"414\" type=\"line\"/>\n      <point x=\"2220\" y=\"504\" type=\"line\"/>\n      <point x=\"180\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"914\" type=\"line\"/>\n      <point x=\"2220\" y=\"914\" type=\"line\"/>\n      <point x=\"2220\" y=\"1004\" type=\"line\"/>\n      <point x=\"180\" y=\"1004\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1324\" y=\"-100\" type=\"line\"/>\n      <point x=\"1426\" y=\"-100\" type=\"line\"/>\n      <point x=\"2340\" y=\"1520\" type=\"line\"/>\n      <point x=\"2238\" y=\"1520\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"254\" type=\"line\"/>\n      <point x=\"3420\" y=\"254\" type=\"line\"/>\n      <point x=\"3420\" y=\"344\" type=\"line\"/>\n      <point x=\"180\" y=\"344\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"664\" type=\"line\"/>\n      <point x=\"3420\" y=\"664\" type=\"line\"/>\n      <point x=\"3420\" y=\"754\" type=\"line\"/>\n      <point x=\"180\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"1074\" type=\"line\"/>\n      <point x=\"3420\" y=\"1074\" type=\"line\"/>\n      <point x=\"3420\" y=\"1164\" type=\"line\"/>\n      <point x=\"180\" y=\"1164\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"914\" type=\"line\"/>\n      <point x=\"1250\" y=\"914\" type=\"line\"/>\n      <point x=\"1250\" y=\"1004\" type=\"line\"/>\n      <point x=\"900\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"900\" y=\"414\" type=\"line\"/>\n      <point x=\"1250\" y=\"414\" type=\"line\"/>\n      <point x=\"1250\" y=\"504\" type=\"line\"/>\n      <point x=\"900\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"914\" type=\"line\"/>\n      <point x=\"300\" y=\"914\" type=\"line\"/>\n      <point x=\"300\" y=\"1004\" type=\"line\"/>\n      <point x=\"-50\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"414\" type=\"line\"/>\n      <point x=\"300\" y=\"414\" type=\"line\"/>\n      <point x=\"300\" y=\"504\" type=\"line\"/>\n      <point x=\"-50\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"exclam\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_exclam.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_exclam.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"140\"/>\n    <component base=\"exclam\" xOffset=\"1060\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_exclam_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_exclam_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"100\"/>\n    <component base=\"exclam\" xOffset=\"1200\"/>\n    <component base=\"period\" xOffset=\"2300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"240\"/>\n    <component base=\"period\" xOffset=\"1100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclamdouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclamdouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203C\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"-270\"/>\n    <component base=\"exclam\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/exclamdown.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclamdown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A1\"/>\n  <outline>\n    <contour>\n      <point x=\"550\" y=\"-370\" type=\"line\"/>\n      <point x=\"650\" y=\"-370\" type=\"line\"/>\n      <point x=\"644\" y=\"704\" type=\"line\"/>\n      <point x=\"552\" y=\"704\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" yScale=\"-1\" yOffset=\"1060\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ezh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ezh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0292\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"541\" y=\"-460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"858\" y=\"-460\"/>\n      <point x=\"1037\" y=\"-279\"/>\n      <point x=\"1037\" y=\"-23\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"242\"/>\n      <point x=\"846\" y=\"403\"/>\n      <point x=\"511\" y=\"403\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"403\" type=\"line\"/>\n      <point x=\"400\" y=\"313\" type=\"line\"/>\n      <point x=\"511\" y=\"313\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"313\"/>\n      <point x=\"941\" y=\"191\"/>\n      <point x=\"941\" y=\"-23\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"-234\"/>\n      <point x=\"798\" y=\"-368\"/>\n      <point x=\"552\" y=\"-368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"-368\"/>\n      <point x=\"288\" y=\"-323\"/>\n      <point x=\"163\" y=\"-217\" type=\"curve\"/>\n      <point x=\"103\" y=\"-281\" type=\"line\"/>\n      <point x=\"212\" y=\"-400\"/>\n      <point x=\"360\" y=\"-460\"/>\n    </contour>\n    <contour>\n      <point x=\"406\" y=\"313\" type=\"line\"/>\n      <point x=\"423\" y=\"344\" type=\"line\"/>\n      <point x=\"972\" y=\"964\" type=\"line\"/>\n      <point x=\"972\" y=\"1051\" type=\"line\"/>\n      <point x=\"197\" y=\"1051\" type=\"line\"/>\n      <point x=\"197\" y=\"961\" type=\"line\"/>\n      <point x=\"950\" y=\"961\" type=\"line\"/>\n      <point x=\"901\" y=\"1010\" type=\"line\"/>\n      <point x=\"319\" y=\"357\" type=\"line\"/>\n      <point x=\"339\" y=\"313\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/f.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"f\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0066\"/>\n  <anchor x=\"508\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"740\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"461\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1280\"/>\n      <point x=\"669\" y=\"1428\"/>\n      <point x=\"898\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"1428\"/>\n      <point x=\"1004\" y=\"1424\"/>\n      <point x=\"1078\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1100\" y=\"1500\" type=\"line\"/>\n      <point x=\"1034\" y=\"1514\"/>\n      <point x=\"975\" y=\"1520\"/>\n      <point x=\"904\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"607\" y=\"1520\"/>\n      <point x=\"461\" y=\"1338\"/>\n      <point x=\"461\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"92\" y=\"688\" type=\"line\"/>\n      <point x=\"1024\" y=\"688\" type=\"line\"/>\n      <point x=\"1024\" y=\"778\" type=\"line\"/>\n      <point x=\"92\" y=\"778\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fatha-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fatha-ar\" format=\"2\">\n  <unicode hex=\"064E\"/>\n  <anchor x=\"596\" y=\"1264\" name=\"_top\"/>\n  <anchor x=\"593\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <component base=\"_fatha-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fathatan-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fathatan-ar\" format=\"2\">\n  <unicode hex=\"064B\"/>\n  <anchor x=\"596\" y=\"1314\" name=\"_top\"/>\n  <anchor x=\"599\" y=\"1246\" name=\"_top.dot\"/>\n  <anchor x=\"593\" y=\"1701\" name=\"top\"/>\n  <outline>\n    <component base=\"_fatha-ar\"/>\n    <component base=\"_fatha-ar\" yScale=\"0.9999\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fatha-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-81\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"4\" yOffset=\"317\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"244\" yOffset=\"317\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0641\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"249\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"155\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"feh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"14\" yOffset=\"317\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-37\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"249\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A2\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"290\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"113\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotMovedbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-81\" yOffset=\"460\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"4\" yOffset=\"317\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-37\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"244\" yOffset=\"317\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"249\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A3\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"249\" yOffset=\"460\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"290\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"113\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"14\" yOffset=\"317\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-81\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"502\" y=\"617\" angle=\"0\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-37\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"4\" yOffset=\"317\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"502\" y=\"617\" angle=\"0\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"249\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"244\" yOffset=\"317\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A4\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"290\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"249\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"113\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotbelowThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"14\" yOffset=\"317\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"12\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"562\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"512\" y=\"1252\" name=\"top\"/>\n  <anchor x=\"519\" y=\"1002\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-36\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"-3\"/>\n      <point x=\"532\" y=\"16\"/>\n      <point x=\"640\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"116\"/>\n      <point x=\"841\" y=\"205\"/>\n      <point x=\"841\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"743\"/>\n      <point x=\"718\" y=\"924\"/>\n      <point x=\"524\" y=\"924\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"924\"/>\n      <point x=\"221\" y=\"758\"/>\n      <point x=\"221\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"221\" y=\"379\"/>\n      <point x=\"298\" y=\"310\"/>\n      <point x=\"495\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"310\"/>\n      <point x=\"699\" y=\"342\"/>\n      <point x=\"730\" y=\"382\" type=\"curve\"/>\n      <point x=\"789\" y=\"385\" type=\"line\"/>\n      <point x=\"793\" y=\"451\" type=\"line\"/>\n      <point x=\"716\" y=\"431\"/>\n      <point x=\"626\" y=\"404\"/>\n      <point x=\"528\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"366\" y=\"404\"/>\n      <point x=\"313\" y=\"439\"/>\n      <point x=\"313\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"711\"/>\n      <point x=\"394\" y=\"830\"/>\n      <point x=\"517\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"830\"/>\n      <point x=\"749\" y=\"668\"/>\n      <point x=\"749\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"749\" y=\"231\"/>\n      <point x=\"699\" y=\"190\"/>\n      <point x=\"624\" y=\"154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"530\" y=\"109\"/>\n      <point x=\"357\" y=\"91\"/>\n      <point x=\"-6\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-666\" y=\"91\"/>\n      <point x=\"-776\" y=\"163\"/>\n      <point x=\"-776\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-776\" y=\"506\"/>\n      <point x=\"-757\" y=\"586\"/>\n      <point x=\"-744\" y=\"665\" type=\"curve\"/>\n      <point x=\"-829\" y=\"665\" type=\"line\"/>\n      <point x=\"-848\" y=\"589\"/>\n      <point x=\"-868\" y=\"487\"/>\n      <point x=\"-868\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-868\" y=\"95\"/>\n      <point x=\"-724\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"565\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"565\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"600\" y=\"1109\" name=\"top\"/>\n  <anchor x=\"604\" y=\"859\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-36\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"118\" y=\"-3\"/>\n      <point x=\"520\" y=\"24\"/>\n      <point x=\"642\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"138\"/>\n      <point x=\"894\" y=\"246\"/>\n      <point x=\"894\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"633\"/>\n      <point x=\"776\" y=\"751\"/>\n      <point x=\"609\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"751\"/>\n      <point x=\"309\" y=\"598\"/>\n      <point x=\"309\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"122\"/>\n      <point x=\"544\" y=\"-3\"/>\n      <point x=\"1185\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1254\" y=\"-3\"/>\n      <point x=\"1280\" y=\"6\"/>\n      <point x=\"1280\" y=\"60\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1280\" y=\"84\"/>\n      <point x=\"1267\" y=\"91\"/>\n      <point x=\"1202\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"91\"/>\n      <point x=\"401\" y=\"224\"/>\n      <point x=\"401\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"560\"/>\n      <point x=\"476\" y=\"659\"/>\n      <point x=\"607\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"659\"/>\n      <point x=\"802\" y=\"554\"/>\n      <point x=\"802\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"287\"/>\n      <point x=\"747\" y=\"203\"/>\n      <point x=\"617\" y=\"154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"122\"/>\n      <point x=\"146\" y=\"91\"/>\n      <point x=\"-16\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-676\" y=\"91\"/>\n      <point x=\"-776\" y=\"163\"/>\n      <point x=\"-776\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-776\" y=\"506\"/>\n      <point x=\"-757\" y=\"586\"/>\n      <point x=\"-744\" y=\"665\" type=\"curve\"/>\n      <point x=\"-829\" y=\"665\" type=\"line\"/>\n      <point x=\"-848\" y=\"589\"/>\n      <point x=\"-868\" y=\"487\"/>\n      <point x=\"-868\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-868\" y=\"95\"/>\n      <point x=\"-724\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"502\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"851\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"840\" y=\"1109\" name=\"top\"/>\n  <anchor x=\"844\" y=\"859\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"509\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"663\" y=\"-3\"/>\n      <point x=\"810\" y=\"10\"/>\n      <point x=\"926\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"138\"/>\n      <point x=\"1128\" y=\"246\"/>\n      <point x=\"1128\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"633\"/>\n      <point x=\"1010\" y=\"751\"/>\n      <point x=\"843\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"751\"/>\n      <point x=\"543\" y=\"598\"/>\n      <point x=\"543\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"122\"/>\n      <point x=\"778\" y=\"-3\"/>\n      <point x=\"1185\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1274\" y=\"-3\"/>\n      <point x=\"1280\" y=\"16\"/>\n      <point x=\"1280\" y=\"60\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1280\" y=\"75\"/>\n      <point x=\"1277\" y=\"91\"/>\n      <point x=\"1202\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"91\"/>\n      <point x=\"635\" y=\"224\"/>\n      <point x=\"635\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"635\" y=\"560\"/>\n      <point x=\"710\" y=\"659\"/>\n      <point x=\"841\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"659\"/>\n      <point x=\"1036\" y=\"554\"/>\n      <point x=\"1036\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"287\"/>\n      <point x=\"981\" y=\"203\"/>\n      <point x=\"901\" y=\"154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"107\"/>\n      <point x=\"691\" y=\"91\"/>\n      <point x=\"529\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"91\"/>\n      <point x=\"106\" y=\"133\"/>\n      <point x=\"106\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"466\"/>\n      <point x=\"122\" y=\"550\"/>\n      <point x=\"137\" y=\"626\" type=\"curve\"/>\n      <point x=\"52\" y=\"626\" type=\"line\"/>\n      <point x=\"36\" y=\"572\"/>\n      <point x=\"14\" y=\"457\"/>\n      <point x=\"14\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"65\"/>\n      <point x=\"151\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A1\"/>\n  <anchor x=\"592\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"892\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"842\" y=\"1252\" name=\"top\"/>\n  <anchor x=\"849\" y=\"1002\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"539\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"-3\"/>\n      <point x=\"921\" y=\"7\"/>\n      <point x=\"1024\" y=\"60\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1149\" y=\"124\"/>\n      <point x=\"1181\" y=\"225\"/>\n      <point x=\"1181\" y=\"431\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1181\" y=\"733\"/>\n      <point x=\"1058\" y=\"924\"/>\n      <point x=\"864\" y=\"924\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"682\" y=\"924\"/>\n      <point x=\"561\" y=\"758\"/>\n      <point x=\"561\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"379\"/>\n      <point x=\"638\" y=\"310\"/>\n      <point x=\"835\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"987\" y=\"310\"/>\n      <point x=\"1039\" y=\"342\"/>\n      <point x=\"1070\" y=\"382\" type=\"curve\"/>\n      <point x=\"1129\" y=\"385\" type=\"line\"/>\n      <point x=\"1133\" y=\"451\" type=\"line\"/>\n      <point x=\"1056\" y=\"431\"/>\n      <point x=\"966\" y=\"404\"/>\n      <point x=\"868\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"404\"/>\n      <point x=\"653\" y=\"439\"/>\n      <point x=\"653\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"653\" y=\"711\"/>\n      <point x=\"734\" y=\"830\"/>\n      <point x=\"857\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"830\"/>\n      <point x=\"1089\" y=\"658\"/>\n      <point x=\"1089\" y=\"424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1089\" y=\"251\"/>\n      <point x=\"1079\" y=\"200\"/>\n      <point x=\"1004\" y=\"154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"99\"/>\n      <point x=\"742\" y=\"91\"/>\n      <point x=\"559\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"91\"/>\n      <point x=\"106\" y=\"133\"/>\n      <point x=\"106\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"466\"/>\n      <point x=\"124\" y=\"550\"/>\n      <point x=\"137\" y=\"626\" type=\"curve\"/>\n      <point x=\"56\" y=\"626\" type=\"line\"/>\n      <point x=\"38\" y=\"570\"/>\n      <point x=\"14\" y=\"457\"/>\n      <point x=\"14\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"65\"/>\n      <point x=\"161\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"941\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"748\" y=\"1252\" name=\"top\"/>\n  <anchor x=\"755\" y=\"1002\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"734\" y=\"22\" type=\"line\"/>\n      <point x=\"1031\" y=\"61\"/>\n      <point x=\"1074\" y=\"120\"/>\n      <point x=\"1074\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1074\" y=\"743\"/>\n      <point x=\"951\" y=\"924\"/>\n      <point x=\"757\" y=\"924\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"924\"/>\n      <point x=\"454\" y=\"758\"/>\n      <point x=\"454\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"379\"/>\n      <point x=\"531\" y=\"310\"/>\n      <point x=\"728\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"310\"/>\n      <point x=\"932\" y=\"342\"/>\n      <point x=\"963\" y=\"382\" type=\"curve\"/>\n      <point x=\"1022\" y=\"385\" type=\"line\"/>\n      <point x=\"1026\" y=\"451\" type=\"line\"/>\n      <point x=\"949\" y=\"431\"/>\n      <point x=\"859\" y=\"404\"/>\n      <point x=\"761\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"404\"/>\n      <point x=\"546\" y=\"439\"/>\n      <point x=\"546\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"711\"/>\n      <point x=\"627\" y=\"830\"/>\n      <point x=\"750\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"830\"/>\n      <point x=\"982\" y=\"668\"/>\n      <point x=\"982\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"231\"/>\n      <point x=\"972\" y=\"180\"/>\n      <point x=\"897\" y=\"144\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"128\"/>\n      <point x=\"815\" y=\"118\"/>\n      <point x=\"746\" y=\"116\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"615\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"715\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"658\" y=\"1252\" name=\"top\"/>\n  <anchor x=\"665\" y=\"1002\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-15\" y=\"-3\" type=\"line\"/>\n      <point x=\"424\" y=\"-3\"/>\n      <point x=\"685\" y=\"16\"/>\n      <point x=\"793\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"116\"/>\n      <point x=\"994\" y=\"205\"/>\n      <point x=\"994\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"743\"/>\n      <point x=\"871\" y=\"924\"/>\n      <point x=\"677\" y=\"924\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"924\"/>\n      <point x=\"374\" y=\"758\"/>\n      <point x=\"374\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"379\"/>\n      <point x=\"451\" y=\"310\"/>\n      <point x=\"648\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"310\"/>\n      <point x=\"852\" y=\"342\"/>\n      <point x=\"883\" y=\"382\" type=\"curve\"/>\n      <point x=\"942\" y=\"385\" type=\"line\"/>\n      <point x=\"946\" y=\"451\" type=\"line\"/>\n      <point x=\"869\" y=\"431\"/>\n      <point x=\"779\" y=\"404\"/>\n      <point x=\"681\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"519\" y=\"404\"/>\n      <point x=\"466\" y=\"439\"/>\n      <point x=\"466\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"711\"/>\n      <point x=\"547\" y=\"830\"/>\n      <point x=\"670\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"819\" y=\"830\"/>\n      <point x=\"902\" y=\"668\"/>\n      <point x=\"902\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"231\"/>\n      <point x=\"852\" y=\"190\"/>\n      <point x=\"777\" y=\"154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"683\" y=\"109\"/>\n      <point x=\"463\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehDotless-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"585\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"585\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"610\" y=\"1109\" name=\"top\"/>\n  <anchor x=\"614\" y=\"859\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-11\" y=\"-3\" type=\"line\"/>\n      <point x=\"343\" y=\"-3\"/>\n      <point x=\"510\" y=\"14\"/>\n      <point x=\"632\" y=\"60\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"128\"/>\n      <point x=\"894\" y=\"246\"/>\n      <point x=\"894\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"633\"/>\n      <point x=\"776\" y=\"751\"/>\n      <point x=\"609\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"751\"/>\n      <point x=\"309\" y=\"598\"/>\n      <point x=\"309\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"112\"/>\n      <point x=\"544\" y=\"-3\"/>\n      <point x=\"1185\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1244\" y=\"-3\"/>\n      <point x=\"1280\" y=\"6\"/>\n      <point x=\"1280\" y=\"51\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1280\" y=\"85\"/>\n      <point x=\"1257\" y=\"91\"/>\n      <point x=\"1202\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"91\"/>\n      <point x=\"401\" y=\"214\"/>\n      <point x=\"401\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"560\"/>\n      <point x=\"476\" y=\"659\"/>\n      <point x=\"607\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"659\"/>\n      <point x=\"802\" y=\"554\"/>\n      <point x=\"802\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"287\"/>\n      <point x=\"737\" y=\"193\"/>\n      <point x=\"607\" y=\"144\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"112\"/>\n      <point x=\"362\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-38\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-35\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"251\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A5\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"292\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"13\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-15\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-38\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-35\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"251\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0761\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"292\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"115\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-15\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-40\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-37\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"249\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0760\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"290\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"113\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fehTwodotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB01\"/>\n  <outline>\n    <contour>\n      <point x=\"342\" y=\"0\" type=\"line\"/>\n      <point x=\"436\" y=\"0\" type=\"line\"/>\n      <point x=\"436\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"1280\"/>\n      <point x=\"557\" y=\"1428\"/>\n      <point x=\"799\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"846\" y=\"1428\"/>\n      <point x=\"893\" y=\"1424\"/>\n      <point x=\"959\" y=\"1414\" type=\"curve\"/>\n      <point x=\"981\" y=\"1500\" type=\"line\"/>\n      <point x=\"922\" y=\"1514\"/>\n      <point x=\"869\" y=\"1520\"/>\n      <point x=\"805\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"1520\"/>\n      <point x=\"342\" y=\"1338\"/>\n      <point x=\"342\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"92\" y=\"688\" type=\"line\"/>\n      <point x=\"964\" y=\"688\" type=\"line\"/>\n      <point x=\"964\" y=\"778\" type=\"line\"/>\n      <point x=\"92\" y=\"778\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"778\" type=\"line\"/>\n      <point x=\"914\" y=\"778\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fileS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fileSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241C\"/>\n  <outline>\n    <component base=\"F.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/filledR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"filledRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AC\"/>\n  <note>\nfilledrect\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"0\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/finalkaf-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalkaf-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DA\"/>\n  <anchor x=\"401\" y=\"449\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"947\" y=\"718\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"1054\"/>\n      <point x=\"812\" y=\"1200\"/>\n      <point x=\"485\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"1200\"/>\n      <point x=\"170\" y=\"1230\"/>\n      <point x=\"140\" y=\"1253\" type=\"curve\"/>\n      <point x=\"86\" y=\"1174\" type=\"line\"/>\n      <point x=\"123\" y=\"1143\"/>\n      <point x=\"164\" y=\"1101\"/>\n      <point x=\"241\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"1101\"/>\n      <point x=\"848\" y=\"997\"/>\n      <point x=\"848\" y=\"709\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"-460\" type=\"line\"/>\n      <point x=\"947\" y=\"-460\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/finalkafdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalkafdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB3A\"/>\n  <outline>\n    <component base=\"finalkaf-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-199\" yOffset=\"-95\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/finalmem-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalmem-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DD\"/>\n  <outline>\n    <contour>\n      <point x=\"875\" y=\"0\" type=\"line\"/>\n      <point x=\"974\" y=\"0\" type=\"line\"/>\n      <point x=\"974\" y=\"957\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1119\"/>\n      <point x=\"901\" y=\"1200\"/>\n      <point x=\"739\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1200\"/>\n      <point x=\"198\" y=\"1230\"/>\n      <point x=\"168\" y=\"1253\" type=\"curve\"/>\n      <point x=\"114\" y=\"1174\" type=\"line\"/>\n      <point x=\"151\" y=\"1143\"/>\n      <point x=\"192\" y=\"1101\"/>\n      <point x=\"269\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"726\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"1101\"/>\n      <point x=\"875\" y=\"1045\"/>\n      <point x=\"875\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"974\" y=\"0\" type=\"line\"/>\n      <point x=\"974\" y=\"99\" type=\"line\"/>\n      <point x=\"151\" y=\"99\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"250\" y=\"0\" type=\"line\"/>\n      <point x=\"250\" y=\"820\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"929\"/>\n      <point x=\"254\" y=\"1101\"/>\n      <point x=\"412\" y=\"1101\" type=\"curve\"/>\n      <point x=\"233\" y=\"1166\" type=\"line\"/>\n      <point x=\"233\" y=\"1094\" type=\"line\"/>\n      <point x=\"185\" y=\"1065\"/>\n      <point x=\"151\" y=\"978\"/>\n      <point x=\"151\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/finalnun-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalnun-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DF\"/>\n  <outline>\n    <contour>\n      <point x=\"788\" y=\"-460\" type=\"line\"/>\n      <point x=\"788\" y=\"1200\" type=\"line\"/>\n      <point x=\"689\" y=\"1200\" type=\"line\"/>\n      <point x=\"689\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"787\" y=\"1200\" type=\"line\"/>\n      <point x=\"221\" y=\"1200\" type=\"line\"/>\n      <point x=\"221\" y=\"1101\" type=\"line\"/>\n      <point x=\"787\" y=\"1101\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/finalpe-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalpe-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E3\"/>\n  <anchor x=\"597\" y=\"838\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"871\" y=\"-460\" type=\"line\"/>\n      <point x=\"970\" y=\"-460\" type=\"line\"/>\n      <point x=\"970\" y=\"810\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"970\" y=\"1058\"/>\n      <point x=\"833\" y=\"1200\"/>\n      <point x=\"589\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"241\" y=\"1200\" type=\"line\"/>\n      <point x=\"196\" y=\"1016\"/>\n      <point x=\"166\" y=\"818\"/>\n      <point x=\"138\" y=\"537\" type=\"curve\"/>\n      <point x=\"238\" y=\"537\" type=\"line\"/>\n      <point x=\"268\" y=\"801\"/>\n      <point x=\"295\" y=\"1003\"/>\n      <point x=\"316\" y=\"1101\" type=\"curve\"/>\n      <point x=\"589\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"1101\"/>\n      <point x=\"871\" y=\"997\"/>\n      <point x=\"871\" y=\"809\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"534\" y=\"476\" type=\"line\"/>\n      <point x=\"554\" y=\"573\" type=\"line\"/>\n      <point x=\"154\" y=\"634\" type=\"line\"/>\n      <point x=\"138\" y=\"537\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/finalpedagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finalpedagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB43\"/>\n  <outline>\n    <component base=\"finalpe-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-3\" yOffset=\"294\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/finaltsadi-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"finaltsadi-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E5\"/>\n  <outline>\n    <contour>\n      <point x=\"543\" y=\"-460\" type=\"line\"/>\n      <point x=\"642\" y=\"-460\" type=\"line\"/>\n      <point x=\"642\" y=\"464\" type=\"line\"/>\n      <point x=\"652\" y=\"446\" type=\"line\"/>\n      <point x=\"217\" y=\"1200\" type=\"line\"/>\n      <point x=\"101\" y=\"1200\" type=\"line\"/>\n      <point x=\"543\" y=\"432\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"607\" y=\"423\" type=\"line\"/>\n      <point x=\"736\" y=\"423\"/>\n      <point x=\"930\" y=\"498\"/>\n      <point x=\"949\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"901\"/>\n      <point x=\"960\" y=\"1094\"/>\n      <point x=\"960\" y=\"1200\" type=\"curve\"/>\n      <point x=\"858\" y=\"1200\" type=\"line\"/>\n      <point x=\"858\" y=\"1094\"/>\n      <point x=\"851\" y=\"888\"/>\n      <point x=\"844\" y=\"782\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"600\"/>\n      <point x=\"731\" y=\"495\"/>\n      <point x=\"577\" y=\"495\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"684\" y=\"1101\" type=\"line\"/>\n      <point x=\"951\" y=\"1101\" type=\"line\"/>\n      <point x=\"951\" y=\"1200\" type=\"line\"/>\n      <point x=\"684\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/firsttonechinese.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"firsttonechinese\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C9\"/>\n  <outline>\n    <component base=\"macron\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fisheye.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fisheye\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C9\"/>\n  <note>\nuni25C9\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"736\" y=\"485\"/>\n      <point x=\"825\" y=\"574\"/>\n      <point x=\"825\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"846\"/>\n      <point x=\"736\" y=\"935\"/>\n      <point x=\"600\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"935\"/>\n      <point x=\"375\" y=\"846\"/>\n      <point x=\"375\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"574\"/>\n      <point x=\"464\" y=\"485\"/>\n    </contour>\n    <component base=\"whiteCircle\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/five-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0665\"/>\n  <outline>\n    <contour>\n      <point x=\"593\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"-3\"/>\n      <point x=\"1020\" y=\"108\"/>\n      <point x=\"1020\" y=\"463\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1020\" y=\"813\"/>\n      <point x=\"887\" y=\"1066\"/>\n      <point x=\"622\" y=\"1066\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"1066\"/>\n      <point x=\"180\" y=\"799\"/>\n      <point x=\"180\" y=\"429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"180\" y=\"133\"/>\n      <point x=\"310\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"382\" y=\"91\"/>\n      <point x=\"272\" y=\"170\"/>\n      <point x=\"272\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"792\"/>\n      <point x=\"417\" y=\"972\"/>\n      <point x=\"617\" y=\"972\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"972\"/>\n      <point x=\"928\" y=\"806\"/>\n      <point x=\"928\" y=\"459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"176\"/>\n      <point x=\"795\" y=\"91\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/five-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"-3\"/>\n      <point x=\"864\" y=\"77\"/>\n      <point x=\"864\" y=\"250\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"460\"/>\n      <point x=\"768\" y=\"579\"/>\n      <point x=\"607\" y=\"579\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"579\"/>\n      <point x=\"336\" y=\"458\"/>\n      <point x=\"336\" y=\"247\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"70\"/>\n      <point x=\"431\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"597\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"91\"/>\n      <point x=\"432\" y=\"133\"/>\n      <point x=\"432\" y=\"249\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"432\" y=\"396\"/>\n      <point x=\"497\" y=\"487\"/>\n      <point x=\"603\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"697\" y=\"487\"/>\n      <point x=\"768\" y=\"415\"/>\n      <point x=\"768\" y=\"258\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"134\"/>\n      <point x=\"720\" y=\"91\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/five-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"five-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/five-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F5\"/>\n  <outline>\n    <contour>\n      <point x=\"381\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"-3\"/>\n      <point x=\"553\" y=\"23\"/>\n      <point x=\"581\" y=\"117\" type=\"curve\"/>\n      <point x=\"601\" y=\"117\" type=\"line\"/>\n      <point x=\"619\" y=\"34\"/>\n      <point x=\"664\" y=\"-3\"/>\n      <point x=\"780\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"-3\"/>\n      <point x=\"1076\" y=\"108\"/>\n      <point x=\"1076\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1076\" y=\"574\"/>\n      <point x=\"926\" y=\"810\"/>\n      <point x=\"537\" y=\"1147\" type=\"curve\"/>\n      <point x=\"472\" y=\"1071\" type=\"line\"/>\n      <point x=\"888\" y=\"732\"/>\n      <point x=\"982\" y=\"508\"/>\n      <point x=\"984\" y=\"317\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"986\" y=\"141\"/>\n      <point x=\"900\" y=\"91\"/>\n      <point x=\"790\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"91\"/>\n      <point x=\"645\" y=\"139\"/>\n      <point x=\"643\" y=\"349\" type=\"curve\"/>\n      <point x=\"549\" y=\"349\" type=\"line\"/>\n      <point x=\"551\" y=\"135\"/>\n      <point x=\"514\" y=\"91\"/>\n      <point x=\"385\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"91\"/>\n      <point x=\"216\" y=\"150\"/>\n      <point x=\"216\" y=\"317\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"585\"/>\n      <point x=\"454\" y=\"815\"/>\n      <point x=\"663\" y=\"979\" type=\"curve\"/>\n      <point x=\"597\" y=\"1040\" type=\"line\"/>\n      <point x=\"381\" y=\"855\"/>\n      <point x=\"124\" y=\"605\"/>\n      <point x=\"124\" y=\"295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"125\"/>\n      <point x=\"194\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/five-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"-3\"/>\n      <point x=\"574\" y=\"20\"/>\n      <point x=\"586\" y=\"77\" type=\"curve\"/>\n      <point x=\"602\" y=\"77\" type=\"line\"/>\n      <point x=\"611\" y=\"20\"/>\n      <point x=\"652\" y=\"-3\"/>\n      <point x=\"716\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"-3\"/>\n      <point x=\"882\" y=\"71\"/>\n      <point x=\"882\" y=\"171\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"304\"/>\n      <point x=\"775\" y=\"440\"/>\n      <point x=\"565\" y=\"615\" type=\"curve\"/>\n      <point x=\"504\" y=\"549\" type=\"line\"/>\n      <point x=\"707\" y=\"369\"/>\n      <point x=\"788\" y=\"271\"/>\n      <point x=\"790\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"124\"/>\n      <point x=\"773\" y=\"91\"/>\n      <point x=\"721\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"91\"/>\n      <point x=\"647\" y=\"108\"/>\n      <point x=\"648\" y=\"224\" type=\"curve\"/>\n      <point x=\"560\" y=\"224\" type=\"line\"/>\n      <point x=\"561\" y=\"101\"/>\n      <point x=\"522\" y=\"91\"/>\n      <point x=\"478\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"91\"/>\n      <point x=\"411\" y=\"113\"/>\n      <point x=\"411\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"411\" y=\"267\"/>\n      <point x=\"537\" y=\"394\"/>\n      <point x=\"633\" y=\"497\" type=\"curve\"/>\n      <point x=\"567\" y=\"550\" type=\"line\"/>\n      <point x=\"467\" y=\"446\"/>\n      <point x=\"319\" y=\"299\"/>\n      <point x=\"319\" y=\"150\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"319\" y=\"52\"/>\n      <point x=\"377\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/five-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"five-persianinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/five.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fivesuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/five.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0035\"/>\n  <outline>\n    <contour>\n      <point x=\"614\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"-20\"/>\n      <point x=\"1069\" y=\"154\"/>\n      <point x=\"1069\" y=\"458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"736\"/>\n      <point x=\"924\" y=\"896\"/>\n      <point x=\"672\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"896\"/>\n      <point x=\"417\" y=\"863\"/>\n      <point x=\"288\" y=\"740\" type=\"curve\"/>\n      <point x=\"334\" y=\"680\" type=\"line\"/>\n      <point x=\"436\" y=\"764\"/>\n      <point x=\"544\" y=\"806\"/>\n      <point x=\"662\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"806\"/>\n      <point x=\"973\" y=\"679\"/>\n      <point x=\"973\" y=\"458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"973\" y=\"211\"/>\n      <point x=\"842\" y=\"70\"/>\n      <point x=\"616\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"384\" y=\"70\"/>\n      <point x=\"253\" y=\"191\"/>\n      <point x=\"253\" y=\"398\" type=\"curve\"/>\n      <point x=\"157\" y=\"398\" type=\"line\"/>\n      <point x=\"157\" y=\"132\"/>\n      <point x=\"323\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"246\" y=\"680\" type=\"line\"/>\n      <point x=\"334\" y=\"680\" type=\"line\"/>\n      <point x=\"337\" y=\"754\" type=\"line\"/>\n      <point x=\"357\" y=\"1420\" type=\"line\"/>\n      <point x=\"263\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"334\" y=\"1330\" type=\"line\"/>\n      <point x=\"979\" y=\"1330\" type=\"line\"/>\n      <point x=\"979\" y=\"1420\" type=\"line\"/>\n      <point x=\"316\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/five.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fivesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveeighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"653\" y=\"678\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"599\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"601\" y=\"639\" type=\"line\"/>\n      <point x=\"547\" y=\"714\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <component base=\"fivesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fiveeighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveeighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215D\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <component base=\"fivesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fiveinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2085\"/>\n  <outline>\n    <component base=\"fivesuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fivesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fivesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2075\"/>\n  <outline>\n    <contour>\n      <point x=\"597\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"793\"/>\n      <point x=\"845\" y=\"868\"/>\n      <point x=\"845\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"1120\"/>\n      <point x=\"764\" y=\"1190\"/>\n      <point x=\"622\" y=\"1190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1190\"/>\n      <point x=\"479\" y=\"1175\"/>\n      <point x=\"423\" y=\"1118\" type=\"curve\"/>\n      <point x=\"415\" y=\"1046\" type=\"line\"/>\n      <point x=\"473\" y=\"1085\"/>\n      <point x=\"539\" y=\"1104\"/>\n      <point x=\"607\" y=\"1104\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"697\" y=\"1104\"/>\n      <point x=\"749\" y=\"1064\"/>\n      <point x=\"749\" y=\"992\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"749\" y=\"925\"/>\n      <point x=\"694\" y=\"885\"/>\n      <point x=\"598\" y=\"885\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"503\" y=\"885\"/>\n      <point x=\"451\" y=\"922\"/>\n      <point x=\"451\" y=\"987\" type=\"curve\"/>\n      <point x=\"355\" y=\"987\" type=\"line\"/>\n      <point x=\"355\" y=\"864\"/>\n      <point x=\"443\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"381\" y=\"1046\" type=\"line\"/>\n      <point x=\"415\" y=\"1046\" type=\"line\"/>\n      <point x=\"466\" y=\"1139\" type=\"line\"/>\n      <point x=\"480\" y=\"1420\" type=\"line\"/>\n      <point x=\"390\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"437\" y=\"1330\" type=\"line\"/>\n      <point x=\"807\" y=\"1330\" type=\"line\"/>\n      <point x=\"807\" y=\"1420\" type=\"line\"/>\n      <point x=\"439\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB02\"/>\n  <outline>\n    <contour>\n      <point x=\"351\" y=\"0\" type=\"line\"/>\n      <point x=\"445\" y=\"0\" type=\"line\"/>\n      <point x=\"445\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"1280\"/>\n      <point x=\"567\" y=\"1428\"/>\n      <point x=\"813\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"1428\"/>\n      <point x=\"934\" y=\"1424\"/>\n      <point x=\"1018\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1040\" y=\"1500\" type=\"line\"/>\n      <point x=\"966\" y=\"1514\"/>\n      <point x=\"899\" y=\"1520\"/>\n      <point x=\"819\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"505\" y=\"1520\"/>\n      <point x=\"351\" y=\"1338\"/>\n      <point x=\"351\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"92\" y=\"688\" type=\"line\"/>\n      <point x=\"757\" y=\"688\" type=\"line\"/>\n      <point x=\"757\" y=\"778\" type=\"line\"/>\n      <point x=\"92\" y=\"778\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"946\" y=\"0\" type=\"line\"/>\n      <point x=\"1040\" y=\"0\" type=\"line\"/>\n      <point x=\"1040\" y=\"1500\" type=\"line\"/>\n      <point x=\"946\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/florin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"florin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0192\"/>\n  <anchor x=\"508\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"740\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"98\" y=\"-476\" type=\"line\"/>\n      <point x=\"151\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"-425\"/>\n      <point x=\"555\" y=\"-310\"/>\n      <point x=\"555\" y=\"14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"304\" type=\"line\"/>\n      <point x=\"461\" y=\"304\" type=\"line\"/>\n      <point x=\"461\" y=\"-18\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"-254\"/>\n      <point x=\"373\" y=\"-347\"/>\n      <point x=\"171\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"94\" y=\"-390\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"461\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1280\"/>\n      <point x=\"669\" y=\"1428\"/>\n      <point x=\"898\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"1428\"/>\n      <point x=\"1004\" y=\"1424\"/>\n      <point x=\"1078\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1100\" y=\"1500\" type=\"line\"/>\n      <point x=\"1034\" y=\"1514\"/>\n      <point x=\"975\" y=\"1520\"/>\n      <point x=\"904\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"607\" y=\"1520\"/>\n      <point x=\"461\" y=\"1338\"/>\n      <point x=\"461\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"92\" y=\"688\" type=\"line\"/>\n      <point x=\"1024\" y=\"688\" type=\"line\"/>\n      <point x=\"1024\" y=\"778\" type=\"line\"/>\n      <point x=\"92\" y=\"778\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/footnotemarker-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"footnotemarker-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0602\"/>\n  <outline>\n    <contour>\n      <point x=\"264\" y=\"-237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"-237\" type=\"line\"/>\n      <point x=\"1128\" y=\"-143\" type=\"line\"/>\n      <point x=\"253\" y=\"-143\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"-142\"/>\n      <point x=\"154\" y=\"-123\"/>\n      <point x=\"154\" y=\"-80\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"154\" y=\"-19\"/>\n      <point x=\"196\" y=\"35\"/>\n      <point x=\"243\" y=\"35\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"35\"/>\n      <point x=\"299\" y=\"14\"/>\n      <point x=\"299\" y=\"-59\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"299\" y=\"-99\"/>\n      <point x=\"295\" y=\"-144\"/>\n      <point x=\"285\" y=\"-187\" type=\"curve\"/>\n      <point x=\"373\" y=\"-199\" type=\"line\"/>\n      <point x=\"384\" y=\"-153\"/>\n      <point x=\"391\" y=\"-97\"/>\n      <point x=\"391\" y=\"-53\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"391\" y=\"62\"/>\n      <point x=\"353\" y=\"129\"/>\n      <point x=\"259\" y=\"129\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"129\"/>\n      <point x=\"62\" y=\"20\"/>\n      <point x=\"62\" y=\"-100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"62\" y=\"-205\"/>\n      <point x=\"130\" y=\"-237\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/formF_eedC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"formFeedControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240C\"/>\n  <outline>\n    <component base=\"F.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"F.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/formF_eedC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"formFeedControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"579\" y=\"601\" type=\"line\"/>\n      <point x=\"621\" y=\"601\" type=\"line\"/>\n      <point x=\"1126\" y=\"1236\" type=\"line\"/>\n      <point x=\"1014\" y=\"1236\" type=\"line\"/>\n      <point x=\"659\" y=\"784\" type=\"line\"/>\n      <point x=\"541\" y=\"784\" type=\"line\"/>\n      <point x=\"186\" y=\"1236\" type=\"line\"/>\n      <point x=\"74\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"589\" y=\"180\" type=\"line\"/>\n      <point x=\"611\" y=\"180\" type=\"line\"/>\n      <point x=\"1126\" y=\"815\" type=\"line\"/>\n      <point x=\"1014\" y=\"815\" type=\"line\"/>\n      <point x=\"659\" y=\"363\" type=\"line\"/>\n      <point x=\"541\" y=\"363\" type=\"line\"/>\n      <point x=\"186\" y=\"815\" type=\"line\"/>\n      <point x=\"74\" y=\"815\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"308\" type=\"line\"/>\n      <point x=\"645\" y=\"308\" type=\"line\"/>\n      <point x=\"645\" y=\"1235\" type=\"line\"/>\n      <point x=\"555\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0664\"/>\n  <outline>\n    <contour>\n      <point x=\"669\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"-6\"/>\n      <point x=\"930\" y=\"16\"/>\n      <point x=\"1035\" y=\"52\" type=\"curve\"/>\n      <point x=\"1023\" y=\"136\" type=\"line\"/>\n      <point x=\"897\" y=\"103\"/>\n      <point x=\"788\" y=\"88\"/>\n      <point x=\"675\" y=\"88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"88\"/>\n      <point x=\"337\" y=\"131\"/>\n      <point x=\"337\" y=\"304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"337\" y=\"433\"/>\n      <point x=\"439\" y=\"572\"/>\n      <point x=\"880\" y=\"684\" type=\"curve\"/>\n      <point x=\"876\" y=\"773\" type=\"line\"/>\n      <point x=\"557\" y=\"773\"/>\n      <point x=\"369\" y=\"834\"/>\n      <point x=\"369\" y=\"995\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"369\" y=\"1118\"/>\n      <point x=\"464\" y=\"1221\"/>\n      <point x=\"885\" y=\"1347\" type=\"curve\"/>\n      <point x=\"876\" y=\"1439\" type=\"line\"/>\n      <point x=\"391\" y=\"1294\"/>\n      <point x=\"277\" y=\"1166\"/>\n      <point x=\"277\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"277\" y=\"813\"/>\n      <point x=\"429\" y=\"723\"/>\n      <point x=\"643\" y=\"707\" type=\"curve\"/>\n      <point x=\"643\" y=\"676\" type=\"line\"/>\n      <point x=\"784\" y=\"676\" type=\"line\"/>\n      <point x=\"781\" y=\"738\" type=\"line\"/>\n      <point x=\"431\" y=\"629\"/>\n      <point x=\"245\" y=\"502\"/>\n      <point x=\"245\" y=\"299\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"245\" y=\"101\"/>\n      <point x=\"381\" y=\"-6\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"625\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"-6\"/>\n      <point x=\"759\" y=\"5\"/>\n      <point x=\"807\" y=\"22\" type=\"curve\"/>\n      <point x=\"802\" y=\"108\" type=\"line\"/>\n      <point x=\"751\" y=\"95\"/>\n      <point x=\"697\" y=\"88\"/>\n      <point x=\"643\" y=\"88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"88\"/>\n      <point x=\"516\" y=\"108\"/>\n      <point x=\"516\" y=\"144\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"196\"/>\n      <point x=\"569\" y=\"230\"/>\n      <point x=\"732\" y=\"280\" type=\"curve\"/>\n      <point x=\"727\" y=\"375\" type=\"line\"/>\n      <point x=\"578\" y=\"373\"/>\n      <point x=\"536\" y=\"396\"/>\n      <point x=\"536\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"497\"/>\n      <point x=\"592\" y=\"524\"/>\n      <point x=\"748\" y=\"560\" type=\"curve\"/>\n      <point x=\"742\" y=\"643\" type=\"line\"/>\n      <point x=\"509\" y=\"595\"/>\n      <point x=\"444\" y=\"515\"/>\n      <point x=\"444\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"357\"/>\n      <point x=\"498\" y=\"327\"/>\n      <point x=\"599\" y=\"318\" type=\"curve\"/>\n      <point x=\"599\" y=\"290\" type=\"line\"/>\n      <point x=\"679\" y=\"286\" type=\"line\"/>\n      <point x=\"679\" y=\"334\" type=\"line\"/>\n      <point x=\"490\" y=\"281\"/>\n      <point x=\"425\" y=\"212\"/>\n      <point x=\"425\" y=\"126\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"45\"/>\n      <point x=\"490\" y=\"-6\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"four-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F4\"/>\n  <outline>\n    <contour>\n      <point x=\"485\" y=\"0\" type=\"curve\"/>\n      <point x=\"581\" y=\"0\" type=\"line\"/>\n      <point x=\"577\" y=\"361\"/>\n      <point x=\"478\" y=\"814\"/>\n      <point x=\"333\" y=\"1127\" type=\"curve\"/>\n      <point x=\"327\" y=\"1068\" type=\"line\"/>\n      <point x=\"382\" y=\"896\"/>\n      <point x=\"459\" y=\"818\"/>\n      <point x=\"795\" y=\"818\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"818\"/>\n      <point x=\"1010\" y=\"835\"/>\n      <point x=\"1107\" y=\"870\" type=\"curve\"/>\n      <point x=\"1103\" y=\"947\" type=\"line\"/>\n      <point x=\"1013\" y=\"924\"/>\n      <point x=\"940\" y=\"912\"/>\n      <point x=\"852\" y=\"912\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"912\"/>\n      <point x=\"641\" y=\"978\"/>\n      <point x=\"641\" y=\"1137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"1284\"/>\n      <point x=\"709\" y=\"1346\"/>\n      <point x=\"861\" y=\"1346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"1346\"/>\n      <point x=\"999\" y=\"1326\"/>\n      <point x=\"1063\" y=\"1307\" type=\"curve\"/>\n      <point x=\"1070\" y=\"1392\" type=\"line\"/>\n      <point x=\"1006\" y=\"1420\"/>\n      <point x=\"934\" y=\"1440\"/>\n      <point x=\"840\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"1440\"/>\n      <point x=\"546\" y=\"1329\"/>\n      <point x=\"546\" y=\"1146\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"1041\"/>\n      <point x=\"574\" y=\"967\"/>\n      <point x=\"637\" y=\"932\" type=\"curve\"/>\n      <point x=\"637\" y=\"884\" type=\"line\"/>\n      <point x=\"698\" y=\"858\" type=\"line\"/>\n      <point x=\"701\" y=\"913\" type=\"line\"/>\n      <point x=\"470\" y=\"913\"/>\n      <point x=\"411\" y=\"1007\"/>\n      <point x=\"374\" y=\"1083\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"1173\"/>\n      <point x=\"304\" y=\"1266\"/>\n      <point x=\"232\" y=\"1442\" type=\"curve\"/>\n      <point x=\"138\" y=\"1408\" type=\"line\"/>\n      <point x=\"317\" y=\"949\"/>\n      <point x=\"472\" y=\"523\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.small01.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian.small01\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"620\" y=\"1334\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1661\" name=\"top\"/>\n  <outline>\n    <component base=\"_four-persian.small01\" yOffset=\"566\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_four-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.urdu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian.urdu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"295\" y=\"0\" type=\"curve\"/>\n      <point x=\"387\" y=\"0\" type=\"line\"/>\n      <point x=\"344\" y=\"319\"/>\n      <point x=\"236\" y=\"871\"/>\n      <point x=\"236\" y=\"1049\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"236\" y=\"1241\"/>\n      <point x=\"337\" y=\"1340\"/>\n      <point x=\"484\" y=\"1340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"1340\"/>\n      <point x=\"705\" y=\"1269\"/>\n      <point x=\"770\" y=\"941\" type=\"curve\"/>\n      <point x=\"872\" y=\"941\" type=\"line\"/>\n      <point x=\"945\" y=\"1141\"/>\n      <point x=\"1019\" y=\"1267\"/>\n      <point x=\"1115\" y=\"1379\" type=\"curve\"/>\n      <point x=\"1037\" y=\"1440\" type=\"line\"/>\n      <point x=\"965\" y=\"1355\"/>\n      <point x=\"886\" y=\"1219\"/>\n      <point x=\"838\" y=\"1069\" type=\"curve\"/>\n      <point x=\"823\" y=\"1069\" type=\"line\"/>\n      <point x=\"781\" y=\"1327\"/>\n      <point x=\"684\" y=\"1434\"/>\n      <point x=\"486\" y=\"1434\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"302\" y=\"1434\"/>\n      <point x=\"144\" y=\"1316\"/>\n      <point x=\"144\" y=\"1054\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"144\" y=\"870\"/>\n      <point x=\"254\" y=\"307\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.urduinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian.urduinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"449\" y=\"-1\" type=\"curve\"/>\n      <point x=\"541\" y=\"-1\" type=\"line\"/>\n      <point x=\"520\" y=\"137\"/>\n      <point x=\"464\" y=\"380\"/>\n      <point x=\"464\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"516\"/>\n      <point x=\"508\" y=\"542\"/>\n      <point x=\"555\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"542\"/>\n      <point x=\"650\" y=\"503\"/>\n      <point x=\"672\" y=\"345\" type=\"curve\"/>\n      <point x=\"771\" y=\"345\" type=\"line\"/>\n      <point x=\"799\" y=\"429\"/>\n      <point x=\"841\" y=\"526\"/>\n      <point x=\"882\" y=\"602\" type=\"curve\"/>\n      <point x=\"794\" y=\"641\" type=\"line\"/>\n      <point x=\"774\" y=\"600\"/>\n      <point x=\"756\" y=\"545\"/>\n      <point x=\"732\" y=\"473\" type=\"curve\"/>\n      <point x=\"721\" y=\"473\" type=\"line\"/>\n      <point x=\"706\" y=\"588\"/>\n      <point x=\"643\" y=\"637\"/>\n      <point x=\"559\" y=\"637\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"447\" y=\"637\"/>\n      <point x=\"372\" y=\"565\"/>\n      <point x=\"372\" y=\"464\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"387\"/>\n      <point x=\"426\" y=\"144\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.urdusuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persian.urdusuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"four-persian.urduinferior\" yOffset=\"799\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persianbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persianbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-546\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_four-persian.small01\" xOffset=\"-10\" yOffset=\"-1139\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_four-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persiancenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persiancenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"616\" y=\"298\" name=\"_center\"/>\n  <outline>\n    <component base=\"_four-persian.small01\" xOffset=\"-10\" yOffset=\"-529\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_four-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"520\" y=\"-1\" type=\"curve\"/>\n      <point x=\"612\" y=\"-1\" type=\"line\"/>\n      <point x=\"602\" y=\"176\"/>\n      <point x=\"574\" y=\"301\"/>\n      <point x=\"522\" y=\"417\" type=\"curve\"/>\n      <point x=\"486\" y=\"415\" type=\"line\"/>\n      <point x=\"520\" y=\"340\"/>\n      <point x=\"597\" y=\"317\"/>\n      <point x=\"702\" y=\"317\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"317\"/>\n      <point x=\"824\" y=\"329\"/>\n      <point x=\"860\" y=\"341\" type=\"curve\"/>\n      <point x=\"859\" y=\"423\" type=\"line\"/>\n      <point x=\"812\" y=\"415\"/>\n      <point x=\"780\" y=\"409\"/>\n      <point x=\"743\" y=\"409\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"409\"/>\n      <point x=\"679\" y=\"424\"/>\n      <point x=\"679\" y=\"484\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"537\"/>\n      <point x=\"709\" y=\"547\"/>\n      <point x=\"749\" y=\"547\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"547\"/>\n      <point x=\"801\" y=\"542\"/>\n      <point x=\"836\" y=\"536\" type=\"curve\"/>\n      <point x=\"842\" y=\"618\" type=\"line\"/>\n      <point x=\"815\" y=\"629\"/>\n      <point x=\"779\" y=\"639\"/>\n      <point x=\"735\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"639\"/>\n      <point x=\"587\" y=\"594\"/>\n      <point x=\"587\" y=\"508\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"587\" y=\"462\"/>\n      <point x=\"602\" y=\"420\"/>\n      <point x=\"633\" y=\"406\" type=\"curve\"/>\n      <point x=\"632\" y=\"369\" type=\"line\"/>\n      <point x=\"668\" y=\"350\" type=\"line\"/>\n      <point x=\"669\" y=\"394\" type=\"line\"/>\n      <point x=\"576\" y=\"394\"/>\n      <point x=\"540\" y=\"422\"/>\n      <point x=\"520\" y=\"474\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"505\" y=\"513\"/>\n      <point x=\"486\" y=\"569\"/>\n      <point x=\"458\" y=\"640\" type=\"curve\"/>\n      <point x=\"373\" y=\"610\" type=\"line\"/>\n      <point x=\"446\" y=\"425\"/>\n      <point x=\"514\" y=\"195\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"four-persianinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"foursuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0034\"/>\n  <outline>\n    <contour>\n      <point x=\"98\" y=\"326\" type=\"line\"/>\n      <point x=\"190\" y=\"326\" type=\"line\"/>\n      <point x=\"368\" y=\"1340\" type=\"line\"/>\n      <point x=\"274\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"96\" y=\"326\" type=\"line\"/>\n      <point x=\"834\" y=\"326\" type=\"line\"/>\n      <point x=\"834\" y=\"416\" type=\"line\"/>\n      <point x=\"176\" y=\"416\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"888\" y=\"326\" type=\"line\"/>\n      <point x=\"1096\" y=\"326\" type=\"line\"/>\n      <point x=\"1096\" y=\"416\" type=\"line\"/>\n      <point x=\"888\" y=\"416\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"814\" y=\"0\" type=\"line\"/>\n      <point x=\"908\" y=\"0\" type=\"line\"/>\n      <point x=\"908\" y=\"1420\" type=\"line\"/>\n      <point x=\"814\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"102\" y=\"159\" type=\"line\"/>\n      <point x=\"222\" y=\"159\" type=\"line\"/>\n      <point x=\"394\" y=\"603\" type=\"line\"/>\n      <point x=\"277\" y=\"603\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"159\" type=\"line\"/>\n      <point x=\"566\" y=\"159\" type=\"line\"/>\n      <point x=\"566\" y=\"257\" type=\"line\"/>\n      <point x=\"175\" y=\"257\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"643\" y=\"159\" type=\"line\"/>\n      <point x=\"774\" y=\"159\" type=\"line\"/>\n      <point x=\"774\" y=\"257\" type=\"line\"/>\n      <point x=\"643\" y=\"257\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"552\" y=\"0\" type=\"line\"/>\n      <point x=\"657\" y=\"0\" type=\"line\"/>\n      <point x=\"657\" y=\"639\" type=\"line\"/>\n      <point x=\"552\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/four.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"foursuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fourdotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourdotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"606\" y=\"1161\" name=\"top\"/>\n  <outline>\n    <component base=\"_fourdotscenter-ar\" xScale=\"0.92\" yScale=\"0.92\" xOffset=\"47\" yOffset=\"516\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fourdotscenter-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fourdotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourdotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"613\" y=\"-606\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_fourdotscenter-ar\" yOffset=\"-686\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fourdotscenter-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fourdotscenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourdotscenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"596\" y=\"328\" name=\"_center\"/>\n  <outline>\n    <component base=\"_fourdotscenter-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fourinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2084\"/>\n  <outline>\n    <component base=\"foursuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/foursuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"foursuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2074\"/>\n  <outline>\n    <contour>\n      <point x=\"352\" y=\"908\" type=\"line\"/>\n      <point x=\"447\" y=\"908\" type=\"line\"/>\n      <point x=\"525\" y=\"1387\" type=\"line\"/>\n      <point x=\"430\" y=\"1387\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"351\" y=\"908\" type=\"line\"/>\n      <point x=\"688\" y=\"908\" type=\"line\"/>\n      <point x=\"688\" y=\"998\" type=\"line\"/>\n      <point x=\"413\" y=\"998\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"764\" y=\"908\" type=\"line\"/>\n      <point x=\"849\" y=\"908\" type=\"line\"/>\n      <point x=\"849\" y=\"998\" type=\"line\"/>\n      <point x=\"764\" y=\"998\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"679\" y=\"802\" type=\"line\"/>\n      <point x=\"773\" y=\"802\" type=\"line\"/>\n      <point x=\"773\" y=\"1420\" type=\"line\"/>\n      <point x=\"679\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fourthroot-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourthroot-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0607\"/>\n  <outline>\n    <component base=\"_cuberoot_fourthroot-ar\"/>\n    <component base=\"_fourthroot-ar\" xOffset=\"106\" yOffset=\"-112\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_fourthroot-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>_cuberoot_fourthroot-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_cuberoot_fourthroot-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fraction.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fraction\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2044\"/>\n  <outline>\n    <contour>\n      <point x=\"181\" y=\"306\" type=\"line\"/>\n      <point x=\"1073\" y=\"1030\" type=\"line\"/>\n      <point x=\"1019\" y=\"1106\" type=\"line\"/>\n      <point x=\"127\" y=\"382\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/franc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"franc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A3\"/>\n  <outline>\n    <contour>\n      <point x=\"54\" y=\"255\" type=\"line\"/>\n      <point x=\"678\" y=\"255\" type=\"line\"/>\n      <point x=\"678\" y=\"345\" type=\"line\"/>\n      <point x=\"54\" y=\"345\" type=\"line\"/>\n    </contour>\n    <component base=\"F\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fullB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2588\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fullB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/fullstop-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullstop-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D4\"/>\n  <outline>\n    <contour>\n      <point x=\"372\" y=\"0\" type=\"line\"/>\n      <point x=\"810\" y=\"0\" type=\"line\"/>\n      <point x=\"828\" y=\"94\" type=\"line\"/>\n      <point x=\"391\" y=\"94\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/g.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"g\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0067\"/>\n  <anchor x=\"540\" y=\"-420\" name=\"bottom\"/>\n  <anchor x=\"560\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"206\" y=\"-478\" type=\"line\"/>\n      <point x=\"492\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"851\" y=\"-455\"/>\n      <point x=\"1008\" y=\"-284\"/>\n      <point x=\"1008\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"1060\" type=\"line\"/>\n      <point x=\"924\" y=\"1060\" type=\"line\"/>\n      <point x=\"914\" y=\"816\" type=\"line\"/>\n      <point x=\"914\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"-223\"/>\n      <point x=\"791\" y=\"-367\"/>\n      <point x=\"512\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"202\" y=\"-390\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"543\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"-20\"/>\n      <point x=\"871\" y=\"83\"/>\n      <point x=\"905\" y=\"250\" type=\"curve\"/>\n      <point x=\"986\" y=\"250\" type=\"line\"/>\n      <point x=\"914\" y=\"524\" type=\"line\"/>\n      <point x=\"914\" y=\"227\"/>\n      <point x=\"794\" y=\"72\"/>\n      <point x=\"563\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"335\" y=\"72\"/>\n      <point x=\"216\" y=\"226\"/>\n      <point x=\"216\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"828\"/>\n      <point x=\"334\" y=\"988\"/>\n      <point x=\"561\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"988\"/>\n      <point x=\"914\" y=\"833\"/>\n      <point x=\"914\" y=\"535\" type=\"curve\"/>\n      <point x=\"976\" y=\"822\" type=\"line\"/>\n      <point x=\"906\" y=\"822\" type=\"line\"/>\n      <point x=\"873\" y=\"992\"/>\n      <point x=\"750\" y=\"1080\"/>\n      <point x=\"549\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"1080\"/>\n      <point x=\"120\" y=\"888\"/>\n      <point x=\"120\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"120\" y=\"165\"/>\n      <point x=\"265\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gaf-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gaf-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"807\" y=\"1486\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"gafsarkashabove-ar\" yScale=\"0.9999\" xOffset=\"244\" yOffset=\"-53\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gaf-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gaf-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AF\"/>\n  <anchor x=\"807\" y=\"1486\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"gafsarkashabove-ar\" yScale=\"0.9999\" xOffset=\"244\" yOffset=\"-53\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gaf-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gaf-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"gafsarkashabove-ar\" yScale=\"0.9999\" xOffset=\"3\" yOffset=\"-53\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gaf-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gaf-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"gafsarkashabove-ar\" yScale=\"0.9999\" xOffset=\"28\" yOffset=\"-53\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafI_nvertedstroke-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafInvertedstroke-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"_invertedstroke\" yScale=\"0.9999\" xOffset=\"585\" yOffset=\"9\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_invertedstroke</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>keheh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>keheh-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafI_nvertedstroke-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafInvertedstroke-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B0\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"_invertedstroke\" yScale=\"0.9999\" xOffset=\"605\" yOffset=\"29\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_invertedstroke</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>keheh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafI_nvertedstroke-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafInvertedstroke-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"_invertedstroke\" yScale=\"0.9999\" xOffset=\"368\" yOffset=\"31\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_invertedstroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafI_nvertedstroke-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafInvertedstroke-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"_invertedstroke\" yScale=\"0.9999\" xOffset=\"378\" yOffset=\"21\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_invertedstroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"807\" y=\"1486\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"468\" yOffset=\"1126\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B0\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"807\" y=\"1486\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"456\" yOffset=\"1126\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafR_ing-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafRing-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"569\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"ringArabic\" xOffset=\"206\" yOffset=\"1126\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafR_ing-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafRing-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"649\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"ringArabic\" xOffset=\"236\" yOffset=\"1126\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_hreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafThreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"650\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"1.001\" xOffset=\"107\" yOffset=\"726\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_hreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafThreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B4\"/>\n  <anchor x=\"650\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"1.001\" xOffset=\"107\" yOffset=\"726\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_hreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafThreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"424\" y=\"739\" angle=\"0\"/>\n  <anchor x=\"410\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"1.001\" xOffset=\"-134\" yOffset=\"726\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_hreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafThreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"424\" y=\"739\" angle=\"0\"/>\n  <anchor x=\"430\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"1.001\" xOffset=\"-109\" yOffset=\"726\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_wodotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafTwodotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_wodotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafTwodotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B2\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_wodotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafTwodotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-33\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_wodotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafTwodotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gafsarkashabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gafsarkashabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"489\" y=\"1080\" name=\"_top\"/>\n  <anchor x=\"410\" y=\"1196\" name=\"_top.dot\"/>\n  <anchor x=\"563\" y=\"1559\" name=\"top\"/>\n  <anchor x=\"464\" y=\"1421\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"284\" y=\"1148\" type=\"line\"/>\n      <point x=\"948\" y=\"1591\" type=\"line\"/>\n      <point x=\"949\" y=\"1685\" type=\"line\"/>\n      <point x=\"285\" y=\"1241\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gamma-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gamma-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0263\"/>\n  <anchor x=\"600\" y=\"-400\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"534\" y=\"0\" type=\"line\"/>\n      <point x=\"604\" y=\"25\" type=\"line\"/>\n      <point x=\"666\" y=\"0\" type=\"line\"/>\n      <point x=\"1096\" y=\"1060\" type=\"line\"/>\n      <point x=\"995\" y=\"1060\" type=\"line\"/>\n      <point x=\"606\" y=\"80\" type=\"line\"/>\n      <point x=\"598\" y=\"80\" type=\"line\"/>\n      <point x=\"205\" y=\"1060\" type=\"line\"/>\n      <point x=\"104\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-462\" type=\"line\"/>\n      <point x=\"759\" y=\"-462\"/>\n      <point x=\"864\" y=\"-372\"/>\n      <point x=\"864\" y=\"-236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"-132\"/>\n      <point x=\"803\" y=\"-52\"/>\n      <point x=\"636\" y=\"61\" type=\"curve\"/>\n      <point x=\"546\" y=\"36\" type=\"line\"/>\n      <point x=\"716\" y=\"-84\"/>\n      <point x=\"778\" y=\"-157\"/>\n      <point x=\"778\" y=\"-236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"-323\"/>\n      <point x=\"707\" y=\"-380\"/>\n      <point x=\"600\" y=\"-380\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-462\" type=\"curve\"/>\n      <point x=\"600\" y=\"-380\" type=\"line\"/>\n      <point x=\"493\" y=\"-380\"/>\n      <point x=\"422\" y=\"-323\"/>\n      <point x=\"422\" y=\"-236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"-157\"/>\n      <point x=\"484\" y=\"-85\"/>\n      <point x=\"654\" y=\"36\" type=\"curve\"/>\n      <point x=\"564\" y=\"61\" type=\"line\"/>\n      <point x=\"397\" y=\"-53\"/>\n      <point x=\"336\" y=\"-132\"/>\n      <point x=\"336\" y=\"-236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"-372\"/>\n      <point x=\"441\" y=\"-462\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gamma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gamma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B3\"/>\n  <anchor x=\"590\" y=\"-280\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"354\" y=\"-20\" type=\"line\"/>\n      <point x=\"857\" y=\"-20\"/>\n      <point x=\"1106\" y=\"338\"/>\n      <point x=\"1106\" y=\"1060\" type=\"curve\"/>\n      <point x=\"1010\" y=\"1060\" type=\"line\"/>\n      <point x=\"1010\" y=\"399\"/>\n      <point x=\"792\" y=\"72\"/>\n      <point x=\"354\" y=\"72\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"300\" y=\"-460\" type=\"curve\"/>\n      <point x=\"394\" y=\"-460\" type=\"line\"/>\n      <point x=\"402\" y=\"-329\"/>\n      <point x=\"406\" y=\"-173\"/>\n      <point x=\"406\" y=\"10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"406\" y=\"678\"/>\n      <point x=\"355\" y=\"896\"/>\n      <point x=\"148\" y=\"1100\" type=\"curve\"/>\n      <point x=\"70\" y=\"1032\" type=\"line\"/>\n      <point x=\"262\" y=\"851\"/>\n      <point x=\"310\" y=\"645\"/>\n      <point x=\"310\" y=\"10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"-173\"/>\n      <point x=\"307\" y=\"-329\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gbreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gbreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011F\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"brevecomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E7\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"caroncomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011D\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0123\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"commaturnedabovecomb\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0121\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"-42\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ge-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ge-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0433\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"690\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"1060\" type=\"line\"/>\n      <point x=\"300\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"970\" type=\"line\"/>\n      <point x=\"1006\" y=\"970\" type=\"line\"/>\n      <point x=\"1006\" y=\"1060\" type=\"line\"/>\n      <point x=\"338\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ge-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ge-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"652\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"-20\"/>\n      <point x=\"916\" y=\"-2\"/>\n      <point x=\"1020\" y=\"39\" type=\"curve\"/>\n      <point x=\"996\" y=\"124\" type=\"line\"/>\n      <point x=\"861\" y=\"88\"/>\n      <point x=\"762\" y=\"72\"/>\n      <point x=\"663\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"392\" y=\"72\"/>\n      <point x=\"276\" y=\"129\"/>\n      <point x=\"276\" y=\"262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"364\"/>\n      <point x=\"337\" y=\"422\"/>\n      <point x=\"480\" y=\"459\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"926\" y=\"573\"/>\n      <point x=\"1004\" y=\"653\"/>\n      <point x=\"1004\" y=\"796\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"995\"/>\n      <point x=\"845\" y=\"1080\"/>\n      <point x=\"472\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"371\" y=\"1080\"/>\n      <point x=\"305\" y=\"1078\"/>\n      <point x=\"254\" y=\"1072\" type=\"curve\"/>\n      <point x=\"240\" y=\"982\" type=\"line\"/>\n      <point x=\"297\" y=\"986\"/>\n      <point x=\"369\" y=\"988\"/>\n      <point x=\"483\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"988\"/>\n      <point x=\"908\" y=\"929\"/>\n      <point x=\"908\" y=\"791\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"694\"/>\n      <point x=\"844\" y=\"637\"/>\n      <point x=\"694\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"551\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"269\" y=\"502\"/>\n      <point x=\"180\" y=\"415\"/>\n      <point x=\"180\" y=\"261\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"180\" y=\"64\"/>\n      <point x=\"321\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/geresh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"geresh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05F3\"/>\n  <outline>\n    <contour>\n      <point x=\"412\" y=\"730\" type=\"line\"/>\n      <point x=\"484\" y=\"730\" type=\"line\"/>\n      <point x=\"844\" y=\"1420\" type=\"line\"/>\n      <point x=\"682\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/germandbls.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"germandbls\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DF\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"658\" y=\"1520\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"818\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1023\" y=\"-20\"/>\n      <point x=\"1140\" y=\"91\"/>\n      <point x=\"1140\" y=\"286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1140\" y=\"428\"/>\n      <point x=\"1042\" y=\"514\"/>\n      <point x=\"956\" y=\"599\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"658\"/>\n      <point x=\"848\" y=\"715\"/>\n      <point x=\"848\" y=\"780\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"856\"/>\n      <point x=\"876\" y=\"901\"/>\n      <point x=\"904\" y=\"946\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"1020\"/>\n      <point x=\"1005\" y=\"1069\"/>\n      <point x=\"1005\" y=\"1210\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1005\" y=\"1407\"/>\n      <point x=\"881\" y=\"1520\"/>\n      <point x=\"664\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"398\" y=\"1520\"/>\n      <point x=\"246\" y=\"1356\"/>\n      <point x=\"246\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"340\" y=\"0\" type=\"line\"/>\n      <point x=\"340\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"340\" y=\"1301\"/>\n      <point x=\"455\" y=\"1428\"/>\n      <point x=\"658\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"1425\"/>\n      <point x=\"909\" y=\"1344\"/>\n      <point x=\"909\" y=\"1210\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"1113\"/>\n      <point x=\"870\" y=\"1055\"/>\n      <point x=\"827\" y=\"991\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"934\"/>\n      <point x=\"752\" y=\"869\"/>\n      <point x=\"752\" y=\"780\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"633\"/>\n      <point x=\"841\" y=\"576\"/>\n      <point x=\"921\" y=\"494\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"433\"/>\n      <point x=\"1044\" y=\"381\"/>\n      <point x=\"1044\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1044\" y=\"149\"/>\n      <point x=\"961\" y=\"72\"/>\n      <point x=\"818\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"72\"/>\n      <point x=\"687\" y=\"84\"/>\n      <point x=\"590\" y=\"104\" type=\"curve\"/>\n      <point x=\"566\" y=\"10\" type=\"line\"/>\n      <point x=\"631\" y=\"-9\"/>\n      <point x=\"712\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"92\" y=\"687\" type=\"line\"/>\n      <point x=\"308\" y=\"687\" type=\"line\"/>\n      <point x=\"308\" y=\"777\" type=\"line\"/>\n      <point x=\"92\" y=\"777\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gershayim-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gershayim-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05F4\"/>\n  <guideline x=\"1042\" y=\"834\" angle=\"90\"/>\n  <outline>\n    <component base=\"geresh-hb\" xOffset=\"197\"/>\n    <component base=\"geresh-hb\" xOffset=\"-250\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ghain-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghain-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-10\" yOffset=\"253\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ghain-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghain-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063A\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-93\" yOffset=\"456\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ghain-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghain-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"41\" yOffset=\"273\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ghain-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghain-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-10\" yOffset=\"253\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ghainD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghainDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"-135\" y=\"520\" angle=\"0\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-10\" yOffset=\"253\"/>\n    <component base=\"dotcenter-ar\" xOffset=\"37\" yOffset=\"-532\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ghainD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghainDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FC\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-93\" yOffset=\"456\"/>\n    <component base=\"dotcenter-ar\" xOffset=\"62\" yOffset=\"-434\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ghainD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghainDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ghain-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ghainD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghainDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ghain-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"9\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ghestroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghestroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0493\"/>\n  <outline>\n    <contour>\n      <point x=\"80\" y=\"465\" type=\"line\"/>\n      <point x=\"738\" y=\"465\" type=\"line\"/>\n      <point x=\"738\" y=\"555\" type=\"line\"/>\n      <point x=\"80\" y=\"555\" type=\"line\"/>\n    </contour>\n    <component base=\"ge-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gheupturn-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gheupturn-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0491\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"0\" type=\"line\"/>\n      <point x=\"394\" y=\"1060\" type=\"line\"/>\n      <point x=\"300\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"362\" y=\"970\" type=\"line\"/>\n      <point x=\"1006\" y=\"970\" type=\"line\"/>\n      <point x=\"1006\" y=\"1060\" type=\"line\"/>\n      <point x=\"362\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"932\" y=\"970\" type=\"line\"/>\n      <point x=\"1026\" y=\"970\" type=\"line\"/>\n      <point x=\"1026\" y=\"1320\" type=\"line\"/>\n      <point x=\"932\" y=\"1320\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gimel-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gimel-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D2\"/>\n  <anchor x=\"415\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"318\" y=\"-18\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"622\" y=\"-18\"/>\n      <point x=\"784\" y=\"277\"/>\n      <point x=\"805\" y=\"612\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"803\" type=\"line\"/>\n      <point x=\"723\" y=\"803\" type=\"line\"/>\n      <point x=\"723\" y=\"638\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"320\"/>\n      <point x=\"541\" y=\"82\"/>\n      <point x=\"334\" y=\"82\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"288\" y=\"82\"/>\n      <point x=\"231\" y=\"90\"/>\n      <point x=\"177\" y=\"107\" type=\"curve\"/>\n      <point x=\"166\" y=\"12\" type=\"line\"/>\n      <point x=\"220\" y=\"-11\"/>\n      <point x=\"270\" y=\"-18\"/>\n    </contour>\n    <contour>\n      <point x=\"791\" y=\"0\" type=\"line\"/>\n      <point x=\"890\" y=\"0\" type=\"line\"/>\n      <point x=\"822\" y=\"443\" type=\"line\"/>\n      <point x=\"822\" y=\"1200\" type=\"line\"/>\n      <point x=\"723\" y=\"1200\" type=\"line\"/>\n      <point x=\"723\" y=\"522\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"315\" y=\"1101\" type=\"line\"/>\n      <point x=\"822\" y=\"1101\" type=\"line\"/>\n      <point x=\"822\" y=\"1200\" type=\"line\"/>\n      <point x=\"315\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gimeldagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gimeldagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB32\"/>\n  <outline>\n    <component base=\"gimel-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-185\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0453\"/>\n  <outline>\n    <component base=\"ge-cy\"/>\n    <component base=\"acutecomb\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/glottalstop.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstop\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0294\"/>\n  <anchor x=\"586\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"521\" y=\"0\" type=\"line\"/>\n      <point x=\"615\" y=\"0\" type=\"line\"/>\n      <point x=\"615\" y=\"338\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"485\"/>\n      <point x=\"658\" y=\"587\"/>\n      <point x=\"761\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"922\" y=\"821\"/>\n      <point x=\"992\" y=\"951\"/>\n      <point x=\"992\" y=\"1132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"1378\"/>\n      <point x=\"836\" y=\"1520\"/>\n      <point x=\"566\" y=\"1520\" type=\"curve\"/>\n      <point x=\"564\" y=\"1430\" type=\"line\"/>\n      <point x=\"777\" y=\"1430\"/>\n      <point x=\"900\" y=\"1317\"/>\n      <point x=\"900\" y=\"1122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"976\"/>\n      <point x=\"848\" y=\"866\"/>\n      <point x=\"717\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"638\"/>\n      <point x=\"521\" y=\"519\"/>\n      <point x=\"521\" y=\"352\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"209\" y=\"1278\" type=\"line\"/>\n      <point x=\"332\" y=\"1385\"/>\n      <point x=\"438\" y=\"1430\"/>\n      <point x=\"564\" y=\"1430\" type=\"curve\"/>\n      <point x=\"566\" y=\"1520\" type=\"line\"/>\n      <point x=\"409\" y=\"1520\"/>\n      <point x=\"285\" y=\"1467\"/>\n      <point x=\"150\" y=\"1341\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/glottalstopmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstopmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C0\"/>\n  <outline>\n    <contour>\n      <point x=\"532\" y=\"790\" type=\"line\"/>\n      <point x=\"626\" y=\"790\" type=\"line\"/>\n      <point x=\"626\" y=\"915\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"626\" y=\"960\"/>\n      <point x=\"650\" y=\"1000\"/>\n      <point x=\"723\" y=\"1051\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"1124\"/>\n      <point x=\"882\" y=\"1205\"/>\n      <point x=\"882\" y=\"1312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"1474\"/>\n      <point x=\"775\" y=\"1568\"/>\n      <point x=\"592\" y=\"1568\" type=\"curve\"/>\n      <point x=\"590\" y=\"1484\" type=\"line\"/>\n      <point x=\"711\" y=\"1484\"/>\n      <point x=\"779\" y=\"1422\"/>\n      <point x=\"779\" y=\"1318\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"1242\"/>\n      <point x=\"754\" y=\"1184\"/>\n      <point x=\"661\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"1045\"/>\n      <point x=\"532\" y=\"984\"/>\n      <point x=\"532\" y=\"915\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1398\" type=\"line\"/>\n      <point x=\"402\" y=\"1450\"/>\n      <point x=\"494\" y=\"1484\"/>\n      <point x=\"590\" y=\"1484\" type=\"curve\"/>\n      <point x=\"592\" y=\"1568\" type=\"line\"/>\n      <point x=\"465\" y=\"1568\"/>\n      <point x=\"355\" y=\"1529\"/>\n      <point x=\"279\" y=\"1471\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/glottalstopreversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstopreversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0295\"/>\n  <anchor x=\"616\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"587\" y=\"0\" type=\"line\"/>\n      <point x=\"681\" y=\"0\" type=\"line\"/>\n      <point x=\"681\" y=\"352\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"681\" y=\"519\"/>\n      <point x=\"622\" y=\"638\"/>\n      <point x=\"485\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"866\"/>\n      <point x=\"302\" y=\"976\"/>\n      <point x=\"302\" y=\"1122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"302\" y=\"1317\"/>\n      <point x=\"425\" y=\"1430\"/>\n      <point x=\"638\" y=\"1430\" type=\"curve\"/>\n      <point x=\"636\" y=\"1520\" type=\"line\"/>\n      <point x=\"366\" y=\"1520\"/>\n      <point x=\"210\" y=\"1378\"/>\n      <point x=\"210\" y=\"1132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"210\" y=\"951\"/>\n      <point x=\"280\" y=\"821\"/>\n      <point x=\"441\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"587\"/>\n      <point x=\"587\" y=\"485\"/>\n      <point x=\"587\" y=\"338\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"993\" y=\"1278\" type=\"curve\"/>\n      <point x=\"1052\" y=\"1341\" type=\"line\"/>\n      <point x=\"917\" y=\"1467\"/>\n      <point x=\"793\" y=\"1520\"/>\n      <point x=\"636\" y=\"1520\" type=\"curve\"/>\n      <point x=\"638\" y=\"1430\" type=\"line\"/>\n      <point x=\"764\" y=\"1430\"/>\n      <point x=\"870\" y=\"1385\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"grave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0060\"/>\n  <outline>\n    <contour>\n      <point x=\"680\" y=\"1068\" type=\"line\"/>\n      <point x=\"786\" y=\"1068\" type=\"line\"/>\n      <point x=\"459\" y=\"1628\" type=\"line\"/>\n      <point x=\"355\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gravecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravecomb.case\" format=\"2\">\n  <anchor x=\"660\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"660\" y=\"1420\" name=\"_top_viet\"/>\n  <anchor x=\"660\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"605\" y=\"1580\" type=\"line\"/>\n      <point x=\"717\" y=\"1580\" type=\"line\"/>\n      <point x=\"492\" y=\"1830\" type=\"line\"/>\n      <point x=\"370\" y=\"1830\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gravecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravecomb\" format=\"2\">\n  <unicode hex=\"0300\"/>\n  <anchor x=\"669\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"670\" y=\"1060\" name=\"_top_viet\"/>\n  <anchor x=\"669\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"645\" y=\"1248\" type=\"line\"/>\n      <point x=\"746\" y=\"1248\" type=\"line\"/>\n      <point x=\"506\" y=\"1628\" type=\"line\"/>\n      <point x=\"395\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gravetonecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravetonecomb\" format=\"2\">\n  <unicode hex=\"0340\"/>\n  <outline>\n    <component base=\"gravecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"304\" y=\"30\" type=\"line\"/>\n      <point x=\"960\" y=\"698\" type=\"line\"/>\n      <point x=\"960\" y=\"720\" type=\"line\"/>\n      <point x=\"304\" y=\"1388\" type=\"line\"/>\n      <point x=\"245\" y=\"1321\" type=\"line\"/>\n      <point x=\"842\" y=\"718\" type=\"line\"/>\n      <point x=\"842\" y=\"700\" type=\"line\"/>\n      <point x=\"235\" y=\"97\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"90\" y=\"254\" type=\"line\"/>\n      <point x=\"1170\" y=\"678\" type=\"line\"/>\n      <point x=\"1170\" y=\"740\" type=\"line\"/>\n      <point x=\"90\" y=\"1164\" type=\"line\"/>\n      <point x=\"90\" y=\"1054\" type=\"line\"/>\n      <point x=\"996\" y=\"718\" type=\"line\"/>\n      <point x=\"996\" y=\"700\" type=\"line\"/>\n      <point x=\"90\" y=\"364\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003E\"/>\n  <outline>\n    <contour>\n      <point x=\"170\" y=\"214\" type=\"line\"/>\n      <point x=\"1080\" y=\"653\" type=\"line\"/>\n      <point x=\"1080\" y=\"765\" type=\"line\"/>\n      <point x=\"170\" y=\"1204\" type=\"line\"/>\n      <point x=\"170\" y=\"1104\" type=\"line\"/>\n      <point x=\"1002\" y=\"713\" type=\"line\"/>\n      <point x=\"1002\" y=\"705\" type=\"line\"/>\n      <point x=\"170\" y=\"314\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"484\" type=\"line\"/>\n      <point x=\"1950\" y=\"903\" type=\"line\"/>\n      <point x=\"1950\" y=\"1015\" type=\"line\"/>\n      <point x=\"506\" y=\"1434\" type=\"line\"/>\n      <point x=\"506\" y=\"1334\" type=\"line\"/>\n      <point x=\"1852\" y=\"963\" type=\"line\"/>\n      <point x=\"1852\" y=\"955\" type=\"line\"/>\n      <point x=\"506\" y=\"584\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"194\" type=\"line\"/>\n      <point x=\"1950\" y=\"194\" type=\"line\"/>\n      <point x=\"1950\" y=\"284\" type=\"line\"/>\n      <point x=\"506\" y=\"284\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"414\" type=\"line\"/>\n      <point x=\"794\" y=\"414\" type=\"line\"/>\n      <point x=\"894\" y=\"504\" type=\"line\"/>\n      <point x=\"-20\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"914\" type=\"line\"/>\n      <point x=\"894\" y=\"914\" type=\"line\"/>\n      <point x=\"794\" y=\"1004\" type=\"line\"/>\n      <point x=\"-20\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"176\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater.alt\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"237\" y=\"30\" type=\"line\"/>\n      <point x=\"706\" y=\"504\" type=\"line\"/>\n      <point x=\"590\" y=\"504\" type=\"line\"/>\n      <point x=\"173\" y=\"87\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"590\" y=\"414\" type=\"line\"/>\n      <point x=\"1220\" y=\"414\" type=\"line\"/>\n      <point x=\"1220\" y=\"504\" type=\"line\"/>\n      <point x=\"590\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"590\" y=\"914\" type=\"line\"/>\n      <point x=\"706\" y=\"914\" type=\"line\"/>\n      <point x=\"249\" y=\"1392\" type=\"line\"/>\n      <point x=\"185\" y=\"1335\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"590\" y=\"914\" type=\"line\"/>\n      <point x=\"1220\" y=\"914\" type=\"line\"/>\n      <point x=\"1220\" y=\"1004\" type=\"line\"/>\n      <point x=\"590\" y=\"1004\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1201\" y=\"214\" type=\"line\"/>\n      <point x=\"2160\" y=\"653\" type=\"line\"/>\n      <point x=\"2160\" y=\"765\" type=\"line\"/>\n      <point x=\"1201\" y=\"1204\" type=\"line\"/>\n      <point x=\"1201\" y=\"1109\" type=\"line\"/>\n      <point x=\"2082\" y=\"713\" type=\"line\"/>\n      <point x=\"2082\" y=\"705\" type=\"line\"/>\n      <point x=\"1201\" y=\"309\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"214\" type=\"line\"/>\n      <point x=\"1238\" y=\"653\" type=\"line\"/>\n      <point x=\"1238\" y=\"765\" type=\"line\"/>\n      <point x=\"280\" y=\"1204\" type=\"line\"/>\n      <point x=\"280\" y=\"1109\" type=\"line\"/>\n      <point x=\"1160\" y=\"713\" type=\"line\"/>\n      <point x=\"1160\" y=\"705\" type=\"line\"/>\n      <point x=\"280\" y=\"309\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"1140\" yOffset=\"-3\"/>\n    <component base=\"greater\" xOffset=\"26\"/>\n    <component base=\"equal\" xOffset=\"2344\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"414\" type=\"line\"/>\n      <point x=\"1231\" y=\"414\" type=\"line\"/>\n      <point x=\"1331\" y=\"504\" type=\"line\"/>\n      <point x=\"-20\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"914\" type=\"line\"/>\n      <point x=\"1331\" y=\"914\" type=\"line\"/>\n      <point x=\"1231\" y=\"1004\" type=\"line\"/>\n      <point x=\"-20\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"586\"/>\n    <component base=\"greater.alt\" xOffset=\"1216\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1305\" y=\"30\" type=\"line\"/>\n      <point x=\"1774\" y=\"504\" type=\"line\"/>\n      <point x=\"1658\" y=\"504\" type=\"line\"/>\n      <point x=\"1241\" y=\"87\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"414\" type=\"line\"/>\n      <point x=\"994\" y=\"414\" type=\"line\"/>\n      <point x=\"1094\" y=\"504\" type=\"line\"/>\n      <point x=\"-50\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"914\" type=\"line\"/>\n      <point x=\"1094\" y=\"914\" type=\"line\"/>\n      <point x=\"994\" y=\"1004\" type=\"line\"/>\n      <point x=\"-50\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1658\" y=\"414\" type=\"line\"/>\n      <point x=\"2450\" y=\"414\" type=\"line\"/>\n      <point x=\"2450\" y=\"504\" type=\"line\"/>\n      <point x=\"1658\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1658\" y=\"914\" type=\"line\"/>\n      <point x=\"1774\" y=\"914\" type=\"line\"/>\n      <point x=\"1317\" y=\"1392\" type=\"line\"/>\n      <point x=\"1253\" y=\"1335\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1658\" y=\"914\" type=\"line\"/>\n      <point x=\"2450\" y=\"914\" type=\"line\"/>\n      <point x=\"2450\" y=\"1004\" type=\"line\"/>\n      <point x=\"1658\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"376\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1418\" y=\"414\" type=\"line\"/>\n      <point x=\"2420\" y=\"414\" type=\"line\"/>\n      <point x=\"2420\" y=\"504\" type=\"line\"/>\n      <point x=\"1418\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1065\" y=\"30\" type=\"line\"/>\n      <point x=\"1534\" y=\"504\" type=\"line\"/>\n      <point x=\"1418\" y=\"504\" type=\"line\"/>\n      <point x=\"1001\" y=\"87\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1418\" y=\"914\" type=\"line\"/>\n      <point x=\"1534\" y=\"914\" type=\"line\"/>\n      <point x=\"1077\" y=\"1392\" type=\"line\"/>\n      <point x=\"1013\" y=\"1335\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1418\" y=\"914\" type=\"line\"/>\n      <point x=\"2420\" y=\"914\" type=\"line\"/>\n      <point x=\"2420\" y=\"1004\" type=\"line\"/>\n      <point x=\"1418\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"136\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"greater\" xOffset=\"134\"/>\n    <component base=\"greater\" xOffset=\"1200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"664\" type=\"line\"/>\n      <point x=\"1457\" y=\"664\" type=\"line\"/>\n      <point x=\"1457\" y=\"754\" type=\"line\"/>\n      <point x=\"-20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"576\"/>\n    <component base=\"greater.alt\" xOffset=\"1216\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"664\" type=\"line\"/>\n      <point x=\"1103\" y=\"664\" type=\"line\"/>\n      <point x=\"1103\" y=\"754\" type=\"line\"/>\n      <point x=\"-50\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1750\" y=\"664\" type=\"line\"/>\n      <point x=\"2450\" y=\"664\" type=\"line\"/>\n      <point x=\"2450\" y=\"754\" type=\"line\"/>\n      <point x=\"1750\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"236\"/>\n    <component base=\"greater.alt\" xOffset=\"871\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1664\" y=\"664\" type=\"line\"/>\n      <point x=\"2420\" y=\"664\" type=\"line\"/>\n      <point x=\"2420\" y=\"754\" type=\"line\"/>\n      <point x=\"1664\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"139\"/>\n    <component base=\"greater.alt\" xOffset=\"773\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"754\" type=\"line\"/>\n      <point x=\"-20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"176\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hyphen_middle.seq\"/>\n    <component base=\"greater.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"800\" y=\"664\" type=\"line\"/>\n      <point x=\"1220\" y=\"664\" type=\"line\"/>\n      <point x=\"1220\" y=\"754\" type=\"line\"/>\n      <point x=\"800\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"-67\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/greaterequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greaterequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2265\"/>\n  <outline>\n    <contour>\n      <point x=\"147\" y=\"364\" type=\"line\"/>\n      <point x=\"1057\" y=\"703\" type=\"line\"/>\n      <point x=\"1057\" y=\"815\" type=\"line\"/>\n      <point x=\"147\" y=\"1154\" type=\"line\"/>\n      <point x=\"147\" y=\"1059\" type=\"line\"/>\n      <point x=\"979\" y=\"763\" type=\"line\"/>\n      <point x=\"979\" y=\"755\" type=\"line\"/>\n      <point x=\"147\" y=\"459\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"147\" y=\"151\" type=\"line\"/>\n      <point x=\"1057\" y=\"151\" type=\"line\"/>\n      <point x=\"1057\" y=\"241\" type=\"line\"/>\n      <point x=\"147\" y=\"241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/groupS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"groupSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241D\"/>\n  <outline>\n    <component base=\"G.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>G.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E5\"/>\n  <outline>\n    <contour>\n      <point x=\"44\" y=\"-223\" type=\"line\"/>\n      <point x=\"1156\" y=\"-223\" type=\"line\"/>\n      <point x=\"1156\" y=\"-135\" type=\"line\"/>\n      <point x=\"44\" y=\"-135\" type=\"line\"/>\n    </contour>\n    <component base=\"g\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/guarani.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guarani\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B2\"/>\n  <outline>\n    <contour>\n      <point x=\"586\" y=\"-320\" type=\"line\"/>\n      <point x=\"680\" y=\"-320\" type=\"line\"/>\n      <point x=\"680\" y=\"3\" type=\"line\"/>\n      <point x=\"680\" y=\"33\" type=\"line\"/>\n      <point x=\"680\" y=\"591\" type=\"line\"/>\n      <point x=\"680\" y=\"632\" type=\"line\"/>\n      <point x=\"680\" y=\"1740\" type=\"line\"/>\n      <point x=\"586\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"G\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gueh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gueh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gueh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gueh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B3\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gueh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gueh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"-33\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/gueh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gueh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"twodotsverticalbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/guillemetleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guillemetleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AB\"/>\n  <outline>\n    <component base=\"guilsinglleft\" xOffset=\"-210\"/>\n    <component base=\"guilsinglleft\" xOffset=\"285\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/guillemetright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guillemetright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BB\"/>\n  <guideline x=\"697\" y=\"519\" angle=\"0\"/>\n  <outline>\n    <component base=\"guilsinglright\" xOffset=\"-285\"/>\n    <component base=\"guilsinglright\" xOffset=\"210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/guilsinglleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guilsinglleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2039\"/>\n  <outline>\n    <contour>\n      <point x=\"746\" y=\"50\" type=\"line\"/>\n      <point x=\"820\" y=\"107\" type=\"line\"/>\n      <point x=\"423\" y=\"520\" type=\"line\"/>\n      <point x=\"423\" y=\"538\" type=\"line\"/>\n      <point x=\"808\" y=\"955\" type=\"line\"/>\n      <point x=\"734\" y=\"1012\" type=\"line\"/>\n      <point x=\"300\" y=\"540\" type=\"line\"/>\n      <point x=\"300\" y=\"518\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/guilsinglright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guilsinglright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203A\"/>\n  <outline>\n    <contour>\n      <point x=\"454\" y=\"50\" type=\"line\"/>\n      <point x=\"900\" y=\"518\" type=\"line\"/>\n      <point x=\"900\" y=\"540\" type=\"line\"/>\n      <point x=\"466\" y=\"1012\" type=\"line\"/>\n      <point x=\"392\" y=\"955\" type=\"line\"/>\n      <point x=\"777\" y=\"538\" type=\"line\"/>\n      <point x=\"777\" y=\"520\" type=\"line\"/>\n      <point x=\"380\" y=\"107\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/h.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"h\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0068\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"784\" name=\"center\"/>\n  <anchor x=\"239\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"938\"/>\n      <point x=\"867\" y=\"1080\"/>\n      <point x=\"621\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1080\"/>\n      <point x=\"333\" y=\"1010\"/>\n      <point x=\"294\" y=\"868\" type=\"curve\"/>\n      <point x=\"222\" y=\"868\" type=\"line\"/>\n      <point x=\"286\" y=\"600\" type=\"line\"/>\n      <point x=\"286\" y=\"860\"/>\n      <point x=\"402\" y=\"988\"/>\n      <point x=\"630\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"988\"/>\n      <point x=\"914\" y=\"882\"/>\n      <point x=\"914\" y=\"694\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"1500\" type=\"line\"/>\n      <point x=\"192\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0445\"/>\n  <outline>\n    <component base=\"x\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hadescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B3\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1002\" y=\"-270\" type=\"line\"/>\n      <point x=\"1098\" y=\"-270\" type=\"line\"/>\n      <point x=\"1097\" y=\"90\" type=\"line\"/>\n      <point x=\"1001\" y=\"90\" type=\"line\"/>\n    </contour>\n    <component base=\"ha-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"611\" y=\"-74\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1265\" y=\"8\"/>\n      <point x=\"1265\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"79\"/>\n      <point x=\"1250\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"91\"/>\n      <point x=\"926\" y=\"116\"/>\n      <point x=\"901\" y=\"549\" type=\"curve\"/>\n      <point x=\"823\" y=\"524\" type=\"line\"/>\n      <point x=\"843\" y=\"104\"/>\n      <point x=\"892\" y=\"-3\"/>\n    </contour>\n    <component base=\"hah-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062D\"/>\n  <anchor x=\"523\" y=\"-645\" name=\"bottom\"/>\n  <anchor x=\"658\" y=\"-46\" name=\"center\"/>\n  <anchor x=\"569\" y=\"1154\" name=\"top\"/>\n  <anchor x=\"566\" y=\"904\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"648\" y=\"-616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"807\" y=\"-616\"/>\n      <point x=\"997\" y=\"-588\"/>\n      <point x=\"1114\" y=\"-548\" type=\"curve\"/>\n      <point x=\"1112\" y=\"-467\" type=\"line\"/>\n      <point x=\"989\" y=\"-496\"/>\n      <point x=\"821\" y=\"-522\"/>\n      <point x=\"668\" y=\"-522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"245\" y=\"-522\"/>\n      <point x=\"136\" y=\"-368\"/>\n      <point x=\"136\" y=\"-97\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"293\"/>\n      <point x=\"428\" y=\"438\"/>\n      <point x=\"1123\" y=\"547\" type=\"curve\"/>\n      <point x=\"1126\" y=\"641\" type=\"line\"/>\n      <point x=\"983\" y=\"638\"/>\n      <point x=\"942\" y=\"649\"/>\n      <point x=\"816\" y=\"687\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"743\"/>\n      <point x=\"502\" y=\"836\"/>\n      <point x=\"364\" y=\"836\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"836\"/>\n      <point x=\"156\" y=\"793\"/>\n      <point x=\"82\" y=\"719\" type=\"curve\"/>\n      <point x=\"92\" y=\"637\" type=\"line\"/>\n      <point x=\"162\" y=\"696\"/>\n      <point x=\"252\" y=\"742\"/>\n      <point x=\"356\" y=\"742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"742\"/>\n      <point x=\"545\" y=\"696\"/>\n      <point x=\"673\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"613\"/>\n      <point x=\"811\" y=\"605\"/>\n      <point x=\"863\" y=\"594\" type=\"curve\"/>\n      <point x=\"863\" y=\"561\" type=\"line\"/>\n      <point x=\"969\" y=\"549\" type=\"line\"/>\n      <point x=\"966\" y=\"593\" type=\"line\"/>\n      <point x=\"373\" y=\"519\"/>\n      <point x=\"44\" y=\"334\"/>\n      <point x=\"44\" y=\"-99\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"44\" y=\"-439\"/>\n      <point x=\"218\" y=\"-616\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hah-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hah-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"682\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"682\" y=\"74\" name=\"bottom.dot\"/>\n  <anchor x=\"569\" y=\"1124\" name=\"top\"/>\n  <anchor x=\"566\" y=\"874\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"-3\"/>\n      <point x=\"474\" y=\"170\"/>\n      <point x=\"761\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"429\"/>\n      <point x=\"984\" y=\"476\"/>\n      <point x=\"1133\" y=\"489\" type=\"curve\"/>\n      <point x=\"1136\" y=\"581\" type=\"line\"/>\n      <point x=\"978\" y=\"577\"/>\n      <point x=\"899\" y=\"593\"/>\n      <point x=\"781\" y=\"635\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"698\"/>\n      <point x=\"483\" y=\"808\"/>\n      <point x=\"347\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"808\"/>\n      <point x=\"194\" y=\"771\"/>\n      <point x=\"142\" y=\"723\" type=\"curve\"/>\n      <point x=\"148\" y=\"639\" type=\"line\"/>\n      <point x=\"211\" y=\"689\"/>\n      <point x=\"267\" y=\"714\"/>\n      <point x=\"341\" y=\"714\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"714\"/>\n      <point x=\"539\" y=\"648\"/>\n      <point x=\"644\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"548\"/>\n      <point x=\"844\" y=\"533\"/>\n      <point x=\"907\" y=\"524\" type=\"curve\"/>\n      <point x=\"907\" y=\"485\" type=\"line\"/>\n      <point x=\"1010\" y=\"497\" type=\"line\"/>\n      <point x=\"1007\" y=\"536\" type=\"line\"/>\n      <point x=\"861\" y=\"514\"/>\n      <point x=\"751\" y=\"448\"/>\n      <point x=\"630\" y=\"369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"214\"/>\n      <point x=\"221\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-45\" y=\"91\"/>\n      <point x=\"-70\" y=\"77\"/>\n      <point x=\"-70\" y=\"43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"11\"/>\n      <point x=\"-44\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hah-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hah-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1265\" y=\"8\"/>\n      <point x=\"1265\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"79\"/>\n      <point x=\"1250\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"91\"/>\n      <point x=\"926\" y=\"116\"/>\n      <point x=\"901\" y=\"449\" type=\"curve\"/>\n      <point x=\"823\" y=\"424\" type=\"line\"/>\n      <point x=\"843\" y=\"84\"/>\n      <point x=\"892\" y=\"-3\"/>\n    </contour>\n    <component base=\"hah-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahF_ourbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahFourbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"four-persiancenter-ar\" xOffset=\"-5\" yOffset=\"-372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahF_ourbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahFourbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077C\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"four-persiancenter-ar\" xOffset=\"42\" yOffset=\"-344\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahF_ourbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahFourbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahF_ourbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahFourbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-54\" yOffset=\"-200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0681\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-54\" yOffset=\"-200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahH_amzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahHamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-54\" yOffset=\"-230\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahH_amzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahHamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-54\" yOffset=\"-230\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotstahcenter-ar\" xScale=\"1.001\" xOffset=\"11\" yOffset=\"-394\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076F\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotstahcenter-ar\" yScale=\"1.0001\" xOffset=\"59\" yOffset=\"-366\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"384\" y=\"-360\" angle=\"0\"/>\n  <guideline x=\"395\" y=\"-339\" angle=\"0\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotstahbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotstahbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotstahbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotstahbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"2\" yOffset=\"493\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0772\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"2\" yOffset=\"493\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"_tahabove\" xOffset=\"2\" yOffset=\"463\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"_tahabove\" xOffset=\"2\" yOffset=\"463\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"tahcenter-ar\" xOffset=\"12\" yOffset=\"-394\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076E\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"tahcenter-ar\" xOffset=\"59\" yOffset=\"-366\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hah-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"tahbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>hah-ar.init</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tahbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hah-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTahbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"tahbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tahbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-34\" yOffset=\"362\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0685\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-34\" yOffset=\"362\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-34\" yOffset=\"332\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-34\" yOffset=\"332\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"threedotsupcenter-ar\" xScale=\"1.001\" xOffset=\"11\" yOffset=\"-394\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0758\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"threedotsupcenter-ar\" xOffset=\"59\" yOffset=\"-366\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"448\" y=\"-114\" angle=\"0\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"82\" yOffset=\"82\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"82\" yOffset=\"82\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0757\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"342\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"342\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotsverticalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotsverticalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-34\" yOffset=\"342\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0682\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-34\" yOffset=\"342\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotsverticalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotsverticalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"288\" y=\"439\" angle=\"0\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-34\" yOffset=\"312\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotsverticalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hahTwodotsverticalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-34\" yOffset=\"312\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hamza-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hamza-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0621\"/>\n  <anchor x=\"637\" y=\"-71\" name=\"bottom\"/>\n  <anchor x=\"630\" y=\"798\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"346\" y=\"4\" type=\"line\"/>\n      <point x=\"963\" y=\"115\" type=\"line\"/>\n      <point x=\"953\" y=\"209\" type=\"line\"/>\n      <point x=\"868\" y=\"196\"/>\n      <point x=\"764\" y=\"175\"/>\n      <point x=\"692\" y=\"175\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"175\"/>\n      <point x=\"465\" y=\"240\"/>\n      <point x=\"465\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"506\"/>\n      <point x=\"527\" y=\"572\"/>\n      <point x=\"686\" y=\"572\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"572\"/>\n      <point x=\"814\" y=\"556\"/>\n      <point x=\"871\" y=\"541\" type=\"curve\"/>\n      <point x=\"884\" y=\"631\" type=\"line\"/>\n      <point x=\"821\" y=\"653\"/>\n      <point x=\"749\" y=\"666\"/>\n      <point x=\"680\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"666\"/>\n      <point x=\"373\" y=\"568\"/>\n      <point x=\"373\" y=\"387\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"274\"/>\n      <point x=\"416\" y=\"176\"/>\n      <point x=\"502\" y=\"146\" type=\"curve\"/>\n      <point x=\"502\" y=\"86\" type=\"line\"/>\n      <point x=\"557\" y=\"75\" type=\"line\"/>\n      <point x=\"563\" y=\"144\" type=\"line\"/>\n      <point x=\"335\" y=\"98\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hamzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hamzaabove-ar\" format=\"2\">\n  <unicode hex=\"0654\"/>\n  <anchor x=\"620\" y=\"1189\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1621\" name=\"top\"/>\n  <outline>\n    <component base=\"_hamzasmall-ar\" xOffset=\"34\" yOffset=\"631\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzasmall-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hamzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hamzabelow-ar\" format=\"2\">\n  <unicode hex=\"0655\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"605\" y=\"0\" name=\"_bottom.dot\"/>\n  <anchor x=\"619\" y=\"-467\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_hamzasmall-ar\" xOffset=\"20\" yOffset=\"-1049\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzasmall-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hardsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hardsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"384\" y=\"0\" type=\"line\"/>\n      <point x=\"704\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"943\" y=\"0\"/>\n      <point x=\"1080\" y=\"121\"/>\n      <point x=\"1080\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"545\"/>\n      <point x=\"943\" y=\"666\"/>\n      <point x=\"704\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"376\" y=\"666\" type=\"line\"/>\n      <point x=\"376\" y=\"576\" type=\"line\"/>\n      <point x=\"696\" y=\"576\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"576\"/>\n      <point x=\"984\" y=\"487\"/>\n      <point x=\"984\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"179\"/>\n      <point x=\"879\" y=\"90\"/>\n      <point x=\"696\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"384\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"308\" y=\"0\" type=\"line\"/>\n      <point x=\"398\" y=\"0\" type=\"line\"/>\n      <point x=\"398\" y=\"1060\" type=\"line\"/>\n      <point x=\"308\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"24\" y=\"970\" type=\"line\"/>\n      <point x=\"353\" y=\"970\" type=\"line\"/>\n      <point x=\"353\" y=\"1060\" type=\"line\"/>\n      <point x=\"24\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hardsign-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hardsign-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"325\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"693\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"-20\"/>\n      <point x=\"1100\" y=\"129\"/>\n      <point x=\"1100\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"641\"/>\n      <point x=\"959\" y=\"785\"/>\n      <point x=\"711\" y=\"785\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"785\"/>\n      <point x=\"414\" y=\"716\"/>\n      <point x=\"374\" y=\"568\" type=\"curve\"/>\n      <point x=\"366\" y=\"568\" type=\"line\"/>\n      <point x=\"366\" y=\"1060\" type=\"line\"/>\n      <point x=\"24\" y=\"1060\" type=\"line\"/>\n      <point x=\"24\" y=\"970\" type=\"line\"/>\n      <point x=\"272\" y=\"970\" type=\"line\"/>\n      <point x=\"272\" y=\"382\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"125\"/>\n      <point x=\"425\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"695\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"72\"/>\n      <point x=\"366\" y=\"175\"/>\n      <point x=\"366\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"366\" y=\"580\"/>\n      <point x=\"480\" y=\"693\"/>\n      <point x=\"681\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"693\"/>\n      <point x=\"1004\" y=\"582\"/>\n      <point x=\"1004\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"187\"/>\n      <point x=\"892\" y=\"72\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0127\"/>\n  <outline>\n    <contour>\n      <point x=\"22\" y=\"1260\" type=\"line\"/>\n      <point x=\"738\" y=\"1260\" type=\"line\"/>\n      <point x=\"738\" y=\"1350\" type=\"line\"/>\n      <point x=\"22\" y=\"1350\" type=\"line\"/>\n    </contour>\n    <component base=\"h\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021F\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-361\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0125\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-366\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E25\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/he-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"he-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D4\"/>\n  <guideline x=\"1114\" y=\"175\" angle=\"90\"/>\n  <guideline x=\"2\" y=\"199\" angle=\"90\"/>\n  <anchor x=\"564\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"878\" y=\"0\" type=\"line\"/>\n      <point x=\"977\" y=\"0\" type=\"line\"/>\n      <point x=\"977\" y=\"957\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"977\" y=\"1119\"/>\n      <point x=\"904\" y=\"1200\"/>\n      <point x=\"742\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1200\"/>\n      <point x=\"198\" y=\"1230\"/>\n      <point x=\"168\" y=\"1253\" type=\"curve\"/>\n      <point x=\"114\" y=\"1174\" type=\"line\"/>\n      <point x=\"151\" y=\"1143\"/>\n      <point x=\"192\" y=\"1101\"/>\n      <point x=\"269\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"829\" y=\"1101\"/>\n      <point x=\"878\" y=\"1045\"/>\n      <point x=\"878\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"250\" y=\"0\" type=\"line\"/>\n      <point x=\"250\" y=\"722\" type=\"line\"/>\n      <point x=\"151\" y=\"722\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heartB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heartBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2665\"/>\n  <guideline x=\"834\" y=\"60\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"1280\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"1260\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"80\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"40\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"60\" type=\"curve\"/>\n      <point x=\"908\" y=\"251\"/>\n      <point x=\"1111\" y=\"604\"/>\n      <point x=\"1111\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"1136\"/>\n      <point x=\"1009\" y=\"1260\"/>\n      <point x=\"855\" y=\"1260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"723\" y=\"1260\"/>\n      <point x=\"622\" y=\"1144\"/>\n      <point x=\"601\" y=\"969\" type=\"curve\"/>\n      <point x=\"599\" y=\"969\" type=\"line\"/>\n      <point x=\"578\" y=\"1144\"/>\n      <point x=\"477\" y=\"1260\"/>\n      <point x=\"345\" y=\"1260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"191\" y=\"1260\"/>\n      <point x=\"89\" y=\"1136\"/>\n      <point x=\"89\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"89\" y=\"605\"/>\n      <point x=\"292\" y=\"252\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyH_orizontalF_ill.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"heavyHorizontalFill\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"heavyHorizontalFill.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyleftpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyleftpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2770\"/>\n  <outline>\n    <contour>\n      <point x=\"640\" y=\"0\" type=\"line\"/>\n      <point x=\"866\" y=\"0\" type=\"line\"/>\n      <point x=\"572\" y=\"701\" type=\"line\"/>\n      <point x=\"572\" y=\"719\" type=\"line\"/>\n      <point x=\"866\" y=\"1420\" type=\"line\"/>\n      <point x=\"640\" y=\"1420\" type=\"line\"/>\n      <point x=\"346\" y=\"719\" type=\"line\"/>\n      <point x=\"346\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyleftpointinganglequotationmarkornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276E\"/>\n  <outline>\n    <contour>\n      <point x=\"760\" y=\"0\" type=\"line\"/>\n      <point x=\"1016\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"701\" type=\"line\"/>\n      <point x=\"452\" y=\"719\" type=\"line\"/>\n      <point x=\"1016\" y=\"1420\" type=\"line\"/>\n      <point x=\"760\" y=\"1420\" type=\"line\"/>\n      <point x=\"196\" y=\"719\" type=\"line\"/>\n      <point x=\"196\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyrightpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyrightpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2771\"/>\n  <outline>\n    <contour>\n      <point x=\"314\" y=\"0\" type=\"line\"/>\n      <point x=\"540\" y=\"0\" type=\"line\"/>\n      <point x=\"834\" y=\"701\" type=\"line\"/>\n      <point x=\"834\" y=\"719\" type=\"line\"/>\n      <point x=\"540\" y=\"1420\" type=\"line\"/>\n      <point x=\"314\" y=\"1420\" type=\"line\"/>\n      <point x=\"608\" y=\"719\" type=\"line\"/>\n      <point x=\"608\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyrightpointinganglequotationmarkornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276F\"/>\n  <outline>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"440\" y=\"0\" type=\"line\"/>\n      <point x=\"1004\" y=\"701\" type=\"line\"/>\n      <point x=\"1004\" y=\"719\" type=\"line\"/>\n      <point x=\"440\" y=\"1420\" type=\"line\"/>\n      <point x=\"184\" y=\"1420\" type=\"line\"/>\n      <point x=\"748\" y=\"719\" type=\"line\"/>\n      <point x=\"748\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hedagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hedagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB34\"/>\n  <outline>\n    <component base=\"he-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-36\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"675\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"732\" y=\"1250\" name=\"top\"/>\n  <anchor x=\"729\" y=\"1000\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"624\" y=\"177\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"769\" y=\"177\"/>\n      <point x=\"847\" y=\"188\"/>\n      <point x=\"877\" y=\"229\" type=\"curve\"/>\n      <point x=\"924\" y=\"232\" type=\"line\"/>\n      <point x=\"924\" y=\"298\" type=\"line\"/>\n      <point x=\"841\" y=\"275\"/>\n      <point x=\"721\" y=\"269\"/>\n      <point x=\"653\" y=\"269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"395\" y=\"269\"/>\n      <point x=\"297\" y=\"331\"/>\n      <point x=\"297\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"585\"/>\n      <point x=\"486\" y=\"673\"/>\n      <point x=\"930\" y=\"764\" type=\"curve\"/>\n      <point x=\"923\" y=\"859\" type=\"line\"/>\n      <point x=\"467\" y=\"751\"/>\n      <point x=\"205\" y=\"659\"/>\n      <point x=\"205\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"205\" y=\"242\"/>\n      <point x=\"376\" y=\"177\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1256\" y=\"-3\"/>\n      <point x=\"1271\" y=\"11\"/>\n      <point x=\"1271\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1271\" y=\"84\"/>\n      <point x=\"1256\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"91\"/>\n      <point x=\"987\" y=\"123\"/>\n      <point x=\"986\" y=\"280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"977\" type=\"line\"/>\n      <point x=\"888\" y=\"977\" type=\"line\"/>\n      <point x=\"898\" y=\"266\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"62\"/>\n      <point x=\"943\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0647\"/>\n  <anchor x=\"605\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"592\" y=\"1190\" name=\"top\"/>\n  <anchor x=\"599\" y=\"940\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"585\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"858\" y=\"-3\"/>\n      <point x=\"972\" y=\"105\"/>\n      <point x=\"972\" y=\"289\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"465\"/>\n      <point x=\"866\" y=\"657\"/>\n      <point x=\"503\" y=\"850\" type=\"curve\"/>\n      <point x=\"454\" y=\"771\" type=\"line\"/>\n      <point x=\"809\" y=\"583\"/>\n      <point x=\"880\" y=\"418\"/>\n      <point x=\"880\" y=\"287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"151\"/>\n      <point x=\"783\" y=\"91\"/>\n      <point x=\"593\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"411\" y=\"91\"/>\n      <point x=\"320\" y=\"140\"/>\n      <point x=\"320\" y=\"267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"422\"/>\n      <point x=\"409\" y=\"547\"/>\n      <point x=\"625\" y=\"708\" type=\"curve\"/>\n      <point x=\"540\" y=\"753\" type=\"line\"/>\n      <point x=\"307\" y=\"566\"/>\n      <point x=\"228\" y=\"420\"/>\n      <point x=\"228\" y=\"261\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"101\"/>\n      <point x=\"316\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"565\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"1040\" name=\"top\"/>\n  <anchor x=\"549\" y=\"930\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"193\" y=\"-3\"/>\n      <point x=\"391\" y=\"10\"/>\n      <point x=\"544\" y=\"83\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"155\"/>\n      <point x=\"754\" y=\"265\"/>\n      <point x=\"754\" y=\"420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"633\"/>\n      <point x=\"636\" y=\"751\"/>\n      <point x=\"462\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"294\" y=\"751\"/>\n      <point x=\"169\" y=\"622\"/>\n      <point x=\"169\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"143\"/>\n      <point x=\"402\" y=\"-3\"/>\n      <point x=\"729\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"-3\"/>\n      <point x=\"1111\" y=\"143\"/>\n      <point x=\"1111\" y=\"292\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"495\"/>\n      <point x=\"1002\" y=\"685\"/>\n      <point x=\"326\" y=\"851\" type=\"curve\"/>\n      <point x=\"300\" y=\"755\" type=\"line\"/>\n      <point x=\"938\" y=\"605\"/>\n      <point x=\"1019\" y=\"441\"/>\n      <point x=\"1019\" y=\"293\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1019\" y=\"143\"/>\n      <point x=\"927\" y=\"91\"/>\n      <point x=\"737\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"91\"/>\n      <point x=\"261\" y=\"194\"/>\n      <point x=\"261\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"560\"/>\n      <point x=\"336\" y=\"659\"/>\n      <point x=\"467\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"574\" y=\"659\"/>\n      <point x=\"661\" y=\"587\"/>\n      <point x=\"661\" y=\"428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"272\"/>\n      <point x=\"578\" y=\"184\"/>\n      <point x=\"442\" y=\"137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"101\"/>\n      <point x=\"159\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-44\" y=\"91\"/>\n      <point x=\"-60\" y=\"83\"/>\n      <point x=\"-60\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-60\" y=\"13\"/>\n      <point x=\"-51\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/heh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"632\" y=\"-509\" name=\"bottom\"/>\n  <anchor x=\"632\" y=\"1170\" name=\"top\"/>\n  <anchor x=\"639\" y=\"920\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"659\" y=\"-471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"-471\"/>\n      <point x=\"945\" y=\"-368\"/>\n      <point x=\"945\" y=\"-205\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"945\" y=\"-130\"/>\n      <point x=\"914\" y=\"15\"/>\n      <point x=\"811\" y=\"61\" type=\"curve\"/>\n      <point x=\"804\" y=\"29\" type=\"line\"/>\n      <point x=\"903\" y=\"1\"/>\n      <point x=\"1008\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1268\" y=\"-3\"/>\n      <point x=\"1290\" y=\"5\"/>\n      <point x=\"1290\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1290\" y=\"84\"/>\n      <point x=\"1266\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"91\"/>\n      <point x=\"884\" y=\"95\"/>\n      <point x=\"709\" y=\"104\" type=\"curve\"/>\n      <point x=\"663\" y=\"65\" type=\"line\"/>\n      <point x=\"809\" y=\"8\"/>\n      <point x=\"853\" y=\"-112\"/>\n      <point x=\"853\" y=\"-205\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"-314\"/>\n      <point x=\"781\" y=\"-377\"/>\n      <point x=\"650\" y=\"-377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"-377\"/>\n      <point x=\"349\" y=\"-216\"/>\n      <point x=\"349\" y=\"52\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"326\"/>\n      <point x=\"499\" y=\"620\"/>\n      <point x=\"703\" y=\"786\" type=\"curve\"/>\n      <point x=\"651\" y=\"782\" type=\"line\"/>\n      <point x=\"759\" y=\"632\"/>\n      <point x=\"810\" y=\"440\"/>\n      <point x=\"810\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"189\"/>\n      <point x=\"727\" y=\"132\"/>\n      <point x=\"591\" y=\"113\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"95\"/>\n      <point x=\"307\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-42\" y=\"91\"/>\n      <point x=\"-64\" y=\"84\"/>\n      <point x=\"-64\" y=\"46\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-64\" y=\"9\"/>\n      <point x=\"-53\" y=\"-3\"/>\n      <point x=\"-12\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"-3\"/>\n      <point x=\"491\" y=\"-8\"/>\n      <point x=\"669\" y=\"38\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"84\"/>\n      <point x=\"902\" y=\"174\"/>\n      <point x=\"902\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"517\"/>\n      <point x=\"828\" y=\"676\"/>\n      <point x=\"727\" y=\"852\" type=\"curve\"/>\n      <point x=\"626\" y=\"840\" type=\"line\"/>\n      <point x=\"485\" y=\"689\"/>\n      <point x=\"261\" y=\"439\"/>\n      <point x=\"261\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"-299\"/>\n      <point x=\"409\" y=\"-471\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehA_lefabove-ar.init.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehAlefabove-ar.init.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"19\" yOffset=\"506\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehA_lefabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehAlefabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FCD9\"/>\n  <outline>\n    <component base=\"heh-ar.init\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-71\" yOffset=\"516\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehD_oachashmee-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehDoachashmee-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"632\" y=\"-509\" name=\"bottom\"/>\n  <anchor x=\"639\" y=\"1040\" name=\"top\"/>\n  <anchor x=\"639\" y=\"920\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"659\" y=\"-471\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"-471\"/>\n      <point x=\"945\" y=\"-368\"/>\n      <point x=\"945\" y=\"-205\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"945\" y=\"-130\"/>\n      <point x=\"914\" y=\"15\"/>\n      <point x=\"811\" y=\"61\" type=\"curve\"/>\n      <point x=\"804\" y=\"29\" type=\"line\"/>\n      <point x=\"903\" y=\"-8\"/>\n      <point x=\"998\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1268\" y=\"-3\"/>\n      <point x=\"1290\" y=\"5\"/>\n      <point x=\"1290\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1290\" y=\"84\"/>\n      <point x=\"1266\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"91\"/>\n      <point x=\"884\" y=\"95\"/>\n      <point x=\"709\" y=\"104\" type=\"curve\"/>\n      <point x=\"663\" y=\"65\" type=\"line\"/>\n      <point x=\"809\" y=\"8\"/>\n      <point x=\"853\" y=\"-112\"/>\n      <point x=\"853\" y=\"-205\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"-314\"/>\n      <point x=\"781\" y=\"-377\"/>\n      <point x=\"650\" y=\"-377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"-377\"/>\n      <point x=\"349\" y=\"-216\"/>\n      <point x=\"349\" y=\"52\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"326\"/>\n      <point x=\"499\" y=\"620\"/>\n      <point x=\"703\" y=\"786\" type=\"curve\"/>\n      <point x=\"651\" y=\"782\" type=\"line\"/>\n      <point x=\"759\" y=\"632\"/>\n      <point x=\"810\" y=\"440\"/>\n      <point x=\"810\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"189\"/>\n      <point x=\"727\" y=\"139\"/>\n      <point x=\"591\" y=\"113\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"524\" y=\"100\"/>\n      <point x=\"445\" y=\"94\"/>\n      <point x=\"339\" y=\"92\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"243\" y=\"90\"/>\n      <point x=\"128\" y=\"100\"/>\n      <point x=\"34\" y=\"112\" type=\"curve\"/>\n      <point x=\"28\" y=\"25\" type=\"line\"/>\n      <point x=\"125\" y=\"7\"/>\n      <point x=\"237\" y=\"-4\"/>\n      <point x=\"331\" y=\"-2\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"2\"/>\n      <point x=\"564\" y=\"11\"/>\n      <point x=\"669\" y=\"38\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"84\"/>\n      <point x=\"902\" y=\"174\"/>\n      <point x=\"902\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"517\"/>\n      <point x=\"828\" y=\"676\"/>\n      <point x=\"727\" y=\"852\" type=\"curve\"/>\n      <point x=\"626\" y=\"840\" type=\"line\"/>\n      <point x=\"485\" y=\"689\"/>\n      <point x=\"261\" y=\"439\"/>\n      <point x=\"261\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"-299\"/>\n      <point x=\"409\" y=\"-471\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehD_oachashmee-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehDoachashmee-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BE\"/>\n  <anchor x=\"565\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"1040\" name=\"top\"/>\n  <anchor x=\"549\" y=\"930\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"199\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"-3\"/>\n      <point x=\"443\" y=\"20\"/>\n      <point x=\"564\" y=\"83\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"155\"/>\n      <point x=\"774\" y=\"265\"/>\n      <point x=\"774\" y=\"420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"633\"/>\n      <point x=\"656\" y=\"751\"/>\n      <point x=\"482\" y=\"751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"751\"/>\n      <point x=\"189\" y=\"622\"/>\n      <point x=\"189\" y=\"405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"189\" y=\"143\"/>\n      <point x=\"422\" y=\"-3\"/>\n      <point x=\"749\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"-3\"/>\n      <point x=\"1131\" y=\"143\"/>\n      <point x=\"1131\" y=\"292\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"495\"/>\n      <point x=\"1022\" y=\"685\"/>\n      <point x=\"346\" y=\"851\" type=\"curve\"/>\n      <point x=\"320\" y=\"755\" type=\"line\"/>\n      <point x=\"958\" y=\"605\"/>\n      <point x=\"1039\" y=\"441\"/>\n      <point x=\"1039\" y=\"293\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1039\" y=\"143\"/>\n      <point x=\"947\" y=\"91\"/>\n      <point x=\"757\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"91\"/>\n      <point x=\"281\" y=\"194\"/>\n      <point x=\"281\" y=\"412\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"281\" y=\"560\"/>\n      <point x=\"356\" y=\"659\"/>\n      <point x=\"487\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"659\"/>\n      <point x=\"681\" y=\"587\"/>\n      <point x=\"681\" y=\"428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"681\" y=\"272\"/>\n      <point x=\"598\" y=\"184\"/>\n      <point x=\"462\" y=\"137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"397\" y=\"113\"/>\n      <point x=\"300\" y=\"91\"/>\n      <point x=\"203\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"144\" y=\"91\"/>\n      <point x=\"97\" y=\"93\"/>\n      <point x=\"34\" y=\"101\" type=\"curve\"/>\n      <point x=\"28\" y=\"14\" type=\"line\"/>\n      <point x=\"83\" y=\"2\"/>\n      <point x=\"140\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehD_oachashmee-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehDoachashmee-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehD_oachashmee-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehDoachashmee-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"109\" yOffset=\"-104\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C0\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-21\" yOffset=\"-164\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehV_invertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehVinvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"39\" yOffset=\"388\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehV_invertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehVinvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FF\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-51\" yOffset=\"398\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehV_invertedabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehVinvertedabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar.init\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-51\" yOffset=\"398\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehV_invertedabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehVinvertedabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehDoachashmee-ar.medi\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"39\" yOffset=\"388\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"678\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"678\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"680\" y=\"965\" name=\"top\"/>\n  <anchor x=\"680\" y=\"715\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1191\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1248\" y=\"-3\"/>\n      <point x=\"1265\" y=\"4\"/>\n      <point x=\"1265\" y=\"39\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"67\"/>\n      <point x=\"1259\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"91\"/>\n      <point x=\"1076\" y=\"150\"/>\n      <point x=\"966\" y=\"309\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"481\"/>\n      <point x=\"804\" y=\"586\"/>\n      <point x=\"675\" y=\"586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"559\" y=\"586\"/>\n      <point x=\"403\" y=\"430\"/>\n      <point x=\"231\" y=\"267\" type=\"curve\"/>\n      <point x=\"271\" y=\"176\" type=\"line\"/>\n      <point x=\"450\" y=\"356\"/>\n      <point x=\"574\" y=\"482\"/>\n      <point x=\"673\" y=\"482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"482\"/>\n      <point x=\"780\" y=\"418\"/>\n      <point x=\"884\" y=\"263\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"73\"/>\n      <point x=\"1065\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C1\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_hehgoalcomma\" xOffset=\"262\" yOffset=\"-21\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_hehgoalcomma</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_hehgoalcomma\" xOffset=\"222\" yOffset=\"-21\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_hehgoalcomma</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoal-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"662\" y=\"-509\" name=\"bottom\"/>\n  <anchor x=\"642\" y=\"800\" name=\"top\"/>\n  <anchor x=\"649\" y=\"550\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"747\" y=\"-460\" type=\"curve\"/>\n      <point x=\"862\" y=\"-423\" type=\"line\"/>\n      <point x=\"846\" y=\"-313\"/>\n      <point x=\"840\" y=\"-259\"/>\n      <point x=\"840\" y=\"-194\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"-44\"/>\n      <point x=\"864\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1267\" y=\"3\"/>\n      <point x=\"1267\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1267\" y=\"86\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"91\"/>\n      <point x=\"748\" y=\"33\"/>\n      <point x=\"748\" y=\"-180\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"748\" y=\"-267\"/>\n      <point x=\"756\" y=\"-324\"/>\n      <point x=\"773\" y=\"-412\" type=\"curve\"/>\n      <point x=\"794\" y=\"-383\" type=\"line\"/>\n      <point x=\"546\" y=\"-251\"/>\n      <point x=\"438\" y=\"-136\"/>\n      <point x=\"438\" y=\"100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"229\"/>\n      <point x=\"458\" y=\"352\"/>\n      <point x=\"474\" y=\"493\" type=\"curve\"/>\n      <point x=\"382\" y=\"493\" type=\"line\"/>\n      <point x=\"324\" y=\"120\"/>\n      <point x=\"300\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\"/>\n      <point x=\"-9\" y=\"-3\" type=\"line\"/>\n      <point x=\"194\" y=\"-3\"/>\n      <point x=\"284\" y=\"27\"/>\n      <point x=\"334\" y=\"107\" type=\"curve\"/>\n      <point x=\"391\" y=\"107\" type=\"line\"/>\n      <point x=\"424\" y=\"172\" type=\"line\"/>\n      <point x=\"369\" y=\"209\" type=\"line\"/>\n      <point x=\"358\" y=\"155\"/>\n      <point x=\"351\" y=\"117\"/>\n      <point x=\"351\" y=\"58\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"-168\"/>\n      <point x=\"477\" y=\"-334\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehgoal-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"60\" yOffset=\"-389\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C2\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-21\" yOffset=\"-164\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"hehgoal-ar.init.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"315\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehgoal-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"255\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hehgoalHamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehgoal-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"29\" yOffset=\"-554\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/het-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"het-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D7\"/>\n  <guideline x=\"515\" y=\"1200\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"974\" y=\"957\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1119\"/>\n      <point x=\"901\" y=\"1200\"/>\n      <point x=\"739\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1200\"/>\n      <point x=\"198\" y=\"1230\"/>\n      <point x=\"168\" y=\"1253\" type=\"curve\"/>\n      <point x=\"114\" y=\"1174\" type=\"line\"/>\n      <point x=\"151\" y=\"1143\"/>\n      <point x=\"192\" y=\"1101\"/>\n      <point x=\"269\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"726\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"1101\"/>\n      <point x=\"875\" y=\"1045\"/>\n      <point x=\"875\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"0\" type=\"line\"/>\n      <point x=\"974\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"233\" y=\"1094\" type=\"line\"/>\n      <point x=\"185\" y=\"1065\"/>\n      <point x=\"151\" y=\"978\"/>\n      <point x=\"151\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"250\" y=\"0\" type=\"line\"/>\n      <point x=\"250\" y=\"820\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"929\"/>\n      <point x=\"254\" y=\"1102\"/>\n      <point x=\"392\" y=\"1102\" type=\"curve\"/>\n      <point x=\"233\" y=\"1171\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamza-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamza-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0674\"/>\n  <anchor x=\"280\" y=\"1240\" name=\"_top\"/>\n  <anchor x=\"282\" y=\"1661\" name=\"top\"/>\n  <outline>\n    <component base=\"_hamzasmall-ar\" xOffset=\"34\" yOffset=\"631\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzasmall-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaA_lef-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaAlef-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"414\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar.fina\"/>\n    <component base=\"highhamza-ar\" xOffset=\"179\" yOffset=\"-49\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alef-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaA_lef-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaAlef-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"532\" y=\"1651\" name=\"top\"/>\n  <outline>\n    <component base=\"highhamza-ar\" xScale=\"1.001\" xOffset=\"-53\" yOffset=\"11\"/>\n    <component base=\"alef-ar.fina.rlig\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaA_lef-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaAlef-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0675\"/>\n  <anchor x=\"594\" y=\"1545\" name=\"top\"/>\n  <outline>\n    <component base=\"alef-ar\"/>\n    <component base=\"highhamza-ar\" xOffset=\"353\" yOffset=\"-49\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaW_aw-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaWaw-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"573\" y=\"1120\" name=\"top\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"highhamza-ar\" xOffset=\"383\" yOffset=\"-340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaW_aw-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaWaw-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0676\"/>\n  <anchor x=\"573\" y=\"1120\" name=\"top\"/>\n  <outline>\n    <component base=\"waw-ar\" yOffset=\"3\"/>\n    <component base=\"highhamza-ar\" xOffset=\"383\" yOffset=\"-337\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>waw-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-48\" yOffset=\"-757\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-48\" yOffset=\"-757\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0678\"/>\n  <anchor x=\"291\" y=\"656\" name=\"top\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"499\" yOffset=\"-254\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"852\" y=\"1325\" name=\"top\"/>\n  <outline>\n    <component base=\"highhamza-ar\" xOffset=\"532\" yOffset=\"-341\"/>\n    <component base=\"behDotless-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"792\" y=\"1325\" name=\"top\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"highhamza-ar\" xOffset=\"532\" yOffset=\"-341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"highhamzaYeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"592\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"630\" y=\"1195\" name=\"top\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"highhamza-ar\" xOffset=\"340\" yOffset=\"-341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>highhamza-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/holam-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"holam-hb\" format=\"2\">\n  <unicode hex=\"05B9\"/>\n  <anchor x=\"600\" y=\"1200\" name=\"_top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1379\"/>\n      <point x=\"691\" y=\"1419\"/>\n      <point x=\"691\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1519\"/>\n      <point x=\"650\" y=\"1560\"/>\n      <point x=\"600\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1560\"/>\n      <point x=\"509\" y=\"1519\"/>\n      <point x=\"509\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1419\"/>\n      <point x=\"550\" y=\"1379\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/holamhaser-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"holamhaser-hb\" format=\"2\">\n  <unicode hex=\"05BA\"/>\n  <anchor x=\"600\" y=\"1200\" name=\"_top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1379\"/>\n      <point x=\"691\" y=\"1419\"/>\n      <point x=\"691\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1519\"/>\n      <point x=\"650\" y=\"1560\"/>\n      <point x=\"600\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1560\"/>\n      <point x=\"509\" y=\"1519\"/>\n      <point x=\"509\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1419\"/>\n      <point x=\"550\" y=\"1379\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hookabovecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hookabovecomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1420\" name=\"_top_viet\"/>\n  <anchor x=\"600\" y=\"1840\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"561\" y=\"1529\" type=\"line\"/>\n      <point x=\"657\" y=\"1529\" type=\"line\"/>\n      <point x=\"657\" y=\"1548\"/>\n      <point x=\"669\" y=\"1564\"/>\n      <point x=\"686\" y=\"1574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"1635\"/>\n      <point x=\"815\" y=\"1687\"/>\n      <point x=\"815\" y=\"1751\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"1853\"/>\n      <point x=\"750\" y=\"1904\"/>\n      <point x=\"618\" y=\"1904\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"1904\"/>\n      <point x=\"425\" y=\"1877\"/>\n      <point x=\"376\" y=\"1829\" type=\"curve\"/>\n      <point x=\"414\" y=\"1760\" type=\"line\"/>\n      <point x=\"461\" y=\"1797\"/>\n      <point x=\"528\" y=\"1818\"/>\n      <point x=\"597\" y=\"1818\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"1818\"/>\n      <point x=\"719\" y=\"1792\"/>\n      <point x=\"719\" y=\"1741\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"1704\"/>\n      <point x=\"693\" y=\"1675\"/>\n      <point x=\"632\" y=\"1638\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"1612\"/>\n      <point x=\"561\" y=\"1589\"/>\n      <point x=\"561\" y=\"1550\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hookabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hookabovecomb\" format=\"2\">\n  <unicode hex=\"0309\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"_top_viet\"/>\n  <anchor x=\"590\" y=\"1618\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"532\" y=\"1248\" type=\"line\"/>\n      <point x=\"628\" y=\"1248\" type=\"line\"/>\n      <point x=\"628\" y=\"1257\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"1378\"/>\n      <point x=\"766\" y=\"1391\"/>\n      <point x=\"766\" y=\"1539\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"1641\"/>\n      <point x=\"704\" y=\"1692\"/>\n      <point x=\"578\" y=\"1692\" type=\"curve\"/>\n      <point x=\"567\" y=\"1600\" type=\"line\"/>\n      <point x=\"636\" y=\"1600\"/>\n      <point x=\"670\" y=\"1575\"/>\n      <point x=\"670\" y=\"1525\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"1438\"/>\n      <point x=\"532\" y=\"1400\"/>\n      <point x=\"532\" y=\"1264\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"420\" y=\"1547\" type=\"line\"/>\n      <point x=\"459\" y=\"1579\"/>\n      <point x=\"515\" y=\"1600\"/>\n      <point x=\"567\" y=\"1600\" type=\"curve\"/>\n      <point x=\"578\" y=\"1692\" type=\"line\"/>\n      <point x=\"495\" y=\"1692\"/>\n      <point x=\"420\" y=\"1666\"/>\n      <point x=\"375\" y=\"1623\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalB_lackH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalBlackHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B23\"/>\n  <note>\nuni2B23\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"190\" type=\"line\"/>\n      <point x=\"900\" y=\"190\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"900\" y=\"1230\" type=\"line\"/>\n      <point x=\"300\" y=\"1230\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A4\"/>\n  <note>\nuni25A4\n</note>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"815\" type=\"line\"/>\n      <point x=\"1051\" y=\"815\" type=\"line\"/>\n      <point x=\"1051\" y=\"905\" type=\"line\"/>\n      <point x=\"149\" y=\"905\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"515\" type=\"line\"/>\n      <point x=\"1051\" y=\"515\" type=\"line\"/>\n      <point x=\"1051\" y=\"605\" type=\"line\"/>\n      <point x=\"149\" y=\"605\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB76\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-2.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB77\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-3.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB78\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-4.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB79\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-5.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-6.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-7.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalT_abulationC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalTabulationControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2409\"/>\n  <outline>\n    <component base=\"H.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>H.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalTabulationControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"73\" y=\"183\" type=\"line\"/>\n      <point x=\"1128\" y=\"698\" type=\"line\"/>\n      <point x=\"1128\" y=\"720\" type=\"line\"/>\n      <point x=\"73\" y=\"1235\" type=\"line\"/>\n      <point x=\"73\" y=\"1123\" type=\"line\"/>\n      <point x=\"850\" y=\"773\" type=\"line\"/>\n      <point x=\"850\" y=\"645\" type=\"line\"/>\n      <point x=\"73\" y=\"295\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"900\" y=\"664\" type=\"line\"/>\n      <point x=\"900\" y=\"754\" type=\"line\"/>\n      <point x=\"73\" y=\"754\" type=\"line\"/>\n      <point x=\"73\" y=\"664\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2015\"/>\n  <outline>\n    <component base=\"emdash\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontallineextension.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontallineextension\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"23AF\"/>\n  <outline>\n    <component base=\"boxLightHorizontal\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horncomb.case\" format=\"2\">\n  <anchor x=\"780\" y=\"1420\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"474\" y=\"1255\" type=\"line\"/>\n      <point x=\"534\" y=\"1265\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"739\" y=\"1300\"/>\n      <point x=\"828\" y=\"1410\"/>\n      <point x=\"828\" y=\"1653\" type=\"curve\"/>\n      <point x=\"736\" y=\"1653\" type=\"line\"/>\n      <point x=\"736\" y=\"1462\"/>\n      <point x=\"669\" y=\"1376\"/>\n      <point x=\"514\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"1340\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/horncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horncomb\" format=\"2\">\n  <unicode hex=\"031B\"/>\n  <anchor x=\"680\" y=\"1060\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"431\" y=\"970\" type=\"line\"/>\n      <point x=\"491\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"1017\"/>\n      <point x=\"824\" y=\"1132\"/>\n      <point x=\"824\" y=\"1343\" type=\"curve\"/>\n      <point x=\"728\" y=\"1343\" type=\"line\"/>\n      <point x=\"728\" y=\"1184\"/>\n      <point x=\"634\" y=\"1101\"/>\n      <point x=\"451\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"391\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/house.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"house\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2302\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"706\" type=\"line\"/>\n      <point x=\"600\" y=\"1142\" type=\"line\"/>\n      <point x=\"100\" y=\"706\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"190\" y=\"90\" type=\"line\"/>\n      <point x=\"190\" y=\"665.068\" type=\"line\"/>\n      <point x=\"599.399\" y=\"1022.064\" type=\"line\"/>\n      <point x=\"1010\" y=\"666\" type=\"line\"/>\n      <point x=\"1010\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hryvnia.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hryvnia\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B4\"/>\n  <outline>\n    <contour>\n      <point x=\"693\" y=\"820\" type=\"curve\"/>\n      <point x=\"884\" y=\"871\" type=\"line\"/>\n      <point x=\"884\" y=\"909\" type=\"line\"/>\n      <point x=\"965\" y=\"977\"/>\n      <point x=\"1009\" y=\"1059\"/>\n      <point x=\"1009\" y=\"1150\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1009\" y=\"1334\"/>\n      <point x=\"880\" y=\"1440\"/>\n      <point x=\"654\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"471\" y=\"1440\"/>\n      <point x=\"292\" y=\"1375\"/>\n      <point x=\"163\" y=\"1261\" type=\"curve\"/>\n      <point x=\"222\" y=\"1200\" type=\"line\"/>\n      <point x=\"359\" y=\"1295\"/>\n      <point x=\"509\" y=\"1350\"/>\n      <point x=\"633\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"1350\"/>\n      <point x=\"913\" y=\"1277\"/>\n      <point x=\"913\" y=\"1150\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"913\" y=\"1024\"/>\n      <point x=\"839\" y=\"905\"/>\n    </contour>\n    <contour>\n      <point x=\"609\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"-20\"/>\n      <point x=\"917\" y=\"3\"/>\n      <point x=\"1047\" y=\"58\" type=\"curve\"/>\n      <point x=\"1034\" y=\"142\" type=\"line\"/>\n      <point x=\"873\" y=\"91\"/>\n      <point x=\"748\" y=\"70\"/>\n      <point x=\"613\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"391\" y=\"70\"/>\n      <point x=\"263\" y=\"142\"/>\n      <point x=\"263\" y=\"267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"263\" y=\"361\"/>\n      <point x=\"332\" y=\"449\"/>\n      <point x=\"452\" y=\"510\" type=\"curve\"/>\n      <point x=\"331\" y=\"555\" type=\"line\"/>\n      <point x=\"331\" y=\"482\" type=\"line\"/>\n      <point x=\"227\" y=\"434\"/>\n      <point x=\"167\" y=\"348\"/>\n      <point x=\"167\" y=\"247\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"77\"/>\n      <point x=\"328\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"94\" y=\"490\" type=\"line\"/>\n      <point x=\"1106\" y=\"490\" type=\"line\"/>\n      <point x=\"1106\" y=\"580\" type=\"line\"/>\n      <point x=\"94\" y=\"580\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"372\" y=\"515\" type=\"line\"/>\n      <point x=\"453\" y=\"515\" type=\"line\"/>\n      <point x=\"802\" y=\"821\" type=\"line\"/>\n      <point x=\"721\" y=\"821\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"94\" y=\"810\" type=\"line\"/>\n      <point x=\"1106\" y=\"810\" type=\"line\"/>\n      <point x=\"1106\" y=\"900\" type=\"line\"/>\n      <point x=\"94\" y=\"900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DD\"/>\n  <outline>\n    <component base=\"hungarumlautcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hungarumlautcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlautcomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"684\" y=\"1580\" type=\"line\"/>\n      <point x=\"796\" y=\"1580\" type=\"line\"/>\n      <point x=\"971\" y=\"1830\" type=\"line\"/>\n      <point x=\"849\" y=\"1830\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"364\" y=\"1580\" type=\"line\"/>\n      <point x=\"476\" y=\"1580\" type=\"line\"/>\n      <point x=\"651\" y=\"1830\" type=\"line\"/>\n      <point x=\"529\" y=\"1830\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hungarumlautcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlautcomb\" format=\"2\">\n  <unicode hex=\"030B\"/>\n  <anchor x=\"560\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"640\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"686\" y=\"1248\" type=\"line\"/>\n      <point x=\"787\" y=\"1248\" type=\"line\"/>\n      <point x=\"957\" y=\"1628\" type=\"line\"/>\n      <point x=\"846\" y=\"1628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"300\" y=\"1248\" type=\"line\"/>\n      <point x=\"401\" y=\"1248\" type=\"line\"/>\n      <point x=\"571\" y=\"1628\" type=\"line\"/>\n      <point x=\"460\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002D\"/>\n  <outline>\n    <component base=\"minus\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1964\" y=\"517\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2114\" y=\"517\"/>\n      <point x=\"2178\" y=\"622\"/>\n      <point x=\"2178\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2178\" y=\"930\" type=\"line\"/>\n      <point x=\"2088\" y=\"930\" type=\"line\"/>\n      <point x=\"2088\" y=\"857\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2088\" y=\"682\"/>\n      <point x=\"2051\" y=\"607\"/>\n      <point x=\"1963\" y=\"607\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1905\" y=\"607\"/>\n      <point x=\"1852\" y=\"638\"/>\n      <point x=\"1739\" y=\"744\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1608\" y=\"866\"/>\n      <point x=\"1543\" y=\"903\"/>\n      <point x=\"1454\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1326\" y=\"903\"/>\n      <point x=\"1250\" y=\"825\"/>\n      <point x=\"1250\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"683\" type=\"line\"/>\n      <point x=\"1340\" y=\"683\" type=\"line\"/>\n      <point x=\"1340\" y=\"703\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1340\" y=\"772\"/>\n      <point x=\"1382\" y=\"813\"/>\n      <point x=\"1453\" y=\"813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1521\" y=\"813\"/>\n      <point x=\"1579\" y=\"781\"/>\n      <point x=\"1698\" y=\"661\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1807\" y=\"551\"/>\n      <point x=\"1867\" y=\"517\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"664\" type=\"line\"/>\n      <point x=\"1340\" y=\"664\" type=\"line\"/>\n      <point x=\"1340\" y=\"754\" type=\"line\"/>\n      <point x=\"280\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"754\" type=\"line\"/>\n      <point x=\"-20\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1330\" y=\"664\" type=\"line\"/>\n      <point x=\"2120\" y=\"664\" type=\"line\"/>\n      <point x=\"2120\" y=\"754\" type=\"line\"/>\n      <point x=\"1330\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"664\" type=\"line\"/>\n      <point x=\"1070\" y=\"664\" type=\"line\"/>\n      <point x=\"1070\" y=\"754\" type=\"line\"/>\n      <point x=\"280\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2527\" y=\"664\" type=\"line\"/>\n      <point x=\"3320\" y=\"664\" type=\"line\"/>\n      <point x=\"3320\" y=\"754\" type=\"line\"/>\n      <point x=\"2527\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"664\" type=\"line\"/>\n      <point x=\"1067\" y=\"664\" type=\"line\"/>\n      <point x=\"1067\" y=\"754\" type=\"line\"/>\n      <point x=\"280\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1397\" y=\"664\" type=\"line\"/>\n      <point x=\"2197\" y=\"664\" type=\"line\"/>\n      <point x=\"2197\" y=\"754\" type=\"line\"/>\n      <point x=\"1397\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"664\" type=\"line\"/>\n      <point x=\"1250\" y=\"664\" type=\"line\"/>\n      <point x=\"1250\" y=\"754\" type=\"line\"/>\n      <point x=\"-50\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"664\" type=\"line\"/>\n      <point x=\"1220\" y=\"664\" type=\"line\"/>\n      <point x=\"1220\" y=\"754\" type=\"line\"/>\n      <point x=\"124\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphentwo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphentwo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2010\"/>\n  <outline>\n    <component base=\"hyphen\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"i-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0456\"/>\n  <outline>\n    <component base=\"i\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"i\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0069\"/>\n  <anchor x=\"670\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"658\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"623\" y=\"0\" type=\"line\"/>\n      <point x=\"717\" y=\"0\" type=\"line\"/>\n      <point x=\"717\" y=\"1012\" type=\"line\"/>\n      <point x=\"623\" y=\"1012\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"644\" y=\"0\" type=\"line\"/>\n      <point x=\"644\" y=\"90\" type=\"line\"/>\n      <point x=\"184\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"696\" y=\"0\" type=\"line\"/>\n      <point x=\"1078\" y=\"0\" type=\"line\"/>\n      <point x=\"1078\" y=\"90\" type=\"line\"/>\n      <point x=\"696\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"244\" y=\"970\" type=\"line\"/>\n      <point x=\"717\" y=\"970\" type=\"line\"/>\n      <point x=\"717\" y=\"1060\" type=\"line\"/>\n      <point x=\"244\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"658\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"1323\"/>\n      <point x=\"758\" y=\"1367\"/>\n      <point x=\"758\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"1477\"/>\n      <point x=\"713\" y=\"1522\"/>\n      <point x=\"658\" y=\"1522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"1522\"/>\n      <point x=\"558\" y=\"1477\"/>\n      <point x=\"558\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"1367\"/>\n      <point x=\"603\" y=\"1323\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ia-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ia-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"477\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"913\" y=\"440\" type=\"line\"/>\n      <point x=\"923\" y=\"500\" type=\"line\"/>\n      <point x=\"557\" y=\"500\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"500\"/>\n      <point x=\"275\" y=\"583\"/>\n      <point x=\"275\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"275\" y=\"883\"/>\n      <point x=\"377\" y=\"970\"/>\n      <point x=\"557\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"943\" y=\"970\" type=\"line\"/>\n      <point x=\"943\" y=\"1060\" type=\"line\"/>\n      <point x=\"557\" y=\"1060\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"1060\"/>\n      <point x=\"179\" y=\"944\"/>\n      <point x=\"179\" y=\"741\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"179\" y=\"550\"/>\n      <point x=\"287\" y=\"440\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"-5\" type=\"line\"/>\n      <point x=\"169\" y=\"-5\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"-5\"/>\n      <point x=\"388\" y=\"49\"/>\n      <point x=\"467\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"278\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"374\"/>\n      <point x=\"608\" y=\"410\"/>\n      <point x=\"692\" y=\"410\" type=\"curve\"/>\n      <point x=\"700\" y=\"431\" type=\"line\"/>\n      <point x=\"580\" y=\"431\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"431\"/>\n      <point x=\"468\" y=\"394\"/>\n      <point x=\"423\" y=\"308\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"379\" y=\"224\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"329\" y=\"128\"/>\n      <point x=\"263\" y=\"87\"/>\n      <point x=\"159\" y=\"87\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"87\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"410\" type=\"line\"/>\n      <point x=\"957\" y=\"410\" type=\"line\"/>\n      <point x=\"957\" y=\"500\" type=\"line\"/>\n      <point x=\"580\" y=\"500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"909\" y=\"0\" type=\"line\"/>\n      <point x=\"1003\" y=\"0\" type=\"line\"/>\n      <point x=\"1003\" y=\"1060\" type=\"line\"/>\n      <point x=\"909\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00ED\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"acutecomb\" xOffset=\"140\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ibreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ibreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012D\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"brevecomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/icircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"icircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EE\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"circumflexcomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/idieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EF\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"dieresiscomb\" xOffset=\"52\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/idotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECB\"/>\n  <outline>\n    <component base=\"i\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/idotless.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idotless\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0131\"/>\n  <anchor x=\"670\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"731\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"650\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"623\" y=\"0\" type=\"line\"/>\n      <point x=\"717\" y=\"0\" type=\"line\"/>\n      <point x=\"717\" y=\"1060\" type=\"line\"/>\n      <point x=\"623\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"644\" y=\"0\" type=\"line\"/>\n      <point x=\"644\" y=\"90\" type=\"line\"/>\n      <point x=\"184\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"696\" y=\"0\" type=\"line\"/>\n      <point x=\"1078\" y=\"0\" type=\"line\"/>\n      <point x=\"1078\" y=\"90\" type=\"line\"/>\n      <point x=\"696\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"244\" y=\"970\" type=\"line\"/>\n      <point x=\"717\" y=\"970\" type=\"line\"/>\n      <point x=\"717\" y=\"1060\" type=\"line\"/>\n      <point x=\"244\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ie-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ie-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0435\"/>\n  <outline>\n    <component base=\"e\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iegrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iegrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0450\"/>\n  <outline>\n    <component base=\"ie-cy\"/>\n    <component base=\"gravecomb\" xOffset=\"-69\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/igrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"igrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EC\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"gravecomb\" xOffset=\"-19\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ihookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ihookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC9\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"hookabovecomb\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ii-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ii-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0438\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"228\" y=\"0\" type=\"line\"/>\n      <point x=\"291\" y=\"0\" type=\"line\"/>\n      <point x=\"894\" y=\"900\" type=\"line\"/>\n      <point x=\"965\" y=\"900\" type=\"line\"/>\n      <point x=\"965\" y=\"1060\" type=\"line\"/>\n      <point x=\"909\" y=\"1060\" type=\"line\"/>\n      <point x=\"306\" y=\"160\" type=\"line\"/>\n      <point x=\"228\" y=\"160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n      <point x=\"192\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"1060\" type=\"line\"/>\n      <point x=\"914\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ii-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ii-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"u\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iigrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iigrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045D\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"gravecomb\" xOffset=\"-69\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iigrave-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iigrave-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ii-cy.loclBGR\"/>\n    <component base=\"gravecomb\" xOffset=\"-89\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iishort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iishort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0439\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"brevecomb-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iishort-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iishort-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ii-cy.loclBGR\"/>\n    <component base=\"brevecomb-cy\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ij.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ij\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0133\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"270\" y=\"-480\" type=\"line\"/>\n      <point x=\"422\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"-439\"/>\n      <point x=\"945\" y=\"-284\"/>\n      <point x=\"940\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"384\" type=\"line\"/>\n      <point x=\"842\" y=\"384\" type=\"line\"/>\n      <point x=\"846\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"-227\"/>\n      <point x=\"724\" y=\"-352\"/>\n      <point x=\"442\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"-394\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"303\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"1060\" type=\"line\"/>\n      <point x=\"303\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"842\" y=\"350\" type=\"line\"/>\n      <point x=\"936\" y=\"350\" type=\"line\"/>\n      <point x=\"936\" y=\"1060\" type=\"line\"/>\n      <point x=\"842\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"1323\"/>\n      <point x=\"450\" y=\"1367\"/>\n      <point x=\"450\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"1477\"/>\n      <point x=\"405\" y=\"1522\"/>\n      <point x=\"350\" y=\"1522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"1522\"/>\n      <point x=\"250\" y=\"1477\"/>\n      <point x=\"250\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"1367\"/>\n      <point x=\"295\" y=\"1323\"/>\n    </contour>\n    <contour>\n      <point x=\"889\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"1323\"/>\n      <point x=\"989\" y=\"1367\"/>\n      <point x=\"989\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"989\" y=\"1477\"/>\n      <point x=\"944\" y=\"1522\"/>\n      <point x=\"889\" y=\"1522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"1522\"/>\n      <point x=\"789\" y=\"1477\"/>\n      <point x=\"789\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"1367\"/>\n      <point x=\"834\" y=\"1323\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ij_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ij_acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"270\" y=\"-480\" type=\"line\"/>\n      <point x=\"422\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"-439\"/>\n      <point x=\"945\" y=\"-284\"/>\n      <point x=\"940\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"384\" type=\"line\"/>\n      <point x=\"842\" y=\"384\" type=\"line\"/>\n      <point x=\"846\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"-227\"/>\n      <point x=\"724\" y=\"-352\"/>\n      <point x=\"442\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"-394\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"303\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"1060\" type=\"line\"/>\n      <point x=\"303\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"842\" y=\"350\" type=\"line\"/>\n      <point x=\"936\" y=\"350\" type=\"line\"/>\n      <point x=\"936\" y=\"1060\" type=\"line\"/>\n      <point x=\"842\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <component base=\"acutecomb\" xOffset=\"379\"/>\n    <component base=\"acutecomb\" xOffset=\"-150\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/imacron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"imacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E3\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/imacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"imacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012B\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"macroncomb\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/increment.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"increment\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2206\"/>\n  <outline>\n    <component base=\"Delta\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/infinity.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"infinity\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221E\"/>\n  <outline>\n    <contour>\n      <point x=\"369\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"344\"/>\n      <point x=\"569\" y=\"432\"/>\n      <point x=\"615\" y=\"600\" type=\"curve\"/>\n      <point x=\"585\" y=\"600\" type=\"line\"/>\n      <point x=\"631\" y=\"432\"/>\n      <point x=\"712\" y=\"344\"/>\n      <point x=\"831\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"993\" y=\"344\"/>\n      <point x=\"1099\" y=\"488\"/>\n      <point x=\"1099\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"931\"/>\n      <point x=\"993\" y=\"1070\"/>\n      <point x=\"831\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"1070\"/>\n      <point x=\"631\" y=\"982\"/>\n      <point x=\"585\" y=\"813\" type=\"curve\"/>\n      <point x=\"615\" y=\"813\" type=\"line\"/>\n      <point x=\"569\" y=\"982\"/>\n      <point x=\"488\" y=\"1070\"/>\n      <point x=\"369\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"207\" y=\"1070\"/>\n      <point x=\"101\" y=\"931\"/>\n      <point x=\"101\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"101\" y=\"488\"/>\n      <point x=\"207\" y=\"344\"/>\n    </contour>\n    <contour>\n      <point x=\"368\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"436\"/>\n      <point x=\"197\" y=\"545\"/>\n      <point x=\"197\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"197\" y=\"872\"/>\n      <point x=\"265\" y=\"978\"/>\n      <point x=\"368\" y=\"978\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"978\"/>\n      <point x=\"551\" y=\"844\"/>\n      <point x=\"568\" y=\"670\" type=\"curve\"/>\n      <point x=\"568\" y=\"741\" type=\"line\"/>\n      <point x=\"551\" y=\"573\"/>\n      <point x=\"484\" y=\"436\"/>\n    </contour>\n    <contour>\n      <point x=\"831\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"436\"/>\n      <point x=\"649\" y=\"573\"/>\n      <point x=\"631\" y=\"741\" type=\"curve\"/>\n      <point x=\"631\" y=\"670\" type=\"line\"/>\n      <point x=\"649\" y=\"844\"/>\n      <point x=\"715\" y=\"978\"/>\n      <point x=\"831\" y=\"978\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"978\"/>\n      <point x=\"1003\" y=\"872\"/>\n      <point x=\"1003\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"545\"/>\n      <point x=\"935\" y=\"436\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/integral.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integral\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"222B\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"350\" type=\"line\"/>\n      <point x=\"647\" y=\"350\" type=\"line\"/>\n      <point x=\"647\" y=\"1020\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1245\"/>\n      <point x=\"724\" y=\"1348\"/>\n      <point x=\"892\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"1348\"/>\n      <point x=\"1008\" y=\"1344\"/>\n      <point x=\"1072\" y=\"1334\" type=\"curve\"/>\n      <point x=\"1094\" y=\"1420\" type=\"line\"/>\n      <point x=\"1032\" y=\"1434\"/>\n      <point x=\"971\" y=\"1440\"/>\n      <point x=\"898\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"1440\"/>\n      <point x=\"553\" y=\"1305\"/>\n      <point x=\"553\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"168\" y=\"-476\" type=\"line\"/>\n      <point x=\"251\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"527\" y=\"-441\"/>\n      <point x=\"647\" y=\"-265\"/>\n      <point x=\"647\" y=\"14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"607\" type=\"line\"/>\n      <point x=\"553\" y=\"607\" type=\"line\"/>\n      <point x=\"553\" y=\"-18\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"-223\"/>\n      <point x=\"468\" y=\"-356\"/>\n      <point x=\"271\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"-390\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/integralbt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integralbt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2321\"/>\n  <outline>\n    <contour>\n      <point x=\"168\" y=\"-476\" type=\"line\"/>\n      <point x=\"251\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"527\" y=\"-441\"/>\n      <point x=\"647\" y=\"-265\"/>\n      <point x=\"647\" y=\"14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"-18\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"-223\"/>\n      <point x=\"468\" y=\"-356\"/>\n      <point x=\"271\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"-390\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/integraltp.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integraltp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2320\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-750\" type=\"line\"/>\n      <point x=\"647\" y=\"-750\" type=\"line\"/>\n      <point x=\"647\" y=\"1020\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1245\"/>\n      <point x=\"733\" y=\"1348\"/>\n      <point x=\"922\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"1348\"/>\n      <point x=\"1038\" y=\"1344\"/>\n      <point x=\"1102\" y=\"1334\" type=\"curve\"/>\n      <point x=\"1124\" y=\"1420\" type=\"line\"/>\n      <point x=\"1062\" y=\"1434\"/>\n      <point x=\"1001\" y=\"1440\"/>\n      <point x=\"928\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1440\"/>\n      <point x=\"553\" y=\"1305\"/>\n      <point x=\"553\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/intersection.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"intersection\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2229\"/>\n  <outline>\n    <contour>\n      <point x=\"160\" y=\"0\" type=\"line\"/>\n      <point x=\"254\" y=\"0\" type=\"line\"/>\n      <point x=\"254\" y=\"640\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"873\"/>\n      <point x=\"369\" y=\"988\"/>\n      <point x=\"600\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"988\"/>\n      <point x=\"946\" y=\"873\"/>\n      <point x=\"946\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"0\" type=\"line\"/>\n      <point x=\"1040\" y=\"0\" type=\"line\"/>\n      <point x=\"1040\" y=\"640\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"935\"/>\n      <point x=\"894\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"1080\"/>\n      <point x=\"160\" y=\"935\"/>\n      <point x=\"160\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/inverseB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"inverseBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D8\"/>\n  <note>\ninvbullet\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"400\"/>\n      <point x=\"304\" y=\"518\"/>\n      <point x=\"304\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"874\"/>\n      <point x=\"422\" y=\"992\"/>\n      <point x=\"600\" y=\"992\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"992\"/>\n      <point x=\"896\" y=\"874\"/>\n      <point x=\"896\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"518\"/>\n      <point x=\"778\" y=\"400\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/inverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"inverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D9\"/>\n  <note>\ninvcircle\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"185\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"916\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"277\"/>\n      <point x=\"1029\" y=\"449\"/>\n      <point x=\"1029\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"971\"/>\n      <point x=\"859\" y=\"1143\"/>\n      <point x=\"600\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"1143\"/>\n      <point x=\"171\" y=\"971\"/>\n      <point x=\"171\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"171\" y=\"449\"/>\n      <point x=\"341\" y=\"277\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/io-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"io-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0451\"/>\n  <outline>\n    <component base=\"ie-cy\"/>\n    <component base=\"dieresiscomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012F\"/>\n  <anchor x=\"670\" y=\"-424\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"678\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"-424\"/>\n      <point x=\"740\" y=\"-423\"/>\n      <point x=\"772\" y=\"-415\" type=\"curve\"/>\n      <point x=\"779\" y=\"-332\" type=\"line\"/>\n      <point x=\"752\" y=\"-335\"/>\n      <point x=\"725\" y=\"-337\"/>\n      <point x=\"704\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"-337\"/>\n      <point x=\"542\" y=\"-290\"/>\n      <point x=\"542\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"-87\"/>\n      <point x=\"635\" y=\"0\"/>\n      <point x=\"796\" y=\"0\" type=\"curve\"/>\n      <point x=\"671\" y=\"32\" type=\"line\"/>\n      <point x=\"571\" y=\"50\" type=\"line\"/>\n      <point x=\"571\" y=\"-10\" type=\"line\"/>\n      <point x=\"493\" y=\"-48\"/>\n      <point x=\"448\" y=\"-134\"/>\n      <point x=\"448\" y=\"-218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"-349\"/>\n      <point x=\"532\" y=\"-424\"/>\n    </contour>\n    <component base=\"i\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iota-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iota-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0269\"/>\n  <outline>\n    <component base=\"iota\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iota.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iota\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B9\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"536\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"834\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"-20\"/>\n      <point x=\"969\" y=\"-8\"/>\n      <point x=\"1040\" y=\"22\" type=\"curve\"/>\n      <point x=\"1026\" y=\"114\" type=\"line\"/>\n      <point x=\"947\" y=\"88\"/>\n      <point x=\"888\" y=\"76\"/>\n      <point x=\"834\" y=\"76\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"76\"/>\n      <point x=\"583\" y=\"172\"/>\n      <point x=\"583\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"583\" y=\"1060\" type=\"line\"/>\n      <point x=\"489\" y=\"1060\" type=\"line\"/>\n      <point x=\"489\" y=\"370\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"103\"/>\n      <point x=\"597\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"970\" type=\"line\"/>\n      <point x=\"509\" y=\"970\" type=\"line\"/>\n      <point x=\"509\" y=\"1060\" type=\"line\"/>\n      <point x=\"154\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iotadieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotadieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CA\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-62\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iotadieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotadieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0390\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"dieresistonos\" xOffset=\"-42\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iotatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AF\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"tonos\" xOffset=\"26\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/itilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"itilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0129\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"tildecomb\" xOffset=\"57\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iu-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044E\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"570\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"773\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"-20\"/>\n      <point x=\"1100\" y=\"141\"/>\n      <point x=\"1100\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"913\"/>\n      <point x=\"1003\" y=\"1080\"/>\n      <point x=\"773\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"1080\"/>\n      <point x=\"446\" y=\"913\"/>\n      <point x=\"446\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"141\"/>\n      <point x=\"543\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"134\" y=\"0\" type=\"line\"/>\n      <point x=\"228\" y=\"0\" type=\"line\"/>\n      <point x=\"228\" y=\"1060\" type=\"line\"/>\n      <point x=\"134\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"182\" y=\"482\" type=\"line\"/>\n      <point x=\"513\" y=\"482\" type=\"line\"/>\n      <point x=\"513\" y=\"572\" type=\"line\"/>\n      <point x=\"182\" y=\"572\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"773\" y=\"56\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"56\"/>\n      <point x=\"542\" y=\"194\"/>\n      <point x=\"542\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"860\"/>\n      <point x=\"612\" y=\"1004\"/>\n      <point x=\"773\" y=\"1004\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"1004\"/>\n      <point x=\"1004\" y=\"860\"/>\n      <point x=\"1004\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"194\"/>\n      <point x=\"934\" y=\"56\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/iu-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"773\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"-20\"/>\n      <point x=\"1100\" y=\"141\"/>\n      <point x=\"1100\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"913\"/>\n      <point x=\"1003\" y=\"1080\"/>\n      <point x=\"773\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"1080\"/>\n      <point x=\"446\" y=\"913\"/>\n      <point x=\"446\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"141\"/>\n      <point x=\"543\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"134\" y=\"0\" type=\"line\"/>\n      <point x=\"228\" y=\"0\" type=\"line\"/>\n      <point x=\"228\" y=\"1500\" type=\"line\"/>\n      <point x=\"134\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"182\" y=\"482\" type=\"line\"/>\n      <point x=\"513\" y=\"482\" type=\"line\"/>\n      <point x=\"513\" y=\"572\" type=\"line\"/>\n      <point x=\"182\" y=\"572\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"773\" y=\"56\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"56\"/>\n      <point x=\"542\" y=\"194\"/>\n      <point x=\"542\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"860\"/>\n      <point x=\"612\" y=\"1004\"/>\n      <point x=\"773\" y=\"1004\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"1004\"/>\n      <point x=\"1004\" y=\"860\"/>\n      <point x=\"1004\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"194\"/>\n      <point x=\"934\" y=\"56\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/j.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"j\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006A\"/>\n  <anchor x=\"558\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"798\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"198\" y=\"-480\" type=\"line\"/>\n      <point x=\"350\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"-439\"/>\n      <point x=\"864\" y=\"-284\"/>\n      <point x=\"864\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"384\" type=\"line\"/>\n      <point x=\"770\" y=\"384\" type=\"line\"/>\n      <point x=\"770\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"-227\"/>\n      <point x=\"652\" y=\"-352\"/>\n      <point x=\"370\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"194\" y=\"-394\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"282\" y=\"970\" type=\"line\"/>\n      <point x=\"786\" y=\"970\" type=\"line\"/>\n      <point x=\"786\" y=\"1060\" type=\"line\"/>\n      <point x=\"282\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"770\" y=\"350\" type=\"line\"/>\n      <point x=\"864\" y=\"350\" type=\"line\"/>\n      <point x=\"864\" y=\"1060\" type=\"line\"/>\n      <point x=\"770\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"798\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"1323\"/>\n      <point x=\"898\" y=\"1367\"/>\n      <point x=\"898\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"1477\"/>\n      <point x=\"853\" y=\"1522\"/>\n      <point x=\"798\" y=\"1522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"1522\"/>\n      <point x=\"698\" y=\"1477\"/>\n      <point x=\"698\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"1367\"/>\n      <point x=\"743\" y=\"1323\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"acutecomb\" xOffset=\"307\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01F0\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"caroncomb\" xOffset=\"217\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0135\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"circumflexcomb\" xOffset=\"217\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jdotless.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jdotless\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0237\"/>\n  <anchor x=\"558\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"817\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"198\" y=\"-480\" type=\"line\"/>\n      <point x=\"350\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"-439\"/>\n      <point x=\"873\" y=\"-284\"/>\n      <point x=\"868\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"384\" type=\"line\"/>\n      <point x=\"770\" y=\"384\" type=\"line\"/>\n      <point x=\"774\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"-227\"/>\n      <point x=\"652\" y=\"-352\"/>\n      <point x=\"370\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"194\" y=\"-394\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"282\" y=\"970\" type=\"line\"/>\n      <point x=\"786\" y=\"970\" type=\"line\"/>\n      <point x=\"786\" y=\"1060\" type=\"line\"/>\n      <point x=\"282\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"770\" y=\"350\" type=\"line\"/>\n      <point x=\"864\" y=\"350\" type=\"line\"/>\n      <point x=\"864\" y=\"1060\" type=\"line\"/>\n      <point x=\"770\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"je-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0458\"/>\n  <outline>\n    <component base=\"j\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeem-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeem-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"dotcenter-ar\" xOffset=\"15\" yOffset=\"-392\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeem-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeem-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062C\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"dotcenter-ar\" xOffset=\"62\" yOffset=\"-364\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeem-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeem-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeem-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeem-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeemT_wodotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeemTwodotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jeem-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeemT_wodotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeemTwodotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A2\"/>\n  <outline>\n    <component base=\"jeem-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"372\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeemT_wodotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeemTwodotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jeem-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"342\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeemT_wodotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeemTwodotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jeem-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-34\" yOffset=\"342\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"80\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/jeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0698\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"170\" yOffset=\"113\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/k.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"k\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006B\"/>\n  <anchor x=\"620\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"229\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"212\" y=\"432\" type=\"line\"/>\n      <point x=\"370\" y=\"432\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"432\"/>\n      <point x=\"980\" y=\"620\"/>\n      <point x=\"1048\" y=\"1060\" type=\"curve\"/>\n      <point x=\"948\" y=\"1060\" type=\"line\"/>\n      <point x=\"883\" y=\"666\"/>\n      <point x=\"725\" y=\"522\"/>\n      <point x=\"350\" y=\"522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"522\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"1500\" type=\"line\"/>\n      <point x=\"184\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1001\" y=\"0\" type=\"line\"/>\n      <point x=\"1116\" y=\"0\" type=\"line\"/>\n      <point x=\"776\" y=\"598\" type=\"line\"/>\n      <point x=\"698\" y=\"546\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043A\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"534\" type=\"line\"/>\n      <point x=\"650\" y=\"534\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"534\"/>\n      <point x=\"783\" y=\"575\"/>\n      <point x=\"817\" y=\"657\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"926\" y=\"921\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"957\"/>\n      <point x=\"971\" y=\"975\"/>\n      <point x=\"1015\" y=\"975\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"975\" type=\"line\"/>\n      <point x=\"1053\" y=\"1065\" type=\"line\"/>\n      <point x=\"1010\" y=\"1065\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"1065\"/>\n      <point x=\"869\" y=\"1033\"/>\n      <point x=\"842\" y=\"968\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"605\"/>\n      <point x=\"653\" y=\"575\"/>\n      <point x=\"596\" y=\"575\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"182\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"1060\" type=\"line\"/>\n      <point x=\"182\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"261\" y=\"485\" type=\"line\"/>\n      <point x=\"654\" y=\"485\" type=\"line\"/>\n      <point x=\"654\" y=\"575\" type=\"line\"/>\n      <point x=\"261\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1010\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"-5\" type=\"line\"/>\n      <point x=\"1053\" y=\"85\" type=\"line\"/>\n      <point x=\"1015\" y=\"85\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"85\"/>\n      <point x=\"941\" y=\"103\"/>\n      <point x=\"926\" y=\"139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"403\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"485\"/>\n      <point x=\"727\" y=\"526\"/>\n      <point x=\"650\" y=\"526\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"596\" y=\"526\" type=\"line\"/>\n      <point x=\"596\" y=\"485\" type=\"line\"/>\n      <point x=\"653\" y=\"485\"/>\n      <point x=\"693\" y=\"455\"/>\n      <point x=\"718\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"92\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"27\"/>\n      <point x=\"924\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ka-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"239\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"606\" y=\"534\" type=\"line\"/>\n      <point x=\"660\" y=\"534\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"737\" y=\"534\"/>\n      <point x=\"793\" y=\"575\"/>\n      <point x=\"827\" y=\"657\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"921\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"957\"/>\n      <point x=\"981\" y=\"975\"/>\n      <point x=\"1025\" y=\"975\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1063\" y=\"975\" type=\"line\"/>\n      <point x=\"1063\" y=\"1065\" type=\"line\"/>\n      <point x=\"1020\" y=\"1065\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"1065\"/>\n      <point x=\"879\" y=\"1033\"/>\n      <point x=\"852\" y=\"968\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"605\"/>\n      <point x=\"663\" y=\"575\"/>\n      <point x=\"606\" y=\"575\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"1500\" type=\"line\"/>\n      <point x=\"192\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"271\" y=\"485\" type=\"line\"/>\n      <point x=\"664\" y=\"485\" type=\"line\"/>\n      <point x=\"664\" y=\"575\" type=\"line\"/>\n      <point x=\"271\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1020\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1063\" y=\"-5\" type=\"line\"/>\n      <point x=\"1063\" y=\"85\" type=\"line\"/>\n      <point x=\"1025\" y=\"85\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"85\"/>\n      <point x=\"951\" y=\"103\"/>\n      <point x=\"936\" y=\"139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"403\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"485\"/>\n      <point x=\"737\" y=\"526\"/>\n      <point x=\"660\" y=\"526\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"526\" type=\"line\"/>\n      <point x=\"606\" y=\"485\" type=\"line\"/>\n      <point x=\"663\" y=\"485\"/>\n      <point x=\"703\" y=\"455\"/>\n      <point x=\"728\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"92\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"27\"/>\n      <point x=\"934\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kadescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"049B\"/>\n  <anchor x=\"590\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"534\" type=\"line\"/>\n      <point x=\"650\" y=\"534\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"727\" y=\"534\"/>\n      <point x=\"783\" y=\"575\"/>\n      <point x=\"817\" y=\"657\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"926\" y=\"921\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"957\"/>\n      <point x=\"971\" y=\"975\"/>\n      <point x=\"1015\" y=\"975\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"975\" type=\"line\"/>\n      <point x=\"1053\" y=\"1065\" type=\"line\"/>\n      <point x=\"1010\" y=\"1065\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"1065\"/>\n      <point x=\"869\" y=\"1033\"/>\n      <point x=\"842\" y=\"968\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"605\"/>\n      <point x=\"653\" y=\"575\"/>\n      <point x=\"596\" y=\"575\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"182\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"1060\" type=\"line\"/>\n      <point x=\"182\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"261\" y=\"485\" type=\"line\"/>\n      <point x=\"654\" y=\"485\" type=\"line\"/>\n      <point x=\"654\" y=\"575\" type=\"line\"/>\n      <point x=\"261\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1038\" y=\"-270\" type=\"line\"/>\n      <point x=\"1132\" y=\"-270\" type=\"line\"/>\n      <point x=\"1132\" y=\"90\" type=\"line\"/>\n      <point x=\"1038\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1010\" y=\"-5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"-5\" type=\"line\"/>\n      <point x=\"1053\" y=\"90\" type=\"line\"/>\n      <point x=\"1015\" y=\"90\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"90\"/>\n      <point x=\"940\" y=\"106\"/>\n      <point x=\"926\" y=\"139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"403\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"485\"/>\n      <point x=\"727\" y=\"526\"/>\n      <point x=\"650\" y=\"526\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"596\" y=\"526\" type=\"line\"/>\n      <point x=\"596\" y=\"485\" type=\"line\"/>\n      <point x=\"653\" y=\"485\"/>\n      <point x=\"693\" y=\"455\"/>\n      <point x=\"718\" y=\"393\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"92\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"27\"/>\n      <point x=\"924\" y=\"-5\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"555\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"534\" y=\"1087\" name=\"top\"/>\n  <anchor x=\"536\" y=\"995\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"539\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"-3\"/>\n      <point x=\"945\" y=\"24\"/>\n      <point x=\"1009\" y=\"131\" type=\"curve\"/>\n      <point x=\"1051\" y=\"131\" type=\"line\"/>\n      <point x=\"1079\" y=\"189\"/>\n      <point x=\"1085\" y=\"259\"/>\n      <point x=\"1084\" y=\"353\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"1420\" type=\"line\"/>\n      <point x=\"977\" y=\"1420\" type=\"line\"/>\n      <point x=\"992\" y=\"403\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"996\" y=\"161\"/>\n      <point x=\"961\" y=\"91\"/>\n      <point x=\"559\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"91\"/>\n      <point x=\"106\" y=\"153\"/>\n      <point x=\"106\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"386\"/>\n      <point x=\"112\" y=\"439\"/>\n      <point x=\"122\" y=\"506\" type=\"curve\"/>\n      <point x=\"37\" y=\"506\" type=\"line\"/>\n      <point x=\"22\" y=\"440\"/>\n      <point x=\"14\" y=\"377\"/>\n      <point x=\"14\" y=\"324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"75\"/>\n      <point x=\"121\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"472\" y=\"519\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"519\"/>\n      <point x=\"688\" y=\"562\"/>\n      <point x=\"688\" y=\"646\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"695\"/>\n      <point x=\"665\" y=\"722\"/>\n      <point x=\"586\" y=\"757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"781\"/>\n      <point x=\"493\" y=\"793\"/>\n      <point x=\"493\" y=\"821\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"860\"/>\n      <point x=\"566\" y=\"890\"/>\n      <point x=\"676\" y=\"915\" type=\"curve\"/>\n      <point x=\"669\" y=\"999\" type=\"line\"/>\n      <point x=\"460\" y=\"951\"/>\n      <point x=\"402\" y=\"876\"/>\n      <point x=\"402\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"758\"/>\n      <point x=\"453\" y=\"723\"/>\n      <point x=\"514\" y=\"697\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"670\"/>\n      <point x=\"592\" y=\"662\"/>\n      <point x=\"592\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"614\"/>\n      <point x=\"534\" y=\"604\"/>\n      <point x=\"466\" y=\"604\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"604\"/>\n      <point x=\"380\" y=\"610\"/>\n      <point x=\"329\" y=\"619\" type=\"curve\"/>\n      <point x=\"334\" y=\"533\" type=\"line\"/>\n      <point x=\"370\" y=\"525\"/>\n      <point x=\"413\" y=\"519\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1270\" y=\"8\"/>\n      <point x=\"1270\" y=\"47\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1270\" y=\"78\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1101\" y=\"91\"/>\n      <point x=\"1088\" y=\"127\"/>\n      <point x=\"1084\" y=\"353\" type=\"curve\"/>\n      <point x=\"1011\" y=\"217\" type=\"line\"/>\n      <point x=\"1020\" y=\"74\"/>\n      <point x=\"1068\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0643\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"555\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"534\" y=\"1087\" name=\"top\"/>\n  <anchor x=\"536\" y=\"975\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"539\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"-3\"/>\n      <point x=\"1089\" y=\"94\"/>\n      <point x=\"1084\" y=\"403\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"1420\" type=\"line\"/>\n      <point x=\"977\" y=\"1420\" type=\"line\"/>\n      <point x=\"992\" y=\"403\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"996\" y=\"161\"/>\n      <point x=\"961\" y=\"91\"/>\n      <point x=\"559\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"91\"/>\n      <point x=\"106\" y=\"153\"/>\n      <point x=\"106\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"386\"/>\n      <point x=\"112\" y=\"439\"/>\n      <point x=\"122\" y=\"506\" type=\"curve\"/>\n      <point x=\"37\" y=\"506\" type=\"line\"/>\n      <point x=\"22\" y=\"440\"/>\n      <point x=\"14\" y=\"377\"/>\n      <point x=\"14\" y=\"324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"75\"/>\n      <point x=\"121\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"472\" y=\"519\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"519\"/>\n      <point x=\"688\" y=\"562\"/>\n      <point x=\"688\" y=\"646\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"695\"/>\n      <point x=\"665\" y=\"722\"/>\n      <point x=\"586\" y=\"757\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"781\"/>\n      <point x=\"493\" y=\"793\"/>\n      <point x=\"493\" y=\"821\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"860\"/>\n      <point x=\"566\" y=\"890\"/>\n      <point x=\"676\" y=\"915\" type=\"curve\"/>\n      <point x=\"669\" y=\"999\" type=\"line\"/>\n      <point x=\"460\" y=\"951\"/>\n      <point x=\"402\" y=\"876\"/>\n      <point x=\"402\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"758\"/>\n      <point x=\"453\" y=\"723\"/>\n      <point x=\"514\" y=\"697\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"670\"/>\n      <point x=\"592\" y=\"662\"/>\n      <point x=\"592\" y=\"642\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"614\"/>\n      <point x=\"534\" y=\"604\"/>\n      <point x=\"466\" y=\"604\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"604\"/>\n      <point x=\"380\" y=\"610\"/>\n      <point x=\"329\" y=\"619\" type=\"curve\"/>\n      <point x=\"334\" y=\"533\" type=\"line\"/>\n      <point x=\"370\" y=\"525\"/>\n      <point x=\"413\" y=\"519\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"569\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"569\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"495\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"413\" y=\"1143\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"line\"/>\n      <point x=\"369\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"-3\"/>\n      <point x=\"803\" y=\"74\"/>\n      <point x=\"803\" y=\"273\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"803\" y=\"433\"/>\n      <point x=\"666\" y=\"596\"/>\n      <point x=\"325\" y=\"967\" type=\"curve\"/>\n      <point x=\"308\" y=\"906\" type=\"line\"/>\n      <point x=\"984\" y=\"1339\" type=\"line\"/>\n      <point x=\"979\" y=\"1443\" type=\"line\"/>\n      <point x=\"277\" y=\"989\" type=\"line\"/>\n      <point x=\"263\" y=\"890\" type=\"line\"/>\n      <point x=\"541\" y=\"588\"/>\n      <point x=\"711\" y=\"400\"/>\n      <point x=\"711\" y=\"264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"138\"/>\n      <point x=\"623\" y=\"91\"/>\n      <point x=\"397\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"91\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"649\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"649\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"438\" y=\"1143\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1214\" y=\"-3\"/>\n      <point x=\"1235\" y=\"12\"/>\n      <point x=\"1235\" y=\"43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1235\" y=\"76\"/>\n      <point x=\"1221\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"91\"/>\n      <point x=\"845\" y=\"137\"/>\n      <point x=\"736\" y=\"309\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"942\" type=\"line\"/>\n      <point x=\"316\" y=\"886\" type=\"line\"/>\n      <point x=\"1005\" y=\"1339\" type=\"line\"/>\n      <point x=\"1000\" y=\"1443\" type=\"line\"/>\n      <point x=\"285\" y=\"969\" type=\"line\"/>\n      <point x=\"271\" y=\"870\" type=\"line\"/>\n      <point x=\"667\" y=\"246\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"46\"/>\n      <point x=\"870\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"line\"/>\n      <point x=\"388\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"-3\"/>\n      <point x=\"683\" y=\"65\"/>\n      <point x=\"721\" y=\"141\" type=\"curve\"/>\n      <point x=\"756\" y=\"141\" type=\"line\"/>\n      <point x=\"776\" y=\"226\" type=\"line\"/>\n      <point x=\"688\" y=\"254\" type=\"line\"/>\n      <point x=\"647\" y=\"159\"/>\n      <point x=\"609\" y=\"90\"/>\n      <point x=\"396\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaf-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DB\"/>\n  <anchor x=\"440\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"803\" y=\"0\" type=\"line\"/>\n      <point x=\"902\" y=\"0\" type=\"line\"/>\n      <point x=\"902\" y=\"829\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"1065\"/>\n      <point x=\"759\" y=\"1200\"/>\n      <point x=\"521\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1200\"/>\n      <point x=\"198\" y=\"1230\"/>\n      <point x=\"168\" y=\"1253\" type=\"curve\"/>\n      <point x=\"114\" y=\"1174\" type=\"line\"/>\n      <point x=\"149\" y=\"1143\"/>\n      <point x=\"192\" y=\"1101\"/>\n      <point x=\"269\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"1101\"/>\n      <point x=\"803\" y=\"997\"/>\n      <point x=\"803\" y=\"809\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"135\" y=\"0\" type=\"line\"/>\n      <point x=\"889\" y=\"0\" type=\"line\"/>\n      <point x=\"889\" y=\"97\" type=\"line\"/>\n      <point x=\"135\" y=\"97\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-64\" yOffset=\"453\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AC\"/>\n  <guideline x=\"558\" y=\"663\" angle=\"0\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-64\" yOffset=\"433\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-187\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-162\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"468\" yOffset=\"1126\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>keheh-ar.fina</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AB\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"456\" yOffset=\"1126\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafR_ing-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafRing-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"569\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"ringArabic\" xOffset=\"206\" yOffset=\"1126\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>kaf-ar.init</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafR_ing-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafRing-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"649\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"ringArabic\" xOffset=\"238\" yOffset=\"1126\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>keheh-ar.medi</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"563\" y=\"-598\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-45\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AE\"/>\n  <anchor x=\"563\" y=\"-598\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-45\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"583\" y=\"-598\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-31\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"653\" y=\"-598\" name=\"bottom\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"49\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"545.9\" y=\"1381.8\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-4\" yOffset=\"516\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077F\"/>\n  <anchor x=\"545.9\" y=\"1381.8\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-4\" yOffset=\"496\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"409\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-109\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"438.9\" y=\"1493.8\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-84\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB3B\"/>\n  <outline>\n    <component base=\"kaf-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-160\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"12\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"326\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"17\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"-3\"/>\n      <point x=\"979\" y=\"47\"/>\n      <point x=\"979\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"472\"/>\n      <point x=\"885\" y=\"542\"/>\n      <point x=\"675\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"542\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"87\" y=\"542\"/>\n      <point x=\"39\" y=\"561\"/>\n      <point x=\"39\" y=\"624\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"39\" y=\"718\"/>\n      <point x=\"209\" y=\"833\"/>\n      <point x=\"543\" y=\"1025\" type=\"curve\"/>\n      <point x=\"536\" y=\"1122\" type=\"line\"/>\n      <point x=\"158\" y=\"909\"/>\n      <point x=\"-53\" y=\"762\"/>\n      <point x=\"-53\" y=\"614\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-53\" y=\"511\"/>\n      <point x=\"-6\" y=\"450\"/>\n      <point x=\"265\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"846\" y=\"450\"/>\n      <point x=\"887\" y=\"402\"/>\n      <point x=\"887\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"138\"/>\n      <point x=\"714\" y=\"91\"/>\n      <point x=\"30\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-653\" y=\"91\"/>\n      <point x=\"-719\" y=\"179\"/>\n      <point x=\"-719\" y=\"394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-719\" y=\"476\"/>\n      <point x=\"-705\" y=\"559\"/>\n      <point x=\"-693\" y=\"626\" type=\"curve\"/>\n      <point x=\"-778\" y=\"626\" type=\"line\"/>\n      <point x=\"-796\" y=\"560\"/>\n      <point x=\"-811\" y=\"457\"/>\n      <point x=\"-811\" y=\"374\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-811\" y=\"128\"/>\n      <point x=\"-728\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"12\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"326\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-3\"/>\n      <point x=\"1276\" y=\"13\"/>\n      <point x=\"1276\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1276\" y=\"76\"/>\n      <point x=\"1263\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"91\"/>\n      <point x=\"849\" y=\"91\"/>\n      <point x=\"712\" y=\"102\" type=\"curve\"/>\n      <point x=\"671\" y=\"49\" type=\"line\"/>\n      <point x=\"734\" y=\"49\" type=\"line\"/>\n      <point x=\"752\" y=\"10\"/>\n      <point x=\"776\" y=\"-3\"/>\n    </contour>\n    <component base=\"kafswash-ar.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-3\"/>\n      <point x=\"1276\" y=\"13\"/>\n      <point x=\"1276\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1276\" y=\"76\"/>\n      <point x=\"1263\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"91\"/>\n      <point x=\"989\" y=\"91\"/>\n      <point x=\"922\" y=\"102\" type=\"curve\"/>\n      <point x=\"881\" y=\"49\" type=\"line\"/>\n      <point x=\"944\" y=\"49\" type=\"line\"/>\n      <point x=\"962\" y=\"10\"/>\n      <point x=\"986\" y=\"-3\"/>\n    </contour>\n    <component base=\"kafswash-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=kafswash-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AA\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"596\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"489\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"977\" y=\"-2\"/>\n      <point x=\"1174\" y=\"123\"/>\n      <point x=\"1174\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1174\" y=\"472\"/>\n      <point x=\"1080\" y=\"542\"/>\n      <point x=\"870\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"542\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"542\"/>\n      <point x=\"464\" y=\"561\"/>\n      <point x=\"464\" y=\"624\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"728\"/>\n      <point x=\"584\" y=\"843\"/>\n      <point x=\"908\" y=\"1045\" type=\"curve\"/>\n      <point x=\"901\" y=\"1142\" type=\"line\"/>\n      <point x=\"533\" y=\"919\"/>\n      <point x=\"372\" y=\"772\"/>\n      <point x=\"372\" y=\"614\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"511\"/>\n      <point x=\"419\" y=\"450\"/>\n      <point x=\"690\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"450\"/>\n      <point x=\"1082\" y=\"402\"/>\n      <point x=\"1082\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"181\"/>\n      <point x=\"930\" y=\"91\"/>\n      <point x=\"509\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"91\"/>\n      <point x=\"106\" y=\"153\"/>\n      <point x=\"106\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"396\"/>\n      <point x=\"112\" y=\"441\"/>\n      <point x=\"122\" y=\"506\" type=\"curve\"/>\n      <point x=\"37\" y=\"506\" type=\"line\"/>\n      <point x=\"22\" y=\"440\"/>\n      <point x=\"14\" y=\"387\"/>\n      <point x=\"14\" y=\"324\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"75\"/>\n      <point x=\"121\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"446\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-11\" y=\"-3\" type=\"line\"/>\n      <point x=\"319\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"-3\"/>\n      <point x=\"1114\" y=\"123\"/>\n      <point x=\"1114\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1114\" y=\"472\"/>\n      <point x=\"1020\" y=\"542\"/>\n      <point x=\"810\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"542\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"222\" y=\"542\"/>\n      <point x=\"174\" y=\"561\"/>\n      <point x=\"174\" y=\"624\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"174\" y=\"718\"/>\n      <point x=\"344\" y=\"833\"/>\n      <point x=\"678\" y=\"1025\" type=\"curve\"/>\n      <point x=\"671\" y=\"1122\" type=\"line\"/>\n      <point x=\"293\" y=\"909\"/>\n      <point x=\"82\" y=\"762\"/>\n      <point x=\"82\" y=\"614\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"82\" y=\"511\"/>\n      <point x=\"129\" y=\"450\"/>\n      <point x=\"400\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"450\"/>\n      <point x=\"1022\" y=\"402\"/>\n      <point x=\"1022\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"181\"/>\n      <point x=\"870\" y=\"91\"/>\n      <point x=\"339\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"91\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"446\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-11\" y=\"-3\" type=\"line\"/>\n      <point x=\"319\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"807\" y=\"-3\"/>\n      <point x=\"1004\" y=\"123\"/>\n      <point x=\"1004\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"472\"/>\n      <point x=\"910\" y=\"542\"/>\n      <point x=\"700\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"505\" y=\"542\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"542\"/>\n      <point x=\"294\" y=\"561\"/>\n      <point x=\"294\" y=\"624\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"294\" y=\"728\"/>\n      <point x=\"414\" y=\"843\"/>\n      <point x=\"738\" y=\"1045\" type=\"curve\"/>\n      <point x=\"731\" y=\"1142\" type=\"line\"/>\n      <point x=\"363\" y=\"919\"/>\n      <point x=\"202\" y=\"772\"/>\n      <point x=\"202\" y=\"614\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"202\" y=\"511\"/>\n      <point x=\"249\" y=\"450\"/>\n      <point x=\"520\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"450\"/>\n      <point x=\"912\" y=\"402\"/>\n      <point x=\"912\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"181\"/>\n      <point x=\"760\" y=\"91\"/>\n      <point x=\"339\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"91\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.medi.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.medi.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"446\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-3\"/>\n      <point x=\"1276\" y=\"13\"/>\n      <point x=\"1276\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1276\" y=\"76\"/>\n      <point x=\"1263\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"91\"/>\n      <point x=\"899\" y=\"91\"/>\n      <point x=\"832\" y=\"102\" type=\"curve\"/>\n      <point x=\"791\" y=\"49\" type=\"line\"/>\n      <point x=\"854\" y=\"49\" type=\"line\"/>\n      <point x=\"872\" y=\"10\"/>\n      <point x=\"896\" y=\"-3\"/>\n    </contour>\n    <component base=\"kafswash-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>kafswash-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kafswash-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"436\" y=\"1057\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-3\"/>\n      <point x=\"1276\" y=\"13\"/>\n      <point x=\"1276\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1276\" y=\"76\"/>\n      <point x=\"1263\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"91\"/>\n      <point x=\"816\" y=\"91\"/>\n      <point x=\"749\" y=\"102\" type=\"curve\"/>\n      <point x=\"708\" y=\"49\" type=\"line\"/>\n      <point x=\"771\" y=\"49\" type=\"line\"/>\n      <point x=\"789\" y=\"10\"/>\n      <point x=\"813\" y=\"-3\"/>\n    </contour>\n    <component base=\"kafswash-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>kafswash-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kaiS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaiSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03D7\"/>\n  <anchor x=\"590\" y=\"-280\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"222\" y=\"0\" type=\"line\"/>\n      <point x=\"1095\" y=\"1030\" type=\"line\"/>\n      <point x=\"1030\" y=\"1080\" type=\"line\"/>\n      <point x=\"568\" y=\"541\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"435\" y=\"386\"/>\n      <point x=\"345\" y=\"278\"/>\n      <point x=\"288\" y=\"171\" type=\"curve\"/>\n      <point x=\"184\" y=\"171\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"182\" y=\"0\" type=\"line\"/>\n      <point x=\"222\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"107\" type=\"line\"/>\n      <point x=\"276\" y=\"1060\" type=\"line\"/>\n      <point x=\"182\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"987\" y=\"-395\" type=\"line\"/>\n      <point x=\"1081\" y=\"-395\" type=\"line\"/>\n      <point x=\"1081\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"48\"/>\n      <point x=\"1068\" y=\"95\"/>\n      <point x=\"1036\" y=\"146\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"668\" type=\"line\"/>\n      <point x=\"647\" y=\"608\" type=\"line\"/>\n      <point x=\"947\" y=\"120\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"977\" y=\"71\"/>\n      <point x=\"987\" y=\"34\"/>\n      <point x=\"987\" y=\"-18\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kappa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kappa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BA\"/>\n  <guideline x=\"802\" y=\"714\" angle=\"231.3928\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"606\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"222\" y=\"0\" type=\"line\"/>\n      <point x=\"1095\" y=\"1030\" type=\"line\"/>\n      <point x=\"1030\" y=\"1080\" type=\"line\"/>\n      <point x=\"568\" y=\"541\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"435\" y=\"386\"/>\n      <point x=\"345\" y=\"278\"/>\n      <point x=\"288\" y=\"171\" type=\"curve\"/>\n      <point x=\"184\" y=\"171\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"182\" y=\"0\" type=\"line\"/>\n      <point x=\"222\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"107\" type=\"line\"/>\n      <point x=\"276\" y=\"1060\" type=\"line\"/>\n      <point x=\"182\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1020\" y=\"0\" type=\"line\"/>\n      <point x=\"1126\" y=\"0\" type=\"line\"/>\n      <point x=\"719\" y=\"668\" type=\"line\"/>\n      <point x=\"647\" y=\"608\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kashida-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kashida-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0640\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"line\"/>\n      <point x=\"1188\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1265\" y=\"11\"/>\n      <point x=\"1265\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"76\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"91\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kasra-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kasra-ar\" format=\"2\">\n  <unicode hex=\"0650\"/>\n  <anchor x=\"598\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-237\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_fatha-ar\" xOffset=\"3\" yOffset=\"-1568\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fatha-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kasratan-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kasratan-ar\" format=\"2\">\n  <unicode hex=\"064D\"/>\n  <anchor x=\"608\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-497\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_fatha-ar\" yScale=\"0.9999\" yOffset=\"-1799\"/>\n    <component base=\"_fatha-ar\" yScale=\"0.9999\" yOffset=\"-1599\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_fatha-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0137\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E33\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/keheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"keheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"555\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"654\" y=\"1143\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1223\" y=\"-3\"/>\n      <point x=\"1245\" y=\"13\"/>\n      <point x=\"1245\" y=\"47\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1245\" y=\"76\"/>\n      <point x=\"1225\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"91\"/>\n      <point x=\"1077\" y=\"137\"/>\n      <point x=\"968\" y=\"309\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"566\" y=\"942\" type=\"line\"/>\n      <point x=\"548\" y=\"886\" type=\"line\"/>\n      <point x=\"1237\" y=\"1339\" type=\"line\"/>\n      <point x=\"1232\" y=\"1443\" type=\"line\"/>\n      <point x=\"517\" y=\"969\" type=\"line\"/>\n      <point x=\"503\" y=\"870\" type=\"line\"/>\n      <point x=\"899\" y=\"246\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"46\"/>\n      <point x=\"1082\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"489\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"-3\"/>\n      <point x=\"896\" y=\"28\"/>\n      <point x=\"953\" y=\"141\" type=\"curve\"/>\n      <point x=\"988\" y=\"141\" type=\"line\"/>\n      <point x=\"998\" y=\"229\" type=\"line\"/>\n      <point x=\"920\" y=\"254\" type=\"line\"/>\n      <point x=\"861\" y=\"117\"/>\n      <point x=\"827\" y=\"91\"/>\n      <point x=\"509\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"91\"/>\n      <point x=\"106\" y=\"163\"/>\n      <point x=\"106\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"416\"/>\n      <point x=\"117\" y=\"481\"/>\n      <point x=\"132\" y=\"566\" type=\"curve\"/>\n      <point x=\"47\" y=\"566\" type=\"line\"/>\n      <point x=\"27\" y=\"480\"/>\n      <point x=\"14\" y=\"407\"/>\n      <point x=\"14\" y=\"334\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"85\"/>\n      <point x=\"121\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/keheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"keheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A9\"/>\n  <anchor x=\"555\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"555\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"525\" y=\"1284\" name=\"top\"/>\n  <anchor x=\"654\" y=\"1143\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"539\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"855\" y=\"-3\"/>\n      <point x=\"1051\" y=\"54\"/>\n      <point x=\"1051\" y=\"273\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"453\"/>\n      <point x=\"914\" y=\"596\"/>\n      <point x=\"573\" y=\"967\" type=\"curve\"/>\n      <point x=\"556\" y=\"906\" type=\"line\"/>\n      <point x=\"1222\" y=\"1339\" type=\"line\"/>\n      <point x=\"1217\" y=\"1443\" type=\"line\"/>\n      <point x=\"525\" y=\"989\" type=\"line\"/>\n      <point x=\"511\" y=\"890\" type=\"line\"/>\n      <point x=\"789\" y=\"588\"/>\n      <point x=\"959\" y=\"420\"/>\n      <point x=\"959\" y=\"264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"118\"/>\n      <point x=\"795\" y=\"91\"/>\n      <point x=\"559\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"91\"/>\n      <point x=\"106\" y=\"163\"/>\n      <point x=\"106\" y=\"354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"416\"/>\n      <point x=\"115\" y=\"479\"/>\n      <point x=\"132\" y=\"566\" type=\"curve\"/>\n      <point x=\"47\" y=\"566\" type=\"line\"/>\n      <point x=\"25\" y=\"480\"/>\n      <point x=\"14\" y=\"407\"/>\n      <point x=\"14\" y=\"334\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"14\" y=\"85\"/>\n      <point x=\"121\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/keheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"keheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/keheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"keheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"54\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0762\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"54\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-187\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-162\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"1674\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"1.001\" xOffset=\"53\" yOffset=\"501\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0763\"/>\n  <anchor x=\"592\" y=\"1674\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"1.0001\" xOffset=\"54\" yOffset=\"501\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"362\" y=\"1674\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"1.001\" xOffset=\"-188\" yOffset=\"501\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"392\" y=\"1674\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"1.001\" xOffset=\"-163\" yOffset=\"501\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063C\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-33\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0764\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-33\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"635\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"132\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063B\"/>\n  <guideline x=\"725\" y=\"-136\" angle=\"0\"/>\n  <anchor x=\"625\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"132\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"395\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-109\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kehehTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"421\" y=\"1494\" name=\"top\"/>\n  <outline>\n    <component base=\"keheh-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-84\" yOffset=\"601\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kgreenlandic.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kgreenlandic\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0138\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"212\" y=\"432\" type=\"line\"/>\n      <point x=\"370\" y=\"432\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"432\"/>\n      <point x=\"980\" y=\"620\"/>\n      <point x=\"1048\" y=\"1060\" type=\"curve\"/>\n      <point x=\"948\" y=\"1060\" type=\"line\"/>\n      <point x=\"883\" y=\"666\"/>\n      <point x=\"725\" y=\"522\"/>\n      <point x=\"350\" y=\"522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"522\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"1060\" type=\"line\"/>\n      <point x=\"184\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1001\" y=\"0\" type=\"line\"/>\n      <point x=\"1116\" y=\"0\" type=\"line\"/>\n      <point x=\"776\" y=\"598\" type=\"line\"/>\n      <point x=\"698\" y=\"546\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/khah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"khah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"362\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/khah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"khah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062E\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"362\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/khah-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"khah-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"332\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/khah-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"khah-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"332\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kip.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kip\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AD\"/>\n  <outline>\n    <contour>\n      <point x=\"760\" y=\"625\" type=\"line\"/>\n      <point x=\"1200\" y=\"625\" type=\"line\"/>\n      <point x=\"1200\" y=\"715\" type=\"line\"/>\n      <point x=\"760\" y=\"715\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"625\" type=\"line\"/>\n      <point x=\"247\" y=\"625\" type=\"line\"/>\n      <point x=\"247\" y=\"715\" type=\"line\"/>\n      <point x=\"0\" y=\"715\" type=\"line\"/>\n    </contour>\n    <component base=\"K\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kirghizoe-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kirghizoe-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"_stroke\" xScale=\"1.001\" xOffset=\"33\" yOffset=\"-488\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_stroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kirghizoe-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kirghizoe-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C5\"/>\n  <guideline x=\"72\" y=\"-74\" angle=\"270\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"_stroke\" xScale=\"1.001\" xOffset=\"33\" yOffset=\"-488\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_stroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kirghizyu-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kirghizyu-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kirghizyu-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kirghizyu-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C9\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/kje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045C\"/>\n  <outline>\n    <component base=\"ka-cy\"/>\n    <component base=\"acutecomb\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/klinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"klinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E35\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/l.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"l\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006C\"/>\n  <anchor x=\"680\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"520\" y=\"784\" name=\"center\"/>\n  <anchor x=\"516\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"970\" y=\"1500\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"828\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"-20\"/>\n      <point x=\"974\" y=\"-11\"/>\n      <point x=\"1050\" y=\"12\" type=\"curve\"/>\n      <point x=\"1039\" y=\"101\" type=\"line\"/>\n      <point x=\"956\" y=\"81\"/>\n      <point x=\"895\" y=\"72\"/>\n      <point x=\"838\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"72\"/>\n      <point x=\"563\" y=\"164\"/>\n      <point x=\"563\" y=\"350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"1500\" type=\"line\"/>\n      <point x=\"469\" y=\"1500\" type=\"line\"/>\n      <point x=\"469\" y=\"350\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"103\"/>\n      <point x=\"588\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"1410\" type=\"line\"/>\n      <point x=\"487\" y=\"1410\" type=\"line\"/>\n      <point x=\"487\" y=\"1500\" type=\"line\"/>\n      <point x=\"122\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013A\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-23\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1275\" y=\"1\"/>\n      <point x=\"1275\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"86\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1023\" y=\"91\"/>\n      <point x=\"1005\" y=\"129\"/>\n      <point x=\"1003\" y=\"308\" type=\"curve\"/>\n      <point x=\"959\" y=\"157\" type=\"line\"/>\n      <point x=\"974\" y=\"58\"/>\n      <point x=\"1024\" y=\"-3\"/>\n    </contour>\n    <component base=\"lam-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0644\"/>\n  <anchor x=\"532\" y=\"-407\" name=\"bottom\"/>\n  <anchor x=\"533\" y=\"-337\" name=\"bottom.dot\"/>\n  <anchor x=\"947\" y=\"951\" name=\"center\"/>\n  <anchor x=\"934\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"937\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"537\" y=\"-335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"849\" y=\"-335\"/>\n      <point x=\"1013\" y=\"-221\"/>\n      <point x=\"1006\" y=\"167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"1420\" type=\"line\"/>\n      <point x=\"888\" y=\"1420\" type=\"line\"/>\n      <point x=\"914\" y=\"153\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"-131\"/>\n      <point x=\"831\" y=\"-241\"/>\n      <point x=\"551\" y=\"-241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"-241\"/>\n      <point x=\"157\" y=\"-170\"/>\n      <point x=\"157\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"157\" y=\"221\"/>\n      <point x=\"183\" y=\"348\"/>\n      <point x=\"201\" y=\"464\" type=\"curve\"/>\n      <point x=\"115\" y=\"464\" type=\"line\"/>\n      <point x=\"92\" y=\"343\"/>\n      <point x=\"65\" y=\"215\"/>\n      <point x=\"65\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"65\" y=\"-195\"/>\n      <point x=\"182\" y=\"-335\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"859\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"859\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"847\" y=\"951\" name=\"center\"/>\n  <anchor x=\"831\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"834\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"-3\"/>\n      <point x=\"919\" y=\"67\"/>\n      <point x=\"912\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"1420\" type=\"line\"/>\n      <point x=\"793\" y=\"1420\" type=\"line\"/>\n      <point x=\"820\" y=\"310\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"129\"/>\n      <point x=\"773\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-40\" y=\"91\"/>\n      <point x=\"-67\" y=\"81\"/>\n      <point x=\"-67\" y=\"43\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-67\" y=\"11\"/>\n      <point x=\"-51\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"911\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"911\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"940\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"942\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"264\" y=\"69\" type=\"line\"/>\n      <point x=\"462\" y=\"233\"/>\n      <point x=\"706\" y=\"428\"/>\n      <point x=\"870\" y=\"582\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"680\"/>\n      <point x=\"1005\" y=\"789\"/>\n      <point x=\"997\" y=\"1091\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"1420\" type=\"line\"/>\n      <point x=\"896\" y=\"1420\" type=\"line\"/>\n      <point x=\"902\" y=\"1037\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"803\"/>\n      <point x=\"883\" y=\"728\"/>\n      <point x=\"781\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"499\"/>\n      <point x=\"428\" y=\"329\"/>\n      <point x=\"207\" y=\"139\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"719\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"719\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"707\" y=\"951\" name=\"center\"/>\n  <anchor x=\"701\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"701\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"-3\"/>\n      <point x=\"632\" y=\"-1\"/>\n      <point x=\"703\" y=\"142\" type=\"curve\"/>\n      <point x=\"741\" y=\"142\" type=\"line\"/>\n      <point x=\"756\" y=\"257\" type=\"line\"/>\n      <point x=\"694\" y=\"231\" type=\"line\"/>\n      <point x=\"733\" y=\"36\"/>\n      <point x=\"812\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1246\" y=\"-3\"/>\n      <point x=\"1275\" y=\"4\"/>\n      <point x=\"1275\" y=\"48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"79\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"91\"/>\n      <point x=\"773\" y=\"127\"/>\n      <point x=\"769\" y=\"309\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"1420\" type=\"line\"/>\n      <point x=\"652\" y=\"1420\" type=\"line\"/>\n      <point x=\"672\" y=\"300\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"111\"/>\n      <point x=\"607\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-40\" y=\"91\"/>\n      <point x=\"-70\" y=\"86\"/>\n      <point x=\"-70\" y=\"48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-70\" y=\"16\"/>\n      <point x=\"-51\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"933\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"935\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"970\" y=\"951\" name=\"center\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"955\" y=\"1545\" name=\"top\"/>\n  <anchor x=\"954\" y=\"1467\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"305\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"-3\"/>\n      <point x=\"854\" y=\"54\"/>\n      <point x=\"930\" y=\"280\" type=\"curve\"/>\n      <point x=\"973\" y=\"280\" type=\"line\"/>\n      <point x=\"1009\" y=\"515\" type=\"line\"/>\n      <point x=\"940\" y=\"478\" type=\"line\"/>\n      <point x=\"948\" y=\"54\"/>\n      <point x=\"965\" y=\"-3\"/>\n      <point x=\"1190\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1253\" y=\"-3\"/>\n      <point x=\"1278\" y=\"10\"/>\n      <point x=\"1278\" y=\"47\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1278\" y=\"82\"/>\n      <point x=\"1263\" y=\"90\"/>\n      <point x=\"1200\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1059\" y=\"90\"/>\n      <point x=\"1032\" y=\"122\"/>\n      <point x=\"1028\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"1420\" type=\"line\"/>\n      <point x=\"912\" y=\"1420\" type=\"line\"/>\n      <point x=\"930\" y=\"598\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"320\"/>\n      <point x=\"831\" y=\"170\"/>\n      <point x=\"564\" y=\"122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"98\"/>\n      <point x=\"294\" y=\"98\"/>\n      <point x=\"92\" y=\"105\" type=\"curve\"/>\n      <point x=\"86\" y=\"13\" type=\"line\"/>\n      <point x=\"129\" y=\"5\"/>\n      <point x=\"181\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"411\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076A\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"411\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"311\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"400\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_bar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"171\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamBar-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"_bar\" xScale=\"0.9\" xOffset=\"434\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"414\" y=\"592\" angle=\"0\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"337\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B6\"/>\n  <guideline x=\"166\" y=\"592\" angle=\"0\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"337\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"234\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"dotabove-ar\" xOffset=\"342\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"101\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDotabove-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"dotabove-ar\" xOffset=\"354\" yOffset=\"925\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"411\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>lam-ar.fina</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A6\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"411\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"311\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"410\" yOffset=\"798\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_doublebar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"171\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar.medi</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam-ar.medi</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamDoublebar-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"_doublebar\" xScale=\"0.9\" xOffset=\"434\" yOffset=\"633\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam-ar.medi</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam-ar.medi</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"938\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"397\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B7\"/>\n  <anchor x=\"941\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"397\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"838\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"294\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"945\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"402\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"708\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"161\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsabove-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <anchor x=\"965\" y=\"2033\" name=\"top\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"414\" yOffset=\"979\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"1.001\" xOffset=\"-68\" yOffset=\"-329\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B8\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"1.001\" xOffset=\"-68\" yOffset=\"-329\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"259\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"311\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"119\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamThreedotsbelow-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"335\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"337\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B5\"/>\n  <outline>\n    <component base=\"lam-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"337\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.init\"/>\n    <component base=\"vabove-ar\" xOffset=\"234\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.init.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.init.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.init.rlig\"/>\n    <component base=\"vabove-ar\" xOffset=\"342\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam-ar.medi\"/>\n    <component base=\"vabove-ar\" xOffset=\"101\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.medi.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamVabove-ar.medi.rlig\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"lam-ar.medi.rlig\"/>\n    <component base=\"vabove-ar\" xOffset=\"354\" yOffset=\"935\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alef-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alef-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"293\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"923\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"293\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"945\" y=\"1545\" name=\"top_1\"/>\n  <anchor x=\"274\" y=\"1310\" name=\"top_2\"/>\n  <outline>\n    <contour>\n      <point x=\"305\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"-3\"/>\n      <point x=\"854\" y=\"54\"/>\n      <point x=\"930\" y=\"280\" type=\"curve\"/>\n      <point x=\"973\" y=\"280\" type=\"line\"/>\n      <point x=\"1009\" y=\"515\" type=\"line\"/>\n      <point x=\"940\" y=\"478\" type=\"line\"/>\n      <point x=\"948\" y=\"54\"/>\n      <point x=\"965\" y=\"-3\"/>\n      <point x=\"1190\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1253\" y=\"-3\"/>\n      <point x=\"1278\" y=\"10\"/>\n      <point x=\"1278\" y=\"47\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1278\" y=\"82\"/>\n      <point x=\"1263\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1059\" y=\"91\"/>\n      <point x=\"1032\" y=\"122\"/>\n      <point x=\"1028\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"1420\" type=\"line\"/>\n      <point x=\"912\" y=\"1420\" type=\"line\"/>\n      <point x=\"930\" y=\"598\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"320\"/>\n      <point x=\"831\" y=\"170\"/>\n      <point x=\"564\" y=\"122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"98\"/>\n      <point x=\"294\" y=\"98\"/>\n      <point x=\"92\" y=\"105\" type=\"curve\"/>\n      <point x=\"86\" y=\"13\" type=\"line\"/>\n      <point x=\"129\" y=\"5\"/>\n      <point x=\"181\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"795\" y=\"182\" type=\"curve\"/>\n      <point x=\"870\" y=\"242\" type=\"line\"/>\n      <point x=\"660\" y=\"581\"/>\n      <point x=\"407\" y=\"936\"/>\n      <point x=\"173\" y=\"1245\" type=\"curve\"/>\n      <point x=\"95\" y=\"1177\" type=\"line\"/>\n      <point x=\"334\" y=\"862\"/>\n      <point x=\"578\" y=\"520\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alef-ar.fina.short.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alef-ar.fina.short\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"923\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"283\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"274\" y=\"1159\" name=\"top.dot\"/>\n  <anchor x=\"945\" y=\"1545\" name=\"top_1\"/>\n  <anchor x=\"274\" y=\"1223\" name=\"top_2\"/>\n  <outline>\n    <contour>\n      <point x=\"305\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"-3\"/>\n      <point x=\"854\" y=\"54\"/>\n      <point x=\"930\" y=\"280\" type=\"curve\"/>\n      <point x=\"973\" y=\"280\" type=\"line\"/>\n      <point x=\"1009\" y=\"515\" type=\"line\"/>\n      <point x=\"940\" y=\"478\" type=\"line\"/>\n      <point x=\"948\" y=\"54\"/>\n      <point x=\"965\" y=\"-3\"/>\n      <point x=\"1190\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1253\" y=\"-3\"/>\n      <point x=\"1278\" y=\"10\"/>\n      <point x=\"1278\" y=\"47\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1278\" y=\"82\"/>\n      <point x=\"1263\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1059\" y=\"91\"/>\n      <point x=\"1032\" y=\"122\"/>\n      <point x=\"1028\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"1420\" type=\"line\"/>\n      <point x=\"912\" y=\"1420\" type=\"line\"/>\n      <point x=\"930\" y=\"598\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"320\"/>\n      <point x=\"831\" y=\"170\"/>\n      <point x=\"564\" y=\"122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"98\"/>\n      <point x=\"294\" y=\"98\"/>\n      <point x=\"92\" y=\"105\" type=\"curve\"/>\n      <point x=\"86\" y=\"13\" type=\"line\"/>\n      <point x=\"129\" y=\"5\"/>\n      <point x=\"181\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"795\" y=\"182\" type=\"curve\"/>\n      <point x=\"870\" y=\"242\" type=\"line\"/>\n      <point x=\"660\" y=\"551\"/>\n      <point x=\"437\" y=\"846\"/>\n      <point x=\"173\" y=\"1155\" type=\"curve\"/>\n      <point x=\"98\" y=\"1080\" type=\"line\"/>\n      <point x=\"367\" y=\"765\"/>\n      <point x=\"578\" y=\"490\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alef-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alef-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"343\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"893\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"343\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"922\" y=\"1545\" name=\"top_1\"/>\n  <anchor x=\"294\" y=\"1317\" name=\"top_2\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-3\"/>\n      <point x=\"1014\" y=\"88\"/>\n      <point x=\"1014\" y=\"229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"462\"/>\n      <point x=\"665\" y=\"738\"/>\n      <point x=\"193\" y=\"1248\" type=\"curve\"/>\n      <point x=\"123\" y=\"1169\" type=\"line\"/>\n      <point x=\"602\" y=\"656\"/>\n      <point x=\"920\" y=\"408\"/>\n      <point x=\"920\" y=\"216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"113\"/>\n      <point x=\"802\" y=\"91\"/>\n      <point x=\"634\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"91\"/>\n      <point x=\"382\" y=\"95\"/>\n      <point x=\"246\" y=\"106\" type=\"curve\"/>\n      <point x=\"264\" y=\"69\" type=\"line\"/>\n      <point x=\"462\" y=\"233\"/>\n      <point x=\"706\" y=\"428\"/>\n      <point x=\"870\" y=\"582\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"680\"/>\n      <point x=\"1005\" y=\"789\"/>\n      <point x=\"997\" y=\"1091\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"1420\" type=\"line\"/>\n      <point x=\"896\" y=\"1420\" type=\"line\"/>\n      <point x=\"902\" y=\"1037\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"803\"/>\n      <point x=\"883\" y=\"728\"/>\n      <point x=\"781\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"499\"/>\n      <point x=\"428\" y=\"329\"/>\n      <point x=\"207\" y=\"139\" type=\"curve\"/>\n      <point x=\"206\" y=\"10\" type=\"line\"/>\n      <point x=\"404\" y=\"-4\"/>\n      <point x=\"474\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alef-ar.short.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alef-ar.short\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"893\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"333\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"294\" y=\"1171\" name=\"top.dot\"/>\n  <anchor x=\"922\" y=\"1545\" name=\"top_1\"/>\n  <anchor x=\"294\" y=\"1235\" name=\"top_2\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-3\"/>\n      <point x=\"1014\" y=\"88\"/>\n      <point x=\"1014\" y=\"229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"442\"/>\n      <point x=\"665\" y=\"714\"/>\n      <point x=\"193\" y=\"1156\" type=\"curve\"/>\n      <point x=\"123\" y=\"1077\" type=\"line\"/>\n      <point x=\"602\" y=\"632\"/>\n      <point x=\"920\" y=\"388\"/>\n      <point x=\"920\" y=\"216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"113\"/>\n      <point x=\"802\" y=\"91\"/>\n      <point x=\"634\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"91\"/>\n      <point x=\"382\" y=\"95\"/>\n      <point x=\"246\" y=\"106\" type=\"curve\"/>\n      <point x=\"264\" y=\"69\" type=\"line\"/>\n      <point x=\"462\" y=\"233\"/>\n      <point x=\"706\" y=\"428\"/>\n      <point x=\"870\" y=\"582\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"680\"/>\n      <point x=\"1005\" y=\"789\"/>\n      <point x=\"997\" y=\"1091\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"1420\" type=\"line\"/>\n      <point x=\"896\" y=\"1420\" type=\"line\"/>\n      <point x=\"902\" y=\"1037\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"803\"/>\n      <point x=\"883\" y=\"728\"/>\n      <point x=\"781\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"499\"/>\n      <point x=\"428\" y=\"329\"/>\n      <point x=\"207\" y=\"139\" type=\"curve\"/>\n      <point x=\"206\" y=\"10\" type=\"line\"/>\n      <point x=\"404\" y=\"-4\"/>\n      <point x=\"474\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.fina.short\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-346\" yOffset=\"34\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_2</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.short\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-326\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_2</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefH_amzabelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefHamzabelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.fina\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-312\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefH_amzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefHamzabelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"343\" y=\"-481\" name=\"bottom_2\"/>\n  <outline>\n    <component base=\"lam_alef-ar\"/>\n    <component base=\"hamzabelow-ar\" xOffset=\"-262\" yOffset=\"-26\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefM_adda-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefMadda-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.fina.short\"/>\n    <component base=\"madda-ar\" xOffset=\"-329\" yOffset=\"36\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefM_adda-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefMadda-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.short\"/>\n    <component base=\"madda-ar\" xOffset=\"-309\" yOffset=\"48\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefW_asla-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefWasla-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.fina.short\"/>\n    <component base=\"wasla-ar\" xOffset=\"-377\" yOffset=\"33\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefW_asla-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_alefWasla-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"lam_alef-ar.short\"/>\n    <component base=\"wasla-ar\" xOffset=\"-357\" yOffset=\"45\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>lam_alef-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_lam_heh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lam_lam_heh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"2109\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"1560\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"799\" y=\"-141\" name=\"bottom_3\"/>\n  <anchor x=\"2099\" y=\"1310\" name=\"top_1\"/>\n  <anchor x=\"1550\" y=\"1310\" name=\"top_2\"/>\n  <anchor x=\"932\" y=\"1250\" name=\"top_3\"/>\n  <outline>\n    <contour>\n      <point x=\"1292\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1449\" y=\"-3\"/>\n      <point x=\"1529\" y=\"19\"/>\n      <point x=\"1560\" y=\"122\" type=\"curve\"/>\n      <point x=\"1598\" y=\"122\" type=\"line\"/>\n      <point x=\"1613\" y=\"257\" type=\"line\"/>\n      <point x=\"1551\" y=\"231\" type=\"line\"/>\n      <point x=\"1590\" y=\"36\"/>\n      <point x=\"1619\" y=\"-3\"/>\n      <point x=\"1835\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2137\" y=\"-3\"/>\n      <point x=\"2178\" y=\"106\"/>\n      <point x=\"2171\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2144\" y=\"1190\" type=\"line\"/>\n      <point x=\"2052\" y=\"1190\" type=\"line\"/>\n      <point x=\"2079\" y=\"310\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2084\" y=\"137\"/>\n      <point x=\"2052\" y=\"91\"/>\n      <point x=\"1847\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1637\" y=\"91\"/>\n      <point x=\"1631\" y=\"127\"/>\n      <point x=\"1626\" y=\"309\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1601\" y=\"1190\" type=\"line\"/>\n      <point x=\"1509\" y=\"1190\" type=\"line\"/>\n      <point x=\"1529\" y=\"300\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1533\" y=\"111\"/>\n      <point x=\"1464\" y=\"91\"/>\n      <point x=\"1334\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1154\" y=\"91\"/>\n      <point x=\"1121\" y=\"123\"/>\n      <point x=\"1120\" y=\"280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"977\" type=\"line\"/>\n      <point x=\"1022\" y=\"977\" type=\"line\"/>\n      <point x=\"1032\" y=\"266\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1035\" y=\"62\"/>\n      <point x=\"1127\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"758\" y=\"177\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"177\"/>\n      <point x=\"981\" y=\"188\"/>\n      <point x=\"1011\" y=\"229\" type=\"curve\"/>\n      <point x=\"1058\" y=\"232\" type=\"line\"/>\n      <point x=\"1058\" y=\"298\" type=\"line\"/>\n      <point x=\"975\" y=\"275\"/>\n      <point x=\"855\" y=\"269\"/>\n      <point x=\"787\" y=\"269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"269\"/>\n      <point x=\"431\" y=\"331\"/>\n      <point x=\"431\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"585\"/>\n      <point x=\"620\" y=\"673\"/>\n      <point x=\"1064\" y=\"764\" type=\"curve\"/>\n      <point x=\"1057\" y=\"859\" type=\"line\"/>\n      <point x=\"601\" y=\"751\"/>\n      <point x=\"339\" y=\"659\"/>\n      <point x=\"339\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"242\"/>\n      <point x=\"510\" y=\"177\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lambda.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lambda\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BB\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1068\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1097\" y=\"-20\"/>\n      <point x=\"1119\" y=\"-17\"/>\n      <point x=\"1150\" y=\"-8\" type=\"curve\"/>\n      <point x=\"1138\" y=\"77\" type=\"line\"/>\n      <point x=\"1116\" y=\"72\"/>\n      <point x=\"1103\" y=\"70\"/>\n      <point x=\"1088\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"973\" y=\"70\"/>\n      <point x=\"921\" y=\"113\"/>\n      <point x=\"887\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"1320\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"1467\"/>\n      <point x=\"466\" y=\"1520\"/>\n      <point x=\"327\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"1520\"/>\n      <point x=\"276\" y=\"1517\"/>\n      <point x=\"245\" y=\"1508\" type=\"curve\"/>\n      <point x=\"259\" y=\"1425\" type=\"line\"/>\n      <point x=\"278\" y=\"1429\"/>\n      <point x=\"291\" y=\"1430\"/>\n      <point x=\"307\" y=\"1430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"1430\"/>\n      <point x=\"455\" y=\"1395\"/>\n      <point x=\"483\" y=\"1300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"201\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"851\" y=\"39\"/>\n      <point x=\"922\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"525\" y=\"811\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"883\"/>\n      <point x=\"566\" y=\"931\"/>\n      <point x=\"555\" y=\"1015\" type=\"curve\"/>\n      <point x=\"620\" y=\"1035\" type=\"line\"/>\n      <point x=\"546\" y=\"1092\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lambdastroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lambdastroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019B\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"987\" type=\"line\"/>\n      <point x=\"964\" y=\"1237\" type=\"line\"/>\n      <point x=\"944\" y=\"1322\" type=\"line\"/>\n      <point x=\"128\" y=\"1072\" type=\"line\"/>\n    </contour>\n    <component base=\"lambda\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lamed-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lamed-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DC\"/>\n  <guideline x=\"380\" y=\"575\" angle=\"90\"/>\n  <anchor x=\"419\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"921\" y=\"1200\" type=\"line\"/>\n      <point x=\"137\" y=\"1200\" type=\"line\"/>\n      <point x=\"137\" y=\"1101\" type=\"line\"/>\n      <point x=\"921\" y=\"1101\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"236\" y=\"1151\" type=\"line\"/>\n      <point x=\"236\" y=\"1500\" type=\"line\"/>\n      <point x=\"137\" y=\"1500\" type=\"line\"/>\n      <point x=\"137\" y=\"1151\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"823\" y=\"1200\" type=\"line\"/>\n      <point x=\"823\" y=\"672\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"325\"/>\n      <point x=\"722\" y=\"146\"/>\n      <point x=\"380\" y=\"77\" type=\"curve\"/>\n      <point x=\"403\" y=\"-19\" type=\"line\"/>\n      <point x=\"774\" y=\"56\"/>\n      <point x=\"922\" y=\"257\"/>\n      <point x=\"922\" y=\"652\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"922\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lameddagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lameddagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB3C\"/>\n  <outline>\n    <component base=\"lamed-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-181\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"largeCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EF\"/>\n  <note>\nuni25EF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"202\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"202\"/>\n      <point x=\"96\" y=\"404\"/>\n      <point x=\"96\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"96\" y=\"1016\"/>\n      <point x=\"296\" y=\"1218\"/>\n      <point x=\"600\" y=\"1218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"1218\"/>\n      <point x=\"1104\" y=\"1016\"/>\n      <point x=\"1104\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1104\" y=\"404\"/>\n      <point x=\"904\" y=\"202\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"332\"/>\r\n      <point x=\"800\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"602\"/>\r\n      <point x=\"800\" y=\"61\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"234\"/>\r\n      <point x=\"800\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"472\"/>\r\n      <point x=\"800\" y=\"-4\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"560\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"560\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE20\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE20.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE20.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE21.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE21\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE21.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE21.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE22.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE22\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE22.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE22.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"1144\"/>\r\n      <point x=\"800\" y=\"332\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"948\"/>\r\n      <point x=\"800\" y=\"234\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"640\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"640\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE27.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE27\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE27.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE27.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE28.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE28\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE28.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE28.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE29.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE29\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE29.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE29.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1685\"/>\r\n      <point x=\"1000\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"602\"/>\r\n      <point x=\"800\" y=\"61\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"332\"/>\r\n      <point x=\"800\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"602\"/>\r\n      <point x=\"400\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1424\"/>\r\n      <point x=\"1000\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"472\"/>\r\n      <point x=\"800\" y=\"-4\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"234\"/>\r\n      <point x=\"800\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"472\"/>\r\n      <point x=\"400\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1144\"/>\r\n      <point x=\"900\" y=\"1437\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"986\"/>\r\n      <point x=\"600\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1144\"/>\r\n      <point x=\"900\" y=\"760\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"309\"/>\r\n      <point x=\"600\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"948\"/>\r\n      <point x=\"900\" y=\"1206\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"810\"/>\r\n      <point x=\"600\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"948\"/>\r\n      <point x=\"900\" y=\"610\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"214\"/>\r\n      <point x=\"600\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE30.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE30\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2000\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE30.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE30.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1702\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE31.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE31\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-255\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE31.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE31.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-282\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE32.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE32\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE32.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE32.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE33.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE33\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"800\" y=\"873\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"800\" y=\"873\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE33.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE33.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"800\" y=\"710\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"800\" y=\"710\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"648\"/>\r\n      <point x=\"800\" y=\"1324\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"1098\"/>\r\n      <point x=\"800\" y=\"422\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"511\"/>\r\n      <point x=\"800\" y=\"1107\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"908\"/>\r\n      <point x=\"800\" y=\"313\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE37.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE37\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"1144\"/>\r\n      <point x=\"400\" y=\"1685\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"1144\"/>\r\n      <point x=\"800\" y=\"332\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE37.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE37.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"948\"/>\r\n      <point x=\"400\" y=\"1424\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"948\"/>\r\n      <point x=\"800\" y=\"234\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE38.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE38\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE38.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE38.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE39.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE39\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE39.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE39.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1685\"/>\r\n      <point x=\"1000\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"602\"/>\r\n      <point x=\"400\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1424\"/>\r\n      <point x=\"1000\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"472\"/>\r\n      <point x=\"400\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"560\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"560\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE40.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE40\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE40.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE40.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE41.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE41\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"647\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE41.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE41.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"600\" y=\"908\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"512\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE42.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE42\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE42.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE42.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE43.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE43\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"1144\"/>\r\n      <point x=\"400\" y=\"1685\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE43.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE43.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"948\"/>\r\n      <point x=\"400\" y=\"1424\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE44.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE44\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE44.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE44.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE45\"/>\r\n  <outline>\r\n    <component base=\"largeType-1CE43\"/>\r\n    <contour>\r\n      <point x=\"200\" y=\"1009\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"500\" y=\"602\"/>\r\n      <point x=\"500\" y=\"602\"/>\r\n      <point x=\"700\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"600\" y=\"61\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <component base=\"largeType-1CE43.stypo\"/>\r\n    <contour>\r\n      <point x=\"200\" y=\"829\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"500\" y=\"472\"/>\r\n      <point x=\"500\" y=\"472\"/>\r\n      <point x=\"700\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-4\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"640\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"640\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE49.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE49\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE49.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE49.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE50.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE50\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE50.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE50.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lari.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lari\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BE\"/>\n  <outline>\n    <contour>\n      <point x=\"380\" y=\"47\" type=\"line\"/>\n      <point x=\"760\" y=\"90\" type=\"line\"/>\n      <point x=\"383\" y=\"90\"/>\n      <point x=\"196\" y=\"302\"/>\n      <point x=\"196\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"1125\"/>\n      <point x=\"348\" y=\"1350\"/>\n      <point x=\"615\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"1350\"/>\n      <point x=\"1004\" y=\"1179\"/>\n      <point x=\"1004\" y=\"880\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"768\" type=\"line\"/>\n      <point x=\"1100\" y=\"768\" type=\"line\"/>\n      <point x=\"1100\" y=\"880\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"1236\"/>\n      <point x=\"924\" y=\"1440\"/>\n      <point x=\"615\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"288\" y=\"1440\"/>\n      <point x=\"100\" y=\"1182\"/>\n      <point x=\"100\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"100\" y=\"366\"/>\n      <point x=\"203\" y=\"189\"/>\n      <point x=\"380\" y=\"101\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"110\" y=\"0\" type=\"line\"/>\n      <point x=\"1082\" y=\"0\" type=\"line\"/>\n      <point x=\"1082\" y=\"90\" type=\"line\"/>\n      <point x=\"110\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"439\" y=\"768\" type=\"line\"/>\n      <point x=\"533\" y=\"768\" type=\"line\"/>\n      <point x=\"533\" y=\"1568\" type=\"line\"/>\n      <point x=\"439\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"673\" y=\"768\" type=\"line\"/>\n      <point x=\"767\" y=\"768\" type=\"line\"/>\n      <point x=\"767\" y=\"1568\" type=\"line\"/>\n      <point x=\"673\" y=\"1568\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/layerinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>lib</key>\n    <dict>\n      <key>com.schriftgestaltung.layerId</key>\n      <string>master01</string>\n      <key>com.schriftgestaltung.layerOrderInGlyph..notdef</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.AE</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.AEacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abreveacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevedotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevegrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevehookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevetilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexgrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflextilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Adieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Adotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Agrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ahookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alpha</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alpha-latin</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alphatonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Amacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aring</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aringacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Asmall</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Astroke</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Atilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.B</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.B.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Be-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Beta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.C</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.C.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.CR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccedilla</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cdotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Che-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Chedescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Chi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cstroke</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.D</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.D.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dafrican</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dcroat</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.De-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.De-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Delta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dze-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dzhe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ebreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexgrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflextilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ef-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ef-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Egrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ehookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.El-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.El-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Em-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Emacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.En-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Endescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eng</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eopen</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Epsilon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Epsilontonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Er-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ereversed</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ereversed-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Es-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Esh</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Etatonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eth</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Etilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ezh</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.F</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.F.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Fhook</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.G</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.G.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gamma</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gammaafrican</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gbreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gdotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ge-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Germandbls</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ghestroke-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gheupturn-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gsmall</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gstroke</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.H</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.H.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hadescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hardsign-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hbar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hcircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.IJ</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.IJ_acute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ia-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ibreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Icircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ie-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iegrave-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Igrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ihookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ii-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iigrave-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iishort-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Imacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Imacron-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Io-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iota</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotaafrican</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotadieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotatonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ismall</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Itilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iu-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.J</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Jacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Jcircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Je-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.K</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.K.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ka-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kadescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.KaiSymbol</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kappa</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Klinebelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.L</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.L.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.LIG</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lambda</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lbar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ldot</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ldotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Llinebelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lmiddletilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lslash</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lsmall</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.M</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.M.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Mu</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.N</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.N.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ncaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ncommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nhookleft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nlinebelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ntilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nu</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.OE</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Obarred-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Obreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexgrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflextilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Odieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Odotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ograve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohm</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorn</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohornacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorndotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorngrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohornhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorntilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohungarumlaut</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacronacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacrongrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omega</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omegatonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omicron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omicrontonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oopen</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oslash</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oslashacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Otilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.P</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.P.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Palochka-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Pe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Phi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Pi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Psi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Q</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Q.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.R</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.R.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Racute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rho</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.S</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.S.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scedilla</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Schwa</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Schwa-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Shcha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Shha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sigma</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Softsign-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.T</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.T.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tau</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tbar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcedilla</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tdiagonalstroke</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Te-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Theta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Thorn</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tlinebelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tse-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tshe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ubreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ucircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Udieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Udotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ugrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorn</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhornacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorndotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorngrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhornhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorntilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhungarumlaut</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Umacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Umacron-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilonafrican</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilondieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilontonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uring</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ushort-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ustraight-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ustraightstroke-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Utilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.V</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.V.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ve-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Vhook</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Vturned</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.W</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wcircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wdieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wgrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.X</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.X.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Xi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Y</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Y.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ycircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ydieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ydotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yeru-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ygrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yi-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ymacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ytilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Z</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zdotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ze-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zeta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zhe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zhedescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alef-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alef-ar.fina.short.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefFathatan-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefHamzaabove-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefHamzabelow-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefMadda-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefThreeabove-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefTwoabove-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefWasla-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefWavyhamzaabove-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefWavyhamzabelow-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._alefabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._bar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._cuberoot_fourthroot-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._damma-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._dot-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._dotVInvertedabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._dotVabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._dots.horz.below</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._doublebar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._fatha-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._four-persian.small01</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._fourdotscenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._fourthroot-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._hamzasmall-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._hamzawavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._hehgoalcomma</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._highhamzaAlef-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._invertedstroke</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._onedotstah</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._ringArabic</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._stroke</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._tahabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._tahabovesmall</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._threedots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._twodotshorizontal-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._twodotstah</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._twodotsverticalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._vabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._vbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._vinvertedbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._yehRohingya-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph._yehRohingya-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.a</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.a-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abreveacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevedotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevegrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevehookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevetilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexgrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflextilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.case.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutetonecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.adieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.adotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ae</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ae-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ae-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aeacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.afghani-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.agrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ahookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ain-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ain-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ain-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ain-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-ar.short</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alef-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefpatah-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alefqamats-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.allah-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alpha</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alpha-latin</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alphatonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.amacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ampersand</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ampersand_ampersand.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.anoteleia</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.apostrophemod</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.approxequal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aring</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aringacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciicircum</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciicircum_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_at.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_hyphen.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asteriskArt-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk_asterisk.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_parenright.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_slash.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.at</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.atilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ayin-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.b</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash_backslash.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash_slash.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backspaceControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backspaceControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.baht</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_braceright.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bracketright.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_underscore_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.be-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.be-cy.loclSRB</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beeh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beheh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bellControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bellControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bet-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.betdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bitcoin</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackHexagon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackHorizontalEllipse</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackInWhiteDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackLargeCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackLargeSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumDownTriangleCentred</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumLeftTriangleCentred</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumLozenge</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumRightTriangleCentred</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumUpTriangleCentred</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackParallelogram</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackPentagon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallLozenge</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmilingFace</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerticalEllipse</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerticalRect</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerysmallSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blank</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blank-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blankSymbol</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDown.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUp</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUp.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceleft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceleft_bar.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceright</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceright_numbersign.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketleft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketleft_bar.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketright</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketright_numbersign.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.breve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brokenbar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bullet</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bulletoperator</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bullseye</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.c</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cancelControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cancelControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.careof</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caroncomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caroncomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccedilla</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cdotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedilla</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedillacomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.che-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.checkmark</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chedescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflexcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflexcomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.clubBlackSuit</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon.center</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon_colon.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_slash_slash.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colonsign</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colontriangularmod</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.comma</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.comma-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaabovecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaaboverightcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaaccentcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaturnedabovecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaturnedmod</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.copyright</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.crosshatchFillSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cuberoot-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.currency</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.d</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dad-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dagger</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.daggerdbl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dahal-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dahal-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dal-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dal-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalDotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalDotbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalDotbelowTah-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalDotbelowTah-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalFourdots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalFourdots-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalRing-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalRing-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalThreedotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalThreedotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalThreedotsdown-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalThreedotsdown-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalTwodotsverticalbelowTahabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalTwodotsverticalbelowTahabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalVinvertedabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalVinvertedabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalVinvertedbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalVinvertedbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dalet-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.daletdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.damma-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dammatan-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dashdownArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dateseparator-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcaron.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcroat</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ddahal-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ddahal-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ddal-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ddal-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.de-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.de-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.decimalseparator-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.degree</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deleteControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deleteFormTwoControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.delta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlFourControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlOneControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlThreeControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlTwoControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.diagonalcrosshatchFillSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.diamondBlackSuit</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresiscomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresiscomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresistonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.divide</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.divisionslash</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dollar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dollar_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dong</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotbelowcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotcenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12345-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123456-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12345678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123457-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123458-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12346-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123467-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123468-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12347-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123478-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12348-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1235-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12356-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1235678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12357-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12358-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1236-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12367-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12368-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1237-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12378-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1238-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1245-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12456-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1245678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12457-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12458-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1246-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12467-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12468-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1247-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12478-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1248-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots125-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1256-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots125678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1257-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1258-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots126-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1267-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1268-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots127-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1278-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots128-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1345-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13456-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1345678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13457-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13458-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1346-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13467-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13468-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1347-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13478-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1348-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots135-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1356-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots135678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1357-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1358-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots136-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1367-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1368-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots137-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1378-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots138-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots145-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1456-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots145678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1457-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1458-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots146-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1467-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1468-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots147-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1478-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots148-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots15-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots156-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots15678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots157-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots158-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots16-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots167-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots168-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots17-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots178-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots18-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2345-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23456-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2345678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23457-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23458-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2346-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23467-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23468-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2347-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23478-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2348-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots235-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2356-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots235678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2357-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2358-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots236-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2367-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2368-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots237-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2378-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots238-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots245-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2456-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots245678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2457-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2458-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots246-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2467-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2468-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots247-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2478-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots248-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots25-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots256-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots25678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots257-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots258-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots26-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots267-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots268-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots27-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots278-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots28-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots345-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3456-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots345678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3457-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3458-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots346-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3467-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3468-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots347-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3478-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots348-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots35-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots356-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots35678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots357-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots358-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots36-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots367-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots368-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots37-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots378-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots38-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots45-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots456-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots45678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots457-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots458-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots46-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots467-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots468-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots47-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots478-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots48-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots5-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots56-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots567-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots5678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots568-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots57-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots578-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots58-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots6-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots67-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots678-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots68-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots7-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots78-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots8-braille</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dottedCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dottedSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.doubleverticalbarbelowSymbol-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.doubleverticalbarbelowSymbol-ar.comb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downBlackSmallTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downTipLeftArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downWhiteSmallTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downWhiteTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dtail</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dul-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dul-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dyeh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dze-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dzhe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ebreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexgrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflextilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ef-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ef-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.egrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ehookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eightinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eightsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.el-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.el-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ellipsis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.em-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.emacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.emdash</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.en-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTextControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTextControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endash</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endofayah-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eng</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.enquiryControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.enquiryControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eopen</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.epsilon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.epsilontonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_equal_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_greater_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_less_less.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equivalence</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.er-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ereversed-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.es-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.escapeControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.escapeControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.esh</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.estimated</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.etatonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eth</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.etilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eturned</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.euro</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eurocurrency</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_colon.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_exclam.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_exclam_period.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_period.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclamdouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclamdown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ezh</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.f</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fatha-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fathatan-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.feh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fileSeparatorControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.filledRect</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalkaf-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalkafdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalmem-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalnun-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalpe-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finalpedagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.finaltsadi-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.firsttonechinese</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fisheye</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fiveeighths</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fiveinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fivesuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.florin</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.footnotemarker-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.formFeedControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.formFeedControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian.small01</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian.urdu</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian.urduinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persian.urdusuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persianbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persiancenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourdotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourdotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourdotscenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.foursuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourthroot-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fraction</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.franc</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullstop-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.g</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gaf-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gaf-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gaf-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gaf-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafRing-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gafsarkashabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gamma</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gamma-latin</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gbreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gdotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ge-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ge-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.geresh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.germandbls</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gershayim-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghain-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghain-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghain-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghain-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghestroke-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gheupturn-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gimel-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gimeldagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstop</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstopmod</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstopreversed</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.grave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravecomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravetonecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater.center</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greaterequal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.groupSeparatorControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gstroke</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guarani</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gueh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gueh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gueh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gueh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guillemetleft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guillemetright</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guilsinglleft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guilsinglright</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.h</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hadescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hah-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hah-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hah-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hah-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hamza-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hamzabelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hardsign-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hardsign-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hbar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hcircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.he-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heartBlackSuit</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglebracketornament</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglequotationmarkornament</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglebracketornament</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglequotationmarkornament</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hedagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehAlefabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehAlefabove-ar.init.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.het-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamza-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar.fina</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar.fina.rlig</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaWaw-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaWaw-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.holam-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.holamhaser-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hookabovecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hookabovecomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalBlackHexagon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalFillSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalbar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontallineextension</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horncomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horncomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.house</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hryvnia</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlaut</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_asciitilde.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen_hyphen.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphentwo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.i</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.i-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ia-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ibreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.icircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idotless</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ie-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iegrave-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.igrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ihookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ii-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ii-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iigrave-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iigrave-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iishort-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iishort-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ij</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ij_acute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.imacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.imacron-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.increment</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.infinity</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integral</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integralbt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integraltp</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.intersection</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.inverseBullet</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.inverseWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.io-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iota</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iota-latin</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotadieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotadieresistonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotatonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.itilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.j</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jcircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jdotless</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.je-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeem-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeem-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeem-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeem-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jeh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.k</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kadescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaf-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafRing-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.medi.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaiSymbol</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kappa</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kashida-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kasra-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kasratan-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.keheh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.keheh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.keheh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.keheh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kgreenlandic</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.khah-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.khah-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.khah-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.khah-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kip</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kirghizoe-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kirghizoe-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kirghizyu-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kirghizyu-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.klinebelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.l</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.init.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam-ar.medi.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.init.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.medi.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.init.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.medi.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.init.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.medi.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.init.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.medi.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.init.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.medi.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.init.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.medi.rlig</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.fina.short</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.short</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzabelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzabelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefMadda-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefMadda-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefWasla-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_alefWasla-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lam_lam_heh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lambda</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lambdastroke</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lamed-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lameddagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.largeCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lari</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbelt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldot</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackPointer</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackSmallTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftRightArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhitePointer</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhiteSmallTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhiteTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less.center</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_asciitilde.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asterisk.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asterisk_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_bar.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_bar_bar.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_dollar.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_dollar_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_exclam_hyphen_hyphen.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_less.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_plus.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_plus_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_slash.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_slash_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lessequal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineFeedControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineFeedControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineseparator</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lira</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.liraTurkish</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.literSign</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.llinebelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lmiddletilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.logicalnot</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.logicalnotReversed</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.longs</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfArc</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlackWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfInverseWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfWhiteSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftArc</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftHalfWhiteSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftQuadrantWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightArc</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightDiagonalHalfBlackSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightQuadrantWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowernumeral-greek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowlinecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lozenge</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lslash</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.m</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macronbelowcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macroncomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macroncomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.madda-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.manat</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.maqaf-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mars</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumBlackSmallSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumBlackSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSmallSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumleftpointinganglebracketornament</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumrightpointinganglebracketornament</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meem-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meem-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meem-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meem-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemStopabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mem-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.memdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.micro</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.minus</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.minute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.misraComma-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mu</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.multiply</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.n</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.naira</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.napostrophe</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nbspace</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ncaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ncommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.newlineControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ng-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ng-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ng-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ng-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nhookleft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nineinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ninesuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nlinebelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nmod</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nonbreakinghyphen</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noon-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.noonghunnaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.note-musical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notedbl-musical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notequal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notidentical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ntilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nu</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nullControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.number-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbermark-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_braceleft.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_bracketleft.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_colon.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_exclam.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_parenleft.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_question.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore_parenleft.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numeral-greek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numero</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nun-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nundagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nyeh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.o</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.o-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.obarred-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.obreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexgrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflextilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.odieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.odotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oe</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oe-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oe-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ogonekcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ograve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorn</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohornacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorndotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorngrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohornhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorntilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohungarumlaut</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacronacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacrongrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omega</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omegatonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omicron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omicrontonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onedotenleader</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oneeighth</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onehalf</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oneinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onequarter</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onesuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oopen</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ordfeminine</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ordmasculine</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.orthogonal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oslash</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oslashacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.otilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.overline</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.p</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pagenumber-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.palochka-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.paragraph</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft_asterisk.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenright</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenright-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.partialdiff</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.paseq-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.patah-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pedagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peheh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent_percent.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_hyphen.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_less.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_period.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_question.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.periodcentered</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perispomenicomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perthousand</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perthousand-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peseta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peso</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.phi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_plus.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_plus_plus.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plusminus</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.prescription</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.product</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.psi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.published</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.punctuationspace</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.q</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qaf-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qamats-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qamatsqatan-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qof-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.qofdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_colon.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_period.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_question.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_question_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.questiondown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.questiongreek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedbl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblbase</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblleft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblright</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quoteleft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotereversed</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quoteright</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotesinglbase</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotesingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.r</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.racute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.radical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ratio</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ray-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.recordSeparatorControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.registered</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehAlefabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehAlefabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehDotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehDotbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehDotbelowdotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehDotbelowdotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehFourdots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehFourdots-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehLoop-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehLoop-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehRing-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehRing-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehStroke-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehStroke-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodots-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodotshorizontalaboveTahabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodotshorizontalaboveTahabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodotsverticalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehTwodotsverticalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehVbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehVbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehVinvertedabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehVinvertedabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehv-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rehv-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.replacementCharacter</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.resh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reshdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.returnsymbol</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reversedRotatedFloralHeartBullet</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rho</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackPointer</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackSmallTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhitePointer</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhiteSmallTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhiteTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ring</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringArabic</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringbelowcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringcomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringcomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rotatedFloralHeartBullet</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rreh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rreh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ruble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rupee</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rupeeIndian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.s</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sad-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.samekh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.samekhdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.samvat-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scedilla</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.schwa</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.schwa-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sdotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.second</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.section</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seen-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotsverticalabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenTwodotsverticalabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon_semicolon.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persian.urdu</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persian.urduinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persian.urdusuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seveneighths</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seveninferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sevensuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sha-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadda-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadedark</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadedark.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadelight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadelight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shademedium</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shademedium.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shcha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shcha-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheen-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheqel</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftInControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftInControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftOutControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftOutControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shin-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shindagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shindageshshindot-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shindageshsindot-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shindot-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shinshindot-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shinsindot-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sigma</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sigmafinal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sindhiampersand-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sindhipostpositionmen-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sindot-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sixinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sixsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_asterisk.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_backslash.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_slash.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softhyphen</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softsign-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softsign-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.space</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.spaceControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.spadeBlackSuit</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfTextControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfTextControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sterling</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.strictlyequivalentto</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteFormTwoControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sukun-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.summation</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sunWithRays</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.t</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tah-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tah-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tah-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tah-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tahcenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tau</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tav-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tavdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tbar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcedilla</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcommaaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.te-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.te-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehMarbuta-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehMarbuta-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehMarbutagoal-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehMarbutagoal-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tehabove-ar.small</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.teheh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tenge</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tesh</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tet-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tetdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thal-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thal-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thalAlefabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thalAlefabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thetamod</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thorn</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thousandseparator-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-persian.small01</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsdownabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsdownbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsdowncenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsupabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsupabove-ar.v2</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsupbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threedotsupcenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threeeighths</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threeinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threequarters</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threesuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tildecomb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tildecomb.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tonos.case</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfBlackCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfBlackDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfWhiteSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topRightHalfWhiteSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.trademark</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tsadi-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tsadidagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tse-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tse-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tshe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tugrik</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-persian.small01</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.half</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalabove-ar.v2</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalcenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotstahbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotstahcenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotsverticalabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotsverticalbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twodotsverticalcenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twoinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twosuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ubreve</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ucircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.udieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.udotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ugrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorn</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhornacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorndotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorngrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhornhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorntilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhungarumlaut</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.umacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.umacron-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_end.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_middle.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_start.seq</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_underscore.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscoredbl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B3</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B3.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B3.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B3.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B4</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B4.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B4.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B4.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uni08B9.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uniFBC0</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.unitSeparatorControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uogonek</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upBlackSmallTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDashArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDownArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDownbaseArrow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upLeftHalfBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upRightHalfBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteSmallTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangleWithDot</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfArc</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlackWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfInverseWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftArc</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftDiagonalHalfBlackSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftQuadrantWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightArc</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlackCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlackTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightQuadrantWhiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightTriangle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperlefttolowerrightFillSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperrighttolowerleftFillSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilon-latin</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilondieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilondieresistonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilontonos</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uring</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ushort-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ustraight-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ustraightstroke-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.utilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.v</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vav-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vavdagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vavholam-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vectorOrCrossProduct</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.veh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.venus</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verseComma-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalBisectingLineWhiteSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalFillCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalFillSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl.ss20</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vhook</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vinvertedabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vturned</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.w</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.w_w_w.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wasla-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wavyhamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wavyhamzabelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.waw-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.waw-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawDotcenter-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawDotcenter-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawStraight-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawThreeAbove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawThreeAbove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawTwoabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawTwoabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawTwodots-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawTwodots-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawring-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wawring-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wcircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wdieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wgrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteBullet</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteCircle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteHexagon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteHorizontalEllipse</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteInBlackSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLargeSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLowerLeftQuadrantSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLowerRightQuadrantSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteMediumDiamond</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteMediumLozenge</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteParallelogram</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whitePentagon</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteRect</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteRoundedCornersSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmallLozenge</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmallSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmilingFace</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteUpperLeftQuadrantSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteUpperRightQuadrantSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerticalEllipse</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerticalRect</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerysmallSquare</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wmod</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.won</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.x</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.x.multiply</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.xi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.y</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ycircumflex</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ydieresis</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ydotbelow</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.year-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar.isol</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTail-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTail-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTail-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.fina.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarree-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarree-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeHamzaabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeHamzaabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.init.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yen</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeru-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ygrave</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yhookabove</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yi-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ymacron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ymod</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yod-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yoddagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ytilde</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yu-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yu-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.z</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zacute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zacute.loclPLK</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zah-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zah-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zah-ar.init</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zah-ar.medi</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zain-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zain-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zainVInvertedabove-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zainVInvertedabove-ar.fina</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zayin-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zayindagesh-hb</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zcaron</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zdotaccent</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-ar</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-arinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-arsuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-persian</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-persianinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero-persiansuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.dnom</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.numr</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.zero</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zeroinferior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zerosuperior</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zeta</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhe-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhedescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zmod</key>\n      <integer>0</integer>\n    </dict>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019A\"/>\n  <outline>\n    <contour>\n      <point x=\"108\" y=\"678\" type=\"line\"/>\n      <point x=\"924\" y=\"678\" type=\"line\"/>\n      <point x=\"924\" y=\"766\" type=\"line\"/>\n      <point x=\"108\" y=\"766\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lbelt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbelt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026C\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"657\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"657\" type=\"line\"/>\n      <point x=\"924\" y=\"747\" type=\"line\"/>\n      <point x=\"300\" y=\"747\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"205\" y=\"747\"/>\n      <point x=\"151\" y=\"804\"/>\n      <point x=\"151\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"1004\"/>\n      <point x=\"198\" y=\"1062\"/>\n      <point x=\"280\" y=\"1062\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"1062\"/>\n      <point x=\"470\" y=\"985\"/>\n      <point x=\"470\" y=\"807\" type=\"curve\"/>\n      <point x=\"494\" y=\"1020\" type=\"line\"/>\n      <point x=\"459\" y=\"1020\" type=\"line\"/>\n      <point x=\"443\" y=\"1109\"/>\n      <point x=\"389\" y=\"1154\"/>\n      <point x=\"280\" y=\"1154\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"1154\"/>\n      <point x=\"55\" y=\"1063\"/>\n      <point x=\"55\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"55\" y=\"747\"/>\n      <point x=\"144\" y=\"657\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013E\"/>\n  <outline>\n    <contour>\n      <point x=\"812\" y=\"1188\" type=\"line\"/>\n      <point x=\"914\" y=\"1188\" type=\"line\"/>\n      <point x=\"1014\" y=\"1568\" type=\"line\"/>\n      <point x=\"912\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013C\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ldot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0140\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"periodcentered\" xOffset=\"316\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ldotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E37\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7C\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndUpperOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7D\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"150\" y=\"1888\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndUpperOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"150\" y=\"1602\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2190\"/>\n  <outline>\n    <contour>\n      <point x=\"1100\" y=\"664\" type=\"line\"/>\n      <point x=\"1100\" y=\"754\" type=\"line\"/>\n      <point x=\"124\" y=\"754\" type=\"line\"/>\n      <point x=\"124\" y=\"664\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"452\" y=\"303\" type=\"line\"/>\n      <point x=\"516\" y=\"360\" type=\"line\"/>\n      <point x=\"177\" y=\"700\" type=\"line\"/>\n      <point x=\"177\" y=\"718\" type=\"line\"/>\n      <point x=\"516\" y=\"1058\" type=\"line\"/>\n      <point x=\"452\" y=\"1115\" type=\"line\"/>\n      <point x=\"64\" y=\"720\" type=\"line\"/>\n      <point x=\"64\" y=\"698\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lackP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackPointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C4\"/>\n  <note>\ntriaglf\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"350\" type=\"line\"/>\n      <point x=\"1080\" y=\"1070\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C2\"/>\n  <note>\nuni25C2\n</note>\n  <outline>\n    <contour>\n      <point x=\"1005\" y=\"241\" type=\"line\"/>\n      <point x=\"1005\" y=\"1179\" type=\"line\"/>\n      <point x=\"208\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C0\"/>\n  <note>\nuni25C0\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"110\" type=\"line\"/>\n      <point x=\"1080\" y=\"1310\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258C\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D6\"/>\n  <note>\nuni25D6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\"/>\n      <point x=\"600\" y=\"1235\" type=\"line\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B16\"/>\n  <note>\nuni2B16\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E7\"/>\n  <note>\nuni25E7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"235\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n      <point x=\"115\" y=\"1185\" type=\"line\"/>\n      <point x=\"115\" y=\"235\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D0\"/>\n  <note>\nuni25D0\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"245\" type=\"line\"/>\n      <point x=\"600\" y=\"1175\" type=\"line\"/>\n      <point x=\"259\" y=\"1094\" type=\"line\"/>\n      <point x=\"112\" y=\"704\" type=\"line\"/>\n      <point x=\"259\" y=\"351\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258F\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neT_hirdB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneThirdBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBCF\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneThirdBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftR_ightA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftRightArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2194\"/>\n  <outline>\n    <contour>\n      <point x=\"748\" y=\"303\" type=\"line\"/>\n      <point x=\"1136\" y=\"698\" type=\"line\"/>\n      <point x=\"1136\" y=\"720\" type=\"line\"/>\n      <point x=\"748\" y=\"1115\" type=\"line\"/>\n      <point x=\"684\" y=\"1058\" type=\"line\"/>\n      <point x=\"1023\" y=\"718\" type=\"line\"/>\n      <point x=\"1023\" y=\"700\" type=\"line\"/>\n      <point x=\"684\" y=\"360\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"452\" y=\"303\" type=\"line\"/>\n      <point x=\"516\" y=\"360\" type=\"line\"/>\n      <point x=\"177\" y=\"700\" type=\"line\"/>\n      <point x=\"177\" y=\"718\" type=\"line\"/>\n      <point x=\"516\" y=\"1058\" type=\"line\"/>\n      <point x=\"452\" y=\"1115\" type=\"line\"/>\n      <point x=\"64\" y=\"720\" type=\"line\"/>\n      <point x=\"64\" y=\"698\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"754\" type=\"line\"/>\n      <point x=\"124\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2589\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258D\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_woT_hirdsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftTwoThirdsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBCE\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftTwoThirdsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftW_hiteP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhitePointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C5\"/>\n  <note>\nuni25C5\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"350\" type=\"line\"/>\n      <point x=\"1080\" y=\"1070\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"990\" y=\"461\" type=\"line\"/>\n      <point x=\"1008\" y=\"484\" type=\"line\"/>\n      <point x=\"296\" y=\"719\" type=\"line\"/>\n      <point x=\"296\" y=\"701\" type=\"line\"/>\n      <point x=\"1008\" y=\"936\" type=\"line\"/>\n      <point x=\"990\" y=\"959\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C3\"/>\n  <note>\nuni25C3\n</note>\n  <outline>\n    <contour>\n      <point x=\"1005\" y=\"241\" type=\"line\"/>\n      <point x=\"1005\" y=\"1179\" type=\"line\"/>\n      <point x=\"208\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"915\" y=\"365\" type=\"line\"/>\n      <point x=\"961\" y=\"371\" type=\"line\"/>\n      <point x=\"324\" y=\"744\" type=\"line\"/>\n      <point x=\"324\" y=\"673\" type=\"line\"/>\n      <point x=\"952\" y=\"1044\" type=\"line\"/>\n      <point x=\"915\" y=\"1048\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/leftW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C1\"/>\n  <note>\nuni25C1\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"110\" type=\"line\"/>\n      <point x=\"1080\" y=\"1310\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1000\" y=\"220\" type=\"line\"/>\n      <point x=\"1054\" y=\"228\" type=\"line\"/>\n      <point x=\"230\" y=\"713\" type=\"line\"/>\n      <point x=\"230\" y=\"705\" type=\"line\"/>\n      <point x=\"1060\" y=\"1193\" type=\"line\"/>\n      <point x=\"1000\" y=\"1190\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"896\" y=\"30\" type=\"line\"/>\n      <point x=\"965\" y=\"97\" type=\"line\"/>\n      <point x=\"358\" y=\"700\" type=\"line\"/>\n      <point x=\"358\" y=\"718\" type=\"line\"/>\n      <point x=\"955\" y=\"1321\" type=\"line\"/>\n      <point x=\"896\" y=\"1388\" type=\"line\"/>\n      <point x=\"240\" y=\"720\" type=\"line\"/>\n      <point x=\"240\" y=\"698\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1110\" y=\"254\" type=\"line\"/>\n      <point x=\"1110\" y=\"364\" type=\"line\"/>\n      <point x=\"204\" y=\"700\" type=\"line\"/>\n      <point x=\"204\" y=\"718\" type=\"line\"/>\n      <point x=\"1110\" y=\"1054\" type=\"line\"/>\n      <point x=\"1110\" y=\"1164\" type=\"line\"/>\n      <point x=\"30\" y=\"740\" type=\"line\"/>\n      <point x=\"30\" y=\"678\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003C\"/>\n  <outline>\n    <contour>\n      <point x=\"1030\" y=\"214\" type=\"line\"/>\n      <point x=\"1030\" y=\"314\" type=\"line\"/>\n      <point x=\"198\" y=\"705\" type=\"line\"/>\n      <point x=\"198\" y=\"713\" type=\"line\"/>\n      <point x=\"1030\" y=\"1104\" type=\"line\"/>\n      <point x=\"1030\" y=\"1204\" type=\"line\"/>\n      <point x=\"120\" y=\"765\" type=\"line\"/>\n      <point x=\"120\" y=\"653\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1900\" y=\"517\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2087\" y=\"517\"/>\n      <point x=\"2176\" y=\"619\"/>\n      <point x=\"2176\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2176\" y=\"930\" type=\"line\"/>\n      <point x=\"2080\" y=\"930\" type=\"line\"/>\n      <point x=\"2080\" y=\"826\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2080\" y=\"679\"/>\n      <point x=\"2018\" y=\"607\"/>\n      <point x=\"1898\" y=\"607\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1792\" y=\"607\"/>\n      <point x=\"1707\" y=\"673\"/>\n      <point x=\"1618\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1520\" y=\"776\"/>\n      <point x=\"1424\" y=\"842\"/>\n      <point x=\"1310\" y=\"842\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1127\" y=\"842\"/>\n      <point x=\"1016\" y=\"705\"/>\n      <point x=\"802\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"640\" y=\"705\"/>\n      <point x=\"509\" y=\"753\"/>\n      <point x=\"335\" y=\"753\" type=\"curve\"/>\n      <point x=\"335\" y=\"671\" type=\"line\"/>\n      <point x=\"497\" y=\"671\"/>\n      <point x=\"640\" y=\"615\"/>\n      <point x=\"802\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1015\" y=\"615\"/>\n      <point x=\"1127\" y=\"752\"/>\n      <point x=\"1304\" y=\"752\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1399\" y=\"752\"/>\n      <point x=\"1479\" y=\"688\"/>\n      <point x=\"1565\" y=\"643\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1670\" y=\"588\"/>\n      <point x=\"1773\" y=\"517\"/>\n    </contour>\n    <component base=\"less.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asciitilde_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1970\" y=\"544\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2065\" y=\"544\"/>\n      <point x=\"2174\" y=\"601\"/>\n      <point x=\"2279\" y=\"656\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2379\" y=\"708\"/>\n      <point x=\"2446\" y=\"731\"/>\n      <point x=\"2514\" y=\"731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2582\" y=\"731\"/>\n      <point x=\"2646\" y=\"707\"/>\n      <point x=\"2743\" y=\"651\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2852\" y=\"588\"/>\n      <point x=\"2956\" y=\"516\"/>\n      <point x=\"3080\" y=\"516\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3281\" y=\"516\"/>\n      <point x=\"3376\" y=\"624\"/>\n      <point x=\"3376\" y=\"845\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3376\" y=\"930\" type=\"line\"/>\n      <point x=\"3280\" y=\"930\" type=\"line\"/>\n      <point x=\"3280\" y=\"865\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"3280\" y=\"687\"/>\n      <point x=\"3211\" y=\"601\"/>\n      <point x=\"3078\" y=\"601\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2990\" y=\"601\"/>\n      <point x=\"2919\" y=\"660\"/>\n      <point x=\"2829\" y=\"713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2714\" y=\"781\"/>\n      <point x=\"2616\" y=\"821\"/>\n      <point x=\"2520\" y=\"821\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2423\" y=\"821\"/>\n      <point x=\"2343\" y=\"792\"/>\n      <point x=\"2205\" y=\"719\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2123\" y=\"676\"/>\n      <point x=\"2042\" y=\"634\"/>\n      <point x=\"1968\" y=\"634\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1872\" y=\"634\"/>\n      <point x=\"1797\" y=\"663\"/>\n      <point x=\"1727\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1636\" y=\"751\"/>\n      <point x=\"1545\" y=\"801\"/>\n      <point x=\"1412\" y=\"801\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1162\" y=\"801\"/>\n      <point x=\"1066\" y=\"704\"/>\n      <point x=\"810\" y=\"704\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"704\"/>\n      <point x=\"524\" y=\"753\"/>\n      <point x=\"335\" y=\"753\" type=\"curve\"/>\n      <point x=\"335\" y=\"667\" type=\"line\"/>\n      <point x=\"524\" y=\"667\"/>\n      <point x=\"590\" y=\"614\"/>\n      <point x=\"812\" y=\"614\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1065\" y=\"614\"/>\n      <point x=\"1163\" y=\"711\"/>\n      <point x=\"1406\" y=\"711\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1504\" y=\"711\"/>\n      <point x=\"1577\" y=\"670\"/>\n      <point x=\"1654\" y=\"629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1740\" y=\"581\"/>\n      <point x=\"1837\" y=\"544\"/>\n    </contour>\n    <component base=\"less.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"asciitilde\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"asterisk\" xOffset=\"1100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asterisk_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asterisk_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"asterisk\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1859\" y=\"-10\" type=\"line\"/>\n      <point x=\"1859\" y=\"1430\" type=\"line\"/>\n      <point x=\"355\" y=\"770\" type=\"line\"/>\n      <point x=\"355\" y=\"648\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1765\" y=\"65\" type=\"line\"/>\n      <point x=\"1844\" y=\"107\" type=\"line\"/>\n      <point x=\"473\" y=\"700\" type=\"line\"/>\n      <point x=\"473\" y=\"718\" type=\"line\"/>\n      <point x=\"1844\" y=\"1314\" type=\"line\"/>\n      <point x=\"1765\" y=\"1355\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2000\" y=\"-10\" type=\"line\"/>\n      <point x=\"2000\" y=\"1430\" type=\"line\"/>\n      <point x=\"496\" y=\"770\" type=\"line\"/>\n      <point x=\"496\" y=\"648\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1906\" y=\"65\" type=\"line\"/>\n      <point x=\"1985\" y=\"107\" type=\"line\"/>\n      <point x=\"614\" y=\"700\" type=\"line\"/>\n      <point x=\"614\" y=\"718\" type=\"line\"/>\n      <point x=\"1985\" y=\"1314\" type=\"line\"/>\n      <point x=\"1906\" y=\"1355\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"2240\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_bar_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2000\" y=\"-10\" type=\"line\"/>\n      <point x=\"2000\" y=\"1430\" type=\"line\"/>\n      <point x=\"496\" y=\"770\" type=\"line\"/>\n      <point x=\"496\" y=\"648\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1906\" y=\"65\" type=\"line\"/>\n      <point x=\"1985\" y=\"107\" type=\"line\"/>\n      <point x=\"614\" y=\"700\" type=\"line\"/>\n      <point x=\"614\" y=\"718\" type=\"line\"/>\n      <point x=\"1985\" y=\"1314\" type=\"line\"/>\n      <point x=\"1906\" y=\"1355\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"2244\"/>\n    <component base=\"bar\" xOffset=\"3244\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"bar\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1725\" y=\"-26\" type=\"line\"/>\n      <point x=\"1725\" y=\"69\" type=\"line\"/>\n      <point x=\"260\" y=\"704\" type=\"line\"/>\n      <point x=\"260\" y=\"712\" type=\"line\"/>\n      <point x=\"1135\" y=\"1103\" type=\"line\"/>\n      <point x=\"1135\" y=\"1203\" type=\"line\"/>\n      <point x=\"177\" y=\"764\" type=\"line\"/>\n      <point x=\"177\" y=\"652\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1689\" y=\"-320\" type=\"line\"/>\n      <point x=\"1779\" y=\"-320\" type=\"line\"/>\n      <point x=\"1779\" y=\"69\" type=\"line\"/>\n      <point x=\"1689\" y=\"69\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1746\" y=\"-21\" type=\"line\"/>\n      <point x=\"2019\" y=\"-21\"/>\n      <point x=\"2154\" y=\"113\"/>\n      <point x=\"2154\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2154\" y=\"479\"/>\n      <point x=\"2080\" y=\"600\"/>\n      <point x=\"1922\" y=\"677\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1546\" y=\"861\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1451\" y=\"907\"/>\n      <point x=\"1404\" y=\"980\"/>\n      <point x=\"1404\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1404\" y=\"1261\"/>\n      <point x=\"1511\" y=\"1350\"/>\n      <point x=\"1728\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1850\" y=\"1350\"/>\n      <point x=\"1972\" y=\"1303\"/>\n      <point x=\"2096\" y=\"1208\" type=\"curve\"/>\n      <point x=\"2161\" y=\"1273\" type=\"line\"/>\n      <point x=\"2045\" y=\"1385\"/>\n      <point x=\"1901\" y=\"1440\"/>\n      <point x=\"1727\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1450\" y=\"1440\"/>\n      <point x=\"1312\" y=\"1317\"/>\n      <point x=\"1312\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1312\" y=\"939\"/>\n      <point x=\"1373\" y=\"843\"/>\n      <point x=\"1497\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1900\" y=\"578\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2010\" y=\"523\"/>\n      <point x=\"2062\" y=\"436\"/>\n      <point x=\"2062\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2062\" y=\"167\"/>\n      <point x=\"1957\" y=\"69\"/>\n      <point x=\"1746\" y=\"69\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1689\" y=\"1406\" type=\"line\"/>\n      <point x=\"1779\" y=\"1406\" type=\"line\"/>\n      <point x=\"1779\" y=\"1740\" type=\"line\"/>\n      <point x=\"1689\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_dollar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1725\" y=\"-26\" type=\"line\"/>\n      <point x=\"1725\" y=\"69\" type=\"line\"/>\n      <point x=\"260\" y=\"704\" type=\"line\"/>\n      <point x=\"260\" y=\"712\" type=\"line\"/>\n      <point x=\"1135\" y=\"1103\" type=\"line\"/>\n      <point x=\"1135\" y=\"1203\" type=\"line\"/>\n      <point x=\"177\" y=\"764\" type=\"line\"/>\n      <point x=\"177\" y=\"652\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1746\" y=\"-21\" type=\"line\"/>\n      <point x=\"2019\" y=\"-21\"/>\n      <point x=\"2154\" y=\"113\"/>\n      <point x=\"2154\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2154\" y=\"479\"/>\n      <point x=\"2080\" y=\"600\"/>\n      <point x=\"1922\" y=\"677\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1546\" y=\"861\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1451\" y=\"907\"/>\n      <point x=\"1404\" y=\"980\"/>\n      <point x=\"1404\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1404\" y=\"1261\"/>\n      <point x=\"1511\" y=\"1350\"/>\n      <point x=\"1728\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1850\" y=\"1350\"/>\n      <point x=\"1972\" y=\"1303\"/>\n      <point x=\"2096\" y=\"1208\" type=\"curve\"/>\n      <point x=\"2161\" y=\"1273\" type=\"line\"/>\n      <point x=\"2045\" y=\"1385\"/>\n      <point x=\"1901\" y=\"1440\"/>\n      <point x=\"1727\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1450\" y=\"1440\"/>\n      <point x=\"1312\" y=\"1317\"/>\n      <point x=\"1312\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1312\" y=\"939\"/>\n      <point x=\"1373\" y=\"843\"/>\n      <point x=\"1497\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1900\" y=\"578\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2010\" y=\"523\"/>\n      <point x=\"2062\" y=\"436\"/>\n      <point x=\"2062\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2062\" y=\"167\"/>\n      <point x=\"1957\" y=\"69\"/>\n      <point x=\"1746\" y=\"69\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1689\" y=\"-320\" type=\"line\"/>\n      <point x=\"1779\" y=\"-320\" type=\"line\"/>\n      <point x=\"1779\" y=\"1740\" type=\"line\"/>\n      <point x=\"1689\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar_greater.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1826\" y=\"-43\" type=\"line\"/>\n      <point x=\"1826\" y=\"52\" type=\"line\"/>\n      <point x=\"323\" y=\"704\" type=\"line\"/>\n      <point x=\"323\" y=\"712\" type=\"line\"/>\n      <point x=\"1198\" y=\"1103\" type=\"line\"/>\n      <point x=\"1198\" y=\"1203\" type=\"line\"/>\n      <point x=\"240\" y=\"764\" type=\"line\"/>\n      <point x=\"240\" y=\"652\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1751\" y=\"-320\" type=\"line\"/>\n      <point x=\"1845\" y=\"-320\" type=\"line\"/>\n      <point x=\"1845\" y=\"69\" type=\"line\"/>\n      <point x=\"1751\" y=\"69\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1766\" y=\"-21\" type=\"line\"/>\n      <point x=\"2068\" y=\"-21\"/>\n      <point x=\"2218\" y=\"110\"/>\n      <point x=\"2218\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2218\" y=\"479\"/>\n      <point x=\"2144\" y=\"600\"/>\n      <point x=\"1986\" y=\"677\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1610\" y=\"861\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1515\" y=\"907\"/>\n      <point x=\"1468\" y=\"980\"/>\n      <point x=\"1468\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1468\" y=\"1261\"/>\n      <point x=\"1575\" y=\"1350\"/>\n      <point x=\"1792\" y=\"1350\" type=\"curve\"/>\n      <point x=\"1792\" y=\"1440\" type=\"line\"/>\n      <point x=\"1514\" y=\"1440\"/>\n      <point x=\"1376\" y=\"1317\"/>\n      <point x=\"1376\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1376\" y=\"939\"/>\n      <point x=\"1437\" y=\"843\"/>\n      <point x=\"1561\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1964\" y=\"578\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2074\" y=\"523\"/>\n      <point x=\"2126\" y=\"436\"/>\n      <point x=\"2126\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2126\" y=\"164\"/>\n      <point x=\"2007\" y=\"69\"/>\n      <point x=\"1766\" y=\"69\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1751\" y=\"1350\" type=\"line\"/>\n      <point x=\"1845\" y=\"1350\" type=\"line\"/>\n      <point x=\"1845\" y=\"1740\" type=\"line\"/>\n      <point x=\"1751\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2402\" y=\"214\" type=\"line\"/>\n      <point x=\"3360\" y=\"653\" type=\"line\"/>\n      <point x=\"3360\" y=\"765\" type=\"line\"/>\n      <point x=\"1784\" y=\"1450\" type=\"line\"/>\n      <point x=\"1784\" y=\"1355\" type=\"line\"/>\n      <point x=\"3277\" y=\"713\" type=\"line\"/>\n      <point x=\"3277\" y=\"705\" type=\"line\"/>\n      <point x=\"2402\" y=\"314\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_dollar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1788\" y=\"-26\" type=\"line\"/>\n      <point x=\"1788\" y=\"69\" type=\"line\"/>\n      <point x=\"323\" y=\"704\" type=\"line\"/>\n      <point x=\"323\" y=\"712\" type=\"line\"/>\n      <point x=\"1198\" y=\"1103\" type=\"line\"/>\n      <point x=\"1198\" y=\"1203\" type=\"line\"/>\n      <point x=\"240\" y=\"764\" type=\"line\"/>\n      <point x=\"240\" y=\"652\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1766\" y=\"-21\" type=\"line\"/>\n      <point x=\"2068\" y=\"-21\"/>\n      <point x=\"2218\" y=\"110\"/>\n      <point x=\"2218\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2218\" y=\"479\"/>\n      <point x=\"2144\" y=\"600\"/>\n      <point x=\"1986\" y=\"677\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1610\" y=\"861\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1515\" y=\"907\"/>\n      <point x=\"1468\" y=\"980\"/>\n      <point x=\"1468\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1468\" y=\"1261\"/>\n      <point x=\"1575\" y=\"1350\"/>\n      <point x=\"1792\" y=\"1350\" type=\"curve\"/>\n      <point x=\"1791\" y=\"1440\" type=\"line\"/>\n      <point x=\"1514\" y=\"1440\"/>\n      <point x=\"1376\" y=\"1317\"/>\n      <point x=\"1376\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1376\" y=\"939\"/>\n      <point x=\"1437\" y=\"843\"/>\n      <point x=\"1561\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1964\" y=\"578\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2074\" y=\"523\"/>\n      <point x=\"2126\" y=\"436\"/>\n      <point x=\"2126\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2126\" y=\"164\"/>\n      <point x=\"2007\" y=\"69\"/>\n      <point x=\"1766\" y=\"69\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1751\" y=\"-320\" type=\"line\"/>\n      <point x=\"1845\" y=\"-320\" type=\"line\"/>\n      <point x=\"1845\" y=\"1740\" type=\"line\"/>\n      <point x=\"1751\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2402\" y=\"214\" type=\"line\"/>\n      <point x=\"3360\" y=\"653\" type=\"line\"/>\n      <point x=\"3360\" y=\"765\" type=\"line\"/>\n      <point x=\"1812\" y=\"1437\" type=\"line\"/>\n      <point x=\"1812\" y=\"1342\" type=\"line\"/>\n      <point x=\"3277\" y=\"713\" type=\"line\"/>\n      <point x=\"3277\" y=\"705\" type=\"line\"/>\n      <point x=\"2402\" y=\"314\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1950\" y=\"484\" type=\"line\"/>\n      <point x=\"1950\" y=\"584\" type=\"line\"/>\n      <point x=\"604\" y=\"955\" type=\"line\"/>\n      <point x=\"604\" y=\"963\" type=\"line\"/>\n      <point x=\"1950\" y=\"1334\" type=\"line\"/>\n      <point x=\"1950\" y=\"1434\" type=\"line\"/>\n      <point x=\"506\" y=\"1015\" type=\"line\"/>\n      <point x=\"506\" y=\"903\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"194\" type=\"line\"/>\n      <point x=\"1950\" y=\"194\" type=\"line\"/>\n      <point x=\"1950\" y=\"284\" type=\"line\"/>\n      <point x=\"506\" y=\"284\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"414\" type=\"line\"/>\n      <point x=\"610\" y=\"414\" type=\"line\"/>\n      <point x=\"610\" y=\"504\" type=\"line\"/>\n      <point x=\"-20\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"914\" type=\"line\"/>\n      <point x=\"610\" y=\"914\" type=\"line\"/>\n      <point x=\"610\" y=\"1004\" type=\"line\"/>\n      <point x=\"-20\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"963\" y=\"30\" type=\"line\"/>\n      <point x=\"1027\" y=\"87\" type=\"line\"/>\n      <point x=\"610\" y=\"504\" type=\"line\"/>\n      <point x=\"494\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"494\" y=\"914\" type=\"line\"/>\n      <point x=\"610\" y=\"914\" type=\"line\"/>\n      <point x=\"1015\" y=\"1335\" type=\"line\"/>\n      <point x=\"951\" y=\"1392\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"equal_middle.seq\" xScale=\"-1\" xOffset=\"1200\"/>\n    <component base=\"less.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1220\" y=\"414\" type=\"line\"/>\n      <point x=\"1220\" y=\"504\" type=\"line\"/>\n      <point x=\"306\" y=\"504\" type=\"line\"/>\n      <point x=\"406\" y=\"414\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1220\" y=\"914\" type=\"line\"/>\n      <point x=\"1220\" y=\"1004\" type=\"line\"/>\n      <point x=\"406\" y=\"1004\" type=\"line\"/>\n      <point x=\"306\" y=\"914\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-176\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_exclam_hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"312\" y=\"664\" type=\"line\"/>\n      <point x=\"1598\" y=\"664\" type=\"line\"/>\n      <point x=\"1598\" y=\"754\" type=\"line\"/>\n      <point x=\"312\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2318\" y=\"663\" type=\"line\"/>\n      <point x=\"4520\" y=\"663\" type=\"line\"/>\n      <point x=\"4520\" y=\"753\" type=\"line\"/>\n      <point x=\"2318\" y=\"753\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\"/>\n    <component base=\"exclam\" xOffset=\"1360\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1210\" y=\"214\" type=\"line\"/>\n      <point x=\"2120\" y=\"653\" type=\"line\"/>\n      <point x=\"2120\" y=\"765\" type=\"line\"/>\n      <point x=\"1210\" y=\"1204\" type=\"line\"/>\n      <point x=\"300\" y=\"765\" type=\"line\"/>\n      <point x=\"300\" y=\"653\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1210\" y=\"314\" type=\"line\"/>\n      <point x=\"378\" y=\"705\" type=\"line\"/>\n      <point x=\"378\" y=\"713\" type=\"line\"/>\n      <point x=\"1210\" y=\"1104\" type=\"line\"/>\n      <point x=\"2042\" y=\"713\" type=\"line\"/>\n      <point x=\"2042\" y=\"705\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"400\" y=\"664\" type=\"line\"/>\n      <point x=\"400\" y=\"754\" type=\"line\"/>\n      <point x=\"-20\" y=\"754\" type=\"line\"/>\n      <point x=\"-20\" y=\"664\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"67\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hyphen_middle.seq\" xScale=\"-1\" xOffset=\"1200\"/>\n    <component base=\"less.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1220\" y=\"664\" type=\"line\"/>\n      <point x=\"1220\" y=\"754\" type=\"line\"/>\n      <point x=\"134\" y=\"754\" type=\"line\"/>\n      <point x=\"134\" y=\"664\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-176\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1199\" y=\"214\" type=\"line\"/>\n      <point x=\"1199\" y=\"309\" type=\"line\"/>\n      <point x=\"318\" y=\"705\" type=\"line\"/>\n      <point x=\"318\" y=\"713\" type=\"line\"/>\n      <point x=\"1199\" y=\"1109\" type=\"line\"/>\n      <point x=\"1199\" y=\"1204\" type=\"line\"/>\n      <point x=\"240\" y=\"765\" type=\"line\"/>\n      <point x=\"240\" y=\"653\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2120\" y=\"214\" type=\"line\"/>\n      <point x=\"2120\" y=\"309\" type=\"line\"/>\n      <point x=\"1240\" y=\"705\" type=\"line\"/>\n      <point x=\"1240\" y=\"713\" type=\"line\"/>\n      <point x=\"2120\" y=\"1109\" type=\"line\"/>\n      <point x=\"2120\" y=\"1204\" type=\"line\"/>\n      <point x=\"1162\" y=\"765\" type=\"line\"/>\n      <point x=\"1162\" y=\"653\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"equal\" xOffset=\"2344\"/>\n    <component base=\"less\" xOffset=\"1159\"/>\n    <component base=\"less\" xOffset=\"31\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"414\" type=\"line\"/>\n      <point x=\"980\" y=\"414\" type=\"line\"/>\n      <point x=\"980\" y=\"504\" type=\"line\"/>\n      <point x=\"-20\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"914\" type=\"line\"/>\n      <point x=\"980\" y=\"914\" type=\"line\"/>\n      <point x=\"980\" y=\"1004\" type=\"line\"/>\n      <point x=\"-20\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1333\" y=\"30\" type=\"line\"/>\n      <point x=\"1397\" y=\"87\" type=\"line\"/>\n      <point x=\"980\" y=\"504\" type=\"line\"/>\n      <point x=\"864\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"864\" y=\"914\" type=\"line\"/>\n      <point x=\"980\" y=\"914\" type=\"line\"/>\n      <point x=\"1385\" y=\"1335\" type=\"line\"/>\n      <point x=\"1321\" y=\"1392\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"1061\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"914\" type=\"line\"/>\n      <point x=\"743\" y=\"914\" type=\"line\"/>\n      <point x=\"743\" y=\"1004\" type=\"line\"/>\n      <point x=\"-50\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"414\" type=\"line\"/>\n      <point x=\"743\" y=\"414\" type=\"line\"/>\n      <point x=\"743\" y=\"504\" type=\"line\"/>\n      <point x=\"-50\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1306\" y=\"914\" type=\"line\"/>\n      <point x=\"2450\" y=\"914\" type=\"line\"/>\n      <point x=\"2450\" y=\"1004\" type=\"line\"/>\n      <point x=\"1406\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1406\" y=\"414\" type=\"line\"/>\n      <point x=\"2450\" y=\"414\" type=\"line\"/>\n      <point x=\"2450\" y=\"504\" type=\"line\"/>\n      <point x=\"1306\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"627\" y=\"914\" type=\"line\"/>\n      <point x=\"743\" y=\"914\" type=\"line\"/>\n      <point x=\"1148\" y=\"1335\" type=\"line\"/>\n      <point x=\"1084\" y=\"1392\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1096\" y=\"30\" type=\"line\"/>\n      <point x=\"1160\" y=\"87\" type=\"line\"/>\n      <point x=\"743\" y=\"504\" type=\"line\"/>\n      <point x=\"627\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"824\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2420\" y=\"414\" type=\"line\"/>\n      <point x=\"2420\" y=\"504\" type=\"line\"/>\n      <point x=\"1099\" y=\"504\" type=\"line\"/>\n      <point x=\"1199\" y=\"414\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2420\" y=\"914\" type=\"line\"/>\n      <point x=\"2420\" y=\"1004\" type=\"line\"/>\n      <point x=\"1199\" y=\"1004\" type=\"line\"/>\n      <point x=\"1099\" y=\"914\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-16\"/>\n    <component base=\"less.alt\" xOffset=\"624\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"664\" type=\"line\"/>\n      <point x=\"749\" y=\"664\" type=\"line\"/>\n      <point x=\"749\" y=\"754\" type=\"line\"/>\n      <point x=\"-20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"426\"/>\n    <component base=\"less.alt\" xOffset=\"1061\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1307\" y=\"664\" type=\"line\"/>\n      <point x=\"2450\" y=\"664\" type=\"line\"/>\n      <point x=\"2450\" y=\"754\" type=\"line\"/>\n      <point x=\"1307\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"664\" type=\"line\"/>\n      <point x=\"650\" y=\"664\" type=\"line\"/>\n      <point x=\"650\" y=\"754\" type=\"line\"/>\n      <point x=\"-50\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"330\"/>\n    <component base=\"less.alt\" xOffset=\"964\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"943\" y=\"664\" type=\"line\"/>\n      <point x=\"2420\" y=\"664\" type=\"line\"/>\n      <point x=\"2420\" y=\"754\" type=\"line\"/>\n      <point x=\"943\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-16\"/>\n    <component base=\"less.alt\" xOffset=\"624\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"2266\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"less\" xOffset=\"1220\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"plus\" xOffset=\"1152\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_plus_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_plus_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2256\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"plus\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1531\" y=\"64\" type=\"line\"/>\n      <point x=\"1531\" y=\"159\" type=\"line\"/>\n      <point x=\"323\" y=\"705\" type=\"line\"/>\n      <point x=\"323\" y=\"713\" type=\"line\"/>\n      <point x=\"1218\" y=\"1104\" type=\"line\"/>\n      <point x=\"1218\" y=\"1204\" type=\"line\"/>\n      <point x=\"240\" y=\"765\" type=\"line\"/>\n      <point x=\"240\" y=\"653\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"1144\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/less_slash_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_slash_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2402\" y=\"214\" type=\"line\"/>\n      <point x=\"3360\" y=\"653\" type=\"line\"/>\n      <point x=\"3360\" y=\"765\" type=\"line\"/>\n      <point x=\"2120\" y=\"1331\" type=\"line\"/>\n      <point x=\"2120\" y=\"1236\" type=\"line\"/>\n      <point x=\"3277\" y=\"713\" type=\"line\"/>\n      <point x=\"3277\" y=\"705\" type=\"line\"/>\n      <point x=\"2402\" y=\"314\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1565\" y=\"48\" type=\"line\"/>\n      <point x=\"1565\" y=\"143\" type=\"line\"/>\n      <point x=\"323\" y=\"705\" type=\"line\"/>\n      <point x=\"323\" y=\"713\" type=\"line\"/>\n      <point x=\"1218\" y=\"1104\" type=\"line\"/>\n      <point x=\"1218\" y=\"1204\" type=\"line\"/>\n      <point x=\"240\" y=\"765\" type=\"line\"/>\n      <point x=\"240\" y=\"653\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lessequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lessequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2264\"/>\n  <outline>\n    <contour>\n      <point x=\"1053\" y=\"364\" type=\"line\"/>\n      <point x=\"1053\" y=\"459\" type=\"line\"/>\n      <point x=\"221\" y=\"755\" type=\"line\"/>\n      <point x=\"221\" y=\"763\" type=\"line\"/>\n      <point x=\"1053\" y=\"1059\" type=\"line\"/>\n      <point x=\"1053\" y=\"1154\" type=\"line\"/>\n      <point x=\"143\" y=\"815\" type=\"line\"/>\n      <point x=\"143\" y=\"703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"151\" type=\"line\"/>\n      <point x=\"1053\" y=\"151\" type=\"line\"/>\n      <point x=\"1053\" y=\"241\" type=\"line\"/>\n      <point x=\"143\" y=\"241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lineF_eedC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineFeedControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240A\"/>\n  <outline>\n    <component base=\"L.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"F.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lineF_eedC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineFeedControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"1144\" type=\"line\"/>\n      <point x=\"1125\" y=\"1144\" type=\"line\"/>\n      <point x=\"1125\" y=\"1234\" type=\"line\"/>\n      <point x=\"75\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"184\" type=\"line\"/>\n      <point x=\"1125\" y=\"184\" type=\"line\"/>\n      <point x=\"1125\" y=\"274\" type=\"line\"/>\n      <point x=\"75\" y=\"274\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"664\" type=\"line\"/>\n      <point x=\"1125\" y=\"664\" type=\"line\"/>\n      <point x=\"1125\" y=\"754\" type=\"line\"/>\n      <point x=\"75\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lineseparator.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineseparator\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2028\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lira.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lira\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A4\"/>\n  <outline>\n    <contour>\n      <point x=\"144\" y=\"0\" type=\"line\"/>\n      <point x=\"239\" y=\"0\" type=\"line\"/>\n      <point x=\"239\" y=\"90\" type=\"line\"/>\n      <point x=\"338\" y=\"275\"/>\n      <point x=\"386\" y=\"441\"/>\n      <point x=\"386\" y=\"627\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"1035\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"1239\"/>\n      <point x=\"523\" y=\"1350\"/>\n      <point x=\"722\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"1350\"/>\n      <point x=\"955\" y=\"1282\"/>\n      <point x=\"1025\" y=\"1164\" type=\"curve\"/>\n      <point x=\"1103\" y=\"1221\" type=\"line\"/>\n      <point x=\"1030\" y=\"1360\"/>\n      <point x=\"894\" y=\"1440\"/>\n      <point x=\"730\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"1440\"/>\n      <point x=\"292\" y=\"1294\"/>\n      <point x=\"292\" y=\"1036\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"627\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"441\"/>\n      <point x=\"244\" y=\"278\"/>\n      <point x=\"144\" y=\"90\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"90\" type=\"line\"/>\n      <point x=\"204\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"121\" y=\"495\" type=\"line\"/>\n      <point x=\"885\" y=\"495\" type=\"line\"/>\n      <point x=\"885\" y=\"585\" type=\"line\"/>\n      <point x=\"121\" y=\"585\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"121\" y=\"755\" type=\"line\"/>\n      <point x=\"885\" y=\"755\" type=\"line\"/>\n      <point x=\"885\" y=\"845\" type=\"line\"/>\n      <point x=\"121\" y=\"845\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/liraT_urkish.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"liraTurkish\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BA\"/>\n  <outline>\n    <contour>\n      <point x=\"718\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"-20\"/>\n      <point x=\"963\" y=\"18\"/>\n      <point x=\"1102\" y=\"107\" type=\"curve\"/>\n      <point x=\"1062\" y=\"184\" type=\"line\"/>\n      <point x=\"938\" y=\"104\"/>\n      <point x=\"836\" y=\"70\"/>\n      <point x=\"718\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"70\"/>\n      <point x=\"467\" y=\"151\"/>\n      <point x=\"467\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"1420\" type=\"line\"/>\n      <point x=\"373\" y=\"1420\" type=\"line\"/>\n      <point x=\"373\" y=\"330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"84\"/>\n      <point x=\"476\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"144\" y=\"493\" type=\"line\"/>\n      <point x=\"998\" y=\"639\" type=\"line\"/>\n      <point x=\"998\" y=\"733\" type=\"line\"/>\n      <point x=\"144\" y=\"587\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"144\" y=\"823\" type=\"line\"/>\n      <point x=\"998\" y=\"969\" type=\"line\"/>\n      <point x=\"998\" y=\"1063\" type=\"line\"/>\n      <point x=\"144\" y=\"917\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/literS_ign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"literSign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2113\"/>\n  <outline>\n    <contour>\n      <point x=\"956\" y=\"0\" type=\"curve\"/>\n      <point x=\"970\" y=\"90\" type=\"line\"/>\n      <point x=\"607\" y=\"90\"/>\n      <point x=\"368\" y=\"352\"/>\n      <point x=\"368\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"368\" y=\"1132\"/>\n      <point x=\"500\" y=\"1350\"/>\n      <point x=\"730\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"1350\"/>\n      <point x=\"970\" y=\"1237\"/>\n      <point x=\"970\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"970\" y=\"663\"/>\n      <point x=\"633\" y=\"447\"/>\n      <point x=\"44\" y=\"447\" type=\"curve\"/>\n      <point x=\"44\" y=\"357\" type=\"line\"/>\n      <point x=\"690\" y=\"357\"/>\n      <point x=\"1060\" y=\"606\"/>\n      <point x=\"1060\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"1294\"/>\n      <point x=\"940\" y=\"1440\"/>\n      <point x=\"730\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1440\"/>\n      <point x=\"276\" y=\"1189\"/>\n      <point x=\"276\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"298\"/>\n      <point x=\"546\" y=\"0\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0459\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"87\" y=\"0\" type=\"line\"/>\n      <point x=\"264\" y=\"0\"/>\n      <point x=\"339\" y=\"81\"/>\n      <point x=\"339\" y=\"271\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"1060\" type=\"line\"/>\n      <point x=\"245\" y=\"1060\" type=\"line\"/>\n      <point x=\"245\" y=\"264\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"245\" y=\"142\"/>\n      <point x=\"198\" y=\"90\"/>\n      <point x=\"87\" y=\"90\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"620\" y=\"0\" type=\"line\"/>\n      <point x=\"714\" y=\"0\" type=\"line\"/>\n      <point x=\"714\" y=\"1060\" type=\"line\"/>\n      <point x=\"620\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"700\" y=\"0\" type=\"line\"/>\n      <point x=\"841\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"0\"/>\n      <point x=\"1147\" y=\"130\"/>\n      <point x=\"1147\" y=\"358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1147\" y=\"586\"/>\n      <point x=\"1036\" y=\"716\"/>\n      <point x=\"841\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"716\" type=\"line\"/>\n      <point x=\"679\" y=\"626\" type=\"line\"/>\n      <point x=\"823\" y=\"626\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"626\"/>\n      <point x=\"1051\" y=\"529\"/>\n      <point x=\"1051\" y=\"358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"187\"/>\n      <point x=\"968\" y=\"90\"/>\n      <point x=\"823\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"287\" y=\"970\" type=\"line\"/>\n      <point x=\"676\" y=\"970\" type=\"line\"/>\n      <point x=\"676\" y=\"1060\" type=\"line\"/>\n      <point x=\"287\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/llinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"llinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E3B\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lmiddletilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lmiddletilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026B\"/>\n  <outline>\n    <contour>\n      <point x=\"103\" y=\"589\" type=\"line\"/>\n      <point x=\"185\" y=\"589\" type=\"line\"/>\n      <point x=\"185\" y=\"701\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"185\" y=\"798\"/>\n      <point x=\"219\" y=\"840\"/>\n      <point x=\"299\" y=\"840\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"840\"/>\n      <point x=\"408\" y=\"815\"/>\n      <point x=\"509\" y=\"731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"622\" y=\"638\"/>\n      <point x=\"663\" y=\"616\"/>\n      <point x=\"752\" y=\"616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"616\"/>\n      <point x=\"925\" y=\"683\"/>\n      <point x=\"925\" y=\"840\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"925\" y=\"944\" type=\"line\"/>\n      <point x=\"843\" y=\"944\" type=\"line\"/>\n      <point x=\"843\" y=\"832\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"735\"/>\n      <point x=\"816\" y=\"693\"/>\n      <point x=\"751\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"697\" y=\"693\"/>\n      <point x=\"646\" y=\"715\"/>\n      <point x=\"542\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"895\"/>\n      <point x=\"376\" y=\"917\"/>\n      <point x=\"300\" y=\"917\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"162\" y=\"917\"/>\n      <point x=\"103\" y=\"850\"/>\n      <point x=\"103\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/logicalnot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"logicalnot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AC\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"813\" type=\"line\"/>\n      <point x=\"1076\" y=\"813\" type=\"line\"/>\n      <point x=\"1076\" y=\"903\" type=\"line\"/>\n      <point x=\"124\" y=\"903\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"982\" y=\"350\" type=\"line\"/>\n      <point x=\"1076\" y=\"350\" type=\"line\"/>\n      <point x=\"1076\" y=\"867\" type=\"line\"/>\n      <point x=\"982\" y=\"867\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/logicalnotR_eversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"logicalnotReversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2310\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"813\" type=\"line\"/>\n      <point x=\"1076\" y=\"813\" type=\"line\"/>\n      <point x=\"1076\" y=\"903\" type=\"line\"/>\n      <point x=\"124\" y=\"903\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"350\" type=\"line\"/>\n      <point x=\"218\" y=\"350\" type=\"line\"/>\n      <point x=\"218\" y=\"867\" type=\"line\"/>\n      <point x=\"124\" y=\"867\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/longs.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"longs\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017F\"/>\n  <anchor x=\"548\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"780\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"502\" y=\"0\" type=\"line\"/>\n      <point x=\"594\" y=\"0\" type=\"line\"/>\n      <point x=\"594\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"1280\"/>\n      <point x=\"708\" y=\"1428\"/>\n      <point x=\"938\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"1428\"/>\n      <point x=\"1044\" y=\"1424\"/>\n      <point x=\"1118\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1140\" y=\"1500\" type=\"line\"/>\n      <point x=\"1074\" y=\"1514\"/>\n      <point x=\"1015\" y=\"1520\"/>\n      <point x=\"944\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"648\" y=\"1520\"/>\n      <point x=\"502\" y=\"1338\"/>\n      <point x=\"502\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"92\" y=\"688\" type=\"line\"/>\n      <point x=\"564\" y=\"688\" type=\"line\"/>\n      <point x=\"564\" y=\"778\" type=\"line\"/>\n      <point x=\"92\" y=\"778\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2585\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E1\"/>\n  <note>\nuni25E1\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"1029\" y=\"710\" type=\"line\"/>\n      <point x=\"1029\" y=\"449\"/>\n      <point x=\"859\" y=\"277\"/>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"277\"/>\n      <point x=\"171\" y=\"449\"/>\n      <point x=\"171\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D2\"/>\n  <note>\nuni25D2\n</note>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"222\" type=\"line\"/>\n      <point x=\"984\" y=\"369\" type=\"line\"/>\n      <point x=\"1065\" y=\"710\" type=\"line\"/>\n      <point x=\"135\" y=\"710\" type=\"line\"/>\n      <point x=\"241\" y=\"369\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2584\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfInverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DB\"/>\n  <note>\nuni25DB\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"185\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"277\"/>\n      <point x=\"1029\" y=\"449\"/>\n      <point x=\"1029\" y=\"710\" type=\"curve\"/>\n      <point x=\"171\" y=\"710\" type=\"line\"/>\n      <point x=\"171\" y=\"449\"/>\n      <point x=\"341\" y=\"277\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B12\"/>\n  <note>\nuni2B12\n</note>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"1195\" type=\"line\"/>\n      <point x=\"125\" y=\"1195\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DF\"/>\n  <note>\nuni25DF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\"/>\n      <point x=\"600\" y=\"277\" type=\"line\"/>\n      <point x=\"341\" y=\"277\"/>\n      <point x=\"171\" y=\"449\"/>\n      <point x=\"171\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E3\"/>\n  <note>\nuni25E3\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2596\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B14\"/>\n  <note>\nuni2B14\n</note>\n  <outline>\n    <contour>\n      <point x=\"111\" y=\"1209\" type=\"line\"/>\n      <point x=\"1090\" y=\"221\" type=\"line\"/>\n      <point x=\"1090\" y=\"1209\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F5\"/>\n  <note>\nuni25F5\n</note>\n  <outline>\n    <contour>\n      <point x=\"555\" y=\"263\" type=\"line\"/>\n      <point x=\"645\" y=\"263\" type=\"line\"/>\n      <point x=\"645\" y=\"757\" type=\"line\"/>\n      <point x=\"142\" y=\"757\" type=\"line\"/>\n      <point x=\"142\" y=\"663\" type=\"line\"/>\n      <point x=\"555\" y=\"663\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FA\"/>\n  <note>\nuni25FA\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"86\" y=\"1092\" type=\"line\"/>\n      <point x=\"974\" y=\"204\" type=\"line\"/>\n      <point x=\"974\" y=\"275\" type=\"line\"/>\n      <point x=\"94\" y=\"275\" type=\"line\"/>\n      <point x=\"169\" y=\"204\" type=\"line\"/>\n      <point x=\"169\" y=\"1094\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2581\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2582\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DE\"/>\n  <note>\nuni25DE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"line\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"1029\" y=\"710\" type=\"line\"/>\n      <point x=\"1029\" y=\"449\"/>\n      <point x=\"859\" y=\"277\"/>\n      <point x=\"600\" y=\"277\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E2\"/>\n  <note>\nuni25E2\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2597\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightDiagonalHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EA\"/>\n  <note>\nuni25EA\n</note>\n  <outline>\n    <contour>\n      <point x=\"1099\" y=\"1199\" type=\"line\"/>\n      <point x=\"111\" y=\"220\" type=\"line\"/>\n      <point x=\"1099\" y=\"220\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F6\"/>\n  <note>\nuni25F6\n</note>\n  <outline>\n    <contour>\n      <point x=\"555\" y=\"263\" type=\"line\"/>\n      <point x=\"645\" y=\"263\" type=\"line\"/>\n      <point x=\"645\" y=\"663\" type=\"line\"/>\n      <point x=\"1058\" y=\"663\" type=\"line\"/>\n      <point x=\"1058\" y=\"757\" type=\"line\"/>\n      <point x=\"555\" y=\"757\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FF\"/>\n  <note>\nuni25FF\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1114\" y=\"1092\" type=\"line\"/>\n      <point x=\"1031\" y=\"1094\" type=\"line\"/>\n      <point x=\"1031\" y=\"204\" type=\"line\"/>\n      <point x=\"1106\" y=\"275\" type=\"line\"/>\n      <point x=\"226\" y=\"275\" type=\"line\"/>\n      <point x=\"226\" y=\"204\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2587\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2583\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2586\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowernumeral-greek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowernumeral-greek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0375\"/>\n  <outline>\n    <component base=\"comma\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lowlinecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowlinecomb\" format=\"2\">\n  <unicode hex=\"0332\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"-298\" type=\"line\"/>\n      <point x=\"1250\" y=\"-298\" type=\"line\"/>\n      <point x=\"1250\" y=\"-208\" type=\"line\"/>\n      <point x=\"-50\" y=\"-208\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CA\"/>\n  <outline>\n    <contour>\n      <point x=\"529\" y=\"0\" type=\"line\"/>\n      <point x=\"661\" y=\"0\" type=\"line\"/>\n      <point x=\"1120\" y=\"710\" type=\"line\"/>\n      <point x=\"661\" y=\"1420\" type=\"line\"/>\n      <point x=\"529\" y=\"1420\" type=\"line\"/>\n      <point x=\"80\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"52\" type=\"line\"/>\n      <point x=\"192\" y=\"710\" type=\"line\"/>\n      <point x=\"595\" y=\"1368\" type=\"line\"/>\n      <point x=\"1008\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/lslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0142\"/>\n  <outline>\n    <contour>\n      <point x=\"128\" y=\"455\" type=\"line\"/>\n      <point x=\"934\" y=\"954\" type=\"line\"/>\n      <point x=\"934\" y=\"1060\" type=\"line\"/>\n      <point x=\"128\" y=\"561\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/m.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"m\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006D\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"970\" y=\"0\" type=\"line\"/>\n      <point x=\"1064\" y=\"0\" type=\"line\"/>\n      <point x=\"1064\" y=\"830\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1064\" y=\"997\"/>\n      <point x=\"992\" y=\"1080\"/>\n      <point x=\"848\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"1080\"/>\n      <point x=\"666\" y=\"1030\"/>\n      <point x=\"645\" y=\"928\" type=\"curve\"/>\n      <point x=\"575\" y=\"928\" type=\"line\"/>\n      <point x=\"647\" y=\"776\" type=\"line\"/>\n      <point x=\"647\" y=\"917\"/>\n      <point x=\"705\" y=\"988\"/>\n      <point x=\"824\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"988\"/>\n      <point x=\"970\" y=\"930\"/>\n      <point x=\"970\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"136\" y=\"0\" type=\"line\"/>\n      <point x=\"230\" y=\"0\" type=\"line\"/>\n      <point x=\"230\" y=\"836\" type=\"line\"/>\n      <point x=\"216\" y=\"1060\" type=\"line\"/>\n      <point x=\"136\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"850\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1004\"/>\n      <point x=\"579\" y=\"1080\"/>\n      <point x=\"442\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"1080\"/>\n      <point x=\"255\" y=\"1030\"/>\n      <point x=\"231\" y=\"928\" type=\"curve\"/>\n      <point x=\"168\" y=\"928\" type=\"line\"/>\n      <point x=\"230\" y=\"776\" type=\"line\"/>\n      <point x=\"230\" y=\"917\"/>\n      <point x=\"289\" y=\"988\"/>\n      <point x=\"406\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"504\" y=\"988\"/>\n      <point x=\"553\" y=\"935\"/>\n      <point x=\"553\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AF\"/>\n  <outline>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/macronbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macronbelowcomb\" format=\"2\">\n  <unicode hex=\"0331\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"196\" y=\"-298\" type=\"line\"/>\n      <point x=\"1004\" y=\"-298\" type=\"line\"/>\n      <point x=\"1004\" y=\"-208\" type=\"line\"/>\n      <point x=\"196\" y=\"-208\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/macroncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macroncomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1678\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"213\" y=\"1630\" type=\"line\"/>\n      <point x=\"987\" y=\"1630\" type=\"line\"/>\n      <point x=\"987\" y=\"1718\" type=\"line\"/>\n      <point x=\"213\" y=\"1718\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/macroncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macroncomb\" format=\"2\">\n  <unicode hex=\"0304\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1298\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"196\" y=\"1248\" type=\"line\"/>\n      <point x=\"1004\" y=\"1248\" type=\"line\"/>\n      <point x=\"1004\" y=\"1338\" type=\"line\"/>\n      <point x=\"196\" y=\"1338\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/madda-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"madda-ar\" format=\"2\">\n  <unicode hex=\"0653\"/>\n  <anchor x=\"603\" y=\"1140\" name=\"_top\"/>\n  <anchor x=\"603\" y=\"1123\" name=\"_top.dot\"/>\n  <anchor x=\"603\" y=\"1455\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"680\" y=\"1204\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"1204\"/>\n      <point x=\"845\" y=\"1236\"/>\n      <point x=\"909\" y=\"1291\" type=\"curve\"/>\n      <point x=\"899\" y=\"1379\" type=\"line\"/>\n      <point x=\"825\" y=\"1332\"/>\n      <point x=\"766\" y=\"1298\"/>\n      <point x=\"691\" y=\"1298\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"598\" y=\"1298\"/>\n      <point x=\"535\" y=\"1365\"/>\n      <point x=\"446\" y=\"1365\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"1365\"/>\n      <point x=\"349\" y=\"1353\"/>\n      <point x=\"294\" y=\"1293\" type=\"curve\"/>\n      <point x=\"303\" y=\"1209\" type=\"line\"/>\n      <point x=\"354\" y=\"1247\"/>\n      <point x=\"383\" y=\"1271\"/>\n      <point x=\"433\" y=\"1271\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"1271\"/>\n      <point x=\"562\" y=\"1204\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/manat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"manat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BC\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n      <point x=\"196\" y=\"0\" type=\"line\"/>\n      <point x=\"196\" y=\"600\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"870\"/>\n      <point x=\"331\" y=\"1004\"/>\n      <point x=\"600\" y=\"1004\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"1004\"/>\n      <point x=\"1004\" y=\"870\"/>\n      <point x=\"1004\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"600\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"930\"/>\n      <point x=\"932\" y=\"1094\"/>\n      <point x=\"600\" y=\"1094\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"1094\"/>\n      <point x=\"100\" y=\"930\"/>\n      <point x=\"100\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1420\" type=\"line\"/>\n      <point x=\"553\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/maqaf-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"maqaf-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05BE\"/>\n  <outline>\n    <contour>\n      <point x=\"943\" y=\"1200\" type=\"line\"/>\n      <point x=\"257\" y=\"1200\" type=\"line\"/>\n      <point x=\"257\" y=\"1101\" type=\"line\"/>\n      <point x=\"943\" y=\"1101\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/mars.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mars\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2642\"/>\n  <outline>\n    <contour>\n      <point x=\"482\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"749\" y=\"-20\"/>\n      <point x=\"904\" y=\"162\"/>\n      <point x=\"904\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"785\"/>\n      <point x=\"749\" y=\"960\"/>\n      <point x=\"482\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"215\" y=\"960\"/>\n      <point x=\"60\" y=\"785\"/>\n      <point x=\"60\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"60\" y=\"162\"/>\n      <point x=\"215\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"482\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"273\" y=\"72\"/>\n      <point x=\"156\" y=\"219\"/>\n      <point x=\"156\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"156\" y=\"728\"/>\n      <point x=\"273\" y=\"868\"/>\n      <point x=\"482\" y=\"868\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"868\"/>\n      <point x=\"808\" y=\"728\"/>\n      <point x=\"808\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"219\"/>\n      <point x=\"691\" y=\"72\"/>\n    </contour>\n    <contour>\n      <point x=\"659\" y=\"837\" type=\"line\"/>\n      <point x=\"1116\" y=\"1327\" type=\"line\"/>\n      <point x=\"1052\" y=\"1377\" type=\"line\"/>\n      <point x=\"589\" y=\"896\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1052\" y=\"830\" type=\"line\"/>\n      <point x=\"1146\" y=\"830\" type=\"line\"/>\n      <point x=\"1146\" y=\"1410\" type=\"line\"/>\n      <point x=\"990\" y=\"1410\" type=\"line\"/>\n      <point x=\"1021\" y=\"1347\" type=\"line\"/>\n      <point x=\"1083\" y=\"1285\" type=\"line\"/>\n      <point x=\"1061\" y=\"1204\"/>\n      <point x=\"1052\" y=\"1141\"/>\n      <point x=\"1052\" y=\"1096\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"566\" y=\"1316\" type=\"line\"/>\n      <point x=\"832\" y=\"1316\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"1316\"/>\n      <point x=\"940\" y=\"1325\"/>\n      <point x=\"1021\" y=\"1347\" type=\"curve\"/>\n      <point x=\"1083\" y=\"1285\" type=\"line\"/>\n      <point x=\"1146\" y=\"1254\" type=\"line\"/>\n      <point x=\"1146\" y=\"1410\" type=\"line\"/>\n      <point x=\"566\" y=\"1410\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumB_lackS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumBlackSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FE\"/>\n  <note>\nuni25FE\n</note>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FC\"/>\n  <note>\nuni25FC\n</note>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"1160\" type=\"line\"/>\n      <point x=\"150\" y=\"1160\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumW_hiteS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumWhiteSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FD\"/>\n  <note>\nuni25FD\n</note>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"319\" y=\"425\" type=\"line\"/>\n      <point x=\"319\" y=\"995\" type=\"line\"/>\n      <point x=\"881\" y=\"995\" type=\"line\"/>\n      <point x=\"881\" y=\"425\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FB\"/>\n  <note>\nuni25FB\n</note>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"1160\" type=\"line\"/>\n      <point x=\"150\" y=\"1160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"244\" y=\"350\" type=\"line\"/>\n      <point x=\"244\" y=\"1070\" type=\"line\"/>\n      <point x=\"956\" y=\"1070\" type=\"line\"/>\n      <point x=\"956\" y=\"350\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumleftpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumleftpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276C\"/>\n  <outline>\n    <contour>\n      <point x=\"844\" y=\"0\" type=\"line\"/>\n      <point x=\"965\" y=\"0\" type=\"line\"/>\n      <point x=\"366\" y=\"701\" type=\"line\"/>\n      <point x=\"366\" y=\"719\" type=\"line\"/>\n      <point x=\"965\" y=\"1420\" type=\"line\"/>\n      <point x=\"844\" y=\"1420\" type=\"line\"/>\n      <point x=\"245\" y=\"719\" type=\"line\"/>\n      <point x=\"245\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumrightpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumrightpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276D\"/>\n  <outline>\n    <contour>\n      <point x=\"235\" y=\"0\" type=\"line\"/>\n      <point x=\"356\" y=\"0\" type=\"line\"/>\n      <point x=\"955\" y=\"701\" type=\"line\"/>\n      <point x=\"955\" y=\"719\" type=\"line\"/>\n      <point x=\"356\" y=\"1420\" type=\"line\"/>\n      <point x=\"235\" y=\"1420\" type=\"line\"/>\n      <point x=\"834\" y=\"719\" type=\"line\"/>\n      <point x=\"834\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meem-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meem-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"672\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"672\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"616\" y=\"1104\" name=\"top\"/>\n  <anchor x=\"613\" y=\"804\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"169\" y=\"-654\" type=\"line\"/>\n      <point x=\"261\" y=\"-654\" type=\"line\"/>\n      <point x=\"255\" y=\"-192\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"253\" y=\"-67\"/>\n      <point x=\"291\" y=\"-3\"/>\n      <point x=\"478\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"-3\"/>\n      <point x=\"844\" y=\"-7\"/>\n      <point x=\"987\" y=\"-7\" type=\"curve\"/>\n      <point x=\"994\" y=\"40\" type=\"line\"/>\n      <point x=\"1028\" y=\"41\" type=\"line\"/>\n      <point x=\"1028\" y=\"85\" type=\"line\"/>\n      <point x=\"903\" y=\"87\"/>\n      <point x=\"610\" y=\"91\"/>\n      <point x=\"466\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"241\" y=\"91\"/>\n      <point x=\"157\" y=\"-10\"/>\n      <point x=\"161\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1255\" y=\"7\"/>\n      <point x=\"1255\" y=\"41\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1255\" y=\"72\"/>\n      <point x=\"1241\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"91\"/>\n      <point x=\"1044\" y=\"122\"/>\n      <point x=\"910\" y=\"376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"553\"/>\n      <point x=\"746\" y=\"639\"/>\n      <point x=\"636\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"639\"/>\n      <point x=\"372\" y=\"395\"/>\n      <point x=\"288\" y=\"37\" type=\"curve\"/>\n      <point x=\"373\" y=\"19\" type=\"line\"/>\n      <point x=\"451\" y=\"331\"/>\n      <point x=\"515\" y=\"545\"/>\n      <point x=\"620\" y=\"545\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"545\"/>\n      <point x=\"752\" y=\"471\"/>\n      <point x=\"833\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"973\" y=\"59\"/>\n      <point x=\"1001\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meem-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meem-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0645\"/>\n  <anchor x=\"672\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"672\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"616\" y=\"1104\" name=\"top\"/>\n  <anchor x=\"613\" y=\"804\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"169\" y=\"-654\" type=\"line\"/>\n      <point x=\"261\" y=\"-654\" type=\"line\"/>\n      <point x=\"255\" y=\"-192\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"253\" y=\"-67\"/>\n      <point x=\"301\" y=\"-3\"/>\n      <point x=\"488\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"-3\"/>\n      <point x=\"819\" y=\"-8\"/>\n      <point x=\"982\" y=\"-11\" type=\"curve\"/>\n      <point x=\"1023\" y=\"107\" type=\"line\"/>\n      <point x=\"883\" y=\"471\"/>\n      <point x=\"785\" y=\"639\"/>\n      <point x=\"631\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"639\"/>\n      <point x=\"362\" y=\"345\"/>\n      <point x=\"288\" y=\"37\" type=\"curve\"/>\n      <point x=\"373\" y=\"19\" type=\"line\"/>\n      <point x=\"441\" y=\"291\"/>\n      <point x=\"505\" y=\"545\"/>\n      <point x=\"620\" y=\"545\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"736\" y=\"545\"/>\n      <point x=\"824\" y=\"349\"/>\n      <point x=\"953\" y=\"47\" type=\"curve\"/>\n      <point x=\"977\" y=\"82\" type=\"line\"/>\n      <point x=\"852\" y=\"84\"/>\n      <point x=\"610\" y=\"91\"/>\n      <point x=\"466\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"241\" y=\"91\"/>\n      <point x=\"157\" y=\"-10\"/>\n      <point x=\"161\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meem-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meem-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"683\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"683\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"688\" y=\"1104\" name=\"top\"/>\n  <anchor x=\"685\" y=\"804\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-18\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"144\" y=\"-3\"/>\n      <point x=\"230\" y=\"39\"/>\n      <point x=\"413\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"528\" y=\"500\"/>\n      <point x=\"593\" y=\"576\"/>\n      <point x=\"687\" y=\"576\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"576\"/>\n      <point x=\"908\" y=\"375\"/>\n      <point x=\"908\" y=\"254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"128\"/>\n      <point x=\"868\" y=\"91\"/>\n      <point x=\"732\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"91\"/>\n      <point x=\"457\" y=\"147\"/>\n      <point x=\"351\" y=\"279\" type=\"curve\"/>\n      <point x=\"263\" y=\"170\" type=\"line\"/>\n      <point x=\"324\" y=\"169\" type=\"line\"/>\n      <point x=\"424\" y=\"46\"/>\n      <point x=\"581\" y=\"-3\"/>\n      <point x=\"726\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"-3\"/>\n      <point x=\"1000\" y=\"81\"/>\n      <point x=\"1000\" y=\"251\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"441\"/>\n      <point x=\"880\" y=\"670\"/>\n      <point x=\"694\" y=\"670\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"579\" y=\"670\"/>\n      <point x=\"494\" y=\"609\"/>\n      <point x=\"361\" y=\"407\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"150\"/>\n      <point x=\"115\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"91\"/>\n      <point x=\"-63\" y=\"77\"/>\n      <point x=\"-63\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-63\" y=\"9\"/>\n      <point x=\"-54\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meem-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meem-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"622\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"622\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"626\" y=\"1104\" name=\"top\"/>\n  <anchor x=\"623\" y=\"804\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-18\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"133\" y=\"-3\"/>\n      <point x=\"225\" y=\"27\"/>\n      <point x=\"277\" y=\"137\" type=\"curve\"/>\n      <point x=\"308\" y=\"137\" type=\"line\"/>\n      <point x=\"316\" y=\"151\"/>\n      <point x=\"329\" y=\"190\"/>\n      <point x=\"336\" y=\"206\" type=\"curve\"/>\n      <point x=\"281\" y=\"235\" type=\"line\"/>\n      <point x=\"281\" y=\"76\"/>\n      <point x=\"346\" y=\"-3\"/>\n      <point x=\"612\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"-3\"/>\n      <point x=\"905\" y=\"31\"/>\n      <point x=\"967\" y=\"125\" type=\"curve\"/>\n      <point x=\"1012\" y=\"125\" type=\"line\"/>\n      <point x=\"968\" y=\"200\" type=\"line\"/>\n      <point x=\"877\" y=\"116\"/>\n      <point x=\"772\" y=\"91\"/>\n      <point x=\"635\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"91\"/>\n      <point x=\"360\" y=\"119\"/>\n      <point x=\"360\" y=\"223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"305\"/>\n      <point x=\"515\" y=\"575\"/>\n      <point x=\"640\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"575\"/>\n      <point x=\"788\" y=\"498\"/>\n      <point x=\"876\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"76\"/>\n      <point x=\"1051\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1255\" y=\"7\"/>\n      <point x=\"1255\" y=\"41\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1255\" y=\"72\"/>\n      <point x=\"1241\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1095\" y=\"91\"/>\n      <point x=\"1072\" y=\"138\"/>\n      <point x=\"956\" y=\"371\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"585\"/>\n      <point x=\"765\" y=\"669\"/>\n      <point x=\"648\" y=\"669\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"518\" y=\"669\"/>\n      <point x=\"417\" y=\"560\"/>\n      <point x=\"267\" y=\"274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"191\" y=\"129\"/>\n      <point x=\"140\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-44\" y=\"91\"/>\n      <point x=\"-54\" y=\"68\"/>\n      <point x=\"-54\" y=\"40\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-54\" y=\"11\"/>\n      <point x=\"-44\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"13\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0765\"/>\n  <outline>\n    <component base=\"meem-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"13\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"85\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"23\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"70\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0766\"/>\n  <outline>\n    <component base=\"meem-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"70\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"81\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemS_topabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemStopabove-ar\" format=\"2\">\n  <unicode hex=\"06E2\"/>\n  <anchor x=\"601\" y=\"1244\" name=\"_top\"/>\n  <anchor x=\"616\" y=\"994\" name=\"_top.dot\"/>\n  <anchor x=\"621\" y=\"1510\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"484\" y=\"1008\" type=\"curve\"/>\n      <point x=\"560\" y=\"1008\" type=\"line\"/>\n      <point x=\"559\" y=\"1054\"/>\n      <point x=\"557\" y=\"1122\"/>\n      <point x=\"557\" y=\"1152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"1194\"/>\n      <point x=\"573\" y=\"1207\"/>\n      <point x=\"612\" y=\"1207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"652\" y=\"1207\"/>\n      <point x=\"712\" y=\"1203\"/>\n      <point x=\"753\" y=\"1201\" type=\"curve\"/>\n      <point x=\"785\" y=\"1280\" type=\"line\"/>\n      <point x=\"752\" y=\"1379\"/>\n      <point x=\"705\" y=\"1457\"/>\n      <point x=\"645\" y=\"1457\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"587\" y=\"1457\"/>\n      <point x=\"551\" y=\"1383\"/>\n      <point x=\"524\" y=\"1256\" type=\"curve\"/>\n      <point x=\"587\" y=\"1256\" type=\"line\"/>\n      <point x=\"602\" y=\"1327\"/>\n      <point x=\"613\" y=\"1369\"/>\n      <point x=\"639\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"1369\"/>\n      <point x=\"686\" y=\"1345\"/>\n      <point x=\"719\" y=\"1260\" type=\"curve\"/>\n      <point x=\"727\" y=\"1289\" type=\"line\"/>\n      <point x=\"701\" y=\"1290\"/>\n      <point x=\"627\" y=\"1294\"/>\n      <point x=\"587\" y=\"1294\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"1294\"/>\n      <point x=\"481\" y=\"1243\"/>\n      <point x=\"481\" y=\"1158\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"481\" y=\"1107\"/>\n      <point x=\"483\" y=\"1055\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"13\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A7\"/>\n  <guideline x=\"97\" y=\"498\" angle=\"0\"/>\n  <outline>\n    <component base=\"meem-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"13\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"85\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/meemT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"meemThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"meem-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"23\" yOffset=\"262\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/mem-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mem-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05DE\"/>\n  <guideline x=\"139\" y=\"927\" angle=\"90\"/>\n  <anchor x=\"594\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"138\" y=\"0\" type=\"line\"/>\n      <point x=\"234\" y=\"0\" type=\"line\"/>\n      <point x=\"310\" y=\"841\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"1006\"/>\n      <point x=\"452\" y=\"1108\"/>\n      <point x=\"625\" y=\"1108\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"1108\"/>\n      <point x=\"917\" y=\"918\"/>\n      <point x=\"917\" y=\"670\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"379\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"155\"/>\n      <point x=\"749\" y=\"102\"/>\n      <point x=\"625\" y=\"102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"508\" y=\"102\" type=\"line\"/>\n      <point x=\"508\" y=\"0\" type=\"line\"/>\n      <point x=\"646\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"0\"/>\n      <point x=\"1017\" y=\"92\"/>\n      <point x=\"1017\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1017\" y=\"721\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1017\" y=\"922\"/>\n      <point x=\"963\" y=\"1206\"/>\n      <point x=\"627\" y=\"1206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"425\" y=\"1206\"/>\n      <point x=\"321\" y=\"1085\"/>\n      <point x=\"280\" y=\"987\" type=\"curve\"/>\n      <point x=\"268\" y=\"987\" type=\"line\"/>\n      <point x=\"229\" y=\"925\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"241\" y=\"811\" type=\"line\"/>\n      <point x=\"273\" y=\"981\" type=\"line\"/>\n      <point x=\"165\" y=\"1200\" type=\"line\"/>\n      <point x=\"63\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/memdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"memdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB3E\"/>\n  <outline>\n    <component base=\"mem-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-6\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/micro.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"micro\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B5\"/>\n  <outline>\n    <component base=\"mu\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/minus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"minus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2212\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"754\" type=\"line\"/>\n      <point x=\"124\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/minute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"minute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2032\"/>\n  <outline>\n    <contour>\n      <point x=\"467\" y=\"780\" type=\"line\"/>\n      <point x=\"574\" y=\"780\" type=\"line\"/>\n      <point x=\"804\" y=\"1420\" type=\"line\"/>\n      <point x=\"697\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/misraC_omma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"misraComma-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060F\"/>\n  <outline>\n    <contour>\n      <point x=\"146\" y=\"-664\" type=\"line\"/>\n      <point x=\"375\" y=\"-233\"/>\n      <point x=\"559\" y=\"-78\"/>\n      <point x=\"818\" y=\"-78\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"-78\"/>\n      <point x=\"1050\" y=\"-164\"/>\n      <point x=\"1050\" y=\"-272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1050\" y=\"-435\"/>\n      <point x=\"881\" y=\"-515\"/>\n      <point x=\"638\" y=\"-515\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"-515\"/>\n      <point x=\"166\" y=\"-430\"/>\n      <point x=\"166\" y=\"-219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"11\"/>\n      <point x=\"294\" y=\"155\"/>\n      <point x=\"903\" y=\"299\" type=\"curve\"/>\n      <point x=\"891\" y=\"387\" type=\"line\"/>\n      <point x=\"745\" y=\"353\"/>\n      <point x=\"629\" y=\"328\"/>\n      <point x=\"536\" y=\"328\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"328\"/>\n      <point x=\"248\" y=\"411\"/>\n      <point x=\"248\" y=\"571\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"742\"/>\n      <point x=\"344\" y=\"830\"/>\n      <point x=\"551\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"634\" y=\"830\"/>\n      <point x=\"716\" y=\"812\"/>\n      <point x=\"795\" y=\"790\" type=\"curve\"/>\n      <point x=\"803\" y=\"872\" type=\"line\"/>\n      <point x=\"732\" y=\"902\"/>\n      <point x=\"626\" y=\"924\"/>\n      <point x=\"533\" y=\"924\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"924\"/>\n      <point x=\"156\" y=\"797\"/>\n      <point x=\"156\" y=\"578\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"156\" y=\"412\"/>\n      <point x=\"248\" y=\"289\"/>\n      <point x=\"409\" y=\"258\" type=\"curve\"/>\n      <point x=\"409\" y=\"216\" type=\"line\"/>\n      <point x=\"445\" y=\"229\" type=\"line\"/>\n      <point x=\"454\" y=\"264\" type=\"line\"/>\n      <point x=\"215\" y=\"151\"/>\n      <point x=\"74\" y=\"18\"/>\n      <point x=\"74\" y=\"-216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"74\" y=\"-536\"/>\n      <point x=\"308\" y=\"-609\"/>\n      <point x=\"628\" y=\"-609\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"-609\"/>\n      <point x=\"1142\" y=\"-493\"/>\n      <point x=\"1142\" y=\"-268\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"-78\"/>\n      <point x=\"1018\" y=\"16\"/>\n      <point x=\"824\" y=\"16\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"16\"/>\n      <point x=\"294\" y=\"-150\"/>\n      <point x=\"81\" y=\"-620\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/mu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BC\"/>\n  <anchor x=\"595\" y=\"-280\" name=\"bottom\"/>\n  <anchor x=\"581\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"581\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"-20\"/>\n      <point x=\"845\" y=\"57\"/>\n      <point x=\"883\" y=\"184\" type=\"curve\"/>\n      <point x=\"943\" y=\"184\" type=\"line\"/>\n      <point x=\"889\" y=\"490\" type=\"line\"/>\n      <point x=\"889\" y=\"189\"/>\n      <point x=\"784\" y=\"72\"/>\n      <point x=\"581\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"72\"/>\n      <point x=\"269\" y=\"200\"/>\n      <point x=\"269\" y=\"430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"269\" y=\"1060\" type=\"line\"/>\n      <point x=\"175\" y=\"1060\" type=\"line\"/>\n      <point x=\"175\" y=\"360\" type=\"line\"/>\n      <point x=\"224\" y=\"184\" type=\"line\"/>\n      <point x=\"270\" y=\"184\" type=\"line\"/>\n      <point x=\"314\" y=\"47\"/>\n      <point x=\"415\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"175\" y=\"-460\" type=\"line\"/>\n      <point x=\"269\" y=\"-460\" type=\"line\"/>\n      <point x=\"261\" y=\"237\" type=\"line\"/>\n      <point x=\"175\" y=\"430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"907\" y=\"-10\" type=\"line\"/>\n      <point x=\"1129\" y=\"0\" type=\"line\"/>\n      <point x=\"1129\" y=\"63\" type=\"line\"/>\n      <point x=\"983\" y=\"73\" type=\"line\"/>\n      <point x=\"983\" y=\"430\" type=\"line\"/>\n      <point x=\"889\" y=\"430\" type=\"line\"/>\n      <point x=\"889\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"889\" y=\"300\" type=\"line\"/>\n      <point x=\"983\" y=\"360\" type=\"line\"/>\n      <point x=\"983\" y=\"1060\" type=\"line\"/>\n      <point x=\"889\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/multiply.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"multiply\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D7\"/>\n  <guideline x=\"511\" y=\"114\" angle=\"0\"/>\n  <guideline x=\"511\" y=\"574\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"208\" y=\"253\" type=\"line\"/>\n      <point x=\"145\" y=\"309\" type=\"line\"/>\n      <point x=\"992\" y=\"1123\" type=\"line\"/>\n      <point x=\"1055\" y=\"1065\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"992\" y=\"253\" type=\"line\"/>\n      <point x=\"145\" y=\"1065\" type=\"line\"/>\n      <point x=\"208\" y=\"1123\" type=\"line\"/>\n      <point x=\"1055\" y=\"309\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/n.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"n\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006E\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"938\"/>\n      <point x=\"867\" y=\"1080\"/>\n      <point x=\"621\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1080\"/>\n      <point x=\"333\" y=\"1010\"/>\n      <point x=\"294\" y=\"868\" type=\"curve\"/>\n      <point x=\"222\" y=\"868\" type=\"line\"/>\n      <point x=\"286\" y=\"600\" type=\"line\"/>\n      <point x=\"286\" y=\"860\"/>\n      <point x=\"402\" y=\"988\"/>\n      <point x=\"630\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"988\"/>\n      <point x=\"914\" y=\"882\"/>\n      <point x=\"914\" y=\"694\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"836\" type=\"line\"/>\n      <point x=\"278\" y=\"1060\" type=\"line\"/>\n      <point x=\"192\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0144\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"acutecomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/naira.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"naira\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A6\"/>\n  <outline>\n    <contour>\n      <point x=\"24\" y=\"665\" type=\"line\"/>\n      <point x=\"1176\" y=\"665\" type=\"line\"/>\n      <point x=\"1176\" y=\"755\" type=\"line\"/>\n      <point x=\"24\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/napostrophe.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"napostrophe\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0149\"/>\n  <outline>\n    <contour>\n      <point x=\"138\" y=\"1168\" type=\"line\"/>\n      <point x=\"195\" y=\"1231\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"1310\"/>\n      <point x=\"305\" y=\"1388\"/>\n      <point x=\"305\" y=\"1458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"1591\"/>\n      <point x=\"232\" y=\"1660\"/>\n      <point x=\"91\" y=\"1660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"16\" y=\"1660\" type=\"line\"/>\n      <point x=\"16\" y=\"1570\" type=\"line\"/>\n      <point x=\"61\" y=\"1570\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"158\" y=\"1570\"/>\n      <point x=\"209\" y=\"1532\"/>\n      <point x=\"209\" y=\"1458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"209\" y=\"1414\"/>\n      <point x=\"179\" y=\"1359\"/>\n      <point x=\"119\" y=\"1297\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <component base=\"n\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nbspace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nbspace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A0\"/>\n  <outline>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ncaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ncaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0148\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"caroncomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ncommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ncommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0146\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"negativeAcknowledgeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2415\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"K.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>K.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"negativeAcknowledgeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"555\" type=\"line\"/>\n      <point x=\"1125\" y=\"655\" type=\"line\"/>\n      <point x=\"419\" y=\"960\" type=\"line\"/>\n      <point x=\"419\" y=\"860\" type=\"line\"/>\n    </contour>\n    <component base=\"acknowledgeControl.ss20\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/newlineC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"newlineControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2424\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ng-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ng-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"545\" y=\"1501\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-4\" yOffset=\"507\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ng-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ng-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06AD\"/>\n  <anchor x=\"545\" y=\"1501\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"threedotsupabove-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-4\" yOffset=\"487\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ng-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ng-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"360\" y=\"1594\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-127\" yOffset=\"565\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ng-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ng-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"390\" y=\"1594\" name=\"top\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"threedotsupabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-102\" yOffset=\"565\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ngoeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ngoeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"683\" y=\"1709\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"186\" yOffset=\"826\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ngoeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ngoeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B1\"/>\n  <anchor x=\"683\" y=\"1709\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"186\" yOffset=\"826\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ngoeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ngoeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"463\" y=\"1709\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-55\" yOffset=\"826\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ngoeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ngoeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"493\" y=\"1709\" name=\"top\"/>\n  <outline>\n    <component base=\"gaf-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar.v2\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"-30\" yOffset=\"826\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar.v2</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nhookleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nhookleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0272\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"690\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"938\"/>\n      <point x=\"867\" y=\"1080\"/>\n      <point x=\"621\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1080\"/>\n      <point x=\"333\" y=\"1010\"/>\n      <point x=\"294\" y=\"868\" type=\"curve\"/>\n      <point x=\"222\" y=\"868\" type=\"line\"/>\n      <point x=\"286\" y=\"600\" type=\"line\"/>\n      <point x=\"286\" y=\"860\"/>\n      <point x=\"402\" y=\"988\"/>\n      <point x=\"630\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"809\" y=\"988\"/>\n      <point x=\"914\" y=\"882\"/>\n      <point x=\"914\" y=\"694\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"-118\" y=\"-468\" type=\"line\"/>\n      <point x=\"-100\" y=\"-467\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"-452\"/>\n      <point x=\"286\" y=\"-287\"/>\n      <point x=\"286\" y=\"84\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"286\" y=\"384\" type=\"line\"/>\n      <point x=\"192\" y=\"384\" type=\"line\"/>\n      <point x=\"192\" y=\"62\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"-227\"/>\n      <point x=\"110\" y=\"-361\"/>\n      <point x=\"-88\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-122\" y=\"-381\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"300\" type=\"line\"/>\n      <point x=\"286\" y=\"300\" type=\"line\"/>\n      <point x=\"286\" y=\"836\" type=\"line\"/>\n      <point x=\"278\" y=\"1060\" type=\"line\"/>\n      <point x=\"192\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0669\"/>\n  <outline>\n    <contour>\n      <point x=\"975\" y=\"-10\" type=\"curve\"/>\n      <point x=\"1067\" y=\"0\" type=\"line\"/>\n      <point x=\"1030\" y=\"291\"/>\n      <point x=\"997\" y=\"546\"/>\n      <point x=\"958\" y=\"848\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1296\"/>\n      <point x=\"772\" y=\"1440\"/>\n      <point x=\"558\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"329\" y=\"1440\"/>\n      <point x=\"182\" y=\"1200\"/>\n      <point x=\"182\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"182\" y=\"667\"/>\n      <point x=\"301\" y=\"602\"/>\n      <point x=\"559\" y=\"604\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"605\"/>\n      <point x=\"826\" y=\"626\"/>\n      <point x=\"865\" y=\"698\" type=\"curve\"/>\n      <point x=\"938\" y=\"699\" type=\"line\"/>\n      <point x=\"922\" y=\"779\" type=\"line\"/>\n      <point x=\"810\" y=\"723\"/>\n      <point x=\"693\" y=\"698\"/>\n      <point x=\"561\" y=\"698\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"698\"/>\n      <point x=\"274\" y=\"733\"/>\n      <point x=\"274\" y=\"947\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"1190\"/>\n      <point x=\"406\" y=\"1346\"/>\n      <point x=\"557\" y=\"1346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"722\" y=\"1346\"/>\n      <point x=\"819\" y=\"1191\"/>\n      <point x=\"866\" y=\"827\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"512\"/>\n      <point x=\"942\" y=\"270\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"756\" y=\"-1\" type=\"curve\"/>\n      <point x=\"848\" y=\"0\" type=\"line\"/>\n      <point x=\"832\" y=\"124\"/>\n      <point x=\"817\" y=\"226\"/>\n      <point x=\"797\" y=\"345\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"539\"/>\n      <point x=\"727\" y=\"638\"/>\n      <point x=\"592\" y=\"638\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"638\"/>\n      <point x=\"394\" y=\"539\"/>\n      <point x=\"394\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"280\"/>\n      <point x=\"454\" y=\"222\"/>\n      <point x=\"569\" y=\"222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"222\"/>\n      <point x=\"681\" y=\"234\"/>\n      <point x=\"702\" y=\"273\" type=\"curve\"/>\n      <point x=\"738\" y=\"275\" type=\"line\"/>\n      <point x=\"731\" y=\"342\" type=\"line\"/>\n      <point x=\"677\" y=\"322\"/>\n      <point x=\"636\" y=\"314\"/>\n      <point x=\"585\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"314\"/>\n      <point x=\"486\" y=\"342\"/>\n      <point x=\"486\" y=\"415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"488\"/>\n      <point x=\"520\" y=\"546\"/>\n      <point x=\"589\" y=\"546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"546\"/>\n      <point x=\"688\" y=\"472\"/>\n      <point x=\"705\" y=\"368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"726\" y=\"239\"/>\n      <point x=\"740\" y=\"126\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"nine-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F9\"/>\n  <outline>\n    <component base=\"nine-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>nine-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>nine-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"nine-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>nine-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"nine-arsuperior\" xOffset=\"9\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>nine-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nine.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ninesuperior\" yOffset=\"-814\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0039\"/>\n  <outline>\n    <contour>\n      <point x=\"584\" y=\"506\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"506\"/>\n      <point x=\"912\" y=\"590\"/>\n      <point x=\"956\" y=\"738\" type=\"curve\"/>\n      <point x=\"1020\" y=\"738\" type=\"line\"/>\n      <point x=\"1058\" y=\"930\" type=\"line\"/>\n      <point x=\"1058\" y=\"1256\"/>\n      <point x=\"902\" y=\"1426\"/>\n      <point x=\"602\" y=\"1426\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"1426\"/>\n      <point x=\"140\" y=\"1264\"/>\n      <point x=\"140\" y=\"956\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"140\" y=\"670\"/>\n      <point x=\"300\" y=\"506\"/>\n    </contour>\n    <contour>\n      <point x=\"270\" y=\"-20\" type=\"line\"/>\n      <point x=\"802\" y=\"6\"/>\n      <point x=\"1058\" y=\"272\"/>\n      <point x=\"1058\" y=\"782\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"930\" type=\"line\"/>\n      <point x=\"965\" y=\"873\" type=\"line\"/>\n      <point x=\"964\" y=\"740\" type=\"line\"/>\n      <point x=\"964\" y=\"312\"/>\n      <point x=\"733\" y=\"91\"/>\n      <point x=\"261\" y=\"70\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"584\" y=\"596\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"596\"/>\n      <point x=\"236\" y=\"726\"/>\n      <point x=\"236\" y=\"956\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"236\" y=\"1205\"/>\n      <point x=\"358\" y=\"1336\"/>\n      <point x=\"590\" y=\"1336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"1336\"/>\n      <point x=\"962\" y=\"1199\"/>\n      <point x=\"962\" y=\"966\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"730\"/>\n      <point x=\"825\" y=\"596\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nine.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ninesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nineinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nineinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2089\"/>\n  <outline>\n    <component base=\"ninesuperior\" yOffset=\"-814\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ninesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ninesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2079\"/>\n  <outline>\n    <contour>\n      <point x=\"424\" y=\"793\" type=\"line\"/>\n      <point x=\"725\" y=\"805\"/>\n      <point x=\"854\" y=\"919\"/>\n      <point x=\"854\" y=\"1173\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"1194\" type=\"line\"/>\n      <point x=\"807\" y=\"1274\" type=\"line\"/>\n      <point x=\"762\" y=\"1129\" type=\"line\"/>\n      <point x=\"762\" y=\"965\"/>\n      <point x=\"660\" y=\"893\"/>\n      <point x=\"419\" y=\"885\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1040\"/>\n      <point x=\"737\" y=\"1072\"/>\n      <point x=\"758\" y=\"1128\" type=\"curve\"/>\n      <point x=\"785\" y=\"1128\" type=\"line\"/>\n      <point x=\"810\" y=\"1264\" type=\"line\"/>\n      <point x=\"854\" y=\"1194\" type=\"line\"/>\n      <point x=\"854\" y=\"1363\"/>\n      <point x=\"775\" y=\"1440\"/>\n      <point x=\"603\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"439\" y=\"1440\"/>\n      <point x=\"346\" y=\"1362\"/>\n      <point x=\"346\" y=\"1227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"1108\"/>\n      <point x=\"430\" y=\"1040\"/>\n    </contour>\n    <contour>\n      <point x=\"598\" y=\"1122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"1122\"/>\n      <point x=\"442\" y=\"1162\"/>\n      <point x=\"442\" y=\"1232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"1306\"/>\n      <point x=\"497\" y=\"1348\"/>\n      <point x=\"598\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"1348\"/>\n      <point x=\"763\" y=\"1310\"/>\n      <point x=\"763\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"763\" y=\"1163\"/>\n      <point x=\"703\" y=\"1122\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"670\" y=\"0\" type=\"line\"/>\n      <point x=\"831\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1042\" y=\"0\"/>\n      <point x=\"1147\" y=\"107\"/>\n      <point x=\"1147\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1147\" y=\"537\"/>\n      <point x=\"1042\" y=\"644\"/>\n      <point x=\"831\" y=\"644\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"648\" y=\"644\" type=\"line\"/>\n      <point x=\"648\" y=\"554\" type=\"line\"/>\n      <point x=\"823\" y=\"554\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"554\"/>\n      <point x=\"1051\" y=\"477\"/>\n      <point x=\"1051\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"167\"/>\n      <point x=\"975\" y=\"90\"/>\n      <point x=\"823\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"112\" y=\"0\" type=\"line\"/>\n      <point x=\"206\" y=\"0\" type=\"line\"/>\n      <point x=\"206\" y=\"1060\" type=\"line\"/>\n      <point x=\"112\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"554\" type=\"line\"/>\n      <point x=\"610\" y=\"554\" type=\"line\"/>\n      <point x=\"610\" y=\"644\" type=\"line\"/>\n      <point x=\"150\" y=\"644\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"590\" y=\"0\" type=\"line\"/>\n      <point x=\"684\" y=\"0\" type=\"line\"/>\n      <point x=\"684\" y=\"591\" type=\"line\"/>\n      <point x=\"684\" y=\"615\" type=\"line\"/>\n      <point x=\"684\" y=\"1060\" type=\"line\"/>\n      <point x=\"590\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nlinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E49\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"207F\"/>\n  <outline>\n    <contour>\n      <point x=\"785\" y=\"790\" type=\"line\"/>\n      <point x=\"881\" y=\"790\" type=\"line\"/>\n      <point x=\"881\" y=\"1186\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"1346\"/>\n      <point x=\"793\" y=\"1440\"/>\n      <point x=\"645\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"1440\"/>\n      <point x=\"437\" y=\"1380\"/>\n      <point x=\"427\" y=\"1273\" type=\"curve\"/>\n      <point x=\"379\" y=\"1273\" type=\"line\"/>\n      <point x=\"416\" y=\"1124\" type=\"line\"/>\n      <point x=\"416\" y=\"1246\"/>\n      <point x=\"486\" y=\"1343\"/>\n      <point x=\"624\" y=\"1343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"1343\"/>\n      <point x=\"785\" y=\"1283\"/>\n      <point x=\"785\" y=\"1181\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"320\" y=\"790\" type=\"line\"/>\n      <point x=\"416\" y=\"790\" type=\"line\"/>\n      <point x=\"416\" y=\"1253\" type=\"line\"/>\n      <point x=\"400\" y=\"1420\" type=\"line\"/>\n      <point x=\"320\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nonbreakinghyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nonbreakinghyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2011\"/>\n  <outline>\n    <component base=\"hyphentwo\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-28\" yOffset=\"7\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0646\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"2\" yOffset=\"7\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"335\" yOffset=\"275\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"275\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noon-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"10\" yOffset=\"113\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08BD\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"175\" y=\"519\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"335\" yOffset=\"275\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"175\" y=\"519\" angle=\"0\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"275\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonAfrican-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"10\" yOffset=\"113\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-45\" yOffset=\"-266\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06B9\"/>\n  <outline>\n    <component base=\"noon-ar\"/>\n    <component base=\"dotbelow-ar\" yOffset=\"-270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"-43\" yOffset=\"-408\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BC\"/>\n  <outline>\n    <component base=\"noon-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"2\" yOffset=\"-412\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"119\" y=\"672\" angle=\"0\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"yehKashmiri-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"335\" yOffset=\"275\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"119\" y=\"672\" angle=\"0\"/>\n  <outline>\n    <component base=\"yehKashmiri-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"275\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonRing-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yehKashmiri-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"10\" yOffset=\"113\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"_onedotstah\" xOffset=\"-25\" yOffset=\"37\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0768\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"_onedotstah\" xOffset=\"2\" yOffset=\"-63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_onedotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_onedotstah\" xOffset=\"335\" yOffset=\"205\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_onedotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_onedotstah\" xOffset=\"275\" yOffset=\"205\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_onedotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTahabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_onedotstah\" xOffset=\"10\" yOffset=\"43\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_onedotstah</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-28\" yOffset=\"7\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BD\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"2\" yOffset=\"7\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"252\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"212\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"peh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noon-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-44\" yOffset=\"-311\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0767\"/>\n  <outline>\n    <component base=\"noon-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"1\" yOffset=\"-315\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"335\" yOffset=\"275\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"275\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonTwodotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"10\" yOffset=\"113\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"_dotVabove\" xOffset=\"-28\" yOffset=\"-63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0769\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"_dotVabove\" xOffset=\"2\" yOffset=\"-63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_dotVabove\" xOffset=\"335\" yOffset=\"205\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_dotVabove\" xOffset=\"275\" yOffset=\"205\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonVabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_dotVabove\" xOffset=\"10\" yOffset=\"43\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dotVabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonabove-ar\" format=\"2\">\n  <unicode hex=\"06E8\"/>\n  <anchor x=\"601\" y=\"1330\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1080\" name=\"_top.dot\"/>\n  <anchor x=\"591\" y=\"1635\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"592\" y=\"1137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"1137\"/>\n      <point x=\"777\" y=\"1199\"/>\n      <point x=\"777\" y=\"1304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"1371\"/>\n      <point x=\"769\" y=\"1421\"/>\n      <point x=\"760\" y=\"1467\" type=\"curve\"/>\n      <point x=\"682\" y=\"1461\" type=\"line\"/>\n      <point x=\"688\" y=\"1407\"/>\n      <point x=\"695\" y=\"1354\"/>\n      <point x=\"695\" y=\"1306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"695\" y=\"1238\"/>\n      <point x=\"668\" y=\"1221\"/>\n      <point x=\"595\" y=\"1221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"1221\"/>\n      <point x=\"501\" y=\"1241\"/>\n      <point x=\"501\" y=\"1312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"1357\"/>\n      <point x=\"511\" y=\"1400\"/>\n      <point x=\"516\" y=\"1441\" type=\"curve\"/>\n      <point x=\"446\" y=\"1443\" type=\"line\"/>\n      <point x=\"434\" y=\"1399\"/>\n      <point x=\"424\" y=\"1354\"/>\n      <point x=\"424\" y=\"1295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"1183\"/>\n      <point x=\"471\" y=\"1137\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"1475\" type=\"line\"/>\n      <point x=\"661\" y=\"1539\" type=\"line\"/>\n      <point x=\"593\" y=\"1600\" type=\"line\"/>\n      <point x=\"532\" y=\"1538\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"557\" y=\"-383\" name=\"bottom\"/>\n  <anchor x=\"558\" y=\"-313\" name=\"bottom.dot\"/>\n  <anchor x=\"575\" y=\"799\" name=\"top\"/>\n  <anchor x=\"572\" y=\"549\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"561\" y=\"-335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"-335\"/>\n      <point x=\"1050\" y=\"-241\"/>\n      <point x=\"1050\" y=\"147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1050\" y=\"200\"/>\n      <point x=\"1055\" y=\"166\"/>\n      <point x=\"1043\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"388\"/>\n      <point x=\"1028\" y=\"465\"/>\n      <point x=\"1017\" y=\"541\" type=\"curve\"/>\n      <point x=\"925\" y=\"536\" type=\"line\"/>\n      <point x=\"943\" y=\"394\"/>\n      <point x=\"958\" y=\"284\"/>\n      <point x=\"958\" y=\"133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"958\" y=\"-161\"/>\n      <point x=\"815\" y=\"-241\"/>\n      <point x=\"575\" y=\"-241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"288\" y=\"-241\"/>\n      <point x=\"181\" y=\"-170\"/>\n      <point x=\"181\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"181\" y=\"221\"/>\n      <point x=\"207\" y=\"348\"/>\n      <point x=\"225\" y=\"464\" type=\"curve\"/>\n      <point x=\"139\" y=\"464\" type=\"line\"/>\n      <point x=\"116\" y=\"343\"/>\n      <point x=\"89\" y=\"215\"/>\n      <point x=\"89\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"89\" y=\"-195\"/>\n      <point x=\"206\" y=\"-335\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1275\" y=\"5\"/>\n      <point x=\"1275\" y=\"45\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1275\" y=\"84\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"91\"/>\n      <point x=\"1055\" y=\"166\"/>\n      <point x=\"1043\" y=\"315\" type=\"curve\"/>\n      <point x=\"1006\" y=\"157\" type=\"line\"/>\n      <point x=\"1021\" y=\"58\"/>\n      <point x=\"1061\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BA\"/>\n  <anchor x=\"602\" y=\"-387\" name=\"bottom\"/>\n  <anchor x=\"603\" y=\"-317\" name=\"bottom.dot\"/>\n  <anchor x=\"605\" y=\"799\" name=\"top\"/>\n  <anchor x=\"602\" y=\"549\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"591\" y=\"-335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"-335\"/>\n      <point x=\"1080\" y=\"-241\"/>\n      <point x=\"1080\" y=\"147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"266\"/>\n      <point x=\"1066\" y=\"405\"/>\n      <point x=\"1047\" y=\"541\" type=\"curve\"/>\n      <point x=\"955\" y=\"536\" type=\"line\"/>\n      <point x=\"973\" y=\"394\"/>\n      <point x=\"988\" y=\"284\"/>\n      <point x=\"988\" y=\"133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"-161\"/>\n      <point x=\"875\" y=\"-241\"/>\n      <point x=\"605\" y=\"-241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"-241\"/>\n      <point x=\"211\" y=\"-170\"/>\n      <point x=\"211\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"211\" y=\"221\"/>\n      <point x=\"237\" y=\"348\"/>\n      <point x=\"255\" y=\"464\" type=\"curve\"/>\n      <point x=\"169\" y=\"464\" type=\"line\"/>\n      <point x=\"146\" y=\"343\"/>\n      <point x=\"119\" y=\"215\"/>\n      <point x=\"119\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"119\" y=\"-195\"/>\n      <point x=\"236\" y=\"-335\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunna-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunnaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"noonghunnaabove-ar\" format=\"2\">\n  <unicode hex=\"0658\"/>\n  <anchor x=\"601\" y=\"1074\" name=\"_top\"/>\n  <anchor x=\"601\" y=\"1016\" name=\"_top.dot\"/>\n  <anchor x=\"589\" y=\"1465\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"592\" y=\"1137\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"1137\"/>\n      <point x=\"777\" y=\"1199\"/>\n      <point x=\"777\" y=\"1304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"1371\"/>\n      <point x=\"769\" y=\"1421\"/>\n      <point x=\"760\" y=\"1467\" type=\"curve\"/>\n      <point x=\"682\" y=\"1461\" type=\"line\"/>\n      <point x=\"688\" y=\"1407\"/>\n      <point x=\"695\" y=\"1354\"/>\n      <point x=\"695\" y=\"1306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"695\" y=\"1238\"/>\n      <point x=\"668\" y=\"1221\"/>\n      <point x=\"595\" y=\"1221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"1221\"/>\n      <point x=\"501\" y=\"1241\"/>\n      <point x=\"501\" y=\"1312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"1357\"/>\n      <point x=\"511\" y=\"1400\"/>\n      <point x=\"516\" y=\"1441\" type=\"curve\"/>\n      <point x=\"446\" y=\"1443\" type=\"line\"/>\n      <point x=\"434\" y=\"1399\"/>\n      <point x=\"424\" y=\"1354\"/>\n      <point x=\"424\" y=\"1295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"1183\"/>\n      <point x=\"471\" y=\"1137\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/note-musical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"note-musical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"266A\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"614\" type=\"line\"/>\n      <point x=\"1042\" y=\"743\"/>\n      <point x=\"1105\" y=\"875\"/>\n      <point x=\"1105\" y=\"1011\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1105\" y=\"1285\"/>\n      <point x=\"917\" y=\"1420\"/>\n      <point x=\"536\" y=\"1420\" type=\"curve\"/>\n      <point x=\"536\" y=\"1264\" type=\"line\"/>\n      <point x=\"853\" y=\"1264\"/>\n      <point x=\"1009\" y=\"1180\"/>\n      <point x=\"1009\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1009\" y=\"862\"/>\n      <point x=\"958\" y=\"762\"/>\n      <point x=\"853\" y=\"660\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"402\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"-20\"/>\n      <point x=\"626\" y=\"35\"/>\n      <point x=\"626\" y=\"132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"626\" y=\"204\"/>\n      <point x=\"544\" y=\"245\"/>\n      <point x=\"402\" y=\"245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"245\"/>\n      <point x=\"188\" y=\"197\"/>\n      <point x=\"188\" y=\"112\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"188\" y=\"28\"/>\n      <point x=\"266\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"536\" y=\"132\" type=\"line\"/>\n      <point x=\"626\" y=\"132\" type=\"line\"/>\n      <point x=\"626\" y=\"1380\" type=\"line\"/>\n      <point x=\"536\" y=\"1380\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/notedbl-musical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notedbl-musical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"266B\"/>\n  <outline>\n    <contour>\n      <point x=\"368\" y=\"1214\" type=\"line\"/>\n      <point x=\"1103\" y=\"1294\" type=\"line\"/>\n      <point x=\"1103\" y=\"1460\" type=\"line\"/>\n      <point x=\"358\" y=\"1380\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"224\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"366\" y=\"-20\"/>\n      <point x=\"448\" y=\"35\"/>\n      <point x=\"448\" y=\"132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"204\"/>\n      <point x=\"366\" y=\"245\"/>\n      <point x=\"224\" y=\"245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"245\"/>\n      <point x=\"10\" y=\"197\"/>\n      <point x=\"10\" y=\"112\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"10\" y=\"28\"/>\n      <point x=\"88\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"358\" y=\"102\" type=\"line\"/>\n      <point x=\"448\" y=\"132\" type=\"line\"/>\n      <point x=\"448\" y=\"1380\" type=\"line\"/>\n      <point x=\"358\" y=\"1380\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"879\" y=\"215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"215\"/>\n      <point x=\"1103\" y=\"270\"/>\n      <point x=\"1103\" y=\"367\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1103\" y=\"439\"/>\n      <point x=\"1021\" y=\"480\"/>\n      <point x=\"879\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"480\"/>\n      <point x=\"665\" y=\"432\"/>\n      <point x=\"665\" y=\"347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"263\"/>\n      <point x=\"743\" y=\"215\"/>\n    </contour>\n    <contour>\n      <point x=\"1013\" y=\"347\" type=\"line\"/>\n      <point x=\"1103\" y=\"367\" type=\"line\"/>\n      <point x=\"1103\" y=\"1380\" type=\"line\"/>\n      <point x=\"1013\" y=\"1380\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/notequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2260\"/>\n  <outline>\n    <contour>\n      <point x=\"166\" y=\"0\" type=\"line\"/>\n      <point x=\"259\" y=\"0\" type=\"line\"/>\n      <point x=\"1034\" y=\"1420\" type=\"line\"/>\n      <point x=\"941\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"equal\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/notidentical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notidentical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2262\"/>\n  <outline>\n    <contour>\n      <point x=\"142\" y=\"0\" type=\"line\"/>\n      <point x=\"241\" y=\"0\" type=\"line\"/>\n      <point x=\"1058\" y=\"1420\" type=\"line\"/>\n      <point x=\"959\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"equivalence\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F1\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"tildecomb\" xOffset=\"-3\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BD\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"586\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"537\" y=\"0\" type=\"line\"/>\n      <point x=\"669\" y=\"0\" type=\"line\"/>\n      <point x=\"1096\" y=\"1060\" type=\"line\"/>\n      <point x=\"995\" y=\"1060\" type=\"line\"/>\n      <point x=\"609\" y=\"80\" type=\"line\"/>\n      <point x=\"597\" y=\"80\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"537\" y=\"0\" type=\"line\"/>\n      <point x=\"624\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"545\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"845\"/>\n      <point x=\"234\" y=\"1023\"/>\n      <point x=\"81\" y=\"1080\" type=\"curve\"/>\n      <point x=\"29\" y=\"1005\" type=\"line\"/>\n      <point x=\"165\" y=\"952\"/>\n      <point x=\"277\" y=\"790\"/>\n      <point x=\"367\" y=\"515\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nullC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nullControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2400\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"U.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>U.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/number-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"number-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0600\"/>\n  <outline>\n    <contour>\n      <point x=\"53\" y=\"-237\" type=\"line\"/>\n      <point x=\"880\" y=\"-237\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"-237\"/>\n      <point x=\"1091\" y=\"-227\"/>\n      <point x=\"1142\" y=\"-211\" type=\"curve\"/>\n      <point x=\"1136\" y=\"-125\" type=\"line\"/>\n      <point x=\"1099\" y=\"-130\"/>\n      <point x=\"1060\" y=\"-132\"/>\n      <point x=\"1024\" y=\"-132\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"957\" y=\"-132\"/>\n      <point x=\"936\" y=\"-111\"/>\n      <point x=\"936\" y=\"-61\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"-5\"/>\n      <point x=\"958\" y=\"14\"/>\n      <point x=\"1019\" y=\"14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"14\"/>\n      <point x=\"1084\" y=\"9\"/>\n      <point x=\"1113\" y=\"3\" type=\"curve\"/>\n      <point x=\"1121\" y=\"89\" type=\"line\"/>\n      <point x=\"1084\" y=\"100\"/>\n      <point x=\"1038\" y=\"108\"/>\n      <point x=\"1003\" y=\"108\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"108\"/>\n      <point x=\"844\" y=\"63\"/>\n      <point x=\"844\" y=\"-41\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"-88\"/>\n      <point x=\"858\" y=\"-120\"/>\n      <point x=\"888\" y=\"-132\" type=\"curve\"/>\n      <point x=\"888\" y=\"-168\" type=\"line\"/>\n      <point x=\"909\" y=\"-143\" type=\"line\"/>\n      <point x=\"46\" y=\"-143\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbermark-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbermark-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0605\"/>\n  <outline>\n    <contour>\n      <point x=\"64\" y=\"484\" type=\"line\"/>\n      <point x=\"137\" y=\"548\"/>\n      <point x=\"188\" y=\"595\"/>\n      <point x=\"256\" y=\"595\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"365\" y=\"595\"/>\n      <point x=\"467\" y=\"495\"/>\n      <point x=\"703\" y=\"495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"495\"/>\n      <point x=\"1054\" y=\"549\"/>\n      <point x=\"1173\" y=\"605\" type=\"curve\"/>\n      <point x=\"1162\" y=\"695\" type=\"line\"/>\n      <point x=\"1034\" y=\"639\"/>\n      <point x=\"893\" y=\"589\"/>\n      <point x=\"712\" y=\"589\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"477\" y=\"589\"/>\n      <point x=\"402\" y=\"689\"/>\n      <point x=\"250\" y=\"689\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"157\" y=\"689\"/>\n      <point x=\"70\" y=\"616\"/>\n      <point x=\"14\" y=\"548\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0023\"/>\n  <outline>\n    <contour>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"808\" y=\"0\" type=\"line\"/>\n      <point x=\"928\" y=\"1420\" type=\"line\"/>\n      <point x=\"838\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"419\" type=\"line\"/>\n      <point x=\"1076\" y=\"419\" type=\"line\"/>\n      <point x=\"1076\" y=\"509\" type=\"line\"/>\n      <point x=\"124\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"272\" y=\"0\" type=\"line\"/>\n      <point x=\"362\" y=\"0\" type=\"line\"/>\n      <point x=\"482\" y=\"1420\" type=\"line\"/>\n      <point x=\"392\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"911\" type=\"line\"/>\n      <point x=\"1076\" y=\"911\" type=\"line\"/>\n      <point x=\"1076\" y=\"1001\" type=\"line\"/>\n      <point x=\"124\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_braceleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_braceleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"432\" y=\"0\" type=\"line\"/>\n      <point x=\"522\" y=\"0\" type=\"line\"/>\n      <point x=\"642\" y=\"1420\" type=\"line\"/>\n      <point x=\"552\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"284\" y=\"419\" type=\"line\"/>\n      <point x=\"1880\" y=\"419\" type=\"line\"/>\n      <point x=\"1880\" y=\"509\" type=\"line\"/>\n      <point x=\"284\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"878\" y=\"0\" type=\"line\"/>\n      <point x=\"968\" y=\"0\" type=\"line\"/>\n      <point x=\"1088\" y=\"1420\" type=\"line\"/>\n      <point x=\"998\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"284\" y=\"911\" type=\"line\"/>\n      <point x=\"1880\" y=\"911\" type=\"line\"/>\n      <point x=\"1880\" y=\"1001\" type=\"line\"/>\n      <point x=\"284\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2050\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2117\" y=\"-214\"/>\n      <point x=\"2158\" y=\"-206\"/>\n      <point x=\"2196\" y=\"-194\" type=\"curve\"/>\n      <point x=\"2183\" y=\"-112\" type=\"line\"/>\n      <point x=\"2141\" y=\"-119\"/>\n      <point x=\"2101\" y=\"-124\"/>\n      <point x=\"2068\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1922\" y=\"-124\"/>\n      <point x=\"1818\" y=\"-21\"/>\n      <point x=\"1844\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1860\" y=\"264\"/>\n      <point x=\"1930\" y=\"367\"/>\n      <point x=\"1930\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1930\" y=\"618\"/>\n      <point x=\"1801\" y=\"699\"/>\n      <point x=\"1582\" y=\"702\" type=\"curve\"/>\n      <point x=\"1582\" y=\"710\" type=\"line\"/>\n      <point x=\"1801\" y=\"713\"/>\n      <point x=\"1930\" y=\"796\"/>\n      <point x=\"1930\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1930\" y=\"1058\"/>\n      <point x=\"1863\" y=\"1161\"/>\n      <point x=\"1844\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1816\" y=\"1439\"/>\n      <point x=\"1922\" y=\"1536\"/>\n      <point x=\"2068\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2101\" y=\"1536\"/>\n      <point x=\"2140\" y=\"1531\"/>\n      <point x=\"2182\" y=\"1524\" type=\"curve\"/>\n      <point x=\"2196\" y=\"1606\" type=\"line\"/>\n      <point x=\"2158\" y=\"1618\"/>\n      <point x=\"2117\" y=\"1626\"/>\n      <point x=\"2050\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1858\" y=\"1626\"/>\n      <point x=\"1708\" y=\"1498\"/>\n      <point x=\"1748\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1768\" y=\"1164\"/>\n      <point x=\"1830\" y=\"1060\"/>\n      <point x=\"1830\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1830\" y=\"832\"/>\n      <point x=\"1709\" y=\"772\"/>\n      <point x=\"1504\" y=\"772\" type=\"curve\"/>\n      <point x=\"1504\" y=\"640\" type=\"line\"/>\n      <point x=\"1715\" y=\"640\"/>\n      <point x=\"1830\" y=\"607\"/>\n      <point x=\"1830\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1830\" y=\"375\"/>\n      <point x=\"1767\" y=\"267\"/>\n      <point x=\"1748\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1708\" y=\"-77\"/>\n      <point x=\"1858\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_bracketleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_bracketleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"878\" y=\"0\" type=\"line\"/>\n      <point x=\"968\" y=\"0\" type=\"line\"/>\n      <point x=\"1088\" y=\"1420\" type=\"line\"/>\n      <point x=\"998\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"432\" y=\"0\" type=\"line\"/>\n      <point x=\"522\" y=\"0\" type=\"line\"/>\n      <point x=\"642\" y=\"1420\" type=\"line\"/>\n      <point x=\"552\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"284\" y=\"419\" type=\"line\"/>\n      <point x=\"1606\" y=\"419\" type=\"line\"/>\n      <point x=\"1606\" y=\"509\" type=\"line\"/>\n      <point x=\"284\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"284\" y=\"911\" type=\"line\"/>\n      <point x=\"1606\" y=\"911\" type=\"line\"/>\n      <point x=\"1606\" y=\"1001\" type=\"line\"/>\n      <point x=\"284\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <component base=\"bracketleft\" xOffset=\"1164\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n    <component base=\"colon\" xOffset=\"1222\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"808\" y=\"0\" type=\"line\"/>\n      <point x=\"928\" y=\"1420\" type=\"line\"/>\n      <point x=\"838\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"419\" type=\"line\"/>\n      <point x=\"1076\" y=\"419\" type=\"line\"/>\n      <point x=\"1076\" y=\"509\" type=\"line\"/>\n      <point x=\"-20\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"272\" y=\"0\" type=\"line\"/>\n      <point x=\"362\" y=\"0\" type=\"line\"/>\n      <point x=\"482\" y=\"1420\" type=\"line\"/>\n      <point x=\"392\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"911\" type=\"line\"/>\n      <point x=\"1076\" y=\"911\" type=\"line\"/>\n      <point x=\"1076\" y=\"1001\" type=\"line\"/>\n      <point x=\"-20\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1360\" y=\"911\" type=\"line\"/>\n      <point x=\"2120\" y=\"911\" type=\"line\"/>\n      <point x=\"2120\" y=\"1001\" type=\"line\"/>\n      <point x=\"1360\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1360\" y=\"419\" type=\"line\"/>\n      <point x=\"2120\" y=\"419\" type=\"line\"/>\n      <point x=\"2120\" y=\"509\" type=\"line\"/>\n      <point x=\"1360\" y=\"509\" type=\"line\"/>\n    </contour>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_exclam.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_exclam.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n    <component base=\"exclam\" xOffset=\"1222\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"808\" y=\"0\" type=\"line\"/>\n      <point x=\"928\" y=\"1420\" type=\"line\"/>\n      <point x=\"838\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"419\" type=\"line\"/>\n      <point x=\"1220\" y=\"419\" type=\"line\"/>\n      <point x=\"1220\" y=\"509\" type=\"line\"/>\n      <point x=\"-20\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"272\" y=\"0\" type=\"line\"/>\n      <point x=\"362\" y=\"0\" type=\"line\"/>\n      <point x=\"482\" y=\"1420\" type=\"line\"/>\n      <point x=\"392\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"911\" type=\"line\"/>\n      <point x=\"1220\" y=\"911\" type=\"line\"/>\n      <point x=\"1220\" y=\"1001\" type=\"line\"/>\n      <point x=\"-20\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_parenleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_parenleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"878\" y=\"0\" type=\"line\"/>\n      <point x=\"968\" y=\"0\" type=\"line\"/>\n      <point x=\"1088\" y=\"1420\" type=\"line\"/>\n      <point x=\"998\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"432\" y=\"0\" type=\"line\"/>\n      <point x=\"522\" y=\"0\" type=\"line\"/>\n      <point x=\"642\" y=\"1420\" type=\"line\"/>\n      <point x=\"552\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"284\" y=\"419\" type=\"line\"/>\n      <point x=\"1536\" y=\"419\" type=\"line\"/>\n      <point x=\"1536\" y=\"509\" type=\"line\"/>\n      <point x=\"284\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"284\" y=\"911\" type=\"line\"/>\n      <point x=\"1536\" y=\"911\" type=\"line\"/>\n      <point x=\"1536\" y=\"1001\" type=\"line\"/>\n      <point x=\"284\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <component base=\"parenleft\" xOffset=\"1180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1667\" y=\"356\" type=\"line\"/>\n      <point x=\"1761\" y=\"356\" type=\"line\"/>\n      <point x=\"1761\" y=\"458\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1761\" y=\"558\"/>\n      <point x=\"1801\" y=\"631\"/>\n      <point x=\"1897\" y=\"698\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2066\" y=\"818\"/>\n      <point x=\"2138\" y=\"935\"/>\n      <point x=\"2138\" y=\"1092\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2138\" y=\"1313\"/>\n      <point x=\"1997\" y=\"1440\"/>\n      <point x=\"1752\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1476\" y=\"1440\"/>\n      <point x=\"1318\" y=\"1280\"/>\n      <point x=\"1318\" y=\"1000\" type=\"curve\"/>\n      <point x=\"1414\" y=\"1000\" type=\"line\"/>\n      <point x=\"1414\" y=\"1222\"/>\n      <point x=\"1536\" y=\"1351\"/>\n      <point x=\"1750\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1935\" y=\"1350\"/>\n      <point x=\"2042\" y=\"1252\"/>\n      <point x=\"2042\" y=\"1082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2042\" y=\"960\"/>\n      <point x=\"1986\" y=\"867\"/>\n      <point x=\"1853\" y=\"774\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1723\" y=\"683\"/>\n      <point x=\"1667\" y=\"594\"/>\n      <point x=\"1667\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"305\" y=\"419\" type=\"line\"/>\n      <point x=\"1257\" y=\"419\" type=\"line\"/>\n      <point x=\"1257\" y=\"509\" type=\"line\"/>\n      <point x=\"305\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"453\" y=\"0\" type=\"line\"/>\n      <point x=\"543\" y=\"0\" type=\"line\"/>\n      <point x=\"663\" y=\"1420\" type=\"line\"/>\n      <point x=\"573\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"899\" y=\"0\" type=\"line\"/>\n      <point x=\"989\" y=\"0\" type=\"line\"/>\n      <point x=\"1109\" y=\"1420\" type=\"line\"/>\n      <point x=\"1019\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"305\" y=\"911\" type=\"line\"/>\n      <point x=\"1414\" y=\"911\" type=\"line\"/>\n      <point x=\"1414\" y=\"1001\" type=\"line\"/>\n      <point x=\"305\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"1118\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"808\" y=\"0\" type=\"line\"/>\n      <point x=\"928\" y=\"1420\" type=\"line\"/>\n      <point x=\"838\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"419\" type=\"line\"/>\n      <point x=\"1220\" y=\"419\" type=\"line\"/>\n      <point x=\"1220\" y=\"509\" type=\"line\"/>\n      <point x=\"124\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"272\" y=\"0\" type=\"line\"/>\n      <point x=\"362\" y=\"0\" type=\"line\"/>\n      <point x=\"482\" y=\"1420\" type=\"line\"/>\n      <point x=\"392\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"911\" type=\"line\"/>\n      <point x=\"1220\" y=\"911\" type=\"line\"/>\n      <point x=\"1220\" y=\"1001\" type=\"line\"/>\n      <point x=\"124\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_underscore.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_underscore.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"890\" y=\"-90\" type=\"line\"/>\n      <point x=\"980\" y=\"-90\" type=\"line\"/>\n      <point x=\"1108\" y=\"1420\" type=\"line\"/>\n      <point x=\"1018\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"419\" type=\"line\"/>\n      <point x=\"1256\" y=\"419\" type=\"line\"/>\n      <point x=\"1256\" y=\"509\" type=\"line\"/>\n      <point x=\"304\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"452\" y=\"0\" type=\"line\"/>\n      <point x=\"542\" y=\"0\" type=\"line\"/>\n      <point x=\"662\" y=\"1420\" type=\"line\"/>\n      <point x=\"572\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"930\" y=\"-90\" type=\"line\"/>\n      <point x=\"2160\" y=\"-90\" type=\"line\"/>\n      <point x=\"2160\" y=\"0\" type=\"line\"/>\n      <point x=\"930\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"911\" type=\"line\"/>\n      <point x=\"1256\" y=\"911\" type=\"line\"/>\n      <point x=\"1256\" y=\"1001\" type=\"line\"/>\n      <point x=\"304\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_underscore_parenleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_underscore_parenleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"3357\" y=\"-90\" type=\"line\"/>\n      <point x=\"3357\" y=\"-30\" type=\"line\"/>\n      <point x=\"3329\" y=\"-30\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2971\" y=\"-30\"/>\n      <point x=\"2769\" y=\"243\"/>\n      <point x=\"2769\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2769\" y=\"1232\"/>\n      <point x=\"2971\" y=\"1530\"/>\n      <point x=\"3329\" y=\"1530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3357\" y=\"1530\" type=\"line\"/>\n      <point x=\"3357\" y=\"1620\" type=\"line\"/>\n      <point x=\"3309\" y=\"1620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2905\" y=\"1620\"/>\n      <point x=\"2673\" y=\"1291\"/>\n      <point x=\"2673\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2673\" y=\"263\"/>\n      <point x=\"2827\" y=\"62\"/>\n      <point x=\"3012\" y=\"5\" type=\"curve\"/>\n      <point x=\"3012\" y=\"-26\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"419\" type=\"line\"/>\n      <point x=\"1256\" y=\"419\" type=\"line\"/>\n      <point x=\"1256\" y=\"509\" type=\"line\"/>\n      <point x=\"304\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"452\" y=\"0\" type=\"line\"/>\n      <point x=\"542\" y=\"0\" type=\"line\"/>\n      <point x=\"662\" y=\"1420\" type=\"line\"/>\n      <point x=\"572\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"890\" y=\"-90\" type=\"line\"/>\n      <point x=\"980\" y=\"-90\" type=\"line\"/>\n      <point x=\"1108\" y=\"1420\" type=\"line\"/>\n      <point x=\"1018\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"911\" type=\"line\"/>\n      <point x=\"1256\" y=\"911\" type=\"line\"/>\n      <point x=\"1256\" y=\"1001\" type=\"line\"/>\n      <point x=\"304\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"930\" y=\"-90\" type=\"line\"/>\n      <point x=\"3357\" y=\"-90\" type=\"line\"/>\n      <point x=\"3100\" y=\"0\" type=\"line\"/>\n      <point x=\"930\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numeral-greek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numeral-greek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0374\"/>\n  <outline>\n    <component base=\"quoteright\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/numero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2116\"/>\n  <outline>\n    <contour>\n      <point x=\"854\" y=\"220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"220\"/>\n      <point x=\"1132\" y=\"344\"/>\n      <point x=\"1132\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1132\" y=\"722\"/>\n      <point x=\"1022\" y=\"846\"/>\n      <point x=\"854\" y=\"846\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"685\" y=\"846\"/>\n      <point x=\"574\" y=\"722\"/>\n      <point x=\"574\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"574\" y=\"344\"/>\n      <point x=\"685\" y=\"220\"/>\n    </contour>\n    <contour>\n      <point x=\"574\" y=\"0\" type=\"line\"/>\n      <point x=\"1132\" y=\"0\" type=\"line\"/>\n      <point x=\"1132\" y=\"90\" type=\"line\"/>\n      <point x=\"574\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"82\" y=\"840\" type=\"line\"/>\n      <point x=\"176\" y=\"840\" type=\"line\"/>\n      <point x=\"176\" y=\"1420\" type=\"line\"/>\n      <point x=\"82\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"742\" y=\"312\"/>\n      <point x=\"670\" y=\"401\"/>\n      <point x=\"670\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"666\"/>\n      <point x=\"742\" y=\"754\"/>\n      <point x=\"854\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"754\"/>\n      <point x=\"1036\" y=\"666\"/>\n      <point x=\"1036\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"401\"/>\n      <point x=\"964\" y=\"312\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"840\" type=\"line\"/>\n      <point x=\"534\" y=\"840\" type=\"line\"/>\n      <point x=\"534\" y=\"945\" type=\"line\"/>\n      <point x=\"494\" y=\"945\" type=\"line\"/>\n      <point x=\"226\" y=\"1420\" type=\"line\"/>\n      <point x=\"114\" y=\"1420\" type=\"line\"/>\n      <point x=\"114\" y=\"1315\" type=\"line\"/>\n      <point x=\"186\" y=\"1315\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"504\" y=\"840\" type=\"line\"/>\n      <point x=\"598\" y=\"840\" type=\"line\"/>\n      <point x=\"598\" y=\"1420\" type=\"line\"/>\n      <point x=\"504\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nun-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nun-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E0\"/>\n  <anchor x=\"463\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"159\" y=\"0\" type=\"line\"/>\n      <point x=\"503\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"0\"/>\n      <point x=\"872\" y=\"94\"/>\n      <point x=\"872\" y=\"364\" type=\"curve\"/>\n      <point x=\"872\" y=\"1200\" type=\"line\"/>\n      <point x=\"773\" y=\"1200\" type=\"line\"/>\n      <point x=\"773\" y=\"376\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"152\"/>\n      <point x=\"605\" y=\"99\"/>\n      <point x=\"481\" y=\"99\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"159\" y=\"99\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"365\" y=\"1101\" type=\"line\"/>\n      <point x=\"872\" y=\"1101\" type=\"line\"/>\n      <point x=\"872\" y=\"1200\" type=\"line\"/>\n      <point x=\"365\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nundagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nundagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB40\"/>\n  <outline>\n    <component base=\"nun-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-137\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nyeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nyeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"twodotshorizontalcenter-ar\" xOffset=\"12\" yOffset=\"-394\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nyeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nyeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0683\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"twodotshorizontalcenter-ar\" xOffset=\"59\" yOffset=\"-366\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nyeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nyeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/nyeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nyeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/o-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"o-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043E\"/>\n  <outline>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/o.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"o\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"530\" name=\"center\"/>\n  <anchor x=\"600\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <anchor x=\"1017\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"-20\"/>\n      <point x=\"1040\" y=\"180\"/>\n      <point x=\"1040\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"880\"/>\n      <point x=\"878\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"322\" y=\"1080\"/>\n      <point x=\"160\" y=\"880\"/>\n      <point x=\"160\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"180\"/>\n      <point x=\"322\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"72\"/>\n      <point x=\"256\" y=\"238\"/>\n      <point x=\"256\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"256\" y=\"822\"/>\n      <point x=\"381\" y=\"988\"/>\n      <point x=\"600\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"819\" y=\"988\"/>\n      <point x=\"944\" y=\"822\"/>\n      <point x=\"944\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"238\"/>\n      <point x=\"819\" y=\"72\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F3\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"acutecomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/obarred-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"obarred-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E9\"/>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"485\" type=\"line\"/>\n      <point x=\"1001\" y=\"485\" type=\"line\"/>\n      <point x=\"1001\" y=\"575\" type=\"line\"/>\n      <point x=\"230\" y=\"575\" type=\"line\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/obreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"obreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014F\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F4\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED1\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"acutecomb\" xOffset=\"447\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED9\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dotbelowcomb\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED3\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"gravecomb\" xOffset=\"288\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>gravecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED5\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"hookabovecomb\" xOffset=\"377\" yOffset=\"340\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top_viet</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>hookabovecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED7\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"tildecomb\" xOffset=\"7\" yOffset=\"520\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/odieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"odieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F6\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dieresiscomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/odotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"odotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECD\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oe-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oe-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oe-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oe-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C6\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oe.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oe\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0153\"/>\n  <anchor x=\"610\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"610\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"354\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"-20\"/>\n      <point x=\"628\" y=\"162\"/>\n      <point x=\"628\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"898\"/>\n      <point x=\"538\" y=\"1080\"/>\n      <point x=\"354\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"147\" y=\"1080\"/>\n      <point x=\"44\" y=\"898\"/>\n      <point x=\"44\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"44\" y=\"162\"/>\n      <point x=\"147\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"354\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"210\" y=\"72\"/>\n      <point x=\"140\" y=\"223\"/>\n      <point x=\"140\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"140\" y=\"837\"/>\n      <point x=\"210\" y=\"988\"/>\n      <point x=\"354\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"988\"/>\n      <point x=\"556\" y=\"837\"/>\n      <point x=\"556\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"223\"/>\n      <point x=\"490\" y=\"72\"/>\n    </contour>\n    <contour>\n      <point x=\"954\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"-20\"/>\n      <point x=\"1060\" y=\"-10\"/>\n      <point x=\"1099\" y=\"5\" type=\"curve\"/>\n      <point x=\"1084\" y=\"97\" type=\"line\"/>\n      <point x=\"1050\" y=\"81\"/>\n      <point x=\"1010\" y=\"72\"/>\n      <point x=\"978\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"72\"/>\n      <point x=\"647\" y=\"245\"/>\n      <point x=\"647\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"825\"/>\n      <point x=\"732\" y=\"988\"/>\n      <point x=\"878\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"996\" y=\"988\"/>\n      <point x=\"1055\" y=\"845\"/>\n      <point x=\"1055\" y=\"558\" type=\"curve\"/>\n      <point x=\"624\" y=\"558\" type=\"line\"/>\n      <point x=\"624\" y=\"468\" type=\"line\"/>\n      <point x=\"1145\" y=\"468\" type=\"line\"/>\n      <point x=\"1149\" y=\"494\"/>\n      <point x=\"1151\" y=\"527\"/>\n      <point x=\"1151\" y=\"556\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1151\" y=\"906\"/>\n      <point x=\"1060\" y=\"1080\"/>\n      <point x=\"876\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"1080\"/>\n      <point x=\"581\" y=\"885\"/>\n      <point x=\"581\" y=\"544\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"581\" y=\"176\"/>\n      <point x=\"717\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DB\"/>\n  <outline>\n    <component base=\"ogonekcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ogonekcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ogonekcomb\" format=\"2\">\n  <unicode hex=\"0328\"/>\n  <anchor x=\"695\" y=\"10\" name=\"_ogonek\"/>\n  <anchor x=\"580\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"622\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"649\" y=\"-424\"/>\n      <point x=\"684\" y=\"-423\"/>\n      <point x=\"716\" y=\"-415\" type=\"curve\"/>\n      <point x=\"723\" y=\"-336\" type=\"line\"/>\n      <point x=\"696\" y=\"-339\"/>\n      <point x=\"669\" y=\"-341\"/>\n      <point x=\"648\" y=\"-341\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"-341\"/>\n      <point x=\"482\" y=\"-293\"/>\n      <point x=\"482\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"-87\"/>\n      <point x=\"576\" y=\"0\"/>\n      <point x=\"740\" y=\"0\" type=\"curve\"/>\n      <point x=\"740\" y=\"32\" type=\"line\"/>\n      <point x=\"535\" y=\"32\" type=\"line\"/>\n      <point x=\"535\" y=\"-15\" type=\"line\"/>\n      <point x=\"444\" y=\"-63\"/>\n      <point x=\"392\" y=\"-139\"/>\n      <point x=\"392\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"392\" y=\"-351\"/>\n      <point x=\"476\" y=\"-424\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ograve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ograve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F2\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"gravecomb\" xOffset=\"-69\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ohookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECF\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"hookabovecomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ohorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A1\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"horncomb\" xOffset=\"337\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ohornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDB\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"acutecomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ohorndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE3\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"dotbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ohorngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDD\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"gravecomb\" xOffset=\"-69\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ohornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDF\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"hookabovecomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ohorntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE1\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"tildecomb\" xOffset=\"7\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ohungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0151\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"hungarumlautcomb\" xOffset=\"40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/omacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014D\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/omacronacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacronacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E53\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n    <component base=\"acutecomb\" xOffset=\"90\" yOffset=\"238\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/omacrongrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacrongrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E51\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n    <component base=\"gravecomb\" xOffset=\"-69\" yOffset=\"238\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/omega.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omega\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C9\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"807\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"970\" y=\"-20\"/>\n      <point x=\"1058\" y=\"81\"/>\n      <point x=\"1058\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"1060\" type=\"line\"/>\n      <point x=\"964\" y=\"1060\" type=\"line\"/>\n      <point x=\"964\" y=\"260\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"140\"/>\n      <point x=\"910\" y=\"72\"/>\n      <point x=\"807\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"72\"/>\n      <point x=\"640\" y=\"121\"/>\n      <point x=\"640\" y=\"250\" type=\"curve\"/>\n      <point x=\"597\" y=\"234\" type=\"line\"/>\n      <point x=\"596\" y=\"234\" type=\"line\"/>\n      <point x=\"605\" y=\"56\"/>\n      <point x=\"677\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"371\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"507\" y=\"-20\"/>\n      <point x=\"583\" y=\"56\"/>\n      <point x=\"592\" y=\"234\" type=\"curve\"/>\n      <point x=\"591\" y=\"234\" type=\"line\"/>\n      <point x=\"548\" y=\"250\" type=\"line\"/>\n      <point x=\"548\" y=\"121\"/>\n      <point x=\"487\" y=\"72\"/>\n      <point x=\"371\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"275\" y=\"72\"/>\n      <point x=\"224\" y=\"140\"/>\n      <point x=\"224\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"1060\" type=\"line\"/>\n      <point x=\"130\" y=\"1060\" type=\"line\"/>\n      <point x=\"130\" y=\"260\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"130\" y=\"81\"/>\n      <point x=\"215\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"548\" y=\"214\" type=\"line\"/>\n      <point x=\"640\" y=\"214\" type=\"line\"/>\n      <point x=\"640\" y=\"860\" type=\"line\"/>\n      <point x=\"548\" y=\"860\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/omegatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omegatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CE\"/>\n  <outline>\n    <component base=\"omega\"/>\n    <component base=\"tonos\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/omicron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omicron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BF\"/>\n  <outline>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/omicrontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omicrontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CC\"/>\n  <outline>\n    <component base=\"omicron\"/>\n    <component base=\"tonos\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0661\"/>\n  <outline>\n    <contour>\n      <point x=\"661\" y=\"0\" type=\"curve\"/>\n      <point x=\"757\" y=\"0\" type=\"line\"/>\n      <point x=\"771\" y=\"550\"/>\n      <point x=\"710\" y=\"1010\"/>\n      <point x=\"484\" y=\"1442\" type=\"curve\"/>\n      <point x=\"391\" y=\"1408\" type=\"line\"/>\n      <point x=\"617\" y=\"950\"/>\n      <point x=\"673\" y=\"550\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"689\" y=\"-1\" type=\"line\"/>\n      <point x=\"699\" y=\"214\"/>\n      <point x=\"673\" y=\"448\"/>\n      <point x=\"611\" y=\"638\" type=\"curve\"/>\n      <point x=\"519\" y=\"619\" type=\"line\"/>\n      <point x=\"576\" y=\"427\"/>\n      <point x=\"603\" y=\"214\"/>\n      <point x=\"597\" y=\"0\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"one-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F1\"/>\n  <outline>\n    <component base=\"one-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"one-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>one-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"one-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>one-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"onesuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0031\"/>\n  <outline>\n    <contour>\n      <point x=\"583\" y=\"0\" type=\"line\"/>\n      <point x=\"677\" y=\"0\" type=\"line\"/>\n      <point x=\"677\" y=\"1420\" type=\"line\"/>\n      <point x=\"583\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"0\" type=\"line\"/>\n      <point x=\"603\" y=\"0\" type=\"line\"/>\n      <point x=\"603\" y=\"90\" type=\"line\"/>\n      <point x=\"194\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"655\" y=\"0\" type=\"line\"/>\n      <point x=\"1028\" y=\"0\" type=\"line\"/>\n      <point x=\"1028\" y=\"90\" type=\"line\"/>\n      <point x=\"655\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"214\" y=\"1208\" type=\"line\"/>\n      <point x=\"583\" y=\"1324\" type=\"line\"/>\n      <point x=\"583\" y=\"1420\" type=\"line\"/>\n      <point x=\"214\" y=\"1300\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"392\" y=\"0\" type=\"line\"/>\n      <point x=\"490\" y=\"0\" type=\"line\"/>\n      <point x=\"490\" y=\"639\" type=\"line\"/>\n      <point x=\"392\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"129\" y=\"0\" type=\"line\"/>\n      <point x=\"406\" y=\"0\" type=\"line\"/>\n      <point x=\"406\" y=\"88\" type=\"line\"/>\n      <point x=\"129\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"476\" y=\"0\" type=\"line\"/>\n      <point x=\"726\" y=\"0\" type=\"line\"/>\n      <point x=\"726\" y=\"88\" type=\"line\"/>\n      <point x=\"476\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"491\" type=\"line\"/>\n      <point x=\"392\" y=\"543\" type=\"line\"/>\n      <point x=\"392\" y=\"639\" type=\"line\"/>\n      <point x=\"143\" y=\"585\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/one.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"onesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/onedotenleader.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onedotenleader\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2024\"/>\n  <outline>\n    <component base=\"period\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneeighth.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"601\" y=\"639\" type=\"line\"/>\n      <point x=\"547\" y=\"714\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"653\" y=\"678\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"599\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oneeighth.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneeighth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215B\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onehalf.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"601\" y=\"639\" type=\"line\"/>\n      <point x=\"547\" y=\"714\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"653\" y=\"678\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"599\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"twoinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/onehalf.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onehalf\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BD\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"twoinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oneinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2081\"/>\n  <outline>\n    <component base=\"onesuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onequarter.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"601\" y=\"639\" type=\"line\"/>\n      <point x=\"547\" y=\"714\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"653\" y=\"678\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"599\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"foursuperior\" xOffset=\"240\" yOffset=\"-802\"/>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/onequarter.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onequarter\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BC\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <component base=\"foursuperior\" xOffset=\"240\" yOffset=\"-802\"/>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/onesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B9\"/>\n  <outline>\n    <contour>\n      <point x=\"571\" y=\"802\" type=\"line\"/>\n      <point x=\"665\" y=\"802\" type=\"line\"/>\n      <point x=\"665\" y=\"1420\" type=\"line\"/>\n      <point x=\"571\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"365\" y=\"802\" type=\"line\"/>\n      <point x=\"579\" y=\"802\" type=\"line\"/>\n      <point x=\"579\" y=\"892\" type=\"line\"/>\n      <point x=\"365\" y=\"892\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"656\" y=\"802\" type=\"line\"/>\n      <point x=\"835\" y=\"802\" type=\"line\"/>\n      <point x=\"835\" y=\"892\" type=\"line\"/>\n      <point x=\"656\" y=\"892\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"374\" y=\"1274\" type=\"line\"/>\n      <point x=\"571\" y=\"1325\" type=\"line\"/>\n      <point x=\"571\" y=\"1420\" type=\"line\"/>\n      <point x=\"374\" y=\"1367\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01EB\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"659\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"-424\"/>\n      <point x=\"721\" y=\"-423\"/>\n      <point x=\"753\" y=\"-415\" type=\"curve\"/>\n      <point x=\"760\" y=\"-332\" type=\"line\"/>\n      <point x=\"733\" y=\"-335\"/>\n      <point x=\"706\" y=\"-337\"/>\n      <point x=\"685\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"582\" y=\"-337\"/>\n      <point x=\"523\" y=\"-290\"/>\n      <point x=\"523\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"523\" y=\"-79\"/>\n      <point x=\"615\" y=\"-44\"/>\n      <point x=\"777\" y=\"13\" type=\"curve\"/>\n      <point x=\"772\" y=\"40\" type=\"line\"/>\n      <point x=\"550\" y=\"34\" type=\"line\"/>\n      <point x=\"550\" y=\"-29\" type=\"line\"/>\n      <point x=\"474\" y=\"-65\"/>\n      <point x=\"429\" y=\"-137\"/>\n      <point x=\"429\" y=\"-228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"429\" y=\"-353\"/>\n      <point x=\"513\" y=\"-424\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oopen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0254\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"-20\"/>\n      <point x=\"1040\" y=\"182\"/>\n      <point x=\"1040\" y=\"528\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"884\"/>\n      <point x=\"844\" y=\"1080\"/>\n      <point x=\"498\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"1080\"/>\n      <point x=\"299\" y=\"1068\"/>\n      <point x=\"204\" y=\"1033\" type=\"curve\"/>\n      <point x=\"236\" y=\"947\" type=\"line\"/>\n      <point x=\"336\" y=\"977\"/>\n      <point x=\"405\" y=\"988\"/>\n      <point x=\"494\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"988\"/>\n      <point x=\"944\" y=\"824\"/>\n      <point x=\"944\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"233\"/>\n      <point x=\"793\" y=\"72\"/>\n      <point x=\"534\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"397\" y=\"72\"/>\n      <point x=\"276\" y=\"118\"/>\n      <point x=\"201\" y=\"172\" type=\"curve\"/>\n      <point x=\"156\" y=\"103\" type=\"line\"/>\n      <point x=\"230\" y=\"34\"/>\n      <point x=\"364\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ordfeminine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ordfeminine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AA\"/>\n  <outline>\n    <contour>\n      <point x=\"745\" y=\"779\" type=\"line\"/>\n      <point x=\"920\" y=\"785\" type=\"line\"/>\n      <point x=\"920\" y=\"857\" type=\"line\"/>\n      <point x=\"813\" y=\"870\" type=\"line\"/>\n      <point x=\"813\" y=\"1159\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"1340\"/>\n      <point x=\"724\" y=\"1438\"/>\n      <point x=\"484\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"1440\" type=\"line\"/>\n      <point x=\"335\" y=\"1348\" type=\"line\"/>\n      <point x=\"496\" y=\"1348\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"1348\"/>\n      <point x=\"721\" y=\"1286\"/>\n      <point x=\"721\" y=\"1178\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"963\" type=\"line\"/>\n      <point x=\"737\" y=\"964\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"481\" y=\"773\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"773\"/>\n      <point x=\"688\" y=\"823\"/>\n      <point x=\"726\" y=\"921\" type=\"curve\"/>\n      <point x=\"706\" y=\"914\" type=\"line\"/>\n      <point x=\"757\" y=\"914\" type=\"line\"/>\n      <point x=\"721\" y=\"1078\" type=\"line\"/>\n      <point x=\"721\" y=\"1039\" type=\"line\"/>\n      <point x=\"721\" y=\"955\"/>\n      <point x=\"645\" y=\"863\"/>\n      <point x=\"495\" y=\"863\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"863\"/>\n      <point x=\"354\" y=\"902\"/>\n      <point x=\"354\" y=\"973\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"1059\"/>\n      <point x=\"412\" y=\"1103\"/>\n      <point x=\"523\" y=\"1103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"1103\"/>\n      <point x=\"676\" y=\"1103\"/>\n      <point x=\"755\" y=\"1087\" type=\"curve\"/>\n      <point x=\"781\" y=\"1157\" type=\"line\"/>\n      <point x=\"727\" y=\"1175\"/>\n      <point x=\"629\" y=\"1183\"/>\n      <point x=\"519\" y=\"1183\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"352\" y=\"1183\"/>\n      <point x=\"258\" y=\"1105\"/>\n      <point x=\"258\" y=\"966\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"843\"/>\n      <point x=\"340\" y=\"773\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ordmasculine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ordmasculine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BA\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"770\"/>\n      <point x=\"918\" y=\"903\"/>\n      <point x=\"918\" y=\"1105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"1307\"/>\n      <point x=\"792\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"1440\"/>\n      <point x=\"282\" y=\"1307\"/>\n      <point x=\"282\" y=\"1105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"282\" y=\"903\"/>\n      <point x=\"408\" y=\"770\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"862\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"862\"/>\n      <point x=\"378\" y=\"959\"/>\n      <point x=\"378\" y=\"1105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"1252\"/>\n      <point x=\"466\" y=\"1348\"/>\n      <point x=\"600\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"1348\"/>\n      <point x=\"822\" y=\"1252\"/>\n      <point x=\"822\" y=\"1105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"959\"/>\n      <point x=\"734\" y=\"862\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/orthogonal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"orthogonal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221F\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"0\" type=\"line\"/>\n      <point x=\"218\" y=\"0\" type=\"line\"/>\n      <point x=\"218\" y=\"1060\" type=\"line\"/>\n      <point x=\"124\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"0\" type=\"line\"/>\n      <point x=\"1076\" y=\"88\" type=\"line\"/>\n      <point x=\"124\" y=\"88\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F8\"/>\n  <outline>\n    <contour>\n      <point x=\"301\" y=\"-134\" type=\"line\"/>\n      <point x=\"981\" y=\"1158\" type=\"line\"/>\n      <point x=\"896\" y=\"1198\" type=\"line\"/>\n      <point x=\"226\" y=\"-84\" type=\"line\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/oslashacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oslashacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FF\"/>\n  <outline>\n    <component base=\"oslash\"/>\n    <component base=\"acutecomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/otilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"otilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F5\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"tildecomb\" xOffset=\"7\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/overline.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"overline\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203E\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"1568\" type=\"line\"/>\n      <point x=\"1100\" y=\"1568\" type=\"line\"/>\n      <point x=\"1100\" y=\"1658\" type=\"line\"/>\n      <point x=\"100\" y=\"1658\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"p\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0070\"/>\n  <anchor x=\"650\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"650\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"192\" y=\"-460\" type=\"line\"/>\n      <point x=\"286\" y=\"-460\" type=\"line\"/>\n      <point x=\"286\" y=\"806\" type=\"line\"/>\n      <point x=\"266\" y=\"1060\" type=\"line\"/>\n      <point x=\"192\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"657\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"-20\"/>\n      <point x=\"1080\" y=\"165\"/>\n      <point x=\"1080\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"888\"/>\n      <point x=\"933\" y=\"1080\"/>\n      <point x=\"651\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"1080\"/>\n      <point x=\"327\" y=\"992\"/>\n      <point x=\"294\" y=\"822\" type=\"curve\"/>\n      <point x=\"224\" y=\"822\" type=\"line\"/>\n      <point x=\"286\" y=\"535\" type=\"line\"/>\n      <point x=\"286\" y=\"833\"/>\n      <point x=\"407\" y=\"988\"/>\n      <point x=\"639\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"866\" y=\"988\"/>\n      <point x=\"984\" y=\"828\"/>\n      <point x=\"984\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"226\"/>\n      <point x=\"865\" y=\"72\"/>\n      <point x=\"637\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"406\" y=\"72\"/>\n      <point x=\"286\" y=\"227\"/>\n      <point x=\"286\" y=\"524\" type=\"curve\"/>\n      <point x=\"214\" y=\"250\" type=\"line\"/>\n      <point x=\"295\" y=\"250\" type=\"line\"/>\n      <point x=\"329\" y=\"83\"/>\n      <point x=\"442\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pagenumber-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pagenumber-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0603\"/>\n  <outline>\n    <contour>\n      <point x=\"831\" y=\"-240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1054\" y=\"-240\"/>\n      <point x=\"1167\" y=\"-202\"/>\n      <point x=\"1167\" y=\"-47\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1167\" y=\"80\"/>\n      <point x=\"1083\" y=\"180\"/>\n      <point x=\"985\" y=\"180\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"180\"/>\n      <point x=\"752\" y=\"-4\"/>\n      <point x=\"655\" y=\"-171\" type=\"curve\"/>\n      <point x=\"733\" y=\"-193\" type=\"line\"/>\n      <point x=\"808\" y=\"-55\"/>\n      <point x=\"910\" y=\"86\"/>\n      <point x=\"967\" y=\"86\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"86\"/>\n      <point x=\"1075\" y=\"12\"/>\n      <point x=\"1075\" y=\"-50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1075\" y=\"-140\"/>\n      <point x=\"1015\" y=\"-143\"/>\n      <point x=\"803\" y=\"-143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"-143\"/>\n      <point x=\"649\" y=\"-143\"/>\n      <point x=\"643\" y=\"-119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"-100\"/>\n      <point x=\"639\" y=\"-79\"/>\n      <point x=\"638\" y=\"-35\" type=\"curve\"/>\n      <point x=\"556\" y=\"-35\" type=\"line\"/>\n      <point x=\"555\" y=\"-78\"/>\n      <point x=\"555\" y=\"-94\"/>\n      <point x=\"554\" y=\"-112\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"-137\"/>\n      <point x=\"546\" y=\"-143\"/>\n      <point x=\"484\" y=\"-143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"30\" y=\"-143\" type=\"line\"/>\n      <point x=\"43\" y=\"-237\" type=\"line\"/>\n      <point x=\"463\" y=\"-237\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"-237\"/>\n      <point x=\"568\" y=\"-229\"/>\n      <point x=\"586\" y=\"-173\" type=\"curve\"/>\n      <point x=\"599\" y=\"-173\" type=\"line\"/>\n      <point x=\"617\" y=\"-229\"/>\n      <point x=\"658\" y=\"-240\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/palochka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"palochka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04CF\"/>\n  <outline>\n    <component base=\"idotless\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/paragraph.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"paragraph\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B6\"/>\n  <outline>\n    <contour>\n      <point x=\"512\" y=\"700\" type=\"curve\"/>\n      <point x=\"524\" y=\"1420\" type=\"line\"/>\n      <point x=\"226\" y=\"1420\"/>\n      <point x=\"60\" y=\"1284\"/>\n      <point x=\"60\" y=\"1052\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"60\" y=\"824\"/>\n      <point x=\"224\" y=\"700\"/>\n    </contour>\n    <contour>\n      <point x=\"477\" y=\"0\" type=\"line\"/>\n      <point x=\"571\" y=\"0\" type=\"line\"/>\n      <point x=\"571\" y=\"1386\" type=\"line\"/>\n      <point x=\"477\" y=\"1386\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"845\" y=\"0\" type=\"line\"/>\n      <point x=\"939\" y=\"0\" type=\"line\"/>\n      <point x=\"939\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"504\" y=\"1330\" type=\"line\"/>\n      <point x=\"1136\" y=\"1330\" type=\"line\"/>\n      <point x=\"1136\" y=\"1420\" type=\"line\"/>\n      <point x=\"524\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/parenleft-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FD3E\"/>\n  <outline>\n    <contour>\n      <point x=\"498\" y=\"394\" type=\"line\"/>\n      <point x=\"622\" y=\"394\" type=\"line\"/>\n      <point x=\"566\" y=\"619\" type=\"line\"/>\n      <point x=\"760\" y=\"485\" type=\"line\"/>\n      <point x=\"814\" y=\"592\" type=\"line\"/>\n      <point x=\"605\" y=\"683\" type=\"line\"/>\n      <point x=\"813\" y=\"773\" type=\"line\"/>\n      <point x=\"750\" y=\"880\" type=\"line\"/>\n      <point x=\"564\" y=\"744\" type=\"line\"/>\n      <point x=\"623\" y=\"968\" type=\"line\"/>\n      <point x=\"492\" y=\"968\" type=\"line\"/>\n      <point x=\"492\" y=\"750\" type=\"line\"/>\n      <point x=\"303\" y=\"879\" type=\"line\"/>\n      <point x=\"248\" y=\"772\" type=\"line\"/>\n      <point x=\"459\" y=\"683\" type=\"line\"/>\n      <point x=\"251\" y=\"590\" type=\"line\"/>\n      <point x=\"314\" y=\"487\" type=\"line\"/>\n      <point x=\"493\" y=\"622\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"749\" y=\"-217\" type=\"curve\"/>\n      <point x=\"848\" y=\"-217\" type=\"line\"/>\n      <point x=\"736\" y=\"-57\"/>\n      <point x=\"643\" y=\"175\"/>\n      <point x=\"623\" y=\"323\" type=\"curve\"/>\n      <point x=\"503\" y=\"323\" type=\"line\"/>\n      <point x=\"532\" y=\"164\"/>\n      <point x=\"637\" y=\"-77\"/>\n    </contour>\n    <contour>\n      <point x=\"530\" y=\"647\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"647\"/>\n      <point x=\"493\" y=\"664\"/>\n      <point x=\"493\" y=\"684\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"704\"/>\n      <point x=\"510\" y=\"721\"/>\n      <point x=\"530\" y=\"721\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"721\"/>\n      <point x=\"567\" y=\"704\"/>\n      <point x=\"567\" y=\"684\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"664\"/>\n      <point x=\"550\" y=\"647\"/>\n    </contour>\n    <contour>\n      <point x=\"503\" y=\"1047\" type=\"curve\"/>\n      <point x=\"623\" y=\"1047\" type=\"line\"/>\n      <point x=\"643\" y=\"1195\"/>\n      <point x=\"736\" y=\"1427\"/>\n      <point x=\"848\" y=\"1587\" type=\"curve\"/>\n      <point x=\"749\" y=\"1587\" type=\"line\"/>\n      <point x=\"637\" y=\"1447\"/>\n      <point x=\"532\" y=\"1206\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/parenleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0028\"/>\n  <outline>\n    <contour>\n      <point x=\"946\" y=\"-200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"-200\" type=\"line\"/>\n      <point x=\"974\" y=\"-110\" type=\"line\"/>\n      <point x=\"946\" y=\"-110\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"588\" y=\"-110\"/>\n      <point x=\"386\" y=\"192\"/>\n      <point x=\"386\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"1232\"/>\n      <point x=\"588\" y=\"1530\"/>\n      <point x=\"946\" y=\"1530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1530\" type=\"line\"/>\n      <point x=\"974\" y=\"1620\" type=\"line\"/>\n      <point x=\"946\" y=\"1620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"1620\"/>\n      <point x=\"290\" y=\"1291\"/>\n      <point x=\"290\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"133\"/>\n      <point x=\"529\" y=\"-200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/parenleft_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1136\" y=\"-200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1164\" y=\"-200\" type=\"line\"/>\n      <point x=\"1164\" y=\"-110\" type=\"line\"/>\n      <point x=\"1136\" y=\"-110\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"-110\"/>\n      <point x=\"416\" y=\"192\"/>\n      <point x=\"416\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"1232\"/>\n      <point x=\"676\" y=\"1530\"/>\n      <point x=\"1136\" y=\"1530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1164\" y=\"1530\" type=\"line\"/>\n      <point x=\"1164\" y=\"1620\" type=\"line\"/>\n      <point x=\"1136\" y=\"1620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"1620\"/>\n      <point x=\"320\" y=\"1291\"/>\n      <point x=\"320\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"133\"/>\n      <point x=\"617\" y=\"-200\"/>\n    </contour>\n    <component base=\"asterisk\" xOffset=\"1100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/parenright-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenright-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FD3F\"/>\n  <outline>\n    <component base=\"parenleft-ar\" xScale=\"-1\" xOffset=\"1200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>parenleft-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/parenright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0029\"/>\n  <outline>\n    <contour>\n      <point x=\"226\" y=\"-200\" type=\"line\"/>\n      <point x=\"254\" y=\"-200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"-200\"/>\n      <point x=\"910\" y=\"133\"/>\n      <point x=\"910\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"1291\"/>\n      <point x=\"671\" y=\"1620\"/>\n      <point x=\"254\" y=\"1620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"1620\" type=\"line\"/>\n      <point x=\"226\" y=\"1530\" type=\"line\"/>\n      <point x=\"254\" y=\"1530\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"1530\"/>\n      <point x=\"814\" y=\"1232\"/>\n      <point x=\"814\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"192\"/>\n      <point x=\"612\" y=\"-110\"/>\n      <point x=\"254\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"-110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/partialdiff.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"partialdiff\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2202\"/>\n  <outline>\n    <contour>\n      <point x=\"614\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"-20\"/>\n      <point x=\"1070\" y=\"150\"/>\n      <point x=\"1070\" y=\"476\" type=\"curve\"/>\n      <point x=\"1032\" y=\"668\" type=\"line\"/>\n      <point x=\"968\" y=\"668\" type=\"line\"/>\n      <point x=\"924\" y=\"816\"/>\n      <point x=\"785\" y=\"900\"/>\n      <point x=\"596\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"312\" y=\"900\"/>\n      <point x=\"152\" y=\"736\"/>\n      <point x=\"152\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"142\"/>\n      <point x=\"310\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"602\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"370\" y=\"70\"/>\n      <point x=\"248\" y=\"201\"/>\n      <point x=\"248\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"680\"/>\n      <point x=\"372\" y=\"810\"/>\n      <point x=\"596\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"837\" y=\"810\"/>\n      <point x=\"974\" y=\"676\"/>\n      <point x=\"974\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"207\"/>\n      <point x=\"835\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"1070\" y=\"476\" type=\"line\"/>\n      <point x=\"1070\" y=\"624\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"1134\"/>\n      <point x=\"814\" y=\"1400\"/>\n      <point x=\"282\" y=\"1426\" type=\"curve\"/>\n      <point x=\"273\" y=\"1336\" type=\"line\"/>\n      <point x=\"745\" y=\"1315\"/>\n      <point x=\"976\" y=\"1094\"/>\n      <point x=\"976\" y=\"666\" type=\"curve\"/>\n      <point x=\"977\" y=\"533\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/paseq-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"paseq-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05C0\"/>\n  <outline>\n    <contour>\n      <point x=\"649\" y=\"0\" type=\"line\"/>\n      <point x=\"649\" y=\"1500\" type=\"line\"/>\n      <point x=\"550\" y=\"1500\" type=\"line\"/>\n      <point x=\"550\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/patah-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"patah-hb\" format=\"2\">\n  <unicode hex=\"05B7\"/>\n  <anchor x=\"599\" y=\"0\" name=\"_bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"772\" y=\"-222\" type=\"line\"/>\n      <point x=\"428\" y=\"-222\" type=\"line\"/>\n      <point x=\"428\" y=\"-321\" type=\"line\"/>\n      <point x=\"772\" y=\"-321\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043F\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"1060\" type=\"line\"/>\n      <point x=\"914\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n      <point x=\"192\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"224\" y=\"970\" type=\"line\"/>\n      <point x=\"977\" y=\"970\" type=\"line\"/>\n      <point x=\"977\" y=\"1060\" type=\"line\"/>\n      <point x=\"224\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pe-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"n\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pe-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E4\"/>\n  <guideline x=\"134\" y=\"742\" angle=\"90\"/>\n  <anchor x=\"597\" y=\"838\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"974\" y=\"99\" type=\"line\"/>\n      <point x=\"139\" y=\"99\" type=\"line\"/>\n      <point x=\"139\" y=\"0\" type=\"line\"/>\n      <point x=\"974\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"556\" y=\"643\" type=\"line\"/>\n      <point x=\"156\" y=\"705\" type=\"line\"/>\n      <point x=\"139\" y=\"608\" type=\"line\"/>\n      <point x=\"536\" y=\"546\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"974\" y=\"829\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1065\"/>\n      <point x=\"831\" y=\"1200\"/>\n      <point x=\"593\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"243\" y=\"1200\" type=\"line\"/>\n      <point x=\"202\" y=\"1032\"/>\n      <point x=\"176\" y=\"896\"/>\n      <point x=\"139\" y=\"608\" type=\"curve\"/>\n      <point x=\"241\" y=\"606\" type=\"line\"/>\n      <point x=\"274\" y=\"896\"/>\n      <point x=\"305\" y=\"1043\"/>\n      <point x=\"319\" y=\"1101\" type=\"curve\"/>\n      <point x=\"593\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"1101\"/>\n      <point x=\"875\" y=\"997\"/>\n      <point x=\"875\" y=\"809\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"0\" type=\"line\"/>\n      <point x=\"974\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pedagesh-hb.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pedagesh-hb.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"729\" y=\"166\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"166\"/>\n      <point x=\"820\" y=\"206\"/>\n      <point x=\"820\" y=\"256\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"820\" y=\"306\"/>\n      <point x=\"779\" y=\"347\"/>\n      <point x=\"729\" y=\"347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"347\"/>\n      <point x=\"638\" y=\"306\"/>\n      <point x=\"638\" y=\"256\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"206\"/>\n      <point x=\"679\" y=\"166\"/>\n    </contour>\n    <component base=\"pe-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pedagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pedagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB44\"/>\n  <outline>\n    <contour>\n      <point x=\"597\" y=\"748\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"748\"/>\n      <point x=\"688\" y=\"788\"/>\n      <point x=\"688\" y=\"838\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"888\"/>\n      <point x=\"647\" y=\"929\"/>\n      <point x=\"597\" y=\"929\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"929\"/>\n      <point x=\"506\" y=\"888\"/>\n      <point x=\"506\" y=\"838\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"788\"/>\n      <point x=\"547\" y=\"748\"/>\n    </contour>\n    <component base=\"pe-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-618\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-708\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067E\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"252\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-626\" yOffset=\"-369\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-618\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-716\" yOffset=\"-369\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-708\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-26\" yOffset=\"-369\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-18\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B7\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-26\" yOffset=\"-369\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-18\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"319\" yOffset=\"-177\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"252\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"259\" yOffset=\"-177\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"212\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pehMeemabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"meemStopabove-ar\" xOffset=\"-6\" yOffset=\"-339\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-8\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>meemStopabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-81\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"4\" yOffset=\"327\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"244\" yOffset=\"327\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A6\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"249\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"155\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"65\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"14\" yOffset=\"327\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/percent-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066A\"/>\n  <outline>\n    <contour>\n      <point x=\"298\" y=\"-20\" type=\"line\"/>\n      <point x=\"977\" y=\"1404\" type=\"line\"/>\n      <point x=\"895\" y=\"1440\" type=\"line\"/>\n      <point x=\"216\" y=\"16\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"884\" y=\"-10\" type=\"line\"/>\n      <point x=\"1029\" y=\"138\" type=\"line\"/>\n      <point x=\"867\" y=\"296\" type=\"line\"/>\n      <point x=\"725\" y=\"145\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"327\" y=\"1134\" type=\"line\"/>\n      <point x=\"472\" y=\"1282\" type=\"line\"/>\n      <point x=\"310\" y=\"1440\" type=\"line\"/>\n      <point x=\"168\" y=\"1289\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/percent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0025\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"306\" type=\"line\"/>\n      <point x=\"1074\" y=\"1036\" type=\"line\"/>\n      <point x=\"1024\" y=\"1106\" type=\"line\"/>\n      <point x=\"136\" y=\"376\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"830\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1018\" y=\"-20\"/>\n      <point x=\"1142\" y=\"108\"/>\n      <point x=\"1142\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1142\" y=\"497\"/>\n      <point x=\"1018\" y=\"626\"/>\n      <point x=\"830\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"626\"/>\n      <point x=\"516\" y=\"497\"/>\n      <point x=\"516\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"108\"/>\n      <point x=\"641\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"830\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"70\"/>\n      <point x=\"608\" y=\"162\"/>\n      <point x=\"608\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"608\" y=\"443\"/>\n      <point x=\"696\" y=\"536\"/>\n      <point x=\"830\" y=\"536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"536\"/>\n      <point x=\"1050\" y=\"443\"/>\n      <point x=\"1050\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1050\" y=\"162\"/>\n      <point x=\"963\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"392\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"793\"/>\n      <point x=\"704\" y=\"921\"/>\n      <point x=\"704\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"1310\"/>\n      <point x=\"580\" y=\"1439\"/>\n      <point x=\"392\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"203\" y=\"1439\"/>\n      <point x=\"78\" y=\"1310\"/>\n      <point x=\"78\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"78\" y=\"921\"/>\n      <point x=\"203\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"392\" y=\"883\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"883\"/>\n      <point x=\"170\" y=\"975\"/>\n      <point x=\"170\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"170\" y=\"1256\"/>\n      <point x=\"258\" y=\"1349\"/>\n      <point x=\"392\" y=\"1349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"1349\"/>\n      <point x=\"612\" y=\"1256\"/>\n      <point x=\"612\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"975\"/>\n      <point x=\"525\" y=\"883\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/percent_percent.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent_percent.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"262\" y=\"306\" type=\"line\"/>\n      <point x=\"1262\" y=\"1127\" type=\"line\"/>\n      <point x=\"1212\" y=\"1197\" type=\"line\"/>\n      <point x=\"212\" y=\"376\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"906\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1094\" y=\"-20\"/>\n      <point x=\"1218\" y=\"108\"/>\n      <point x=\"1218\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1218\" y=\"497\"/>\n      <point x=\"1094\" y=\"626\"/>\n      <point x=\"906\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"626\"/>\n      <point x=\"592\" y=\"497\"/>\n      <point x=\"592\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"108\"/>\n      <point x=\"717\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"906\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"70\"/>\n      <point x=\"684\" y=\"162\"/>\n      <point x=\"684\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"443\"/>\n      <point x=\"772\" y=\"536\"/>\n      <point x=\"906\" y=\"536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1039\" y=\"536\"/>\n      <point x=\"1126\" y=\"443\"/>\n      <point x=\"1126\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1126\" y=\"162\"/>\n      <point x=\"1039\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"793\"/>\n      <point x=\"780\" y=\"921\"/>\n      <point x=\"780\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1310\"/>\n      <point x=\"656\" y=\"1439\"/>\n      <point x=\"468\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"279\" y=\"1439\"/>\n      <point x=\"154\" y=\"1310\"/>\n      <point x=\"154\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"154\" y=\"921\"/>\n      <point x=\"279\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"468\" y=\"883\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"883\"/>\n      <point x=\"246\" y=\"975\"/>\n      <point x=\"246\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"1256\"/>\n      <point x=\"334\" y=\"1349\"/>\n      <point x=\"468\" y=\"1349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"1349\"/>\n      <point x=\"688\" y=\"1256\"/>\n      <point x=\"688\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"975\"/>\n      <point x=\"601\" y=\"883\"/>\n    </contour>\n    <contour>\n      <point x=\"1950\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2138\" y=\"-20\"/>\n      <point x=\"2262\" y=\"108\"/>\n      <point x=\"2262\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2262\" y=\"497\"/>\n      <point x=\"2138\" y=\"626\"/>\n      <point x=\"1950\" y=\"626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1761\" y=\"626\"/>\n      <point x=\"1636\" y=\"497\"/>\n      <point x=\"1636\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1636\" y=\"108\"/>\n      <point x=\"1761\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"1950\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1816\" y=\"70\"/>\n      <point x=\"1728\" y=\"162\"/>\n      <point x=\"1728\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1728\" y=\"443\"/>\n      <point x=\"1816\" y=\"536\"/>\n      <point x=\"1950\" y=\"536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2083\" y=\"536\"/>\n      <point x=\"2170\" y=\"443\"/>\n      <point x=\"2170\" y=\"302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2170\" y=\"162\"/>\n      <point x=\"2083\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"1195\" y=\"214\" type=\"line\"/>\n      <point x=\"2194\" y=\"1036\" type=\"line\"/>\n      <point x=\"2144\" y=\"1106\" type=\"line\"/>\n      <point x=\"1145\" y=\"284\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1512\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1700\" y=\"793\"/>\n      <point x=\"1824\" y=\"921\"/>\n      <point x=\"1824\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1824\" y=\"1310\"/>\n      <point x=\"1700\" y=\"1439\"/>\n      <point x=\"1512\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1323\" y=\"1439\"/>\n      <point x=\"1198\" y=\"1310\"/>\n      <point x=\"1198\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1198\" y=\"921\"/>\n      <point x=\"1323\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"1512\" y=\"883\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1378\" y=\"883\"/>\n      <point x=\"1290\" y=\"975\"/>\n      <point x=\"1290\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1290\" y=\"1256\"/>\n      <point x=\"1378\" y=\"1349\"/>\n      <point x=\"1512\" y=\"1349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1645\" y=\"1349\"/>\n      <point x=\"1732\" y=\"1256\"/>\n      <point x=\"1732\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1732\" y=\"975\"/>\n      <point x=\"1645\" y=\"883\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/period.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002E\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"-20\"/>\n      <point x=\"700\" y=\"24\"/>\n      <point x=\"700\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"134\"/>\n      <point x=\"655\" y=\"179\"/>\n      <point x=\"600\" y=\"179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"179\"/>\n      <point x=\"500\" y=\"134\"/>\n      <point x=\"500\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"24\"/>\n      <point x=\"545\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/period_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1100\" y=\"914\" type=\"line\"/>\n      <point x=\"2120\" y=\"914\" type=\"line\"/>\n      <point x=\"2120\" y=\"1004\" type=\"line\"/>\n      <point x=\"1100\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"416\" type=\"line\"/>\n      <point x=\"2120\" y=\"416\" type=\"line\"/>\n      <point x=\"2120\" y=\"506\" type=\"line\"/>\n      <point x=\"1100\" y=\"506\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-60\" yOffset=\"630\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/period_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1020\" y=\"664\" type=\"line\"/>\n      <point x=\"2120\" y=\"664\" type=\"line\"/>\n      <point x=\"2120\" y=\"754\" type=\"line\"/>\n      <point x=\"1020\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-60\" yOffset=\"629\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/period_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"140\"/>\n    <component base=\"period\" xOffset=\"1060\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/period_period_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1900\" y=\"914\" type=\"line\"/>\n      <point x=\"3320\" y=\"914\" type=\"line\"/>\n      <point x=\"3320\" y=\"1004\" type=\"line\"/>\n      <point x=\"1900\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1900\" y=\"414\" type=\"line\"/>\n      <point x=\"3320\" y=\"414\" type=\"line\"/>\n      <point x=\"3320\" y=\"504\" type=\"line\"/>\n      <point x=\"1900\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-120\"/>\n    <component base=\"period\" xOffset=\"650\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/period_period_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"3320\" y=\"254\" type=\"line\"/>\n      <point x=\"3320\" y=\"364\" type=\"line\"/>\n      <point x=\"2357\" y=\"700\" type=\"line\"/>\n      <point x=\"2357\" y=\"718\" type=\"line\"/>\n      <point x=\"3320\" y=\"1054\" type=\"line\"/>\n      <point x=\"3320\" y=\"1164\" type=\"line\"/>\n      <point x=\"2183\" y=\"740\" type=\"line\"/>\n      <point x=\"2183\" y=\"678\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-60\" yOffset=\"630\"/>\n    <component base=\"period\" xOffset=\"838\" yOffset=\"630\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/period_period_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"400\"/>\n    <component base=\"period\" xOffset=\"1200\"/>\n    <component base=\"period\" xOffset=\"2000\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/period_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"100\"/>\n    <component base=\"question\" xOffset=\"960\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/periodcentered.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"periodcentered\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B7\"/>\n  <outline>\n    <component base=\"period\" yOffset=\"582\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/perispomenicomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"perispomenicomb\" format=\"2\">\n  <unicode hex=\"0342\"/>\n  <outline>\n    <component base=\"tildecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/perthousand-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"perthousand-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0609\"/>\n  <outline>\n    <contour>\n      <point x=\"218\" y=\"-20\" type=\"line\"/>\n      <point x=\"977\" y=\"1404\" type=\"line\"/>\n      <point x=\"895\" y=\"1440\" type=\"line\"/>\n      <point x=\"136\" y=\"16\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"604\" y=\"-10\" type=\"line\"/>\n      <point x=\"749\" y=\"138\" type=\"line\"/>\n      <point x=\"587\" y=\"296\" type=\"line\"/>\n      <point x=\"445\" y=\"145\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"327\" y=\"1134\" type=\"line\"/>\n      <point x=\"472\" y=\"1282\" type=\"line\"/>\n      <point x=\"310\" y=\"1440\" type=\"line\"/>\n      <point x=\"168\" y=\"1289\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"974\" y=\"-10\" type=\"line\"/>\n      <point x=\"1119\" y=\"138\" type=\"line\"/>\n      <point x=\"957\" y=\"296\" type=\"line\"/>\n      <point x=\"815\" y=\"145\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/perthousand.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"perthousand\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2030\"/>\n  <outline>\n    <contour>\n      <point x=\"151\" y=\"326\" type=\"line\"/>\n      <point x=\"1034\" y=\"1017\" type=\"line\"/>\n      <point x=\"984\" y=\"1086\" type=\"line\"/>\n      <point x=\"101\" y=\"395\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"532\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"668\" y=\"-20\"/>\n      <point x=\"758\" y=\"80\"/>\n      <point x=\"758\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"383\"/>\n      <point x=\"668\" y=\"483\"/>\n      <point x=\"532\" y=\"483\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"395\" y=\"483\"/>\n      <point x=\"305\" y=\"383\"/>\n      <point x=\"305\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"80\"/>\n      <point x=\"395\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"532\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"62\"/>\n      <point x=\"391\" y=\"130\"/>\n      <point x=\"391\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"391\" y=\"333\"/>\n      <point x=\"446\" y=\"401\"/>\n      <point x=\"532\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"401\"/>\n      <point x=\"672\" y=\"333\"/>\n      <point x=\"672\" y=\"231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"130\"/>\n      <point x=\"616\" y=\"62\"/>\n    </contour>\n    <contour>\n      <point x=\"358\" y=\"794\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"794\"/>\n      <point x=\"658\" y=\"922\"/>\n      <point x=\"658\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"658\" y=\"1316\"/>\n      <point x=\"539\" y=\"1440\"/>\n      <point x=\"358\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1440\"/>\n      <point x=\"56\" y=\"1312\"/>\n      <point x=\"56\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"56\" y=\"922\"/>\n      <point x=\"175\" y=\"794\"/>\n    </contour>\n    <contour>\n      <point x=\"358\" y=\"886\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"886\"/>\n      <point x=\"142\" y=\"979\"/>\n      <point x=\"142\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"1257\"/>\n      <point x=\"226\" y=\"1348\"/>\n      <point x=\"358\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"481\" y=\"1348\"/>\n      <point x=\"562\" y=\"1257\"/>\n      <point x=\"562\" y=\"1116\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"979\"/>\n      <point x=\"481\" y=\"886\"/>\n    </contour>\n    <contour>\n      <point x=\"959\" y=\"286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1088\" y=\"286\"/>\n      <point x=\"1173\" y=\"386\"/>\n      <point x=\"1173\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1173\" y=\"689\"/>\n      <point x=\"1088\" y=\"789\"/>\n      <point x=\"959\" y=\"789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"829\" y=\"789\"/>\n      <point x=\"744\" y=\"689\"/>\n      <point x=\"744\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"386\"/>\n      <point x=\"829\" y=\"286\"/>\n    </contour>\n    <contour>\n      <point x=\"959\" y=\"368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"368\"/>\n      <point x=\"830\" y=\"436\"/>\n      <point x=\"830\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"639\"/>\n      <point x=\"881\" y=\"707\"/>\n      <point x=\"959\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"707\"/>\n      <point x=\"1087\" y=\"639\"/>\n      <point x=\"1087\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"436\"/>\n      <point x=\"1036\" y=\"368\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peseta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peseta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A7\"/>\n  <outline>\n    <contour>\n      <point x=\"24\" y=\"875\" type=\"line\"/>\n      <point x=\"1176\" y=\"875\" type=\"line\"/>\n      <point x=\"1176\" y=\"965\" type=\"line\"/>\n      <point x=\"24\" y=\"965\" type=\"line\"/>\n    </contour>\n    <component base=\"P\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/peso.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peso\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B1\"/>\n  <outline>\n    <contour>\n      <point x=\"24\" y=\"1006\" type=\"line\"/>\n      <point x=\"1176\" y=\"1006\" type=\"line\"/>\n      <point x=\"1176\" y=\"1096\" type=\"line\"/>\n      <point x=\"24\" y=\"1096\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"24\" y=\"759\" type=\"line\"/>\n      <point x=\"1176\" y=\"759\" type=\"line\"/>\n      <point x=\"1176\" y=\"849\" type=\"line\"/>\n      <point x=\"24\" y=\"849\" type=\"line\"/>\n    </contour>\n    <component base=\"P\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/phi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"phi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C6\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"-20\"/>\n      <point x=\"1090\" y=\"162\"/>\n      <point x=\"1090\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"898\"/>\n      <point x=\"928\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"1080\"/>\n      <point x=\"110\" y=\"898\"/>\n      <point x=\"110\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"110\" y=\"162\"/>\n      <point x=\"272\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-460\" type=\"line\"/>\n      <point x=\"647\" y=\"-460\" type=\"line\"/>\n      <point x=\"647\" y=\"33\" type=\"line\"/>\n      <point x=\"553\" y=\"33\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"72\"/>\n      <point x=\"206\" y=\"223\"/>\n      <point x=\"206\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"837\"/>\n      <point x=\"336\" y=\"988\"/>\n      <point x=\"600\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"988\"/>\n      <point x=\"994\" y=\"837\"/>\n      <point x=\"994\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"223\"/>\n      <point x=\"864\" y=\"72\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"42\" type=\"line\"/>\n      <point x=\"647\" y=\"42\" type=\"line\"/>\n      <point x=\"647\" y=\"1033\" type=\"line\"/>\n      <point x=\"553\" y=\"1033\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"1007\" type=\"line\"/>\n      <point x=\"647\" y=\"1007\" type=\"line\"/>\n      <point x=\"647\" y=\"1500\" type=\"line\"/>\n      <point x=\"553\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/pi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C0\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"556\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"978\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1020\" y=\"-20\"/>\n      <point x=\"1054\" y=\"-16\"/>\n      <point x=\"1090\" y=\"-6\" type=\"curve\"/>\n      <point x=\"1076\" y=\"80\" type=\"line\"/>\n      <point x=\"1032\" y=\"74\"/>\n      <point x=\"1005\" y=\"72\"/>\n      <point x=\"988\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"72\"/>\n      <point x=\"843\" y=\"128\"/>\n      <point x=\"843\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"1060\" type=\"line\"/>\n      <point x=\"749\" y=\"1060\" type=\"line\"/>\n      <point x=\"749\" y=\"250\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"749\" y=\"61\"/>\n      <point x=\"817\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"287\" y=\"0\" type=\"line\"/>\n      <point x=\"381\" y=\"0\" type=\"line\"/>\n      <point x=\"381\" y=\"1060\" type=\"line\"/>\n      <point x=\"287\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"84\" y=\"970\" type=\"line\"/>\n      <point x=\"1076\" y=\"970\" type=\"line\"/>\n      <point x=\"1076\" y=\"1060\" type=\"line\"/>\n      <point x=\"84\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/plus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002B\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"190\" type=\"line\"/>\n      <point x=\"647\" y=\"190\" type=\"line\"/>\n      <point x=\"647\" y=\"1228\" type=\"line\"/>\n      <point x=\"553\" y=\"1228\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"665\" type=\"line\"/>\n      <point x=\"1076\" y=\"665\" type=\"line\"/>\n      <point x=\"1076\" y=\"755\" type=\"line\"/>\n      <point x=\"124\" y=\"755\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/plus_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"plus\" xOffset=\"72\"/>\n    <component base=\"greater\" xOffset=\"1060\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/plus_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"plus\" xOffset=\"140\"/>\n    <component base=\"plus\" xOffset=\"1060\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/plus_plus_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plus_plus_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1861\" y=\"665\" type=\"line\"/>\n      <point x=\"2746\" y=\"665\" type=\"line\"/>\n      <point x=\"2746\" y=\"755\" type=\"line\"/>\n      <point x=\"1861\" y=\"755\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"861\" y=\"665\" type=\"line\"/>\n      <point x=\"1746\" y=\"665\" type=\"line\"/>\n      <point x=\"1746\" y=\"755\" type=\"line\"/>\n      <point x=\"861\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"plus\" xOffset=\"180\"/>\n    <component base=\"plus\" xOffset=\"2220\"/>\n    <component base=\"plus\" xOffset=\"1200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/plusminus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"plusminus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B1\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"246\" type=\"line\"/>\n      <point x=\"647\" y=\"246\" type=\"line\"/>\n      <point x=\"647\" y=\"1224\" type=\"line\"/>\n      <point x=\"553\" y=\"1224\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"124\" y=\"731\" type=\"line\"/>\n      <point x=\"1076\" y=\"731\" type=\"line\"/>\n      <point x=\"1076\" y=\"821\" type=\"line\"/>\n      <point x=\"124\" y=\"821\" type=\"line\"/>\n    </contour>\n    <component base=\"minus\" yOffset=\"-430\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/prescription.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"prescription\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"211E\"/>\n  <outline>\n    <contour>\n      <point x=\"1120\" y=\"-257\" type=\"line\"/>\n      <point x=\"1234\" y=\"-257\" type=\"line\"/>\n      <point x=\"564\" y=\"668\" type=\"line\"/>\n      <point x=\"460\" y=\"668\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"144\" y=\"0\" type=\"line\"/>\n      <point x=\"238\" y=\"0\" type=\"line\"/>\n      <point x=\"238\" y=\"1420\" type=\"line\"/>\n      <point x=\"144\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"556\" y=\"-257\" type=\"line\"/>\n      <point x=\"666\" y=\"-257\" type=\"line\"/>\n      <point x=\"1213\" y=\"497\" type=\"line\"/>\n      <point x=\"1103\" y=\"497\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"224\" y=\"591\" type=\"line\"/>\n      <point x=\"648\" y=\"591\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"591\"/>\n      <point x=\"1046\" y=\"744\"/>\n      <point x=\"1046\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1046\" y=\"1271\"/>\n      <point x=\"901\" y=\"1420\"/>\n      <point x=\"648\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"204\" y=\"1420\" type=\"line\"/>\n      <point x=\"228\" y=\"1330\" type=\"line\"/>\n      <point x=\"648\" y=\"1330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"1330\"/>\n      <point x=\"950\" y=\"1206\"/>\n      <point x=\"950\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"793\"/>\n      <point x=\"840\" y=\"681\"/>\n      <point x=\"648\" y=\"681\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"681\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/product.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"product\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"220F\"/>\n  <outline>\n    <contour>\n      <point x=\"839\" y=\"-200\" type=\"line\"/>\n      <point x=\"933\" y=\"-200\" type=\"line\"/>\n      <point x=\"933\" y=\"1420\" type=\"line\"/>\n      <point x=\"839\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"267\" y=\"-200\" type=\"line\"/>\n      <point x=\"361\" y=\"-200\" type=\"line\"/>\n      <point x=\"361\" y=\"1420\" type=\"line\"/>\n      <point x=\"267\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"1330\" type=\"line\"/>\n      <point x=\"1096\" y=\"1330\" type=\"line\"/>\n      <point x=\"1096\" y=\"1420\" type=\"line\"/>\n      <point x=\"104\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/psi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"psi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C8\"/>\n  <anchor x=\"600\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"-20\"/>\n      <point x=\"1070\" y=\"136\"/>\n      <point x=\"1070\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"1060\" type=\"line\"/>\n      <point x=\"976\" y=\"1060\" type=\"line\"/>\n      <point x=\"976\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"201\"/>\n      <point x=\"851\" y=\"76\"/>\n      <point x=\"600\" y=\"76\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"76\"/>\n      <point x=\"224\" y=\"201\"/>\n      <point x=\"224\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"1060\" type=\"line\"/>\n      <point x=\"130\" y=\"1060\" type=\"line\"/>\n      <point x=\"130\" y=\"450\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"130\" y=\"136\"/>\n      <point x=\"286\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-460\" type=\"line\"/>\n      <point x=\"647\" y=\"-460\" type=\"line\"/>\n      <point x=\"647\" y=\"33\" type=\"line\"/>\n      <point x=\"553\" y=\"33\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"65\" type=\"line\"/>\n      <point x=\"647\" y=\"65\" type=\"line\"/>\n      <point x=\"647\" y=\"1500\" type=\"line\"/>\n      <point x=\"553\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/published.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"published\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2117\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"15\"/>\n      <point x=\"1150\" y=\"263\"/>\n      <point x=\"1150\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1150\" y=\"1146\"/>\n      <point x=\"950\" y=\"1405\"/>\n      <point x=\"600\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"1405\"/>\n      <point x=\"50\" y=\"1146\"/>\n      <point x=\"50\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"50\" y=\"263\"/>\n      <point x=\"250\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"391\" y=\"396\" type=\"line\"/>\n      <point x=\"485\" y=\"396\" type=\"line\"/>\n      <point x=\"485\" y=\"1010\" type=\"line\"/>\n      <point x=\"391\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"105\"/>\n      <point x=\"142\" y=\"320\"/>\n      <point x=\"142\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"1087\"/>\n      <point x=\"309\" y=\"1313\"/>\n      <point x=\"600\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"1313\"/>\n      <point x=\"1058\" y=\"1087\"/>\n      <point x=\"1058\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"320\"/>\n      <point x=\"891\" y=\"105\"/>\n    </contour>\n    <contour>\n      <point x=\"464\" y=\"580\" type=\"line\"/>\n      <point x=\"658\" y=\"580\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"580\"/>\n      <point x=\"876\" y=\"662\"/>\n      <point x=\"876\" y=\"805\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"935\"/>\n      <point x=\"797\" y=\"1010\"/>\n      <point x=\"658\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"1010\" type=\"line\"/>\n      <point x=\"444\" y=\"920\" type=\"line\"/>\n      <point x=\"648\" y=\"920\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"920\"/>\n      <point x=\"780\" y=\"875\"/>\n      <point x=\"780\" y=\"795\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"715\"/>\n      <point x=\"731\" y=\"670\"/>\n      <point x=\"648\" y=\"670\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"670\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/punctuationspace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"punctuationspace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2008\"/>\n  <outline>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>period</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/q.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"q\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0071\"/>\n  <anchor x=\"552\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"558\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"-20\"/>\n      <point x=\"871\" y=\"47\"/>\n      <point x=\"906\" y=\"164\" type=\"curve\"/>\n      <point x=\"986\" y=\"164\" type=\"line\"/>\n      <point x=\"914\" y=\"456\" type=\"line\"/>\n      <point x=\"914\" y=\"340\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"170\"/>\n      <point x=\"786\" y=\"72\"/>\n      <point x=\"562\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"72\"/>\n      <point x=\"216\" y=\"235\"/>\n      <point x=\"216\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"818\"/>\n      <point x=\"341\" y=\"988\"/>\n      <point x=\"560\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"785\" y=\"988\"/>\n      <point x=\"914\" y=\"845\"/>\n      <point x=\"914\" y=\"596\" type=\"curve\"/>\n      <point x=\"976\" y=\"868\" type=\"line\"/>\n      <point x=\"906\" y=\"868\" type=\"line\"/>\n      <point x=\"866\" y=\"1003\"/>\n      <point x=\"740\" y=\"1080\"/>\n      <point x=\"560\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"1080\"/>\n      <point x=\"120\" y=\"876\"/>\n      <point x=\"120\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"120\" y=\"177\"/>\n      <point x=\"280\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"914\" y=\"-460\" type=\"line\"/>\n      <point x=\"1008\" y=\"-460\" type=\"line\"/>\n      <point x=\"1008\" y=\"1060\" type=\"line\"/>\n      <point x=\"934\" y=\"1060\" type=\"line\"/>\n      <point x=\"914\" y=\"836\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"211\" yOffset=\"224\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0642\"/>\n  <outline>\n    <component base=\"qafDotless-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"213\" yOffset=\"224\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"155\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"65\" yOffset=\"470\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qaf-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"14\" yOffset=\"327\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08BC\"/>\n  <outline>\n    <component base=\"qafDotless-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"155\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafAfrican-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"211\" yOffset=\"214\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A7\"/>\n  <outline>\n    <component base=\"qafDotless-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"213\" yOffset=\"214\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"155\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"feh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-24\" yOffset=\"-407\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"211\" yOffset=\"224\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A5\"/>\n  <outline>\n    <component base=\"qaf-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-25\" yOffset=\"-352\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qaf-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"13\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qaf-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-17\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"577\" y=\"-469\" name=\"bottom\"/>\n  <anchor x=\"578\" y=\"-409\" name=\"bottom.dot\"/>\n  <anchor x=\"804\" y=\"1006\" name=\"top\"/>\n  <anchor x=\"811\" y=\"756\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"561\" y=\"-415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"-415\"/>\n      <point x=\"1140\" y=\"-323\"/>\n      <point x=\"1140\" y=\"145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1140\" y=\"467\"/>\n      <point x=\"1001\" y=\"628\"/>\n      <point x=\"827\" y=\"628\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"635\" y=\"628\"/>\n      <point x=\"520\" y=\"452\"/>\n      <point x=\"520\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"83\"/>\n      <point x=\"589\" y=\"-3\"/>\n      <point x=\"804\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1185\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-3\"/>\n      <point x=\"1290\" y=\"-2\"/>\n      <point x=\"1290\" y=\"52\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1290\" y=\"86\"/>\n      <point x=\"1277\" y=\"91\"/>\n      <point x=\"1202\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"91\" type=\"line\"/>\n      <point x=\"999\" y=\"89\"/>\n      <point x=\"895\" y=\"89\"/>\n      <point x=\"827\" y=\"89\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"89\"/>\n      <point x=\"612\" y=\"133\"/>\n      <point x=\"612\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"420\"/>\n      <point x=\"697\" y=\"534\"/>\n      <point x=\"820\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"534\"/>\n      <point x=\"1048\" y=\"392\"/>\n      <point x=\"1048\" y=\"138\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"-55\"/>\n      <point x=\"1021\" y=\"-171\"/>\n      <point x=\"943\" y=\"-238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"870\" y=\"-301\"/>\n      <point x=\"754\" y=\"-321\"/>\n      <point x=\"575\" y=\"-321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"-321\"/>\n      <point x=\"141\" y=\"-250\"/>\n      <point x=\"141\" y=\"-1\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"141\" y=\"141\"/>\n      <point x=\"167\" y=\"268\"/>\n      <point x=\"185\" y=\"384\" type=\"curve\"/>\n      <point x=\"99\" y=\"384\" type=\"line\"/>\n      <point x=\"76\" y=\"263\"/>\n      <point x=\"49\" y=\"135\"/>\n      <point x=\"49\" y=\"-11\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"49\" y=\"-275\"/>\n      <point x=\"166\" y=\"-415\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066F\"/>\n  <anchor x=\"577\" y=\"-469\" name=\"bottom\"/>\n  <anchor x=\"578\" y=\"-409\" name=\"bottom.dot\"/>\n  <anchor x=\"806\" y=\"1006\" name=\"top\"/>\n  <anchor x=\"813\" y=\"756\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"561\" y=\"-415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"-415\"/>\n      <point x=\"1140\" y=\"-323\"/>\n      <point x=\"1140\" y=\"145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1140\" y=\"487\"/>\n      <point x=\"1017\" y=\"668\"/>\n      <point x=\"823\" y=\"668\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"631\" y=\"668\"/>\n      <point x=\"520\" y=\"502\"/>\n      <point x=\"520\" y=\"316\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"123\"/>\n      <point x=\"597\" y=\"34\"/>\n      <point x=\"794\" y=\"34\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"34\"/>\n      <point x=\"998\" y=\"66\"/>\n      <point x=\"1029\" y=\"106\" type=\"curve\"/>\n      <point x=\"1088\" y=\"109\" type=\"line\"/>\n      <point x=\"1092\" y=\"175\" type=\"line\"/>\n      <point x=\"1015\" y=\"155\"/>\n      <point x=\"925\" y=\"128\"/>\n      <point x=\"827\" y=\"128\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"128\"/>\n      <point x=\"612\" y=\"183\"/>\n      <point x=\"612\" y=\"316\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"455\"/>\n      <point x=\"683\" y=\"574\"/>\n      <point x=\"816\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"965\" y=\"574\"/>\n      <point x=\"1048\" y=\"412\"/>\n      <point x=\"1048\" y=\"138\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"-57\"/>\n      <point x=\"1020\" y=\"-173\"/>\n      <point x=\"941\" y=\"-240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"-301\"/>\n      <point x=\"752\" y=\"-321\"/>\n      <point x=\"575\" y=\"-321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"-321\"/>\n      <point x=\"141\" y=\"-250\"/>\n      <point x=\"141\" y=\"-1\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"141\" y=\"141\"/>\n      <point x=\"167\" y=\"268\"/>\n      <point x=\"185\" y=\"384\" type=\"curve\"/>\n      <point x=\"99\" y=\"384\" type=\"line\"/>\n      <point x=\"76\" y=\"263\"/>\n      <point x=\"49\" y=\"135\"/>\n      <point x=\"49\" y=\"-11\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"49\" y=\"-275\"/>\n      <point x=\"166\" y=\"-415\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafDotless-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafT_hreedotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafThreedotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"qafDotless-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"211\" yOffset=\"214\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafT_hreedotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafThreedotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A8\"/>\n  <outline>\n    <component base=\"qafDotless-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"213\" yOffset=\"214\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafT_hreedotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafThreedotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"veh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qafT_hreedotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qafThreedotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"veh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qamats-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qamats-hb\" format=\"2\">\n  <unicode hex=\"05B8\"/>\n  <anchor x=\"599\" y=\"0\" name=\"_bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"772\" y=\"-222\" type=\"line\"/>\n      <point x=\"428\" y=\"-222\" type=\"line\"/>\n      <point x=\"428\" y=\"-321\" type=\"line\"/>\n      <point x=\"772\" y=\"-321\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"652\" y=\"-448\" type=\"line\"/>\n      <point x=\"652\" y=\"-265\" type=\"line\"/>\n      <point x=\"550\" y=\"-265\" type=\"line\"/>\n      <point x=\"550\" y=\"-448\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qamatsqatan-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qamatsqatan-hb\" format=\"2\">\n  <unicode hex=\"05C7\"/>\n  <outline>\n    <component base=\"qamats-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qof-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qof-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E7\"/>\n  <anchor x=\"553\" y=\"778\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"954\" y=\"1200\" type=\"line\"/>\n      <point x=\"140\" y=\"1200\" type=\"line\"/>\n      <point x=\"140\" y=\"1101\" type=\"line\"/>\n      <point x=\"954\" y=\"1101\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"250\" y=\"-460\" type=\"line\"/>\n      <point x=\"250\" y=\"722\" type=\"line\"/>\n      <point x=\"151\" y=\"722\" type=\"line\"/>\n      <point x=\"151\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"856\" y=\"1200\" type=\"line\"/>\n      <point x=\"856\" y=\"672\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"325\"/>\n      <point x=\"782\" y=\"146\"/>\n      <point x=\"440\" y=\"77\" type=\"curve\"/>\n      <point x=\"463\" y=\"-19\" type=\"line\"/>\n      <point x=\"834\" y=\"56\"/>\n      <point x=\"955\" y=\"257\"/>\n      <point x=\"955\" y=\"652\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"955\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/qofdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"qofdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB47\"/>\n  <outline>\n    <component base=\"qof-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-47\" yOffset=\"234\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/question-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"061F\"/>\n  <outline>\n    <contour>\n      <point x=\"668\" y=\"346\" type=\"curve\"/>\n      <point x=\"754\" y=\"346\" type=\"line\"/>\n      <point x=\"766\" y=\"410\"/>\n      <point x=\"773\" y=\"457\"/>\n      <point x=\"773\" y=\"504\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"622\"/>\n      <point x=\"746\" y=\"695\"/>\n      <point x=\"568\" y=\"812\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"439\" y=\"897\"/>\n      <point x=\"365\" y=\"965\"/>\n      <point x=\"365\" y=\"1103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"365\" y=\"1247\"/>\n      <point x=\"476\" y=\"1346\"/>\n      <point x=\"675\" y=\"1346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"1346\"/>\n      <point x=\"890\" y=\"1308\"/>\n      <point x=\"994\" y=\"1245\" type=\"curve\"/>\n      <point x=\"1004\" y=\"1333\" type=\"line\"/>\n      <point x=\"929\" y=\"1392\"/>\n      <point x=\"822\" y=\"1440\"/>\n      <point x=\"678\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"1440\"/>\n      <point x=\"273\" y=\"1296\"/>\n      <point x=\"273\" y=\"1106\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"273\" y=\"949\"/>\n      <point x=\"339\" y=\"855\"/>\n      <point x=\"509\" y=\"742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"636\"/>\n      <point x=\"683\" y=\"588\"/>\n      <point x=\"683\" y=\"498\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"683\" y=\"450\"/>\n      <point x=\"675\" y=\"403\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"80\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/question.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003F\"/>\n  <outline>\n    <contour>\n      <point x=\"511\" y=\"356\" type=\"line\"/>\n      <point x=\"605\" y=\"356\" type=\"line\"/>\n      <point x=\"605\" y=\"458\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"558\"/>\n      <point x=\"645\" y=\"631\"/>\n      <point x=\"741\" y=\"698\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"818\"/>\n      <point x=\"982\" y=\"935\"/>\n      <point x=\"982\" y=\"1092\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"1313\"/>\n      <point x=\"841\" y=\"1440\"/>\n      <point x=\"596\" y=\"1440\" type=\"curve\"/>\n      <point x=\"594\" y=\"1350\" type=\"line\"/>\n      <point x=\"781\" y=\"1350\"/>\n      <point x=\"888\" y=\"1252\"/>\n      <point x=\"888\" y=\"1082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"960\"/>\n      <point x=\"831\" y=\"867\"/>\n      <point x=\"697\" y=\"774\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"683\"/>\n      <point x=\"511\" y=\"594\"/>\n      <point x=\"511\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"199\" y=\"1198\" type=\"line\"/>\n      <point x=\"336\" y=\"1305\"/>\n      <point x=\"454\" y=\"1350\"/>\n      <point x=\"594\" y=\"1350\" type=\"curve\"/>\n      <point x=\"596\" y=\"1440\" type=\"line\"/>\n      <point x=\"424\" y=\"1440\"/>\n      <point x=\"288\" y=\"1387\"/>\n      <point x=\"140\" y=\"1261\" type=\"curve\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-38\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/question_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"question\" xOffset=\"240\"/>\n    <component base=\"colon\" xOffset=\"1100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/question_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1102\" y=\"414\" type=\"line\"/>\n      <point x=\"2120\" y=\"414\" type=\"line\"/>\n      <point x=\"2120\" y=\"504\" type=\"line\"/>\n      <point x=\"1102\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1156\" y=\"914\" type=\"curve\"/>\n      <point x=\"2120\" y=\"914\" type=\"line\"/>\n      <point x=\"2120\" y=\"1004\" type=\"line\"/>\n      <point x=\"1180\" y=\"1004\" type=\"line\"/>\n      <point x=\"1176\" y=\"976\"/>\n      <point x=\"1167\" y=\"940\"/>\n    </contour>\n    <component base=\"question\" xOffset=\"42\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/question_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"question\" xOffset=\"240\"/>\n    <component base=\"period\" xOffset=\"1100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/question_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"question\" xOffset=\"86\"/>\n    <component base=\"question\" xOffset=\"1070\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/question_question_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question_question_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2130\" y=\"414\" type=\"line\"/>\n      <point x=\"3108\" y=\"414\" type=\"line\"/>\n      <point x=\"3108\" y=\"504\" type=\"line\"/>\n      <point x=\"2130\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2184\" y=\"914\" type=\"curve\"/>\n      <point x=\"3108\" y=\"914\" type=\"line\"/>\n      <point x=\"3108\" y=\"1004\" type=\"line\"/>\n      <point x=\"2208\" y=\"1004\" type=\"line\"/>\n      <point x=\"2204\" y=\"976\"/>\n      <point x=\"2195\" y=\"940\"/>\n    </contour>\n    <component base=\"question\" xOffset=\"86\"/>\n    <component base=\"question\" xOffset=\"1070\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/questiondown.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"questiondown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BF\"/>\n  <outline>\n    <contour>\n      <point x=\"604\" y=\"-380\" type=\"curve\"/>\n      <point x=\"606\" y=\"-290\" type=\"line\"/>\n      <point x=\"421\" y=\"-290\"/>\n      <point x=\"314\" y=\"-192\"/>\n      <point x=\"314\" y=\"-22\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"100\"/>\n      <point x=\"370\" y=\"193\"/>\n      <point x=\"503\" y=\"286\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"633\" y=\"377\"/>\n      <point x=\"689\" y=\"466\"/>\n      <point x=\"689\" y=\"588\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"689\" y=\"704\" type=\"line\"/>\n      <point x=\"595\" y=\"704\" type=\"line\"/>\n      <point x=\"595\" y=\"602\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"502\"/>\n      <point x=\"555\" y=\"429\"/>\n      <point x=\"459\" y=\"362\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"242\"/>\n      <point x=\"218\" y=\"125\"/>\n      <point x=\"218\" y=\"-32\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"218\" y=\"-253\"/>\n      <point x=\"359\" y=\"-380\"/>\n    </contour>\n    <contour>\n      <point x=\"604\" y=\"-380\" type=\"line\"/>\n      <point x=\"776\" y=\"-380\"/>\n      <point x=\"912\" y=\"-327\"/>\n      <point x=\"1060\" y=\"-201\" type=\"curve\"/>\n      <point x=\"1001\" y=\"-138\" type=\"line\"/>\n      <point x=\"864\" y=\"-245\"/>\n      <point x=\"746\" y=\"-290\"/>\n      <point x=\"606\" y=\"-290\" type=\"curve\"/>\n    </contour>\n    <component base=\"period\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1238\" yOffset=\"1060\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/questiongreek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"questiongreek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"037E\"/>\n  <outline>\n    <component base=\"semicolon\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/quotedbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0022\"/>\n  <outline>\n    <component base=\"quotesingle\" xOffset=\"-180\"/>\n    <component base=\"quotesingle\" xOffset=\"184\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/quotedblbase.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedblbase\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201E\"/>\n  <outline>\n    <component base=\"quotedblright\" yOffset=\"-1165\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/quotedblleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedblleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201C\"/>\n  <outline>\n    <component base=\"quoteleft\" xOffset=\"-200\"/>\n    <component base=\"quoteleft\" xOffset=\"200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/quotedblright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotedblright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201D\"/>\n  <outline>\n    <component base=\"quoteright\" xOffset=\"200\"/>\n    <component base=\"quoteright\" xOffset=\"-200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/quoteleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quoteleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2018\"/>\n  <outline>\n    <contour>\n      <point x=\"722\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"710\" type=\"line\"/>\n      <point x=\"767\" y=\"802\" type=\"line\"/>\n      <point x=\"722\" y=\"802\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"802\"/>\n      <point x=\"529\" y=\"852\"/>\n      <point x=\"529\" y=\"962\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"1053\"/>\n      <point x=\"580\" y=\"1193\"/>\n      <point x=\"716\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"1380\" type=\"line\"/>\n      <point x=\"674\" y=\"1440\" type=\"line\"/>\n      <point x=\"650\" y=\"1414\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"1236\"/>\n      <point x=\"433\" y=\"1086\"/>\n      <point x=\"433\" y=\"962\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"789\"/>\n      <point x=\"524\" y=\"710\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/quotereversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotereversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201B\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"690\" type=\"line\"/>\n      <point x=\"717\" y=\"750\" type=\"line\"/>\n      <point x=\"689\" y=\"782\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"937\"/>\n      <point x=\"502\" y=\"1077\"/>\n      <point x=\"502\" y=\"1168\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"1278\"/>\n      <point x=\"562\" y=\"1328\"/>\n      <point x=\"695\" y=\"1328\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"1328\" type=\"line\"/>\n      <point x=\"740\" y=\"1420\" type=\"line\"/>\n      <point x=\"695\" y=\"1420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"1420\"/>\n      <point x=\"406\" y=\"1341\"/>\n      <point x=\"406\" y=\"1168\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"406\" y=\"1044\"/>\n      <point x=\"459\" y=\"894\"/>\n      <point x=\"623\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/quoteright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quoteright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2019\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"690\" type=\"line\"/>\n      <point x=\"550\" y=\"716\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"894\"/>\n      <point x=\"767\" y=\"1044\"/>\n      <point x=\"767\" y=\"1168\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"1341\"/>\n      <point x=\"676\" y=\"1420\"/>\n      <point x=\"478\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"433\" y=\"1420\" type=\"line\"/>\n      <point x=\"433\" y=\"1328\" type=\"line\"/>\n      <point x=\"478\" y=\"1328\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"1328\"/>\n      <point x=\"671\" y=\"1278\"/>\n      <point x=\"671\" y=\"1168\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1077\"/>\n      <point x=\"620\" y=\"937\"/>\n      <point x=\"484\" y=\"782\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"456\" y=\"750\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/quotesinglbase.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotesinglbase\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"201A\"/>\n  <outline>\n    <component base=\"quoteright\" yOffset=\"-1165\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/quotesingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"quotesingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0027\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"780\" type=\"line\"/>\n      <point x=\"647\" y=\"780\" type=\"line\"/>\n      <point x=\"652\" y=\"1420\" type=\"line\"/>\n      <point x=\"548\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/r.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"r\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0072\"/>\n  <anchor x=\"430\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"469\" y=\"456\" type=\"line\"/>\n      <point x=\"469\" y=\"796\"/>\n      <point x=\"576\" y=\"988\"/>\n      <point x=\"796\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"988\"/>\n      <point x=\"1032\" y=\"898\"/>\n      <point x=\"1032\" y=\"682\" type=\"curve\"/>\n      <point x=\"1128\" y=\"682\" type=\"line\"/>\n      <point x=\"1128\" y=\"962\"/>\n      <point x=\"1029\" y=\"1080\"/>\n      <point x=\"800\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"1080\"/>\n      <point x=\"508\" y=\"983\"/>\n      <point x=\"477\" y=\"788\" type=\"curve\"/>\n      <point x=\"407\" y=\"788\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"0\" type=\"line\"/>\n      <point x=\"788\" y=\"0\" type=\"line\"/>\n      <point x=\"788\" y=\"90\" type=\"line\"/>\n      <point x=\"104\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"0\" type=\"line\"/>\n      <point x=\"469\" y=\"0\" type=\"line\"/>\n      <point x=\"469\" y=\"756\" type=\"line\"/>\n      <point x=\"449\" y=\"1060\" type=\"line\"/>\n      <point x=\"375\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"144\" y=\"970\" type=\"line\"/>\n      <point x=\"415\" y=\"970\" type=\"line\"/>\n      <point x=\"415\" y=\"1060\" type=\"line\"/>\n      <point x=\"144\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/racute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"racute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0155\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"acutecomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/radical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"radical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221A\"/>\n  <outline>\n    <contour>\n      <point x=\"298\" y=\"-200\" type=\"line\"/>\n      <point x=\"465\" y=\"-200\" type=\"line\"/>\n      <point x=\"816\" y=\"1420\" type=\"line\"/>\n      <point x=\"715\" y=\"1420\" type=\"line\"/>\n      <point x=\"388\" y=\"-110\" type=\"line\"/>\n      <point x=\"370\" y=\"-110\" type=\"line\"/>\n      <point x=\"216\" y=\"401\" type=\"line\"/>\n      <point x=\"110\" y=\"401\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"720\" y=\"1330\" type=\"line\"/>\n      <point x=\"1106\" y=\"1330\" type=\"line\"/>\n      <point x=\"1106\" y=\"1420\" type=\"line\"/>\n      <point x=\"715\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ratio.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ratio\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2236\"/>\n  <outline>\n    <component base=\"colon\" yOffset=\"160\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ray-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ray-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0608\"/>\n  <outline>\n    <contour>\n      <point x=\"561\" y=\"-415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"-415\"/>\n      <point x=\"1140\" y=\"-323\"/>\n      <point x=\"1140\" y=\"145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1140\" y=\"467\"/>\n      <point x=\"1001\" y=\"628\"/>\n      <point x=\"827\" y=\"628\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"635\" y=\"628\"/>\n      <point x=\"520\" y=\"452\"/>\n      <point x=\"520\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"83\"/>\n      <point x=\"589\" y=\"-3\"/>\n      <point x=\"804\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1185\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"-3\"/>\n      <point x=\"1290\" y=\"-2\"/>\n      <point x=\"1290\" y=\"52\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1290\" y=\"86\"/>\n      <point x=\"1277\" y=\"91\"/>\n      <point x=\"1202\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"91\" type=\"line\"/>\n      <point x=\"999\" y=\"89\"/>\n      <point x=\"895\" y=\"91\"/>\n      <point x=\"827\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"91\"/>\n      <point x=\"612\" y=\"133\"/>\n      <point x=\"612\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"420\"/>\n      <point x=\"697\" y=\"534\"/>\n      <point x=\"820\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"534\"/>\n      <point x=\"1048\" y=\"392\"/>\n      <point x=\"1048\" y=\"138\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"-55\"/>\n      <point x=\"1021\" y=\"-171\"/>\n      <point x=\"943\" y=\"-238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"870\" y=\"-301\"/>\n      <point x=\"754\" y=\"-321\"/>\n      <point x=\"575\" y=\"-321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"-321\"/>\n      <point x=\"141\" y=\"-250\"/>\n      <point x=\"141\" y=\"-1\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"141\" y=\"110\"/>\n      <point x=\"153\" y=\"229\"/>\n      <point x=\"173\" y=\"352\" type=\"curve\"/>\n      <point x=\"95\" y=\"377\" type=\"line\"/>\n      <point x=\"-142\" y=\"299\" type=\"line\"/>\n      <point x=\"-119\" y=\"205\" type=\"line\"/>\n      <point x=\"109\" y=\"281\" type=\"line\"/>\n      <point x=\"80\" y=\"317\" type=\"line\"/>\n      <point x=\"59\" y=\"209\"/>\n      <point x=\"49\" y=\"102\"/>\n      <point x=\"49\" y=\"-11\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"49\" y=\"-275\"/>\n      <point x=\"166\" y=\"-415\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0159\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0157\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"-170\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E5B\"/>\n  <outline>\n    <component base=\"r\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-170\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/recordS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"recordSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241E\"/>\n  <outline>\n    <component base=\"R.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>R.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/registered.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"registered\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AE\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"15\"/>\n      <point x=\"1150\" y=\"263\"/>\n      <point x=\"1150\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1150\" y=\"1146\"/>\n      <point x=\"950\" y=\"1405\"/>\n      <point x=\"600\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"1405\"/>\n      <point x=\"50\" y=\"1146\"/>\n      <point x=\"50\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"50\" y=\"263\"/>\n      <point x=\"250\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"381\" y=\"396\" type=\"line\"/>\n      <point x=\"475\" y=\"396\" type=\"line\"/>\n      <point x=\"475\" y=\"1010\" type=\"line\"/>\n      <point x=\"381\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"782\" y=\"396\" type=\"line\"/>\n      <point x=\"880\" y=\"396\" type=\"line\"/>\n      <point x=\"757\" y=\"655\" type=\"line\"/>\n      <point x=\"673\" y=\"628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"105\"/>\n      <point x=\"142\" y=\"320\"/>\n      <point x=\"142\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"142\" y=\"1087\"/>\n      <point x=\"309\" y=\"1313\"/>\n      <point x=\"600\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"1313\"/>\n      <point x=\"1058\" y=\"1087\"/>\n      <point x=\"1058\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"320\"/>\n      <point x=\"891\" y=\"105\"/>\n    </contour>\n    <contour>\n      <point x=\"461\" y=\"620\" type=\"line\"/>\n      <point x=\"648\" y=\"620\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"620\"/>\n      <point x=\"866\" y=\"695\"/>\n      <point x=\"866\" y=\"825\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"866\" y=\"942\"/>\n      <point x=\"787\" y=\"1010\"/>\n      <point x=\"648\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1010\" type=\"line\"/>\n      <point x=\"441\" y=\"920\" type=\"line\"/>\n      <point x=\"648\" y=\"920\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"920\"/>\n      <point x=\"770\" y=\"882\"/>\n      <point x=\"770\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"748\"/>\n      <point x=\"725\" y=\"710\"/>\n      <point x=\"648\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/reh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"reh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"387\" y=\"-515\" name=\"bottom\"/>\n  <anchor x=\"387\" y=\"-430\" name=\"bottom.dot\"/>\n  <anchor x=\"680\" y=\"885\" name=\"top\"/>\n  <anchor x=\"680\" y=\"635\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"898\" y=\"147\" type=\"curve\"/>\n      <point x=\"829\" y=\"131\" type=\"line\"/>\n      <point x=\"865\" y=\"60\"/>\n      <point x=\"922\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1265\" y=\"8\"/>\n      <point x=\"1265\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"79\"/>\n      <point x=\"1250\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"91\"/>\n      <point x=\"925\" y=\"115\"/>\n      <point x=\"893\" y=\"188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"277\"/>\n      <point x=\"821\" y=\"379\"/>\n      <point x=\"745\" y=\"564\" type=\"curve\"/>\n      <point x=\"659\" y=\"530\" type=\"line\"/>\n      <point x=\"734\" y=\"353\"/>\n      <point x=\"803\" y=\"175\"/>\n      <point x=\"803\" y=\"73\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"803\" y=\"-225\"/>\n      <point x=\"649\" y=\"-354\"/>\n      <point x=\"323\" y=\"-354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"-354\"/>\n      <point x=\"171\" y=\"-345\"/>\n      <point x=\"97\" y=\"-331\" type=\"curve\"/>\n      <point x=\"89\" y=\"-422\" type=\"line\"/>\n      <point x=\"156\" y=\"-438\"/>\n      <point x=\"245\" y=\"-448\"/>\n      <point x=\"332\" y=\"-448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"-448\"/>\n      <point x=\"908\" y=\"-275\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/reh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"reh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0631\"/>\n  <anchor x=\"527\" y=\"-505\" name=\"bottom\"/>\n  <anchor x=\"527\" y=\"-420\" name=\"bottom.dot\"/>\n  <anchor x=\"770\" y=\"905\" name=\"top\"/>\n  <anchor x=\"770\" y=\"655\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"402\" y=\"-448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"-448\"/>\n      <point x=\"981\" y=\"-274\"/>\n      <point x=\"981\" y=\"68\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"215\"/>\n      <point x=\"926\" y=\"396\"/>\n      <point x=\"819\" y=\"580\" type=\"curve\"/>\n      <point x=\"739\" y=\"535\" type=\"line\"/>\n      <point x=\"839\" y=\"355\"/>\n      <point x=\"889\" y=\"183\"/>\n      <point x=\"889\" y=\"61\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"-217\"/>\n      <point x=\"719\" y=\"-354\"/>\n      <point x=\"393\" y=\"-354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"-354\"/>\n      <point x=\"251\" y=\"-345\"/>\n      <point x=\"177\" y=\"-331\" type=\"curve\"/>\n      <point x=\"169\" y=\"-422\" type=\"line\"/>\n      <point x=\"238\" y=\"-440\"/>\n      <point x=\"315\" y=\"-448\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehA_lefabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehAlefabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"59\" yOffset=\"358\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehA_lefabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehAlefabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FC5C\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"alefabove-ar\" xOffset=\"149\" yOffset=\"378\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"466\" y=\"-730\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xScale=\"1.001\" xOffset=\"-216\" yOffset=\"-398\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0694\"/>\n  <anchor x=\"523\" y=\"-740\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"dotbelow-ar\" xScale=\"1.001\" xOffset=\"-76\" yOffset=\"-418\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehD_otbelowdotabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehDotbelowdotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"466\" y=\"-730\" name=\"bottom\"/>\n  <anchor x=\"760\" y=\"885\" name=\"top\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-155\" yOffset=\"-573\"/>\n    <component base=\"dotbelow-ar\" xScale=\"1.001\" xOffset=\"-216\" yOffset=\"-428\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehD_otbelowdotabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehDotbelowdotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0696\"/>\n  <anchor x=\"543\" y=\"-740\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"905\" name=\"top\"/>\n  <outline>\n    <component base=\"reh-ar\" xOffset=\"16\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-44\" yOffset=\"-609\"/>\n    <component base=\"dotbelow-ar\" xScale=\"1.0001\" xOffset=\"-59\" yOffset=\"-418\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>reh-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehF_ourdots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehFourdots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"80\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehF_ourdots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehFourdots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0699\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"170\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"60\" yOffset=\"-469\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076C\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"150\" yOffset=\"-449\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehL_oop-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehLoop-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"467\" y=\"-585\" name=\"bottom\"/>\n  <anchor x=\"730\" y=\"905\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"948\" y=\"127\" type=\"curve\"/>\n      <point x=\"879\" y=\"131\" type=\"line\"/>\n      <point x=\"915\" y=\"51\"/>\n      <point x=\"972\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1265\" y=\"8\"/>\n      <point x=\"1265\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"79\"/>\n      <point x=\"1250\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"91\"/>\n      <point x=\"975\" y=\"115\"/>\n      <point x=\"943\" y=\"188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"277\"/>\n      <point x=\"871\" y=\"379\"/>\n      <point x=\"795\" y=\"564\" type=\"curve\"/>\n      <point x=\"709\" y=\"530\" type=\"line\"/>\n      <point x=\"784\" y=\"353\"/>\n      <point x=\"853\" y=\"169\"/>\n      <point x=\"853\" y=\"61\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"-217\"/>\n      <point x=\"723\" y=\"-354\"/>\n      <point x=\"397\" y=\"-354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"223\" y=\"-354\"/>\n      <point x=\"140\" y=\"-280\"/>\n      <point x=\"140\" y=\"-121\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"140\" y=\"63\"/>\n      <point x=\"231\" y=\"128\"/>\n      <point x=\"314\" y=\"128\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"128\"/>\n      <point x=\"475\" y=\"40\"/>\n      <point x=\"475\" y=\"-134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"-273\"/>\n      <point x=\"442\" y=\"-429\"/>\n      <point x=\"410\" y=\"-597\" type=\"curve\"/>\n      <point x=\"493\" y=\"-595\" type=\"line\"/>\n      <point x=\"522\" y=\"-438\"/>\n      <point x=\"562\" y=\"-270\"/>\n      <point x=\"562\" y=\"-112\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"562\" y=\"117\"/>\n      <point x=\"458\" y=\"222\"/>\n      <point x=\"321\" y=\"222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"157\" y=\"222\"/>\n      <point x=\"51\" y=\"70\"/>\n      <point x=\"51\" y=\"-123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"51\" y=\"-372\"/>\n      <point x=\"208\" y=\"-448\"/>\n      <point x=\"396\" y=\"-448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"-448\"/>\n      <point x=\"948\" y=\"-255\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehL_oop-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehLoop-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AA\"/>\n  <anchor x=\"517\" y=\"-585\" name=\"bottom\"/>\n  <anchor x=\"760\" y=\"905\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"486\" y=\"-597\" type=\"curve\"/>\n      <point x=\"569\" y=\"-595\" type=\"line\"/>\n      <point x=\"598\" y=\"-438\"/>\n      <point x=\"638\" y=\"-270\"/>\n      <point x=\"638\" y=\"-112\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"117\"/>\n      <point x=\"534\" y=\"222\"/>\n      <point x=\"397\" y=\"222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"222\"/>\n      <point x=\"127\" y=\"70\"/>\n      <point x=\"127\" y=\"-123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"127\" y=\"-372\"/>\n      <point x=\"284\" y=\"-448\"/>\n      <point x=\"472\" y=\"-448\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"-448\"/>\n      <point x=\"1021\" y=\"-274\"/>\n      <point x=\"1021\" y=\"68\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"215\"/>\n      <point x=\"966\" y=\"396\"/>\n      <point x=\"859\" y=\"580\" type=\"curve\"/>\n      <point x=\"779\" y=\"535\" type=\"line\"/>\n      <point x=\"879\" y=\"355\"/>\n      <point x=\"929\" y=\"183\"/>\n      <point x=\"929\" y=\"61\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"-217\"/>\n      <point x=\"799\" y=\"-354\"/>\n      <point x=\"473\" y=\"-354\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"299\" y=\"-354\"/>\n      <point x=\"216\" y=\"-280\"/>\n      <point x=\"216\" y=\"-121\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"63\"/>\n      <point x=\"307\" y=\"128\"/>\n      <point x=\"390\" y=\"128\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"499\" y=\"128\"/>\n      <point x=\"551\" y=\"40\"/>\n      <point x=\"551\" y=\"-134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"-273\"/>\n      <point x=\"518\" y=\"-429\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"447\" y=\"-645\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_ringArabic\" xOffset=\"42\" yOffset=\"-480\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_ringArabic</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0693\"/>\n  <anchor x=\"497\" y=\"-645\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_ringArabic\" xOffset=\"109\" yOffset=\"-480\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehS_troke-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehStroke-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_stroke\" xOffset=\"-15\" yOffset=\"-336\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_stroke</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehS_troke-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehStroke-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075B\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_stroke\" xOffset=\"78\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_stroke</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=reh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"80\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0697\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"170\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodotshorizontalaboveTahabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_twodotstah\" xOffset=\"80\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>reh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodotshorizontalaboveTahabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0771\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_twodotstah\" xOffset=\"170\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>reh-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodotsverticalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodotsverticalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"80\" yOffset=\"73\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehTwodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076B\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"170\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehV_below-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehVbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"393\" y=\"-780\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_vbelow-ar\" xScale=\"1.0001\" xOffset=\"-215\" yOffset=\"-428\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehV_below-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehVbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0695\"/>\n  <anchor x=\"523\" y=\"-780\" name=\"bottom\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_vbelow-ar\" xScale=\"1.0001\" xOffset=\"-75\" yOffset=\"-418\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_vbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>reh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehV_invertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehVinvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"80\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehV_invertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehVinvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06EF\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"170\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehv-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehv-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"80\" yOffset=\"103\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rehv-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rehv-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0692\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"170\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/replacementC_haracter.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"replacementCharacter\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FFFD\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1160\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"40\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"355\"/>\n      <point x=\"521\" y=\"390\"/>\n      <point x=\"521\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"479\"/>\n      <point x=\"556\" y=\"514\"/>\n      <point x=\"600\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"645\" y=\"514\"/>\n      <point x=\"680\" y=\"479\"/>\n      <point x=\"680\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"390\"/>\n      <point x=\"645\" y=\"355\"/>\n    </contour>\n    <contour>\n      <point x=\"544\" y=\"575\" type=\"line\"/>\n      <point x=\"544\" y=\"606\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"663\"/>\n      <point x=\"561\" y=\"706\"/>\n      <point x=\"610\" y=\"748\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"779\"/>\n      <point x=\"666\" y=\"792\"/>\n      <point x=\"666\" y=\"816\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"847\"/>\n      <point x=\"647\" y=\"861\"/>\n      <point x=\"604\" y=\"861\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"861\"/>\n      <point x=\"503\" y=\"847\"/>\n      <point x=\"450\" y=\"817\" type=\"curve\"/>\n      <point x=\"402\" y=\"917\" type=\"line\"/>\n      <point x=\"456\" y=\"955\"/>\n      <point x=\"520\" y=\"973\"/>\n      <point x=\"606\" y=\"973\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"973\"/>\n      <point x=\"788\" y=\"927\"/>\n      <point x=\"788\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"775\"/>\n      <point x=\"768\" y=\"741\"/>\n      <point x=\"728\" y=\"709\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"660\"/>\n      <point x=\"659\" y=\"631\"/>\n      <point x=\"659\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/resh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"resh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E8\"/>\n  <anchor x=\"402\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"904\" y=\"718\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"1054\"/>\n      <point x=\"773\" y=\"1200\"/>\n      <point x=\"446\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"1200\"/>\n      <point x=\"127\" y=\"1230\"/>\n      <point x=\"97\" y=\"1253\" type=\"curve\"/>\n      <point x=\"43\" y=\"1174\" type=\"line\"/>\n      <point x=\"80\" y=\"1143\"/>\n      <point x=\"121\" y=\"1101\"/>\n      <point x=\"198\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1101\"/>\n      <point x=\"805\" y=\"997\"/>\n      <point x=\"805\" y=\"709\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"0\" type=\"line\"/>\n      <point x=\"904\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/reshdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"reshdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB48\"/>\n  <outline>\n    <component base=\"resh-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-198\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/returnsymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"returnsymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"23CE\"/>\n  <outline>\n    <contour>\n      <point x=\"1035\" y=\"406\" type=\"line\"/>\n      <point x=\"1125\" y=\"406\" type=\"line\"/>\n      <point x=\"1125\" y=\"1088\" type=\"line\"/>\n      <point x=\"1035\" y=\"1088\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"998\" type=\"line\"/>\n      <point x=\"1100\" y=\"1088\" type=\"line\"/>\n      <point x=\"824\" y=\"1088\" type=\"line\"/>\n      <point x=\"824\" y=\"998\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"406\" type=\"line\"/>\n      <point x=\"1100\" y=\"496\" type=\"line\"/>\n      <point x=\"124\" y=\"496\" type=\"line\"/>\n      <point x=\"124\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"452\" y=\"45\" type=\"line\"/>\n      <point x=\"516\" y=\"102\" type=\"line\"/>\n      <point x=\"177\" y=\"442\" type=\"line\"/>\n      <point x=\"177\" y=\"460\" type=\"line\"/>\n      <point x=\"516\" y=\"800\" type=\"line\"/>\n      <point x=\"452\" y=\"857\" type=\"line\"/>\n      <point x=\"64\" y=\"462\" type=\"line\"/>\n      <point x=\"64\" y=\"440\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/reversedR_otatedF_loralH_eartB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"reversedRotatedFloralHeartBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2619\"/>\n  <outline>\n    <contour>\n      <point x=\"1076\" y=\"466\" type=\"curve\"/>\n      <point x=\"1166\" y=\"496\" type=\"line\"/>\n      <point x=\"1098\" y=\"725\"/>\n      <point x=\"1006\" y=\"811\"/>\n      <point x=\"700\" y=\"912\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"436\" y=\"999\"/>\n      <point x=\"310\" y=\"1018\"/>\n      <point x=\"212\" y=\"1237\" type=\"curve\"/>\n      <point x=\"122\" y=\"1217\" type=\"line\"/>\n      <point x=\"208\" y=\"1014\"/>\n      <point x=\"296\" y=\"956\"/>\n      <point x=\"628\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"747\"/>\n      <point x=\"1028\" y=\"668\"/>\n    </contour>\n    <contour>\n      <point x=\"412\" y=\"8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"8\"/>\n      <point x=\"878\" y=\"171\"/>\n      <point x=\"878\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"543\"/>\n      <point x=\"795\" y=\"625\"/>\n      <point x=\"669\" y=\"625\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"625\"/>\n      <point x=\"514\" y=\"535\"/>\n      <point x=\"470\" y=\"429\" type=\"curve\"/>\n      <point x=\"451\" y=\"435\" type=\"line\"/>\n      <point x=\"460\" y=\"462\"/>\n      <point x=\"496\" y=\"528\"/>\n      <point x=\"496\" y=\"597\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"711\"/>\n      <point x=\"419\" y=\"786\"/>\n      <point x=\"303\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"786\"/>\n      <point x=\"128\" y=\"713\"/>\n      <point x=\"128\" y=\"587\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"128\" y=\"379\"/>\n      <point x=\"327\" y=\"360\"/>\n      <point x=\"327\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"327\" y=\"159\"/>\n      <point x=\"291\" y=\"128\"/>\n      <point x=\"237\" y=\"128\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"188\" y=\"128\"/>\n      <point x=\"145\" y=\"156\"/>\n      <point x=\"58\" y=\"223\" type=\"curve\"/>\n      <point x=\"12\" y=\"154\" type=\"line\"/>\n      <point x=\"106\" y=\"61\"/>\n      <point x=\"222\" y=\"8\"/>\n    </contour>\n    <contour>\n      <point x=\"645\" y=\"911\" type=\"line\"/>\n      <point x=\"705\" y=\"1092\"/>\n      <point x=\"799\" y=\"1182\"/>\n      <point x=\"930\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"1182\"/>\n      <point x=\"1074\" y=\"1151\"/>\n      <point x=\"1131\" y=\"1087\" type=\"curve\"/>\n      <point x=\"1180\" y=\"1150\" type=\"line\"/>\n      <point x=\"1119\" y=\"1232\"/>\n      <point x=\"1034\" y=\"1272\"/>\n      <point x=\"926\" y=\"1272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"1272\"/>\n      <point x=\"645\" y=\"1161\"/>\n      <point x=\"560\" y=\"939\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rho.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rho\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C1\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"636\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"632\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"-20\"/>\n      <point x=\"1080\" y=\"177\"/>\n      <point x=\"1080\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"876\"/>\n      <point x=\"918\" y=\"1080\"/>\n      <point x=\"636\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"1080\"/>\n      <point x=\"192\" y=\"907\"/>\n      <point x=\"192\" y=\"605\" type=\"curve\"/>\n      <point x=\"286\" y=\"596\" type=\"line\"/>\n      <point x=\"286\" y=\"845\"/>\n      <point x=\"414\" y=\"988\"/>\n      <point x=\"636\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"857\" y=\"988\"/>\n      <point x=\"984\" y=\"818\"/>\n      <point x=\"984\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"235\"/>\n      <point x=\"862\" y=\"72\"/>\n      <point x=\"648\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"72\"/>\n      <point x=\"286\" y=\"233\"/>\n      <point x=\"286\" y=\"496\" type=\"curve\"/>\n      <point x=\"212\" y=\"240\" type=\"line\"/>\n      <point x=\"294\" y=\"240\" type=\"line\"/>\n      <point x=\"335\" y=\"66\"/>\n      <point x=\"458\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"-460\" type=\"line\"/>\n      <point x=\"286\" y=\"-460\" type=\"line\"/>\n      <point x=\"286\" y=\"605\" type=\"line\"/>\n      <point x=\"192\" y=\"605\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7F\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n      <point x=\"1050\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n      <point x=\"1050\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndUpperOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightAndUpperOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2192\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"754\" type=\"line\"/>\n      <point x=\"100\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"748\" y=\"303\" type=\"line\"/>\n      <point x=\"1136\" y=\"698\" type=\"line\"/>\n      <point x=\"1136\" y=\"720\" type=\"line\"/>\n      <point x=\"748\" y=\"1115\" type=\"line\"/>\n      <point x=\"684\" y=\"1058\" type=\"line\"/>\n      <point x=\"1023\" y=\"718\" type=\"line\"/>\n      <point x=\"1023\" y=\"700\" type=\"line\"/>\n      <point x=\"684\" y=\"360\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lackP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlackPointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BA\"/>\n  <note>\ntriagrt\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"350\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1070\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B8\"/>\n  <note>\nuni25B8\n</note>\n  <outline>\n    <contour>\n      <point x=\"195\" y=\"241\" type=\"line\"/>\n      <point x=\"992\" y=\"710\" type=\"line\"/>\n      <point x=\"195\" y=\"1179\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B6\"/>\n  <note>\nuni25B6\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"110\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2590\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB89\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D7\"/>\n  <note>\nuni25D7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"line\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B17\"/>\n  <note>\nuni2B17\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E8\"/>\n  <note>\nuni25E8\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"235\" type=\"line\"/>\n      <point x=\"1085\" y=\"235\" type=\"line\"/>\n      <point x=\"1085\" y=\"1185\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D1\"/>\n  <note>\nuni25D1\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"245\" type=\"line\"/>\n      <point x=\"941\" y=\"351\" type=\"line\"/>\n      <point x=\"1088\" y=\"704\" type=\"line\"/>\n      <point x=\"941\" y=\"1094\" type=\"line\"/>\n      <point x=\"600\" y=\"1175\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2595\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB87\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB8B\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB88\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB8A\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightW_hiteP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightWhitePointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BB\"/>\n  <note>\nuni25BB\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"350\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1070\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"210\" y=\"461\" type=\"line\"/>\n      <point x=\"210\" y=\"959\" type=\"line\"/>\n      <point x=\"192\" y=\"936\" type=\"line\"/>\n      <point x=\"904\" y=\"701\" type=\"line\"/>\n      <point x=\"904\" y=\"719\" type=\"line\"/>\n      <point x=\"192\" y=\"484\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B9\"/>\n  <note>\nuni25B9\n</note>\n  <outline>\n    <contour>\n      <point x=\"195\" y=\"241\" type=\"line\"/>\n      <point x=\"992\" y=\"710\" type=\"line\"/>\n      <point x=\"195\" y=\"1179\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"285\" y=\"365\" type=\"line\"/>\n      <point x=\"285\" y=\"1048\" type=\"line\"/>\n      <point x=\"248\" y=\"1044\" type=\"line\"/>\n      <point x=\"876\" y=\"673\" type=\"line\"/>\n      <point x=\"876\" y=\"744\" type=\"line\"/>\n      <point x=\"239\" y=\"371\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rightW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rightWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B7\"/>\n  <note>\nuni25B7\n</note>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"110\" type=\"line\"/>\n      <point x=\"1140\" y=\"710\" type=\"line\"/>\n      <point x=\"120\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"200\" y=\"220\" type=\"line\"/>\n      <point x=\"200\" y=\"1190\" type=\"line\"/>\n      <point x=\"140\" y=\"1193\" type=\"line\"/>\n      <point x=\"970\" y=\"705\" type=\"line\"/>\n      <point x=\"970\" y=\"713\" type=\"line\"/>\n      <point x=\"146\" y=\"228\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DA\"/>\n  <outline>\n    <component base=\"ringcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ringA_rabic.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringArabic\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-47\" name=\"_bottom\"/>\n  <anchor x=\"601\" y=\"95\" name=\"_bottom.dot\"/>\n  <anchor x=\"831\" y=\"58\" name=\"_center\"/>\n  <anchor x=\"601\" y=\"-209\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_ringArabic\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ringbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringbelowcomb\" format=\"2\">\n  <unicode hex=\"0325\"/>\n  <anchor x=\"600\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <component base=\"ringcomb\" yOffset=\"-1698\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ringcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringcomb.case\" format=\"2\">\n  <anchor x=\"600\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"1488\"/>\n      <point x=\"818\" y=\"1570\"/>\n      <point x=\"818\" y=\"1694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"1818\"/>\n      <point x=\"731\" y=\"1900\"/>\n      <point x=\"600\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"1900\"/>\n      <point x=\"382\" y=\"1818\"/>\n      <point x=\"382\" y=\"1694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"382\" y=\"1570\"/>\n      <point x=\"469\" y=\"1488\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1564\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"514\" y=\"1564\"/>\n      <point x=\"458\" y=\"1616\"/>\n      <point x=\"458\" y=\"1694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"458\" y=\"1772\"/>\n      <point x=\"514\" y=\"1824\"/>\n      <point x=\"600\" y=\"1824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"1824\"/>\n      <point x=\"742\" y=\"1772\"/>\n      <point x=\"742\" y=\"1694\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"742\" y=\"1616\"/>\n      <point x=\"686\" y=\"1564\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ringcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ringcomb\" format=\"2\">\n  <unicode hex=\"030A\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"736\" y=\"1198\"/>\n      <point x=\"814\" y=\"1277\"/>\n      <point x=\"814\" y=\"1414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"1551\"/>\n      <point x=\"736\" y=\"1630\"/>\n      <point x=\"600\" y=\"1630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"1630\"/>\n      <point x=\"386\" y=\"1551\"/>\n      <point x=\"386\" y=\"1414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"1277\"/>\n      <point x=\"464\" y=\"1198\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"1282\"/>\n      <point x=\"476\" y=\"1330\"/>\n      <point x=\"476\" y=\"1414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"1498\"/>\n      <point x=\"520\" y=\"1546\"/>\n      <point x=\"600\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"1546\"/>\n      <point x=\"724\" y=\"1498\"/>\n      <point x=\"724\" y=\"1414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"724\" y=\"1330\"/>\n      <point x=\"680\" y=\"1282\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"noonghunna-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"8\" yOffset=\"138\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BB\"/>\n  <outline>\n    <component base=\"noonghunna-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"38\" yOffset=\"138\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>noonghunna-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"tteh-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tteh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rnoon-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tteh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rotatedF_loralH_eartB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rotatedFloralHeartBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2767\"/>\n  <outline>\n    <contour>\n      <point x=\"124\" y=\"466\" type=\"line\"/>\n      <point x=\"172\" y=\"668\"/>\n      <point x=\"250\" y=\"747\"/>\n      <point x=\"572\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"956\"/>\n      <point x=\"992\" y=\"1014\"/>\n      <point x=\"1078\" y=\"1217\" type=\"curve\"/>\n      <point x=\"988\" y=\"1237\" type=\"line\"/>\n      <point x=\"890\" y=\"1018\"/>\n      <point x=\"764\" y=\"999\"/>\n      <point x=\"500\" y=\"912\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"194\" y=\"811\"/>\n      <point x=\"102\" y=\"725\"/>\n      <point x=\"34\" y=\"496\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"788\" y=\"8\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"8\"/>\n      <point x=\"1094\" y=\"61\"/>\n      <point x=\"1188\" y=\"154\" type=\"curve\"/>\n      <point x=\"1142\" y=\"223\" type=\"line\"/>\n      <point x=\"1055\" y=\"156\"/>\n      <point x=\"1012\" y=\"128\"/>\n      <point x=\"963\" y=\"128\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"909\" y=\"128\"/>\n      <point x=\"873\" y=\"159\"/>\n      <point x=\"873\" y=\"221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"360\"/>\n      <point x=\"1072\" y=\"379\"/>\n      <point x=\"1072\" y=\"587\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1072\" y=\"713\"/>\n      <point x=\"1008\" y=\"786\"/>\n      <point x=\"897\" y=\"786\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"781\" y=\"786\"/>\n      <point x=\"704\" y=\"711\"/>\n      <point x=\"704\" y=\"597\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"528\"/>\n      <point x=\"740\" y=\"462\"/>\n      <point x=\"749\" y=\"435\" type=\"curve\"/>\n      <point x=\"730\" y=\"429\" type=\"line\"/>\n      <point x=\"686\" y=\"535\"/>\n      <point x=\"654\" y=\"625\"/>\n      <point x=\"531\" y=\"625\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"405\" y=\"625\"/>\n      <point x=\"322\" y=\"543\"/>\n      <point x=\"322\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"322\" y=\"171\"/>\n      <point x=\"507\" y=\"8\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"911\" type=\"curve\"/>\n      <point x=\"640\" y=\"939\" type=\"line\"/>\n      <point x=\"555\" y=\"1161\"/>\n      <point x=\"436\" y=\"1272\"/>\n      <point x=\"274\" y=\"1272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"1272\"/>\n      <point x=\"81\" y=\"1232\"/>\n      <point x=\"20\" y=\"1150\" type=\"curve\"/>\n      <point x=\"69\" y=\"1087\" type=\"line\"/>\n      <point x=\"126\" y=\"1151\"/>\n      <point x=\"200\" y=\"1182\"/>\n      <point x=\"270\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"1182\"/>\n      <point x=\"495\" y=\"1092\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rreh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rreh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"113\" yOffset=\"224\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rreh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rreh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0691\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"203\" yOffset=\"244\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ruble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ruble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BD\"/>\n  <outline>\n    <contour>\n      <point x=\"24\" y=\"185\" type=\"line\"/>\n      <point x=\"788\" y=\"185\" type=\"line\"/>\n      <point x=\"788\" y=\"275\" type=\"line\"/>\n      <point x=\"24\" y=\"275\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"24\" y=\"489\" type=\"line\"/>\n      <point x=\"437\" y=\"489\" type=\"line\"/>\n      <point x=\"437\" y=\"579\" type=\"line\"/>\n      <point x=\"24\" y=\"579\" type=\"line\"/>\n    </contour>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rupee.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rupee\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A8\"/>\n  <outline>\n    <contour>\n      <point x=\"878\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"-20\"/>\n      <point x=\"1150\" y=\"53\"/>\n      <point x=\"1150\" y=\"226\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1150\" y=\"319\"/>\n      <point x=\"1104\" y=\"414\"/>\n      <point x=\"990\" y=\"539\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"851\" y=\"692\"/>\n      <point x=\"788\" y=\"785\"/>\n      <point x=\"788\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"950\"/>\n      <point x=\"836\" y=\"988\"/>\n      <point x=\"950\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"988\"/>\n      <point x=\"1029\" y=\"983\"/>\n      <point x=\"1090\" y=\"974\" type=\"curve\"/>\n      <point x=\"1102\" y=\"1060\" type=\"line\"/>\n      <point x=\"1052\" y=\"1073\"/>\n      <point x=\"992\" y=\"1080\"/>\n      <point x=\"936\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"1080\"/>\n      <point x=\"692\" y=\"1014\"/>\n      <point x=\"692\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"753\"/>\n      <point x=\"754\" y=\"649\"/>\n      <point x=\"892\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"388\"/>\n      <point x=\"1054\" y=\"303\"/>\n      <point x=\"1054\" y=\"222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1054\" y=\"117\"/>\n      <point x=\"1001\" y=\"72\"/>\n      <point x=\"878\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"72\"/>\n      <point x=\"750\" y=\"79\"/>\n      <point x=\"689\" y=\"93\" type=\"curve\"/>\n      <point x=\"676\" y=\"0\" type=\"line\"/>\n      <point x=\"740\" y=\"-14\"/>\n      <point x=\"800\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"537\" y=\"0\" type=\"line\"/>\n      <point x=\"632\" y=\"0\" type=\"line\"/>\n      <point x=\"464\" y=\"628\" type=\"line\"/>\n      <point x=\"369\" y=\"628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"0\" type=\"line\"/>\n      <point x=\"198\" y=\"0\" type=\"line\"/>\n      <point x=\"198\" y=\"1420\" type=\"line\"/>\n      <point x=\"104\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"582\" type=\"line\"/>\n      <point x=\"308\" y=\"582\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"523\" y=\"582\"/>\n      <point x=\"640\" y=\"738\"/>\n      <point x=\"640\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"640\" y=\"1271\"/>\n      <point x=\"523\" y=\"1420\"/>\n      <point x=\"308\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"1420\" type=\"line\"/>\n      <point x=\"160\" y=\"1330\" type=\"line\"/>\n      <point x=\"308\" y=\"1330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"1330\"/>\n      <point x=\"544\" y=\"1211\"/>\n      <point x=\"544\" y=\"1001\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"793\"/>\n      <point x=\"462\" y=\"672\"/>\n      <point x=\"308\" y=\"672\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"672\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/rupeeI_ndian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"rupeeIndian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B9\"/>\n  <outline>\n    <contour>\n      <point x=\"156\" y=\"590\" type=\"line\"/>\n      <point x=\"466\" y=\"590\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"745\" y=\"590\"/>\n      <point x=\"904\" y=\"732\"/>\n      <point x=\"904\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"1160\"/>\n      <point x=\"846\" y=\"1284\"/>\n      <point x=\"746\" y=\"1320\" type=\"curve\"/>\n      <point x=\"746\" y=\"1368\" type=\"line\"/>\n      <point x=\"156\" y=\"1330\" type=\"line\"/>\n      <point x=\"466\" y=\"1330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"683\" y=\"1330\"/>\n      <point x=\"808\" y=\"1202\"/>\n      <point x=\"808\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"789\"/>\n      <point x=\"683\" y=\"680\"/>\n      <point x=\"466\" y=\"680\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"156\" y=\"680\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"871\" y=\"0\" type=\"line\"/>\n      <point x=\"986\" y=\"0\" type=\"line\"/>\n      <point x=\"612\" y=\"668\" type=\"line\"/>\n      <point x=\"497\" y=\"668\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"156\" y=\"960\" type=\"line\"/>\n      <point x=\"1044\" y=\"960\" type=\"line\"/>\n      <point x=\"1044\" y=\"1050\" type=\"line\"/>\n      <point x=\"156\" y=\"1050\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"156\" y=\"1330\" type=\"line\"/>\n      <point x=\"1036\" y=\"1330\" type=\"line\"/>\n      <point x=\"1036\" y=\"1420\" type=\"line\"/>\n      <point x=\"156\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/s.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"s\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0073\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"630\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"518\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"-20\"/>\n      <point x=\"1020\" y=\"64\"/>\n      <point x=\"1020\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1020\" y=\"415\"/>\n      <point x=\"933\" y=\"509\"/>\n      <point x=\"717\" y=\"561\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"530\" y=\"606\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"361\" y=\"647\"/>\n      <point x=\"292\" y=\"710\"/>\n      <point x=\"292\" y=\"790\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"929\"/>\n      <point x=\"422\" y=\"988\"/>\n      <point x=\"730\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"988\"/>\n      <point x=\"872\" y=\"984\"/>\n      <point x=\"981\" y=\"974\" type=\"curve\"/>\n      <point x=\"992\" y=\"1060\" type=\"line\"/>\n      <point x=\"892\" y=\"1074\"/>\n      <point x=\"824\" y=\"1080\"/>\n      <point x=\"736\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"1080\"/>\n      <point x=\"196\" y=\"995\"/>\n      <point x=\"196\" y=\"791\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"660\"/>\n      <point x=\"279\" y=\"570\"/>\n      <point x=\"484\" y=\"519\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"460\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"424\"/>\n      <point x=\"924\" y=\"360\"/>\n      <point x=\"924\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"130\"/>\n      <point x=\"802\" y=\"72\"/>\n      <point x=\"518\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"72\"/>\n      <point x=\"328\" y=\"82\"/>\n      <point x=\"192\" y=\"105\" type=\"curve\"/>\n      <point x=\"180\" y=\"10\" type=\"line\"/>\n      <point x=\"264\" y=\"-11\"/>\n      <point x=\"365\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015B\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"acutecomb\" xOffset=\"120\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"442\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"442\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"-330\" y=\"1075\" name=\"top\"/>\n  <anchor x=\"580\" y=\"855\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-425\" y=\"-335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-123\" y=\"-335\"/>\n      <point x=\"44\" y=\"-241\"/>\n      <point x=\"44\" y=\"147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"44\" y=\"266\"/>\n      <point x=\"33\" y=\"405\"/>\n      <point x=\"21\" y=\"541\" type=\"curve\"/>\n      <point x=\"-71\" y=\"536\" type=\"line\"/>\n      <point x=\"-60\" y=\"394\"/>\n      <point x=\"-48\" y=\"284\"/>\n      <point x=\"-48\" y=\"133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-48\" y=\"-161\"/>\n      <point x=\"-141\" y=\"-241\"/>\n      <point x=\"-411\" y=\"-241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-698\" y=\"-241\"/>\n      <point x=\"-805\" y=\"-170\"/>\n      <point x=\"-805\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-805\" y=\"221\"/>\n      <point x=\"-779\" y=\"348\"/>\n      <point x=\"-761\" y=\"464\" type=\"curve\"/>\n      <point x=\"-847\" y=\"464\" type=\"line\"/>\n      <point x=\"-870\" y=\"343\"/>\n      <point x=\"-897\" y=\"215\"/>\n      <point x=\"-897\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-897\" y=\"-195\"/>\n      <point x=\"-780\" y=\"-335\"/>\n    </contour>\n    <contour>\n      <point x=\"500\" y=\"-7\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"-7\"/>\n      <point x=\"1038\" y=\"97\"/>\n      <point x=\"1038\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"550\"/>\n      <point x=\"910\" y=\"766\"/>\n      <point x=\"720\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"766\"/>\n      <point x=\"346\" y=\"535\"/>\n      <point x=\"85\" y=\"78\" type=\"curve\"/>\n      <point x=\"173\" y=\"61\" type=\"line\"/>\n      <point x=\"409\" y=\"464\"/>\n      <point x=\"595\" y=\"672\"/>\n      <point x=\"715\" y=\"672\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"672\"/>\n      <point x=\"946\" y=\"470\"/>\n      <point x=\"946\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"163\"/>\n      <point x=\"839\" y=\"87\"/>\n      <point x=\"503\" y=\"87\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"243\" y=\"87\"/>\n      <point x=\"87\" y=\"107\"/>\n      <point x=\"4\" y=\"127\" type=\"curve\"/>\n      <point x=\"-10\" y=\"40\" type=\"line\"/>\n      <point x=\"74\" y=\"11\"/>\n      <point x=\"222\" y=\"-7\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-3\"/>\n      <point x=\"1276\" y=\"13\"/>\n      <point x=\"1276\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1276\" y=\"76\"/>\n      <point x=\"1263\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1111\" y=\"91\"/>\n      <point x=\"986\" y=\"91\"/>\n      <point x=\"859\" y=\"102\" type=\"curve\"/>\n      <point x=\"818\" y=\"49\" type=\"line\"/>\n      <point x=\"881\" y=\"49\" type=\"line\"/>\n      <point x=\"899\" y=\"10\"/>\n      <point x=\"923\" y=\"-3\"/>\n    </contour>\n    <component base=\"sad-ar.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"822\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"822\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"540\" y=\"1075\" name=\"top\"/>\n  <anchor x=\"880\" y=\"855\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-3\"/>\n      <point x=\"1276\" y=\"13\"/>\n      <point x=\"1276\" y=\"44\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1276\" y=\"76\"/>\n      <point x=\"1263\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1161\" y=\"91\"/>\n      <point x=\"1106\" y=\"91\"/>\n      <point x=\"1039\" y=\"102\" type=\"curve\"/>\n      <point x=\"998\" y=\"49\" type=\"line\"/>\n      <point x=\"1061\" y=\"49\" type=\"line\"/>\n      <point x=\"1079\" y=\"10\"/>\n      <point x=\"1103\" y=\"-3\"/>\n    </contour>\n    <component base=\"sad-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0635\"/>\n  <anchor x=\"822\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"822\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"540\" y=\"1075\" name=\"top\"/>\n  <anchor x=\"880\" y=\"855\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"760\" y=\"-7\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"-7\"/>\n      <point x=\"1158\" y=\"97\"/>\n      <point x=\"1158\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1158\" y=\"570\"/>\n      <point x=\"1079\" y=\"766\"/>\n      <point x=\"949\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"766\"/>\n      <point x=\"680\" y=\"535\"/>\n      <point x=\"549\" y=\"78\" type=\"curve\"/>\n      <point x=\"631\" y=\"61\" type=\"line\"/>\n      <point x=\"745\" y=\"464\"/>\n      <point x=\"863\" y=\"672\"/>\n      <point x=\"943\" y=\"672\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"672\"/>\n      <point x=\"1066\" y=\"490\"/>\n      <point x=\"1066\" y=\"364\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1066\" y=\"163\"/>\n      <point x=\"1029\" y=\"87\"/>\n      <point x=\"783\" y=\"87\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"613\" y=\"87\"/>\n      <point x=\"523\" y=\"109\"/>\n      <point x=\"470\" y=\"129\" type=\"curve\"/>\n      <point x=\"447\" y=\"57\" type=\"line\"/>\n      <point x=\"530\" y=\"10\"/>\n      <point x=\"631\" y=\"-7\"/>\n    </contour>\n    <contour>\n      <point x=\"262\" y=\"-335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"-335\"/>\n      <point x=\"531\" y=\"-211\"/>\n      <point x=\"531\" y=\"147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"531\" y=\"266\"/>\n      <point x=\"525\" y=\"341\"/>\n      <point x=\"514\" y=\"475\" type=\"curve\"/>\n      <point x=\"422\" y=\"470\" type=\"line\"/>\n      <point x=\"433\" y=\"340\"/>\n      <point x=\"439\" y=\"254\"/>\n      <point x=\"439\" y=\"133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"439\" y=\"-161\"/>\n      <point x=\"396\" y=\"-241\"/>\n      <point x=\"266\" y=\"-241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"-241\"/>\n      <point x=\"122\" y=\"-180\"/>\n      <point x=\"122\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"122\" y=\"191\"/>\n      <point x=\"130\" y=\"298\"/>\n      <point x=\"146\" y=\"434\" type=\"curve\"/>\n      <point x=\"60\" y=\"434\" type=\"line\"/>\n      <point x=\"41\" y=\"303\"/>\n      <point x=\"30\" y=\"165\"/>\n      <point x=\"30\" y=\"39\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"30\" y=\"-215\"/>\n      <point x=\"97\" y=\"-335\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"652\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"652\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"779\" y=\"1165\" name=\"top\"/>\n  <anchor x=\"780\" y=\"845\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"590\" y=\"-7\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"-7\"/>\n      <point x=\"1128\" y=\"97\"/>\n      <point x=\"1128\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"550\"/>\n      <point x=\"1000\" y=\"766\"/>\n      <point x=\"810\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"766\"/>\n      <point x=\"466\" y=\"535\"/>\n      <point x=\"205\" y=\"78\" type=\"curve\"/>\n      <point x=\"293\" y=\"61\" type=\"line\"/>\n      <point x=\"529\" y=\"465\"/>\n      <point x=\"685\" y=\"672\"/>\n      <point x=\"805\" y=\"672\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"672\"/>\n      <point x=\"1036\" y=\"470\"/>\n      <point x=\"1036\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"163\"/>\n      <point x=\"929\" y=\"87\"/>\n      <point x=\"593\" y=\"87\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"87\"/>\n      <point x=\"210\" y=\"103\"/>\n      <point x=\"122\" y=\"121\" type=\"curve\"/>\n      <point x=\"119\" y=\"44\" type=\"line\"/>\n      <point x=\"169\" y=\"44\" type=\"line\"/>\n      <point x=\"199\" y=\"0\"/>\n      <point x=\"324\" y=\"-7\"/>\n    </contour>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"line\"/>\n      <point x=\"201\" y=\"-3\"/>\n      <point x=\"193\" y=\"140\"/>\n      <point x=\"212\" y=\"431\" type=\"curve\"/>\n      <point x=\"120\" y=\"429\" type=\"line\"/>\n      <point x=\"103\" y=\"120\"/>\n      <point x=\"97\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sad-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-3\"/>\n      <point x=\"1265\" y=\"15\"/>\n      <point x=\"1265\" y=\"46\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"78\"/>\n      <point x=\"1253\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1113\" y=\"91\"/>\n      <point x=\"1066\" y=\"91\"/>\n      <point x=\"949\" y=\"102\" type=\"curve\"/>\n      <point x=\"908\" y=\"49\" type=\"line\"/>\n      <point x=\"971\" y=\"49\" type=\"line\"/>\n      <point x=\"989\" y=\"7\"/>\n      <point x=\"1033\" y=\"-3\"/>\n    </contour>\n    <component base=\"sad-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-20\" yOffset=\"313\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-20\" yOffset=\"313\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"280\" yOffset=\"313\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069E\"/>\n  <outline>\n    <component base=\"sad-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"280\" yOffset=\"313\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"180\" yOffset=\"303\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"180\" yOffset=\"303\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-158\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-158\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AF\"/>\n  <outline>\n    <component base=\"sad-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"1064\" y=\"460\" angle=\"0\"/>\n  <outline>\n    <component base=\"sad-ar.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-160\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"1093\" y=\"460\" angle=\"0\"/>\n  <outline>\n    <component base=\"sad-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-160\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"1093\" y=\"460\" angle=\"0\"/>\n  <outline>\n    <component base=\"sad-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069D\"/>\n  <guideline x=\"1064\" y=\"460\" angle=\"0\"/>\n  <outline>\n    <component base=\"sad-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"220\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sad-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sadTwodotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"1561\" y=\"-129\" angle=\"0\"/>\n  <outline>\n    <component base=\"sad-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"50\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/samekh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"samekh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E1\"/>\n  <anchor x=\"561\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"559\" y=\"-19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"-19\"/>\n      <point x=\"975\" y=\"187\"/>\n      <point x=\"975\" y=\"527\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"813\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"1059\"/>\n      <point x=\"837\" y=\"1200\"/>\n      <point x=\"594\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"1200\"/>\n      <point x=\"195\" y=\"1230\"/>\n      <point x=\"165\" y=\"1253\" type=\"curve\"/>\n      <point x=\"111\" y=\"1174\" type=\"line\"/>\n      <point x=\"142\" y=\"1148\"/>\n      <point x=\"175\" y=\"1115\"/>\n      <point x=\"230\" y=\"1104\" type=\"curve\"/>\n      <point x=\"230\" y=\"1094\" type=\"line\"/>\n      <point x=\"180\" y=\"1064\"/>\n      <point x=\"148\" y=\"969\"/>\n      <point x=\"148\" y=\"821\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"527\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"172\"/>\n      <point x=\"281\" y=\"-19\"/>\n    </contour>\n    <contour>\n      <point x=\"559\" y=\"78\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"78\"/>\n      <point x=\"247\" y=\"231\"/>\n      <point x=\"247\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"247\" y=\"818\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"247\" y=\"927\"/>\n      <point x=\"248\" y=\"1101\"/>\n      <point x=\"409\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"770\" y=\"1101\"/>\n      <point x=\"876\" y=\"998\"/>\n      <point x=\"876\" y=\"813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"532\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"231\"/>\n      <point x=\"774\" y=\"78\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/samekhdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"samekhdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB41\"/>\n  <outline>\n    <component base=\"samekh-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-39\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/samvat-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"samvat-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0604\"/>\n  <outline>\n    <contour>\n      <point x=\"564\" y=\"-3\" type=\"curve\"/>\n      <point x=\"564\" y=\"90\" type=\"line\"/>\n      <point x=\"440\" y=\"90\"/>\n      <point x=\"426\" y=\"155\"/>\n      <point x=\"426\" y=\"247\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"426\" y=\"331\"/>\n      <point x=\"468\" y=\"378\"/>\n      <point x=\"512\" y=\"378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"559\" y=\"378\"/>\n      <point x=\"573\" y=\"344\"/>\n      <point x=\"606\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"147\"/>\n      <point x=\"698\" y=\"123\"/>\n      <point x=\"761\" y=\"123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"803\" y=\"123\"/>\n      <point x=\"845\" y=\"137\"/>\n      <point x=\"869\" y=\"182\" type=\"curve\"/>\n      <point x=\"895\" y=\"182\" type=\"line\"/>\n      <point x=\"911\" y=\"196\"/>\n      <point x=\"916\" y=\"219\"/>\n      <point x=\"918\" y=\"250\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"923\" y=\"326\"/>\n      <point x=\"923\" y=\"398\"/>\n      <point x=\"920\" y=\"494\" type=\"curve\"/>\n      <point x=\"833\" y=\"491\" type=\"line\"/>\n      <point x=\"834\" y=\"410\"/>\n      <point x=\"834\" y=\"300\"/>\n      <point x=\"829\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"230\"/>\n      <point x=\"810\" y=\"217\"/>\n      <point x=\"776\" y=\"217\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"217\"/>\n      <point x=\"720\" y=\"234\"/>\n      <point x=\"674\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"449\"/>\n      <point x=\"576\" y=\"472\"/>\n      <point x=\"516\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"427\" y=\"472\"/>\n      <point x=\"334\" y=\"395\"/>\n      <point x=\"334\" y=\"254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"162\"/>\n      <point x=\"363\" y=\"114\"/>\n      <point x=\"401\" y=\"98\" type=\"curve\"/>\n      <point x=\"401\" y=\"71\" type=\"line\"/>\n      <point x=\"419\" y=\"42\" type=\"line\"/>\n      <point x=\"435\" y=\"87\" type=\"line\"/>\n      <point x=\"341\" y=\"89\"/>\n      <point x=\"180\" y=\"90\"/>\n      <point x=\"23\" y=\"90\" type=\"curve\"/>\n      <point x=\"23\" y=\"-4\" type=\"line\"/>\n      <point x=\"184\" y=\"-5\"/>\n      <point x=\"412\" y=\"-2\"/>\n    </contour>\n    <contour>\n      <point x=\"997\" y=\"123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"123\"/>\n      <point x=\"1147\" y=\"198\"/>\n      <point x=\"1147\" y=\"307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1147\" y=\"368\"/>\n      <point x=\"1143\" y=\"432\"/>\n      <point x=\"1130\" y=\"516\" type=\"curve\"/>\n      <point x=\"1048\" y=\"509\" type=\"line\"/>\n      <point x=\"1056\" y=\"417\"/>\n      <point x=\"1060\" y=\"342\"/>\n      <point x=\"1060\" y=\"289\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"232\"/>\n      <point x=\"1040\" y=\"217\"/>\n      <point x=\"996\" y=\"217\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"217\"/>\n      <point x=\"930\" y=\"225\"/>\n      <point x=\"899\" y=\"238\" type=\"curve\"/>\n      <point x=\"877\" y=\"196\" type=\"line\"/>\n      <point x=\"898\" y=\"147\"/>\n      <point x=\"941\" y=\"123\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/scaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0161\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"caroncomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/scedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015F\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"cedillacomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/schwa-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"schwa-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04D9\"/>\n  <outline>\n    <component base=\"schwa\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/schwa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"schwa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0259\"/>\n  <anchor x=\"580\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"570\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"585\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"-20\"/>\n      <point x=\"1040\" y=\"175\"/>\n      <point x=\"1040\" y=\"516\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"874\"/>\n      <point x=\"842\" y=\"1080\"/>\n      <point x=\"497\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"1080\"/>\n      <point x=\"288\" y=\"1069\"/>\n      <point x=\"212\" y=\"1052\" type=\"curve\"/>\n      <point x=\"227\" y=\"960\" type=\"line\"/>\n      <point x=\"305\" y=\"978\"/>\n      <point x=\"398\" y=\"988\"/>\n      <point x=\"473\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"988\"/>\n      <point x=\"944\" y=\"815\"/>\n      <point x=\"944\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"235\"/>\n      <point x=\"812\" y=\"72\"/>\n      <point x=\"583\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"72\"/>\n      <point x=\"256\" y=\"214\"/>\n      <point x=\"256\" y=\"462\" type=\"curve\"/>\n      <point x=\"967\" y=\"462\" type=\"line\"/>\n      <point x=\"967\" y=\"552\" type=\"line\"/>\n      <point x=\"166\" y=\"552\" type=\"line\"/>\n      <point x=\"162\" y=\"531\"/>\n      <point x=\"160\" y=\"498\"/>\n      <point x=\"160\" y=\"464\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"158\"/>\n      <point x=\"316\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/scircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015D\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/scommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"scommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0219\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E63\"/>\n  <outline>\n    <component base=\"s\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/second.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"second\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2033\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"780\" type=\"line\"/>\n      <point x=\"754\" y=\"780\" type=\"line\"/>\n      <point x=\"984\" y=\"1420\" type=\"line\"/>\n      <point x=\"877\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"247\" y=\"780\" type=\"line\"/>\n      <point x=\"354\" y=\"780\" type=\"line\"/>\n      <point x=\"584\" y=\"1420\" type=\"line\"/>\n      <point x=\"477\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/section.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"section\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A7\"/>\n  <outline>\n    <contour>\n      <point x=\"1107\" y=\"674\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1107\" y=\"838\"/>\n      <point x=\"1008\" y=\"941\"/>\n      <point x=\"809\" y=\"984\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"1043\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"367\" y=\"1078\"/>\n      <point x=\"285\" y=\"1146\"/>\n      <point x=\"285\" y=\"1248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"1402\"/>\n      <point x=\"418\" y=\"1478\"/>\n      <point x=\"687\" y=\"1478\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"1478\"/>\n      <point x=\"837\" y=\"1473\"/>\n      <point x=\"927\" y=\"1464\" type=\"curve\"/>\n      <point x=\"949\" y=\"1548\" type=\"line\"/>\n      <point x=\"869\" y=\"1561\"/>\n      <point x=\"784\" y=\"1568\"/>\n      <point x=\"693\" y=\"1568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"1568\"/>\n      <point x=\"193\" y=\"1459\"/>\n      <point x=\"193\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"193\" y=\"1103\"/>\n      <point x=\"303\" y=\"1014\"/>\n      <point x=\"524\" y=\"970\" type=\"curve\"/>\n      <point x=\"524\" y=\"962\" type=\"line\"/>\n      <point x=\"236\" y=\"963\"/>\n      <point x=\"93\" y=\"862\"/>\n      <point x=\"93\" y=\"658\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"93\" y=\"497\"/>\n      <point x=\"202\" y=\"401\"/>\n      <point x=\"423\" y=\"366\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"321\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"846\" y=\"299\"/>\n      <point x=\"915\" y=\"226\"/>\n      <point x=\"915\" y=\"102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"-53\"/>\n      <point x=\"786\" y=\"-130\"/>\n      <point x=\"525\" y=\"-130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"443\" y=\"-130\"/>\n      <point x=\"339\" y=\"-119\"/>\n      <point x=\"211\" y=\"-98\" type=\"curve\"/>\n      <point x=\"187\" y=\"-190\" type=\"line\"/>\n      <point x=\"267\" y=\"-210\"/>\n      <point x=\"379\" y=\"-220\"/>\n      <point x=\"525\" y=\"-220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"-220\"/>\n      <point x=\"1007\" y=\"-112\"/>\n      <point x=\"1007\" y=\"106\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1007\" y=\"262\"/>\n      <point x=\"926\" y=\"353\"/>\n      <point x=\"762\" y=\"380\" type=\"curve\"/>\n      <point x=\"762\" y=\"393\" type=\"line\"/>\n      <point x=\"993\" y=\"395\"/>\n      <point x=\"1107\" y=\"488\"/>\n    </contour>\n    <contour>\n      <point x=\"189\" y=\"668\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"189\" y=\"828\"/>\n      <point x=\"328\" y=\"908\"/>\n      <point x=\"607\" y=\"908\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"908\"/>\n      <point x=\"1011\" y=\"829\"/>\n      <point x=\"1011\" y=\"670\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"515\"/>\n      <point x=\"883\" y=\"438\"/>\n      <point x=\"625\" y=\"438\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"438\"/>\n      <point x=\"189\" y=\"514\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"412\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"412\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"421\" y=\"945\" name=\"top\"/>\n  <anchor x=\"421\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-395\" y=\"-335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-93\" y=\"-335\"/>\n      <point x=\"74\" y=\"-241\"/>\n      <point x=\"74\" y=\"147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"74\" y=\"266\"/>\n      <point x=\"62\" y=\"447\"/>\n      <point x=\"51\" y=\"581\" type=\"curve\"/>\n      <point x=\"-38\" y=\"576\" type=\"line\"/>\n      <point x=\"-27\" y=\"416\"/>\n      <point x=\"-18\" y=\"284\"/>\n      <point x=\"-18\" y=\"133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-18\" y=\"-161\"/>\n      <point x=\"-111\" y=\"-241\"/>\n      <point x=\"-381\" y=\"-241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-668\" y=\"-241\"/>\n      <point x=\"-775\" y=\"-170\"/>\n      <point x=\"-775\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-775\" y=\"221\"/>\n      <point x=\"-749\" y=\"348\"/>\n      <point x=\"-731\" y=\"464\" type=\"curve\"/>\n      <point x=\"-817\" y=\"464\" type=\"line\"/>\n      <point x=\"-840\" y=\"343\"/>\n      <point x=\"-867\" y=\"215\"/>\n      <point x=\"-867\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-867\" y=\"-195\"/>\n      <point x=\"-750\" y=\"-335\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"-3\"/>\n      <point x=\"362\" y=\"9\"/>\n      <point x=\"392\" y=\"65\" type=\"curve\"/>\n      <point x=\"437\" y=\"65\" type=\"line\"/>\n      <point x=\"451\" y=\"95\"/>\n      <point x=\"460\" y=\"141\"/>\n      <point x=\"463\" y=\"188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"282\"/>\n      <point x=\"467\" y=\"464\"/>\n      <point x=\"462\" y=\"604\" type=\"curve\"/>\n      <point x=\"370\" y=\"601\" type=\"line\"/>\n      <point x=\"374\" y=\"452\"/>\n      <point x=\"377\" y=\"287\"/>\n      <point x=\"369\" y=\"188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"121\"/>\n      <point x=\"325\" y=\"91\"/>\n      <point x=\"190\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"91\"/>\n      <point x=\"90\" y=\"92\"/>\n      <point x=\"37\" y=\"101\" type=\"curve\"/>\n      <point x=\"12\" y=\"10\" type=\"line\"/>\n      <point x=\"56\" y=\"2\"/>\n      <point x=\"128\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"749\" y=\"-3\"/>\n      <point x=\"830\" y=\"71\"/>\n      <point x=\"830\" y=\"272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"376\"/>\n      <point x=\"822\" y=\"482\"/>\n      <point x=\"800\" y=\"621\" type=\"curve\"/>\n      <point x=\"715\" y=\"614\" type=\"line\"/>\n      <point x=\"731\" y=\"483\"/>\n      <point x=\"738\" y=\"377\"/>\n      <point x=\"738\" y=\"262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"117\"/>\n      <point x=\"699\" y=\"91\"/>\n      <point x=\"590\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"91\"/>\n      <point x=\"474\" y=\"102\"/>\n      <point x=\"424\" y=\"153\" type=\"curve\"/>\n      <point x=\"389\" y=\"95\" type=\"line\"/>\n      <point x=\"432\" y=\"4\"/>\n      <point x=\"520\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"412\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"412\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"421\" y=\"945\" name=\"top\"/>\n  <anchor x=\"421\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-395\" y=\"-335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-93\" y=\"-335\"/>\n      <point x=\"74\" y=\"-241\"/>\n      <point x=\"74\" y=\"147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"74\" y=\"266\"/>\n      <point x=\"63\" y=\"445\"/>\n      <point x=\"51\" y=\"581\" type=\"curve\"/>\n      <point x=\"-41\" y=\"576\" type=\"line\"/>\n      <point x=\"-30\" y=\"434\"/>\n      <point x=\"-18\" y=\"284\"/>\n      <point x=\"-18\" y=\"133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-18\" y=\"-161\"/>\n      <point x=\"-111\" y=\"-241\"/>\n      <point x=\"-381\" y=\"-241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-668\" y=\"-241\"/>\n      <point x=\"-775\" y=\"-170\"/>\n      <point x=\"-775\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-775\" y=\"221\"/>\n      <point x=\"-749\" y=\"348\"/>\n      <point x=\"-731\" y=\"464\" type=\"curve\"/>\n      <point x=\"-817\" y=\"464\" type=\"line\"/>\n      <point x=\"-840\" y=\"343\"/>\n      <point x=\"-867\" y=\"215\"/>\n      <point x=\"-867\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-867\" y=\"-195\"/>\n      <point x=\"-750\" y=\"-335\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"-3\"/>\n      <point x=\"362\" y=\"9\"/>\n      <point x=\"392\" y=\"65\" type=\"curve\"/>\n      <point x=\"437\" y=\"65\" type=\"line\"/>\n      <point x=\"451\" y=\"95\"/>\n      <point x=\"460\" y=\"141\"/>\n      <point x=\"463\" y=\"188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"282\"/>\n      <point x=\"467\" y=\"464\"/>\n      <point x=\"462\" y=\"604\" type=\"curve\"/>\n      <point x=\"370\" y=\"601\" type=\"line\"/>\n      <point x=\"374\" y=\"452\"/>\n      <point x=\"377\" y=\"287\"/>\n      <point x=\"369\" y=\"188\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"121\"/>\n      <point x=\"325\" y=\"91\"/>\n      <point x=\"190\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"139\" y=\"91\"/>\n      <point x=\"90\" y=\"92\"/>\n      <point x=\"37\" y=\"101\" type=\"curve\"/>\n      <point x=\"12\" y=\"10\" type=\"line\"/>\n      <point x=\"56\" y=\"2\"/>\n      <point x=\"128\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"-3\"/>\n      <point x=\"744\" y=\"4\"/>\n      <point x=\"783\" y=\"65\" type=\"curve\"/>\n      <point x=\"816\" y=\"65\" type=\"line\"/>\n      <point x=\"829\" y=\"96\"/>\n      <point x=\"830\" y=\"103\"/>\n      <point x=\"830\" y=\"269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"373\"/>\n      <point x=\"826\" y=\"484\"/>\n      <point x=\"820\" y=\"621\" type=\"curve\"/>\n      <point x=\"728\" y=\"616\" type=\"line\"/>\n      <point x=\"734\" y=\"481\"/>\n      <point x=\"738\" y=\"377\"/>\n      <point x=\"738\" y=\"262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"117\"/>\n      <point x=\"709\" y=\"91\"/>\n      <point x=\"600\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"91\"/>\n      <point x=\"474\" y=\"102\"/>\n      <point x=\"424\" y=\"153\" type=\"curve\"/>\n      <point x=\"387\" y=\"91\" type=\"line\"/>\n      <point x=\"430\" y=\"20\"/>\n      <point x=\"520\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1264\" y=\"4\"/>\n      <point x=\"1264\" y=\"48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"78\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"91\"/>\n      <point x=\"830\" y=\"103\"/>\n      <point x=\"830\" y=\"269\" type=\"curve\"/>\n      <point x=\"772\" y=\"149\" type=\"line\"/>\n      <point x=\"790\" y=\"25\"/>\n      <point x=\"809\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"785\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"785\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"781\" y=\"945\" name=\"top\"/>\n  <anchor x=\"781\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"272\" y=\"-335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"-335\"/>\n      <point x=\"551\" y=\"-211\"/>\n      <point x=\"551\" y=\"147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"266\"/>\n      <point x=\"539\" y=\"447\"/>\n      <point x=\"528\" y=\"581\" type=\"curve\"/>\n      <point x=\"439\" y=\"576\" type=\"line\"/>\n      <point x=\"450\" y=\"416\"/>\n      <point x=\"459\" y=\"284\"/>\n      <point x=\"459\" y=\"133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"-161\"/>\n      <point x=\"396\" y=\"-241\"/>\n      <point x=\"276\" y=\"-241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"-241\"/>\n      <point x=\"122\" y=\"-180\"/>\n      <point x=\"122\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"122\" y=\"191\"/>\n      <point x=\"131\" y=\"311\"/>\n      <point x=\"146\" y=\"434\" type=\"curve\"/>\n      <point x=\"61\" y=\"434\" type=\"line\"/>\n      <point x=\"41\" y=\"313\"/>\n      <point x=\"30\" y=\"165\"/>\n      <point x=\"30\" y=\"39\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"30\" y=\"-215\"/>\n      <point x=\"97\" y=\"-335\"/>\n    </contour>\n    <contour>\n      <point x=\"617\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"-3\"/>\n      <point x=\"741\" y=\"7\"/>\n      <point x=\"762\" y=\"59\" type=\"curve\"/>\n      <point x=\"809\" y=\"59\" type=\"line\"/>\n      <point x=\"820\" y=\"89\"/>\n      <point x=\"829\" y=\"111\"/>\n      <point x=\"833\" y=\"168\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"272\"/>\n      <point x=\"837\" y=\"464\"/>\n      <point x=\"832\" y=\"604\" type=\"curve\"/>\n      <point x=\"740\" y=\"601\" type=\"line\"/>\n      <point x=\"744\" y=\"452\"/>\n      <point x=\"750\" y=\"255\"/>\n      <point x=\"741\" y=\"166\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"109\"/>\n      <point x=\"702\" y=\"91\"/>\n      <point x=\"627\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"91\"/>\n      <point x=\"557\" y=\"95\"/>\n      <point x=\"514\" y=\"102\" type=\"curve\"/>\n      <point x=\"493\" y=\"11\" type=\"line\"/>\n      <point x=\"527\" y=\"3\"/>\n      <point x=\"575\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"925\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"-3\"/>\n      <point x=\"1018\" y=\"13\"/>\n      <point x=\"1048\" y=\"60\" type=\"curve\"/>\n      <point x=\"1085\" y=\"60\" type=\"line\"/>\n      <point x=\"1108\" y=\"104\"/>\n      <point x=\"1120\" y=\"126\"/>\n      <point x=\"1120\" y=\"272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"376\"/>\n      <point x=\"1118\" y=\"482\"/>\n      <point x=\"1111\" y=\"621\" type=\"curve\"/>\n      <point x=\"1019\" y=\"616\" type=\"line\"/>\n      <point x=\"1025\" y=\"475\"/>\n      <point x=\"1028\" y=\"367\"/>\n      <point x=\"1028\" y=\"252\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"127\"/>\n      <point x=\"999\" y=\"91\"/>\n      <point x=\"920\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"91\"/>\n      <point x=\"831\" y=\"100\"/>\n      <point x=\"795\" y=\"139\" type=\"curve\"/>\n      <point x=\"759\" y=\"89\" type=\"line\"/>\n      <point x=\"793\" y=\"19\"/>\n      <point x=\"850\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1264\" y=\"4\"/>\n      <point x=\"1264\" y=\"48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"78\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1115\" y=\"91\"/>\n      <point x=\"1120\" y=\"126\"/>\n      <point x=\"1120\" y=\"272\" type=\"curve\"/>\n      <point x=\"1040\" y=\"149\" type=\"line\"/>\n      <point x=\"1058\" y=\"55\"/>\n      <point x=\"1069\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0633\"/>\n  <anchor x=\"785\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"785\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"781\" y=\"945\" name=\"top\"/>\n  <anchor x=\"781\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"272\" y=\"-335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"-335\"/>\n      <point x=\"551\" y=\"-211\"/>\n      <point x=\"551\" y=\"147\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"266\"/>\n      <point x=\"539\" y=\"447\"/>\n      <point x=\"528\" y=\"581\" type=\"curve\"/>\n      <point x=\"439\" y=\"576\" type=\"line\"/>\n      <point x=\"450\" y=\"416\"/>\n      <point x=\"459\" y=\"284\"/>\n      <point x=\"459\" y=\"133\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"-161\"/>\n      <point x=\"396\" y=\"-241\"/>\n      <point x=\"276\" y=\"-241\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"-241\"/>\n      <point x=\"122\" y=\"-180\"/>\n      <point x=\"122\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"122\" y=\"191\"/>\n      <point x=\"131\" y=\"311\"/>\n      <point x=\"146\" y=\"434\" type=\"curve\"/>\n      <point x=\"61\" y=\"434\" type=\"line\"/>\n      <point x=\"41\" y=\"313\"/>\n      <point x=\"30\" y=\"165\"/>\n      <point x=\"30\" y=\"39\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"30\" y=\"-215\"/>\n      <point x=\"97\" y=\"-335\"/>\n    </contour>\n    <contour>\n      <point x=\"617\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"-3\"/>\n      <point x=\"741\" y=\"7\"/>\n      <point x=\"762\" y=\"59\" type=\"curve\"/>\n      <point x=\"809\" y=\"59\" type=\"line\"/>\n      <point x=\"820\" y=\"89\"/>\n      <point x=\"829\" y=\"111\"/>\n      <point x=\"833\" y=\"168\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"272\"/>\n      <point x=\"837\" y=\"464\"/>\n      <point x=\"832\" y=\"604\" type=\"curve\"/>\n      <point x=\"740\" y=\"601\" type=\"line\"/>\n      <point x=\"744\" y=\"452\"/>\n      <point x=\"750\" y=\"255\"/>\n      <point x=\"741\" y=\"166\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"109\"/>\n      <point x=\"702\" y=\"91\"/>\n      <point x=\"627\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"91\"/>\n      <point x=\"557\" y=\"95\"/>\n      <point x=\"514\" y=\"102\" type=\"curve\"/>\n      <point x=\"493\" y=\"11\" type=\"line\"/>\n      <point x=\"527\" y=\"3\"/>\n      <point x=\"575\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"925\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"-3\"/>\n      <point x=\"1120\" y=\"71\"/>\n      <point x=\"1120\" y=\"272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"376\"/>\n      <point x=\"1112\" y=\"482\"/>\n      <point x=\"1090\" y=\"621\" type=\"curve\"/>\n      <point x=\"1005\" y=\"614\" type=\"line\"/>\n      <point x=\"1021\" y=\"483\"/>\n      <point x=\"1028\" y=\"377\"/>\n      <point x=\"1028\" y=\"262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"117\"/>\n      <point x=\"999\" y=\"91\"/>\n      <point x=\"920\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"880\" y=\"91\"/>\n      <point x=\"831\" y=\"100\"/>\n      <point x=\"795\" y=\"139\" type=\"curve\"/>\n      <point x=\"759\" y=\"89\" type=\"line\"/>\n      <point x=\"793\" y=\"19\"/>\n      <point x=\"850\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"654\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"654\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"672\" y=\"945\" name=\"top\"/>\n  <anchor x=\"672\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-9\" y=\"-3\" type=\"line\"/>\n      <point x=\"158\" y=\"-3\"/>\n      <point x=\"198\" y=\"29\"/>\n      <point x=\"227\" y=\"65\" type=\"curve\"/>\n      <point x=\"256\" y=\"66\" type=\"line\"/>\n      <point x=\"282\" y=\"99\"/>\n      <point x=\"289\" y=\"168\"/>\n      <point x=\"298\" y=\"267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"376\"/>\n      <point x=\"315\" y=\"467\"/>\n      <point x=\"322\" y=\"581\" type=\"curve\"/>\n      <point x=\"233\" y=\"579\" type=\"line\"/>\n      <point x=\"225\" y=\"459\"/>\n      <point x=\"219\" y=\"374\"/>\n      <point x=\"208\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"200\" y=\"131\"/>\n      <point x=\"175\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"458\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"-3\"/>\n      <point x=\"603\" y=\"9\"/>\n      <point x=\"643\" y=\"65\" type=\"curve\"/>\n      <point x=\"688\" y=\"65\" type=\"line\"/>\n      <point x=\"702\" y=\"95\"/>\n      <point x=\"711\" y=\"161\"/>\n      <point x=\"714\" y=\"208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"312\"/>\n      <point x=\"722\" y=\"474\"/>\n      <point x=\"720\" y=\"604\" type=\"curve\"/>\n      <point x=\"628\" y=\"601\" type=\"line\"/>\n      <point x=\"629\" y=\"462\"/>\n      <point x=\"627\" y=\"297\"/>\n      <point x=\"620\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"614\" y=\"118\"/>\n      <point x=\"575\" y=\"91\"/>\n      <point x=\"471\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"91\"/>\n      <point x=\"296\" y=\"111\"/>\n      <point x=\"253\" y=\"176\" type=\"curve\"/>\n      <point x=\"229\" y=\"88\" type=\"line\"/>\n      <point x=\"263\" y=\"23\"/>\n      <point x=\"366\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"856\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"-3\"/>\n      <point x=\"1081\" y=\"71\"/>\n      <point x=\"1081\" y=\"272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"376\"/>\n      <point x=\"1073\" y=\"482\"/>\n      <point x=\"1051\" y=\"621\" type=\"curve\"/>\n      <point x=\"966\" y=\"614\" type=\"line\"/>\n      <point x=\"982\" y=\"483\"/>\n      <point x=\"989\" y=\"377\"/>\n      <point x=\"989\" y=\"262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"989\" y=\"127\"/>\n      <point x=\"960\" y=\"91\"/>\n      <point x=\"861\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"91\"/>\n      <point x=\"723\" y=\"105\"/>\n      <point x=\"675\" y=\"155\" type=\"curve\"/>\n      <point x=\"640\" y=\"95\" type=\"line\"/>\n      <point x=\"683\" y=\"14\"/>\n      <point x=\"761\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seen-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"654\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"654\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"672\" y=\"945\" name=\"top\"/>\n  <anchor x=\"672\" y=\"695\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"458\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"-3\"/>\n      <point x=\"603\" y=\"9\"/>\n      <point x=\"643\" y=\"65\" type=\"curve\"/>\n      <point x=\"688\" y=\"65\" type=\"line\"/>\n      <point x=\"702\" y=\"95\"/>\n      <point x=\"711\" y=\"160\"/>\n      <point x=\"714\" y=\"207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"311\"/>\n      <point x=\"721\" y=\"474\"/>\n      <point x=\"720\" y=\"604\" type=\"curve\"/>\n      <point x=\"628\" y=\"601\" type=\"line\"/>\n      <point x=\"629\" y=\"462\"/>\n      <point x=\"629\" y=\"297\"/>\n      <point x=\"622\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"118\"/>\n      <point x=\"585\" y=\"91\"/>\n      <point x=\"471\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"91\"/>\n      <point x=\"296\" y=\"111\"/>\n      <point x=\"253\" y=\"176\" type=\"curve\"/>\n      <point x=\"229\" y=\"88\" type=\"line\"/>\n      <point x=\"263\" y=\"23\"/>\n      <point x=\"366\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"-9\" y=\"-3\" type=\"line\"/>\n      <point x=\"158\" y=\"-3\"/>\n      <point x=\"198\" y=\"29\"/>\n      <point x=\"227\" y=\"65\" type=\"curve\"/>\n      <point x=\"256\" y=\"66\" type=\"line\"/>\n      <point x=\"282\" y=\"99\"/>\n      <point x=\"289\" y=\"168\"/>\n      <point x=\"298\" y=\"267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"376\"/>\n      <point x=\"315\" y=\"467\"/>\n      <point x=\"322\" y=\"581\" type=\"curve\"/>\n      <point x=\"230\" y=\"579\" type=\"line\"/>\n      <point x=\"222\" y=\"459\"/>\n      <point x=\"216\" y=\"374\"/>\n      <point x=\"205\" y=\"233\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"197\" y=\"131\"/>\n      <point x=\"175\" y=\"91\"/>\n      <point x=\"0\" y=\"91\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"843\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"919\" y=\"-3\"/>\n      <point x=\"992\" y=\"4\"/>\n      <point x=\"1031\" y=\"65\" type=\"curve\"/>\n      <point x=\"1064\" y=\"65\" type=\"line\"/>\n      <point x=\"1072\" y=\"86\"/>\n      <point x=\"1078\" y=\"123\"/>\n      <point x=\"1078\" y=\"269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1078\" y=\"373\"/>\n      <point x=\"1077\" y=\"484\"/>\n      <point x=\"1072\" y=\"621\" type=\"curve\"/>\n      <point x=\"980\" y=\"616\" type=\"line\"/>\n      <point x=\"984\" y=\"481\"/>\n      <point x=\"986\" y=\"377\"/>\n      <point x=\"986\" y=\"262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"986\" y=\"127\"/>\n      <point x=\"967\" y=\"91\"/>\n      <point x=\"848\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"91\"/>\n      <point x=\"722\" y=\"102\"/>\n      <point x=\"672\" y=\"153\" type=\"curve\"/>\n      <point x=\"636\" y=\"91\" type=\"line\"/>\n      <point x=\"679\" y=\"20\"/>\n      <point x=\"768\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1236\" y=\"-3\"/>\n      <point x=\"1264\" y=\"4\"/>\n      <point x=\"1264\" y=\"48\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1264\" y=\"78\"/>\n      <point x=\"1251\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"91\"/>\n      <point x=\"1078\" y=\"123\"/>\n      <point x=\"1078\" y=\"269\" type=\"curve\"/>\n      <point x=\"1020\" y=\"149\" type=\"line\"/>\n      <point x=\"1038\" y=\"25\"/>\n      <point x=\"1087\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-179\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-190\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-190\" yOffset=\"-24\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-179\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"183\" yOffset=\"-24\"/>\n    <component base=\"dotabove-ar\" xOffset=\"181\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069A\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"181\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"183\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"415\" y=\"-118\" angle=\"0\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"52\" yOffset=\"-24\"/>\n    <component base=\"dotabove-ar\" xOffset=\"72\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenDotbelowDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"-1576\" y=\"-118\" angle=\"0\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"52\" yOffset=\"-24\"/>\n    <component base=\"dotabove-ar\" xOffset=\"72\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"four-persian.small01\" xOffset=\"-199\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"four-persian.small01\" xOffset=\"-199\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"four-persian.small01\" xOffset=\"161\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077D\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"four-persian.small01\" xOffset=\"161\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"four-persian.small01\" xOffset=\"52\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.init</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.init</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"four-persian.small01\" xOffset=\"52\" yOffset=\"-409\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.medi</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.medi</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-179\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-179\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"181\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"075C\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"181\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"654\" y=\"-141\" name=\"bottom\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"72\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenFourdotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"72\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"_twodotstah\" xOffset=\"-179\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"_twodotstah\" xOffset=\"-179\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"_twodotstah\" xOffset=\"181\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0770\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"_twodotstah\" xOffset=\"181\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"_twodotstah\" xOffset=\"72\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTahTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"_twodotstah\" xOffset=\"72\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_twodotstah</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seen-ar.medi</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seen-ar.medi</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-188\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-188\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"183\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069B\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"183\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"52\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"52\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-179\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-188\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-179\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-188\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"181\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"185\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069C\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"181\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"183\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"72\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"54\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenThreedotsbelowthreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"72\" yOffset=\"153\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"54\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotshorizontalabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotshorizontalabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"181\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"076D\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"181\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotshorizontalabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotshorizontalabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"72\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotshorizontalabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotshorizontalabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"72\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotsverticalabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotsverticalabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-179\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotsverticalabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenTwodotsverticalabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-179\" yOffset=\"133\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-179\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-179\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"181\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077E\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"181\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"72\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seenVinvertedabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"72\" yOffset=\"163\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit0.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit0\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF0\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit1\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF1\"/>\n  <outline>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF2\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF3\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF4\"/>\n  <outline>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF5\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF6\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF7\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit8\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF8\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"610\" type=\"line\"/>\n      <point x=\"370\" y=\"495\" type=\"line\"/>\n      <point x=\"370\" y=\"330\" type=\"line\"/>\n      <point x=\"255\" y=\"215\" type=\"line\"/>\n      <point x=\"140\" y=\"330\" type=\"line\"/>\n      <point x=\"140\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit9.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"segmentedDigit9\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBF9\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"1420\" type=\"line\"/>\n      <point x=\"730\" y=\"1420\" type=\"line\"/>\n      <point x=\"845\" y=\"1305\" type=\"line\"/>\n      <point x=\"730\" y=\"1190\" type=\"line\"/>\n      <point x=\"470\" y=\"1190\" type=\"line\"/>\n      <point x=\"355\" y=\"1305\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"1205\" type=\"line\"/>\n      <point x=\"370\" y=\"1090\" type=\"line\"/>\n      <point x=\"370\" y=\"925\" type=\"line\"/>\n      <point x=\"255\" y=\"810\" type=\"line\"/>\n      <point x=\"140\" y=\"925\" type=\"line\"/>\n      <point x=\"140\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"1205\" type=\"line\"/>\n      <point x=\"1060\" y=\"1090\" type=\"line\"/>\n      <point x=\"1060\" y=\"925\" type=\"line\"/>\n      <point x=\"945\" y=\"810\" type=\"line\"/>\n      <point x=\"830\" y=\"925\" type=\"line\"/>\n      <point x=\"830\" y=\"1090\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"825\" type=\"line\"/>\n      <point x=\"730\" y=\"825\" type=\"line\"/>\n      <point x=\"845\" y=\"710\" type=\"line\"/>\n      <point x=\"730\" y=\"595\" type=\"line\"/>\n      <point x=\"470\" y=\"595\" type=\"line\"/>\n      <point x=\"355\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"945\" y=\"610\" type=\"line\"/>\n      <point x=\"1060\" y=\"495\" type=\"line\"/>\n      <point x=\"1060\" y=\"330\" type=\"line\"/>\n      <point x=\"945\" y=\"215\" type=\"line\"/>\n      <point x=\"830\" y=\"330\" type=\"line\"/>\n      <point x=\"830\" y=\"495\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"470\" y=\"230\" type=\"line\"/>\n      <point x=\"730\" y=\"230\" type=\"line\"/>\n      <point x=\"845\" y=\"115\" type=\"line\"/>\n      <point x=\"730\" y=\"0\" type=\"line\"/>\n      <point x=\"470\" y=\"0\" type=\"line\"/>\n      <point x=\"355\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/semicolon-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"semicolon-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"061B\"/>\n  <outline>\n    <component base=\"period\"/>\n    <component base=\"comma-ar\" yOffset=\"509\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/semicolon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"semicolon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003B\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"881\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"881\"/>\n      <point x=\"700\" y=\"925\"/>\n      <point x=\"700\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1035\"/>\n      <point x=\"655\" y=\"1080\"/>\n      <point x=\"600\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"1080\"/>\n      <point x=\"500\" y=\"1035\"/>\n      <point x=\"500\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"925\"/>\n      <point x=\"545\" y=\"881\"/>\n    </contour>\n    <component base=\"comma\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/semicolon_semicolon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"semicolon_semicolon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"semicolon\" xOffset=\"166\"/>\n    <component base=\"semicolon\" xOffset=\"1084\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0667\"/>\n  <outline>\n    <contour>\n      <point x=\"555\" y=\"0\" type=\"curve\"/>\n      <point x=\"654\" y=\"0\" type=\"line\"/>\n      <point x=\"797\" y=\"471\"/>\n      <point x=\"991\" y=\"1039\"/>\n      <point x=\"1126\" y=\"1411\" type=\"curve\"/>\n      <point x=\"1032\" y=\"1440\" type=\"line\"/>\n      <point x=\"899\" y=\"1057\"/>\n      <point x=\"704\" y=\"485\"/>\n      <point x=\"602\" y=\"94\" type=\"curve\"/>\n      <point x=\"659\" y=\"104\" type=\"line\"/>\n      <point x=\"670\" y=\"141\" type=\"line\"/>\n      <point x=\"599\" y=\"141\" type=\"line\"/>\n      <point x=\"515\" y=\"470\"/>\n      <point x=\"317\" y=\"1053\"/>\n      <point x=\"167\" y=\"1440\" type=\"curve\"/>\n      <point x=\"74\" y=\"1409\" type=\"line\"/>\n      <point x=\"231\" y=\"1026\"/>\n      <point x=\"449\" y=\"364\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eight-arinferior\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1151\" yOffset=\"632\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>eight-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seven-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F7\"/>\n  <outline>\n    <component base=\"seven-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>seven-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>seven-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persian.urdu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persian.urdu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"668\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"-3\"/>\n      <point x=\"941\" y=\"10\"/>\n      <point x=\"1058\" y=\"35\" type=\"curve\"/>\n      <point x=\"1062\" y=\"121\" type=\"line\"/>\n      <point x=\"951\" y=\"106\"/>\n      <point x=\"823\" y=\"91\"/>\n      <point x=\"690\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"91\"/>\n      <point x=\"242\" y=\"154\"/>\n      <point x=\"242\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"559\"/>\n      <point x=\"489\" y=\"964\"/>\n      <point x=\"778\" y=\"1376\" type=\"curve\"/>\n      <point x=\"699\" y=\"1430\" type=\"line\"/>\n      <point x=\"395\" y=\"997\"/>\n      <point x=\"150\" y=\"571\"/>\n      <point x=\"150\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"150\"/>\n      <point x=\"241\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persian.urduinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persian.urduinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"-6\"/>\n      <point x=\"759\" y=\"2\"/>\n      <point x=\"830\" y=\"11\" type=\"curve\"/>\n      <point x=\"836\" y=\"102\" type=\"line\"/>\n      <point x=\"771\" y=\"95\"/>\n      <point x=\"703\" y=\"88\"/>\n      <point x=\"626\" y=\"88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"88\"/>\n      <point x=\"448\" y=\"109\"/>\n      <point x=\"448\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"260\"/>\n      <point x=\"555\" y=\"452\"/>\n      <point x=\"647\" y=\"603\" type=\"curve\"/>\n      <point x=\"563\" y=\"640\" type=\"line\"/>\n      <point x=\"476\" y=\"495\"/>\n      <point x=\"354\" y=\"291\"/>\n      <point x=\"354\" y=\"158\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"29\"/>\n      <point x=\"443\" y=\"-6\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persian.urdusuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persian.urdusuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seven-persian.urduinferior\" yOffset=\"799\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seven-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>seven-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seven-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>seven-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sevensuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0037\"/>\n  <outline>\n    <contour>\n      <point x=\"552\" y=\"0\" type=\"line\"/>\n      <point x=\"650\" y=\"0\" type=\"line\"/>\n      <point x=\"1110\" y=\"1420\" type=\"line\"/>\n      <point x=\"1012\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"116\" y=\"982\" type=\"line\"/>\n      <point x=\"210\" y=\"982\" type=\"line\"/>\n      <point x=\"210\" y=\"1390\" type=\"line\"/>\n      <point x=\"116\" y=\"1390\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"116\" y=\"1330\" type=\"line\"/>\n      <point x=\"1048\" y=\"1330\" type=\"line\"/>\n      <point x=\"1110\" y=\"1420\" type=\"line\"/>\n      <point x=\"116\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seven.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seven.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sevensuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seveneighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seveneighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"601\" y=\"639\" type=\"line\"/>\n      <point x=\"547\" y=\"714\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"653\" y=\"678\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"599\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"sevensuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seveneighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seveneighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215E\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <component base=\"sevensuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/seveninferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"seveninferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2087\"/>\n  <outline>\n    <component base=\"sevensuperior\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sevensuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sevensuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2077\"/>\n  <outline>\n    <contour>\n      <point x=\"566\" y=\"802\" type=\"line\"/>\n      <point x=\"666\" y=\"802\" type=\"line\"/>\n      <point x=\"848\" y=\"1420\" type=\"line\"/>\n      <point x=\"748\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"351\" y=\"1125\" type=\"line\"/>\n      <point x=\"441\" y=\"1125\" type=\"line\"/>\n      <point x=\"441\" y=\"1406\" type=\"line\"/>\n      <point x=\"351\" y=\"1406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"351\" y=\"1330\" type=\"line\"/>\n      <point x=\"785\" y=\"1330\" type=\"line\"/>\n      <point x=\"848\" y=\"1420\" type=\"line\"/>\n      <point x=\"351\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0448\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"970\" y=\"0\" type=\"line\"/>\n      <point x=\"1064\" y=\"0\" type=\"line\"/>\n      <point x=\"1064\" y=\"1060\" type=\"line\"/>\n      <point x=\"970\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"176\" y=\"0\" type=\"line\"/>\n      <point x=\"1024\" y=\"0\" type=\"line\"/>\n      <point x=\"1024\" y=\"90\" type=\"line\"/>\n      <point x=\"176\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"136\" y=\"0\" type=\"line\"/>\n      <point x=\"230\" y=\"0\" type=\"line\"/>\n      <point x=\"230\" y=\"1060\" type=\"line\"/>\n      <point x=\"136\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"552\" y=\"0\" type=\"line\"/>\n      <point x=\"646\" y=\"0\" type=\"line\"/>\n      <point x=\"646\" y=\"1060\" type=\"line\"/>\n      <point x=\"552\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sha-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sha-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"363\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"-20\"/>\n      <point x=\"544\" y=\"39\"/>\n      <point x=\"569\" y=\"144\" type=\"curve\"/>\n      <point x=\"573\" y=\"144\" type=\"line\"/>\n      <point x=\"596\" y=\"38\"/>\n      <point x=\"672\" y=\"-20\"/>\n      <point x=\"767\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"-20\"/>\n      <point x=\"945\" y=\"39\"/>\n      <point x=\"970\" y=\"144\" type=\"curve\"/>\n      <point x=\"975\" y=\"144\" type=\"line\"/>\n      <point x=\"986\" y=\"-10\" type=\"line\"/>\n      <point x=\"1064\" y=\"-4\" type=\"line\"/>\n      <point x=\"1064\" y=\"1060\" type=\"line\"/>\n      <point x=\"968\" y=\"1060\" type=\"line\"/>\n      <point x=\"968\" y=\"260\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"134\"/>\n      <point x=\"915\" y=\"72\"/>\n      <point x=\"804\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"72\"/>\n      <point x=\"647\" y=\"134\"/>\n      <point x=\"647\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1060\" type=\"line\"/>\n      <point x=\"553\" y=\"1060\" type=\"line\"/>\n      <point x=\"553\" y=\"270\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"127\"/>\n      <point x=\"496\" y=\"72\"/>\n      <point x=\"387\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"282\" y=\"72\"/>\n      <point x=\"230\" y=\"134\"/>\n      <point x=\"230\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"230\" y=\"1060\" type=\"line\"/>\n      <point x=\"136\" y=\"1060\" type=\"line\"/>\n      <point x=\"136\" y=\"260\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"73\"/>\n      <point x=\"211\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shadda-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadda-ar\" format=\"2\">\n  <unicode hex=\"0651\"/>\n  <anchor x=\"611\" y=\"1092\" name=\"_top\"/>\n  <anchor x=\"592\" y=\"1485\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"480\" y=\"1152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1152\"/>\n      <point x=\"622\" y=\"1208\"/>\n      <point x=\"622\" y=\"1327\" type=\"curve\"/>\n      <point x=\"593\" y=\"1322\" type=\"line\"/>\n      <point x=\"593\" y=\"1238\"/>\n      <point x=\"642\" y=\"1206\"/>\n      <point x=\"694\" y=\"1206\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"771\" y=\"1206\"/>\n      <point x=\"827\" y=\"1261\"/>\n      <point x=\"827\" y=\"1371\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"1416\"/>\n      <point x=\"820\" y=\"1467\"/>\n      <point x=\"810\" y=\"1510\" type=\"curve\"/>\n      <point x=\"740\" y=\"1487\" type=\"line\"/>\n      <point x=\"743\" y=\"1449\"/>\n      <point x=\"747\" y=\"1420\"/>\n      <point x=\"747\" y=\"1373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"1318\"/>\n      <point x=\"730\" y=\"1295\"/>\n      <point x=\"685\" y=\"1295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"649\" y=\"1295\"/>\n      <point x=\"643\" y=\"1321\"/>\n      <point x=\"642\" y=\"1369\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"1460\" type=\"line\"/>\n      <point x=\"565\" y=\"1440\" type=\"line\"/>\n      <point x=\"563\" y=\"1355\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"1271\"/>\n      <point x=\"538\" y=\"1247\"/>\n      <point x=\"497\" y=\"1247\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"1247\"/>\n      <point x=\"454\" y=\"1269\"/>\n      <point x=\"454\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"1351\"/>\n      <point x=\"456\" y=\"1380\"/>\n      <point x=\"458\" y=\"1414\" type=\"curve\"/>\n      <point x=\"383\" y=\"1391\" type=\"line\"/>\n      <point x=\"377\" y=\"1358\"/>\n      <point x=\"374\" y=\"1320\"/>\n      <point x=\"374\" y=\"1295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"1201\"/>\n      <point x=\"408\" y=\"1152\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shadedark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadedark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2593\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"926\" type=\"line\"/>\n      <point x=\"1200\" y=\"2126\" type=\"line\"/>\n      <point x=\"1200\" y=\"2166\" type=\"line\"/>\n      <point x=\"0\" y=\"966\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-480\" type=\"line\"/>\n      <point x=\"94\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"154\" y=\"-480\" type=\"line\"/>\n      <point x=\"194\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"526\" type=\"line\"/>\n      <point x=\"1200\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"254\" y=\"-480\" type=\"line\"/>\n      <point x=\"294\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"354\" y=\"-480\" type=\"line\"/>\n      <point x=\"394\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"326\" type=\"line\"/>\n      <point x=\"1200\" y=\"366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"-480\" type=\"line\"/>\n      <point x=\"494\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"-480\" type=\"line\"/>\n      <point x=\"594\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"126\" type=\"line\"/>\n      <point x=\"1200\" y=\"166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"654\" y=\"-480\" type=\"line\"/>\n      <point x=\"694\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"754\" y=\"-480\" type=\"line\"/>\n      <point x=\"794\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-74\" type=\"line\"/>\n      <point x=\"1200\" y=\"-34\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"-480\" type=\"line\"/>\n      <point x=\"894\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"954\" y=\"-480\" type=\"line\"/>\n      <point x=\"994\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-274\" type=\"line\"/>\n      <point x=\"1200\" y=\"-234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1054\" y=\"-480\" type=\"line\"/>\n      <point x=\"1094\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1154\" y=\"-480\" type=\"line\"/>\n      <point x=\"1194\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-474\" type=\"line\"/>\n      <point x=\"1200\" y=\"-434\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-474\" type=\"line\"/>\n      <point x=\"1200\" y=\"726\" type=\"line\"/>\n      <point x=\"1200\" y=\"766\" type=\"line\"/>\n      <point x=\"0\" y=\"-434\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"866\" type=\"line\"/>\n      <point x=\"0\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-274\" type=\"line\"/>\n      <point x=\"1200\" y=\"926\" type=\"line\"/>\n      <point x=\"1200\" y=\"966\" type=\"line\"/>\n      <point x=\"0\" y=\"-234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"1066\" type=\"line\"/>\n      <point x=\"0\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-74\" type=\"line\"/>\n      <point x=\"1200\" y=\"1126\" type=\"line\"/>\n      <point x=\"1200\" y=\"1166\" type=\"line\"/>\n      <point x=\"0\" y=\"-34\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"1226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1266\" type=\"line\"/>\n      <point x=\"0\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"126\" type=\"line\"/>\n      <point x=\"1200\" y=\"1326\" type=\"line\"/>\n      <point x=\"1200\" y=\"1366\" type=\"line\"/>\n      <point x=\"0\" y=\"166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1466\" type=\"line\"/>\n      <point x=\"0\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"326\" type=\"line\"/>\n      <point x=\"1200\" y=\"1526\" type=\"line\"/>\n      <point x=\"1200\" y=\"1566\" type=\"line\"/>\n      <point x=\"0\" y=\"366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1666\" type=\"line\"/>\n      <point x=\"0\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"526\" type=\"line\"/>\n      <point x=\"1200\" y=\"1726\" type=\"line\"/>\n      <point x=\"1200\" y=\"1766\" type=\"line\"/>\n      <point x=\"0\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1826\" type=\"line\"/>\n      <point x=\"1200\" y=\"1866\" type=\"line\"/>\n      <point x=\"0\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"726\" type=\"line\"/>\n      <point x=\"1200\" y=\"1926\" type=\"line\"/>\n      <point x=\"1200\" y=\"1966\" type=\"line\"/>\n      <point x=\"0\" y=\"766\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"2026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2066\" type=\"line\"/>\n      <point x=\"0\" y=\"866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"2126\" type=\"line\"/>\n      <point x=\"100\" y=\"2226\" type=\"line\"/>\n      <point x=\"60\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"2026\" type=\"line\"/>\n      <point x=\"200\" y=\"2226\" type=\"line\"/>\n      <point x=\"160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2066\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1926\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"260\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1966\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1826\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"360\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1726\" type=\"line\"/>\n      <point x=\"500\" y=\"2226\" type=\"line\"/>\n      <point x=\"460\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1766\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1626\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"560\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1526\" type=\"line\"/>\n      <point x=\"700\" y=\"2226\" type=\"line\"/>\n      <point x=\"660\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1426\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"760\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1326\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"860\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1366\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1226\" type=\"line\"/>\n      <point x=\"1000\" y=\"2226\" type=\"line\"/>\n      <point x=\"960\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1126\" type=\"line\"/>\n      <point x=\"1100\" y=\"2226\" type=\"line\"/>\n      <point x=\"1060\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1166\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1066\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shadedark.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadedark.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"600\" type=\"line\"/>\n      <point x=\"1200\" y=\"1800\" type=\"line\"/>\n      <point x=\"1200\" y=\"1840\" type=\"line\"/>\n      <point x=\"0\" y=\"640\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"80\" y=\"-480\" type=\"line\"/>\n      <point x=\"120\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"600\" type=\"line\"/>\n      <point x=\"1200\" y=\"640\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"-480\" type=\"line\"/>\n      <point x=\"220\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"-480\" type=\"line\"/>\n      <point x=\"320\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"400\" type=\"line\"/>\n      <point x=\"1200\" y=\"440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"-480\" type=\"line\"/>\n      <point x=\"420\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"480\" y=\"-480\" type=\"line\"/>\n      <point x=\"520\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"200\" type=\"line\"/>\n      <point x=\"1200\" y=\"240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"-480\" type=\"line\"/>\n      <point x=\"620\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"680\" y=\"-480\" type=\"line\"/>\n      <point x=\"720\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"0\" type=\"line\"/>\n      <point x=\"1200\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"-480\" type=\"line\"/>\n      <point x=\"820\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"880\" y=\"-480\" type=\"line\"/>\n      <point x=\"920\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-200\" type=\"line\"/>\n      <point x=\"1200\" y=\"-160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"980\" y=\"-480\" type=\"line\"/>\n      <point x=\"1020\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1080\" y=\"-480\" type=\"line\"/>\n      <point x=\"1120\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-400\" type=\"line\"/>\n      <point x=\"1200\" y=\"-360\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1180\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"740\" type=\"line\"/>\n      <point x=\"0\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-400\" type=\"line\"/>\n      <point x=\"1200\" y=\"800\" type=\"line\"/>\n      <point x=\"1200\" y=\"840\" type=\"line\"/>\n      <point x=\"0\" y=\"-360\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"900\" type=\"line\"/>\n      <point x=\"1200\" y=\"940\" type=\"line\"/>\n      <point x=\"0\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-200\" type=\"line\"/>\n      <point x=\"1200\" y=\"1000\" type=\"line\"/>\n      <point x=\"1200\" y=\"1040\" type=\"line\"/>\n      <point x=\"0\" y=\"-160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1140\" type=\"line\"/>\n      <point x=\"0\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"0\" type=\"line\"/>\n      <point x=\"1200\" y=\"1200\" type=\"line\"/>\n      <point x=\"1200\" y=\"1240\" type=\"line\"/>\n      <point x=\"0\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1340\" type=\"line\"/>\n      <point x=\"0\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"200\" type=\"line\"/>\n      <point x=\"1200\" y=\"1400\" type=\"line\"/>\n      <point x=\"1200\" y=\"1440\" type=\"line\"/>\n      <point x=\"0\" y=\"240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1540\" type=\"line\"/>\n      <point x=\"0\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"400\" type=\"line\"/>\n      <point x=\"1200\" y=\"1600\" type=\"line\"/>\n      <point x=\"1200\" y=\"1640\" type=\"line\"/>\n      <point x=\"0\" y=\"440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1740\" type=\"line\"/>\n      <point x=\"0\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1800\" type=\"line\"/>\n      <point x=\"100\" y=\"1900\" type=\"line\"/>\n      <point x=\"60\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1840\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1700\" type=\"line\"/>\n      <point x=\"200\" y=\"1900\" type=\"line\"/>\n      <point x=\"160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1600\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"260\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1640\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1500\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"360\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1400\" type=\"line\"/>\n      <point x=\"500\" y=\"1900\" type=\"line\"/>\n      <point x=\"460\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1300\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"560\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1200\" type=\"line\"/>\n      <point x=\"700\" y=\"1900\" type=\"line\"/>\n      <point x=\"660\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1240\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1100\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"760\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1000\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"860\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1040\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"900\" type=\"line\"/>\n      <point x=\"1000\" y=\"1900\" type=\"line\"/>\n      <point x=\"960\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"940\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"800\" type=\"line\"/>\n      <point x=\"1100\" y=\"1900\" type=\"line\"/>\n      <point x=\"1060\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"840\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shadelight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadelight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2591\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1826\" type=\"line\"/>\n      <point x=\"1200\" y=\"1866\" type=\"line\"/>\n      <point x=\"0\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-480\" type=\"line\"/>\n      <point x=\"94\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"-480\" type=\"line\"/>\n      <point x=\"494\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"-480\" type=\"line\"/>\n      <point x=\"894\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"1066\" type=\"line\"/>\n      <point x=\"0\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1466\" type=\"line\"/>\n      <point x=\"0\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1826\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"360\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1426\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"760\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1066\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shadelight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shadelight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1540\" type=\"line\"/>\n      <point x=\"0\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"-480\" type=\"line\"/>\n      <point x=\"420\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"-480\" type=\"line\"/>\n      <point x=\"820\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1180\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"740\" type=\"line\"/>\n      <point x=\"0\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1140\" type=\"line\"/>\n      <point x=\"0\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1500\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"360\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1100\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"760\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shademedium.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shademedium\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2592\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"2026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2066\" type=\"line\"/>\n      <point x=\"0\" y=\"866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"54\" y=\"-480\" type=\"line\"/>\n      <point x=\"94\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"254\" y=\"-480\" type=\"line\"/>\n      <point x=\"294\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"-480\" type=\"line\"/>\n      <point x=\"494\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"654\" y=\"-480\" type=\"line\"/>\n      <point x=\"694\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"854\" y=\"-480\" type=\"line\"/>\n      <point x=\"894\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1054\" y=\"-480\" type=\"line\"/>\n      <point x=\"1094\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-374\" type=\"line\"/>\n      <point x=\"1200\" y=\"826\" type=\"line\"/>\n      <point x=\"1200\" y=\"866\" type=\"line\"/>\n      <point x=\"0\" y=\"-334\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-174\" type=\"line\"/>\n      <point x=\"1200\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"1066\" type=\"line\"/>\n      <point x=\"0\" y=\"-134\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"26\" type=\"line\"/>\n      <point x=\"1200\" y=\"1226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1266\" type=\"line\"/>\n      <point x=\"0\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1466\" type=\"line\"/>\n      <point x=\"0\" y=\"266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"426\" type=\"line\"/>\n      <point x=\"1200\" y=\"1626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1666\" type=\"line\"/>\n      <point x=\"0\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"626\" type=\"line\"/>\n      <point x=\"1200\" y=\"1826\" type=\"line\"/>\n      <point x=\"1200\" y=\"1866\" type=\"line\"/>\n      <point x=\"0\" y=\"666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"2026\" type=\"line\"/>\n      <point x=\"200\" y=\"2226\" type=\"line\"/>\n      <point x=\"160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2066\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1826\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"360\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1866\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1626\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"560\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1666\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1426\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"760\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1226\" type=\"line\"/>\n      <point x=\"1000\" y=\"2226\" type=\"line\"/>\n      <point x=\"960\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1266\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1026\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1160\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"1066\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shademedium.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shademedium.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1740\" type=\"line\"/>\n      <point x=\"0\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"180\" y=\"-480\" type=\"line\"/>\n      <point x=\"220\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"500\" type=\"line\"/>\n      <point x=\"1200\" y=\"540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"380\" y=\"-480\" type=\"line\"/>\n      <point x=\"420\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"580\" y=\"-480\" type=\"line\"/>\n      <point x=\"620\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"780\" y=\"-480\" type=\"line\"/>\n      <point x=\"820\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"980\" y=\"-480\" type=\"line\"/>\n      <point x=\"1020\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1180\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"20\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"740\" type=\"line\"/>\n      <point x=\"0\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-300\" type=\"line\"/>\n      <point x=\"1200\" y=\"900\" type=\"line\"/>\n      <point x=\"1200\" y=\"940\" type=\"line\"/>\n      <point x=\"0\" y=\"-260\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1140\" type=\"line\"/>\n      <point x=\"0\" y=\"-60\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"100\" type=\"line\"/>\n      <point x=\"1200\" y=\"1300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1340\" type=\"line\"/>\n      <point x=\"0\" y=\"140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"300\" type=\"line\"/>\n      <point x=\"1200\" y=\"1500\" type=\"line\"/>\n      <point x=\"1200\" y=\"1540\" type=\"line\"/>\n      <point x=\"0\" y=\"340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1700\" type=\"line\"/>\n      <point x=\"200\" y=\"1900\" type=\"line\"/>\n      <point x=\"160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1500\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"360\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1540\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1300\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"560\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"1100\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"760\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1140\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"900\" type=\"line\"/>\n      <point x=\"1000\" y=\"1900\" type=\"line\"/>\n      <point x=\"960\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"940\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"700\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1160\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shcha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shcha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0449\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"974\" y=\"0\" type=\"line\"/>\n      <point x=\"1068\" y=\"0\" type=\"line\"/>\n      <point x=\"1068\" y=\"1060\" type=\"line\"/>\n      <point x=\"974\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"178\" y=\"0\" type=\"line\"/>\n      <point x=\"1051\" y=\"0\" type=\"line\"/>\n      <point x=\"1051\" y=\"90\" type=\"line\"/>\n      <point x=\"178\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"136\" y=\"0\" type=\"line\"/>\n      <point x=\"230\" y=\"0\" type=\"line\"/>\n      <point x=\"230\" y=\"1060\" type=\"line\"/>\n      <point x=\"136\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1040\" y=\"-270\" type=\"line\"/>\n      <point x=\"1134\" y=\"-270\" type=\"line\"/>\n      <point x=\"1134\" y=\"90\" type=\"line\"/>\n      <point x=\"1040\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"542\" y=\"0\" type=\"line\"/>\n      <point x=\"636\" y=\"0\" type=\"line\"/>\n      <point x=\"636\" y=\"1060\" type=\"line\"/>\n      <point x=\"542\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shcha-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shcha-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1034\" y=\"-270\" type=\"line\"/>\n      <point x=\"1130\" y=\"-270\" type=\"line\"/>\n      <point x=\"1130\" y=\"90\" type=\"line\"/>\n      <point x=\"1034\" y=\"90\" type=\"line\"/>\n    </contour>\n    <component base=\"sha-cy.loclBGR\" xOffset=\"-30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-179\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-179\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"181\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0634\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"181\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"72\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheen-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"72\" yOffset=\"153\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-179\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-190\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-179\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-190\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"181\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"183\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FA\"/>\n  <outline>\n    <component base=\"seen-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"181\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"183\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"72\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"52\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheenDotbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"seen-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"72\" yOffset=\"153\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"52\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sheqel.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sheqel\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AA\"/>\n  <outline>\n    <contour>\n      <point x=\"618\" y=\"-19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"-19\"/>\n      <point x=\"1096\" y=\"113\"/>\n      <point x=\"1096\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1096\" y=\"1200\" type=\"line\"/>\n      <point x=\"997\" y=\"1200\" type=\"line\"/>\n      <point x=\"997\" y=\"610\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"150\"/>\n      <point x=\"816\" y=\"80\"/>\n      <point x=\"612\" y=\"80\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"80\"/>\n      <point x=\"447\" y=\"95\"/>\n      <point x=\"430\" y=\"99\" type=\"curve\"/>\n      <point x=\"390\" y=\"0\" type=\"line\"/>\n      <point x=\"421\" y=\"-6\"/>\n      <point x=\"503\" y=\"-19\"/>\n    </contour>\n    <contour>\n      <point x=\"86\" y=\"0\" type=\"line\"/>\n      <point x=\"185\" y=\"0\" type=\"line\"/>\n      <point x=\"185\" y=\"820\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"185\" y=\"929\"/>\n      <point x=\"189\" y=\"1101\"/>\n      <point x=\"327\" y=\"1101\" type=\"curve\"/>\n      <point x=\"168\" y=\"1171\" type=\"line\"/>\n      <point x=\"168\" y=\"1094\" type=\"line\"/>\n      <point x=\"120\" y=\"1065\"/>\n      <point x=\"86\" y=\"978\"/>\n      <point x=\"86\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"390\" y=\"0\" type=\"line\"/>\n      <point x=\"489\" y=\"0\" type=\"line\"/>\n      <point x=\"489\" y=\"904\" type=\"line\"/>\n      <point x=\"390\" y=\"904\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"695\" y=\"376\" type=\"line\"/>\n      <point x=\"794\" y=\"376\" type=\"line\"/>\n      <point x=\"794\" y=\"957\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"1119\"/>\n      <point x=\"721\" y=\"1200\"/>\n      <point x=\"559\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"225\" y=\"1200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1200\"/>\n      <point x=\"133\" y=\"1230\"/>\n      <point x=\"103\" y=\"1253\" type=\"curve\"/>\n      <point x=\"49\" y=\"1174\" type=\"line\"/>\n      <point x=\"86\" y=\"1143\"/>\n      <point x=\"127\" y=\"1101\"/>\n      <point x=\"204\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"1101\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"1101\"/>\n      <point x=\"695\" y=\"1045\"/>\n      <point x=\"695\" y=\"925\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04BB\"/>\n  <outline>\n    <component base=\"h\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shiftI_nC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftInControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240F\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"I.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>I.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shiftI_nC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftInControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"570\"/>\n      <point x=\"740\" y=\"626\"/>\n      <point x=\"740\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"794\"/>\n      <point x=\"684\" y=\"850\"/>\n      <point x=\"600\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"850\"/>\n      <point x=\"460\" y=\"794\"/>\n      <point x=\"460\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"626\"/>\n      <point x=\"516\" y=\"570\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shiftO_utC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftOutControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240E\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"O.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>O.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shiftO_utC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shiftOutControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"934\" y=\"309\" type=\"line\"/>\n      <point x=\"997\" y=\"365\" type=\"line\"/>\n      <point x=\"246\" y=\"1086\" type=\"line\"/>\n      <point x=\"183\" y=\"1028\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"266\" y=\"309\" type=\"line\"/>\n      <point x=\"1009\" y=\"1021\" type=\"line\"/>\n      <point x=\"946\" y=\"1079\" type=\"line\"/>\n      <point x=\"203\" y=\"365\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shin-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shin-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E9\"/>\n  <anchor x=\"634\" y=\"360\" name=\"center\"/>\n  <anchor x=\"195\" y=\"1200\" name=\"topleft\"/>\n  <anchor x=\"927\" y=\"1201\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"378\" y=\"-19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"-19\"/>\n      <point x=\"976\" y=\"113\"/>\n      <point x=\"976\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"1200\" type=\"line\"/>\n      <point x=\"877\" y=\"1200\" type=\"line\"/>\n      <point x=\"877\" y=\"610\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"150\"/>\n      <point x=\"696\" y=\"80\"/>\n      <point x=\"372\" y=\"80\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"80\"/>\n      <point x=\"195\" y=\"95\"/>\n      <point x=\"187\" y=\"99\" type=\"curve\"/>\n      <point x=\"147\" y=\"0\" type=\"line\"/>\n      <point x=\"178\" y=\"-6\"/>\n      <point x=\"260\" y=\"-19\"/>\n    </contour>\n    <contour>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"1200\" type=\"line\"/>\n      <point x=\"147\" y=\"1200\" type=\"line\"/>\n      <point x=\"147\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"354\" y=\"473\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"473\"/>\n      <point x=\"615\" y=\"550\"/>\n      <point x=\"615\" y=\"833\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"1200\" type=\"line\"/>\n      <point x=\"516\" y=\"1200\" type=\"line\"/>\n      <point x=\"516\" y=\"838\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"601\"/>\n      <point x=\"415\" y=\"554\"/>\n      <point x=\"315\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"554\"/>\n      <point x=\"266\" y=\"556\"/>\n      <point x=\"245\" y=\"567\" type=\"curve\"/>\n      <point x=\"215\" y=\"503\" type=\"line\"/>\n      <point x=\"271\" y=\"481\"/>\n      <point x=\"293\" y=\"473\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shindagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shindagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB49\"/>\n  <anchor x=\"634\" y=\"360\" name=\"_center\"/>\n  <outline>\n    <contour>\n      <point x=\"634\" y=\"270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"270\"/>\n      <point x=\"725\" y=\"310\"/>\n      <point x=\"725\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"410\"/>\n      <point x=\"684\" y=\"451\"/>\n      <point x=\"634\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"451\"/>\n      <point x=\"543\" y=\"410\"/>\n      <point x=\"543\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"310\"/>\n      <point x=\"584\" y=\"270\"/>\n    </contour>\n    <component base=\"shin-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shindageshshindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shindageshshindot-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2C\"/>\n  <anchor x=\"634\" y=\"360\" name=\"_center\"/>\n  <anchor x=\"634\" y=\"360\" name=\"center\"/>\n  <anchor x=\"195\" y=\"1200\" name=\"topleft\"/>\n  <anchor x=\"927\" y=\"1201\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"634\" y=\"270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"270\"/>\n      <point x=\"725\" y=\"310\"/>\n      <point x=\"725\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"410\"/>\n      <point x=\"684\" y=\"451\"/>\n      <point x=\"634\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"451\"/>\n      <point x=\"543\" y=\"410\"/>\n      <point x=\"543\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"310\"/>\n      <point x=\"584\" y=\"270\"/>\n    </contour>\n    <component base=\"shinshindot-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shindageshsindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shindageshsindot-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2D\"/>\n  <anchor x=\"634\" y=\"360\" name=\"_center\"/>\n  <anchor x=\"634\" y=\"360\" name=\"center\"/>\n  <anchor x=\"195\" y=\"1200\" name=\"topleft\"/>\n  <anchor x=\"923\" y=\"1200\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"634\" y=\"270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"270\"/>\n      <point x=\"725\" y=\"310\"/>\n      <point x=\"725\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"410\"/>\n      <point x=\"684\" y=\"451\"/>\n      <point x=\"634\" y=\"451\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"451\"/>\n      <point x=\"543\" y=\"410\"/>\n      <point x=\"543\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"310\"/>\n      <point x=\"584\" y=\"270\"/>\n    </contour>\n    <component base=\"shinsindot-hb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shindot-hb\" format=\"2\">\n  <unicode hex=\"05C1\"/>\n  <anchor x=\"600\" y=\"1200\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1379\"/>\n      <point x=\"691\" y=\"1419\"/>\n      <point x=\"691\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1519\"/>\n      <point x=\"650\" y=\"1560\"/>\n      <point x=\"600\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1560\"/>\n      <point x=\"509\" y=\"1519\"/>\n      <point x=\"509\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1419\"/>\n      <point x=\"550\" y=\"1379\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shinshindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shinshindot-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2A\"/>\n  <outline>\n    <component base=\"shin-hb\"/>\n    <component base=\"shindot-hb\" xOffset=\"327\" yOffset=\"1\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/shinsindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"shinsindot-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB2B\"/>\n  <outline>\n    <component base=\"shin-hb\"/>\n    <component base=\"sindot-hb\" xOffset=\"-405\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sigma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sigma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C3\"/>\n  <anchor x=\"570\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"566\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"565\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"-20\"/>\n      <point x=\"990\" y=\"169\"/>\n      <point x=\"990\" y=\"490\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"990\" y=\"724\"/>\n      <point x=\"904\" y=\"915\"/>\n      <point x=\"789\" y=\"956\" type=\"curve\"/>\n      <point x=\"789\" y=\"1047\" type=\"line\"/>\n      <point x=\"565\" y=\"1060\" type=\"line\"/>\n      <point x=\"289\" y=\"1060\"/>\n      <point x=\"130\" y=\"860\"/>\n      <point x=\"130\" y=\"510\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"130\" y=\"177\"/>\n      <point x=\"292\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"565\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"352\" y=\"72\"/>\n      <point x=\"226\" y=\"227\"/>\n      <point x=\"226\" y=\"490\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"797\"/>\n      <point x=\"348\" y=\"970\"/>\n      <point x=\"565\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"970\"/>\n      <point x=\"894\" y=\"797\"/>\n      <point x=\"894\" y=\"490\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"227\"/>\n      <point x=\"772\" y=\"72\"/>\n    </contour>\n    <contour>\n      <point x=\"565\" y=\"970\" type=\"line\"/>\n      <point x=\"1106\" y=\"970\" type=\"line\"/>\n      <point x=\"1106\" y=\"1060\" type=\"line\"/>\n      <point x=\"565\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sigmafinal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sigmafinal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C2\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"666\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"697\" y=\"-480\" type=\"line\"/>\n      <point x=\"886\" y=\"-433\"/>\n      <point x=\"994\" y=\"-315\"/>\n      <point x=\"994\" y=\"-156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"-5\"/>\n      <point x=\"912\" y=\"70\"/>\n      <point x=\"746\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"70\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"70\"/>\n      <point x=\"256\" y=\"242\"/>\n      <point x=\"256\" y=\"542\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"256\" y=\"811\"/>\n      <point x=\"419\" y=\"988\"/>\n      <point x=\"666\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"988\"/>\n      <point x=\"926\" y=\"929\"/>\n      <point x=\"1006\" y=\"809\" type=\"curve\"/>\n      <point x=\"1073\" y=\"860\" type=\"line\"/>\n      <point x=\"989\" y=\"1007\"/>\n      <point x=\"857\" y=\"1080\"/>\n      <point x=\"674\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"1080\"/>\n      <point x=\"160\" y=\"862\"/>\n      <point x=\"160\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"181\"/>\n      <point x=\"341\" y=\"-20\"/>\n      <point x=\"656\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"746\" y=\"-20\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"-20\"/>\n      <point x=\"898\" y=\"-65\"/>\n      <point x=\"898\" y=\"-156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"-262\"/>\n      <point x=\"811\" y=\"-353\"/>\n      <point x=\"659\" y=\"-406\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sindhiampersand-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sindhiampersand-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FD\"/>\n  <outline>\n    <component base=\"hamza-ar\"/>\n    <component base=\"doubleverticalbarbelowSymbol-ar.comb\" xOffset=\"25\" yOffset=\"-9\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>hamza-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>hamza-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sindhipostpositionmen-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sindhipostpositionmen-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06FE\"/>\n  <guideline x=\"249\" y=\"-208\" angle=\"0\"/>\n  <outline>\n    <component base=\"meem-ar\"/>\n    <component base=\"doubleverticalbarbelowSymbol-ar.comb\" xOffset=\"60\" yOffset=\"-79\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=meem-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=meem-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sindot-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sindot-hb\" format=\"2\">\n  <unicode hex=\"05C2\"/>\n  <anchor x=\"600\" y=\"1200\" name=\"_topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"1379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"1379\"/>\n      <point x=\"691\" y=\"1419\"/>\n      <point x=\"691\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"1519\"/>\n      <point x=\"650\" y=\"1560\"/>\n      <point x=\"600\" y=\"1560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"1560\"/>\n      <point x=\"509\" y=\"1519\"/>\n      <point x=\"509\" y=\"1469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1419\"/>\n      <point x=\"550\" y=\"1379\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/six-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0666\"/>\n  <outline>\n    <contour>\n      <point x=\"896\" y=\"0\" type=\"curve\"/>\n      <point x=\"988\" y=\"0\" type=\"line\"/>\n      <point x=\"919\" y=\"394\"/>\n      <point x=\"841\" y=\"930\"/>\n      <point x=\"821\" y=\"1420\" type=\"curve\"/>\n      <point x=\"602\" y=\"1406\"/>\n      <point x=\"348\" y=\"1404\"/>\n      <point x=\"129\" y=\"1420\" type=\"curve\"/>\n      <point x=\"129\" y=\"1326\" type=\"line\"/>\n      <point x=\"352\" y=\"1308\"/>\n      <point x=\"587\" y=\"1313\"/>\n      <point x=\"772\" y=\"1325\" type=\"curve\"/>\n      <point x=\"730\" y=\"1343\" type=\"line\"/>\n      <point x=\"745\" y=\"950\"/>\n      <point x=\"825\" y=\"395\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/six-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"770\" y=\"-6\" type=\"curve\"/>\n      <point x=\"864\" y=\"4\" type=\"line\"/>\n      <point x=\"840\" y=\"179\"/>\n      <point x=\"822\" y=\"400\"/>\n      <point x=\"810\" y=\"631\" type=\"curve\"/>\n      <point x=\"694\" y=\"630\"/>\n      <point x=\"526\" y=\"630\"/>\n      <point x=\"431\" y=\"633\" type=\"curve\"/>\n      <point x=\"429\" y=\"539\" type=\"line\"/>\n      <point x=\"522\" y=\"537\"/>\n      <point x=\"667\" y=\"537\"/>\n      <point x=\"764\" y=\"540\" type=\"curve\"/>\n      <point x=\"725\" y=\"576\" type=\"line\"/>\n      <point x=\"729\" y=\"379\"/>\n      <point x=\"752\" y=\"163\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/six-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"six-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/six-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F6\"/>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"-6\" type=\"line\"/>\n      <point x=\"356\" y=\"338\"/>\n      <point x=\"524\" y=\"599\"/>\n      <point x=\"1061\" y=\"786\" type=\"curve\"/>\n      <point x=\"1046\" y=\"872\" type=\"line\"/>\n      <point x=\"924\" y=\"834\"/>\n      <point x=\"802\" y=\"808\"/>\n      <point x=\"719\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"808\"/>\n      <point x=\"420\" y=\"858\"/>\n      <point x=\"420\" y=\"1073\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"1243\"/>\n      <point x=\"532\" y=\"1345\"/>\n      <point x=\"731\" y=\"1345\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"1345\"/>\n      <point x=\"896\" y=\"1326\"/>\n      <point x=\"963\" y=\"1308\" type=\"curve\"/>\n      <point x=\"969\" y=\"1391\" type=\"line\"/>\n      <point x=\"902\" y=\"1420\"/>\n      <point x=\"828\" y=\"1439\"/>\n      <point x=\"726\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"1439\"/>\n      <point x=\"328\" y=\"1291\"/>\n      <point x=\"328\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"328\" y=\"787\"/>\n      <point x=\"511\" y=\"729\"/>\n      <point x=\"687\" y=\"729\" type=\"curve\"/>\n      <point x=\"687\" y=\"684\" type=\"line\"/>\n      <point x=\"783\" y=\"697\" type=\"line\"/>\n      <point x=\"786\" y=\"759\" type=\"line\"/>\n      <point x=\"434\" y=\"608\"/>\n      <point x=\"282\" y=\"365\"/>\n      <point x=\"157\" y=\"61\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/six-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"492\" y=\"-6\" type=\"line\"/>\n      <point x=\"571\" y=\"140\"/>\n      <point x=\"673\" y=\"221\"/>\n      <point x=\"855\" y=\"285\" type=\"curve\"/>\n      <point x=\"840\" y=\"374\" type=\"line\"/>\n      <point x=\"781\" y=\"360\"/>\n      <point x=\"722\" y=\"347\"/>\n      <point x=\"682\" y=\"347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"347\"/>\n      <point x=\"578\" y=\"376\"/>\n      <point x=\"578\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"514\"/>\n      <point x=\"617\" y=\"545\"/>\n      <point x=\"698\" y=\"545\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"744\" y=\"545\"/>\n      <point x=\"766\" y=\"539\"/>\n      <point x=\"803\" y=\"533\" type=\"curve\"/>\n      <point x=\"809\" y=\"617\" type=\"line\"/>\n      <point x=\"769\" y=\"630\"/>\n      <point x=\"735\" y=\"637\"/>\n      <point x=\"689\" y=\"637\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"637\"/>\n      <point x=\"486\" y=\"571\"/>\n      <point x=\"486\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"350\"/>\n      <point x=\"524\" y=\"285\"/>\n      <point x=\"618\" y=\"280\" type=\"curve\"/>\n      <point x=\"621\" y=\"241\" type=\"line\"/>\n      <point x=\"743\" y=\"281\" type=\"line\"/>\n      <point x=\"762\" y=\"332\" type=\"line\"/>\n      <point x=\"584\" y=\"285\"/>\n      <point x=\"476\" y=\"165\"/>\n      <point x=\"420\" y=\"35\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/six-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"six-persianinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/six.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sixsuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/six.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0036\"/>\n  <outline>\n    <contour>\n      <point x=\"608\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"-20\"/>\n      <point x=\"1070\" y=\"142\"/>\n      <point x=\"1070\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"736\"/>\n      <point x=\"910\" y=\"900\"/>\n      <point x=\"626\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"900\"/>\n      <point x=\"298\" y=\"816\"/>\n      <point x=\"254\" y=\"668\" type=\"curve\"/>\n      <point x=\"190\" y=\"668\" type=\"line\"/>\n      <point x=\"152\" y=\"476\" type=\"line\"/>\n      <point x=\"152\" y=\"150\"/>\n      <point x=\"308\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"620\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"70\"/>\n      <point x=\"248\" y=\"207\"/>\n      <point x=\"248\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"676\"/>\n      <point x=\"385\" y=\"810\"/>\n      <point x=\"626\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"810\"/>\n      <point x=\"974\" y=\"680\"/>\n      <point x=\"974\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"201\"/>\n      <point x=\"852\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"152\" y=\"476\" type=\"line\"/>\n      <point x=\"245\" y=\"533\" type=\"line\"/>\n      <point x=\"246\" y=\"666\" type=\"line\"/>\n      <point x=\"246\" y=\"1094\"/>\n      <point x=\"477\" y=\"1315\"/>\n      <point x=\"949\" y=\"1336\" type=\"curve\"/>\n      <point x=\"940\" y=\"1426\" type=\"line\"/>\n      <point x=\"408\" y=\"1400\"/>\n      <point x=\"152\" y=\"1134\"/>\n      <point x=\"152\" y=\"624\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/six.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"six.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"sixsuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sixinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sixinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2086\"/>\n  <outline>\n    <component base=\"sixsuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sixsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sixsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2076\"/>\n  <outline>\n    <contour>\n      <point x=\"393\" y=\"959\" type=\"line\"/>\n      <point x=\"438\" y=\"1104\" type=\"line\"/>\n      <point x=\"438\" y=\"1268\"/>\n      <point x=\"540\" y=\"1340\"/>\n      <point x=\"781\" y=\"1348\" type=\"curve\"/>\n      <point x=\"776\" y=\"1440\" type=\"line\"/>\n      <point x=\"475\" y=\"1428\"/>\n      <point x=\"346\" y=\"1314\"/>\n      <point x=\"346\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"1039\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"597\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"793\"/>\n      <point x=\"854\" y=\"871\"/>\n      <point x=\"854\" y=\"1006\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"1125\"/>\n      <point x=\"774\" y=\"1193\"/>\n      <point x=\"630\" y=\"1193\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"1193\"/>\n      <point x=\"464\" y=\"1161\"/>\n      <point x=\"442\" y=\"1105\" type=\"curve\"/>\n      <point x=\"415\" y=\"1105\" type=\"line\"/>\n      <point x=\"390\" y=\"969\" type=\"line\"/>\n      <point x=\"346\" y=\"1039\" type=\"line\"/>\n      <point x=\"346\" y=\"870\"/>\n      <point x=\"425\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"602\" y=\"885\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"885\"/>\n      <point x=\"437\" y=\"923\"/>\n      <point x=\"437\" y=\"998\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"1070\"/>\n      <point x=\"497\" y=\"1111\"/>\n      <point x=\"602\" y=\"1111\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"1111\"/>\n      <point x=\"758\" y=\"1071\"/>\n      <point x=\"758\" y=\"1001\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"927\"/>\n      <point x=\"703\" y=\"885\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002F\"/>\n  <outline>\n    <contour>\n      <point x=\"168\" y=\"-190\" type=\"line\"/>\n      <point x=\"266\" y=\"-190\" type=\"line\"/>\n      <point x=\"1136\" y=\"1610\" type=\"line\"/>\n      <point x=\"1038\" y=\"1610\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"120\"/>\n    <component base=\"asterisk\" xOffset=\"1142\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_backslash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_backslash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"backslash\" xOffset=\"1100\"/>\n    <component base=\"slash\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"914\" type=\"line\"/>\n      <point x=\"748\" y=\"914\" type=\"line\"/>\n      <point x=\"790\" y=\"1004\" type=\"line\"/>\n      <point x=\"-20\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"414\" type=\"line\"/>\n      <point x=\"503\" y=\"414\" type=\"line\"/>\n      <point x=\"545\" y=\"504\" type=\"line\"/>\n      <point x=\"-20\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"510\" y=\"414\" type=\"line\"/>\n      <point x=\"1220\" y=\"414\" type=\"line\"/>\n      <point x=\"1220\" y=\"504\" type=\"line\"/>\n      <point x=\"552\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"745\" y=\"914\" type=\"line\"/>\n      <point x=\"1220\" y=\"914\" type=\"line\"/>\n      <point x=\"1220\" y=\"1004\" type=\"line\"/>\n      <point x=\"787\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1248\" y=\"214\" type=\"line\"/>\n      <point x=\"2206\" y=\"653\" type=\"line\"/>\n      <point x=\"2206\" y=\"765\" type=\"line\"/>\n      <point x=\"1038\" y=\"1299\" type=\"line\"/>\n      <point x=\"1038\" y=\"1204\" type=\"line\"/>\n      <point x=\"2123\" y=\"713\" type=\"line\"/>\n      <point x=\"2123\" y=\"705\" type=\"line\"/>\n      <point x=\"1248\" y=\"309\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"120\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"150\"/>\n    <component base=\"slash\" xOffset=\"1032\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"914\" type=\"line\"/>\n      <point x=\"1008\" y=\"914\" type=\"line\"/>\n      <point x=\"1050\" y=\"1004\" type=\"line\"/>\n      <point x=\"-20\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-20\" y=\"414\" type=\"line\"/>\n      <point x=\"773\" y=\"414\" type=\"line\"/>\n      <point x=\"815\" y=\"504\" type=\"line\"/>\n      <point x=\"-20\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"270\"/>\n    <component base=\"slash\" xOffset=\"952\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1440\" y=\"414\" type=\"line\"/>\n      <point x=\"2450\" y=\"414\" type=\"line\"/>\n      <point x=\"2450\" y=\"504\" type=\"line\"/>\n      <point x=\"1482\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"414\" type=\"line\"/>\n      <point x=\"783\" y=\"414\" type=\"line\"/>\n      <point x=\"825\" y=\"504\" type=\"line\"/>\n      <point x=\"-50\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-50\" y=\"914\" type=\"line\"/>\n      <point x=\"1018\" y=\"914\" type=\"line\"/>\n      <point x=\"1060\" y=\"1004\" type=\"line\"/>\n      <point x=\"-50\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1675\" y=\"914\" type=\"line\"/>\n      <point x=\"2450\" y=\"914\" type=\"line\"/>\n      <point x=\"2450\" y=\"1004\" type=\"line\"/>\n      <point x=\"1717\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"250\"/>\n    <component base=\"slash\" xOffset=\"932\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2420\" y=\"506\" type=\"line\"/>\n      <point x=\"1372\" y=\"506\" type=\"line\"/>\n      <point x=\"1330\" y=\"416\" type=\"line\"/>\n      <point x=\"2420\" y=\"416\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2420\" y=\"1006\" type=\"line\"/>\n      <point x=\"1607\" y=\"1006\" type=\"line\"/>\n      <point x=\"1565\" y=\"916\" type=\"line\"/>\n      <point x=\"2420\" y=\"916\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"134\"/>\n    <component base=\"slash\" xOffset=\"816\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"slash_slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"2260\"/>\n    <component base=\"slash\" xOffset=\"250\"/>\n    <component base=\"slash\" xOffset=\"1270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>slash</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/softhyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"softhyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AD\"/>\n  <outline>\n    <component base=\"hyphen\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/softsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"softsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044C\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"292\" y=\"0\" type=\"line\"/>\n      <point x=\"744\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"958\" y=\"0\"/>\n      <point x=\"1080\" y=\"121\"/>\n      <point x=\"1080\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"545\"/>\n      <point x=\"958\" y=\"666\"/>\n      <point x=\"744\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"272\" y=\"666\" type=\"line\"/>\n      <point x=\"272\" y=\"576\" type=\"line\"/>\n      <point x=\"726\" y=\"576\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"576\"/>\n      <point x=\"984\" y=\"487\"/>\n      <point x=\"984\" y=\"333\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"179\"/>\n      <point x=\"890\" y=\"90\"/>\n      <point x=\"726\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"0\" type=\"line\"/>\n      <point x=\"306\" y=\"0\" type=\"line\"/>\n      <point x=\"306\" y=\"1060\" type=\"line\"/>\n      <point x=\"212\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/softsign-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"softsign-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"230\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"922\" y=\"-20\"/>\n      <point x=\"1090\" y=\"129\"/>\n      <point x=\"1090\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1090\" y=\"641\"/>\n      <point x=\"932\" y=\"785\"/>\n      <point x=\"656\" y=\"785\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"785\"/>\n      <point x=\"328\" y=\"716\"/>\n      <point x=\"284\" y=\"568\" type=\"curve\"/>\n      <point x=\"276\" y=\"568\" type=\"line\"/>\n      <point x=\"276\" y=\"1060\" type=\"line\"/>\n      <point x=\"182\" y=\"1060\" type=\"line\"/>\n      <point x=\"182\" y=\"382\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"182\" y=\"125\"/>\n      <point x=\"343\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"630\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"72\"/>\n      <point x=\"276\" y=\"175\"/>\n      <point x=\"276\" y=\"380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"580\"/>\n      <point x=\"406\" y=\"693\"/>\n      <point x=\"636\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"693\"/>\n      <point x=\"994\" y=\"582\"/>\n      <point x=\"994\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"187\"/>\n      <point x=\"862\" y=\"72\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/space.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"space\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0020\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/spaceC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"spaceControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2420\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"P.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>P.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/spadeB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"spadeBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2660\"/>\n  <guideline x=\"834\" y=\"60\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"1280\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"1260\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"80\" angle=\"0\"/>\n  <guideline x=\"834\" y=\"40\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"340\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"471\" y=\"162\"/>\n      <point x=\"554\" y=\"236\"/>\n      <point x=\"554\" y=\"363\" type=\"curve\"/>\n      <point x=\"666\" y=\"363\" type=\"line\"/>\n      <point x=\"666\" y=\"236\"/>\n      <point x=\"741\" y=\"162\"/>\n      <point x=\"870\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"162\"/>\n      <point x=\"1091\" y=\"265\"/>\n      <point x=\"1091\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"793\"/>\n      <point x=\"919\" y=\"1080\"/>\n      <point x=\"610\" y=\"1280\" type=\"curve\"/>\n      <point x=\"295\" y=\"1083\"/>\n      <point x=\"109\" y=\"796\"/>\n      <point x=\"109\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"265\"/>\n      <point x=\"194\" y=\"162\"/>\n    </contour>\n    <contour>\n      <point x=\"563\" y=\"60\" type=\"line\"/>\n      <point x=\"657\" y=\"60\" type=\"line\"/>\n      <point x=\"657\" y=\"1060\" type=\"line\"/>\n      <point x=\"563\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/startO_fH_eadingC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfHeadingControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2401\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"H.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>H.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/startO_fH_eadingC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfHeadingControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"169\" y=\"1236\" type=\"line\"/>\n      <point x=\"75\" y=\"1236\" type=\"line\"/>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"169\" y=\"186\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"141\" y=\"1236\" type=\"line\"/>\n      <point x=\"141\" y=\"1146\" type=\"line\"/>\n      <point x=\"1125\" y=\"1146\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/startO_fT_extC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfTextControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2402\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"X.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>X.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/startO_fT_extC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"startOfTextControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"275\" type=\"line\"/>\n      <point x=\"75\" y=\"275\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"251\" type=\"line\"/>\n      <point x=\"647\" y=\"251\" type=\"line\"/>\n      <point x=\"647\" y=\"1235\" type=\"line\"/>\n      <point x=\"553\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sterling.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sterling\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A3\"/>\n  <outline>\n    <contour>\n      <point x=\"144\" y=\"0\" type=\"line\"/>\n      <point x=\"239\" y=\"0\" type=\"line\"/>\n      <point x=\"239\" y=\"90\" type=\"line\"/>\n      <point x=\"338\" y=\"275\"/>\n      <point x=\"386\" y=\"441\"/>\n      <point x=\"386\" y=\"627\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"1035\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"386\" y=\"1239\"/>\n      <point x=\"523\" y=\"1350\"/>\n      <point x=\"722\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"1350\"/>\n      <point x=\"955\" y=\"1282\"/>\n      <point x=\"1025\" y=\"1164\" type=\"curve\"/>\n      <point x=\"1103\" y=\"1221\" type=\"line\"/>\n      <point x=\"1030\" y=\"1360\"/>\n      <point x=\"894\" y=\"1440\"/>\n      <point x=\"730\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"455\" y=\"1440\"/>\n      <point x=\"292\" y=\"1294\"/>\n      <point x=\"292\" y=\"1036\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"627\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"441\"/>\n      <point x=\"244\" y=\"278\"/>\n      <point x=\"144\" y=\"90\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"90\" type=\"line\"/>\n      <point x=\"204\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"121\" y=\"605\" type=\"line\"/>\n      <point x=\"885\" y=\"605\" type=\"line\"/>\n      <point x=\"885\" y=\"695\" type=\"line\"/>\n      <point x=\"121\" y=\"695\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/strictlyequivalentto.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"strictlyequivalentto\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2263\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"1134\" type=\"line\"/>\n      <point x=\"1100\" y=\"1134\" type=\"line\"/>\n      <point x=\"1100\" y=\"1224\" type=\"line\"/>\n      <point x=\"100\" y=\"1224\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"204\" type=\"line\"/>\n      <point x=\"1100\" y=\"204\" type=\"line\"/>\n      <point x=\"1100\" y=\"294\" type=\"line\"/>\n      <point x=\"100\" y=\"294\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"514\" type=\"line\"/>\n      <point x=\"1100\" y=\"514\" type=\"line\"/>\n      <point x=\"1100\" y=\"604\" type=\"line\"/>\n      <point x=\"100\" y=\"604\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"824\" type=\"line\"/>\n      <point x=\"1100\" y=\"824\" type=\"line\"/>\n      <point x=\"1100\" y=\"914\" type=\"line\"/>\n      <point x=\"100\" y=\"914\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/substituteC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"substituteControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241A\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"B.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/substituteC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"substituteControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"667\" y=\"466\" type=\"line\"/>\n      <point x=\"667\" y=\"502\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"601\"/>\n      <point x=\"626\" y=\"684\"/>\n      <point x=\"493\" y=\"734\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"315\" y=\"801\"/>\n      <point x=\"240\" y=\"856\"/>\n      <point x=\"240\" y=\"952\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1082\"/>\n      <point x=\"355\" y=\"1150\"/>\n      <point x=\"576\" y=\"1150\" type=\"curve\"/>\n      <point x=\"574\" y=\"1240\" type=\"line\"/>\n      <point x=\"294\" y=\"1240\"/>\n      <point x=\"148\" y=\"1142\"/>\n      <point x=\"148\" y=\"952\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"815\"/>\n      <point x=\"237\" y=\"738\"/>\n      <point x=\"449\" y=\"658\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"622\"/>\n      <point x=\"577\" y=\"566\"/>\n      <point x=\"577\" y=\"502\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"466\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"991\" y=\"1018\" type=\"curve\"/>\n      <point x=\"1040\" y=\"1101\" type=\"line\"/>\n      <point x=\"893\" y=\"1196\"/>\n      <point x=\"747\" y=\"1240\"/>\n      <point x=\"574\" y=\"1240\" type=\"curve\"/>\n      <point x=\"576\" y=\"1150\" type=\"line\"/>\n      <point x=\"721\" y=\"1150\"/>\n      <point x=\"851\" y=\"1109\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"18\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/substituteF_ormT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"substituteFormTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2426\"/>\n  <outline>\n    <contour>\n      <point x=\"667\" y=\"356\" type=\"line\"/>\n      <point x=\"667\" y=\"472\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"594\"/>\n      <point x=\"612\" y=\"684\"/>\n      <point x=\"483\" y=\"774\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"348\" y=\"868\"/>\n      <point x=\"290\" y=\"960\"/>\n      <point x=\"290\" y=\"1082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"290\" y=\"1252\"/>\n      <point x=\"398\" y=\"1350\"/>\n      <point x=\"586\" y=\"1350\" type=\"curve\"/>\n      <point x=\"584\" y=\"1440\" type=\"line\"/>\n      <point x=\"339\" y=\"1440\"/>\n      <point x=\"198\" y=\"1313\"/>\n      <point x=\"198\" y=\"1092\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"198\" y=\"935\"/>\n      <point x=\"270\" y=\"818\"/>\n      <point x=\"439\" y=\"698\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"630\"/>\n      <point x=\"577\" y=\"558\"/>\n      <point x=\"577\" y=\"458\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"356\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"981\" y=\"1198\" type=\"curve\"/>\n      <point x=\"1040\" y=\"1261\" type=\"line\"/>\n      <point x=\"892\" y=\"1387\"/>\n      <point x=\"756\" y=\"1440\"/>\n      <point x=\"584\" y=\"1440\" type=\"curve\"/>\n      <point x=\"586\" y=\"1350\" type=\"line\"/>\n      <point x=\"726\" y=\"1350\"/>\n      <point x=\"844\" y=\"1305\"/>\n    </contour>\n    <component base=\"period\" xScale=\"-1\" xOffset=\"1218\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sukun-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sukun-ar\" format=\"2\">\n  <unicode hex=\"0652\"/>\n  <anchor x=\"601\" y=\"1054\" name=\"_top\"/>\n  <anchor x=\"593\" y=\"1487\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"597\" y=\"1138\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1138\"/>\n      <point x=\"774\" y=\"1189\"/>\n      <point x=\"774\" y=\"1308\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"1425\"/>\n      <point x=\"705\" y=\"1484\"/>\n      <point x=\"605\" y=\"1484\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"1484\"/>\n      <point x=\"430\" y=\"1407\"/>\n      <point x=\"430\" y=\"1298\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"430\" y=\"1191\"/>\n      <point x=\"488\" y=\"1138\"/>\n    </contour>\n    <contour>\n      <point x=\"597\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"1222\"/>\n      <point x=\"512\" y=\"1253\"/>\n      <point x=\"512\" y=\"1304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"1357\"/>\n      <point x=\"540\" y=\"1395\"/>\n      <point x=\"603\" y=\"1395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"659\" y=\"1395\"/>\n      <point x=\"692\" y=\"1363\"/>\n      <point x=\"692\" y=\"1305\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"1248\"/>\n      <point x=\"660\" y=\"1222\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/summation.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"summation\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2211\"/>\n  <outline>\n    <contour>\n      <point x=\"236\" y=\"-178\" type=\"line\"/>\n      <point x=\"847\" y=\"612\" type=\"line\"/>\n      <point x=\"236\" y=\"1398\" type=\"line\"/>\n      <point x=\"174\" y=\"1330\" type=\"line\"/>\n      <point x=\"726\" y=\"614\" type=\"line\"/>\n      <point x=\"174\" y=\"-110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"-200\" type=\"line\"/>\n      <point x=\"1046\" y=\"-200\" type=\"line\"/>\n      <point x=\"1046\" y=\"-110\" type=\"line\"/>\n      <point x=\"174\" y=\"-110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"1330\" type=\"line\"/>\n      <point x=\"1026\" y=\"1330\" type=\"line\"/>\n      <point x=\"1026\" y=\"1420\" type=\"line\"/>\n      <point x=\"174\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/sunW_ithR_ays.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"sunWithRays\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263C\"/>\n  <outline>\n    <contour>\n      <point x=\"599\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"355\"/>\n      <point x=\"954\" y=\"496\"/>\n      <point x=\"954\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"924\"/>\n      <point x=\"813\" y=\"1065\"/>\n      <point x=\"599\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"1065\"/>\n      <point x=\"244\" y=\"924\"/>\n      <point x=\"244\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"496\"/>\n      <point x=\"385\" y=\"355\"/>\n    </contour>\n    <contour>\n      <point x=\"230\" y=\"274\" type=\"line\"/>\n      <point x=\"426\" y=\"471\" type=\"line\"/>\n      <point x=\"363\" y=\"535\" type=\"line\"/>\n      <point x=\"165\" y=\"337\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"556\" y=\"139\" type=\"line\"/>\n      <point x=\"646\" y=\"139\" type=\"line\"/>\n      <point x=\"646\" y=\"421\" type=\"line\"/>\n      <point x=\"556\" y=\"421\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"30\" y=\"664\" type=\"line\"/>\n      <point x=\"309\" y=\"664\" type=\"line\"/>\n      <point x=\"309\" y=\"754\" type=\"line\"/>\n      <point x=\"29\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"442\" y=\"447\"/>\n      <point x=\"340\" y=\"551\"/>\n      <point x=\"340\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"340\" y=\"869\"/>\n      <point x=\"442\" y=\"973\"/>\n      <point x=\"599\" y=\"973\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"756\" y=\"973\"/>\n      <point x=\"858\" y=\"869\"/>\n      <point x=\"858\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"858\" y=\"551\"/>\n      <point x=\"756\" y=\"447\"/>\n    </contour>\n    <contour>\n      <point x=\"363\" y=\"883\" type=\"line\"/>\n      <point x=\"426\" y=\"947\" type=\"line\"/>\n      <point x=\"229\" y=\"1144\" type=\"line\"/>\n      <point x=\"166\" y=\"1080\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"972\" y=\"274\" type=\"line\"/>\n      <point x=\"1036\" y=\"337\" type=\"line\"/>\n      <point x=\"836\" y=\"537\" type=\"line\"/>\n      <point x=\"773\" y=\"473\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"889\" y=\"664\" type=\"line\"/>\n      <point x=\"1171\" y=\"664\" type=\"line\"/>\n      <point x=\"1171\" y=\"754\" type=\"line\"/>\n      <point x=\"889\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"556\" y=\"1001\" type=\"line\"/>\n      <point x=\"646\" y=\"1001\" type=\"line\"/>\n      <point x=\"646\" y=\"1280\" type=\"line\"/>\n      <point x=\"556\" y=\"1279\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"836\" y=\"881\" type=\"line\"/>\n      <point x=\"1036\" y=\"1081\" type=\"line\"/>\n      <point x=\"972\" y=\"1144\" type=\"line\"/>\n      <point x=\"773\" y=\"945\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/synchronousI_dleC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"synchronousIdleControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2416\"/>\n  <outline>\n    <component base=\"S.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"Y.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>Y.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/synchronousI_dleC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"synchronousIdleControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"361\" y=\"185\" type=\"line\"/>\n      <point x=\"455\" y=\"185\" type=\"line\"/>\n      <point x=\"455\" y=\"1236\" type=\"line\"/>\n      <point x=\"361\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"386\" y=\"185\" type=\"line\"/>\n      <point x=\"386\" y=\"274\" type=\"line\"/>\n      <point x=\"75\" y=\"274\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"839\" y=\"185\" type=\"line\"/>\n      <point x=\"839\" y=\"1236\" type=\"line\"/>\n      <point x=\"745\" y=\"1236\" type=\"line\"/>\n      <point x=\"745\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"274\" type=\"line\"/>\n      <point x=\"814\" y=\"274\" type=\"line\"/>\n      <point x=\"814\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"385\" y=\"1147\" type=\"line\"/>\n      <point x=\"816\" y=\"1147\" type=\"line\"/>\n      <point x=\"816\" y=\"1236\" type=\"line\"/>\n      <point x=\"385\" y=\"1236\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/t.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"t\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0074\"/>\n  <anchor x=\"665\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"442\" y=\"570\" name=\"center\"/>\n  <anchor x=\"806\" y=\"1180\" name=\"top\"/>\n  <anchor x=\"1080\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"792\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"-20\"/>\n      <point x=\"960\" y=\"-12\"/>\n      <point x=\"1046\" y=\"4\" type=\"curve\"/>\n      <point x=\"1035\" y=\"93\" type=\"line\"/>\n      <point x=\"964\" y=\"80\"/>\n      <point x=\"895\" y=\"72\"/>\n      <point x=\"812\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"72\"/>\n      <point x=\"513\" y=\"184\"/>\n      <point x=\"513\" y=\"410\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"580\" type=\"line\"/>\n      <point x=\"419\" y=\"580\" type=\"line\"/>\n      <point x=\"419\" y=\"410\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"123\"/>\n      <point x=\"543\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"419\" y=\"500\" type=\"line\"/>\n      <point x=\"513\" y=\"500\" type=\"line\"/>\n      <point x=\"513\" y=\"1380\" type=\"line\"/>\n      <point x=\"419\" y=\"1380\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"94\" y=\"970\" type=\"line\"/>\n      <point x=\"1006\" y=\"970\" type=\"line\"/>\n      <point x=\"1006\" y=\"1060\" type=\"line\"/>\n      <point x=\"94\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-3\"/>\n      <point x=\"1265\" y=\"15\"/>\n      <point x=\"1265\" y=\"46\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"78\"/>\n      <point x=\"1253\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1113\" y=\"91\"/>\n      <point x=\"1060\" y=\"91\"/>\n      <point x=\"943\" y=\"102\" type=\"curve\"/>\n      <point x=\"902\" y=\"49\" type=\"line\"/>\n      <point x=\"965\" y=\"49\" type=\"line\"/>\n      <point x=\"983\" y=\"7\"/>\n      <point x=\"1033\" y=\"-3\"/>\n    </contour>\n    <component base=\"tah-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0637\"/>\n  <anchor x=\"552\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"759\" y=\"1135\" name=\"top\"/>\n  <anchor x=\"760\" y=\"885\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"590\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"-3\"/>\n      <point x=\"1128\" y=\"97\"/>\n      <point x=\"1128\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"550\"/>\n      <point x=\"1000\" y=\"766\"/>\n      <point x=\"810\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"766\"/>\n      <point x=\"446\" y=\"535\"/>\n      <point x=\"185\" y=\"78\" type=\"curve\"/>\n      <point x=\"273\" y=\"61\" type=\"line\"/>\n      <point x=\"509\" y=\"465\"/>\n      <point x=\"685\" y=\"672\"/>\n      <point x=\"805\" y=\"672\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"672\"/>\n      <point x=\"1036\" y=\"470\"/>\n      <point x=\"1036\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"163\"/>\n      <point x=\"929\" y=\"91\"/>\n      <point x=\"593\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"91\"/>\n      <point x=\"177\" y=\"110\"/>\n      <point x=\"34\" y=\"129\" type=\"curve\"/>\n      <point x=\"27\" y=\"37\" type=\"line\"/>\n      <point x=\"166\" y=\"13\"/>\n      <point x=\"312\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"222\" y=\"122\" type=\"line\"/>\n      <point x=\"322\" y=\"251\" type=\"line\"/>\n      <point x=\"285\" y=\"275\" type=\"line\"/>\n      <point x=\"305\" y=\"319\"/>\n      <point x=\"311\" y=\"355\"/>\n      <point x=\"310\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"1420\" type=\"line\"/>\n      <point x=\"203\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tah-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tah-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"552\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"552\" y=\"-26\" name=\"bottom.dot\"/>\n  <anchor x=\"759\" y=\"1135\" name=\"top\"/>\n  <anchor x=\"760\" y=\"885\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"-12\" y=\"-3\" type=\"line\"/>\n      <point x=\"590\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"-3\"/>\n      <point x=\"1128\" y=\"97\"/>\n      <point x=\"1128\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"550\"/>\n      <point x=\"1000\" y=\"766\"/>\n      <point x=\"810\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"766\"/>\n      <point x=\"446\" y=\"535\"/>\n      <point x=\"185\" y=\"78\" type=\"curve\"/>\n      <point x=\"263\" y=\"49\" type=\"line\"/>\n      <point x=\"499\" y=\"453\"/>\n      <point x=\"685\" y=\"672\"/>\n      <point x=\"805\" y=\"672\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"672\"/>\n      <point x=\"1036\" y=\"470\"/>\n      <point x=\"1036\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"163\"/>\n      <point x=\"929\" y=\"91\"/>\n      <point x=\"593\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"91\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"222\" y=\"122\" type=\"line\"/>\n      <point x=\"322\" y=\"251\" type=\"line\"/>\n      <point x=\"285\" y=\"275\" type=\"line\"/>\n      <point x=\"305\" y=\"319\"/>\n      <point x=\"311\" y=\"355\"/>\n      <point x=\"310\" y=\"404\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"1420\" type=\"line\"/>\n      <point x=\"203\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tah-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tah-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1189\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1250\" y=\"-3\"/>\n      <point x=\"1265\" y=\"15\"/>\n      <point x=\"1265\" y=\"46\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1265\" y=\"78\"/>\n      <point x=\"1253\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1113\" y=\"91\"/>\n      <point x=\"1060\" y=\"91\"/>\n      <point x=\"943\" y=\"102\" type=\"curve\"/>\n      <point x=\"902\" y=\"49\" type=\"line\"/>\n      <point x=\"965\" y=\"49\" type=\"line\"/>\n      <point x=\"983\" y=\"7\"/>\n      <point x=\"1033\" y=\"-3\"/>\n    </contour>\n    <component base=\"tah-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_hreedots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahThreedots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_hreedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahThreedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"069F\"/>\n  <outline>\n    <component base=\"tah-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_hreedots-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahThreedots-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"194\" y=\"595\" angle=\"0\"/>\n  <outline>\n    <component base=\"tah-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_hreedots-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahThreedots-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_wodotsabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahTwodotsabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"160\" yOffset=\"353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_wodotsabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahTwodotsabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A3\"/>\n  <outline>\n    <component base=\"tah-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"160\" yOffset=\"353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_wodotsabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahTwodotsabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"160\" yOffset=\"353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_wodotsabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahTwodotsabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"160\" yOffset=\"353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-496\" name=\"bottom\"/>\n  <outline>\n    <component base=\"tahcenter-ar\" xOffset=\"12\" yOffset=\"-604\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tahcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tahcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"_tahabove\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"103\" yOffset=\"-402\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tau.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tau\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C4\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"576\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"764\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"-20\"/>\n      <point x=\"932\" y=\"-9\"/>\n      <point x=\"1020\" y=\"18\" type=\"curve\"/>\n      <point x=\"1006\" y=\"110\" type=\"line\"/>\n      <point x=\"918\" y=\"84\"/>\n      <point x=\"853\" y=\"72\"/>\n      <point x=\"794\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"72\"/>\n      <point x=\"561\" y=\"144\"/>\n      <point x=\"561\" y=\"312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"1060\" type=\"line\"/>\n      <point x=\"467\" y=\"1060\" type=\"line\"/>\n      <point x=\"467\" y=\"312\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"79\"/>\n      <point x=\"556\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"134\" y=\"970\" type=\"line\"/>\n      <point x=\"1026\" y=\"970\" type=\"line\"/>\n      <point x=\"1026\" y=\"1060\" type=\"line\"/>\n      <point x=\"134\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tav-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tav-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05EA\"/>\n  <anchor x=\"627\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"1035\" y=\"0\" type=\"line\"/>\n      <point x=\"1035\" y=\"1200\" type=\"line\"/>\n      <point x=\"936\" y=\"1200\" type=\"line\"/>\n      <point x=\"936\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"370\" y=\"1094\" type=\"line\"/>\n      <point x=\"291\" y=\"1056\"/>\n      <point x=\"218\" y=\"957\"/>\n      <point x=\"218\" y=\"789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"218\" y=\"0\" type=\"line\"/>\n      <point x=\"317\" y=\"0\" type=\"line\"/>\n      <point x=\"317\" y=\"770\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"317\" y=\"992\"/>\n      <point x=\"391\" y=\"1101\"/>\n      <point x=\"627\" y=\"1101\" type=\"curve\"/>\n      <point x=\"370\" y=\"1169\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1034\" y=\"1200\" type=\"line\"/>\n      <point x=\"157\" y=\"1200\" type=\"line\"/>\n      <point x=\"157\" y=\"1108\" type=\"line\"/>\n      <point x=\"298\" y=\"1101\" type=\"line\"/>\n      <point x=\"1034\" y=\"1101\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"317\" y=\"99\" type=\"line\"/>\n      <point x=\"30\" y=\"99\" type=\"line\"/>\n      <point x=\"30\" y=\"0\" type=\"line\"/>\n      <point x=\"317\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tavdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tavdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB4A\"/>\n  <outline>\n    <component base=\"tav-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"27\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0167\"/>\n  <outline>\n    <contour>\n      <point x=\"94\" y=\"538\" type=\"line\"/>\n      <point x=\"1006\" y=\"538\" type=\"line\"/>\n      <point x=\"1006\" y=\"628\" type=\"line\"/>\n      <point x=\"94\" y=\"628\" type=\"line\"/>\n    </contour>\n    <component base=\"t\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0165\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"1228\" type=\"line\"/>\n      <point x=\"824\" y=\"1228\" type=\"line\"/>\n      <point x=\"894\" y=\"1608\" type=\"line\"/>\n      <point x=\"802\" y=\"1608\" type=\"line\"/>\n    </contour>\n    <component base=\"t\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0163\"/>\n  <outline>\n    <component base=\"t\"/>\n    <component base=\"cedillacomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"threedotsdowncenter-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"48\" yOffset=\"-375\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0686\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"threedotsdowncenter-ar\" xScale=\"0.94\" yScale=\"0.94\" xOffset=\"95\" yOffset=\"-347\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"82\" yOffset=\"82\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"82\" yOffset=\"82\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tchehDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tcheh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"362\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tchehDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06BF\"/>\n  <outline>\n    <component base=\"tcheh-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"362\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>tcheh-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>tcheh-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tchehDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tcheh-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"332\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tchehDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tcheh-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-34\" yOffset=\"332\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.fina\"/>\n    <component base=\"fourdotscenter-ar\" xScale=\"1.001\" xOffset=\"14\" yOffset=\"-402\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0687\"/>\n  <outline>\n    <component base=\"hah-ar\"/>\n    <component base=\"fourdotscenter-ar\" xOffset=\"62\" yOffset=\"-374\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.init\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcheheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hah-ar.medi\"/>\n    <component base=\"fourdotsbelow-ar\" xOffset=\"80\" yOffset=\"76\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021B\"/>\n  <outline>\n    <component base=\"t\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"65\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/te-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"te-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0442\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1060\" type=\"line\"/>\n      <point x=\"553\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"114\" y=\"970\" type=\"line\"/>\n      <point x=\"1086\" y=\"970\" type=\"line\"/>\n      <point x=\"1086\" y=\"1060\" type=\"line\"/>\n      <point x=\"114\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/te-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"te-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"m\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062A\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"335\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"275\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"10\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehM_arbuta-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehMarbuta-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"heh-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"129\" yOffset=\"468\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehM_arbuta-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehMarbuta-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0629\"/>\n  <outline>\n    <component base=\"heh-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-1\" yOffset=\"408\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehM_arbutagoal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehMarbutagoal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hehgoal-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"80\" yOffset=\"183\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehM_arbutagoal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehMarbutagoal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C3\"/>\n  <outline>\n    <component base=\"tehMarbuta-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n    <component base=\"ringArabic\" xOffset=\"-598\" yOffset=\"-77\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n    <component base=\"ringArabic\" xOffset=\"-598\" yOffset=\"-77\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"521\" y=\"173\" angle=\"270\"/>\n  <guideline x=\"430\" y=\"507\" angle=\"0\"/>\n  <guideline x=\"441\" y=\"528\" angle=\"0\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n    <component base=\"ringArabic\" xOffset=\"-16\" yOffset=\"-77\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067C\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n    <component base=\"ringArabic\" xOffset=\"-16\" yOffset=\"-77\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"335\" yOffset=\"285\"/>\n    <component base=\"ringArabic\" xOffset=\"134\" yOffset=\"-74\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"275\" yOffset=\"285\"/>\n    <component base=\"ringArabic\" xOffset=\"134\" yOffset=\"-37\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehRing-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"10\" yOffset=\"123\"/>\n    <component base=\"ringArabic\" xOffset=\"-246\" yOffset=\"-77\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"-610\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"-700\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B8\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"335\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"275\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehTehabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"tehabove-ar.small\" xOffset=\"10\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>tehabove-ar.small</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067D\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"335\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"275\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsdown-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsdownabove-ar\" xOffset=\"10\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-620\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-710\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0753\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-20\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"335\" yOffset=\"285\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"252\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"275\" yOffset=\"285\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehThreedotsupbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"10\" yOffset=\"123\"/>\n    <component base=\"threedotsupbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tehabove-ar.small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tehabove-ar.small\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"762\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"589\" y=\"1021\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"582\" y=\"609\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"609\"/>\n      <point x=\"841\" y=\"650\"/>\n      <point x=\"841\" y=\"769\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"811\"/>\n      <point x=\"833\" y=\"849\"/>\n      <point x=\"824\" y=\"879\" type=\"curve\"/>\n      <point x=\"749\" y=\"870\" type=\"line\"/>\n      <point x=\"755\" y=\"836\"/>\n      <point x=\"759\" y=\"807\"/>\n      <point x=\"759\" y=\"773\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"759\" y=\"719\"/>\n      <point x=\"728\" y=\"693\"/>\n      <point x=\"587\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"452\" y=\"693\"/>\n      <point x=\"437\" y=\"718\"/>\n      <point x=\"437\" y=\"769\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"792\"/>\n      <point x=\"441\" y=\"821\"/>\n      <point x=\"444\" y=\"848\" type=\"curve\"/>\n      <point x=\"377\" y=\"852\" type=\"line\"/>\n      <point x=\"365\" y=\"820\"/>\n      <point x=\"359\" y=\"783\"/>\n      <point x=\"359\" y=\"752\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"653\"/>\n      <point x=\"417\" y=\"609\"/>\n    </contour>\n    <contour>\n      <point x=\"547\" y=\"859\" type=\"line\"/>\n      <point x=\"609\" y=\"923\" type=\"line\"/>\n      <point x=\"541\" y=\"984\" type=\"line\"/>\n      <point x=\"480\" y=\"922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"859\" type=\"line\"/>\n      <point x=\"709\" y=\"923\" type=\"line\"/>\n      <point x=\"641\" y=\"984\" type=\"line\"/>\n      <point x=\"580\" y=\"922\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-610\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-700\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067F\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"-10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"335\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"275\" yOffset=\"285\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"teheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"fourdotsabove-ar\" xOffset=\"10\" yOffset=\"123\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>fourdotsabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B8\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1160\" type=\"line\"/>\n      <point x=\"553\" y=\"1160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"1070\" type=\"line\"/>\n      <point x=\"1096\" y=\"1070\" type=\"line\"/>\n      <point x=\"1096\" y=\"1160\" type=\"line\"/>\n      <point x=\"104\" y=\"1160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"1330\" type=\"line\"/>\n      <point x=\"1096\" y=\"1330\" type=\"line\"/>\n      <point x=\"1096\" y=\"1420\" type=\"line\"/>\n      <point x=\"104\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tesh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tesh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02A7\"/>\n  <anchor x=\"620\" y=\"-420\" name=\"bottom\"/>\n  <anchor x=\"620\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"522\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"568\" y=\"-20\"/>\n      <point x=\"607\" y=\"-15\"/>\n      <point x=\"650\" y=\"-6\" type=\"curve\"/>\n      <point x=\"638\" y=\"82\" type=\"line\"/>\n      <point x=\"599\" y=\"76\"/>\n      <point x=\"569\" y=\"72\"/>\n      <point x=\"542\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"72\"/>\n      <point x=\"359\" y=\"137\"/>\n      <point x=\"359\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"500\" type=\"line\"/>\n      <point x=\"265\" y=\"500\" type=\"line\"/>\n      <point x=\"265\" y=\"280\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"70\"/>\n      <point x=\"341\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"265\" y=\"420\" type=\"line\"/>\n      <point x=\"359\" y=\"420\" type=\"line\"/>\n      <point x=\"359\" y=\"1380\" type=\"line\"/>\n      <point x=\"265\" y=\"1380\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"44\" y=\"970\" type=\"line\"/>\n      <point x=\"850\" y=\"970\" type=\"line\"/>\n      <point x=\"850\" y=\"1060\" type=\"line\"/>\n      <point x=\"44\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"791\" y=\"360\" type=\"line\"/>\n      <point x=\"885\" y=\"360\" type=\"line\"/>\n      <point x=\"885\" y=\"1180\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"1337\"/>\n      <point x=\"970\" y=\"1428\"/>\n      <point x=\"1118\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1147\" y=\"1428\"/>\n      <point x=\"1181\" y=\"1426\"/>\n      <point x=\"1209\" y=\"1422\" type=\"curve\"/>\n      <point x=\"1220\" y=\"1510\" type=\"line\"/>\n      <point x=\"1186\" y=\"1517\"/>\n      <point x=\"1144\" y=\"1520\"/>\n      <point x=\"1104\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"1520\"/>\n      <point x=\"791\" y=\"1399\"/>\n      <point x=\"791\" y=\"1190\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"398\" y=\"-477\" type=\"line\"/>\n      <point x=\"447\" y=\"-473\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"-448\"/>\n      <point x=\"885\" y=\"-313\"/>\n      <point x=\"885\" y=\"-16\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"384\" type=\"line\"/>\n      <point x=\"791\" y=\"384\" type=\"line\"/>\n      <point x=\"791\" y=\"-18\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"-244\"/>\n      <point x=\"696\" y=\"-350\"/>\n      <point x=\"470\" y=\"-379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"391\" y=\"-389\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tet-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tet-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D8\"/>\n  <anchor x=\"552\" y=\"452\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"378\" y=\"-19\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"-19\"/>\n      <point x=\"976\" y=\"113\"/>\n      <point x=\"976\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"818\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"1061\"/>\n      <point x=\"836\" y=\"1200\"/>\n      <point x=\"553\" y=\"1200\" type=\"curve\"/>\n      <point x=\"518\" y=\"1058\"/>\n      <point x=\"494\" y=\"939\"/>\n      <point x=\"465\" y=\"731\" type=\"curve\"/>\n      <point x=\"565\" y=\"731\" type=\"line\"/>\n      <point x=\"592\" y=\"937\"/>\n      <point x=\"616\" y=\"1043\"/>\n      <point x=\"628\" y=\"1092\" type=\"curve\"/>\n      <point x=\"760\" y=\"1092\"/>\n      <point x=\"877\" y=\"997\"/>\n      <point x=\"877\" y=\"809\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"610\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"150\"/>\n      <point x=\"696\" y=\"80\"/>\n      <point x=\"372\" y=\"80\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"80\"/>\n      <point x=\"199\" y=\"98\"/>\n      <point x=\"187\" y=\"99\" type=\"curve\"/>\n      <point x=\"147\" y=\"0\" type=\"line\"/>\n      <point x=\"178\" y=\"-6\"/>\n      <point x=\"260\" y=\"-19\"/>\n    </contour>\n    <contour>\n      <point x=\"147\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"246\" y=\"1200\" type=\"line\"/>\n      <point x=\"147\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tetdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tetdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB38\"/>\n  <outline>\n    <component base=\"tet-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-48\" yOffset=\"-92\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/thal-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thal-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"dal-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"36\" yOffset=\"482\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/thal-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thal-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0630\"/>\n  <outline>\n    <component base=\"dal-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"16\" yOffset=\"492\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/thalA_lefabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thalAlefabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"thal-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"16\" yOffset=\"927\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>thal-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/thalA_lefabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thalAlefabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FC5B\"/>\n  <outline>\n    <component base=\"thal-ar\"/>\n    <component base=\"alefabove-ar\" xOffset=\"-4\" yOffset=\"937\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alefabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-610\" yOffset=\"83\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-700\" yOffset=\"83\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"062B\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-10\" yOffset=\"83\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"335\" yOffset=\"275\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"275\" yOffset=\"275\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"10\" yOffset=\"113\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/theta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"theta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B8\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"-20\"/>\n      <point x=\"1040\" y=\"210\"/>\n      <point x=\"1040\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"1290\"/>\n      <point x=\"908\" y=\"1520\"/>\n      <point x=\"600\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"1520\"/>\n      <point x=\"160\" y=\"1290\"/>\n      <point x=\"160\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"210\"/>\n      <point x=\"292\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"70\"/>\n      <point x=\"252\" y=\"273\"/>\n      <point x=\"252\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"252\" y=\"1227\"/>\n      <point x=\"356\" y=\"1430\"/>\n      <point x=\"600\" y=\"1430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"844\" y=\"1430\"/>\n      <point x=\"948\" y=\"1227\"/>\n      <point x=\"948\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"273\"/>\n      <point x=\"844\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"216\" y=\"709\" type=\"line\"/>\n      <point x=\"1009\" y=\"709\" type=\"line\"/>\n      <point x=\"1009\" y=\"797\" type=\"line\"/>\n      <point x=\"216\" y=\"797\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/thetamod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thetamod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1DBF\"/>\n  <outline>\n    <contour>\n      <point x=\"366\" y=\"1129\" type=\"line\"/>\n      <point x=\"852\" y=\"1129\" type=\"line\"/>\n      <point x=\"852\" y=\"1209\" type=\"line\"/>\n      <point x=\"366\" y=\"1209\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"802\" y=\"770\"/>\n      <point x=\"918\" y=\"915\"/>\n      <point x=\"918\" y=\"1169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"1423\"/>\n      <point x=\"802\" y=\"1568\"/>\n      <point x=\"600\" y=\"1568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"398\" y=\"1568\"/>\n      <point x=\"282\" y=\"1423\"/>\n      <point x=\"282\" y=\"1169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"282\" y=\"915\"/>\n      <point x=\"398\" y=\"770\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"862\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"862\"/>\n      <point x=\"378\" y=\"974\"/>\n      <point x=\"378\" y=\"1169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"378\" y=\"1364\"/>\n      <point x=\"459\" y=\"1476\"/>\n      <point x=\"600\" y=\"1476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"741\" y=\"1476\"/>\n      <point x=\"822\" y=\"1364\"/>\n      <point x=\"822\" y=\"1169\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"974\"/>\n      <point x=\"741\" y=\"862\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/thorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FE\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"236\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"192\" y=\"-460\" type=\"line\"/>\n      <point x=\"286\" y=\"-460\" type=\"line\"/>\n      <point x=\"286\" y=\"1500\" type=\"line\"/>\n      <point x=\"192\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"657\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"-20\"/>\n      <point x=\"1080\" y=\"165\"/>\n      <point x=\"1080\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"888\"/>\n      <point x=\"933\" y=\"1080\"/>\n      <point x=\"651\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"1080\"/>\n      <point x=\"328\" y=\"992\"/>\n      <point x=\"295\" y=\"822\" type=\"curve\"/>\n      <point x=\"224\" y=\"822\" type=\"line\"/>\n      <point x=\"286\" y=\"535\" type=\"line\"/>\n      <point x=\"286\" y=\"833\"/>\n      <point x=\"407\" y=\"988\"/>\n      <point x=\"639\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"866\" y=\"988\"/>\n      <point x=\"984\" y=\"828\"/>\n      <point x=\"984\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"226\"/>\n      <point x=\"865\" y=\"72\"/>\n      <point x=\"637\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"406\" y=\"72\"/>\n      <point x=\"286\" y=\"227\"/>\n      <point x=\"286\" y=\"524\" type=\"curve\"/>\n      <point x=\"214\" y=\"250\" type=\"line\"/>\n      <point x=\"295\" y=\"250\" type=\"line\"/>\n      <point x=\"329\" y=\"83\"/>\n      <point x=\"442\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/thousandseparator-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"thousandseparator-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"066C\"/>\n  <outline>\n    <contour>\n      <point x=\"525\" y=\"-277\" type=\"line\"/>\n      <point x=\"671\" y=\"-156\"/>\n      <point x=\"754\" y=\"17\"/>\n      <point x=\"754\" y=\"277\" type=\"curve\"/>\n      <point x=\"653\" y=\"277\" type=\"line\"/>\n      <point x=\"652\" y=\"34\"/>\n      <point x=\"576\" y=\"-96\"/>\n      <point x=\"457\" y=\"-225\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0663\"/>\n  <outline>\n    <contour>\n      <point x=\"403\" y=\"0\" type=\"curve\"/>\n      <point x=\"499\" y=\"0\" type=\"line\"/>\n      <point x=\"491\" y=\"491\"/>\n      <point x=\"403\" y=\"808\"/>\n      <point x=\"287\" y=\"1114\" type=\"curve\"/>\n      <point x=\"269\" y=\"1087\" type=\"line\"/>\n      <point x=\"314\" y=\"946\"/>\n      <point x=\"367\" y=\"921\"/>\n      <point x=\"473\" y=\"921\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"921\"/>\n      <point x=\"629\" y=\"945\"/>\n      <point x=\"655\" y=\"1024\" type=\"curve\"/>\n      <point x=\"683\" y=\"1024\" type=\"line\"/>\n      <point x=\"693\" y=\"1052\"/>\n      <point x=\"699\" y=\"1085\"/>\n      <point x=\"701\" y=\"1124\" type=\"curve\"/>\n      <point x=\"649\" y=\"1120\" type=\"line\"/>\n      <point x=\"654\" y=\"947\"/>\n      <point x=\"784\" y=\"921\"/>\n      <point x=\"868\" y=\"921\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1017\" y=\"921\"/>\n      <point x=\"1095\" y=\"997\"/>\n      <point x=\"1095\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1095\" y=\"1286\"/>\n      <point x=\"1092\" y=\"1351\"/>\n      <point x=\"1087\" y=\"1420\" type=\"curve\"/>\n      <point x=\"997\" y=\"1420\" type=\"line\"/>\n      <point x=\"1001\" y=\"1348\"/>\n      <point x=\"1003\" y=\"1286\"/>\n      <point x=\"1003\" y=\"1249\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"1056\"/>\n      <point x=\"971\" y=\"1015\"/>\n      <point x=\"870\" y=\"1015\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"751\" y=\"1015\"/>\n      <point x=\"723\" y=\"1055\"/>\n      <point x=\"719\" y=\"1173\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"1233\"/>\n      <point x=\"717\" y=\"1293\"/>\n      <point x=\"717\" y=\"1420\" type=\"curve\"/>\n      <point x=\"625\" y=\"1420\" type=\"line\"/>\n      <point x=\"625\" y=\"1295\"/>\n      <point x=\"625\" y=\"1220\"/>\n      <point x=\"623\" y=\"1167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"619\" y=\"1064\"/>\n      <point x=\"592\" y=\"1015\"/>\n      <point x=\"472\" y=\"1015\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"350\" y=\"1015\"/>\n      <point x=\"328\" y=\"1065\"/>\n      <point x=\"289\" y=\"1167\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"1223\"/>\n      <point x=\"245\" y=\"1287\"/>\n      <point x=\"194\" y=\"1440\" type=\"curve\"/>\n      <point x=\"94\" y=\"1414\" type=\"line\"/>\n      <point x=\"266\" y=\"974\"/>\n      <point x=\"400\" y=\"524\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"441\" y=\"-1\" type=\"curve\"/>\n      <point x=\"534\" y=\"-1\" type=\"line\"/>\n      <point x=\"533\" y=\"154\"/>\n      <point x=\"510\" y=\"309\"/>\n      <point x=\"468\" y=\"437\" type=\"curve\"/>\n      <point x=\"431\" y=\"399\" type=\"line\"/>\n      <point x=\"458\" y=\"351\"/>\n      <point x=\"492\" y=\"341\"/>\n      <point x=\"537\" y=\"341\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"341\"/>\n      <point x=\"630\" y=\"359\"/>\n      <point x=\"644\" y=\"410\" type=\"curve\"/>\n      <point x=\"660\" y=\"411\" type=\"line\"/>\n      <point x=\"675\" y=\"360\"/>\n      <point x=\"711\" y=\"341\"/>\n      <point x=\"757\" y=\"341\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"341\"/>\n      <point x=\"884\" y=\"388\"/>\n      <point x=\"884\" y=\"508\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"564\"/>\n      <point x=\"877\" y=\"591\"/>\n      <point x=\"868\" y=\"632\" type=\"curve\"/>\n      <point x=\"785\" y=\"632\" type=\"line\"/>\n      <point x=\"790\" y=\"579\"/>\n      <point x=\"792\" y=\"545\"/>\n      <point x=\"792\" y=\"509\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"455\"/>\n      <point x=\"779\" y=\"435\"/>\n      <point x=\"736\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"687\" y=\"435\"/>\n      <point x=\"681\" y=\"463\"/>\n      <point x=\"678\" y=\"523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"553\"/>\n      <point x=\"675\" y=\"576\"/>\n      <point x=\"673\" y=\"632\" type=\"curve\"/>\n      <point x=\"587\" y=\"632\" type=\"line\"/>\n      <point x=\"589\" y=\"575\"/>\n      <point x=\"591\" y=\"556\"/>\n      <point x=\"590\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"453\"/>\n      <point x=\"575\" y=\"435\"/>\n      <point x=\"531\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"435\"/>\n      <point x=\"480\" y=\"460\"/>\n      <point x=\"453\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"641\" type=\"line\"/>\n      <point x=\"321\" y=\"615\" type=\"line\"/>\n      <point x=\"384\" y=\"425\"/>\n      <point x=\"434\" y=\"195\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"three-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F3\"/>\n  <outline>\n    <component base=\"three-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three-persian.small01.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-persian.small01\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"580\" y=\"1334\" name=\"_top\"/>\n  <anchor x=\"580\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1641\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"501\" y=\"1163\" type=\"curve\"/>\n      <point x=\"580\" y=\"1163\" type=\"line\"/>\n      <point x=\"577\" y=\"1267\"/>\n      <point x=\"562\" y=\"1368\"/>\n      <point x=\"534\" y=\"1455\" type=\"curve\"/>\n      <point x=\"509\" y=\"1426\" type=\"line\"/>\n      <point x=\"523\" y=\"1393\"/>\n      <point x=\"533\" y=\"1373\"/>\n      <point x=\"574\" y=\"1373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"1373\"/>\n      <point x=\"636\" y=\"1381\"/>\n      <point x=\"644\" y=\"1423\" type=\"curve\"/>\n      <point x=\"654\" y=\"1423\" type=\"line\"/>\n      <point x=\"661\" y=\"1388\"/>\n      <point x=\"694\" y=\"1373\"/>\n      <point x=\"731\" y=\"1373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"792\" y=\"1373\"/>\n      <point x=\"836\" y=\"1408\"/>\n      <point x=\"836\" y=\"1489\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"1527\"/>\n      <point x=\"831\" y=\"1560\"/>\n      <point x=\"825\" y=\"1587\" type=\"curve\"/>\n      <point x=\"747\" y=\"1587\" type=\"line\"/>\n      <point x=\"750\" y=\"1552\"/>\n      <point x=\"752\" y=\"1519\"/>\n      <point x=\"752\" y=\"1495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"1461\"/>\n      <point x=\"743\" y=\"1449\"/>\n      <point x=\"722\" y=\"1449\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1449\"/>\n      <point x=\"691\" y=\"1456\"/>\n      <point x=\"689\" y=\"1501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"1521\"/>\n      <point x=\"687\" y=\"1563\"/>\n      <point x=\"685\" y=\"1587\" type=\"curve\"/>\n      <point x=\"606\" y=\"1587\" type=\"line\"/>\n      <point x=\"607\" y=\"1553\"/>\n      <point x=\"607\" y=\"1519\"/>\n      <point x=\"607\" y=\"1500\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"1460\"/>\n      <point x=\"595\" y=\"1449\"/>\n      <point x=\"567\" y=\"1449\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"1449\"/>\n      <point x=\"538\" y=\"1464\"/>\n      <point x=\"525\" y=\"1510\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"1594\" type=\"line\"/>\n      <point x=\"419\" y=\"1576\" type=\"line\"/>\n      <point x=\"465\" y=\"1428\"/>\n      <point x=\"493\" y=\"1314\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"three-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"three-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>three-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"threesuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0033\"/>\n  <outline>\n    <contour>\n      <point x=\"514\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"-20\"/>\n      <point x=\"1020\" y=\"119\"/>\n      <point x=\"1020\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1020\" y=\"571\"/>\n      <point x=\"850\" y=\"722\"/>\n      <point x=\"592\" y=\"742\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"769\" type=\"line\"/>\n      <point x=\"373\" y=\"681\" type=\"line\"/>\n      <point x=\"412\" y=\"681\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"681\"/>\n      <point x=\"924\" y=\"554\"/>\n      <point x=\"924\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"176\"/>\n      <point x=\"770\" y=\"70\"/>\n      <point x=\"506\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"70\"/>\n      <point x=\"264\" y=\"96\"/>\n      <point x=\"186\" y=\"115\" type=\"curve\"/>\n      <point x=\"174\" y=\"28\" type=\"line\"/>\n      <point x=\"268\" y=\"-1\"/>\n      <point x=\"377\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"373\" y=\"681\" type=\"line\"/>\n      <point x=\"598\" y=\"690\" type=\"line\"/>\n      <point x=\"598\" y=\"750\" type=\"line\"/>\n      <point x=\"834\" y=\"799\"/>\n      <point x=\"990\" y=\"937\"/>\n      <point x=\"990\" y=\"1122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"990\" y=\"1324\"/>\n      <point x=\"855\" y=\"1440\"/>\n      <point x=\"618\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"1440\"/>\n      <point x=\"269\" y=\"1388\"/>\n      <point x=\"149\" y=\"1266\" type=\"curve\"/>\n      <point x=\"217\" y=\"1199\" type=\"line\"/>\n      <point x=\"345\" y=\"1305\"/>\n      <point x=\"462\" y=\"1350\"/>\n      <point x=\"606\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"1350\"/>\n      <point x=\"894\" y=\"1267\"/>\n      <point x=\"894\" y=\"1122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"953\"/>\n      <point x=\"682\" y=\"813\"/>\n      <point x=\"359\" y=\"769\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"360\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"-9\"/>\n      <point x=\"721\" y=\"56\"/>\n      <point x=\"721\" y=\"170\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"269\"/>\n      <point x=\"606\" y=\"331\"/>\n      <point x=\"435\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"350\" type=\"line\"/>\n      <point x=\"264\" y=\"295\" type=\"line\"/>\n      <point x=\"289\" y=\"295\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"295\"/>\n      <point x=\"622\" y=\"252\"/>\n      <point x=\"622\" y=\"177\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"622\" y=\"116\"/>\n      <point x=\"523\" y=\"81\"/>\n      <point x=\"355\" y=\"81\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"81\"/>\n      <point x=\"183\" y=\"95\"/>\n      <point x=\"128\" y=\"105\" type=\"curve\"/>\n      <point x=\"116\" y=\"13\" type=\"line\"/>\n      <point x=\"184\" y=\"-1\"/>\n      <point x=\"265\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"264\" y=\"295\" type=\"line\"/>\n      <point x=\"453\" y=\"295\" type=\"line\"/>\n      <point x=\"453\" y=\"345\" type=\"line\"/>\n      <point x=\"599\" y=\"366\"/>\n      <point x=\"700\" y=\"426\"/>\n      <point x=\"700\" y=\"505\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"597\"/>\n      <point x=\"601\" y=\"648\"/>\n      <point x=\"430\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"283\" y=\"648\"/>\n      <point x=\"181\" y=\"621\"/>\n      <point x=\"98\" y=\"580\" type=\"curve\"/>\n      <point x=\"145\" y=\"499\" type=\"line\"/>\n      <point x=\"233\" y=\"538\"/>\n      <point x=\"323\" y=\"558\"/>\n      <point x=\"419\" y=\"558\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"558\"/>\n      <point x=\"601\" y=\"531\"/>\n      <point x=\"601\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"420\"/>\n      <point x=\"475\" y=\"369\"/>\n      <point x=\"251\" y=\"350\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/three.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"three.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"threesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threedots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"061E\"/>\n  <outline>\n    <component base=\"threedotsupabove-ar\" xScale=\"1.5\" yScale=\"1.5\" xOffset=\"-306\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsdownabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsdownabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1162\" name=\"top\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yScale=\"-1\" yOffset=\"1530\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsdownbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsdownbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-8\" name=\"_bottom.dot\"/>\n  <anchor x=\"609\" y=\"-598\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yScale=\"-1\" yOffset=\"333\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsdowncenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsdowncenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yScale=\"-1\" yOffset=\"948\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsupabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsupabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"542\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1182\" name=\"top\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsupabove-ar.v2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsupabove-ar.v2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"642\" name=\"_top.dot\"/>\n  <anchor x=\"553\" y=\"1172\" name=\"top\"/>\n  <outline>\n    <component base=\"dotabove-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-96\" yOffset=\"-36\"/>\n    <component base=\"dotabove-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"154\" yOffset=\"102\"/>\n    <component base=\"dotabove-ar\" xScale=\"0.92\" yScale=\"0.92\" xOffset=\"-8\" yOffset=\"296\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsupbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsupbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"600\" y=\"-8\" name=\"_bottom.dot\"/>\n  <anchor x=\"612\" y=\"-618\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yOffset=\"-1018\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsupcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threedotsupcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"_threedots-ar\" yOffset=\"-328\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_threedots-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threeeighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threeeighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"601\" y=\"639\" type=\"line\"/>\n      <point x=\"547\" y=\"714\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"653\" y=\"678\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"599\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"threesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threeeighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threeeighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215C\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <component base=\"threesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threeinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threeinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2083\"/>\n  <outline>\n    <component base=\"threesuperior\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threequarters.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threequarters.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"601\" y=\"639\" type=\"line\"/>\n      <point x=\"547\" y=\"714\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"653\" y=\"678\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"599\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"foursuperior\" xOffset=\"240\" yOffset=\"-802\"/>\n    <component base=\"threesuperior\" xOffset=\"-240\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threequarters.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threequarters\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BE\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"296\" type=\"line\"/>\n      <point x=\"1078\" y=\"1020\" type=\"line\"/>\n      <point x=\"1024\" y=\"1096\" type=\"line\"/>\n      <point x=\"132\" y=\"372\" type=\"line\"/>\n    </contour>\n    <component base=\"foursuperior\" xOffset=\"240\" yOffset=\"-802\"/>\n    <component base=\"threesuperior\" xOffset=\"-240\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/threesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"threesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B3\"/>\n  <outline>\n    <contour>\n      <point x=\"562\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"795\"/>\n      <point x=\"831\" y=\"857\"/>\n      <point x=\"831\" y=\"968\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"1062\"/>\n      <point x=\"748\" y=\"1116\"/>\n      <point x=\"624\" y=\"1126\" type=\"curve\"/>\n      <point x=\"491\" y=\"1115\" type=\"line\"/>\n      <point x=\"491\" y=\"1072\" type=\"line\"/>\n      <point x=\"555\" y=\"1072\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"1072\"/>\n      <point x=\"736\" y=\"1041\"/>\n      <point x=\"736\" y=\"987\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"736\" y=\"922\"/>\n      <point x=\"667\" y=\"885\"/>\n      <point x=\"548\" y=\"885\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"885\"/>\n      <point x=\"434\" y=\"898\"/>\n      <point x=\"396\" y=\"906\" type=\"curve\"/>\n      <point x=\"368\" y=\"819\" type=\"line\"/>\n      <point x=\"419\" y=\"802\"/>\n      <point x=\"485\" y=\"792\"/>\n    </contour>\n    <contour>\n      <point x=\"491\" y=\"1072\" type=\"line\"/>\n      <point x=\"639\" y=\"1087\" type=\"line\"/>\n      <point x=\"639\" y=\"1134\" type=\"line\"/>\n      <point x=\"744\" y=\"1153\"/>\n      <point x=\"814\" y=\"1210\"/>\n      <point x=\"814\" y=\"1282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"1384\"/>\n      <point x=\"731\" y=\"1440\"/>\n      <point x=\"582\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"507\" y=\"1440\"/>\n      <point x=\"439\" y=\"1431\"/>\n      <point x=\"380\" y=\"1410\" type=\"curve\"/>\n      <point x=\"393\" y=\"1319\" type=\"line\"/>\n      <point x=\"445\" y=\"1338\"/>\n      <point x=\"503\" y=\"1348\"/>\n      <point x=\"572\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"1348\"/>\n      <point x=\"718\" y=\"1326\"/>\n      <point x=\"718\" y=\"1281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"1223\"/>\n      <point x=\"648\" y=\"1178\"/>\n      <point x=\"481\" y=\"1162\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DC\"/>\n  <outline>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tildecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tildecomb.case\" format=\"2\">\n  <anchor x=\"590\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"1840\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"235\" y=\"1566\" type=\"line\"/>\n      <point x=\"325\" y=\"1566\" type=\"line\"/>\n      <point x=\"325\" y=\"1656\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"1740\"/>\n      <point x=\"356\" y=\"1781\"/>\n      <point x=\"420\" y=\"1781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"1781\"/>\n      <point x=\"514\" y=\"1753\"/>\n      <point x=\"585\" y=\"1698\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"1632\"/>\n      <point x=\"738\" y=\"1600\"/>\n      <point x=\"801\" y=\"1600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"1600\"/>\n      <point x=\"967\" y=\"1673\"/>\n      <point x=\"967\" y=\"1820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"967\" y=\"1890\" type=\"line\"/>\n      <point x=\"877\" y=\"1890\" type=\"line\"/>\n      <point x=\"877\" y=\"1810\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"1726\"/>\n      <point x=\"851\" y=\"1685\"/>\n      <point x=\"800\" y=\"1685\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"1685\"/>\n      <point x=\"699\" y=\"1714\"/>\n      <point x=\"626\" y=\"1773\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"1835\"/>\n      <point x=\"480\" y=\"1866\"/>\n      <point x=\"421\" y=\"1866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"1866\"/>\n      <point x=\"235\" y=\"1793\"/>\n      <point x=\"235\" y=\"1646\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tildecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tildecomb\" format=\"2\">\n  <unicode hex=\"0303\"/>\n  <anchor x=\"593\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"590\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"259\" y=\"1256\" type=\"line\"/>\n      <point x=\"349\" y=\"1256\" type=\"line\"/>\n      <point x=\"349\" y=\"1306\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"1403\"/>\n      <point x=\"384\" y=\"1450\"/>\n      <point x=\"453\" y=\"1450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"1450\"/>\n      <point x=\"543\" y=\"1403\"/>\n      <point x=\"589\" y=\"1370\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"1320\"/>\n      <point x=\"723\" y=\"1280\"/>\n      <point x=\"777\" y=\"1280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"1280\"/>\n      <point x=\"941\" y=\"1360\"/>\n      <point x=\"941\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"1600\" type=\"line\"/>\n      <point x=\"853\" y=\"1600\" type=\"line\"/>\n      <point x=\"853\" y=\"1510\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"1420\"/>\n      <point x=\"828\" y=\"1376\"/>\n      <point x=\"779\" y=\"1376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"745\" y=\"1376\"/>\n      <point x=\"692\" y=\"1405\"/>\n      <point x=\"618\" y=\"1462\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"1507\"/>\n      <point x=\"507\" y=\"1546\"/>\n      <point x=\"445\" y=\"1546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"321\" y=\"1546\"/>\n      <point x=\"259\" y=\"1463\"/>\n      <point x=\"259\" y=\"1296\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tonos.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tonos.case\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tonos\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0384\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/topH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BCA\"/>\n  <note>\nuni2BCA\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/topH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B18\"/>\n  <note>\nuni2B18\n</note>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/topH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B13\"/>\n  <note>\nuni2B13\n</note>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"125\" y=\"225\" type=\"line\"/>\n      <point x=\"1075\" y=\"225\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/topR_ightH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"topRightHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B15\"/>\n  <note>\nuni2B15\n</note>\n  <outline>\n    <contour>\n      <point x=\"1089\" y=\"211\" type=\"line\"/>\n      <point x=\"110\" y=\"1199\" type=\"line\"/>\n      <point x=\"110\" y=\"211\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/trademark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"trademark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2122\"/>\n  <outline>\n    <contour>\n      <point x=\"207\" y=\"774\" type=\"line\"/>\n      <point x=\"301\" y=\"774\" type=\"line\"/>\n      <point x=\"301\" y=\"1420\" type=\"line\"/>\n      <point x=\"207\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"43\" y=\"1330\" type=\"line\"/>\n      <point x=\"465\" y=\"1330\" type=\"line\"/>\n      <point x=\"465\" y=\"1420\" type=\"line\"/>\n      <point x=\"43\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"823\" y=\"982\" type=\"line\"/>\n      <point x=\"882\" y=\"982\" type=\"line\"/>\n      <point x=\"1011\" y=\"1328\" type=\"line\"/>\n      <point x=\"1109\" y=\"1328\" type=\"line\"/>\n      <point x=\"1109\" y=\"1420\" type=\"line\"/>\n      <point x=\"957\" y=\"1420\" type=\"line\"/>\n      <point x=\"837\" y=\"1083\" type=\"line\"/>\n      <point x=\"833\" y=\"1083\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"561\" y=\"774\" type=\"line\"/>\n      <point x=\"655\" y=\"774\" type=\"line\"/>\n      <point x=\"655\" y=\"1420\" type=\"line\"/>\n      <point x=\"561\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"788\" y=\"982\" type=\"line\"/>\n      <point x=\"847\" y=\"982\" type=\"line\"/>\n      <point x=\"837\" y=\"1083\" type=\"line\"/>\n      <point x=\"833\" y=\"1083\" type=\"line\"/>\n      <point x=\"713\" y=\"1420\" type=\"line\"/>\n      <point x=\"561\" y=\"1420\" type=\"line\"/>\n      <point x=\"561\" y=\"1328\" type=\"line\"/>\n      <point x=\"659\" y=\"1328\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1015\" y=\"774\" type=\"line\"/>\n      <point x=\"1109\" y=\"774\" type=\"line\"/>\n      <point x=\"1109\" y=\"1420\" type=\"line\"/>\n      <point x=\"1015\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tsadi-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tsadi-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05E6\"/>\n  <anchor x=\"393\" y=\"361\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"882\" y=\"0\" type=\"line\"/>\n      <point x=\"936\" y=\"0\" type=\"line\"/>\n      <point x=\"936\" y=\"99\" type=\"line\"/>\n      <point x=\"217\" y=\"1200\" type=\"line\"/>\n      <point x=\"101\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"118\" y=\"0\" type=\"line\"/>\n      <point x=\"936\" y=\"0\" type=\"line\"/>\n      <point x=\"936\" y=\"99\" type=\"line\"/>\n      <point x=\"118\" y=\"99\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"607\" y=\"513\" type=\"line\"/>\n      <point x=\"736\" y=\"513\"/>\n      <point x=\"930\" y=\"588\"/>\n      <point x=\"949\" y=\"907\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"991\"/>\n      <point x=\"960\" y=\"1094\"/>\n      <point x=\"960\" y=\"1200\" type=\"curve\"/>\n      <point x=\"862\" y=\"1200\" type=\"line\"/>\n      <point x=\"862\" y=\"1094\"/>\n      <point x=\"856\" y=\"975\"/>\n      <point x=\"848\" y=\"869\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"834\" y=\"687\"/>\n      <point x=\"731\" y=\"582\"/>\n      <point x=\"577\" y=\"582\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"684\" y=\"1101\" type=\"line\"/>\n      <point x=\"951\" y=\"1101\" type=\"line\"/>\n      <point x=\"951\" y=\"1200\" type=\"line\"/>\n      <point x=\"684\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tsadidagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tsadidagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB46\"/>\n  <outline>\n    <component base=\"tsadi-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-207\" yOffset=\"-183\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tse-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tse-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0446\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"901\" y=\"0\" type=\"line\"/>\n      <point x=\"995\" y=\"0\" type=\"line\"/>\n      <point x=\"995\" y=\"1060\" type=\"line\"/>\n      <point x=\"901\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"226\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"0\" type=\"line\"/>\n      <point x=\"1077\" y=\"90\" type=\"line\"/>\n      <point x=\"226\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"164\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"0\" type=\"line\"/>\n      <point x=\"258\" y=\"1060\" type=\"line\"/>\n      <point x=\"164\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1012\" y=\"-270\" type=\"line\"/>\n      <point x=\"1106\" y=\"-270\" type=\"line\"/>\n      <point x=\"1106\" y=\"90\" type=\"line\"/>\n      <point x=\"1012\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tse-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tse-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"978\" y=\"-270\" type=\"line\"/>\n      <point x=\"1072\" y=\"-270\" type=\"line\"/>\n      <point x=\"1072\" y=\"90\" type=\"line\"/>\n      <point x=\"978\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"546\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"-20\"/>\n      <point x=\"837\" y=\"62\"/>\n      <point x=\"878\" y=\"204\" type=\"curve\"/>\n      <point x=\"938\" y=\"204\" type=\"line\"/>\n      <point x=\"884\" y=\"490\" type=\"line\"/>\n      <point x=\"884\" y=\"188\"/>\n      <point x=\"772\" y=\"72\"/>\n      <point x=\"556\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"72\"/>\n      <point x=\"264\" y=\"175\"/>\n      <point x=\"264\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"1060\" type=\"line\"/>\n      <point x=\"170\" y=\"1060\" type=\"line\"/>\n      <point x=\"170\" y=\"360\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"170\" y=\"118\"/>\n      <point x=\"306\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"902\" y=\"-10\" type=\"line\"/>\n      <point x=\"1072\" y=\"0\" type=\"line\"/>\n      <point x=\"1072\" y=\"63\" type=\"line\"/>\n      <point x=\"978\" y=\"73\" type=\"line\"/>\n      <point x=\"978\" y=\"430\" type=\"line\"/>\n      <point x=\"884\" y=\"430\" type=\"line\"/>\n      <point x=\"884\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"884\" y=\"300\" type=\"line\"/>\n      <point x=\"978\" y=\"260\" type=\"line\"/>\n      <point x=\"978\" y=\"1060\" type=\"line\"/>\n      <point x=\"884\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tshe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tshe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"275\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"0\" type=\"line\"/>\n      <point x=\"1008\" y=\"570\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"793\"/>\n      <point x=\"878\" y=\"920\"/>\n      <point x=\"650\" y=\"920\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"920\"/>\n      <point x=\"383\" y=\"863\"/>\n      <point x=\"336\" y=\"748\" type=\"curve\"/>\n      <point x=\"264\" y=\"748\" type=\"line\"/>\n      <point x=\"326\" y=\"476\" type=\"line\"/>\n      <point x=\"326\" y=\"712\"/>\n      <point x=\"431\" y=\"828\"/>\n      <point x=\"640\" y=\"828\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"828\"/>\n      <point x=\"914\" y=\"735\"/>\n      <point x=\"914\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"232\" y=\"0\" type=\"line\"/>\n      <point x=\"326\" y=\"0\" type=\"line\"/>\n      <point x=\"326\" y=\"1500\" type=\"line\"/>\n      <point x=\"232\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"25\" y=\"1188\" type=\"line\"/>\n      <point x=\"770\" y=\"1188\" type=\"line\"/>\n      <point x=\"770\" y=\"1278\" type=\"line\"/>\n      <point x=\"25\" y=\"1278\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"_tahabove\" xOffset=\"-577\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"_tahabove\" xOffset=\"-667\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"_tahabove\" xOffset=\"23\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0679\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"_tahabove\" xOffset=\"23\" yOffset=\"314\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"_tahabove\" xOffset=\"365\" yOffset=\"406\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"_tahabove\" xOffset=\"305\" yOffset=\"406\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"_tahabove\" xOffset=\"43\" yOffset=\"344\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-610\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-700\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.fina\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-10\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"067A\"/>\n  <outline>\n    <component base=\"behDotless-ar\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"-10\" yOffset=\"63\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"335\" yOffset=\"255\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"275\" yOffset=\"255\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tteheh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotsverticalabove-ar\" xOffset=\"10\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/tugrik.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"tugrik\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AE\"/>\n  <outline>\n    <contour>\n      <point x=\"161\" y=\"698\" type=\"line\"/>\n      <point x=\"1039\" y=\"848\" type=\"line\"/>\n      <point x=\"1039\" y=\"942\" type=\"line\"/>\n      <point x=\"161\" y=\"792\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"161\" y=\"368\" type=\"line\"/>\n      <point x=\"1039\" y=\"518\" type=\"line\"/>\n      <point x=\"1039\" y=\"612\" type=\"line\"/>\n      <point x=\"161\" y=\"462\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0662\"/>\n  <outline>\n    <contour>\n      <point x=\"525\" y=\"0\" type=\"curve\"/>\n      <point x=\"621\" y=\"0\" type=\"line\"/>\n      <point x=\"621\" y=\"421\"/>\n      <point x=\"517\" y=\"814\"/>\n      <point x=\"392\" y=\"1097\" type=\"curve\"/>\n      <point x=\"370\" y=\"1067\" type=\"line\"/>\n      <point x=\"406\" y=\"972\"/>\n      <point x=\"508\" y=\"921\"/>\n      <point x=\"675\" y=\"921\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"921\"/>\n      <point x=\"1039\" y=\"1013\"/>\n      <point x=\"1039\" y=\"1282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1039\" y=\"1326\"/>\n      <point x=\"1037\" y=\"1380\"/>\n      <point x=\"1034\" y=\"1420\" type=\"curve\"/>\n      <point x=\"942\" y=\"1420\" type=\"line\"/>\n      <point x=\"946\" y=\"1379\"/>\n      <point x=\"949\" y=\"1327\"/>\n      <point x=\"949\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"949\" y=\"1067\"/>\n      <point x=\"850\" y=\"1015\"/>\n      <point x=\"670\" y=\"1015\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"1015\"/>\n      <point x=\"436\" y=\"1060\"/>\n      <point x=\"392\" y=\"1148\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"363\" y=\"1206\"/>\n      <point x=\"326\" y=\"1300\"/>\n      <point x=\"271\" y=\"1442\" type=\"curve\"/>\n      <point x=\"176\" y=\"1412\" type=\"line\"/>\n      <point x=\"365\" y=\"973\"/>\n      <point x=\"532\" y=\"453\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"511\" y=\"-1\" type=\"curve\"/>\n      <point x=\"604\" y=\"-1\" type=\"line\"/>\n      <point x=\"604\" y=\"188\"/>\n      <point x=\"566\" y=\"357\"/>\n      <point x=\"502\" y=\"495\" type=\"curve\"/>\n      <point x=\"473\" y=\"429\" type=\"line\"/>\n      <point x=\"508\" y=\"362\"/>\n      <point x=\"557\" y=\"343\"/>\n      <point x=\"626\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"765\" y=\"343\"/>\n      <point x=\"824\" y=\"425\"/>\n      <point x=\"829\" y=\"632\" type=\"curve\"/>\n      <point x=\"740\" y=\"632\" type=\"line\"/>\n      <point x=\"735\" y=\"476\"/>\n      <point x=\"704\" y=\"435\"/>\n      <point x=\"624\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"569\" y=\"435\"/>\n      <point x=\"539\" y=\"449\"/>\n      <point x=\"509\" y=\"506\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"532\"/>\n      <point x=\"478\" y=\"575\"/>\n      <point x=\"452\" y=\"640\" type=\"curve\"/>\n      <point x=\"363\" y=\"604\" type=\"line\"/>\n      <point x=\"446\" y=\"415\"/>\n      <point x=\"515\" y=\"198\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"two-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F2\"/>\n  <outline>\n    <component base=\"two-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two-persian.small01.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-persian.small01\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"620\" y=\"1334\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1641\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"555\" y=\"1163\" type=\"curve\"/>\n      <point x=\"633\" y=\"1163\" type=\"line\"/>\n      <point x=\"627\" y=\"1234\"/>\n      <point x=\"602\" y=\"1378\"/>\n      <point x=\"562\" y=\"1463\" type=\"curve\"/>\n      <point x=\"539\" y=\"1434\" type=\"line\"/>\n      <point x=\"557\" y=\"1403\"/>\n      <point x=\"577\" y=\"1377\"/>\n      <point x=\"643\" y=\"1377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"741\" y=\"1377\"/>\n      <point x=\"790\" y=\"1425\"/>\n      <point x=\"790\" y=\"1586\" type=\"curve\"/>\n      <point x=\"713\" y=\"1586\" type=\"line\"/>\n      <point x=\"711\" y=\"1469\"/>\n      <point x=\"688\" y=\"1453\"/>\n      <point x=\"633\" y=\"1453\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"1453\"/>\n      <point x=\"577\" y=\"1469\"/>\n      <point x=\"564\" y=\"1501\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"554\" y=\"1527\"/>\n      <point x=\"541\" y=\"1561\"/>\n      <point x=\"530\" y=\"1594\" type=\"curve\"/>\n      <point x=\"451\" y=\"1572\" type=\"line\"/>\n      <point x=\"499\" y=\"1443\"/>\n      <point x=\"544\" y=\"1293\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"two-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-arinferior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"two-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>two-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"twosuperior\" yOffset=\"-803\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0032\"/>\n  <outline>\n    <contour>\n      <point x=\"176\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"0\" type=\"line\"/>\n      <point x=\"276\" y=\"100\" type=\"line\"/>\n      <point x=\"744\" y=\"354\"/>\n      <point x=\"992\" y=\"654\"/>\n      <point x=\"992\" y=\"1002\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"1280\"/>\n      <point x=\"838\" y=\"1440\"/>\n      <point x=\"568\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"371\" y=\"1440\"/>\n      <point x=\"236\" y=\"1371\"/>\n      <point x=\"130\" y=\"1261\" type=\"curve\"/>\n      <point x=\"188\" y=\"1204\" type=\"line\"/>\n      <point x=\"298\" y=\"1302\"/>\n      <point x=\"423\" y=\"1350\"/>\n      <point x=\"564\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"1350\"/>\n      <point x=\"896\" y=\"1223\"/>\n      <point x=\"896\" y=\"1002\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"688\"/>\n      <point x=\"657\" y=\"399\"/>\n      <point x=\"176\" y=\"133\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"236\" y=\"0\" type=\"line\"/>\n      <point x=\"1052\" y=\"0\" type=\"line\"/>\n      <point x=\"1052\" y=\"90\" type=\"line\"/>\n      <point x=\"236\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"130\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"0\" type=\"line\"/>\n      <point x=\"286\" y=\"100\" type=\"line\"/>\n      <point x=\"565\" y=\"196\"/>\n      <point x=\"715\" y=\"323\"/>\n      <point x=\"715\" y=\"455\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"583\"/>\n      <point x=\"608\" y=\"648\"/>\n      <point x=\"411\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"277\" y=\"648\"/>\n      <point x=\"168\" y=\"615\"/>\n      <point x=\"98\" y=\"577\" type=\"curve\"/>\n      <point x=\"136\" y=\"492\" type=\"line\"/>\n      <point x=\"215\" y=\"534\"/>\n      <point x=\"313\" y=\"558\"/>\n      <point x=\"409\" y=\"558\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"558\"/>\n      <point x=\"617\" y=\"523\"/>\n      <point x=\"617\" y=\"455\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"331\"/>\n      <point x=\"456\" y=\"213\"/>\n      <point x=\"130\" y=\"105\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"172\" y=\"0\" type=\"line\"/>\n      <point x=\"757\" y=\"0\" type=\"line\"/>\n      <point x=\"757\" y=\"88\" type=\"line\"/>\n      <point x=\"172\" y=\"88\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/two.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"two.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"twosuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotshorizontalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotshorizontalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"611\" y=\"962\" name=\"top\"/>\n  <outline>\n    <component base=\"_twodotshorizontal-ar\" yOffset=\"200\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_twodotshorizontal-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotshorizontalabove-ar.v2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotshorizontalabove-ar.v2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"580\" y=\"602\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"962\" name=\"top\"/>\n  <outline>\n    <component base=\"dotabove-ar\" xOffset=\"-120\" yOffset=\"-65\"/>\n    <component base=\"dotabove-ar\" xOffset=\"143\" yOffset=\"82\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotshorizontalbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotshorizontalbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-406\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"149\" yOffset=\"-763\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-101\" yOffset=\"-763\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotshorizontalcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotshorizontalcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"149\" yOffset=\"-195\"/>\n    <component base=\"_dot-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-101\" yOffset=\"-195\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotstahbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotstahbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-586\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_tahabovesmall\" xOffset=\"2\" yOffset=\"-716\"/>\n    <component base=\"_dot-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"271\" yOffset=\"-889\"/>\n    <component base=\"_dot-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"90\" yOffset=\"-889\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabovesmall</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotstahcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotstahcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"_tahabovesmall\" yOffset=\"-50\"/>\n    <component base=\"_dot-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"269\" yOffset=\"-223\"/>\n    <component base=\"_dot-ar\" xScale=\"0.7\" yScale=\"0.7\" xOffset=\"88\" yOffset=\"-223\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabovesmall</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_dot-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotsverticalabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotsverticalabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"752\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"562\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"1152\" name=\"top\"/>\n  <outline>\n    <component base=\"_twodotsverticalabove-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotsverticalbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotsverticalbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"602\" y=\"-2\" name=\"_bottom.dot\"/>\n  <anchor x=\"603\" y=\"-626\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_twodotsverticalabove-ar\" yOffset=\"-1223\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_twodotsverticalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotsverticalcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twodotsverticalcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"599\" y=\"320\" name=\"_center\"/>\n  <outline>\n    <component base=\"dotbelow-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"21\" yOffset=\"698\"/>\n    <component base=\"dotbelow-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"18\" yOffset=\"413\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twoinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twoinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2082\"/>\n  <outline>\n    <component base=\"twosuperior\" yOffset=\"-803\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/twosuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"twosuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B2\"/>\n  <outline>\n    <contour>\n      <point x=\"379\" y=\"802\" type=\"line\"/>\n      <point x=\"521\" y=\"802\" type=\"line\"/>\n      <point x=\"521\" y=\"905\" type=\"line\"/>\n      <point x=\"722\" y=\"988\"/>\n      <point x=\"821\" y=\"1100\"/>\n      <point x=\"821\" y=\"1242\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"1374\"/>\n      <point x=\"743\" y=\"1440\"/>\n      <point x=\"587\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"1440\"/>\n      <point x=\"417\" y=\"1420\"/>\n      <point x=\"354\" y=\"1382\" type=\"curve\"/>\n      <point x=\"389\" y=\"1298\" type=\"line\"/>\n      <point x=\"456\" y=\"1331\"/>\n      <point x=\"527\" y=\"1348\"/>\n      <point x=\"587\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"1348\"/>\n      <point x=\"725\" y=\"1312\"/>\n      <point x=\"725\" y=\"1240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"1124\"/>\n      <point x=\"611\" y=\"1021\"/>\n      <point x=\"379\" y=\"909\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"405\" y=\"802\" type=\"line\"/>\n      <point x=\"847\" y=\"802\" type=\"line\"/>\n      <point x=\"847\" y=\"892\" type=\"line\"/>\n      <point x=\"405\" y=\"892\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/u-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"_damma-ar\" xOffset=\"63\" yOffset=\"-329\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/u-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C7\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"_damma-ar\" xOffset=\"63\" yOffset=\"-329\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/u-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0443\"/>\n  <outline>\n    <component base=\"y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"u\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0075\"/>\n  <anchor x=\"560\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1070\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"580\" y=\"1060\" name=\"top\"/>\n  <anchor x=\"1110\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"546\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"-20\"/>\n      <point x=\"837\" y=\"62\"/>\n      <point x=\"878\" y=\"204\" type=\"curve\"/>\n      <point x=\"938\" y=\"204\" type=\"line\"/>\n      <point x=\"884\" y=\"490\" type=\"line\"/>\n      <point x=\"884\" y=\"188\"/>\n      <point x=\"772\" y=\"72\"/>\n      <point x=\"556\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"72\"/>\n      <point x=\"264\" y=\"175\"/>\n      <point x=\"264\" y=\"360\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"1060\" type=\"line\"/>\n      <point x=\"170\" y=\"1060\" type=\"line\"/>\n      <point x=\"170\" y=\"360\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"170\" y=\"118\"/>\n      <point x=\"306\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"902\" y=\"-10\" type=\"line\"/>\n      <point x=\"1124\" y=\"0\" type=\"line\"/>\n      <point x=\"1124\" y=\"63\" type=\"line\"/>\n      <point x=\"978\" y=\"73\" type=\"line\"/>\n      <point x=\"978\" y=\"430\" type=\"line\"/>\n      <point x=\"884\" y=\"430\" type=\"line\"/>\n      <point x=\"892\" y=\"244\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"884\" y=\"300\" type=\"line\"/>\n      <point x=\"978\" y=\"260\" type=\"line\"/>\n      <point x=\"978\" y=\"1060\" type=\"line\"/>\n      <point x=\"884\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"696\" y=\"1289\" name=\"top\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"302\" yOffset=\"-289\"/>\n    <component base=\"_damma-ar\" xOffset=\"-150\" yOffset=\"-359\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>waw-ar.fina</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_damma-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0677\"/>\n  <anchor x=\"696\" y=\"1289\" name=\"top\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"hamzaabove-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"302\" yOffset=\"-289\"/>\n    <component base=\"_damma-ar\" xOffset=\"-150\" yOffset=\"-359\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>_damma-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FA\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"acutecomb\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ubreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ubreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016D\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"brevecomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ucircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ucircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FB\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/udieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"udieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FC\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-18\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/udotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"udotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE5\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ugrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ugrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F9\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"gravecomb\" xOffset=\"-89\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE7\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uhorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B0\"/>\n  <outline>\n    <contour>\n      <point x=\"934\" y=\"995\" type=\"line\"/>\n      <point x=\"974\" y=\"1005\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"1043\"/>\n      <point x=\"1204\" y=\"1154\"/>\n      <point x=\"1204\" y=\"1343\" type=\"curve\"/>\n      <point x=\"1108\" y=\"1343\" type=\"line\"/>\n      <point x=\"1108\" y=\"1191\"/>\n      <point x=\"1047\" y=\"1100\"/>\n      <point x=\"924\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <component base=\"u\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uhornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE9\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"acutecomb\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uhorndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF1\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uhorngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEB\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"gravecomb\" xOffset=\"-89\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uhornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EED\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uhorntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEF\"/>\n  <outline>\n    <component base=\"uhorn\"/>\n    <component base=\"tildecomb\" xOffset=\"-13\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uhungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uhungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0171\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"hungarumlautcomb\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/umacron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"umacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04EF\"/>\n  <outline>\n    <component base=\"u-cy\"/>\n    <component base=\"macroncomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/umacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"umacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016B\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"macroncomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005F\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"-90\" type=\"line\"/>\n      <point x=\"1100\" y=\"-90\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-20\" y=\"-88\" type=\"line\"/>\n      <point x=\"1100\" y=\"-88\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"-20\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-50\" y=\"-88\" type=\"line\"/>\n      <point x=\"1250\" y=\"-88\" type=\"line\"/>\n      <point x=\"1250\" y=\"0\" type=\"line\"/>\n      <point x=\"-50\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"-88\" type=\"line\"/>\n      <point x=\"1220\" y=\"-88\" type=\"line\"/>\n      <point x=\"1220\" y=\"0\" type=\"line\"/>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore_underscore.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscore_underscore.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"280\" y=\"-90\" type=\"line\"/>\n      <point x=\"2120\" y=\"-90\" type=\"line\"/>\n      <point x=\"2120\" y=\"0\" type=\"line\"/>\n      <point x=\"280\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/underscoredbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"underscoredbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2017\"/>\n  <outline>\n    <component base=\"underscore\"/>\n    <component base=\"underscore\" yOffset=\"-304\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_3.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B3.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.fina\"/>\n    <component base=\"threedotsdowncenter-ar\" xScale=\"0.9\" yScale=\"0.9\" xOffset=\"94\" yOffset=\"-502\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B3\"/>\n  <outline>\n    <component base=\"ain-ar\"/>\n    <component base=\"threedotsdowncenter-ar\" xScale=\"1.001\" xOffset=\"58\" yOffset=\"-436\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_3.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B3.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ain-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_3.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B3.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <guideline x=\"-2280\" y=\"526\" angle=\"0\"/>\n  <outline>\n    <component base=\"ain-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"9\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_4.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B4.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.fina\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B4\"/>\n  <outline>\n    <component base=\"kaf-ar\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_4.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B4.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.init\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"-33\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_4.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B4.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"kaf-ar.medi\"/>\n    <component base=\"dotbelow-ar\" xOffset=\"47\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_9.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uni08B9.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"noonabove-ar\" xOffset=\"80\" yOffset=\"-445\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uniF_B_C_0.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uniFBC0\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FBC0\"/>\n  <outline>\n    <component base=\"_tahabove\" xOffset=\"33\" yOffset=\"77\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_tahabove</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/unitS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"unitSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241F\"/>\n  <outline>\n    <component base=\"U.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>U.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0173\"/>\n  <anchor x=\"560\" y=\"-424\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"1006\" y=\"-424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"-424\"/>\n      <point x=\"1068\" y=\"-423\"/>\n      <point x=\"1100\" y=\"-415\" type=\"curve\"/>\n      <point x=\"1107\" y=\"-332\" type=\"line\"/>\n      <point x=\"1080\" y=\"-335\"/>\n      <point x=\"1053\" y=\"-337\"/>\n      <point x=\"1032\" y=\"-337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"-337\"/>\n      <point x=\"870\" y=\"-290\"/>\n      <point x=\"870\" y=\"-208\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"870\" y=\"-87\"/>\n      <point x=\"963\" y=\"0\"/>\n      <point x=\"1124\" y=\"0\" type=\"curve\"/>\n      <point x=\"999\" y=\"32\" type=\"line\"/>\n      <point x=\"919\" y=\"50\" type=\"line\"/>\n      <point x=\"919\" y=\"-15\" type=\"line\"/>\n      <point x=\"828\" y=\"-63\"/>\n      <point x=\"776\" y=\"-139\"/>\n      <point x=\"776\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"-351\"/>\n      <point x=\"860\" y=\"-424\"/>\n    </contour>\n    <component base=\"u\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2191\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"1380\" type=\"line\"/>\n      <point x=\"553\" y=\"1380\" type=\"line\"/>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1006\" y=\"1052\" type=\"line\"/>\n      <point x=\"611\" y=\"1440\" type=\"line\"/>\n      <point x=\"589\" y=\"1440\" type=\"line\"/>\n      <point x=\"194\" y=\"1052\" type=\"line\"/>\n      <point x=\"251\" y=\"988\" type=\"line\"/>\n      <point x=\"591\" y=\"1327\" type=\"line\"/>\n      <point x=\"609\" y=\"1327\" type=\"line\"/>\n      <point x=\"949\" y=\"988\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B4\"/>\n  <note>\nuni25B4\n</note>\n  <outline>\n    <contour>\n      <point x=\"131\" y=\"305\" type=\"line\"/>\n      <point x=\"1069\" y=\"305\" type=\"line\"/>\n      <point x=\"600\" y=\"1102\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B2\"/>\n  <note>\ntriagup\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"230\" type=\"line\"/>\n      <point x=\"1200\" y=\"230\" type=\"line\"/>\n      <point x=\"600\" y=\"1250\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upD_ashA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upDashArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21E1\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"184\" type=\"line\"/>\n      <point x=\"553\" y=\"184\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"344\" type=\"line\"/>\n      <point x=\"647\" y=\"344\" type=\"line\"/>\n      <point x=\"647\" y=\"486\" type=\"line\"/>\n      <point x=\"553\" y=\"486\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"626\" type=\"line\"/>\n      <point x=\"647\" y=\"626\" type=\"line\"/>\n      <point x=\"647\" y=\"768\" type=\"line\"/>\n      <point x=\"553\" y=\"768\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"918\" type=\"line\"/>\n      <point x=\"647\" y=\"918\" type=\"line\"/>\n      <point x=\"647\" y=\"1342\" type=\"line\"/>\n      <point x=\"553\" y=\"1342\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"251\" y=\"988\" type=\"line\"/>\n      <point x=\"591\" y=\"1327\" type=\"line\"/>\n      <point x=\"609\" y=\"1327\" type=\"line\"/>\n      <point x=\"949\" y=\"988\" type=\"line\"/>\n      <point x=\"1006\" y=\"1052\" type=\"line\"/>\n      <point x=\"611\" y=\"1440\" type=\"line\"/>\n      <point x=\"589\" y=\"1440\" type=\"line\"/>\n      <point x=\"194\" y=\"1052\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upD_ownA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upDownArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2195\"/>\n  <outline>\n    <contour>\n      <point x=\"251\" y=\"988\" type=\"line\"/>\n      <point x=\"591\" y=\"1327\" type=\"line\"/>\n      <point x=\"609\" y=\"1327\" type=\"line\"/>\n      <point x=\"949\" y=\"988\" type=\"line\"/>\n      <point x=\"1006\" y=\"1052\" type=\"line\"/>\n      <point x=\"611\" y=\"1440\" type=\"line\"/>\n      <point x=\"589\" y=\"1440\" type=\"line\"/>\n      <point x=\"194\" y=\"1052\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"589\" y=\"-20\" type=\"line\"/>\n      <point x=\"611\" y=\"-20\" type=\"line\"/>\n      <point x=\"1006\" y=\"368\" type=\"line\"/>\n      <point x=\"949\" y=\"432\" type=\"line\"/>\n      <point x=\"609\" y=\"93\" type=\"line\"/>\n      <point x=\"591\" y=\"93\" type=\"line\"/>\n      <point x=\"251\" y=\"432\" type=\"line\"/>\n      <point x=\"194\" y=\"368\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"40\" type=\"line\"/>\n      <point x=\"647\" y=\"40\" type=\"line\"/>\n      <point x=\"647\" y=\"1380\" type=\"line\"/>\n      <point x=\"553\" y=\"1380\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upD_ownbaseA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upDownbaseArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21A8\"/>\n  <outline>\n    <contour>\n      <point x=\"120\" y=\"-88\" type=\"line\"/>\n      <point x=\"1080\" y=\"-88\" type=\"line\"/>\n      <point x=\"1080\" y=\"0\" type=\"line\"/>\n      <point x=\"120\" y=\"0\" type=\"line\"/>\n    </contour>\n    <component base=\"upDownArrow\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upL_eftH_alfB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upLeftHalfBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25ED\"/>\n  <note>\nuni25ED\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"280\" type=\"line\"/>\n      <point x=\"600\" y=\"1104\" type=\"line\"/>\n      <point x=\"110\" y=\"280\" type=\"line\"/>\n    </contour>\n    <component base=\"upWhiteTriangle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upR_ightH_alfB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upRightHalfBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EE\"/>\n  <note>\nuni25EE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"280\" type=\"line\"/>\n      <point x=\"1090\" y=\"280\" type=\"line\"/>\n      <point x=\"600\" y=\"1104\" type=\"line\"/>\n    </contour>\n    <component base=\"upWhiteTriangle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B5\"/>\n  <note>\nuni25B5\n</note>\n  <outline>\n    <contour>\n      <point x=\"131\" y=\"305\" type=\"line\"/>\n      <point x=\"1069\" y=\"305\" type=\"line\"/>\n      <point x=\"600\" y=\"1102\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"266\" y=\"358\" type=\"line\"/>\n      <point x=\"637\" y=\"986\" type=\"line\"/>\n      <point x=\"566\" y=\"986\" type=\"line\"/>\n      <point x=\"939\" y=\"349\" type=\"line\"/>\n      <point x=\"945\" y=\"395\" type=\"line\"/>\n      <point x=\"262\" y=\"395\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B3\"/>\n  <note>\nuni25B3\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"230\" type=\"line\"/>\n      <point x=\"1200\" y=\"230\" type=\"line\"/>\n      <point x=\"600\" y=\"1250\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"116\" y=\"250\" type=\"line\"/>\n      <point x=\"604\" y=\"1080\" type=\"line\"/>\n      <point x=\"596\" y=\"1080\" type=\"line\"/>\n      <point x=\"1081\" y=\"256\" type=\"line\"/>\n      <point x=\"1089\" y=\"310\" type=\"line\"/>\n      <point x=\"119\" y=\"310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upW_hiteT_riangleW_ithD_ot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upWhiteTriangleWithDot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EC\"/>\n  <note>\nuni25EC\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"515\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"641\" y=\"515\"/>\n      <point x=\"675\" y=\"549\"/>\n      <point x=\"675\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"675\" y=\"631\"/>\n      <point x=\"641\" y=\"665\"/>\n      <point x=\"600\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"559\" y=\"665\"/>\n      <point x=\"525\" y=\"631\"/>\n      <point x=\"525\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"549\"/>\n      <point x=\"559\" y=\"515\"/>\n    </contour>\n    <component base=\"upWhiteTriangle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB80\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperFiveEighthsBlock\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\r\n      <point x=\"0\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperFiveEighthsBlock.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\r\n      <point x=\"0\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E0\"/>\n  <note>\nuni25E0\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"171\" y=\"710\" type=\"line\"/>\n      <point x=\"171\" y=\"971\"/>\n      <point x=\"341\" y=\"1143\"/>\n      <point x=\"600\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"1143\"/>\n      <point x=\"1029\" y=\"971\"/>\n      <point x=\"1029\" y=\"710\" type=\"curve\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D3\"/>\n  <note>\nuni25D3\n</note>\n  <outline>\n    <contour>\n      <point x=\"135\" y=\"710\" type=\"line\"/>\n      <point x=\"1065\" y=\"710\" type=\"line\"/>\n      <point x=\"984\" y=\"1051\" type=\"line\"/>\n      <point x=\"594\" y=\"1198\" type=\"line\"/>\n      <point x=\"241\" y=\"1051\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2580\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfI_nverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperHalfInverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DA\"/>\n  <note>\nuni25DA\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"171\" y=\"710\" type=\"curve\"/>\n      <point x=\"1029\" y=\"710\" type=\"line\"/>\n      <point x=\"1029\" y=\"971\"/>\n      <point x=\"859\" y=\"1143\"/>\n      <point x=\"600\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"1143\"/>\n      <point x=\"171\" y=\"971\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerLeftAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2599\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerLeftAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259C\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftAndUpperRightAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DC\"/>\n  <note>\nuni25DC\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"171\" y=\"710\" type=\"line\"/>\n      <point x=\"171\" y=\"971\"/>\n      <point x=\"341\" y=\"1143\"/>\n      <point x=\"600\" y=\"1143\" type=\"curve\"/>\n      <point x=\"600\" y=\"1235\" type=\"line\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E4\"/>\n  <note>\nuni25E4\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2598\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftD_iagonalH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftDiagonalHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E9\"/>\n  <note>\nuni25E9\n</note>\n  <outline>\n    <contour>\n      <point x=\"101\" y=\"221\" type=\"line\"/>\n      <point x=\"1089\" y=\"1200\" type=\"line\"/>\n      <point x=\"101\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F4\"/>\n  <note>\nuni25F4\n</note>\n  <outline>\n    <contour>\n      <point x=\"153\" y=\"665\" type=\"line\"/>\n      <point x=\"647\" y=\"665\" type=\"line\"/>\n      <point x=\"647\" y=\"1168\" type=\"line\"/>\n      <point x=\"553\" y=\"1168\" type=\"line\"/>\n      <point x=\"553\" y=\"755\" type=\"line\"/>\n      <point x=\"153\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F8\"/>\n  <note>\nuni25F8\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"86\" y=\"328\" type=\"line\"/>\n      <point x=\"169\" y=\"326\" type=\"line\"/>\n      <point x=\"169\" y=\"1216\" type=\"line\"/>\n      <point x=\"94\" y=\"1145\" type=\"line\"/>\n      <point x=\"974\" y=\"1145\" type=\"line\"/>\n      <point x=\"974\" y=\"1216\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperLeftWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D5\"/>\n  <note>\nuni25D5\n</note>\n  <outline>\n    <contour>\n      <point x=\"431\" y=\"225\" type=\"line\"/>\n      <point x=\"875\" y=\"276\" type=\"line\"/>\n      <point x=\"1072\" y=\"561\" type=\"line\"/>\n      <point x=\"1072\" y=\"901\" type=\"line\"/>\n      <point x=\"780\" y=\"1185\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"125\" y=\"534\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2594\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftAndLowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259F\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftAndLowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightAndLowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DD\"/>\n  <note>\nuni25DD\n</note>\n  <outline>\n    <contour>\n      <point x=\"1029\" y=\"710\" type=\"curve\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\"/>\n      <point x=\"600\" y=\"1143\" type=\"line\"/>\n      <point x=\"859\" y=\"1143\"/>\n      <point x=\"1029\" y=\"971\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D4\"/>\n  <note>\nuni25D4\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n      <point x=\"959\" y=\"1080\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E5\"/>\n  <note>\nuni25E5\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"259D\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F7\"/>\n  <note>\nuni25F7\n</note>\n  <outline>\n    <contour>\n      <point x=\"555\" y=\"663\" type=\"line\"/>\n      <point x=\"1058\" y=\"663\" type=\"line\"/>\n      <point x=\"1058\" y=\"757\" type=\"line\"/>\n      <point x=\"645\" y=\"757\" type=\"line\"/>\n      <point x=\"645\" y=\"1157\" type=\"line\"/>\n      <point x=\"555\" y=\"1157\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperRightTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F9\"/>\n  <note>\nuni25F9\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1114\" y=\"328\" type=\"line\"/>\n      <point x=\"226\" y=\"1216\" type=\"line\"/>\n      <point x=\"226\" y=\"1145\" type=\"line\"/>\n      <point x=\"1106\" y=\"1145\" type=\"line\"/>\n      <point x=\"1031\" y=\"1216\" type=\"line\"/>\n      <point x=\"1031\" y=\"326\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperSevenEighthsBlock\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperSevenEighthsBlock.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperThreeEighthsBlock\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"upperThreeEighthsBlock.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperlefttolowerrightF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperlefttolowerrightFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A7\"/>\n  <note>\nuni25A7\n</note>\n  <outline>\n    <contour>\n      <point x=\"116\" y=\"1133\" type=\"line\"/>\n      <point x=\"1031\" y=\"218\" type=\"line\"/>\n      <point x=\"1092\" y=\"289\" type=\"line\"/>\n      <point x=\"187\" y=\"1194\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"689\" type=\"line\"/>\n      <point x=\"593\" y=\"246\" type=\"line\"/>\n      <point x=\"725\" y=\"246\" type=\"line\"/>\n      <point x=\"150\" y=\"821\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"482\" y=\"1177\" type=\"line\"/>\n      <point x=\"1080\" y=\"579\" type=\"line\"/>\n      <point x=\"1080\" y=\"711\" type=\"line\"/>\n      <point x=\"614\" y=\"1177\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upperrighttolowerleftF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upperrighttolowerleftFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A8\"/>\n  <note>\nuni25A8\n</note>\n  <outline>\n    <contour>\n      <point x=\"1084\" y=\"1133\" type=\"line\"/>\n      <point x=\"1013\" y=\"1194\" type=\"line\"/>\n      <point x=\"108\" y=\"289\" type=\"line\"/>\n      <point x=\"169\" y=\"218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"689\" type=\"line\"/>\n      <point x=\"1050\" y=\"821\" type=\"line\"/>\n      <point x=\"475\" y=\"246\" type=\"line\"/>\n      <point x=\"607\" y=\"246\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"718\" y=\"1177\" type=\"line\"/>\n      <point x=\"586\" y=\"1177\" type=\"line\"/>\n      <point x=\"120\" y=\"711\" type=\"line\"/>\n      <point x=\"120\" y=\"579\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilon-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilon-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"028A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1059\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1000\" type=\"line\"/>\n      <point x=\"350\" y=\"961\" type=\"line\"/>\n      <point x=\"199\" y=\"896\"/>\n      <point x=\"100\" y=\"713\"/>\n      <point x=\"100\" y=\"500\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"100\" y=\"190\"/>\n      <point x=\"299\" y=\"-15\"/>\n      <point x=\"600\" y=\"-15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"-15\"/>\n      <point x=\"1100\" y=\"190\"/>\n      <point x=\"1100\" y=\"500\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1100\" y=\"717\"/>\n      <point x=\"1010\" y=\"900\"/>\n      <point x=\"874\" y=\"961\" type=\"curve\"/>\n      <point x=\"874\" y=\"994\" type=\"line\"/>\n      <point x=\"694\" y=\"969\" type=\"line\"/>\n      <point x=\"881\" y=\"922\"/>\n      <point x=\"1004\" y=\"747\"/>\n      <point x=\"1004\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"257\"/>\n      <point x=\"844\" y=\"77\"/>\n      <point x=\"600\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"77\"/>\n      <point x=\"196\" y=\"257\"/>\n      <point x=\"196\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"743\"/>\n      <point x=\"329\" y=\"918\"/>\n      <point x=\"530\" y=\"969\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"1059\" type=\"line\"/>\n      <point x=\"128\" y=\"969\" type=\"line\"/>\n      <point x=\"530\" y=\"969\" type=\"line\"/>\n      <point x=\"530\" y=\"1059\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"694\" y=\"1059\" type=\"line\"/>\n      <point x=\"694\" y=\"969\" type=\"line\"/>\n      <point x=\"1072\" y=\"969\" type=\"line\"/>\n      <point x=\"1072\" y=\"1059\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C5\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"640\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"-20\"/>\n      <point x=\"1020\" y=\"127\"/>\n      <point x=\"1020\" y=\"410\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1020\" y=\"1060\" type=\"line\"/>\n      <point x=\"926\" y=\"1060\" type=\"line\"/>\n      <point x=\"926\" y=\"410\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"926\" y=\"188\"/>\n      <point x=\"828\" y=\"72\"/>\n      <point x=\"640\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"72\"/>\n      <point x=\"353\" y=\"188\"/>\n      <point x=\"353\" y=\"410\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"830\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"984\"/>\n      <point x=\"290\" y=\"1060\"/>\n      <point x=\"163\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"29\" y=\"1060\" type=\"line\"/>\n      <point x=\"29\" y=\"970\" type=\"line\"/>\n      <point x=\"147\" y=\"970\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"222\" y=\"970\"/>\n      <point x=\"259\" y=\"924\"/>\n      <point x=\"259\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"259\" y=\"410\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"259\" y=\"127\"/>\n      <point x=\"390\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilondieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilondieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CB\"/>\n  <outline>\n    <component base=\"upsilon\"/>\n    <component base=\"dieresiscomb\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilondieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilondieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B0\"/>\n  <outline>\n    <component base=\"upsilon\"/>\n    <component base=\"dieresistonos\" xOffset=\"22\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"upsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CD\"/>\n  <outline>\n    <component base=\"upsilon\"/>\n    <component base=\"tonos\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/uring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"uring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016F\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"ringcomb\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ushort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ushort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045E\"/>\n  <outline>\n    <component base=\"u-cy\"/>\n    <component base=\"brevecomb-cy\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ustraight-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ustraight-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04AF\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"563\" y=\"0\" type=\"line\"/>\n      <point x=\"637\" y=\"0\" type=\"line\"/>\n      <point x=\"1096\" y=\"1060\" type=\"line\"/>\n      <point x=\"994\" y=\"1060\" type=\"line\"/>\n      <point x=\"569\" y=\"70\" type=\"line\"/>\n      <point x=\"631\" y=\"70\" type=\"line\"/>\n      <point x=\"206\" y=\"1060\" type=\"line\"/>\n      <point x=\"104\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-460\" type=\"line\"/>\n      <point x=\"647\" y=\"-460\" type=\"line\"/>\n      <point x=\"647\" y=\"36\" type=\"line\"/>\n      <point x=\"553\" y=\"36\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ustraightstroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ustraightstroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B1\"/>\n  <outline>\n    <contour>\n      <point x=\"215\" y=\"-90\" type=\"line\"/>\n      <point x=\"986\" y=\"-90\" type=\"line\"/>\n      <point x=\"986\" y=\"0\" type=\"line\"/>\n      <point x=\"215\" y=\"0\" type=\"line\"/>\n    </contour>\n    <component base=\"ustraight-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/utilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"utilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0169\"/>\n  <outline>\n    <component base=\"u\"/>\n    <component base=\"tildecomb\" xOffset=\"-13\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/v.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"v\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0076\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"534\" y=\"0\" type=\"line\"/>\n      <point x=\"666\" y=\"0\" type=\"line\"/>\n      <point x=\"1096\" y=\"1060\" type=\"line\"/>\n      <point x=\"995\" y=\"1060\" type=\"line\"/>\n      <point x=\"606\" y=\"80\" type=\"line\"/>\n      <point x=\"598\" y=\"80\" type=\"line\"/>\n      <point x=\"205\" y=\"1060\" type=\"line\"/>\n      <point x=\"104\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/vabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vabove-ar\" format=\"2\">\n  <unicode hex=\"065A\"/>\n  <anchor x=\"601\" y=\"782\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"952\" name=\"top\"/>\n  <outline>\n    <component base=\"_vabove\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/vav-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vav-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D5\"/>\n  <guideline x=\"1153\" y=\"634\" angle=\"90\"/>\n  <guideline x=\"45\" y=\"609\" angle=\"90\"/>\n  <anchor x=\"400\" y=\"590\" name=\"center\"/>\n  <anchor x=\"470\" y=\"1200\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"659\" y=\"0\" type=\"line\"/>\n      <point x=\"758\" y=\"0\" type=\"line\"/>\n      <point x=\"758\" y=\"1200\" type=\"line\"/>\n      <point x=\"659\" y=\"1200\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"191\" y=\"1101\" type=\"line\"/>\n      <point x=\"757\" y=\"1101\" type=\"line\"/>\n      <point x=\"757\" y=\"1200\" type=\"line\"/>\n      <point x=\"191\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/vavdagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vavdagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB35\"/>\n  <outline>\n    <component base=\"vav-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-200\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/vavholam-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vavholam-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB4B\"/>\n  <outline>\n    <component base=\"vav-hb\"/>\n    <component base=\"holam-hb\" xOffset=\"-130\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ve-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"70\" yOffset=\"228\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ve-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CB\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"70\" yOffset=\"228\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ve-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0432\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"282\" y=\"0\" type=\"line\"/>\n      <point x=\"774\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"0\"/>\n      <point x=\"1070\" y=\"102\"/>\n      <point x=\"1070\" y=\"280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"449\"/>\n      <point x=\"954\" y=\"546\"/>\n      <point x=\"752\" y=\"546\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"546\" type=\"line\"/>\n      <point x=\"262\" y=\"505\" type=\"line\"/>\n      <point x=\"702\" y=\"505\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"505\"/>\n      <point x=\"974\" y=\"423\"/>\n      <point x=\"974\" y=\"280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"159\"/>\n      <point x=\"898\" y=\"90\"/>\n      <point x=\"766\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"282\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"202\" y=\"0\" type=\"line\"/>\n      <point x=\"296\" y=\"0\" type=\"line\"/>\n      <point x=\"296\" y=\"1060\" type=\"line\"/>\n      <point x=\"202\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"244\" y=\"528\" type=\"line\"/>\n      <point x=\"734\" y=\"528\" type=\"line\"/>\n      <point x=\"734\" y=\"566\" type=\"line\"/>\n      <point x=\"244\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"262\" y=\"554\" type=\"line\"/>\n      <point x=\"734\" y=\"554\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"922\" y=\"554\"/>\n      <point x=\"1030\" y=\"639\"/>\n      <point x=\"1030\" y=\"790\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1030\" y=\"962\"/>\n      <point x=\"914\" y=\"1060\"/>\n      <point x=\"712\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"282\" y=\"1060\" type=\"line\"/>\n      <point x=\"282\" y=\"970\" type=\"line\"/>\n      <point x=\"712\" y=\"970\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"970\"/>\n      <point x=\"934\" y=\"904\"/>\n      <point x=\"934\" y=\"790\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"666\"/>\n      <point x=\"840\" y=\"595\"/>\n      <point x=\"676\" y=\"595\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"595\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ve-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ve-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1440\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"-20\"/>\n      <point x=\"1040\" y=\"133\"/>\n      <point x=\"1040\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"601\"/>\n      <point x=\"924\" y=\"734\"/>\n      <point x=\"720\" y=\"739\" type=\"curve\"/>\n      <point x=\"720\" y=\"747\" type=\"line\"/>\n      <point x=\"899\" y=\"773\"/>\n      <point x=\"1000\" y=\"880\"/>\n      <point x=\"1000\" y=\"1090\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"1317\"/>\n      <point x=\"864\" y=\"1440\"/>\n      <point x=\"602\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"1440\"/>\n      <point x=\"174\" y=\"1276\"/>\n      <point x=\"174\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"174\" y=\"470\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"174\" y=\"126\"/>\n      <point x=\"299\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"596\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"379\" y=\"72\"/>\n      <point x=\"270\" y=\"203\"/>\n      <point x=\"270\" y=\"470\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"270\" y=\"940\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"270\" y=\"1214\"/>\n      <point x=\"381\" y=\"1348\"/>\n      <point x=\"602\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1348\"/>\n      <point x=\"904\" y=\"1253\"/>\n      <point x=\"904\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"878\"/>\n      <point x=\"770\" y=\"785\"/>\n      <point x=\"536\" y=\"785\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"785\" type=\"line\"/>\n      <point x=\"258\" y=\"695\" type=\"line\"/>\n      <point x=\"542\" y=\"695\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"695\"/>\n      <point x=\"944\" y=\"594\"/>\n      <point x=\"944\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"199\"/>\n      <point x=\"816\" y=\"72\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/vectorO_rC_rossP_roduct.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vectorOrCrossProduct\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2A2F\"/>\n  <outline>\n    <component base=\"multiply\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-81\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.fina.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"4\" yOffset=\"317\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"244\" yOffset=\"317\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06A4\"/>\n  <outline>\n    <component base=\"fehDotless-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"249\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"155\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"65\" yOffset=\"460\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"veh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fehDotless-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"14\" yOffset=\"317\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/venus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"venus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2640\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"560\"/>\n      <point x=\"1040\" y=\"739\"/>\n      <point x=\"1040\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1040\" y=\"1269\"/>\n      <point x=\"865\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"335\" y=\"1440\"/>\n      <point x=\"160\" y=\"1269\"/>\n      <point x=\"160\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"739\"/>\n      <point x=\"335\" y=\"560\"/>\n    </contour>\n    <contour>\n      <point x=\"206\" y=\"232\" type=\"line\"/>\n      <point x=\"999\" y=\"232\" type=\"line\"/>\n      <point x=\"999\" y=\"322\" type=\"line\"/>\n      <point x=\"206\" y=\"322\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"0\" type=\"line\"/>\n      <point x=\"647\" y=\"620\" type=\"line\"/>\n      <point x=\"553\" y=\"620\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"652\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"652\"/>\n      <point x=\"256\" y=\"794\"/>\n      <point x=\"256\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"256\" y=\"1214\"/>\n      <point x=\"393\" y=\"1348\"/>\n      <point x=\"600\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"807\" y=\"1348\"/>\n      <point x=\"944\" y=\"1214\"/>\n      <point x=\"944\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"794\"/>\n      <point x=\"807\" y=\"652\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verseC_omma-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verseComma-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"060E\"/>\n  <outline>\n    <contour>\n      <point x=\"505\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"758\" y=\"-6\"/>\n      <point x=\"984\" y=\"6\"/>\n      <point x=\"1138\" y=\"18\" type=\"curve\"/>\n      <point x=\"1139\" y=\"112\" type=\"line\"/>\n      <point x=\"996\" y=\"102\"/>\n      <point x=\"762\" y=\"88\"/>\n      <point x=\"504\" y=\"88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"247\" y=\"88\"/>\n      <point x=\"166\" y=\"140\"/>\n      <point x=\"166\" y=\"265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"373\"/>\n      <point x=\"247\" y=\"467\"/>\n      <point x=\"365\" y=\"467\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"467\"/>\n      <point x=\"501\" y=\"381\"/>\n      <point x=\"501\" y=\"255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"182\"/>\n      <point x=\"493\" y=\"134\"/>\n      <point x=\"482\" y=\"63\" type=\"curve\"/>\n      <point x=\"570\" y=\"49\" type=\"line\"/>\n      <point x=\"584\" y=\"117\"/>\n      <point x=\"593\" y=\"192\"/>\n      <point x=\"593\" y=\"267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"442\"/>\n      <point x=\"538\" y=\"561\"/>\n      <point x=\"370\" y=\"561\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"198\" y=\"561\"/>\n      <point x=\"74\" y=\"425\"/>\n      <point x=\"74\" y=\"265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"74\" y=\"73\"/>\n      <point x=\"180\" y=\"-6\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalB_isectingL_ineW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalBisectingLineWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EB\"/>\n  <note>\nuni25EB\n</note>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"219\" type=\"line\"/>\n      <point x=\"647\" y=\"1201\" type=\"line\"/>\n      <point x=\"553\" y=\"1201\" type=\"line\"/>\n      <point x=\"553\" y=\"219\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalF_illC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalFillCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CD\"/>\n  <note>\nuni25CD\n</note>\n  <outline>\n    <contour>\n      <point x=\"403\" y=\"274\" type=\"line\"/>\n      <point x=\"497\" y=\"274\" type=\"line\"/>\n      <point x=\"497\" y=\"1168\" type=\"line\"/>\n      <point x=\"403\" y=\"1169\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"703\" y=\"274\" type=\"line\"/>\n      <point x=\"797\" y=\"274\" type=\"line\"/>\n      <point x=\"797\" y=\"1168\" type=\"line\"/>\n      <point x=\"703\" y=\"1169\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A5\"/>\n  <note>\nuni25A5\n</note>\n  <outline>\n    <contour>\n      <point x=\"495\" y=\"259\" type=\"line\"/>\n      <point x=\"495\" y=\"1161\" type=\"line\"/>\n      <point x=\"405\" y=\"1161\" type=\"line\"/>\n      <point x=\"405\" y=\"259\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"795\" y=\"259\" type=\"line\"/>\n      <point x=\"795\" y=\"1161\" type=\"line\"/>\n      <point x=\"705\" y=\"1161\" type=\"line\"/>\n      <point x=\"705\" y=\"259\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" xScale=\"0\" xyScale=\"1\" yxScale=\"-1\" yScale=\"0\" xOffset=\"1310\" yOffset=\"110\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB70\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-2.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB71\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-3.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB72\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-4.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB73\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-5.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB74\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-6.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB75\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalOneEighthBlock-7.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalT_abulationC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalTabulationControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240B\"/>\n  <outline>\n    <component base=\"V.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>V.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalT_abulationC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"verticalTabulationControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"589\" y=\"180\" type=\"line\"/>\n      <point x=\"611\" y=\"180\" type=\"line\"/>\n      <point x=\"1126\" y=\"1235\" type=\"line\"/>\n      <point x=\"1014\" y=\"1235\" type=\"line\"/>\n      <point x=\"664\" y=\"458\" type=\"line\"/>\n      <point x=\"536\" y=\"458\" type=\"line\"/>\n      <point x=\"186\" y=\"1235\" type=\"line\"/>\n      <point x=\"74\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"408\" type=\"line\"/>\n      <point x=\"645\" y=\"408\" type=\"line\"/>\n      <point x=\"645\" y=\"1235\" type=\"line\"/>\n      <point x=\"555\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/vhook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"028B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"-20\"/>\n      <point x=\"1010\" y=\"127\"/>\n      <point x=\"1010\" y=\"410\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"830\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"984\"/>\n      <point x=\"948\" y=\"1060\"/>\n      <point x=\"824\" y=\"1060\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"1060\" type=\"line\"/>\n      <point x=\"690\" y=\"970\" type=\"line\"/>\n      <point x=\"808\" y=\"970\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"970\"/>\n      <point x=\"920\" y=\"924\"/>\n      <point x=\"920\" y=\"830\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"410\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"188\"/>\n      <point x=\"810\" y=\"72\"/>\n      <point x=\"600\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"72\"/>\n      <point x=\"280\" y=\"188\"/>\n      <point x=\"280\" y=\"410\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"280\" y=\"1060\" type=\"line\"/>\n      <point x=\"190\" y=\"1060\" type=\"line\"/>\n      <point x=\"190\" y=\"410\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"190\" y=\"127\"/>\n      <point x=\"331\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/vinvertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vinvertedabove-ar\" format=\"2\">\n  <unicode hex=\"065B\"/>\n  <anchor x=\"601\" y=\"782\" name=\"_top\"/>\n  <anchor x=\"600\" y=\"532\" name=\"_top.dot\"/>\n  <anchor x=\"601\" y=\"962\" name=\"top\"/>\n  <outline>\n    <component base=\"_vabove\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1491\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_vabove</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/vturned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"vturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"028C\"/>\n  <outline>\n    <component base=\"el-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/w.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"w\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0077\"/>\n  <anchor x=\"590\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"590\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"757\" y=\"0\" type=\"line\"/>\n      <point x=\"902\" y=\"0\" type=\"line\"/>\n      <point x=\"1106\" y=\"1060\" type=\"line\"/>\n      <point x=\"1022\" y=\"1060\" type=\"line\"/>\n      <point x=\"842\" y=\"80\" type=\"line\"/>\n      <point x=\"829\" y=\"80\" type=\"line\"/>\n      <point x=\"664\" y=\"1060\" type=\"line\"/>\n      <point x=\"517\" y=\"1060\" type=\"line\"/>\n      <point x=\"582\" y=\"980\" type=\"line\"/>\n      <point x=\"596\" y=\"980\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"268\" y=\"0\" type=\"line\"/>\n      <point x=\"428\" y=\"0\" type=\"line\"/>\n      <point x=\"584\" y=\"980\" type=\"line\"/>\n      <point x=\"600\" y=\"980\" type=\"line\"/>\n      <point x=\"664\" y=\"1060\" type=\"line\"/>\n      <point x=\"517\" y=\"1060\" type=\"line\"/>\n      <point x=\"351\" y=\"80\" type=\"line\"/>\n      <point x=\"338\" y=\"80\" type=\"line\"/>\n      <point x=\"178\" y=\"1060\" type=\"line\"/>\n      <point x=\"94\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/w_w_w.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"w_w_w.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"3160\" y=\"0\" type=\"line\"/>\n      <point x=\"3322\" y=\"0\" type=\"line\"/>\n      <point x=\"3506\" y=\"1060\" type=\"line\"/>\n      <point x=\"3420\" y=\"1060\" type=\"line\"/>\n      <point x=\"3250\" y=\"80\" type=\"line\"/>\n      <point x=\"3230\" y=\"80\" type=\"line\"/>\n      <point x=\"3039\" y=\"940\" type=\"line\"/>\n      <point x=\"2887\" y=\"940\" type=\"line\"/>\n      <point x=\"2939\" y=\"860\" type=\"line\"/>\n      <point x=\"2969\" y=\"860\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"278\" y=\"0\" type=\"line\"/>\n      <point x=\"440\" y=\"0\" type=\"line\"/>\n      <point x=\"631\" y=\"860\" type=\"line\"/>\n      <point x=\"661\" y=\"860\" type=\"line\"/>\n      <point x=\"713\" y=\"940\" type=\"line\"/>\n      <point x=\"561\" y=\"940\" type=\"line\"/>\n      <point x=\"370\" y=\"80\" type=\"line\"/>\n      <point x=\"350\" y=\"80\" type=\"line\"/>\n      <point x=\"180\" y=\"1060\" type=\"line\"/>\n      <point x=\"94\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"837\" y=\"0\" type=\"line\"/>\n      <point x=\"937\" y=\"0\" type=\"line\"/>\n      <point x=\"937\" y=\"80\" type=\"line\"/>\n      <point x=\"917\" y=\"80\" type=\"line\"/>\n      <point x=\"713\" y=\"940\" type=\"line\"/>\n      <point x=\"561\" y=\"940\" type=\"line\"/>\n      <point x=\"613\" y=\"860\" type=\"line\"/>\n      <point x=\"643\" y=\"860\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"917\" y=\"0\" type=\"line\"/>\n      <point x=\"1017\" y=\"0\" type=\"line\"/>\n      <point x=\"1211\" y=\"860\" type=\"line\"/>\n      <point x=\"1241\" y=\"860\" type=\"line\"/>\n      <point x=\"1293\" y=\"940\" type=\"line\"/>\n      <point x=\"1141\" y=\"940\" type=\"line\"/>\n      <point x=\"937\" y=\"80\" type=\"line\"/>\n      <point x=\"917\" y=\"80\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1423\" y=\"0\" type=\"line\"/>\n      <point x=\"1523\" y=\"0\" type=\"line\"/>\n      <point x=\"1523\" y=\"80\" type=\"line\"/>\n      <point x=\"1503\" y=\"80\" type=\"line\"/>\n      <point x=\"1293\" y=\"940\" type=\"line\"/>\n      <point x=\"1141\" y=\"940\" type=\"line\"/>\n      <point x=\"1193\" y=\"860\" type=\"line\"/>\n      <point x=\"1223\" y=\"860\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1503\" y=\"0\" type=\"line\"/>\n      <point x=\"1603\" y=\"0\" type=\"line\"/>\n      <point x=\"1797\" y=\"860\" type=\"line\"/>\n      <point x=\"1827\" y=\"860\" type=\"line\"/>\n      <point x=\"1879\" y=\"940\" type=\"line\"/>\n      <point x=\"1727\" y=\"940\" type=\"line\"/>\n      <point x=\"1523\" y=\"80\" type=\"line\"/>\n      <point x=\"1503\" y=\"80\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2003\" y=\"0\" type=\"line\"/>\n      <point x=\"2103\" y=\"0\" type=\"line\"/>\n      <point x=\"2103\" y=\"80\" type=\"line\"/>\n      <point x=\"2083\" y=\"80\" type=\"line\"/>\n      <point x=\"1879\" y=\"940\" type=\"line\"/>\n      <point x=\"1727\" y=\"940\" type=\"line\"/>\n      <point x=\"1779\" y=\"860\" type=\"line\"/>\n      <point x=\"1809\" y=\"860\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2083\" y=\"0\" type=\"line\"/>\n      <point x=\"2183\" y=\"0\" type=\"line\"/>\n      <point x=\"2377\" y=\"860\" type=\"line\"/>\n      <point x=\"2407\" y=\"860\" type=\"line\"/>\n      <point x=\"2459\" y=\"940\" type=\"line\"/>\n      <point x=\"2307\" y=\"940\" type=\"line\"/>\n      <point x=\"2103\" y=\"80\" type=\"line\"/>\n      <point x=\"2083\" y=\"80\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2583\" y=\"0\" type=\"line\"/>\n      <point x=\"2683\" y=\"0\" type=\"line\"/>\n      <point x=\"2683\" y=\"80\" type=\"line\"/>\n      <point x=\"2663\" y=\"80\" type=\"line\"/>\n      <point x=\"2459\" y=\"940\" type=\"line\"/>\n      <point x=\"2307\" y=\"940\" type=\"line\"/>\n      <point x=\"2359\" y=\"860\" type=\"line\"/>\n      <point x=\"2389\" y=\"860\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2663\" y=\"0\" type=\"line\"/>\n      <point x=\"2763\" y=\"0\" type=\"line\"/>\n      <point x=\"2957\" y=\"860\" type=\"line\"/>\n      <point x=\"2987\" y=\"860\" type=\"line\"/>\n      <point x=\"3039\" y=\"940\" type=\"line\"/>\n      <point x=\"2887\" y=\"940\" type=\"line\"/>\n      <point x=\"2683\" y=\"80\" type=\"line\"/>\n      <point x=\"2663\" y=\"80\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E83\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"acutecomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wasla-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wasla-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"655\" y=\"1194\" name=\"_top\"/>\n  <anchor x=\"651\" y=\"1126\" name=\"_top.dot\"/>\n  <anchor x=\"630\" y=\"1577\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"715\" y=\"1191\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"1191\"/>\n      <point x=\"933\" y=\"1246\"/>\n      <point x=\"933\" y=\"1363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"933\" y=\"1477\"/>\n      <point x=\"853\" y=\"1552\"/>\n      <point x=\"757\" y=\"1552\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1552\"/>\n      <point x=\"583\" y=\"1465\"/>\n      <point x=\"485\" y=\"1316\" type=\"curve\"/>\n      <point x=\"552\" y=\"1284\" type=\"line\"/>\n      <point x=\"628\" y=\"1394\"/>\n      <point x=\"689\" y=\"1468\"/>\n      <point x=\"751\" y=\"1468\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"1468\"/>\n      <point x=\"851\" y=\"1415\"/>\n      <point x=\"851\" y=\"1359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"851\" y=\"1302\"/>\n      <point x=\"802\" y=\"1275\"/>\n      <point x=\"725\" y=\"1275\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"1275\"/>\n      <point x=\"538\" y=\"1330\"/>\n      <point x=\"444\" y=\"1330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"1330\"/>\n      <point x=\"339\" y=\"1308\"/>\n      <point x=\"301\" y=\"1278\" type=\"curve\"/>\n      <point x=\"308\" y=\"1197\" type=\"line\"/>\n      <point x=\"359\" y=\"1228\"/>\n      <point x=\"397\" y=\"1246\"/>\n      <point x=\"452\" y=\"1246\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"523\" y=\"1246\"/>\n      <point x=\"598\" y=\"1191\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wavyhamzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wavyhamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"620\" y=\"1189\" name=\"_top\"/>\n  <anchor x=\"620\" y=\"1104\" name=\"_top.dot\"/>\n  <anchor x=\"622\" y=\"1621\" name=\"top\"/>\n  <outline>\n    <component base=\"_hamzawavy\" xOffset=\"21\" yOffset=\"635\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzawavy</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wavyhamzabelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wavyhamzabelow-ar\" format=\"2\">\n  <unicode hex=\"065F\"/>\n  <anchor x=\"602\" y=\"-117\" name=\"_bottom\"/>\n  <anchor x=\"605\" y=\"0\" name=\"_bottom.dot\"/>\n  <anchor x=\"552\" y=\"-497\" name=\"bottom\"/>\n  <outline>\n    <component base=\"_hamzawavy\" xOffset=\"-32\" yOffset=\"-1037\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>_hamzawavy</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/waw-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"waw-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"487\" y=\"-565\" name=\"bottom\"/>\n  <anchor x=\"487\" y=\"-470\" name=\"bottom.dot\"/>\n  <anchor x=\"663\" y=\"900\" name=\"top\"/>\n  <anchor x=\"670\" y=\"770\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"421\" y=\"-445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"-445\"/>\n      <point x=\"1000\" y=\"-273\"/>\n      <point x=\"1000\" y=\"125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"467\"/>\n      <point x=\"861\" y=\"628\"/>\n      <point x=\"687\" y=\"628\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"628\"/>\n      <point x=\"380\" y=\"452\"/>\n      <point x=\"380\" y=\"276\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"83\"/>\n      <point x=\"459\" y=\"-3\"/>\n      <point x=\"664\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1183\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1262\" y=\"-3\"/>\n      <point x=\"1288\" y=\"3\"/>\n      <point x=\"1288\" y=\"47\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1288\" y=\"81\"/>\n      <point x=\"1275\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"965\" y=\"91\" type=\"line\"/>\n      <point x=\"855\" y=\"89\"/>\n      <point x=\"740\" y=\"91\"/>\n      <point x=\"687\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"91\"/>\n      <point x=\"472\" y=\"139\"/>\n      <point x=\"472\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"420\"/>\n      <point x=\"557\" y=\"534\"/>\n      <point x=\"680\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"819\" y=\"534\"/>\n      <point x=\"908\" y=\"392\"/>\n      <point x=\"908\" y=\"118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"-196\"/>\n      <point x=\"785\" y=\"-351\"/>\n      <point x=\"435\" y=\"-351\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"350\" y=\"-351\"/>\n      <point x=\"274\" y=\"-342\"/>\n      <point x=\"180\" y=\"-318\" type=\"curve\"/>\n      <point x=\"175\" y=\"-406\" type=\"line\"/>\n      <point x=\"249\" y=\"-434\"/>\n      <point x=\"339\" y=\"-445\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/waw-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"waw-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0648\"/>\n  <anchor x=\"487\" y=\"-565\" name=\"bottom\"/>\n  <anchor x=\"487\" y=\"-470\" name=\"bottom.dot\"/>\n  <anchor x=\"663\" y=\"900\" name=\"top\"/>\n  <anchor x=\"670\" y=\"770\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"421\" y=\"-445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"-445\"/>\n      <point x=\"1000\" y=\"-253\"/>\n      <point x=\"1000\" y=\"145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"487\"/>\n      <point x=\"877\" y=\"668\"/>\n      <point x=\"683\" y=\"668\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"668\"/>\n      <point x=\"380\" y=\"502\"/>\n      <point x=\"380\" y=\"316\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"123\"/>\n      <point x=\"457\" y=\"34\"/>\n      <point x=\"654\" y=\"34\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"34\"/>\n      <point x=\"858\" y=\"66\"/>\n      <point x=\"889\" y=\"106\" type=\"curve\"/>\n      <point x=\"948\" y=\"109\" type=\"line\"/>\n      <point x=\"952\" y=\"175\" type=\"line\"/>\n      <point x=\"875\" y=\"155\"/>\n      <point x=\"785\" y=\"128\"/>\n      <point x=\"687\" y=\"128\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"525\" y=\"128\"/>\n      <point x=\"472\" y=\"183\"/>\n      <point x=\"472\" y=\"316\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"455\"/>\n      <point x=\"543\" y=\"574\"/>\n      <point x=\"676\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"574\"/>\n      <point x=\"908\" y=\"412\"/>\n      <point x=\"908\" y=\"138\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"-176\"/>\n      <point x=\"785\" y=\"-351\"/>\n      <point x=\"435\" y=\"-351\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"350\" y=\"-351\"/>\n      <point x=\"274\" y=\"-342\"/>\n      <point x=\"180\" y=\"-318\" type=\"curve\"/>\n      <point x=\"175\" y=\"-406\" type=\"line\"/>\n      <point x=\"249\" y=\"-434\"/>\n      <point x=\"339\" y=\"-445\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"70\" yOffset=\"228\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CF\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"70\" yOffset=\"228\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawD_otcenter-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawDotcenter-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"dotcenter-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-243\" yOffset=\"-395\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotcenter-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawD_otcenter-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawDotcenter-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AB\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"dotcenter-ar\" xScale=\"0.96\" yScale=\"0.96\" xOffset=\"-243\" yOffset=\"-395\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotcenter-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"50\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0624\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"50\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawS_traight-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawStraight-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B1\"/>\n  <outline>\n    <contour>\n      <point x=\"876\" y=\"-456\" type=\"line\"/>\n      <point x=\"962\" y=\"-260\"/>\n      <point x=\"1000\" y=\"-48\"/>\n      <point x=\"1000\" y=\"125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"477\"/>\n      <point x=\"867\" y=\"628\"/>\n      <point x=\"693\" y=\"628\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"628\"/>\n      <point x=\"380\" y=\"442\"/>\n      <point x=\"380\" y=\"266\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"73\"/>\n      <point x=\"459\" y=\"-3\"/>\n      <point x=\"664\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1183\" y=\"-3\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1252\" y=\"-3\"/>\n      <point x=\"1278\" y=\"3\"/>\n      <point x=\"1278\" y=\"47\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1278\" y=\"81\"/>\n      <point x=\"1265\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"91\" type=\"line\"/>\n      <point x=\"853\" y=\"91\"/>\n      <point x=\"740\" y=\"91\"/>\n      <point x=\"687\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"91\"/>\n      <point x=\"472\" y=\"139\"/>\n      <point x=\"472\" y=\"272\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"410\"/>\n      <point x=\"553\" y=\"534\"/>\n      <point x=\"686\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"534\"/>\n      <point x=\"908\" y=\"392\"/>\n      <point x=\"908\" y=\"118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"-45\"/>\n      <point x=\"866\" y=\"-229\"/>\n      <point x=\"771\" y=\"-435\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_hreeA_bove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawThreeAbove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"three-persian.small01\" xOffset=\"90\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_hreeA_bove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawThreeAbove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0779\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"three-persian.small01\" xOffset=\"90\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_woabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawTwoabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"two-persian.small01\" xOffset=\"50\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_woabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawTwoabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0778\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"two-persian.small01\" xOffset=\"50\" yOffset=\"-334\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>waw-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>waw-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_wodots-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawTwodots-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_wodots-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawTwodots-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CA\"/>\n  <guideline x=\"182\" y=\"452\" angle=\"0\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"70\" yOffset=\"238\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawring-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawring-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"487\" y=\"-565\" name=\"bottom\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"ringArabic\" xScale=\"0.92\" yScale=\"0.92\" xOffset=\"-162\" yOffset=\"-265\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wawring-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wawring-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C4\"/>\n  <anchor x=\"487\" y=\"-565\" name=\"bottom\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"ringArabic\" xScale=\"0.92\" yScale=\"0.92\" xOffset=\"-162\" yOffset=\"-265\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>waw-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0175\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"circumflexcomb\" xOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wdieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wdieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E85\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"dieresiscomb\" xOffset=\"-8\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E81\"/>\n  <outline>\n    <component base=\"w\"/>\n    <component base=\"gravecomb\" xOffset=\"-79\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E6\"/>\n  <note>\nopenbullet\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"414\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"414\"/>\n      <point x=\"896\" y=\"532\"/>\n      <point x=\"896\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"888\"/>\n      <point x=\"778\" y=\"1006\"/>\n      <point x=\"600\" y=\"1006\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"1006\"/>\n      <point x=\"304\" y=\"888\"/>\n      <point x=\"304\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"532\"/>\n      <point x=\"422\" y=\"414\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"506\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"506\"/>\n      <point x=\"400\" y=\"587\"/>\n      <point x=\"400\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"833\"/>\n      <point x=\"479\" y=\"914\"/>\n      <point x=\"600\" y=\"914\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"721\" y=\"914\"/>\n      <point x=\"800\" y=\"833\"/>\n      <point x=\"800\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"587\"/>\n      <point x=\"721\" y=\"506\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CB\"/>\n  <note>\ncircle\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"277\"/>\n      <point x=\"171\" y=\"449\"/>\n      <point x=\"171\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"171\" y=\"971\"/>\n      <point x=\"341\" y=\"1143\"/>\n      <point x=\"600\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"1143\"/>\n      <point x=\"1029\" y=\"971\"/>\n      <point x=\"1029\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"449\"/>\n      <point x=\"859\" y=\"277\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C7\"/>\n  <note>\nuni25C7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"232\" type=\"line\"/>\n      <point x=\"122\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1188\" type=\"line\"/>\n      <point x=\"1078\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B21\"/>\n  <note>\nuni2B21\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1120\" y=\"410\" type=\"line\"/>\n      <point x=\"1120\" y=\"1010\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"80\" y=\"1010\" type=\"line\"/>\n      <point x=\"80\" y=\"410\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"675\" y=\"179\" type=\"line\"/>\n      <point x=\"107\" y=\"509\" type=\"line\"/>\n      <point x=\"174\" y=\"390\" type=\"line\"/>\n      <point x=\"174\" y=\"1024\" type=\"line\"/>\n      <point x=\"100\" y=\"907\" type=\"line\"/>\n      <point x=\"644\" y=\"1223\" type=\"line\"/>\n      <point x=\"556\" y=\"1223\" type=\"line\"/>\n      <point x=\"1101\" y=\"907\" type=\"line\"/>\n      <point x=\"1026\" y=\"1024\" type=\"line\"/>\n      <point x=\"1026\" y=\"391\" type=\"line\"/>\n      <point x=\"1091\" y=\"508\" type=\"line\"/>\n      <point x=\"524\" y=\"179\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteH_orizontalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteHorizontalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2D\"/>\n  <note>\nuni2B2D\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"395\"/>\n      <point x=\"1125\" y=\"520\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"900\"/>\n      <point x=\"916\" y=\"1025\"/>\n      <point x=\"600\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1025\"/>\n      <point x=\"75\" y=\"900\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"520\"/>\n      <point x=\"284\" y=\"395\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"487\"/>\n      <point x=\"171\" y=\"576\"/>\n      <point x=\"171\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"171\" y=\"844\"/>\n      <point x=\"341\" y=\"933\"/>\n      <point x=\"600\" y=\"933\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"933\"/>\n      <point x=\"1029\" y=\"844\"/>\n      <point x=\"1029\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"576\"/>\n      <point x=\"859\" y=\"487\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteI_nB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteInBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A3\"/>\n  <note>\nuni25A3\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteL_argeS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteLargeSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1C\"/>\n  <note>\nuni2B1C\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"94\" y=\"200\" type=\"line\"/>\n      <point x=\"94\" y=\"1220\" type=\"line\"/>\n      <point x=\"1106\" y=\"1220\" type=\"line\"/>\n      <point x=\"1106\" y=\"200\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteL_owerL_eftQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteLowerLeftQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F1\"/>\n  <note>\nuni25F1\n</note>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"755\" type=\"line\"/>\n      <point x=\"109\" y=\"665\" type=\"line\"/>\n      <point x=\"553\" y=\"665\" type=\"line\"/>\n      <point x=\"553\" y=\"219\" type=\"line\"/>\n      <point x=\"647\" y=\"219\" type=\"line\"/>\n      <point x=\"647\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteL_owerR_ightQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteLowerRightQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F2\"/>\n  <note>\nuni25F2\n</note>\n  <outline>\n    <contour>\n      <point x=\"1091\" y=\"755\" type=\"line\"/>\n      <point x=\"553\" y=\"755\" type=\"line\"/>\n      <point x=\"553\" y=\"219\" type=\"line\"/>\n      <point x=\"647\" y=\"219\" type=\"line\"/>\n      <point x=\"647\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"665\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteM_ediumD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteMediumDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B26\"/>\n  <note>\nuni2B26\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"322\" type=\"line\"/>\n      <point x=\"988\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\n      <point x=\"212\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"636\" y=\"418\" type=\"line\"/>\n      <point x=\"304\" y=\"750\" type=\"line\"/>\n      <point x=\"304\" y=\"670\" type=\"line\"/>\n      <point x=\"647\" y=\"1013\" type=\"line\"/>\n      <point x=\"553\" y=\"1013\" type=\"line\"/>\n      <point x=\"902\" y=\"664\" type=\"line\"/>\n      <point x=\"902\" y=\"756\" type=\"line\"/>\n      <point x=\"564\" y=\"418\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteM_ediumL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteMediumLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B28\"/>\n  <note>\nuni2B28\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"256\" type=\"line\"/>\n      <point x=\"873\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1164\" type=\"line\"/>\n      <point x=\"328\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"642\" y=\"348\" type=\"line\"/>\n      <point x=\"390\" y=\"779\" type=\"line\"/>\n      <point x=\"390\" y=\"641\" type=\"line\"/>\n      <point x=\"642\" y=\"1072\" type=\"line\"/>\n      <point x=\"558\" y=\"1072\" type=\"line\"/>\n      <point x=\"810\" y=\"641\" type=\"line\"/>\n      <point x=\"810\" y=\"779\" type=\"line\"/>\n      <point x=\"558\" y=\"348\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteP_arallelogram.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteParallelogram\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B1\"/>\n  <note>\nuni25B1\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1030\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"170\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"121\" y=\"482\" type=\"line\"/>\n      <point x=\"250\" y=\"938\" type=\"line\"/>\n      <point x=\"202\" y=\"920\" type=\"line\"/>\n      <point x=\"1083\" y=\"920\" type=\"line\"/>\n      <point x=\"1079\" y=\"938\" type=\"line\"/>\n      <point x=\"950\" y=\"482\" type=\"line\"/>\n      <point x=\"998\" y=\"500\" type=\"line\"/>\n      <point x=\"117\" y=\"500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteP_entagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whitePentagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B20\"/>\n  <note>\nuni2B20\n</note>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"168\" type=\"line\"/>\n      <point x=\"970\" y=\"168\" type=\"line\"/>\n      <point x=\"1200\" y=\"874\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"874\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"294\" y=\"258\" type=\"line\"/>\n      <point x=\"104\" y=\"840\" type=\"line\"/>\n      <point x=\"600\" y=\"1200\" type=\"line\"/>\n      <point x=\"1096\" y=\"840\" type=\"line\"/>\n      <point x=\"906\" y=\"258\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AD\"/>\n  <note>\nuni25AD\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"0\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"94\" y=\"510\" type=\"line\"/>\n      <point x=\"94\" y=\"920\" type=\"line\"/>\n      <point x=\"1106\" y=\"920\" type=\"line\"/>\n      <point x=\"1106\" y=\"510\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteR_oundedC_ornersS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteRoundedCornersSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A2\"/>\n  <note>\nuni25A2\n</note>\n  <outline>\n    <contour>\n      <point x=\"331\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"185\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1022\" y=\"185\"/>\n      <point x=\"1125\" y=\"288\"/>\n      <point x=\"1125\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"979\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1132\"/>\n      <point x=\"1022\" y=\"1235\"/>\n      <point x=\"869\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"1235\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"178\" y=\"1235\"/>\n      <point x=\"75\" y=\"1132\"/>\n      <point x=\"75\" y=\"979\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"441\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"288\"/>\n      <point x=\"178\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"330\" y=\"275\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"275\"/>\n      <point x=\"169\" y=\"339\"/>\n      <point x=\"169\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"169\" y=\"1081\"/>\n      <point x=\"232\" y=\"1145\"/>\n      <point x=\"330\" y=\"1145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"870\" y=\"1145\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"968\" y=\"1145\"/>\n      <point x=\"1031\" y=\"1081\"/>\n      <point x=\"1031\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1031\" y=\"440\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1031\" y=\"339\"/>\n      <point x=\"968\" y=\"275\"/>\n      <point x=\"870\" y=\"275\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteS_mallL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSmallLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2B\"/>\n  <note>\nuni2B2B\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"402\" type=\"line\"/>\n      <point x=\"785\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1019\" type=\"line\"/>\n      <point x=\"415\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"541\" type=\"line\"/>\n      <point x=\"507\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"879\" type=\"line\"/>\n      <point x=\"694\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AB\"/>\n  <note>\nH18551\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"1010\" type=\"line\"/>\n      <point x=\"300\" y=\"1010\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"394\" y=\"500\" type=\"line\"/>\n      <point x=\"394\" y=\"920\" type=\"line\"/>\n      <point x=\"806\" y=\"920\" type=\"line\"/>\n      <point x=\"806\" y=\"500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteS_milingF_ace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSmilingFace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263A\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"596\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"343\"/>\n      <point x=\"896\" y=\"433\"/>\n      <point x=\"896\" y=\"569\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"613\"/>\n      <point x=\"878\" y=\"629\"/>\n      <point x=\"836\" y=\"629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"629\"/>\n      <point x=\"497\" y=\"629\"/>\n      <point x=\"376\" y=\"629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"629\"/>\n      <point x=\"316\" y=\"611\"/>\n      <point x=\"316\" y=\"569\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"316\" y=\"433\"/>\n      <point x=\"427\" y=\"343\"/>\n    </contour>\n    <contour>\n      <point x=\"390\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"792\"/>\n      <point x=\"488\" y=\"831\"/>\n      <point x=\"488\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"488\" y=\"949\"/>\n      <point x=\"449\" y=\"988\"/>\n      <point x=\"390\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"988\"/>\n      <point x=\"292\" y=\"949\"/>\n      <point x=\"292\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"831\"/>\n      <point x=\"331\" y=\"792\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"200\"/>\n      <point x=\"96\" y=\"402\"/>\n      <point x=\"96\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"96\" y=\"1018\"/>\n      <point x=\"296\" y=\"1220\"/>\n      <point x=\"600\" y=\"1220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"1220\"/>\n      <point x=\"1104\" y=\"1018\"/>\n      <point x=\"1104\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1104\" y=\"402\"/>\n      <point x=\"904\" y=\"200\"/>\n    </contour>\n    <contour>\n      <point x=\"810\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"792\"/>\n      <point x=\"908\" y=\"831\"/>\n      <point x=\"908\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"949\"/>\n      <point x=\"869\" y=\"988\"/>\n      <point x=\"810\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"751\" y=\"988\"/>\n      <point x=\"712\" y=\"949\"/>\n      <point x=\"712\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"831\"/>\n      <point x=\"751\" y=\"792\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A1\"/>\n  <note>\nH22073\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"169\" y=\"275\" type=\"line\"/>\n      <point x=\"169\" y=\"1145\" type=\"line\"/>\n      <point x=\"1031\" y=\"1145\" type=\"line\"/>\n      <point x=\"1031\" y=\"275\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteU_pperL_eftQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteUpperLeftQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F0\"/>\n  <note>\nuni25F0\n</note>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"665\" type=\"line\"/>\n      <point x=\"647\" y=\"665\" type=\"line\"/>\n      <point x=\"647\" y=\"1201\" type=\"line\"/>\n      <point x=\"553\" y=\"1201\" type=\"line\"/>\n      <point x=\"553\" y=\"755\" type=\"line\"/>\n      <point x=\"109\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteU_pperR_ightQ_uadrantS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteUpperRightQuadrantSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F3\"/>\n  <note>\nuni25F3\n</note>\n  <outline>\n    <contour>\n      <point x=\"1091\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"755\" type=\"line\"/>\n      <point x=\"647\" y=\"755\" type=\"line\"/>\n      <point x=\"647\" y=\"1201\" type=\"line\"/>\n      <point x=\"553\" y=\"1201\" type=\"line\"/>\n      <point x=\"553\" y=\"665\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteV_erticalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteVerticalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2F\"/>\n  <note>\nuni2B2F\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"185\"/>\n      <point x=\"915\" y=\"394\"/>\n      <point x=\"915\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"1026\"/>\n      <point x=\"790\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1235\"/>\n      <point x=\"285\" y=\"1026\"/>\n      <point x=\"285\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"394\"/>\n      <point x=\"410\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"277\"/>\n      <point x=\"381\" y=\"449\"/>\n      <point x=\"381\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"971\"/>\n      <point x=\"469\" y=\"1143\"/>\n      <point x=\"600\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"1143\"/>\n      <point x=\"819\" y=\"971\"/>\n      <point x=\"819\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"819\" y=\"449\"/>\n      <point x=\"731\" y=\"277\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteV_erticalR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteVerticalRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AF\"/>\n  <note>\nuni25AF\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"1310\" type=\"line\"/>\n      <point x=\"300\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"394\" y=\"200\" type=\"line\"/>\n      <point x=\"394\" y=\"1220\" type=\"line\"/>\n      <point x=\"806\" y=\"1220\" type=\"line\"/>\n      <point x=\"806\" y=\"200\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteV_erysmallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"whiteVerysmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1E\"/>\n  <note>\nuni2B1E\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"575\" type=\"line\"/>\n      <point x=\"469\" y=\"845\" type=\"line\"/>\n      <point x=\"731\" y=\"845\" type=\"line\"/>\n      <point x=\"731\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/wmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"wmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02B7\"/>\n  <guideline x=\"1060\" y=\"790\" angle=\"0\"/>\n  <guideline x=\"1060\" y=\"790\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"686\" y=\"790\" type=\"line\"/>\n      <point x=\"825\" y=\"790\" type=\"line\"/>\n      <point x=\"936\" y=\"1420\" type=\"line\"/>\n      <point x=\"844\" y=\"1420\" type=\"line\"/>\n      <point x=\"754\" y=\"864\" type=\"line\"/>\n      <point x=\"744\" y=\"864\" type=\"line\"/>\n      <point x=\"653\" y=\"1420\" type=\"line\"/>\n      <point x=\"535\" y=\"1420\" type=\"line\"/>\n      <point x=\"588\" y=\"1327\" type=\"line\"/>\n      <point x=\"598\" y=\"1327\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"356\" y=\"790\" type=\"line\"/>\n      <point x=\"506\" y=\"790\" type=\"line\"/>\n      <point x=\"590\" y=\"1327\" type=\"line\"/>\n      <point x=\"600\" y=\"1327\" type=\"line\"/>\n      <point x=\"653\" y=\"1420\" type=\"line\"/>\n      <point x=\"535\" y=\"1420\" type=\"line\"/>\n      <point x=\"443\" y=\"864\" type=\"line\"/>\n      <point x=\"434\" y=\"864\" type=\"line\"/>\n      <point x=\"354\" y=\"1420\" type=\"line\"/>\n      <point x=\"264\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/won.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"won\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A9\"/>\n  <outline>\n    <contour>\n      <point x=\"24\" y=\"605\" type=\"line\"/>\n      <point x=\"1176\" y=\"605\" type=\"line\"/>\n      <point x=\"1176\" y=\"695\" type=\"line\"/>\n      <point x=\"24\" y=\"695\" type=\"line\"/>\n    </contour>\n    <component base=\"W\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/x.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"x\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0078\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"130\" y=\"0\" type=\"line\"/>\n      <point x=\"248\" y=\"0\" type=\"line\"/>\n      <point x=\"632\" y=\"492\" type=\"line\"/>\n      <point x=\"1070\" y=\"1060\" type=\"line\"/>\n      <point x=\"952\" y=\"1060\" type=\"line\"/>\n      <point x=\"572\" y=\"560\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"952\" y=\"0\" type=\"line\"/>\n      <point x=\"1070\" y=\"0\" type=\"line\"/>\n      <point x=\"633\" y=\"565\" type=\"line\"/>\n      <point x=\"248\" y=\"1060\" type=\"line\"/>\n      <point x=\"130\" y=\"1060\" type=\"line\"/>\n      <point x=\"571\" y=\"497\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/x.multiply.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"x.multiply\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"multiply\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/xi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"xi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BE\"/>\n  <anchor x=\"600\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"610\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"614\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"-20\" type=\"line\"/>\n      <point x=\"765\" y=\"70\" type=\"line\"/>\n      <point x=\"680\" y=\"70\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"415\" y=\"70\"/>\n      <point x=\"276\" y=\"163\"/>\n      <point x=\"276\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"573\"/>\n      <point x=\"469\" y=\"695\"/>\n      <point x=\"838\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"956\" y=\"695\" type=\"line\"/>\n      <point x=\"970\" y=\"785\" type=\"line\"/>\n      <point x=\"628\" y=\"736\" type=\"line\"/>\n      <point x=\"334\" y=\"719\"/>\n      <point x=\"180\" y=\"584\"/>\n      <point x=\"180\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"180\" y=\"103\"/>\n      <point x=\"329\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"757\" y=\"-480\" type=\"line\"/>\n      <point x=\"942\" y=\"-437\"/>\n      <point x=\"1048\" y=\"-330\"/>\n      <point x=\"1048\" y=\"-186\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"-23\"/>\n      <point x=\"945\" y=\"70\"/>\n      <point x=\"765\" y=\"70\" type=\"curve\"/>\n      <point x=\"712\" y=\"-20\" type=\"line\"/>\n      <point x=\"865\" y=\"-20\"/>\n      <point x=\"952\" y=\"-80\"/>\n      <point x=\"952\" y=\"-186\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"-287\"/>\n      <point x=\"869\" y=\"-366\"/>\n      <point x=\"725\" y=\"-404\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"602\" y=\"695\" type=\"line\"/>\n      <point x=\"956\" y=\"695\" type=\"line\"/>\n      <point x=\"970\" y=\"785\" type=\"line\"/>\n      <point x=\"534\" y=\"785\"/>\n      <point x=\"306\" y=\"885\"/>\n      <point x=\"306\" y=\"1076\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"1296\"/>\n      <point x=\"504\" y=\"1411\"/>\n      <point x=\"884\" y=\"1411\" type=\"curve\"/>\n      <point x=\"442\" y=\"1461\" type=\"line\"/>\n      <point x=\"442\" y=\"1399\" type=\"line\"/>\n      <point x=\"290\" y=\"1346\"/>\n      <point x=\"210\" y=\"1235\"/>\n      <point x=\"210\" y=\"1076\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"210\" y=\"892\"/>\n      <point x=\"344\" y=\"780\"/>\n      <point x=\"602\" y=\"750\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"166\" y=\"1410\" type=\"line\"/>\n      <point x=\"1022\" y=\"1410\" type=\"line\"/>\n      <point x=\"1022\" y=\"1500\" type=\"line\"/>\n      <point x=\"166\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/y.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"y\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0079\"/>\n  <anchor x=\"945\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"615\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"99\" y=\"-480\" type=\"line\"/>\n      <point x=\"186\" y=\"-467\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"-435\"/>\n      <point x=\"542\" y=\"-289\"/>\n      <point x=\"698\" y=\"94\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"1060\" type=\"line\"/>\n      <point x=\"985\" y=\"1060\" type=\"line\"/>\n      <point x=\"626\" y=\"144\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"-210\"/>\n      <point x=\"355\" y=\"-342\"/>\n      <point x=\"162\" y=\"-377\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"95\" y=\"-389\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"542\" y=\"0\" type=\"line\"/>\n      <point x=\"617\" y=\"0\" type=\"line\"/>\n      <point x=\"622\" y=\"90\" type=\"line\"/>\n      <point x=\"600\" y=\"90\" type=\"line\"/>\n      <point x=\"185\" y=\"1060\" type=\"line\"/>\n      <point x=\"79\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FD\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"acutecomb\" xOffset=\"105\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ycircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ycircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0177\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"circumflexcomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ydieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ydieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00FF\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"dieresiscomb\" xOffset=\"17\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ydotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ydotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF5\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"345\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/year-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"year-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0601\"/>\n  <outline>\n    <contour>\n      <point x=\"135\" y=\"-363\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"-363\"/>\n      <point x=\"214\" y=\"-342\"/>\n      <point x=\"249\" y=\"-285\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"271\" y=\"-249\"/>\n      <point x=\"280\" y=\"-225\"/>\n      <point x=\"299\" y=\"-225\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"-225\"/>\n      <point x=\"356\" y=\"-298\"/>\n      <point x=\"413\" y=\"-298\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"448\" y=\"-298\"/>\n      <point x=\"466\" y=\"-279\"/>\n      <point x=\"491\" y=\"-237\" type=\"curve\"/>\n      <point x=\"1035\" y=\"-237\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1068\" y=\"-237\"/>\n      <point x=\"1073\" y=\"-248\"/>\n      <point x=\"1073\" y=\"-267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1073\" y=\"-284\"/>\n      <point x=\"1070\" y=\"-295\"/>\n      <point x=\"1067\" y=\"-316\" type=\"curve\"/>\n      <point x=\"1140\" y=\"-320\" type=\"line\"/>\n      <point x=\"1153\" y=\"-284\"/>\n      <point x=\"1160\" y=\"-244\"/>\n      <point x=\"1160\" y=\"-223\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1160\" y=\"-160\"/>\n      <point x=\"1116\" y=\"-143\"/>\n      <point x=\"1040\" y=\"-143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"-143\" type=\"line\"/>\n      <point x=\"452\" y=\"-179\"/>\n      <point x=\"438\" y=\"-204\"/>\n      <point x=\"421\" y=\"-204\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"-204\"/>\n      <point x=\"351\" y=\"-130\"/>\n      <point x=\"300\" y=\"-130\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"256\" y=\"-130\"/>\n      <point x=\"227\" y=\"-174\"/>\n      <point x=\"202\" y=\"-216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"179\" y=\"-254\"/>\n      <point x=\"168\" y=\"-269\"/>\n      <point x=\"146\" y=\"-269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"125\" y=\"-269\"/>\n      <point x=\"113\" y=\"-255\"/>\n      <point x=\"113\" y=\"-227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"113\" y=\"-203\"/>\n      <point x=\"116\" y=\"-177\"/>\n      <point x=\"119\" y=\"-156\" type=\"curve\"/>\n      <point x=\"51\" y=\"-155\" type=\"line\"/>\n      <point x=\"42\" y=\"-186\"/>\n      <point x=\"33\" y=\"-209\"/>\n      <point x=\"35\" y=\"-262\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"-312\"/>\n      <point x=\"68\" y=\"-363\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-85\" yOffset=\"-341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>alefMaksura-ar.fina.alt</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-85\" yOffset=\"-341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"064A\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-17\" yOffset=\"-282\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CC\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.init.alt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.init\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeh-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.medi\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"-85\" yOffset=\"-341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"-85\" yOffset=\"-359\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0777\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"-17\" yOffset=\"-284\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.init.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehFourbelow-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"four-persianbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four-persianbelow-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>dotlessbeh-ar.medi.wide</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-466\" yOffset=\"-834\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-466\" yOffset=\"-834\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0626\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-436\" yOffset=\"-664\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"315\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"255\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehHamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-10\" yOffset=\"-449\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"ringArabic\" xOffset=\"-31\" yOffset=\"-608\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"ringArabic\" xOffset=\"-31\" yOffset=\"-608\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0620\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"ringArabic\" xOffset=\"20\" yOffset=\"-532\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"ringArabic\" xOffset=\"134\" yOffset=\"-72\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"ringArabic\" xOffset=\"134\" yOffset=\"-27\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehKashmiri-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"ringArabic\" xOffset=\"-246\" yOffset=\"-77\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>ringArabic</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehR_ohingya-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehRohingya-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yehRohingya-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehR_ohingya-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehRohingya-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08AC\"/>\n  <guideline x=\"243\" y=\"-194\" angle=\"0\"/>\n  <outline>\n    <component base=\"_yehRohingya-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"249\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>_part.instroke</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehR_ohingya-ar.isol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehRohingya-ar.isol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"_yehRohingya-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"249\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_ail-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTail-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"517\" y=\"-458\" name=\"bottom\"/>\n  <anchor x=\"517\" y=\"-381\" name=\"bottom.dot\"/>\n  <anchor x=\"411\" y=\"476\" name=\"top\"/>\n  <anchor x=\"154\" y=\"270\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"527\" y=\"-400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"-400\"/>\n      <point x=\"1117\" y=\"-264\"/>\n      <point x=\"1117\" y=\"-71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"40\"/>\n      <point x=\"1012\" y=\"86\"/>\n      <point x=\"746\" y=\"116\" type=\"curve\"/>\n      <point x=\"734\" y=\"22\" type=\"line\"/>\n      <point x=\"950\" y=\"12\"/>\n      <point x=\"1029\" y=\"-18\"/>\n      <point x=\"1029\" y=\"-84\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"-185\"/>\n      <point x=\"873\" y=\"-306\"/>\n      <point x=\"535\" y=\"-306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"229\" y=\"-306\"/>\n      <point x=\"132\" y=\"-232\"/>\n      <point x=\"132\" y=\"-23\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"132\" y=\"38\"/>\n      <point x=\"141\" y=\"114\"/>\n      <point x=\"159\" y=\"205\" type=\"curve\"/>\n      <point x=\"81\" y=\"230\" type=\"line\"/>\n      <point x=\"-156\" y=\"152\" type=\"line\"/>\n      <point x=\"-133\" y=\"58\" type=\"line\"/>\n      <point x=\"95\" y=\"134\" type=\"line\"/>\n      <point x=\"66\" y=\"170\" type=\"line\"/>\n      <point x=\"47\" y=\"84\"/>\n      <point x=\"40\" y=\"13\"/>\n      <point x=\"40\" y=\"-50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"40\" y=\"-294\"/>\n      <point x=\"167\" y=\"-400\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_ail-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTail-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"517\" y=\"-458\" name=\"bottom\"/>\n  <anchor x=\"517\" y=\"-381\" name=\"bottom.dot\"/>\n  <anchor x=\"411\" y=\"476\" name=\"top\"/>\n  <anchor x=\"154\" y=\"270\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"527\" y=\"-400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"-400\"/>\n      <point x=\"1117\" y=\"-264\"/>\n      <point x=\"1117\" y=\"-71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"-20\"/>\n      <point x=\"1092\" y=\"21\"/>\n      <point x=\"1056\" y=\"42\" type=\"curve\"/>\n      <point x=\"1053\" y=\"5\" type=\"line\"/>\n      <point x=\"1085\" y=\"-2\"/>\n      <point x=\"1136\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1263\" y=\"-3\"/>\n      <point x=\"1294\" y=\"6\"/>\n      <point x=\"1294\" y=\"50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1294\" y=\"84\"/>\n      <point x=\"1272\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1097\" y=\"91\"/>\n      <point x=\"940\" y=\"93\"/>\n      <point x=\"818\" y=\"101\" type=\"curve\"/>\n      <point x=\"803\" y=\"11\" type=\"line\"/>\n      <point x=\"999\" y=\"1\"/>\n      <point x=\"1029\" y=\"-18\"/>\n      <point x=\"1029\" y=\"-74\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"-185\"/>\n      <point x=\"873\" y=\"-306\"/>\n      <point x=\"535\" y=\"-306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"229\" y=\"-306\"/>\n      <point x=\"132\" y=\"-232\"/>\n      <point x=\"132\" y=\"-23\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"132\" y=\"38\"/>\n      <point x=\"141\" y=\"114\"/>\n      <point x=\"159\" y=\"205\" type=\"curve\"/>\n      <point x=\"81\" y=\"230\" type=\"line\"/>\n      <point x=\"-156\" y=\"152\" type=\"line\"/>\n      <point x=\"-133\" y=\"58\" type=\"line\"/>\n      <point x=\"95\" y=\"134\" type=\"line\"/>\n      <point x=\"66\" y=\"170\" type=\"line\"/>\n      <point x=\"47\" y=\"84\"/>\n      <point x=\"40\" y=\"13\"/>\n      <point x=\"40\" y=\"-50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"40\" y=\"-294\"/>\n      <point x=\"167\" y=\"-400\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_ail-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTail-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CD\"/>\n  <anchor x=\"585\" y=\"-399\" name=\"bottom\"/>\n  <anchor x=\"585\" y=\"-326\" name=\"bottom.dot\"/>\n  <anchor x=\"291\" y=\"656\" name=\"top\"/>\n  <anchor x=\"184\" y=\"440\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"561\" y=\"-326\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"-326\"/>\n      <point x=\"1108\" y=\"-188\"/>\n      <point x=\"1108\" y=\"5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1108\" y=\"115\"/>\n      <point x=\"1066\" y=\"177\"/>\n      <point x=\"849\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"648\" y=\"275\"/>\n      <point x=\"621\" y=\"313\"/>\n      <point x=\"621\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"530\"/>\n      <point x=\"706\" y=\"687\"/>\n      <point x=\"920\" y=\"687\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"992\" y=\"687\"/>\n      <point x=\"1052\" y=\"673\"/>\n      <point x=\"1109\" y=\"649\" type=\"curve\"/>\n      <point x=\"1127\" y=\"732\" type=\"line\"/>\n      <point x=\"1081\" y=\"758\"/>\n      <point x=\"1010\" y=\"781\"/>\n      <point x=\"926\" y=\"781\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"781\"/>\n      <point x=\"529\" y=\"574\"/>\n      <point x=\"529\" y=\"387\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"249\"/>\n      <point x=\"599\" y=\"182\"/>\n      <point x=\"786\" y=\"143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"99\"/>\n      <point x=\"1016\" y=\"59\"/>\n      <point x=\"1016\" y=\"-12\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"-134\"/>\n      <point x=\"821\" y=\"-232\"/>\n      <point x=\"581\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"-232\"/>\n      <point x=\"146\" y=\"-126\"/>\n      <point x=\"146\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"146\" y=\"188\"/>\n      <point x=\"155\" y=\"261\"/>\n      <point x=\"173\" y=\"352\" type=\"curve\"/>\n      <point x=\"95\" y=\"377\" type=\"line\"/>\n      <point x=\"-142\" y=\"299\" type=\"line\"/>\n      <point x=\"-119\" y=\"205\" type=\"line\"/>\n      <point x=\"109\" y=\"281\" type=\"line\"/>\n      <point x=\"80\" y=\"317\" type=\"line\"/>\n      <point x=\"61\" y=\"231\"/>\n      <point x=\"54\" y=\"150\"/>\n      <point x=\"54\" y=\"67\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"54\" y=\"-225\"/>\n      <point x=\"220\" y=\"-326\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-426\" yOffset=\"-834\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-426\" yOffset=\"-834\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0776\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-396\" yOffset=\"-664\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"355\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"292\" yOffset=\"-267\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreeabove-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"30\" yOffset=\"-449\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-310\" yOffset=\"-289\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-310\" yOffset=\"-289\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063F\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"-371\" yOffset=\"-114\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"335\" yOffset=\"275\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"275\" yOffset=\"275\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsabove-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsupabove-ar\" xOffset=\"10\" yOffset=\"113\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsupabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"1.001\" xOffset=\"-86\" yOffset=\"-341\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"525\" y=\"-906\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"1.001\" xOffset=\"-84\" yOffset=\"-353\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D1\"/>\n  <anchor x=\"591\" y=\"-838\" name=\"bottom\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"threedotsdownbelow-ar\" xScale=\"1.001\" xOffset=\"-18\" yOffset=\"-282\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"252\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"212\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehThreedotsbelow-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"threedotsdownbelow-ar\" xOffset=\"-8\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>threedotsdownbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-466\" yOffset=\"-834\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-466\" yOffset=\"-834\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar.fina</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0775\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-436\" yOffset=\"-664\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>alefMaksura-ar</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"315\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"255\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwoabove-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-10\" yOffset=\"-449\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-310\" yOffset=\"-279\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-310\" yOffset=\"-279\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063E\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"-371\" yOffset=\"-104\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"335\" yOffset=\"285\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"275\" yOffset=\"285\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsabove-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalabove-ar\" xOffset=\"10\" yOffset=\"123\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-316\" yOffset=\"-271\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A9\"/>\n  <outline>\n    <component base=\"yeh-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"-282\" yOffset=\"-106\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"dotabove-ar\" xOffset=\"335\" yOffset=\"275\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"275\" yOffset=\"275\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowDotabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"10\" yOffset=\"113\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yeh-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-466\" yOffset=\"-834\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08A8\"/>\n  <outline>\n    <component base=\"yeh-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-436\" yOffset=\"-664\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"315\" yOffset=\"-287\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"255\" yOffset=\"-287\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowHamzaabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-10\" yOffset=\"-449\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <anchor x=\"158\" y=\"817\" name=\"top\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-85\" yOffset=\"-341\"/>\n    <component base=\"noonabove-ar\" xOffset=\"-446\" yOffset=\"-810\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"178\" y=\"817\" name=\"top\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-85\" yOffset=\"-341\"/>\n    <component base=\"noonabove-ar\" xOffset=\"-446\" yOffset=\"-810\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08BA\"/>\n  <guideline x=\"-1178\" y=\"-301\" angle=\"0\"/>\n  <anchor x=\"177\" y=\"988\" name=\"top\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-17\" yOffset=\"-284\"/>\n    <component base=\"noonabove-ar\" xOffset=\"-416\" yOffset=\"-640\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n    <component base=\"noonabove-ar\" xOffset=\"335\" yOffset=\"-263\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"noonabove-ar\" xOffset=\"275\" yOffset=\"-263\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehTwodotsbelowNoonabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"noonabove-ar\" xOffset=\"10\" yOffset=\"-425\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>noonabove-ar</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Letter</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Other</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"-300\" yOffset=\"-195\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"vabove-ar\" xOffset=\"-300\" yOffset=\"-195\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06CE\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"vabove-ar\" xOffset=\"-307\" yOffset=\"-22\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"vabove-ar\" xOffset=\"335\" yOffset=\"285\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"vabove-ar\" xOffset=\"275\" yOffset=\"285\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"vabove-ar\" xOffset=\"10\" yOffset=\"123\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vabove-ar</string>\n        </dict>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.fina.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.fina.alt\" format=\"2\">\n  <anchor x=\"0\" y=\"0\" name=\"_overlap\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina.alt\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-289\" yOffset=\"-184\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"alefMaksura-ar.fina\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-289\" yOffset=\"-184\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"063D\"/>\n  <outline>\n    <component base=\"alefMaksura-ar\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"-296\" yOffset=\"-18\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"335\" yOffset=\"285\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"275\" yOffset=\"285\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehVinverted-farsi.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"vinvertedabove-ar\" xOffset=\"10\" yOffset=\"123\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>vinvertedabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarree-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarree-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"578\" y=\"-381\" name=\"bottom\"/>\n  <anchor x=\"350\" y=\"428\" name=\"top\"/>\n  <anchor x=\"359\" y=\"158\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"578\" y=\"-381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"-381\"/>\n      <point x=\"928\" y=\"-370\"/>\n      <point x=\"1074\" y=\"-356\" type=\"curve\"/>\n      <point x=\"1082\" y=\"-266\" type=\"line\"/>\n      <point x=\"934\" y=\"-277\"/>\n      <point x=\"801\" y=\"-287\"/>\n      <point x=\"591\" y=\"-287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"-287\"/>\n      <point x=\"227\" y=\"-240\"/>\n      <point x=\"227\" y=\"-145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"227\" y=\"-66\"/>\n      <point x=\"295\" y=\"-3\"/>\n      <point x=\"591\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"-3\"/>\n      <point x=\"1072\" y=\"-3\"/>\n      <point x=\"1188\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1255\" y=\"-3\"/>\n      <point x=\"1280\" y=\"12\"/>\n      <point x=\"1280\" y=\"49\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1280\" y=\"78\"/>\n      <point x=\"1266\" y=\"91\"/>\n      <point x=\"1200\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1095\" y=\"91\"/>\n      <point x=\"741\" y=\"91\"/>\n      <point x=\"627\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"273\" y=\"91\"/>\n      <point x=\"135\" y=\"20\"/>\n      <point x=\"135\" y=\"-150\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"135\" y=\"-321\"/>\n      <point x=\"264\" y=\"-381\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarree-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarree-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D2\"/>\n  <anchor x=\"572\" y=\"-141\" name=\"bottom\"/>\n  <anchor x=\"562\" y=\"1030\" name=\"top\"/>\n  <anchor x=\"569\" y=\"780\" name=\"top.dot\"/>\n  <outline>\n    <contour>\n      <point x=\"601\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"-3\"/>\n      <point x=\"1024\" y=\"16\"/>\n      <point x=\"1145\" y=\"37\" type=\"curve\"/>\n      <point x=\"1152\" y=\"123\" type=\"line\"/>\n      <point x=\"1029\" y=\"110\"/>\n      <point x=\"840\" y=\"91\"/>\n      <point x=\"615\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"217\" y=\"91\"/>\n      <point x=\"131\" y=\"147\"/>\n      <point x=\"131\" y=\"216\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"131\" y=\"278\"/>\n      <point x=\"212\" y=\"319\"/>\n      <point x=\"316\" y=\"403\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"503\"/>\n      <point x=\"513\" y=\"608\"/>\n      <point x=\"569\" y=\"608\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"615\" y=\"608\"/>\n      <point x=\"640\" y=\"564\"/>\n      <point x=\"704\" y=\"466\" type=\"curve\"/>\n      <point x=\"777\" y=\"513\" type=\"line\"/>\n      <point x=\"684\" y=\"658\"/>\n      <point x=\"651\" y=\"702\"/>\n      <point x=\"570\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"471\" y=\"702\"/>\n      <point x=\"397\" y=\"576\"/>\n      <point x=\"264\" y=\"470\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"132\" y=\"364\"/>\n      <point x=\"39\" y=\"323\"/>\n      <point x=\"39\" y=\"209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"39\" y=\"68\"/>\n      <point x=\"182\" y=\"-3\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeH_amzaabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeHamzaabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yehbarree-ar.fina\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-261\" yOffset=\"-946\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeH_amzaabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeHamzaabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06D3\"/>\n  <outline>\n    <component base=\"yehbarree-ar\"/>\n    <component base=\"hamzaabove-ar\" xOffset=\"-51\" yOffset=\"-324\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>hamzaabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yehbarree-ar.fina\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-221\" yOffset=\"-946\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077B\"/>\n  <outline>\n    <component base=\"yehbarree-ar\"/>\n    <component base=\"three-persian.small01\" xOffset=\"-381\" yOffset=\"-587\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"355\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"281\" yOffset=\"-311\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeThreeabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"three-persian.small01\" xOffset=\"30\" yOffset=\"-449\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>bottom.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>twodotshorizontalbelow-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>three-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"yehbarree-ar.fina\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-261\" yOffset=\"-946\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"077A\"/>\n  <outline>\n    <component base=\"yehbarree-ar\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-415\" yOffset=\"-587\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.init.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar.init.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"0\" y=\"0\" name=\"overlap\"/>\n  <outline>\n    <component base=\"behDotless-ar.init.alt\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"250\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"315\" yOffset=\"-287\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.init\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"210\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"252\" yOffset=\"-267\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yehbarreeTwoabove-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"behDotless-ar.medi\"/>\n    <component base=\"twodotshorizontalbelow-ar\" xOffset=\"-10\" yOffset=\"-24\"/>\n    <component base=\"two-persian.small01\" xOffset=\"-10\" yOffset=\"-449\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>two-persian.small01</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A5\"/>\n  <outline>\n    <contour>\n      <point x=\"161\" y=\"509\" type=\"line\"/>\n      <point x=\"1039\" y=\"509\" type=\"line\"/>\n      <point x=\"1039\" y=\"599\" type=\"line\"/>\n      <point x=\"161\" y=\"599\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"161\" y=\"215\" type=\"line\"/>\n      <point x=\"1039\" y=\"215\" type=\"line\"/>\n      <point x=\"1039\" y=\"305\" type=\"line\"/>\n      <point x=\"161\" y=\"305\" type=\"line\"/>\n    </contour>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yeru-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yeru-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"397\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"619\" y=\"0\"/>\n      <point x=\"747\" y=\"123\"/>\n      <point x=\"747\" y=\"338\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"553\"/>\n      <point x=\"619\" y=\"676\"/>\n      <point x=\"397\" y=\"676\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"196\" y=\"676\" type=\"line\"/>\n      <point x=\"196\" y=\"586\" type=\"line\"/>\n      <point x=\"389\" y=\"586\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"586\"/>\n      <point x=\"651\" y=\"496\"/>\n      <point x=\"651\" y=\"338\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"651\" y=\"180\"/>\n      <point x=\"556\" y=\"90\"/>\n      <point x=\"389\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"136\" y=\"0\" type=\"line\"/>\n      <point x=\"230\" y=\"0\" type=\"line\"/>\n      <point x=\"230\" y=\"1060\" type=\"line\"/>\n      <point x=\"136\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"970\" y=\"0\" type=\"line\"/>\n      <point x=\"1064\" y=\"0\" type=\"line\"/>\n      <point x=\"1064\" y=\"1060\" type=\"line\"/>\n      <point x=\"970\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ygrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ygrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF3\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"gravecomb\" xOffset=\"-54\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF7\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"hookabovecomb\" xOffset=\"35\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yi-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yi-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0457\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"dieresiscomb\" xOffset=\"52\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ymacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ymacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0233\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"macroncomb\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ymod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ymod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02B8\"/>\n  <guideline x=\"1060\" y=\"790\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"266\" y=\"504\" type=\"line\"/>\n      <point x=\"324\" y=\"504\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"504\"/>\n      <point x=\"606\" y=\"595\"/>\n      <point x=\"705\" y=\"836\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"944\" y=\"1420\" type=\"line\"/>\n      <point x=\"847\" y=\"1420\" type=\"line\"/>\n      <point x=\"630\" y=\"876\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"671\"/>\n      <point x=\"457\" y=\"584\"/>\n      <point x=\"309\" y=\"584\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"584\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"790\" type=\"line\"/>\n      <point x=\"631\" y=\"790\" type=\"line\"/>\n      <point x=\"633\" y=\"858\" type=\"line\"/>\n      <point x=\"617\" y=\"858\" type=\"line\"/>\n      <point x=\"372\" y=\"1420\" type=\"line\"/>\n      <point x=\"277\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yod-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yod-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D9\"/>\n  <anchor x=\"331\" y=\"694\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"719\" y=\"594\" type=\"line\"/>\n      <point x=\"749\" y=\"666\"/>\n      <point x=\"776\" y=\"764\"/>\n      <point x=\"776\" y=\"918\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"1200\" type=\"line\"/>\n      <point x=\"677\" y=\"1200\" type=\"line\"/>\n      <point x=\"677\" y=\"918\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"764\"/>\n      <point x=\"657\" y=\"694\"/>\n      <point x=\"627\" y=\"622\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"1101\" type=\"line\"/>\n      <point x=\"776\" y=\"1101\" type=\"line\"/>\n      <point x=\"776\" y=\"1200\" type=\"line\"/>\n      <point x=\"149\" y=\"1200\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yoddagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yoddagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB39\"/>\n  <outline>\n    <component base=\"yod-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-269\" yOffset=\"150\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ytilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ytilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF9\"/>\n  <outline>\n    <component base=\"y\"/>\n    <component base=\"tildecomb\" xOffset=\"22\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yu-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yu-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"waw-ar.fina\"/>\n    <component base=\"alefabove-ar\" xOffset=\"50\" yOffset=\"356\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/yu-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"yu-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06C8\"/>\n  <outline>\n    <component base=\"waw-ar\"/>\n    <component base=\"alefabove-ar\" xOffset=\"50\" yOffset=\"356\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/z.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"z\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007A\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"530\" name=\"center\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"253\" y=\"33\" type=\"line\"/>\n      <point x=\"992\" y=\"970\" type=\"line\"/>\n      <point x=\"927\" y=\"1025\" type=\"line\"/>\n      <point x=\"188\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"188\" y=\"0\" type=\"line\"/>\n      <point x=\"1012\" y=\"0\" type=\"line\"/>\n      <point x=\"1012\" y=\"90\" type=\"line\"/>\n      <point x=\"188\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"188\" y=\"970\" type=\"line\"/>\n      <point x=\"992\" y=\"970\" type=\"line\"/>\n      <point x=\"992\" y=\"1060\" type=\"line\"/>\n      <point x=\"188\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017A\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"acutecomb\" xOffset=\"90\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"acutecomb.loclPLK\" xOffset=\"50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zah-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zah-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zah-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0638\"/>\n  <outline>\n    <component base=\"tah-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zah-ar.init.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zah-ar.init\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.init\"/>\n    <component base=\"dotabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zah-ar.medi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zah-ar.medi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"tah-ar.medi\"/>\n    <component base=\"dotabove-ar\" xOffset=\"160\" yOffset=\"343\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>anchor</key>\n          <string>top.dot</string>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>dotabove-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zain-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zain-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"dotabove-ar\" xOffset=\"80\" yOffset=\"93\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zain-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zain-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0632\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"dotabove-ar\" xOffset=\"170\" yOffset=\"113\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zainV_I_nvertedabove-ar.fina.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zainVInvertedabove-ar.fina\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"reh-ar.fina\"/>\n    <component base=\"_dotVInvertedabove\" xOffset=\"80\" yOffset=\"118\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zainV_I_nvertedabove-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zainVInvertedabove-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"08B2\"/>\n  <outline>\n    <component base=\"reh-ar\"/>\n    <component base=\"_dotVInvertedabove\" xOffset=\"170\" yOffset=\"138\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zayin-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zayin-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"05D6\"/>\n  <anchor x=\"274\" y=\"590\" name=\"center\"/>\n  <outline>\n    <contour>\n      <point x=\"862\" y=\"1200\" type=\"line\"/>\n      <point x=\"171\" y=\"1200\" type=\"line\"/>\n      <point x=\"171\" y=\"1101\" type=\"line\"/>\n      <point x=\"862\" y=\"1101\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"614\" y=\"1094\" type=\"line\"/>\n      <point x=\"563\" y=\"1061\"/>\n      <point x=\"512\" y=\"958\"/>\n      <point x=\"512\" y=\"789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"0\" type=\"line\"/>\n      <point x=\"611\" y=\"0\" type=\"line\"/>\n      <point x=\"611\" y=\"770\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"992\"/>\n      <point x=\"635\" y=\"1102\"/>\n      <point x=\"781\" y=\"1102\" type=\"curve\"/>\n      <point x=\"614\" y=\"1169\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zayindagesh-hb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zayindagesh-hb\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB36\"/>\n  <outline>\n    <component base=\"zayin-hb\"/>\n    <component base=\"dagesh-hb\" xOffset=\"-326\" yOffset=\"46\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017E\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017C\"/>\n  <outline>\n    <component base=\"z\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"-2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0437\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"551\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"840\" y=\"-20\"/>\n      <point x=\"1012\" y=\"94\"/>\n      <point x=\"1012\" y=\"288\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1012\" y=\"433\"/>\n      <point x=\"905\" y=\"523\"/>\n      <point x=\"686\" y=\"539\" type=\"curve\"/>\n      <point x=\"686\" y=\"549\" type=\"line\"/>\n      <point x=\"841\" y=\"558\"/>\n      <point x=\"981\" y=\"651\"/>\n      <point x=\"981\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"972\"/>\n      <point x=\"823\" y=\"1080\"/>\n      <point x=\"540\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"424\" y=\"1080\"/>\n      <point x=\"305\" y=\"1062\"/>\n      <point x=\"234\" y=\"1046\" type=\"curve\"/>\n      <point x=\"244\" y=\"958\" type=\"line\"/>\n      <point x=\"335\" y=\"973\"/>\n      <point x=\"435\" y=\"988\"/>\n      <point x=\"537\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"747\" y=\"988\"/>\n      <point x=\"885\" y=\"927\"/>\n      <point x=\"885\" y=\"804\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"690\"/>\n      <point x=\"774\" y=\"584\"/>\n      <point x=\"457\" y=\"584\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"421\" y=\"584\" type=\"line\"/>\n      <point x=\"432\" y=\"494\" type=\"line\"/>\n      <point x=\"454\" y=\"494\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"494\"/>\n      <point x=\"916\" y=\"425\"/>\n      <point x=\"916\" y=\"287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"125\"/>\n      <point x=\"725\" y=\"72\"/>\n      <point x=\"564\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"449\" y=\"72\"/>\n      <point x=\"293\" y=\"96\"/>\n      <point x=\"181\" y=\"178\" type=\"curve\"/>\n      <point x=\"129\" y=\"104\" type=\"line\"/>\n      <point x=\"234\" y=\"7\"/>\n      <point x=\"409\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/ze-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ze-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"550\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"550\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"556\" y=\"-460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"-460\"/>\n      <point x=\"1037\" y=\"-257\"/>\n      <point x=\"1037\" y=\"-41\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"223\"/>\n      <point x=\"836\" y=\"368\"/>\n      <point x=\"628\" y=\"364\" type=\"curve\"/>\n      <point x=\"642\" y=\"335\" type=\"line\"/>\n      <point x=\"622\" y=\"398\" type=\"line\"/>\n      <point x=\"618\" y=\"375\" type=\"line\"/>\n      <point x=\"671\" y=\"385\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"420\"/>\n      <point x=\"1006\" y=\"552\"/>\n      <point x=\"1006\" y=\"744\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"945\"/>\n      <point x=\"857\" y=\"1080\"/>\n      <point x=\"531\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"1080\"/>\n      <point x=\"271\" y=\"1061\"/>\n      <point x=\"232\" y=\"1048\" type=\"curve\"/>\n      <point x=\"248\" y=\"957\" type=\"line\"/>\n      <point x=\"330\" y=\"975\"/>\n      <point x=\"440\" y=\"988\"/>\n      <point x=\"535\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"797\" y=\"988\"/>\n      <point x=\"910\" y=\"874\"/>\n      <point x=\"910\" y=\"719\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"489\"/>\n      <point x=\"635\" y=\"415\"/>\n      <point x=\"398\" y=\"405\" type=\"curve\"/>\n      <point x=\"412\" y=\"315\" type=\"line\"/>\n      <point x=\"511\" y=\"315\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"315\"/>\n      <point x=\"941\" y=\"174\"/>\n      <point x=\"941\" y=\"-42\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"941\" y=\"-220\"/>\n      <point x=\"806\" y=\"-368\"/>\n      <point x=\"561\" y=\"-368\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"-368\"/>\n      <point x=\"295\" y=\"-321\"/>\n      <point x=\"173\" y=\"-211\" type=\"curve\"/>\n      <point x=\"103\" y=\"-281\" type=\"line\"/>\n      <point x=\"212\" y=\"-400\"/>\n      <point x=\"381\" y=\"-460\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.85,0.26,0.06,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-ar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0660\"/>\n  <outline>\n    <contour>\n      <point x=\"607\" y=\"344\" type=\"line\"/>\n      <point x=\"749\" y=\"489\" type=\"line\"/>\n      <point x=\"591\" y=\"644\" type=\"line\"/>\n      <point x=\"452\" y=\"496\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-arinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-arinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"605\" y=\"60\" type=\"line\"/>\n      <point x=\"709\" y=\"165\" type=\"line\"/>\n      <point x=\"593\" y=\"278\" type=\"line\"/>\n      <point x=\"492\" y=\"170\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-arsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-arsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zero-arinferior\" yOffset=\"790\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-persian.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-persian\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"06F0\"/>\n  <outline>\n    <component base=\"zero-ar\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-persianinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-persianinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zero-arinferior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-persiansuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero-persiansuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zero-arsuperior\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>zero-arsuperior</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.category</key>\n      <string>Number</string>\n      <key>com.schriftgestaltung.Glyphs.script</key>\n      <string>arabic</string>\n      <key>com.schriftgestaltung.Glyphs.subCategory</key>\n      <string>Small</string>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zerosuperior\" yOffset=\"-812\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0030\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"-20\"/>\n      <point x=\"1060\" y=\"218\"/>\n      <point x=\"1060\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"1194\"/>\n      <point x=\"906\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"294\" y=\"1440\"/>\n      <point x=\"140\" y=\"1194\"/>\n      <point x=\"140\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"140\" y=\"218\"/>\n      <point x=\"294\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"601\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"601\"/>\n      <point x=\"700\" y=\"640\"/>\n      <point x=\"700\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"760\"/>\n      <point x=\"660\" y=\"800\"/>\n      <point x=\"600\" y=\"800\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"540\" y=\"800\"/>\n      <point x=\"500\" y=\"760\"/>\n      <point x=\"500\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"640\"/>\n      <point x=\"540\" y=\"601\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"70\"/>\n      <point x=\"236\" y=\"279\"/>\n      <point x=\"236\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"236\" y=\"1135\"/>\n      <point x=\"358\" y=\"1350\"/>\n      <point x=\"600\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"1350\"/>\n      <point x=\"964\" y=\"1135\"/>\n      <point x=\"964\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"279\"/>\n      <point x=\"842\" y=\"70\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"zerosuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zero.zero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zero.zero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"-20\"/>\n      <point x=\"1060\" y=\"218\"/>\n      <point x=\"1060\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"1194\"/>\n      <point x=\"906\" y=\"1440\"/>\n      <point x=\"600\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"294\" y=\"1440\"/>\n      <point x=\"140\" y=\"1194\"/>\n      <point x=\"140\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"140\" y=\"218\"/>\n      <point x=\"294\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"312\" y=\"232\" type=\"line\"/>\n      <point x=\"974\" y=\"1109\" type=\"line\"/>\n      <point x=\"906\" y=\"1161\" type=\"line\"/>\n      <point x=\"260\" y=\"310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"358\" y=\"70\"/>\n      <point x=\"236\" y=\"279\"/>\n      <point x=\"236\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"236\" y=\"1135\"/>\n      <point x=\"358\" y=\"1350\"/>\n      <point x=\"600\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"1350\"/>\n      <point x=\"964\" y=\"1135\"/>\n      <point x=\"964\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"279\"/>\n      <point x=\"842\" y=\"70\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>zero</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>zero</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zeroinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zeroinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2080\"/>\n  <outline>\n    <component base=\"zerosuperior\" yOffset=\"-812\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zerosuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zerosuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2070\"/>\n  <outline>\n    <contour>\n      <point x=\"601\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"792\"/>\n      <point x=\"889\" y=\"913\"/>\n      <point x=\"889\" y=\"1119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"1321\"/>\n      <point x=\"782\" y=\"1440\"/>\n      <point x=\"601\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"1440\"/>\n      <point x=\"311\" y=\"1321\"/>\n      <point x=\"311\" y=\"1119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"311\" y=\"913\"/>\n      <point x=\"419\" y=\"792\"/>\n    </contour>\n    <contour>\n      <point x=\"601\" y=\"884\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"884\"/>\n      <point x=\"407\" y=\"971\"/>\n      <point x=\"407\" y=\"1119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"407\" y=\"1263\"/>\n      <point x=\"479\" y=\"1348\"/>\n      <point x=\"601\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"722\" y=\"1348\"/>\n      <point x=\"793\" y=\"1263\"/>\n      <point x=\"793\" y=\"1119\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"971\"/>\n      <point x=\"722\" y=\"884\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zeta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zeta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B6\"/>\n  <anchor x=\"600\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"660\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"767\" y=\"-480\" type=\"line\"/>\n      <point x=\"971\" y=\"-424\"/>\n      <point x=\"1058\" y=\"-337\"/>\n      <point x=\"1058\" y=\"-186\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"-19\"/>\n      <point x=\"965\" y=\"57\"/>\n      <point x=\"746\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"94\"/>\n      <point x=\"296\" y=\"240\"/>\n      <point x=\"296\" y=\"512\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"778\"/>\n      <point x=\"547\" y=\"1076\"/>\n      <point x=\"1052\" y=\"1410\" type=\"curve\"/>\n      <point x=\"922\" y=\"1457\" type=\"line\"/>\n      <point x=\"922\" y=\"1393\" type=\"line\"/>\n      <point x=\"439\" y=\"1113\"/>\n      <point x=\"200\" y=\"818\"/>\n      <point x=\"200\" y=\"502\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"200\" y=\"176\"/>\n      <point x=\"373\" y=\"3\"/>\n      <point x=\"722\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"-32\"/>\n      <point x=\"962\" y=\"-82\"/>\n      <point x=\"962\" y=\"-186\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"-288\"/>\n      <point x=\"891\" y=\"-352\"/>\n      <point x=\"723\" y=\"-399\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"256\" y=\"1410\" type=\"line\"/>\n      <point x=\"1052\" y=\"1410\" type=\"line\"/>\n      <point x=\"1052\" y=\"1500\" type=\"line\"/>\n      <point x=\"256\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0436\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"766\" y=\"536\" type=\"line\"/>\n      <point x=\"826\" y=\"536\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"536\"/>\n      <point x=\"938\" y=\"560\"/>\n      <point x=\"956\" y=\"617\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"921\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1063\" y=\"959\"/>\n      <point x=\"1091\" y=\"980\"/>\n      <point x=\"1130\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1163\" y=\"980\" type=\"line\"/>\n      <point x=\"1163\" y=\"1070\" type=\"line\"/>\n      <point x=\"1120\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1070\"/>\n      <point x=\"994\" y=\"1029\"/>\n      <point x=\"972\" y=\"958\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"666\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"608\"/>\n      <point x=\"822\" y=\"575\"/>\n      <point x=\"766\" y=\"575\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"-10\" type=\"line\"/>\n      <point x=\"80\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"-10\"/>\n      <point x=\"206\" y=\"31\"/>\n      <point x=\"228\" y=\"102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"394\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"452\"/>\n      <point x=\"378\" y=\"485\"/>\n      <point x=\"434\" y=\"485\" type=\"curve\"/>\n      <point x=\"434\" y=\"524\" type=\"line\"/>\n      <point x=\"374\" y=\"524\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"301\" y=\"524\"/>\n      <point x=\"262\" y=\"500\"/>\n      <point x=\"244\" y=\"443\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"149\" y=\"139\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"101\"/>\n      <point x=\"109\" y=\"80\"/>\n      <point x=\"70\" y=\"80\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"80\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"367\" y=\"485\" type=\"line\"/>\n      <point x=\"575\" y=\"485\" type=\"line\"/>\n      <point x=\"575\" y=\"575\" type=\"line\"/>\n      <point x=\"367\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"434\" y=\"536\" type=\"line\"/>\n      <point x=\"434\" y=\"575\" type=\"line\"/>\n      <point x=\"378\" y=\"575\"/>\n      <point x=\"336\" y=\"608\"/>\n      <point x=\"318\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"958\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"1029\"/>\n      <point x=\"152\" y=\"1070\"/>\n      <point x=\"80\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"1070\" type=\"line\"/>\n      <point x=\"37\" y=\"980\" type=\"line\"/>\n      <point x=\"70\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"980\"/>\n      <point x=\"137\" y=\"959\"/>\n      <point x=\"149\" y=\"921\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"617\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"560\"/>\n      <point x=\"301\" y=\"536\"/>\n      <point x=\"374\" y=\"536\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"645\" y=\"0\" type=\"line\"/>\n      <point x=\"645\" y=\"1060\" type=\"line\"/>\n      <point x=\"555\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1120\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1163\" y=\"-10\" type=\"line\"/>\n      <point x=\"1163\" y=\"80\" type=\"line\"/>\n      <point x=\"1130\" y=\"80\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"80\"/>\n      <point x=\"1063\" y=\"101\"/>\n      <point x=\"1051\" y=\"139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"956\" y=\"443\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"938\" y=\"500\"/>\n      <point x=\"899\" y=\"524\"/>\n      <point x=\"826\" y=\"524\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"524\" type=\"line\"/>\n      <point x=\"766\" y=\"485\" type=\"line\"/>\n      <point x=\"822\" y=\"485\"/>\n      <point x=\"864\" y=\"452\"/>\n      <point x=\"882\" y=\"394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"31\"/>\n      <point x=\"1048\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"625\" y=\"485\" type=\"line\"/>\n      <point x=\"833\" y=\"485\" type=\"line\"/>\n      <point x=\"833\" y=\"575\" type=\"line\"/>\n      <point x=\"625\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zhe-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zhe-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"766\" y=\"536\" type=\"line\"/>\n      <point x=\"826\" y=\"536\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"536\"/>\n      <point x=\"938\" y=\"560\"/>\n      <point x=\"956\" y=\"617\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"921\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1063\" y=\"959\"/>\n      <point x=\"1091\" y=\"980\"/>\n      <point x=\"1130\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1163\" y=\"980\" type=\"line\"/>\n      <point x=\"1163\" y=\"1070\" type=\"line\"/>\n      <point x=\"1120\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1070\"/>\n      <point x=\"994\" y=\"1029\"/>\n      <point x=\"972\" y=\"958\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"666\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"608\"/>\n      <point x=\"822\" y=\"575\"/>\n      <point x=\"766\" y=\"575\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"-10\" type=\"line\"/>\n      <point x=\"80\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"-10\"/>\n      <point x=\"206\" y=\"31\"/>\n      <point x=\"228\" y=\"102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"394\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"452\"/>\n      <point x=\"378\" y=\"485\"/>\n      <point x=\"434\" y=\"485\" type=\"curve\"/>\n      <point x=\"434\" y=\"524\" type=\"line\"/>\n      <point x=\"374\" y=\"524\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"301\" y=\"524\"/>\n      <point x=\"262\" y=\"500\"/>\n      <point x=\"244\" y=\"443\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"149\" y=\"139\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"101\"/>\n      <point x=\"109\" y=\"80\"/>\n      <point x=\"70\" y=\"80\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"80\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"367\" y=\"485\" type=\"line\"/>\n      <point x=\"575\" y=\"485\" type=\"line\"/>\n      <point x=\"575\" y=\"575\" type=\"line\"/>\n      <point x=\"367\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"434\" y=\"536\" type=\"line\"/>\n      <point x=\"434\" y=\"575\" type=\"line\"/>\n      <point x=\"378\" y=\"575\"/>\n      <point x=\"336\" y=\"608\"/>\n      <point x=\"318\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"958\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"1029\"/>\n      <point x=\"152\" y=\"1070\"/>\n      <point x=\"80\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"1070\" type=\"line\"/>\n      <point x=\"37\" y=\"980\" type=\"line\"/>\n      <point x=\"70\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"980\"/>\n      <point x=\"137\" y=\"959\"/>\n      <point x=\"149\" y=\"921\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"617\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"560\"/>\n      <point x=\"301\" y=\"536\"/>\n      <point x=\"374\" y=\"536\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"645\" y=\"0\" type=\"line\"/>\n      <point x=\"645\" y=\"539\" type=\"line\"/>\n      <point x=\"645\" y=\"1500\" type=\"line\"/>\n      <point x=\"555\" y=\"1500\" type=\"line\"/>\n      <point x=\"555\" y=\"539\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1120\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1163\" y=\"-10\" type=\"line\"/>\n      <point x=\"1163\" y=\"80\" type=\"line\"/>\n      <point x=\"1130\" y=\"80\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"80\"/>\n      <point x=\"1063\" y=\"101\"/>\n      <point x=\"1051\" y=\"139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"956\" y=\"443\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"938\" y=\"500\"/>\n      <point x=\"899\" y=\"524\"/>\n      <point x=\"826\" y=\"524\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"524\" type=\"line\"/>\n      <point x=\"766\" y=\"485\" type=\"line\"/>\n      <point x=\"822\" y=\"485\"/>\n      <point x=\"864\" y=\"452\"/>\n      <point x=\"882\" y=\"394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"31\"/>\n      <point x=\"1048\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"625\" y=\"485\" type=\"line\"/>\n      <point x=\"833\" y=\"485\" type=\"line\"/>\n      <point x=\"833\" y=\"575\" type=\"line\"/>\n      <point x=\"625\" y=\"575\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zhedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zhedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0497\"/>\n  <anchor x=\"600\" y=\"-270\" name=\"bottom\"/>\n  <anchor x=\"600\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"766\" y=\"536\" type=\"line\"/>\n      <point x=\"826\" y=\"536\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"536\"/>\n      <point x=\"938\" y=\"560\"/>\n      <point x=\"956\" y=\"617\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"921\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1063\" y=\"959\"/>\n      <point x=\"1091\" y=\"980\"/>\n      <point x=\"1130\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1163\" y=\"980\" type=\"line\"/>\n      <point x=\"1163\" y=\"1070\" type=\"line\"/>\n      <point x=\"1120\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1070\"/>\n      <point x=\"994\" y=\"1029\"/>\n      <point x=\"972\" y=\"958\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"666\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"608\"/>\n      <point x=\"822\" y=\"575\"/>\n      <point x=\"766\" y=\"575\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"-10\" type=\"line\"/>\n      <point x=\"80\" y=\"-10\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"152\" y=\"-10\"/>\n      <point x=\"206\" y=\"31\"/>\n      <point x=\"228\" y=\"102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"394\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"336\" y=\"452\"/>\n      <point x=\"378\" y=\"485\"/>\n      <point x=\"434\" y=\"485\" type=\"curve\"/>\n      <point x=\"434\" y=\"524\" type=\"line\"/>\n      <point x=\"374\" y=\"524\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"301\" y=\"524\"/>\n      <point x=\"262\" y=\"500\"/>\n      <point x=\"244\" y=\"443\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"149\" y=\"139\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"101\"/>\n      <point x=\"109\" y=\"80\"/>\n      <point x=\"70\" y=\"80\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"80\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"367\" y=\"485\" type=\"line\"/>\n      <point x=\"575\" y=\"485\" type=\"line\"/>\n      <point x=\"575\" y=\"575\" type=\"line\"/>\n      <point x=\"367\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"434\" y=\"536\" type=\"line\"/>\n      <point x=\"434\" y=\"575\" type=\"line\"/>\n      <point x=\"378\" y=\"575\"/>\n      <point x=\"336\" y=\"608\"/>\n      <point x=\"318\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"958\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"1029\"/>\n      <point x=\"152\" y=\"1070\"/>\n      <point x=\"80\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"1070\" type=\"line\"/>\n      <point x=\"37\" y=\"980\" type=\"line\"/>\n      <point x=\"70\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"980\"/>\n      <point x=\"137\" y=\"959\"/>\n      <point x=\"149\" y=\"921\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"244\" y=\"617\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"560\"/>\n      <point x=\"301\" y=\"536\"/>\n      <point x=\"374\" y=\"536\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"645\" y=\"0\" type=\"line\"/>\n      <point x=\"645\" y=\"1060\" type=\"line\"/>\n      <point x=\"555\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1120\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1163\" y=\"-10\" type=\"line\"/>\n      <point x=\"1163\" y=\"90\" type=\"line\"/>\n      <point x=\"1130\" y=\"90\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"90\"/>\n      <point x=\"1061\" y=\"107\"/>\n      <point x=\"1051\" y=\"139\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"956\" y=\"443\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"938\" y=\"500\"/>\n      <point x=\"899\" y=\"524\"/>\n      <point x=\"826\" y=\"524\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"524\" type=\"line\"/>\n      <point x=\"766\" y=\"485\" type=\"line\"/>\n      <point x=\"822\" y=\"485\"/>\n      <point x=\"864\" y=\"452\"/>\n      <point x=\"882\" y=\"394\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"994\" y=\"31\"/>\n      <point x=\"1048\" y=\"-10\"/>\n    </contour>\n    <contour>\n      <point x=\"625\" y=\"485\" type=\"line\"/>\n      <point x=\"833\" y=\"485\" type=\"line\"/>\n      <point x=\"833\" y=\"575\" type=\"line\"/>\n      <point x=\"625\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1069\" y=\"-270\" type=\"line\"/>\n      <point x=\"1163\" y=\"-270\" type=\"line\"/>\n      <point x=\"1163\" y=\"90\" type=\"line\"/>\n      <point x=\"1069\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs/zmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"zmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1DBB\"/>\n  <guideline x=\"1060\" y=\"790\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"391\" y=\"818\" type=\"line\"/>\n      <point x=\"861\" y=\"1340\" type=\"line\"/>\n      <point x=\"794\" y=\"1390\" type=\"line\"/>\n      <point x=\"324\" y=\"870\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"790\" type=\"line\"/>\n      <point x=\"874\" y=\"790\" type=\"line\"/>\n      <point x=\"874\" y=\"870\" type=\"line\"/>\n      <point x=\"324\" y=\"870\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1340\" type=\"line\"/>\n      <point x=\"861\" y=\"1340\" type=\"line\"/>\n      <point x=\"861\" y=\"1420\" type=\"line\"/>\n      <point x=\"324\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed B_lack/allah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"allah-ar\" format=\"2\">\n  <advance width=\"1218\"/>\n  <unicode hex=\"FDF2\"/>\n  <anchor x=\"1095\" y=\"-111\" name=\"bottom_1\"/>\n  <anchor x=\"826\" y=\"-111\" name=\"bottom_2\"/>\n  <anchor x=\"546\" y=\"-111\" name=\"bottom_3\"/>\n  <anchor x=\"226\" y=\"-111\" name=\"bottom_4\"/>\n  <anchor x=\"1091\" y=\"788\" name=\"top_1\"/>\n  <anchor x=\"860\" y=\"696\" name=\"top_2\"/>\n  <anchor x=\"597\" y=\"687\" name=\"top_3\"/>\n  <anchor x=\"265\" y=\"704\" name=\"top_4\"/>\n  <outline>\n    <component base=\"lam_lam_heh-ar\"/>\n    <component base=\"alef-ar\" xOffset=\"977\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>lam_lam_heh-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed B_lack/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>allah-ar</key>\n    <string>allah-ar.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed B_lack/layerinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>lib</key>\n    <dict>\n      <key>com.schriftgestaltung.layerId</key>\n      <string>E5C955C8-F661-4960-B659-F2A3D2582D0D</string>\n      <key>com.schriftgestaltung.layerOrderInGlyph.allah-ar</key>\n      <integer>3</integer>\n    </dict>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed R_egular/allah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"allah-ar\" format=\"2\">\n  <advance width=\"1170\"/>\n  <unicode hex=\"FDF2\"/>\n  <anchor x=\"1061\" y=\"-116\" name=\"bottom_1\"/>\n  <anchor x=\"806\" y=\"-116\" name=\"bottom_2\"/>\n  <anchor x=\"546\" y=\"-116\" name=\"bottom_3\"/>\n  <anchor x=\"230\" y=\"-116\" name=\"bottom_4\"/>\n  <anchor x=\"1052\" y=\"756\" name=\"top_1\"/>\n  <anchor x=\"824\" y=\"672\" name=\"top_2\"/>\n  <anchor x=\"573\" y=\"663\" name=\"top_3\"/>\n  <anchor x=\"267\" y=\"704\" name=\"top_4\"/>\n  <outline>\n    <component base=\"lam_lam_heh-ar\"/>\n    <component base=\"alef-ar\" xOffset=\"947\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>lam_lam_heh-ar</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>alef-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed R_egular/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>allah-ar</key>\n    <string>allah-ar.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed R_egular/layerinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>lib</key>\n    <dict>\n      <key>com.schriftgestaltung.layerId</key>\n      <string>2F00052B-4CEF-4C35-9869-AAD90889B4C2</string>\n      <key>com.schriftgestaltung.layerOrderInGlyph.allah-ar</key>\n      <integer>5</integer>\n    </dict>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed T_hin/allah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"allah-ar\" format=\"2\">\n  <advance width=\"1140\"/>\n  <unicode hex=\"FDF2\"/>\n  <anchor x=\"1039\" y=\"-120\" name=\"bottom_1\"/>\n  <anchor x=\"794\" y=\"-120\" name=\"bottom_2\"/>\n  <anchor x=\"546\" y=\"-120\" name=\"bottom_3\"/>\n  <anchor x=\"234\" y=\"-120\" name=\"bottom_4\"/>\n  <anchor x=\"1027\" y=\"735\" name=\"top_1\"/>\n  <anchor x=\"801\" y=\"656\" name=\"top_2\"/>\n  <anchor x=\"557\" y=\"647\" name=\"top_3\"/>\n  <anchor x=\"269\" y=\"704\" name=\"top_4\"/>\n  <outline>\n    <component base=\"lam_lam_heh-ar\"/>\n    <component base=\"alef-ar\" xOffset=\"929\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>lam_lam_heh-ar</string>\n        </dict>\n      </array>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed T_hin/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>allah-ar</key>\n    <string>allah-ar.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed T_hin/layerinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>lib</key>\n    <dict>\n      <key>com.schriftgestaltung.layerId</key>\n      <string>E67DA94D-AF90-4AFA-8684-14D1F5822449</string>\n      <key>com.schriftgestaltung.layerOrderInGlyph.allah-ar</key>\n      <integer>4</integer>\n    </dict>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/_alefF_athatan-ar.fina.rlig.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_alefFathatan-ar.fina.rlig\" format=\"2\">\n  <anchor x=\"273\" y=\"1701\" name=\"top\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/_tahabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"_tahabove\" format=\"2\">\n  <anchor x=\"567\" y=\"661\" name=\"_top\"/>\n  <anchor x=\"567\" y=\"546\" name=\"_top.dot\"/>\n  <anchor x=\"551\" y=\"1092\" name=\"top\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/allah-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"allah-ar\" format=\"2\">\n  <anchor x=\"1829\" y=\"-141\" name=\"bottom_1\"/>\n  <anchor x=\"1280\" y=\"-141\" name=\"bottom_2\"/>\n  <anchor x=\"519\" y=\"-141\" name=\"bottom_3\"/>\n  <anchor x=\"1819\" y=\"1310\" name=\"top_1\"/>\n  <anchor x=\"1270\" y=\"1310\" name=\"top_2\"/>\n  <anchor x=\"652\" y=\"1250\" name=\"top_3\"/>\n  <outline>\n    <contour>\n      <point x=\"1012\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"-3\"/>\n      <point x=\"1249\" y=\"19\"/>\n      <point x=\"1280\" y=\"122\" type=\"curve\"/>\n      <point x=\"1318\" y=\"122\" type=\"line\"/>\n      <point x=\"1333\" y=\"257\" type=\"line\"/>\n      <point x=\"1271\" y=\"231\" type=\"line\"/>\n      <point x=\"1310\" y=\"36\"/>\n      <point x=\"1339\" y=\"-3\"/>\n      <point x=\"1555\" y=\"-3\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1857\" y=\"-3\"/>\n      <point x=\"1898\" y=\"106\"/>\n      <point x=\"1891\" y=\"330\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1864\" y=\"1190\" type=\"line\"/>\n      <point x=\"1772\" y=\"1190\" type=\"line\"/>\n      <point x=\"1799\" y=\"310\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1804\" y=\"137\"/>\n      <point x=\"1772\" y=\"91\"/>\n      <point x=\"1567\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1357\" y=\"91\"/>\n      <point x=\"1351\" y=\"127\"/>\n      <point x=\"1346\" y=\"309\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1321\" y=\"1190\" type=\"line\"/>\n      <point x=\"1229\" y=\"1190\" type=\"line\"/>\n      <point x=\"1249\" y=\"300\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1253\" y=\"111\"/>\n      <point x=\"1184\" y=\"91\"/>\n      <point x=\"1054\" y=\"91\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"874\" y=\"91\"/>\n      <point x=\"841\" y=\"123\"/>\n      <point x=\"840\" y=\"280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"977\" type=\"line\"/>\n      <point x=\"742\" y=\"977\" type=\"line\"/>\n      <point x=\"752\" y=\"266\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"755\" y=\"62\"/>\n      <point x=\"847\" y=\"-3\"/>\n    </contour>\n    <contour>\n      <point x=\"478\" y=\"177\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"623\" y=\"177\"/>\n      <point x=\"701\" y=\"188\"/>\n      <point x=\"731\" y=\"229\" type=\"curve\"/>\n      <point x=\"778\" y=\"232\" type=\"line\"/>\n      <point x=\"778\" y=\"298\" type=\"line\"/>\n      <point x=\"695\" y=\"275\"/>\n      <point x=\"575\" y=\"269\"/>\n      <point x=\"507\" y=\"269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"249\" y=\"269\"/>\n      <point x=\"151\" y=\"331\"/>\n      <point x=\"151\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"585\"/>\n      <point x=\"340\" y=\"673\"/>\n      <point x=\"784\" y=\"764\" type=\"curve\"/>\n      <point x=\"777\" y=\"859\" type=\"line\"/>\n      <point x=\"321\" y=\"751\"/>\n      <point x=\"59\" y=\"659\"/>\n      <point x=\"59\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"59\" y=\"242\"/>\n      <point x=\"230\" y=\"177\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/bar_braceright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_braceright.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"1530\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1756\" y=\"-214\"/>\n      <point x=\"1932\" y=\"-77\"/>\n      <point x=\"1892\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1873\" y=\"267\"/>\n      <point x=\"1810\" y=\"375\"/>\n      <point x=\"1810\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1810\" y=\"607\"/>\n      <point x=\"1925\" y=\"640\"/>\n      <point x=\"2136\" y=\"640\" type=\"curve\"/>\n      <point x=\"2136\" y=\"772\" type=\"line\"/>\n      <point x=\"1931\" y=\"772\"/>\n      <point x=\"1810\" y=\"832\"/>\n      <point x=\"1810\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1810\" y=\"1060\"/>\n      <point x=\"1872\" y=\"1164\"/>\n      <point x=\"1892\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1932\" y=\"1498\"/>\n      <point x=\"1756\" y=\"1626\"/>\n      <point x=\"1530\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1417\" y=\"1626\"/>\n      <point x=\"1348\" y=\"1618\"/>\n      <point x=\"1284\" y=\"1606\" type=\"curve\"/>\n      <point x=\"1298\" y=\"1524\" type=\"line\"/>\n      <point x=\"1377\" y=\"1531\"/>\n      <point x=\"1450\" y=\"1536\"/>\n      <point x=\"1512\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1691\" y=\"1536\"/>\n      <point x=\"1828\" y=\"1439\"/>\n      <point x=\"1796\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1774\" y=\"1161\"/>\n      <point x=\"1710\" y=\"1058\"/>\n      <point x=\"1710\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1710\" y=\"796\"/>\n      <point x=\"1839\" y=\"713\"/>\n      <point x=\"2058\" y=\"710\" type=\"curve\"/>\n      <point x=\"2058\" y=\"702\" type=\"line\"/>\n      <point x=\"1839\" y=\"699\"/>\n      <point x=\"1710\" y=\"618\"/>\n      <point x=\"1710\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1710\" y=\"367\"/>\n      <point x=\"1776\" y=\"264\"/>\n      <point x=\"1796\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1828\" y=\"-21\"/>\n      <point x=\"1691\" y=\"-124\"/>\n      <point x=\"1512\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1450\" y=\"-124\"/>\n      <point x=\"1376\" y=\"-119\"/>\n      <point x=\"1297\" y=\"-112\" type=\"curve\"/>\n      <point x=\"1284\" y=\"-194\" type=\"line\"/>\n      <point x=\"1348\" y=\"-206\"/>\n      <point x=\"1417\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/braceleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft_bar.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"870\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"-214\"/>\n      <point x=\"1052\" y=\"-206\"/>\n      <point x=\"1116\" y=\"-194\" type=\"curve\"/>\n      <point x=\"1103\" y=\"-112\" type=\"line\"/>\n      <point x=\"1024\" y=\"-119\"/>\n      <point x=\"950\" y=\"-124\"/>\n      <point x=\"888\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"-124\"/>\n      <point x=\"564\" y=\"-21\"/>\n      <point x=\"604\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"264\"/>\n      <point x=\"690\" y=\"367\"/>\n      <point x=\"690\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"618\"/>\n      <point x=\"561\" y=\"699\"/>\n      <point x=\"342\" y=\"702\" type=\"curve\"/>\n      <point x=\"342\" y=\"710\" type=\"line\"/>\n      <point x=\"561\" y=\"713\"/>\n      <point x=\"690\" y=\"796\"/>\n      <point x=\"690\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"1058\"/>\n      <point x=\"631\" y=\"1161\"/>\n      <point x=\"604\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"1439\"/>\n      <point x=\"709\" y=\"1536\"/>\n      <point x=\"888\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"1536\"/>\n      <point x=\"1023\" y=\"1531\"/>\n      <point x=\"1102\" y=\"1524\" type=\"curve\"/>\n      <point x=\"1116\" y=\"1606\" type=\"line\"/>\n      <point x=\"1052\" y=\"1618\"/>\n      <point x=\"983\" y=\"1626\"/>\n      <point x=\"870\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"644\" y=\"1626\"/>\n      <point x=\"468\" y=\"1498\"/>\n      <point x=\"508\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"528\" y=\"1164\"/>\n      <point x=\"590\" y=\"1060\"/>\n      <point x=\"590\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"832\"/>\n      <point x=\"469\" y=\"772\"/>\n      <point x=\"264\" y=\"772\" type=\"curve\"/>\n      <point x=\"264\" y=\"640\" type=\"line\"/>\n      <point x=\"475\" y=\"640\"/>\n      <point x=\"590\" y=\"607\"/>\n      <point x=\"590\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"375\"/>\n      <point x=\"527\" y=\"267\"/>\n      <point x=\"508\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"468\" y=\"-77\"/>\n      <point x=\"644\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/braceright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"364\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"-214\"/>\n      <point x=\"706\" y=\"-77\"/>\n      <point x=\"666\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"267\"/>\n      <point x=\"584\" y=\"375\"/>\n      <point x=\"584\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"607\"/>\n      <point x=\"699\" y=\"640\"/>\n      <point x=\"910\" y=\"640\" type=\"curve\"/>\n      <point x=\"910\" y=\"772\" type=\"line\"/>\n      <point x=\"705\" y=\"772\"/>\n      <point x=\"584\" y=\"832\"/>\n      <point x=\"584\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"1060\"/>\n      <point x=\"646\" y=\"1164\"/>\n      <point x=\"666\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"1498\"/>\n      <point x=\"556\" y=\"1626\"/>\n      <point x=\"364\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"1626\"/>\n      <point x=\"256\" y=\"1618\"/>\n      <point x=\"218\" y=\"1606\" type=\"curve\"/>\n      <point x=\"232\" y=\"1524\" type=\"line\"/>\n      <point x=\"274\" y=\"1531\"/>\n      <point x=\"313\" y=\"1536\"/>\n      <point x=\"346\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"1536\"/>\n      <point x=\"610\" y=\"1439\"/>\n      <point x=\"570\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"1161\"/>\n      <point x=\"484\" y=\"1058\"/>\n      <point x=\"484\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"796\"/>\n      <point x=\"613\" y=\"713\"/>\n      <point x=\"832\" y=\"710\" type=\"curve\"/>\n      <point x=\"832\" y=\"702\" type=\"line\"/>\n      <point x=\"613\" y=\"699\"/>\n      <point x=\"484\" y=\"618\"/>\n      <point x=\"484\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"367\"/>\n      <point x=\"546\" y=\"264\"/>\n      <point x=\"570\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"610\" y=\"-21\"/>\n      <point x=\"492\" y=\"-124\"/>\n      <point x=\"346\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"-124\"/>\n      <point x=\"273\" y=\"-119\"/>\n      <point x=\"231\" y=\"-112\" type=\"curve\"/>\n      <point x=\"218\" y=\"-194\" type=\"line\"/>\n      <point x=\"256\" y=\"-206\"/>\n      <point x=\"297\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/braceright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright_numbersign.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"389\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"581\" y=\"-214\"/>\n      <point x=\"731\" y=\"-77\"/>\n      <point x=\"691\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"267\"/>\n      <point x=\"609\" y=\"375\"/>\n      <point x=\"609\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"607\"/>\n      <point x=\"724\" y=\"640\"/>\n      <point x=\"935\" y=\"640\" type=\"curve\"/>\n      <point x=\"935\" y=\"772\" type=\"line\"/>\n      <point x=\"730\" y=\"772\"/>\n      <point x=\"609\" y=\"832\"/>\n      <point x=\"609\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"1060\"/>\n      <point x=\"671\" y=\"1164\"/>\n      <point x=\"691\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"731\" y=\"1498\"/>\n      <point x=\"581\" y=\"1626\"/>\n      <point x=\"389\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"322\" y=\"1626\"/>\n      <point x=\"281\" y=\"1618\"/>\n      <point x=\"243\" y=\"1606\" type=\"curve\"/>\n      <point x=\"257\" y=\"1524\" type=\"line\"/>\n      <point x=\"299\" y=\"1531\"/>\n      <point x=\"338\" y=\"1536\"/>\n      <point x=\"371\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"1536\"/>\n      <point x=\"623\" y=\"1439\"/>\n      <point x=\"595\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"576\" y=\"1161\"/>\n      <point x=\"509\" y=\"1058\"/>\n      <point x=\"509\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"796\"/>\n      <point x=\"638\" y=\"713\"/>\n      <point x=\"857\" y=\"710\" type=\"curve\"/>\n      <point x=\"857\" y=\"702\" type=\"line\"/>\n      <point x=\"638\" y=\"699\"/>\n      <point x=\"509\" y=\"618\"/>\n      <point x=\"509\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"367\"/>\n      <point x=\"579\" y=\"264\"/>\n      <point x=\"595\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"-21\"/>\n      <point x=\"517\" y=\"-124\"/>\n      <point x=\"371\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"-124\"/>\n      <point x=\"298\" y=\"-119\"/>\n      <point x=\"256\" y=\"-112\" type=\"curve\"/>\n      <point x=\"243\" y=\"-194\" type=\"line\"/>\n      <point x=\"281\" y=\"-206\"/>\n      <point x=\"322\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>_alefFathatan-ar.fina.rlig</key>\n    <string>_alefF_athatan-ar.fina.rlig.glif</string>\n    <key>_tahabove</key>\n    <string>_tahabove.glif</string>\n    <key>allah-ar</key>\n    <string>allah-ar.glif</string>\n    <key>bar_braceright.liga</key>\n    <string>bar_braceright.liga.glif</string>\n    <key>braceleft_bar.liga</key>\n    <string>braceleft_bar.liga.glif</string>\n    <key>braceright</key>\n    <string>braceright.glif</string>\n    <key>braceright_numbersign.liga</key>\n    <string>braceright_numbersign.liga.glif</string>\n    <key>numbersign_braceleft.liga</key>\n    <string>numbersign_braceleft.liga.glif</string>\n    <key>question-ar</key>\n    <string>question-ar.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/numbersign_braceleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_braceleft.liga\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"2050\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2117\" y=\"-214\"/>\n      <point x=\"2158\" y=\"-206\"/>\n      <point x=\"2196\" y=\"-194\" type=\"curve\"/>\n      <point x=\"2183\" y=\"-112\" type=\"line\"/>\n      <point x=\"2141\" y=\"-119\"/>\n      <point x=\"2101\" y=\"-124\"/>\n      <point x=\"2068\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1922\" y=\"-124\"/>\n      <point x=\"1818\" y=\"-21\"/>\n      <point x=\"1844\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1860\" y=\"264\"/>\n      <point x=\"1930\" y=\"367\"/>\n      <point x=\"1930\" y=\"488\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1930\" y=\"618\"/>\n      <point x=\"1801\" y=\"699\"/>\n      <point x=\"1582\" y=\"702\" type=\"curve\"/>\n      <point x=\"1582\" y=\"710\" type=\"line\"/>\n      <point x=\"1801\" y=\"713\"/>\n      <point x=\"1930\" y=\"796\"/>\n      <point x=\"1930\" y=\"942\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1930\" y=\"1058\"/>\n      <point x=\"1863\" y=\"1161\"/>\n      <point x=\"1844\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1816\" y=\"1439\"/>\n      <point x=\"1922\" y=\"1536\"/>\n      <point x=\"2068\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2101\" y=\"1536\"/>\n      <point x=\"2140\" y=\"1531\"/>\n      <point x=\"2182\" y=\"1524\" type=\"curve\"/>\n      <point x=\"2196\" y=\"1606\" type=\"line\"/>\n      <point x=\"2158\" y=\"1618\"/>\n      <point x=\"2117\" y=\"1626\"/>\n      <point x=\"2050\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1858\" y=\"1626\"/>\n      <point x=\"1708\" y=\"1498\"/>\n      <point x=\"1748\" y=\"1274\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1768\" y=\"1164\"/>\n      <point x=\"1830\" y=\"1060\"/>\n      <point x=\"1830\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1830\" y=\"832\"/>\n      <point x=\"1709\" y=\"772\"/>\n      <point x=\"1504\" y=\"772\" type=\"curve\"/>\n      <point x=\"1504\" y=\"640\" type=\"line\"/>\n      <point x=\"1715\" y=\"640\"/>\n      <point x=\"1830\" y=\"607\"/>\n      <point x=\"1830\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1830\" y=\"375\"/>\n      <point x=\"1767\" y=\"267\"/>\n      <point x=\"1748\" y=\"156\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1708\" y=\"-77\"/>\n      <point x=\"1858\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/question-ar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"question-ar\" format=\"2\">\n  <outline>\n    <contour>\n      <point x=\"644\" y=\"376\" type=\"line\"/>\n      <point x=\"738\" y=\"376\" type=\"line\"/>\n      <point x=\"738\" y=\"458\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"558\"/>\n      <point x=\"778\" y=\"631\"/>\n      <point x=\"874\" y=\"698\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1043\" y=\"818\"/>\n      <point x=\"1115\" y=\"935\"/>\n      <point x=\"1115\" y=\"1092\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1115\" y=\"1313\"/>\n      <point x=\"974\" y=\"1440\"/>\n      <point x=\"729\" y=\"1440\" type=\"curve\"/>\n      <point x=\"727\" y=\"1350\" type=\"line\"/>\n      <point x=\"914\" y=\"1350\"/>\n      <point x=\"1021\" y=\"1252\"/>\n      <point x=\"1021\" y=\"1082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"960\"/>\n      <point x=\"964\" y=\"867\"/>\n      <point x=\"830\" y=\"774\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"683\"/>\n      <point x=\"644\" y=\"594\"/>\n      <point x=\"644\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"332\" y=\"1198\" type=\"line\"/>\n      <point x=\"469\" y=\"1305\"/>\n      <point x=\"587\" y=\"1350\"/>\n      <point x=\"727\" y=\"1350\" type=\"curve\"/>\n      <point x=\"729\" y=\"1440\" type=\"line\"/>\n      <point x=\"557\" y=\"1440\"/>\n      <point x=\"421\" y=\"1387\"/>\n      <point x=\"273\" y=\"1261\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/groups.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>public.kern1.eight-ar.inferior</key>\n    <array>\n      <string>eight-arinferior</string>\n      <string>eight-arsuperior</string>\n      <string>eight-persianinferior</string>\n      <string>eight-persiansuperior</string>\n    </array>\n    <key>public.kern1.five-ar.inferior</key>\n    <array>\n      <string>five-arinferior</string>\n      <string>five-arsuperior</string>\n    </array>\n    <key>public.kern1.four-persian.urdu.inferior</key>\n    <array>\n      <string>four-persian.urduinferior</string>\n      <string>four-persian.urdusuperior</string>\n    </array>\n    <key>public.kern1.seven-ar.inferior</key>\n    <array>\n      <string>seven-arinferior</string>\n      <string>seven-arsuperior</string>\n      <string>seven-persianinferior</string>\n      <string>seven-persiansuperior</string>\n    </array>\n    <key>public.kern2.dot_below</key>\n    <array>\n      <string>pehMeemabove-ar.init</string>\n    </array>\n    <key>public.kern2.eight-ar.inferior</key>\n    <array>\n      <string>eight-arinferior</string>\n      <string>eight-arsuperior</string>\n      <string>eight-persianinferior</string>\n      <string>eight-persiansuperior</string>\n    </array>\n    <key>public.kern2.nine-ar.inferior</key>\n    <array>\n      <string>nine-arinferior</string>\n      <string>nine-arsuperior</string>\n      <string>nine-persianinferior</string>\n      <string>nine-persiansuperior</string>\n    </array>\n    <key>public.kern2.seven-ar.inferior</key>\n    <array>\n      <string>seven-arinferior</string>\n      <string>seven-arsuperior</string>\n      <string>seven-persianinferior</string>\n      <string>seven-persiansuperior</string>\n    </array>\n    <key>public.kern2.seven-persian.urdu.inferior</key>\n    <array>\n      <string>seven-persian.urduinferior</string>\n      <string>seven-persian.urdusuperior</string>\n    </array>\n    <key>public.kern2.six-ar.inferior</key>\n    <array>\n      <string>six-arinferior</string>\n      <string>six-arsuperior</string>\n    </array>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/layercontents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <array>\n    <array>\n      <string>public.default</string>\n      <string>glyphs</string>\n    </array>\n    <array>\n      <string>public.background</string>\n      <string>glyphs.public.background</string>\n    </array>\n    <array>\n      <string>ExtraCondensed Black</string>\n      <string>glyphs.E_xtraC_ondensed B_lack</string>\n    </array>\n    <array>\n      <string>ExtraCondensed Thin</string>\n      <string>glyphs.E_xtraC_ondensed T_hin</string>\n    </array>\n    <array>\n      <string>ExtraCondensed Regular</string>\n      <string>glyphs.E_xtraC_ondensed R_egular</string>\n    </array>\n  </array>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/lib.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>com.github.googlei18n.ufo2ft.filters</key>\n    <array>\n      <dict>\n        <key>name</key>\n        <string>decomposeTransformedComponents</string>\n        <key>pre</key>\n        <integer>1</integer>\n      </dict>\n      <dict>\n        <key>exclude</key>\n        <array>\n          <string>ij_acute</string>\n          <string>baht</string>\n          <string>bitcoin</string>\n          <string>cedi</string>\n          <string>cent</string>\n          <string>colonsign</string>\n          <string>currency</string>\n          <string>dollar</string>\n          <string>dong</string>\n          <string>euro</string>\n          <string>eurocurrency</string>\n          <string>florin</string>\n          <string>franc</string>\n          <string>guarani</string>\n          <string>hryvnia</string>\n          <string>kip</string>\n          <string>lari</string>\n          <string>lira</string>\n          <string>liraTurkish</string>\n          <string>manat</string>\n          <string>naira</string>\n          <string>peseta</string>\n          <string>peso</string>\n          <string>ruble</string>\n          <string>rupee</string>\n          <string>rupeeIndian</string>\n          <string>sheqel</string>\n          <string>sterling</string>\n          <string>tenge</string>\n          <string>tugrik</string>\n          <string>won</string>\n          <string>yen</string>\n          <string>baht.BRACKET.600</string>\n          <string>dollar.BRACKET.600</string>\n          <string>lam_alef-ar</string>\n          <string>lam_alef-ar.fina</string>\n          <string>lam_alef-ar.fina.short</string>\n          <string>lam_alef-ar.short</string>\n          <string>lam_lam_heh-ar</string>\n          <string>allah-ar</string>\n          <string>_tahabove</string>\n        </array>\n        <key>name</key>\n        <string>propagateAnchors</string>\n        <key>pre</key>\n        <integer>1</integer>\n      </dict>\n    </array>\n    <key>com.schriftgestaltung.appVersion</key>\n    <string>1352</string>\n    <key>com.schriftgestaltung.customName</key>\n    <string>Extra</string>\n    <key>com.schriftgestaltung.customParameter.GSFont.Axes</key>\n    <array>\n      <dict>\n        <key>Name</key>\n        <string>Weight</string>\n        <key>Tag</key>\n        <string>wght</string>\n      </dict>\n    </array>\n    <key>com.schriftgestaltung.customParameter.GSFont.DisplayStrings</key>\n    <array>\n      <string>{}/braceleft_bar.liga</string>\n    </array>\n    <key>com.schriftgestaltung.customParameter.GSFont.disablesAutomaticAlignment</key>\n    <false/>\n    <key>com.schriftgestaltung.customParameter.GSFont.disablesLastChange</key>\n    <true/>\n    <key>com.schriftgestaltung.customParameter.GSFont.note</key>\n    <string>#Macro to convert the ligatures from editable to production mode\n\ndef ligatureProcess(production):\n\tfor glyph in Glyphs.font.glyphs:\n\t\tif glyph.color == 3: #2 width\n\t\t\tif production == True:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB - 1200\n\t\t\tif production == False:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB + 1200\n\n\t\telif glyph.color == 4: #3 width\n\t\t\tif production == True:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB - 2400\n\t\t\tif production == False:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB + 2400\n\n\t\telif glyph.color == 9: #4 width\n\t\t\tif production == True:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB - 3600\n\t\t\tif production == False:\n\t\t\t\tglyph.layers[0].LSB = glyph.layers[0].LSB + 3600\t\t\n\t\t\n\nligatureProcess(True) #True for production mode, False for editable\n\n\n\nSettings for scaler for halves and thirds\n\nThird\n\n30\t\t30\t\t30\n40\t\t40\t\t40\n80\t\t-160\t-340\n\nHalf\n70\t\t70\t\t70\n45\t\t45\t\t45\n60\t\t-220\t-360</string>\n    <key>com.schriftgestaltung.customParameter.GSFont.useNiceNames</key>\n    <integer>1</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue1</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue2</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.customValue3</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.iconName</key>\n    <string></string>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.weightValue</key>\n    <integer>140</integer>\n    <key>com.schriftgestaltung.customParameter.GSFontMaster.widthValue</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.fontMasterID</key>\n    <string>master01</string>\n    <key>com.schriftgestaltung.fontMasterOrder</key>\n    <integer>0</integer>\n    <key>com.schriftgestaltung.keyboardIncrement</key>\n    <integer>1</integer>\n    <key>com.schriftgestaltung.weight</key>\n    <string>Light</string>\n    <key>com.schriftgestaltung.weightValue</key>\n    <integer>140</integer>\n    <key>com.schriftgestaltung.width</key>\n    <string>Regular</string>\n    <key>public.glyphOrder</key>\n    <array>\n      <string>A</string>\n      <string>Aacute</string>\n      <string>Abreve</string>\n      <string>Abreveacute</string>\n      <string>Abrevedotbelow</string>\n      <string>Abrevegrave</string>\n      <string>Abrevehookabove</string>\n      <string>Abrevetilde</string>\n      <string>Acaron</string>\n      <string>Acircumflex</string>\n      <string>Acircumflexacute</string>\n      <string>Acircumflexdotbelow</string>\n      <string>Acircumflexgrave</string>\n      <string>Acircumflexhookabove</string>\n      <string>Acircumflextilde</string>\n      <string>Adieresis</string>\n      <string>Adotbelow</string>\n      <string>Agrave</string>\n      <string>Ahookabove</string>\n      <string>Alpha-latin</string>\n      <string>Amacron</string>\n      <string>Aogonek</string>\n      <string>Aring</string>\n      <string>Aringacute</string>\n      <string>Astroke</string>\n      <string>Atilde</string>\n      <string>AE</string>\n      <string>AEacute</string>\n      <string>B</string>\n      <string>C</string>\n      <string>Cacute</string>\n      <string>Ccaron</string>\n      <string>Ccedilla</string>\n      <string>Ccircumflex</string>\n      <string>Cdotaccent</string>\n      <string>Cstroke</string>\n      <string>D</string>\n      <string>Dafrican</string>\n      <string>Eth</string>\n      <string>Dcaron</string>\n      <string>Dcroat</string>\n      <string>E</string>\n      <string>Eacute</string>\n      <string>Ebreve</string>\n      <string>Ecaron</string>\n      <string>Ecircumflex</string>\n      <string>Ecircumflexacute</string>\n      <string>Ecircumflexdotbelow</string>\n      <string>Ecircumflexgrave</string>\n      <string>Ecircumflexhookabove</string>\n      <string>Ecircumflextilde</string>\n      <string>Edieresis</string>\n      <string>Edotaccent</string>\n      <string>Edotbelow</string>\n      <string>Egrave</string>\n      <string>Ehookabove</string>\n      <string>Emacron</string>\n      <string>Eogonek</string>\n      <string>Eopen</string>\n      <string>Ereversed</string>\n      <string>Esh</string>\n      <string>Etilde</string>\n      <string>Ezh</string>\n      <string>F</string>\n      <string>Fhook</string>\n      <string>G</string>\n      <string>Gbreve</string>\n      <string>Gcaron</string>\n      <string>Gcircumflex</string>\n      <string>Gcommaaccent</string>\n      <string>Gdotaccent</string>\n      <string>Gstroke</string>\n      <string>H</string>\n      <string>Hbar</string>\n      <string>Hcaron</string>\n      <string>Hcircumflex</string>\n      <string>Hdotbelow</string>\n      <string>I</string>\n      <string>IJ</string>\n      <string>IJ_acute</string>\n      <string>Iacute</string>\n      <string>Ibreve</string>\n      <string>Icircumflex</string>\n      <string>Idieresis</string>\n      <string>Idotaccent</string>\n      <string>Idotbelow</string>\n      <string>Igrave</string>\n      <string>Ihookabove</string>\n      <string>Imacron</string>\n      <string>Iogonek</string>\n      <string>Iotaafrican</string>\n      <string>Itilde</string>\n      <string>J</string>\n      <string>Jacute</string>\n      <string>Jcircumflex</string>\n      <string>K</string>\n      <string>Kacute</string>\n      <string>Kcommaaccent</string>\n      <string>Kdotbelow</string>\n      <string>Klinebelow</string>\n      <string>L</string>\n      <string>Lacute</string>\n      <string>Lbar</string>\n      <string>Lcaron</string>\n      <string>Lcommaaccent</string>\n      <string>Ldot</string>\n      <string>Ldotbelow</string>\n      <string>Llinebelow</string>\n      <string>Lmiddletilde</string>\n      <string>Lslash</string>\n      <string>M</string>\n      <string>N</string>\n      <string>Nacute</string>\n      <string>Ncaron</string>\n      <string>Ncommaaccent</string>\n      <string>Eng</string>\n      <string>Nhookleft</string>\n      <string>Nlinebelow</string>\n      <string>Ntilde</string>\n      <string>O</string>\n      <string>Oacute</string>\n      <string>Obreve</string>\n      <string>Ocircumflex</string>\n      <string>Ocircumflexacute</string>\n      <string>Ocircumflexdotbelow</string>\n      <string>Ocircumflexgrave</string>\n      <string>Ocircumflexhookabove</string>\n      <string>Ocircumflextilde</string>\n      <string>Odieresis</string>\n      <string>Odotbelow</string>\n      <string>Ograve</string>\n      <string>Ohookabove</string>\n      <string>Ohorn</string>\n      <string>Ohornacute</string>\n      <string>Ohorndotbelow</string>\n      <string>Ohorngrave</string>\n      <string>Ohornhookabove</string>\n      <string>Ohorntilde</string>\n      <string>Ohungarumlaut</string>\n      <string>Omacron</string>\n      <string>Omacronacute</string>\n      <string>Omacrongrave</string>\n      <string>Oogonek</string>\n      <string>Oopen</string>\n      <string>Oslash</string>\n      <string>Oslashacute</string>\n      <string>Otilde</string>\n      <string>OE</string>\n      <string>P</string>\n      <string>Thorn</string>\n      <string>Q</string>\n      <string>R</string>\n      <string>Racute</string>\n      <string>Rcaron</string>\n      <string>Rcommaaccent</string>\n      <string>Rdotbelow</string>\n      <string>S</string>\n      <string>Sacute</string>\n      <string>Scaron</string>\n      <string>Scedilla</string>\n      <string>Scircumflex</string>\n      <string>Scommaaccent</string>\n      <string>Sdotbelow</string>\n      <string>Germandbls</string>\n      <string>Schwa</string>\n      <string>T</string>\n      <string>Tbar</string>\n      <string>Tcaron</string>\n      <string>Tcedilla</string>\n      <string>Tcommaaccent</string>\n      <string>Tdiagonalstroke</string>\n      <string>Tlinebelow</string>\n      <string>U</string>\n      <string>Uacute</string>\n      <string>Ubreve</string>\n      <string>Ucircumflex</string>\n      <string>Udieresis</string>\n      <string>Udotbelow</string>\n      <string>Ugrave</string>\n      <string>Uhookabove</string>\n      <string>Uhorn</string>\n      <string>Uhornacute</string>\n      <string>Uhorndotbelow</string>\n      <string>Uhorngrave</string>\n      <string>Uhornhookabove</string>\n      <string>Uhorntilde</string>\n      <string>Uhungarumlaut</string>\n      <string>Umacron</string>\n      <string>Uogonek</string>\n      <string>Upsilonafrican</string>\n      <string>Uring</string>\n      <string>Utilde</string>\n      <string>V</string>\n      <string>Gammaafrican</string>\n      <string>Vhook</string>\n      <string>Vturned</string>\n      <string>W</string>\n      <string>Wacute</string>\n      <string>Wcircumflex</string>\n      <string>Wdieresis</string>\n      <string>Wgrave</string>\n      <string>X</string>\n      <string>Y</string>\n      <string>Yacute</string>\n      <string>Ycircumflex</string>\n      <string>Ydieresis</string>\n      <string>Ydotbelow</string>\n      <string>Ygrave</string>\n      <string>Yhookabove</string>\n      <string>Ymacron</string>\n      <string>Ytilde</string>\n      <string>Z</string>\n      <string>Zacute</string>\n      <string>Zcaron</string>\n      <string>Zdotaccent</string>\n      <string>Cacute.loclPLK</string>\n      <string>Nacute.loclPLK</string>\n      <string>Oacute.loclPLK</string>\n      <string>Sacute.loclPLK</string>\n      <string>Zacute.loclPLK</string>\n      <string>A.half</string>\n      <string>B.half</string>\n      <string>C.half</string>\n      <string>D.half</string>\n      <string>E.half</string>\n      <string>F.half</string>\n      <string>G.half</string>\n      <string>H.half</string>\n      <string>I.half</string>\n      <string>K.half</string>\n      <string>L.half</string>\n      <string>M.half</string>\n      <string>N.half</string>\n      <string>O.half</string>\n      <string>P.half</string>\n      <string>Q.half</string>\n      <string>R.half</string>\n      <string>S.half</string>\n      <string>T.half</string>\n      <string>U.half</string>\n      <string>V.half</string>\n      <string>X.half</string>\n      <string>Y.half</string>\n      <string>Asmall</string>\n      <string>Gsmall</string>\n      <string>Ismall</string>\n      <string>Lsmall</string>\n      <string>a</string>\n      <string>aacute</string>\n      <string>abreve</string>\n      <string>abreveacute</string>\n      <string>abrevedotbelow</string>\n      <string>abrevegrave</string>\n      <string>abrevehookabove</string>\n      <string>abrevetilde</string>\n      <string>acaron</string>\n      <string>acircumflex</string>\n      <string>acircumflexacute</string>\n      <string>acircumflexdotbelow</string>\n      <string>acircumflexgrave</string>\n      <string>acircumflexhookabove</string>\n      <string>acircumflextilde</string>\n      <string>adieresis</string>\n      <string>adotbelow</string>\n      <string>agrave</string>\n      <string>ahookabove</string>\n      <string>alpha-latin</string>\n      <string>amacron</string>\n      <string>aogonek</string>\n      <string>aring</string>\n      <string>aringacute</string>\n      <string>atilde</string>\n      <string>ae</string>\n      <string>aeacute</string>\n      <string>b</string>\n      <string>c</string>\n      <string>cacute</string>\n      <string>ccaron</string>\n      <string>ccedilla</string>\n      <string>ccircumflex</string>\n      <string>cdotaccent</string>\n      <string>d</string>\n      <string>eth</string>\n      <string>dcaron</string>\n      <string>dcroat</string>\n      <string>dtail</string>\n      <string>e</string>\n      <string>eacute</string>\n      <string>ebreve</string>\n      <string>ecaron</string>\n      <string>ecircumflex</string>\n      <string>ecircumflexacute</string>\n      <string>ecircumflexdotbelow</string>\n      <string>ecircumflexgrave</string>\n      <string>ecircumflexhookabove</string>\n      <string>ecircumflextilde</string>\n      <string>edieresis</string>\n      <string>edotaccent</string>\n      <string>edotbelow</string>\n      <string>egrave</string>\n      <string>ehookabove</string>\n      <string>emacron</string>\n      <string>eogonek</string>\n      <string>eopen</string>\n      <string>esh</string>\n      <string>etilde</string>\n      <string>eturned</string>\n      <string>schwa</string>\n      <string>ezh</string>\n      <string>f</string>\n      <string>g</string>\n      <string>gamma-latin</string>\n      <string>gbreve</string>\n      <string>gcaron</string>\n      <string>gcircumflex</string>\n      <string>gcommaaccent</string>\n      <string>gdotaccent</string>\n      <string>glottalstop</string>\n      <string>glottalstopreversed</string>\n      <string>gstroke</string>\n      <string>h</string>\n      <string>hbar</string>\n      <string>hcaron</string>\n      <string>hcircumflex</string>\n      <string>hdotbelow</string>\n      <string>i</string>\n      <string>idotless</string>\n      <string>iacute</string>\n      <string>ibreve</string>\n      <string>icircumflex</string>\n      <string>idieresis</string>\n      <string>idotbelow</string>\n      <string>igrave</string>\n      <string>ihookabove</string>\n      <string>ij</string>\n      <string>ij_acute</string>\n      <string>imacron</string>\n      <string>iogonek</string>\n      <string>iota-latin</string>\n      <string>itilde</string>\n      <string>j</string>\n      <string>jdotless</string>\n      <string>jacute</string>\n      <string>jcaron</string>\n      <string>jcircumflex</string>\n      <string>k</string>\n      <string>kcommaaccent</string>\n      <string>kdotbelow</string>\n      <string>kgreenlandic</string>\n      <string>klinebelow</string>\n      <string>l</string>\n      <string>lacute</string>\n      <string>lambdastroke</string>\n      <string>lbar</string>\n      <string>lbelt</string>\n      <string>lcaron</string>\n      <string>lcommaaccent</string>\n      <string>ldot</string>\n      <string>ldotbelow</string>\n      <string>llinebelow</string>\n      <string>lmiddletilde</string>\n      <string>lslash</string>\n      <string>m</string>\n      <string>n</string>\n      <string>nacute</string>\n      <string>napostrophe</string>\n      <string>ncaron</string>\n      <string>ncommaaccent</string>\n      <string>eng</string>\n      <string>nhookleft</string>\n      <string>nlinebelow</string>\n      <string>ntilde</string>\n      <string>o</string>\n      <string>oacute</string>\n      <string>obreve</string>\n      <string>ocircumflex</string>\n      <string>ocircumflexacute</string>\n      <string>ocircumflexdotbelow</string>\n      <string>ocircumflexgrave</string>\n      <string>ocircumflexhookabove</string>\n      <string>ocircumflextilde</string>\n      <string>odieresis</string>\n      <string>odotbelow</string>\n      <string>ograve</string>\n      <string>ohookabove</string>\n      <string>ohorn</string>\n      <string>ohornacute</string>\n      <string>ohorndotbelow</string>\n      <string>ohorngrave</string>\n      <string>ohornhookabove</string>\n      <string>ohorntilde</string>\n      <string>ohungarumlaut</string>\n      <string>omacron</string>\n      <string>omacronacute</string>\n      <string>omacrongrave</string>\n      <string>oogonek</string>\n      <string>oopen</string>\n      <string>oslash</string>\n      <string>oslashacute</string>\n      <string>otilde</string>\n      <string>oe</string>\n      <string>p</string>\n      <string>thorn</string>\n      <string>q</string>\n      <string>r</string>\n      <string>racute</string>\n      <string>rcaron</string>\n      <string>rcommaaccent</string>\n      <string>rdotbelow</string>\n      <string>s</string>\n      <string>sacute</string>\n      <string>scaron</string>\n      <string>scedilla</string>\n      <string>scircumflex</string>\n      <string>scommaaccent</string>\n      <string>sdotbelow</string>\n      <string>germandbls</string>\n      <string>longs</string>\n      <string>t</string>\n      <string>tbar</string>\n      <string>tcaron</string>\n      <string>tcedilla</string>\n      <string>tcommaaccent</string>\n      <string>tesh</string>\n      <string>u</string>\n      <string>uacute</string>\n      <string>ubreve</string>\n      <string>ucircumflex</string>\n      <string>udieresis</string>\n      <string>udotbelow</string>\n      <string>ugrave</string>\n      <string>uhookabove</string>\n      <string>uhorn</string>\n      <string>uhornacute</string>\n      <string>uhorndotbelow</string>\n      <string>uhorngrave</string>\n      <string>uhornhookabove</string>\n      <string>uhorntilde</string>\n      <string>uhungarumlaut</string>\n      <string>umacron</string>\n      <string>uogonek</string>\n      <string>upsilon-latin</string>\n      <string>uring</string>\n      <string>utilde</string>\n      <string>v</string>\n      <string>vhook</string>\n      <string>vturned</string>\n      <string>w</string>\n      <string>wacute</string>\n      <string>wcircumflex</string>\n      <string>wdieresis</string>\n      <string>wgrave</string>\n      <string>x</string>\n      <string>y</string>\n      <string>yacute</string>\n      <string>ycircumflex</string>\n      <string>ydieresis</string>\n      <string>ydotbelow</string>\n      <string>ygrave</string>\n      <string>yhookabove</string>\n      <string>ymacron</string>\n      <string>ytilde</string>\n      <string>z</string>\n      <string>zacute</string>\n      <string>zcaron</string>\n      <string>zdotaccent</string>\n      <string>dcaron.alt</string>\n      <string>cacute.loclPLK</string>\n      <string>nacute.loclPLK</string>\n      <string>oacute.loclPLK</string>\n      <string>sacute.loclPLK</string>\n      <string>zacute.loclPLK</string>\n      <string>x.multiply</string>\n      <string>fi</string>\n      <string>fl</string>\n      <string>w_w_w.liga</string>\n      <string>ordfeminine</string>\n      <string>ordmasculine</string>\n      <string>nmod</string>\n      <string>wmod</string>\n      <string>ymod</string>\n      <string>A-cy</string>\n      <string>Be-cy</string>\n      <string>Ve-cy</string>\n      <string>Ge-cy</string>\n      <string>Gje-cy</string>\n      <string>Gheupturn-cy</string>\n      <string>De-cy</string>\n      <string>Ie-cy</string>\n      <string>Iegrave-cy</string>\n      <string>Io-cy</string>\n      <string>Zhe-cy</string>\n      <string>Ze-cy</string>\n      <string>Ii-cy</string>\n      <string>Iishort-cy</string>\n      <string>Iigrave-cy</string>\n      <string>Ka-cy</string>\n      <string>Kje-cy</string>\n      <string>El-cy</string>\n      <string>Em-cy</string>\n      <string>En-cy</string>\n      <string>O-cy</string>\n      <string>Pe-cy</string>\n      <string>Er-cy</string>\n      <string>Es-cy</string>\n      <string>Te-cy</string>\n      <string>U-cy</string>\n      <string>Ushort-cy</string>\n      <string>Ef-cy</string>\n      <string>Ha-cy</string>\n      <string>Che-cy</string>\n      <string>Tse-cy</string>\n      <string>Sha-cy</string>\n      <string>Shcha-cy</string>\n      <string>Dzhe-cy</string>\n      <string>Softsign-cy</string>\n      <string>Hardsign-cy</string>\n      <string>Yeru-cy</string>\n      <string>Lje-cy</string>\n      <string>Nje-cy</string>\n      <string>Dze-cy</string>\n      <string>E-cy</string>\n      <string>Ereversed-cy</string>\n      <string>I-cy</string>\n      <string>Yi-cy</string>\n      <string>Je-cy</string>\n      <string>Tshe-cy</string>\n      <string>Iu-cy</string>\n      <string>Ia-cy</string>\n      <string>Dje-cy</string>\n      <string>Ghestroke-cy</string>\n      <string>Zhedescender-cy</string>\n      <string>Kadescender-cy</string>\n      <string>Endescender-cy</string>\n      <string>Ustraight-cy</string>\n      <string>Ustraightstroke-cy</string>\n      <string>Hadescender-cy</string>\n      <string>Chedescender-cy</string>\n      <string>Shha-cy</string>\n      <string>Palochka-cy</string>\n      <string>Schwa-cy</string>\n      <string>Imacron-cy</string>\n      <string>Obarred-cy</string>\n      <string>Umacron-cy</string>\n      <string>De-cy.loclBGR</string>\n      <string>El-cy.loclBGR</string>\n      <string>Ef-cy.loclBGR</string>\n      <string>a-cy</string>\n      <string>be-cy</string>\n      <string>ve-cy</string>\n      <string>ge-cy</string>\n      <string>gje-cy</string>\n      <string>gheupturn-cy</string>\n      <string>de-cy</string>\n      <string>ie-cy</string>\n      <string>iegrave-cy</string>\n      <string>io-cy</string>\n      <string>zhe-cy</string>\n      <string>ze-cy</string>\n      <string>ii-cy</string>\n      <string>iishort-cy</string>\n      <string>iigrave-cy</string>\n      <string>ka-cy</string>\n      <string>kje-cy</string>\n      <string>el-cy</string>\n      <string>em-cy</string>\n      <string>en-cy</string>\n      <string>o-cy</string>\n      <string>pe-cy</string>\n      <string>er-cy</string>\n      <string>es-cy</string>\n      <string>te-cy</string>\n      <string>u-cy</string>\n      <string>ushort-cy</string>\n      <string>ef-cy</string>\n      <string>ha-cy</string>\n      <string>che-cy</string>\n      <string>tse-cy</string>\n      <string>sha-cy</string>\n      <string>shcha-cy</string>\n      <string>dzhe-cy</string>\n      <string>softsign-cy</string>\n      <string>hardsign-cy</string>\n      <string>yeru-cy</string>\n      <string>lje-cy</string>\n      <string>nje-cy</string>\n      <string>dze-cy</string>\n      <string>e-cy</string>\n      <string>ereversed-cy</string>\n      <string>i-cy</string>\n      <string>yi-cy</string>\n      <string>je-cy</string>\n      <string>tshe-cy</string>\n      <string>iu-cy</string>\n      <string>ia-cy</string>\n      <string>dje-cy</string>\n      <string>ghestroke-cy</string>\n      <string>zhedescender-cy</string>\n      <string>kadescender-cy</string>\n      <string>endescender-cy</string>\n      <string>ustraight-cy</string>\n      <string>ustraightstroke-cy</string>\n      <string>hadescender-cy</string>\n      <string>chedescender-cy</string>\n      <string>shha-cy</string>\n      <string>palochka-cy</string>\n      <string>schwa-cy</string>\n      <string>imacron-cy</string>\n      <string>obarred-cy</string>\n      <string>umacron-cy</string>\n      <string>ve-cy.loclBGR</string>\n      <string>ge-cy.loclBGR</string>\n      <string>de-cy.loclBGR</string>\n      <string>zhe-cy.loclBGR</string>\n      <string>ze-cy.loclBGR</string>\n      <string>ii-cy.loclBGR</string>\n      <string>iishort-cy.loclBGR</string>\n      <string>iigrave-cy.loclBGR</string>\n      <string>ka-cy.loclBGR</string>\n      <string>el-cy.loclBGR</string>\n      <string>pe-cy.loclBGR</string>\n      <string>te-cy.loclBGR</string>\n      <string>ef-cy.loclBGR</string>\n      <string>tse-cy.loclBGR</string>\n      <string>sha-cy.loclBGR</string>\n      <string>shcha-cy.loclBGR</string>\n      <string>softsign-cy.loclBGR</string>\n      <string>hardsign-cy.loclBGR</string>\n      <string>iu-cy.loclBGR</string>\n      <string>be-cy.loclSRB</string>\n      <string>Alpha</string>\n      <string>Beta</string>\n      <string>Gamma</string>\n      <string>Delta</string>\n      <string>Epsilon</string>\n      <string>Zeta</string>\n      <string>Eta</string>\n      <string>Theta</string>\n      <string>Iota</string>\n      <string>Kappa</string>\n      <string>Lambda</string>\n      <string>Mu</string>\n      <string>Nu</string>\n      <string>Xi</string>\n      <string>Omicron</string>\n      <string>Pi</string>\n      <string>Rho</string>\n      <string>Sigma</string>\n      <string>Tau</string>\n      <string>Upsilon</string>\n      <string>Phi</string>\n      <string>Chi</string>\n      <string>Psi</string>\n      <string>Omega</string>\n      <string>Alphatonos</string>\n      <string>Epsilontonos</string>\n      <string>Etatonos</string>\n      <string>Iotatonos</string>\n      <string>Omicrontonos</string>\n      <string>Upsilontonos</string>\n      <string>Omegatonos</string>\n      <string>Iotadieresis</string>\n      <string>Upsilondieresis</string>\n      <string>KaiSymbol</string>\n      <string>alpha</string>\n      <string>beta</string>\n      <string>gamma</string>\n      <string>delta</string>\n      <string>epsilon</string>\n      <string>zeta</string>\n      <string>eta</string>\n      <string>theta</string>\n      <string>iota</string>\n      <string>kappa</string>\n      <string>lambda</string>\n      <string>mu</string>\n      <string>nu</string>\n      <string>xi</string>\n      <string>omicron</string>\n      <string>pi</string>\n      <string>rho</string>\n      <string>sigmafinal</string>\n      <string>sigma</string>\n      <string>tau</string>\n      <string>upsilon</string>\n      <string>phi</string>\n      <string>chi</string>\n      <string>psi</string>\n      <string>omega</string>\n      <string>iotatonos</string>\n      <string>iotadieresis</string>\n      <string>iotadieresistonos</string>\n      <string>upsilontonos</string>\n      <string>upsilondieresis</string>\n      <string>upsilondieresistonos</string>\n      <string>omicrontonos</string>\n      <string>omegatonos</string>\n      <string>alphatonos</string>\n      <string>epsilontonos</string>\n      <string>etatonos</string>\n      <string>kaiSymbol</string>\n      <string>hamza-ar</string>\n      <string>highhamza-ar</string>\n      <string>alef-ar</string>\n      <string>alef-ar.fina</string>\n      <string>alef-ar.fina.alt</string>\n      <string>alef-ar.fina.rlig</string>\n      <string>alef-ar.short</string>\n      <string>alef-ar.fina.short</string>\n      <string>alef-ar.fina.short.alt</string>\n      <string>alef-ar.fina.short.rlig</string>\n      <string>alefHamzaabove-ar</string>\n      <string>alefHamzaabove-ar.fina</string>\n      <string>alefHamzaabove-ar.fina.alt</string>\n      <string>alefHamzaabove-ar.fina.rlig</string>\n      <string>alefHamzabelow-ar</string>\n      <string>alefHamzabelow-ar.fina</string>\n      <string>alefHamzabelow-ar.fina.alt</string>\n      <string>alefHamzabelow-ar.fina.rlig</string>\n      <string>alefWavyhamzaabove-ar</string>\n      <string>alefWavyhamzaabove-ar.fina</string>\n      <string>alefWavyhamzaabove-ar.fina.alt</string>\n      <string>alefWavyhamzaabove-ar.fina.rlig</string>\n      <string>alefWavyhamzabelow-ar</string>\n      <string>alefWavyhamzabelow-ar.fina</string>\n      <string>alefWavyhamzabelow-ar.fina.alt</string>\n      <string>alefWavyhamzabelow-ar.fina.rlig</string>\n      <string>alefMadda-ar</string>\n      <string>alefMadda-ar.fina</string>\n      <string>alefMadda-ar.fina.alt</string>\n      <string>alefMadda-ar.fina.rlig</string>\n      <string>alefWasla-ar</string>\n      <string>alefWasla-ar.fina</string>\n      <string>alefWasla-ar.fina.alt</string>\n      <string>alefWasla-ar.fina.rlig</string>\n      <string>alefFathatan-ar</string>\n      <string>alefFathatan-ar.fina</string>\n      <string>alefFathatan-ar.fina.rlig</string>\n      <string>highhamzaAlef-ar</string>\n      <string>highhamzaAlef-ar.fina</string>\n      <string>highhamzaAlef-ar.fina.rlig</string>\n      <string>behDotless-ar</string>\n      <string>behDotless-ar.alt</string>\n      <string>behDotless-ar.fina</string>\n      <string>behDotless-ar.fina.alt</string>\n      <string>behDotless-ar.medi</string>\n      <string>behDotless-ar.init</string>\n      <string>behDotless-ar.init.alt</string>\n      <string>beh-ar</string>\n      <string>beh-ar.alt</string>\n      <string>beh-ar.fina</string>\n      <string>beh-ar.fina.alt</string>\n      <string>beh-ar.medi</string>\n      <string>beh-ar.init</string>\n      <string>beh-ar.init.alt</string>\n      <string>peh-ar</string>\n      <string>peh-ar.fina</string>\n      <string>peh-ar.fina.alt</string>\n      <string>peh-ar.medi</string>\n      <string>peh-ar.init</string>\n      <string>peh-ar.init.alt</string>\n      <string>peh-ar.alt</string>\n      <string>beeh-ar</string>\n      <string>beeh-ar.alt</string>\n      <string>beeh-ar.fina</string>\n      <string>beeh-ar.fina.alt</string>\n      <string>beeh-ar.medi</string>\n      <string>beeh-ar.init</string>\n      <string>beeh-ar.init.alt</string>\n      <string>beheh-ar</string>\n      <string>beheh-ar.alt</string>\n      <string>beheh-ar.fina</string>\n      <string>beheh-ar.fina.alt</string>\n      <string>beheh-ar.medi</string>\n      <string>beheh-ar.init</string>\n      <string>beheh-ar.init.alt</string>\n      <string>alefMaksura-ar.medi</string>\n      <string>alefMaksura-ar.init</string>\n      <string>alefMaksura-ar.init.alt</string>\n      <string>teh-ar</string>\n      <string>teh-ar.alt</string>\n      <string>teh-ar.fina</string>\n      <string>teh-ar.fina.alt</string>\n      <string>teh-ar.medi</string>\n      <string>teh-ar.init</string>\n      <string>teh-ar.init.alt</string>\n      <string>tehRing-ar</string>\n      <string>tehRing-ar.fina</string>\n      <string>tehRing-ar.fina.alt</string>\n      <string>tehRing-ar.medi</string>\n      <string>tehRing-ar.init</string>\n      <string>tehRing-ar.init.alt</string>\n      <string>tehRing-ar.alt</string>\n      <string>tehThreedotsdown-ar</string>\n      <string>tehThreedotsdown-ar.fina</string>\n      <string>tehThreedotsdown-ar.fina.alt</string>\n      <string>tehThreedotsdown-ar.medi</string>\n      <string>tehThreedotsdown-ar.init</string>\n      <string>tehThreedotsdown-ar.init.alt</string>\n      <string>tehThreedotsdown-ar.alt</string>\n      <string>theh-ar</string>\n      <string>theh-ar.alt</string>\n      <string>theh-ar.fina</string>\n      <string>theh-ar.fina.alt</string>\n      <string>theh-ar.medi</string>\n      <string>theh-ar.init</string>\n      <string>theh-ar.init.alt</string>\n      <string>tteh-ar</string>\n      <string>tteh-ar.alt</string>\n      <string>tteh-ar.fina</string>\n      <string>tteh-ar.fina.alt</string>\n      <string>tteh-ar.medi</string>\n      <string>tteh-ar.init</string>\n      <string>tteh-ar.init.alt</string>\n      <string>tteheh-ar</string>\n      <string>tteheh-ar.alt</string>\n      <string>tteheh-ar.fina</string>\n      <string>tteheh-ar.fina.alt</string>\n      <string>tteheh-ar.medi</string>\n      <string>tteheh-ar.init</string>\n      <string>tteheh-ar.init.alt</string>\n      <string>teheh-ar</string>\n      <string>teheh-ar.alt</string>\n      <string>teheh-ar.fina</string>\n      <string>teheh-ar.fina.alt</string>\n      <string>teheh-ar.medi</string>\n      <string>teheh-ar.init</string>\n      <string>teheh-ar.init.alt</string>\n      <string>behThreedotshorizontalbelow-ar</string>\n      <string>behThreedotshorizontalbelow-ar.fina</string>\n      <string>behThreedotshorizontalbelow-ar.fina.alt</string>\n      <string>behThreedotshorizontalbelow-ar.medi</string>\n      <string>behThreedotshorizontalbelow-ar.init</string>\n      <string>behThreedotshorizontalbelow-ar.init.alt</string>\n      <string>behThreedotshorizontalbelow-ar.alt</string>\n      <string>behThreedotsupabove-ar</string>\n      <string>behThreedotsupabove-ar.fina</string>\n      <string>behThreedotsupabove-ar.fina.alt</string>\n      <string>behThreedotsupabove-ar.medi</string>\n      <string>behThreedotsupabove-ar.init</string>\n      <string>behThreedotsupabove-ar.init.alt</string>\n      <string>behThreedotsupabove-ar.alt</string>\n      <string>behThreedotsupbelow-ar</string>\n      <string>behThreedotsupbelow-ar.fina</string>\n      <string>behThreedotsupbelow-ar.fina.alt</string>\n      <string>behThreedotsupbelow-ar.medi</string>\n      <string>behThreedotsupbelow-ar.init</string>\n      <string>behThreedotsupbelow-ar.init.alt</string>\n      <string>behThreedotsupbelow-ar.alt</string>\n      <string>tehThreedotsupbelow-ar</string>\n      <string>tehThreedotsupbelow-ar.fina</string>\n      <string>tehThreedotsupbelow-ar.fina.alt</string>\n      <string>tehThreedotsupbelow-ar.medi</string>\n      <string>tehThreedotsupbelow-ar.init</string>\n      <string>tehThreedotsupbelow-ar.init.alt</string>\n      <string>tehThreedotsupbelow-ar.alt</string>\n      <string>behTwodotsbelowDotabove-ar</string>\n      <string>behTwodotsbelowDotabove-ar.fina</string>\n      <string>behTwodotsbelowDotabove-ar.fina.alt</string>\n      <string>behTwodotsbelowDotabove-ar.medi</string>\n      <string>behTwodotsbelowDotabove-ar.init</string>\n      <string>behTwodotsbelowDotabove-ar.init.alt</string>\n      <string>behTwodotsbelowDotabove-ar.alt</string>\n      <string>behVinvertedbelow-ar</string>\n      <string>behVinvertedbelow-ar.fina</string>\n      <string>behVinvertedbelow-ar.fina.alt</string>\n      <string>behVinvertedbelow-ar.medi</string>\n      <string>behVinvertedbelow-ar.init</string>\n      <string>behVinvertedbelow-ar.init.alt</string>\n      <string>behVinvertedbelow-ar.alt</string>\n      <string>behVabove-ar</string>\n      <string>behVabove-ar.fina</string>\n      <string>behVabove-ar.fina.alt</string>\n      <string>behVabove-ar.medi</string>\n      <string>behVabove-ar.init</string>\n      <string>behVabove-ar.init.alt</string>\n      <string>behVabove-ar.alt</string>\n      <string>behVbelow-ar</string>\n      <string>behVbelow-ar.fina</string>\n      <string>behVbelow-ar.fina.alt</string>\n      <string>behVbelow-ar.medi</string>\n      <string>behVbelow-ar.init</string>\n      <string>behVbelow-ar.init.alt</string>\n      <string>behVbelow-ar.alt</string>\n      <string>behhamzaabove-ar</string>\n      <string>behhamzaabove-ar.fina</string>\n      <string>behhamzaabove-ar.fina.alt</string>\n      <string>behhamzaabove-ar.medi</string>\n      <string>behhamzaabove-ar.init</string>\n      <string>behhamzaabove-ar.alt</string>\n      <string>jeem-ar</string>\n      <string>jeem-ar.fina</string>\n      <string>jeem-ar.medi</string>\n      <string>jeem-ar.init</string>\n      <string>tcheh-ar</string>\n      <string>tcheh-ar.fina</string>\n      <string>tcheh-ar.medi</string>\n      <string>tcheh-ar.init</string>\n      <string>tcheheh-ar</string>\n      <string>tcheheh-ar.fina</string>\n      <string>tcheheh-ar.medi</string>\n      <string>tcheheh-ar.init</string>\n      <string>tchehDotabove-ar</string>\n      <string>tchehDotabove-ar.fina</string>\n      <string>tchehDotabove-ar.medi</string>\n      <string>tchehDotabove-ar.init</string>\n      <string>nyeh-ar</string>\n      <string>nyeh-ar.fina</string>\n      <string>nyeh-ar.medi</string>\n      <string>nyeh-ar.init</string>\n      <string>dyeh-ar</string>\n      <string>dyeh-ar.fina</string>\n      <string>dyeh-ar.medi</string>\n      <string>dyeh-ar.init</string>\n      <string>hah-ar</string>\n      <string>hah-ar.fina</string>\n      <string>hah-ar.medi</string>\n      <string>hah-ar.init</string>\n      <string>hahHamzaabove-ar</string>\n      <string>hahHamzaabove-ar.fina</string>\n      <string>hahHamzaabove-ar.medi</string>\n      <string>hahHamzaabove-ar.init</string>\n      <string>hahTwodotsverticalabove-ar</string>\n      <string>hahTwodotsverticalabove-ar.fina</string>\n      <string>hahTwodotsverticalabove-ar.medi</string>\n      <string>hahTwodotsverticalabove-ar.init</string>\n      <string>hahTwodotshorizontalabove-ar</string>\n      <string>hahTwodotshorizontalabove-ar.fina</string>\n      <string>hahTwodotshorizontalabove-ar.medi</string>\n      <string>hahTwodotshorizontalabove-ar.init</string>\n      <string>hahThreedotsabove-ar</string>\n      <string>hahThreedotsabove-ar.fina</string>\n      <string>hahThreedotsabove-ar.medi</string>\n      <string>hahThreedotsabove-ar.init</string>\n      <string>hahThreedotsupbelow-ar</string>\n      <string>hahThreedotsupbelow-ar.fina</string>\n      <string>hahThreedotsupbelow-ar.medi</string>\n      <string>hahThreedotsupbelow-ar.init</string>\n      <string>khah-ar</string>\n      <string>khah-ar.fina</string>\n      <string>khah-ar.medi</string>\n      <string>khah-ar.init</string>\n      <string>hahTahbelow-ar</string>\n      <string>hahTahbelow-ar.fina</string>\n      <string>hahTahbelow-ar.medi</string>\n      <string>hahTahbelow-ar.init</string>\n      <string>hahTahTwodotshorizontalabove-ar</string>\n      <string>hahTahTwodotshorizontalabove-ar.fina</string>\n      <string>hahTahTwodotshorizontalabove-ar.medi</string>\n      <string>hahTahTwodotshorizontalabove-ar.init</string>\n      <string>hahFourbelow-ar</string>\n      <string>hahFourbelow-ar.fina</string>\n      <string>hahFourbelow-ar.medi</string>\n      <string>hahFourbelow-ar.init</string>\n      <string>jeemTwodotsabove-ar</string>\n      <string>jeemTwodotsabove-ar.fina</string>\n      <string>jeemTwodotsabove-ar.medi</string>\n      <string>jeemTwodotsabove-ar.init</string>\n      <string>dal-ar</string>\n      <string>dal-ar.fina</string>\n      <string>thal-ar</string>\n      <string>thal-ar.fina</string>\n      <string>thalAlefabove-ar</string>\n      <string>thalAlefabove-ar.fina</string>\n      <string>ddal-ar</string>\n      <string>ddal-ar.fina</string>\n      <string>dahal-ar</string>\n      <string>dahal-ar.fina</string>\n      <string>ddahal-ar</string>\n      <string>ddahal-ar.fina</string>\n      <string>dalRing-ar</string>\n      <string>dalRing-ar.fina</string>\n      <string>dalDotbelow-ar</string>\n      <string>dalDotbelow-ar.fina</string>\n      <string>dalDotbelowTah-ar</string>\n      <string>dalDotbelowTah-ar.fina</string>\n      <string>dul-ar</string>\n      <string>dul-ar.fina</string>\n      <string>dalThreedotsdown-ar</string>\n      <string>dalThreedotsdown-ar.fina</string>\n      <string>dalFourdots-ar</string>\n      <string>dalFourdots-ar.fina</string>\n      <string>dalVinvertedabove-ar</string>\n      <string>dalVinvertedabove-ar.fina</string>\n      <string>dalTwodotsverticalbelowTahabove-ar</string>\n      <string>dalVinvertedbelow-ar</string>\n      <string>dalVinvertedbelow-ar.fina</string>\n      <string>dalThreedotsbelow-ar</string>\n      <string>dalThreedotsbelow-ar.fina</string>\n      <string>reh-ar</string>\n      <string>reh-ar.fina</string>\n      <string>zain-ar</string>\n      <string>zain-ar.fina</string>\n      <string>zainVInvertedabove-ar</string>\n      <string>uni08B3</string>\n      <string>uni08B3.fina</string>\n      <string>uni08B3.medi</string>\n      <string>uni08B3.init</string>\n      <string>uni08B4</string>\n      <string>uni08B4.fina</string>\n      <string>uni08B4.medi</string>\n      <string>uni08B4.init</string>\n      <string>rreh-ar</string>\n      <string>rreh-ar.fina</string>\n      <string>rehv-ar</string>\n      <string>rehv-ar.fina</string>\n      <string>rehRing-ar</string>\n      <string>rehRing-ar.fina</string>\n      <string>rehDotbelow-ar</string>\n      <string>rehDotbelow-ar.fina</string>\n      <string>rehVbelow-ar</string>\n      <string>rehVbelow-ar.fina</string>\n      <string>rehDotbelowdotabove-ar</string>\n      <string>rehDotbelowdotabove-ar.fina</string>\n      <string>rehTwodots-ar</string>\n      <string>rehTwodots-ar.fina</string>\n      <string>jeh-ar</string>\n      <string>jeh-ar.fina</string>\n      <string>rehFourdots-ar</string>\n      <string>rehFourdots-ar.fina</string>\n      <string>rehVinvertedabove-ar</string>\n      <string>rehVinvertedabove-ar.fina</string>\n      <string>rehStroke-ar</string>\n      <string>rehStroke-ar.fina</string>\n      <string>rehTwodotsverticalabove-ar</string>\n      <string>rehTwodotsverticalabove-ar.fina</string>\n      <string>rehHamzaabove-ar</string>\n      <string>rehHamzaabove-ar.fina</string>\n      <string>rehTwodotshorizontalaboveTahabove-ar</string>\n      <string>rehTwodotshorizontalaboveTahabove-ar.fina</string>\n      <string>rehAlefabove-ar</string>\n      <string>rehAlefabove-ar.fina</string>\n      <string>rehLoop-ar</string>\n      <string>rehLoop-ar.fina</string>\n      <string>seen-ar</string>\n      <string>seen-ar.alt</string>\n      <string>seen-ar.fina</string>\n      <string>seen-ar.fina.alt</string>\n      <string>seen-ar.medi</string>\n      <string>seen-ar.init</string>\n      <string>seenDotbelowDotabove-ar</string>\n      <string>seenDotbelowDotabove-ar.fina</string>\n      <string>seenDotbelowDotabove-ar.fina.alt</string>\n      <string>seenDotbelowDotabove-ar.medi</string>\n      <string>seenDotbelowDotabove-ar.init</string>\n      <string>seenDotbelowDotabove-ar.alt</string>\n      <string>seenThreedotsbelow-ar</string>\n      <string>seenThreedotsbelow-ar.fina</string>\n      <string>seenThreedotsbelow-ar.fina.alt</string>\n      <string>seenThreedotsbelow-ar.medi</string>\n      <string>seenThreedotsbelow-ar.init</string>\n      <string>seenThreedotsbelow-ar.alt</string>\n      <string>sheen-ar</string>\n      <string>sheen-ar.alt</string>\n      <string>sheen-ar.fina</string>\n      <string>sheen-ar.fina.alt</string>\n      <string>sheen-ar.medi</string>\n      <string>sheen-ar.init</string>\n      <string>sheenDotbelow-ar</string>\n      <string>sheenDotbelow-ar.fina</string>\n      <string>sheenDotbelow-ar.fina.alt</string>\n      <string>sheenDotbelow-ar.medi</string>\n      <string>sheenDotbelow-ar.init</string>\n      <string>sheenDotbelow-ar.alt</string>\n      <string>seenThreedotsbelowthreedots-ar</string>\n      <string>sad-ar</string>\n      <string>sad-ar.alt</string>\n      <string>sad-ar.fina</string>\n      <string>sad-ar.fina.alt</string>\n      <string>sad-ar.medi</string>\n      <string>sad-ar.init</string>\n      <string>sadTwodotsbelow-ar</string>\n      <string>sadTwodotsbelow-ar.fina</string>\n      <string>sadTwodotsbelow-ar.fina.alt</string>\n      <string>sadTwodotsbelow-ar.medi</string>\n      <string>sadTwodotsbelow-ar.init</string>\n      <string>sadTwodotsbelow-ar.alt</string>\n      <string>sadThreedots-ar</string>\n      <string>sadThreedots-ar.fina</string>\n      <string>sadThreedots-ar.fina.alt</string>\n      <string>sadThreedots-ar.medi</string>\n      <string>sadThreedots-ar.init</string>\n      <string>sadThreedots-ar.alt</string>\n      <string>sadThreedotsbelow-ar</string>\n      <string>sadThreedotsbelow-ar.fina</string>\n      <string>sadThreedotsbelow-ar.fina.alt</string>\n      <string>sadThreedotsbelow-ar.medi</string>\n      <string>sadThreedotsbelow-ar.init</string>\n      <string>sadThreedotsbelow-ar.alt</string>\n      <string>dad-ar</string>\n      <string>dad-ar.alt</string>\n      <string>dad-ar.fina</string>\n      <string>dad-ar.fina.alt</string>\n      <string>dad-ar.medi</string>\n      <string>dad-ar.init</string>\n      <string>dadDotbelow-ar</string>\n      <string>dadDotbelow-ar.fina</string>\n      <string>dadDotbelow-ar.fina.alt</string>\n      <string>dadDotbelow-ar.medi</string>\n      <string>dadDotbelow-ar.init</string>\n      <string>dadDotbelow-ar.alt</string>\n      <string>tah-ar</string>\n      <string>tah-ar.fina</string>\n      <string>tah-ar.medi</string>\n      <string>tah-ar.init</string>\n      <string>tahThreedots-ar</string>\n      <string>tahThreedots-ar.fina</string>\n      <string>tahThreedots-ar.medi</string>\n      <string>tahThreedots-ar.init</string>\n      <string>zah-ar</string>\n      <string>zah-ar.fina</string>\n      <string>zah-ar.medi</string>\n      <string>zah-ar.init</string>\n      <string>tahTwodotsabove-ar</string>\n      <string>tahTwodotsabove-ar.fina</string>\n      <string>tahTwodotsabove-ar.medi</string>\n      <string>tahTwodotsabove-ar.init</string>\n      <string>ain-ar</string>\n      <string>ain-ar.fina</string>\n      <string>ain-ar.medi</string>\n      <string>ain-ar.init</string>\n      <string>ainThreedots-ar</string>\n      <string>ainThreedots-ar.fina</string>\n      <string>ainThreedots-ar.medi</string>\n      <string>ainThreedots-ar.init</string>\n      <string>ghain-ar</string>\n      <string>ghain-ar.fina</string>\n      <string>ghain-ar.medi</string>\n      <string>ghain-ar.init</string>\n      <string>ghainDotbelow-ar</string>\n      <string>ghainDotbelow-ar.fina</string>\n      <string>ghainDotbelow-ar.medi</string>\n      <string>ghainDotbelow-ar.init</string>\n      <string>feh-ar</string>\n      <string>feh-ar.alt</string>\n      <string>feh-ar.fina</string>\n      <string>feh-ar.fina.alt</string>\n      <string>feh-ar.medi</string>\n      <string>feh-ar.init</string>\n      <string>feh-ar.init.alt</string>\n      <string>veh-ar</string>\n      <string>veh-ar.alt</string>\n      <string>veh-ar.fina</string>\n      <string>veh-ar.fina.alt</string>\n      <string>veh-ar.medi</string>\n      <string>veh-ar.init</string>\n      <string>veh-ar.init.alt</string>\n      <string>fehDotless-ar</string>\n      <string>fehDotless-ar.alt</string>\n      <string>fehDotless-ar.fina</string>\n      <string>fehDotless-ar.fina.alt</string>\n      <string>fehDotless-ar.medi</string>\n      <string>fehDotless-ar.init</string>\n      <string>fehDotless-ar.init.alt</string>\n      <string>fehDotMovedbelow-ar</string>\n      <string>fehDotbelow-ar</string>\n      <string>fehDotbelow-ar.fina</string>\n      <string>fehDotbelow-ar.fina.alt</string>\n      <string>fehDotbelow-ar.medi</string>\n      <string>fehDotbelow-ar.init</string>\n      <string>fehDotbelow-ar.alt</string>\n      <string>fehThreedotsbelow-ar</string>\n      <string>fehThreedotsbelow-ar.fina</string>\n      <string>fehThreedotsbelow-ar.fina.alt</string>\n      <string>fehThreedotsbelow-ar.medi</string>\n      <string>fehThreedotsbelow-ar.init</string>\n      <string>fehThreedotsbelow-ar.alt</string>\n      <string>fehDotbelowThreedotsabove-ar</string>\n      <string>fehDotbelowThreedotsabove-ar.fina</string>\n      <string>fehDotbelowThreedotsabove-ar.fina.alt</string>\n      <string>fehDotbelowThreedotsabove-ar.medi</string>\n      <string>fehDotbelowThreedotsabove-ar.init</string>\n      <string>fehDotbelowThreedotsabove-ar.alt</string>\n      <string>peheh-ar</string>\n      <string>peheh-ar.fina</string>\n      <string>peheh-ar.fina.alt</string>\n      <string>peheh-ar.medi</string>\n      <string>peheh-ar.init</string>\n      <string>peheh-ar.init.alt</string>\n      <string>peheh-ar.alt</string>\n      <string>qafDotless-ar</string>\n      <string>qafDotless-ar.medi</string>\n      <string>qafDotless-ar.init</string>\n      <string>qafDotless-ar.init.alt</string>\n      <string>qafDotless-ar.fina</string>\n      <string>qaf-ar</string>\n      <string>qaf-ar.fina</string>\n      <string>qaf-ar.medi</string>\n      <string>qaf-ar.init</string>\n      <string>qaf-ar.init.alt</string>\n      <string>qafDotabove-ar</string>\n      <string>qafDotabove-ar.fina</string>\n      <string>qafDotabove-ar.medi</string>\n      <string>qafDotabove-ar.init</string>\n      <string>qafDotabove-ar.init.alt</string>\n      <string>qafThreedotsabove-ar</string>\n      <string>qafThreedotsabove-ar.fina</string>\n      <string>qafThreedotsabove-ar.medi</string>\n      <string>qafThreedotsabove-ar.init</string>\n      <string>qafDotbelow-ar</string>\n      <string>qafDotbelow-ar.fina</string>\n      <string>qafDotbelow-ar.medi</string>\n      <string>qafDotbelow-ar.init</string>\n      <string>qafAfrican-ar</string>\n      <string>qafAfrican-ar.fina</string>\n      <string>qafAfrican-ar.medi</string>\n      <string>qafAfrican-ar.init</string>\n      <string>qafAfrican-ar.init.alt</string>\n      <string>kaf-ar</string>\n      <string>kaf-ar.fina</string>\n      <string>kaf-ar.medi</string>\n      <string>kaf-ar.init</string>\n      <string>keheh-ar</string>\n      <string>keheh-ar.fina</string>\n      <string>keheh-ar.medi</string>\n      <string>keheh-ar.init</string>\n      <string>kehehTwodotshorizontalabove-ar</string>\n      <string>kehehTwodotshorizontalabove-ar.fina</string>\n      <string>kehehTwodotshorizontalabove-ar.medi</string>\n      <string>kehehTwodotshorizontalabove-ar.init</string>\n      <string>kehehThreedotsbelow-ar</string>\n      <string>kehehThreedotsbelow-ar.fina</string>\n      <string>kehehThreedotsbelow-ar.medi</string>\n      <string>kehehThreedotsbelow-ar.init</string>\n      <string>kehehDotabove-ar</string>\n      <string>kehehDotabove-ar.fina</string>\n      <string>kehehDotabove-ar.medi</string>\n      <string>kehehDotabove-ar.init</string>\n      <string>kehehThreedotsabove-ar</string>\n      <string>kehehThreedotsabove-ar.fina</string>\n      <string>kehehThreedotsabove-ar.medi</string>\n      <string>kehehThreedotsabove-ar.init</string>\n      <string>kehehThreedotsupbelow-ar</string>\n      <string>kehehThreedotsupbelow-ar.fina</string>\n      <string>kehehThreedotsupbelow-ar.medi</string>\n      <string>kehehThreedotsupbelow-ar.init</string>\n      <string>gaf-ar</string>\n      <string>gaf-ar.fina</string>\n      <string>gaf-ar.medi</string>\n      <string>gaf-ar.init</string>\n      <string>gafRing-ar</string>\n      <string>gafRing-ar.fina</string>\n      <string>gafRing-ar.medi</string>\n      <string>gafRing-ar.init</string>\n      <string>gafThreedots-ar</string>\n      <string>gafThreedots-ar.fina</string>\n      <string>gafThreedots-ar.medi</string>\n      <string>gafThreedots-ar.init</string>\n      <string>kafswash-ar</string>\n      <string>kafswash-ar.fina</string>\n      <string>kafswash-ar.fina.alt</string>\n      <string>kafswash-ar.medi</string>\n      <string>kafswash-ar.medi.alt</string>\n      <string>kafswash-ar.init</string>\n      <string>kafswash-ar.init.alt</string>\n      <string>kafswash-ar.alt</string>\n      <string>kafRing-ar</string>\n      <string>kafRing-ar.fina</string>\n      <string>kafRing-ar.medi</string>\n      <string>kafRing-ar.init</string>\n      <string>kafDotabove-ar</string>\n      <string>kafDotabove-ar.fina</string>\n      <string>kafDotabove-ar.medi</string>\n      <string>kafDotabove-ar.init</string>\n      <string>kafTwodotshorizontalabove-ar</string>\n      <string>kafTwodotshorizontalabove-ar.fina</string>\n      <string>kafTwodotshorizontalabove-ar.medi</string>\n      <string>kafTwodotshorizontalabove-ar.init</string>\n      <string>kafThreedotsbelow-ar</string>\n      <string>kafThreedotsbelow-ar.fina</string>\n      <string>kafThreedotsbelow-ar.medi</string>\n      <string>kafThreedotsbelow-ar.init</string>\n      <string>gafTwodotsbelow-ar</string>\n      <string>gafTwodotsbelow-ar.fina</string>\n      <string>gafTwodotsbelow-ar.medi</string>\n      <string>gafTwodotsbelow-ar.init</string>\n      <string>gafInvertedstroke-ar</string>\n      <string>gafInvertedstroke-ar.fina</string>\n      <string>gafInvertedstroke-ar.medi</string>\n      <string>gafInvertedstroke-ar.init</string>\n      <string>ng-ar</string>\n      <string>ng-ar.fina</string>\n      <string>ng-ar.medi</string>\n      <string>ng-ar.init</string>\n      <string>ngoeh-ar</string>\n      <string>ngoeh-ar.fina</string>\n      <string>ngoeh-ar.medi</string>\n      <string>ngoeh-ar.init</string>\n      <string>gueh-ar</string>\n      <string>gueh-ar.fina</string>\n      <string>gueh-ar.medi</string>\n      <string>gueh-ar.init</string>\n      <string>lam-ar</string>\n      <string>lam-ar.fina</string>\n      <string>lam-ar.medi</string>\n      <string>lam-ar.medi.rlig</string>\n      <string>lam-ar.init</string>\n      <string>lam-ar.init.rlig</string>\n      <string>lamVabove-ar</string>\n      <string>lamVabove-ar.fina</string>\n      <string>lamVabove-ar.medi</string>\n      <string>lamVabove-ar.medi.rlig</string>\n      <string>lamVabove-ar.init</string>\n      <string>lamVabove-ar.init.rlig</string>\n      <string>lamDotabove-ar</string>\n      <string>lamDotabove-ar.fina</string>\n      <string>lamDotabove-ar.medi</string>\n      <string>lamDotabove-ar.medi.rlig</string>\n      <string>lamDotabove-ar.init</string>\n      <string>lamDotabove-ar.init.rlig</string>\n      <string>lamThreedotsabove-ar</string>\n      <string>lamThreedotsabove-ar.fina</string>\n      <string>lamThreedotsabove-ar.medi</string>\n      <string>lamThreedotsabove-ar.medi.rlig</string>\n      <string>lamThreedotsabove-ar.init</string>\n      <string>lamThreedotsabove-ar.init.rlig</string>\n      <string>lamThreedotsbelow-ar</string>\n      <string>lamThreedotsbelow-ar.fina</string>\n      <string>lamThreedotsbelow-ar.medi</string>\n      <string>lamThreedotsbelow-ar.medi.rlig</string>\n      <string>lamThreedotsbelow-ar.init</string>\n      <string>lamThreedotsbelow-ar.init.rlig</string>\n      <string>lamDoublebar-ar</string>\n      <string>lamDoublebar-ar.fina</string>\n      <string>lamDoublebar-ar.medi</string>\n      <string>lamDoublebar-ar.medi.rlig</string>\n      <string>lamDoublebar-ar.init</string>\n      <string>lamDoublebar-ar.init.rlig</string>\n      <string>meem-ar</string>\n      <string>meem-ar.fina</string>\n      <string>meem-ar.medi</string>\n      <string>meem-ar.init</string>\n      <string>meemThreedotsabove-ar</string>\n      <string>meemThreedotsabove-ar.fina</string>\n      <string>meemThreedotsabove-ar.medi</string>\n      <string>meemThreedotsabove-ar.init</string>\n      <string>noon-ar</string>\n      <string>noon-ar.fina</string>\n      <string>noon-ar.medi</string>\n      <string>noon-ar.init</string>\n      <string>noon-ar.init.alt</string>\n      <string>noonDotbelow-ar</string>\n      <string>noonDotbelow-ar.fina</string>\n      <string>noonDotbelow-ar.medi</string>\n      <string>noonDotbelow-ar.init</string>\n      <string>noonDotbelow-ar.init.alt</string>\n      <string>noonghunna-ar</string>\n      <string>noonghunna-ar.medi</string>\n      <string>noonghunna-ar.init</string>\n      <string>noonghunna-ar.init.alt</string>\n      <string>noonghunna-ar.fina</string>\n      <string>rnoon-ar</string>\n      <string>rnoon-ar.fina</string>\n      <string>rnoon-ar.medi</string>\n      <string>rnoon-ar.init</string>\n      <string>rnoon-ar.init.alt</string>\n      <string>noonRing-ar</string>\n      <string>noonRing-ar.fina</string>\n      <string>noonRing-ar.medi</string>\n      <string>noonRing-ar.init</string>\n      <string>noonRing-ar.init.alt</string>\n      <string>noonThreedotsabove-ar</string>\n      <string>noonThreedotsabove-ar.fina</string>\n      <string>noonThreedotsabove-ar.medi</string>\n      <string>noonThreedotsabove-ar.init</string>\n      <string>noonThreedotsabove-ar.init.alt</string>\n      <string>noonAfrican-ar</string>\n      <string>noonAfrican-ar.fina</string>\n      <string>noonAfrican-ar.medi</string>\n      <string>noonAfrican-ar.init</string>\n      <string>noonAfrican-ar.init.alt</string>\n      <string>heh-ar</string>\n      <string>heh-ar.fina</string>\n      <string>heh-ar.medi</string>\n      <string>heh-ar.init</string>\n      <string>hehHamzaabove-ar</string>\n      <string>hehHamzaabove-ar.fina</string>\n      <string>hehgoal-ar</string>\n      <string>hehgoal-ar.fina</string>\n      <string>hehgoal-ar.medi</string>\n      <string>hehgoal-ar.init</string>\n      <string>hehgoal-ar.init.alt</string>\n      <string>hehgoalHamzaabove-ar</string>\n      <string>hehgoalHamzaabove-ar.fina</string>\n      <string>hehgoalHamzaabove-ar.medi</string>\n      <string>hehgoalHamzaabove-ar.init</string>\n      <string>hehgoalHamzaabove-ar.init.alt</string>\n      <string>hehDoachashmee-ar</string>\n      <string>hehDoachashmee-ar.fina</string>\n      <string>hehDoachashmee-ar.medi</string>\n      <string>hehDoachashmee-ar.init</string>\n      <string>hehVinvertedabove-ar</string>\n      <string>hehVinvertedabove-ar.fina</string>\n      <string>hehVinvertedabove-ar.medi</string>\n      <string>hehVinvertedabove-ar.init</string>\n      <string>hehAlefabove-ar.init</string>\n      <string>hehAlefabove-ar.init.fina</string>\n      <string>tehMarbuta-ar</string>\n      <string>tehMarbuta-ar.fina</string>\n      <string>tehMarbutagoal-ar</string>\n      <string>tehMarbutagoal-ar.fina</string>\n      <string>waw-ar</string>\n      <string>waw-ar.fina</string>\n      <string>wawring-ar</string>\n      <string>wawring-ar.fina</string>\n      <string>wawTwodots-ar</string>\n      <string>wawTwodots-ar.fina</string>\n      <string>wawDotabove-ar</string>\n      <string>wawDotabove-ar.fina</string>\n      <string>wawHamzaabove-ar</string>\n      <string>wawHamzaabove-ar.fina</string>\n      <string>wawTwoabove-ar</string>\n      <string>wawTwoabove-ar.fina</string>\n      <string>wawThreeAbove-ar</string>\n      <string>wawThreeAbove-ar.fina</string>\n      <string>wawDotcenter-ar</string>\n      <string>wawDotcenter-ar.fina</string>\n      <string>wawStraight-ar</string>\n      <string>kirghizoe-ar</string>\n      <string>kirghizoe-ar.fina</string>\n      <string>oe-ar</string>\n      <string>oe-ar.fina</string>\n      <string>u-ar</string>\n      <string>u-ar.fina</string>\n      <string>yu-ar</string>\n      <string>yu-ar.fina</string>\n      <string>kirghizyu-ar</string>\n      <string>kirghizyu-ar.fina</string>\n      <string>ve-ar</string>\n      <string>ve-ar.fina</string>\n      <string>alefMaksura-ar</string>\n      <string>alefMaksura-ar.fina</string>\n      <string>alefMaksura-ar.fina.alt</string>\n      <string>alefMaksuraAlefabove-ar</string>\n      <string>alefMaksuraAlefabove-ar.fina</string>\n      <string>alefMaksuraAlefabove-ar.fina.alt</string>\n      <string>alefTwoabove-ar</string>\n      <string>alefTwoabove-ar.fina</string>\n      <string>alefTwoabove-ar.fina.alt</string>\n      <string>alefTwoabove-ar.fina.rlig</string>\n      <string>alefThreeabove-ar</string>\n      <string>alefThreeabove-ar.fina</string>\n      <string>alefThreeabove-ar.fina.alt</string>\n      <string>alefThreeabove-ar.fina.rlig</string>\n      <string>yeh-ar</string>\n      <string>yeh-ar.fina</string>\n      <string>yeh-ar.fina.alt</string>\n      <string>yeh-ar.medi</string>\n      <string>yeh-ar.init</string>\n      <string>yeh-ar.init.alt</string>\n      <string>yehHamzaabove-ar</string>\n      <string>yehHamzaabove-ar.fina</string>\n      <string>yehHamzaabove-ar.fina.alt</string>\n      <string>yehHamzaabove-ar.medi</string>\n      <string>yehHamzaabove-ar.init</string>\n      <string>yehHamzaabove-ar.init.alt</string>\n      <string>yehVabove-ar</string>\n      <string>yehVabove-ar.fina</string>\n      <string>yehVabove-ar.fina.alt</string>\n      <string>yehVabove-ar.medi</string>\n      <string>yehVabove-ar.init</string>\n      <string>yehVabove-ar.init.alt</string>\n      <string>yehTwodotsbelowHamzaabove-ar</string>\n      <string>yehTwodotsbelowHamzaabove-ar.fina</string>\n      <string>yehTwodotsbelowHamzaabove-ar.medi</string>\n      <string>yehTwodotsbelowHamzaabove-ar.init</string>\n      <string>yehTwodotsbelowHamzaabove-ar.init.alt</string>\n      <string>yehTwodotsbelowDotabove-ar</string>\n      <string>yehTwodotsbelowDotabove-ar.fina</string>\n      <string>yehTwodotsbelowDotabove-ar.medi</string>\n      <string>yehTwodotsbelowDotabove-ar.init</string>\n      <string>yehTwodotsbelowDotabove-ar.init.alt</string>\n      <string>yehVinverted-farsi</string>\n      <string>yehVinverted-farsi.fina</string>\n      <string>yehVinverted-farsi.fina.alt</string>\n      <string>yehVinverted-farsi.medi</string>\n      <string>yehVinverted-farsi.init</string>\n      <string>yehVinverted-farsi.init.alt</string>\n      <string>yeh-farsi</string>\n      <string>yeh-farsi.fina</string>\n      <string>yeh-farsi.fina.alt</string>\n      <string>yeh-farsi.medi</string>\n      <string>yeh-farsi.init</string>\n      <string>yeh-farsi.init.alt</string>\n      <string>yehTwodotsabove-farsi</string>\n      <string>yehTwodotsabove-farsi.fina</string>\n      <string>yehTwodotsabove-farsi.fina.alt</string>\n      <string>yehTwodotsabove-farsi.medi</string>\n      <string>yehTwodotsabove-farsi.init</string>\n      <string>yehTwodotsabove-farsi.init.alt</string>\n      <string>yehThreedotsabove-farsi</string>\n      <string>yehThreedotsabove-farsi.fina</string>\n      <string>yehThreedotsabove-farsi.fina.alt</string>\n      <string>yehThreedotsabove-farsi.medi</string>\n      <string>yehThreedotsabove-farsi.init</string>\n      <string>yehThreedotsabove-farsi.init.alt</string>\n      <string>yehTwoabove-farsi</string>\n      <string>yehTwoabove-farsi.fina</string>\n      <string>yehTwoabove-farsi.fina.alt</string>\n      <string>yehTwoabove-farsi.medi</string>\n      <string>yehTwoabove-farsi.init</string>\n      <string>yehTwoabove-farsi.init.alt</string>\n      <string>yehThreeabove-farsi</string>\n      <string>yehThreeabove-farsi.fina</string>\n      <string>yehThreeabove-farsi.fina.alt</string>\n      <string>yehThreeabove-farsi.medi</string>\n      <string>yehThreeabove-farsi.init</string>\n      <string>yehThreeabove-farsi.init.alt</string>\n      <string>yehFourbelow-farsi</string>\n      <string>yehFourbelow-farsi.fina</string>\n      <string>yehFourbelow-farsi.fina.alt</string>\n      <string>yehFourbelow-farsi.medi</string>\n      <string>yehFourbelow-farsi.init</string>\n      <string>yehFourbelow-farsi.init.alt</string>\n      <string>yehTail-ar</string>\n      <string>yehTail-ar.fina</string>\n      <string>yehTail-ar.fina.alt</string>\n      <string>yehKashmiri-ar</string>\n      <string>yehKashmiri-ar.fina</string>\n      <string>yehKashmiri-ar.fina.alt</string>\n      <string>yehKashmiri-ar.medi</string>\n      <string>yehKashmiri-ar.init</string>\n      <string>yehKashmiri-ar.init.alt</string>\n      <string>e-ar</string>\n      <string>e-ar.fina</string>\n      <string>e-ar.fina.alt</string>\n      <string>e-ar.medi</string>\n      <string>e-ar.init</string>\n      <string>e-ar.init.alt</string>\n      <string>yehThreedotsbelow-ar</string>\n      <string>yehThreedotsbelow-ar.fina</string>\n      <string>yehThreedotsbelow-ar.fina.alt</string>\n      <string>yehThreedotsbelow-ar.medi</string>\n      <string>yehThreedotsbelow-ar.init</string>\n      <string>yehThreedotsbelow-ar.init.alt</string>\n      <string>yehbarree-ar</string>\n      <string>yehbarree-ar.fina</string>\n      <string>yehbarreeHamzaabove-ar</string>\n      <string>yehbarreeHamzaabove-ar.fina</string>\n      <string>yehbarreeTwoabove-ar</string>\n      <string>yehbarreeTwoabove-ar.fina</string>\n      <string>yehbarreeTwoabove-ar.medi</string>\n      <string>yehbarreeTwoabove-ar.init</string>\n      <string>yehbarreeTwoabove-ar.init.alt</string>\n      <string>yehbarreeThreeabove-ar</string>\n      <string>yehbarreeThreeabove-ar.fina</string>\n      <string>yehbarreeThreeabove-ar.medi</string>\n      <string>yehbarreeThreeabove-ar.init</string>\n      <string>yehbarreeThreeabove-ar.init.alt</string>\n      <string>yehRohingya-ar</string>\n      <string>yehRohingya-ar.isol</string>\n      <string>yehRohingya-ar.fina</string>\n      <string>highhamzaWaw-ar</string>\n      <string>highhamzaWaw-ar.fina</string>\n      <string>uHamzaabove-ar</string>\n      <string>uHamzaabove-ar.fina</string>\n      <string>highhamzaYeh-ar</string>\n      <string>highhamzaYeh-ar.fina</string>\n      <string>highhamzaYeh-ar.fina.alt</string>\n      <string>highhamzaYeh-ar.medi</string>\n      <string>highhamzaYeh-ar.init</string>\n      <string>highhamzaYeh-ar.init.alt</string>\n      <string>ae-ar</string>\n      <string>ae-ar.fina</string>\n      <string>seenFourdotsabove-ar</string>\n      <string>seenFourdotsabove-ar.fina</string>\n      <string>seenFourdotsabove-ar.fina.alt</string>\n      <string>seenFourdotsabove-ar.medi</string>\n      <string>seenFourdotsabove-ar.init</string>\n      <string>seenFourdotsabove-ar.alt</string>\n      <string>ainTwodotshorizontalabove-ar</string>\n      <string>ainTwodotshorizontalabove-ar.fina</string>\n      <string>ainTwodotshorizontalabove-ar.medi</string>\n      <string>ainTwodotshorizontalabove-ar.init</string>\n      <string>ainThreedotsdownabove-ar</string>\n      <string>ainThreedotsdownabove-ar.fina</string>\n      <string>ainThreedotsdownabove-ar.medi</string>\n      <string>ainThreedotsdownabove-ar.init</string>\n      <string>ainTwodotsverticalabove-ar</string>\n      <string>ainTwodotsverticalabove-ar.fina</string>\n      <string>ainTwodotsverticalabove-ar.medi</string>\n      <string>ainTwodotsverticalabove-ar.init</string>\n      <string>fehTwodotsbelow-ar</string>\n      <string>fehTwodotsbelow-ar.fina</string>\n      <string>fehTwodotsbelow-ar.fina.alt</string>\n      <string>fehTwodotsbelow-ar.medi</string>\n      <string>fehTwodotsbelow-ar.init</string>\n      <string>fehTwodotsbelow-ar.alt</string>\n      <string>fehThreedotsupbelow-ar</string>\n      <string>fehThreedotsupbelow-ar.fina</string>\n      <string>fehThreedotsupbelow-ar.fina.alt</string>\n      <string>fehThreedotsupbelow-ar.medi</string>\n      <string>fehThreedotsupbelow-ar.init</string>\n      <string>fehThreedotsupbelow-ar.alt</string>\n      <string>meemDotabove-ar</string>\n      <string>meemDotabove-ar.fina</string>\n      <string>meemDotabove-ar.medi</string>\n      <string>meemDotabove-ar.init</string>\n      <string>meemDotbelow-ar</string>\n      <string>meemDotbelow-ar.fina</string>\n      <string>meemDotbelow-ar.medi</string>\n      <string>meemDotbelow-ar.init</string>\n      <string>noonTwodotsbelow-ar</string>\n      <string>noonTwodotsbelow-ar.fina</string>\n      <string>noonTwodotsbelow-ar.medi</string>\n      <string>noonTwodotsbelow-ar.init</string>\n      <string>noonTwodotsbelow-ar.init.alt</string>\n      <string>noonTahabove-ar</string>\n      <string>noonTahabove-ar.fina</string>\n      <string>noonTahabove-ar.medi</string>\n      <string>noonTahabove-ar.init</string>\n      <string>noonTahabove-ar.init.alt</string>\n      <string>noonVabove-ar</string>\n      <string>noonVabove-ar.fina</string>\n      <string>noonVabove-ar.medi</string>\n      <string>noonVabove-ar.init</string>\n      <string>noonVabove-ar.init.alt</string>\n      <string>lamBar-ar</string>\n      <string>lamBar-ar.fina</string>\n      <string>lamBar-ar.medi</string>\n      <string>lamBar-ar.medi.rlig</string>\n      <string>lamBar-ar.init</string>\n      <string>lamBar-ar.init.rlig</string>\n      <string>seenTwodotshorizontalabove-ar</string>\n      <string>seenTwodotshorizontalabove-ar.fina</string>\n      <string>seenTwodotsverticalabove-ar.fina.alt</string>\n      <string>seenTwodotshorizontalabove-ar.medi</string>\n      <string>seenTwodotshorizontalabove-ar.init</string>\n      <string>seenTwodotsverticalabove-ar.alt</string>\n      <string>seenTahTwodotshorizontalabove-ar</string>\n      <string>seenTahTwodotshorizontalabove-ar.fina</string>\n      <string>seenTahTwodotshorizontalabove-ar.fina.alt</string>\n      <string>seenTahTwodotshorizontalabove-ar.medi</string>\n      <string>seenTahTwodotshorizontalabove-ar.init</string>\n      <string>seenTahTwodotshorizontalabove-ar.alt</string>\n      <string>hahTahabove-ar</string>\n      <string>hahTahabove-ar.fina</string>\n      <string>hahTahabove-ar.medi</string>\n      <string>hahTahabove-ar.init</string>\n      <string>seenFourabove-ar</string>\n      <string>seenFourabove-ar.fina</string>\n      <string>seenFourabove-ar.fina.alt</string>\n      <string>seenFourabove-ar.medi</string>\n      <string>seenFourabove-ar.init</string>\n      <string>seenFourabove-ar.alt</string>\n      <string>seenVinvertedabove-ar</string>\n      <string>seenVinvertedabove-ar.fina</string>\n      <string>seenVinvertedabove-ar.fina.alt</string>\n      <string>seenVinvertedabove-ar.medi</string>\n      <string>seenVinvertedabove-ar.init</string>\n      <string>seenVinvertedabove-ar.alt</string>\n      <string>kashida-ar</string>\n      <string>behMeemabove-ar</string>\n      <string>behMeemabove-ar.fina</string>\n      <string>behMeemabove-ar.fina.alt</string>\n      <string>behMeemabove-ar.medi</string>\n      <string>behMeemabove-ar.init</string>\n      <string>behMeemabove-ar.init.alt</string>\n      <string>behMeemabove-ar.alt</string>\n      <string>fehDotMovedbelow-ar.init</string>\n      <string>fehDotMovedbelow-ar.medi</string>\n      <string>pehMeemabove-ar</string>\n      <string>pehMeemabove-ar.fina</string>\n      <string>pehMeemabove-ar.fina.alt</string>\n      <string>pehMeemabove-ar.medi</string>\n      <string>pehMeemabove-ar.init</string>\n      <string>pehMeemabove-ar.init.alt</string>\n      <string>pehMeemabove-ar.alt</string>\n      <string>uni08B9.fina</string>\n      <string>tehTehabove-ar</string>\n      <string>tehTehabove-ar.fina</string>\n      <string>tehTehabove-ar.fina.alt</string>\n      <string>tehTehabove-ar.medi</string>\n      <string>tehTehabove-ar.init</string>\n      <string>tehTehabove-ar.init.alt</string>\n      <string>tehTehabove-ar.alt</string>\n      <string>yehTwodotsbelowNoonabove-ar</string>\n      <string>yehTwodotsbelowNoonabove-ar.fina</string>\n      <string>yehTwodotsbelowNoonabove-ar.fina.alt</string>\n      <string>yehTwodotsbelowNoonabove-ar.medi</string>\n      <string>yehTwodotsbelowNoonabove-ar.init</string>\n      <string>yehTwodotsbelowNoonabove-ar.init.alt</string>\n      <string>lam_alef-ar</string>\n      <string>lam_alef-ar.fina</string>\n      <string>lam_alef-ar.fina.short</string>\n      <string>lam_alef-ar.short</string>\n      <string>lam_alefHamzaabove-ar</string>\n      <string>lam_alefHamzaabove-ar.fina</string>\n      <string>lam_alefHamzabelow-ar</string>\n      <string>lam_alefHamzabelow-ar.fina</string>\n      <string>lam_alefMadda-ar</string>\n      <string>lam_alefMadda-ar.fina</string>\n      <string>lam_lam_heh-ar</string>\n      <string>lam_alefWasla-ar</string>\n      <string>lam_alefWasla-ar.fina</string>\n      <string>allah-ar</string>\n      <string>alef-hb</string>\n      <string>alefpatah-hb</string>\n      <string>alefqamats-hb</string>\n      <string>alefdagesh-hb</string>\n      <string>bet-hb</string>\n      <string>betdagesh-hb</string>\n      <string>gimel-hb</string>\n      <string>gimeldagesh-hb</string>\n      <string>dalet-hb</string>\n      <string>daletdagesh-hb</string>\n      <string>he-hb</string>\n      <string>hedagesh-hb</string>\n      <string>vav-hb</string>\n      <string>vavdagesh-hb</string>\n      <string>vavholam-hb</string>\n      <string>zayin-hb</string>\n      <string>zayindagesh-hb</string>\n      <string>het-hb</string>\n      <string>tet-hb</string>\n      <string>tetdagesh-hb</string>\n      <string>yod-hb</string>\n      <string>yoddagesh-hb</string>\n      <string>finalkaf-hb</string>\n      <string>finalkafdagesh-hb</string>\n      <string>kaf-hb</string>\n      <string>kafdagesh-hb</string>\n      <string>lamed-hb</string>\n      <string>lameddagesh-hb</string>\n      <string>finalmem-hb</string>\n      <string>mem-hb</string>\n      <string>memdagesh-hb</string>\n      <string>finalnun-hb</string>\n      <string>nun-hb</string>\n      <string>nundagesh-hb</string>\n      <string>samekh-hb</string>\n      <string>samekhdagesh-hb</string>\n      <string>ayin-hb</string>\n      <string>finalpe-hb</string>\n      <string>finalpedagesh-hb</string>\n      <string>pe-hb</string>\n      <string>pedagesh-hb</string>\n      <string>finaltsadi-hb</string>\n      <string>tsadi-hb</string>\n      <string>tsadidagesh-hb</string>\n      <string>qof-hb</string>\n      <string>qofdagesh-hb</string>\n      <string>resh-hb</string>\n      <string>reshdagesh-hb</string>\n      <string>shin-hb</string>\n      <string>shinshindot-hb</string>\n      <string>shinsindot-hb</string>\n      <string>shindageshshindot-hb</string>\n      <string>shindageshsindot-hb</string>\n      <string>shindagesh-hb</string>\n      <string>tav-hb</string>\n      <string>tavdagesh-hb</string>\n      <string>thetamod</string>\n      <string>zmod</string>\n      <string>zero</string>\n      <string>one</string>\n      <string>two</string>\n      <string>three</string>\n      <string>four</string>\n      <string>five</string>\n      <string>six</string>\n      <string>seven</string>\n      <string>eight</string>\n      <string>nine</string>\n      <string>zero.zero</string>\n      <string>one.half</string>\n      <string>two.half</string>\n      <string>three.half</string>\n      <string>four.half</string>\n      <string>zeroinferior</string>\n      <string>oneinferior</string>\n      <string>twoinferior</string>\n      <string>threeinferior</string>\n      <string>fourinferior</string>\n      <string>fiveinferior</string>\n      <string>sixinferior</string>\n      <string>seveninferior</string>\n      <string>eightinferior</string>\n      <string>nineinferior</string>\n      <string>zero.dnom</string>\n      <string>one.dnom</string>\n      <string>two.dnom</string>\n      <string>three.dnom</string>\n      <string>four.dnom</string>\n      <string>five.dnom</string>\n      <string>six.dnom</string>\n      <string>seven.dnom</string>\n      <string>eight.dnom</string>\n      <string>nine.dnom</string>\n      <string>zero.numr</string>\n      <string>one.numr</string>\n      <string>two.numr</string>\n      <string>three.numr</string>\n      <string>four.numr</string>\n      <string>five.numr</string>\n      <string>six.numr</string>\n      <string>seven.numr</string>\n      <string>eight.numr</string>\n      <string>nine.numr</string>\n      <string>zerosuperior</string>\n      <string>onesuperior</string>\n      <string>twosuperior</string>\n      <string>threesuperior</string>\n      <string>foursuperior</string>\n      <string>fivesuperior</string>\n      <string>sixsuperior</string>\n      <string>sevensuperior</string>\n      <string>eightsuperior</string>\n      <string>ninesuperior</string>\n      <string>fraction</string>\n      <string>onehalf</string>\n      <string>onequarter</string>\n      <string>threequarters</string>\n      <string>oneeighth</string>\n      <string>threeeighths</string>\n      <string>fiveeighths</string>\n      <string>seveneighths</string>\n      <string>decimalseparator-ar</string>\n      <string>thousandseparator-ar</string>\n      <string>zero-ar</string>\n      <string>one-ar</string>\n      <string>two-ar</string>\n      <string>three-ar</string>\n      <string>four-ar</string>\n      <string>five-ar</string>\n      <string>six-ar</string>\n      <string>seven-ar</string>\n      <string>eight-ar</string>\n      <string>nine-ar</string>\n      <string>zero-persian</string>\n      <string>one-persian</string>\n      <string>two-persian</string>\n      <string>three-persian</string>\n      <string>four-persian</string>\n      <string>five-persian</string>\n      <string>six-persian</string>\n      <string>seven-persian</string>\n      <string>eight-persian</string>\n      <string>nine-persian</string>\n      <string>two-persian.small01</string>\n      <string>three-persian.small01</string>\n      <string>four-persian.small01</string>\n      <string>four-persian.urdu</string>\n      <string>seven-persian.urdu</string>\n      <string>eight-arinferior</string>\n      <string>eight-arsuperior</string>\n      <string>eight-persianinferior</string>\n      <string>eight-persiansuperior</string>\n      <string>five-arinferior</string>\n      <string>five-arsuperior</string>\n      <string>five-persianinferior</string>\n      <string>five-persiansuperior</string>\n      <string>four-arinferior</string>\n      <string>four-arsuperior</string>\n      <string>four-persianinferior</string>\n      <string>four-persiansuperior</string>\n      <string>nine-arinferior</string>\n      <string>nine-arsuperior</string>\n      <string>nine-persianinferior</string>\n      <string>nine-persiansuperior</string>\n      <string>one-arinferior</string>\n      <string>one-arsuperior</string>\n      <string>one-persianinferior</string>\n      <string>one-persiansuperior</string>\n      <string>seven-arinferior</string>\n      <string>seven-arsuperior</string>\n      <string>seven-persianinferior</string>\n      <string>seven-persiansuperior</string>\n      <string>six-arinferior</string>\n      <string>six-arsuperior</string>\n      <string>six-persianinferior</string>\n      <string>six-persiansuperior</string>\n      <string>three-arinferior</string>\n      <string>three-arsuperior</string>\n      <string>three-persianinferior</string>\n      <string>three-persiansuperior</string>\n      <string>two-arinferior</string>\n      <string>two-arsuperior</string>\n      <string>two-persianinferior</string>\n      <string>two-persiansuperior</string>\n      <string>four-persian.urduinferior</string>\n      <string>seven-persian.urduinferior</string>\n      <string>four-persian.urdusuperior</string>\n      <string>seven-persian.urdusuperior</string>\n      <string>zero-arinferior</string>\n      <string>zero-arsuperior</string>\n      <string>zero-persianinferior</string>\n      <string>zero-persiansuperior</string>\n      <string>period</string>\n      <string>comma</string>\n      <string>colon</string>\n      <string>semicolon</string>\n      <string>ellipsis</string>\n      <string>exclam</string>\n      <string>exclamdown</string>\n      <string>question</string>\n      <string>questiondown</string>\n      <string>periodcentered</string>\n      <string>bullet</string>\n      <string>asterisk</string>\n      <string>exclamdouble</string>\n      <string>numbersign</string>\n      <string>onedotenleader</string>\n      <string>overline</string>\n      <string>slash</string>\n      <string>backslash</string>\n      <string>colon.center</string>\n      <string>parenleft</string>\n      <string>parenright</string>\n      <string>braceleft</string>\n      <string>braceright</string>\n      <string>bracketleft</string>\n      <string>bracketright</string>\n      <string>heavyleftpointinganglebracketornament</string>\n      <string>heavyleftpointinganglequotationmarkornament</string>\n      <string>heavyrightpointinganglebracketornament</string>\n      <string>heavyrightpointinganglequotationmarkornament</string>\n      <string>mediumleftpointinganglebracketornament</string>\n      <string>mediumrightpointinganglebracketornament</string>\n      <string>hyphen</string>\n      <string>softhyphen</string>\n      <string>endash</string>\n      <string>emdash</string>\n      <string>horizontalbar</string>\n      <string>hyphentwo</string>\n      <string>nonbreakinghyphen</string>\n      <string>underscore</string>\n      <string>underscoredbl</string>\n      <string>quotesinglbase</string>\n      <string>quotedblbase</string>\n      <string>quotedblleft</string>\n      <string>quotedblright</string>\n      <string>quoteleft</string>\n      <string>quoteright</string>\n      <string>quotereversed</string>\n      <string>guillemetleft</string>\n      <string>guillemetright</string>\n      <string>guilsinglleft</string>\n      <string>guilsinglright</string>\n      <string>quotedbl</string>\n      <string>quotesingle</string>\n      <string>hyphen_hyphen.liga</string>\n      <string>hyphen_hyphen_hyphen.liga</string>\n      <string>hyphen_asciitilde.liga</string>\n      <string>parenleft_asterisk.liga</string>\n      <string>braceleft_bar.liga</string>\n      <string>braceright_numbersign.liga</string>\n      <string>bracketleft_bar.liga</string>\n      <string>bracketright_numbersign.liga</string>\n      <string>period_hyphen.liga</string>\n      <string>period_period.liga</string>\n      <string>period_period_period.liga</string>\n      <string>period_period_equal.liga</string>\n      <string>period_period_less.liga</string>\n      <string>period_question.liga</string>\n      <string>period_equal.liga</string>\n      <string>colon_colon.liga</string>\n      <string>colon_colon_colon.liga</string>\n      <string>colon_colon_equal.liga</string>\n      <string>colon_equal.liga</string>\n      <string>colon_slash_slash.liga</string>\n      <string>semicolon_semicolon.liga</string>\n      <string>exclam_period.liga</string>\n      <string>exclam_colon.liga</string>\n      <string>exclam_exclam.liga</string>\n      <string>exclam_exclam_period.liga</string>\n      <string>exclam_equal.liga</string>\n      <string>exclam_equal_equal.liga</string>\n      <string>question_period.liga</string>\n      <string>question_colon.liga</string>\n      <string>question_question.liga</string>\n      <string>question_question_equal.liga</string>\n      <string>question_equal.liga</string>\n      <string>asterisk_parenright.liga</string>\n      <string>asterisk_asterisk.liga</string>\n      <string>asterisk_asterisk_asterisk.liga</string>\n      <string>asterisk_greater.liga</string>\n      <string>asterisk_slash.liga</string>\n      <string>numbersign_parenleft.liga</string>\n      <string>numbersign_braceleft.liga</string>\n      <string>numbersign_bracketleft.liga</string>\n      <string>numbersign_colon.liga</string>\n      <string>numbersign_exclam.liga</string>\n      <string>numbersign_question.liga</string>\n      <string>numbersign_equal.liga</string>\n      <string>numbersign_underscore.liga</string>\n      <string>numbersign_underscore_parenleft.liga</string>\n      <string>slash_asterisk.liga</string>\n      <string>slash_greater.liga</string>\n      <string>slash_slash.liga</string>\n      <string>slash_slash_slash.liga</string>\n      <string>slash_backslash.liga</string>\n      <string>backslash_slash.liga</string>\n      <string>backslash_backslash.liga</string>\n      <string>underscore_underscore.liga</string>\n      <string>hyphen_middle.seq</string>\n      <string>hyphen_start.seq</string>\n      <string>hyphen_end.seq</string>\n      <string>colon_equal_middle.seq</string>\n      <string>exclam_equal_middle.seq</string>\n      <string>numbersign_end.seq</string>\n      <string>numbersign_middle.seq</string>\n      <string>numbersign_start.seq</string>\n      <string>slash_equal_end.seq</string>\n      <string>slash_equal_middle.seq</string>\n      <string>slash_equal_start.seq</string>\n      <string>slash_slash_equal_end.seq</string>\n      <string>slash_slash_equal_middle.seq</string>\n      <string>slash_slash_equal_start.seq</string>\n      <string>underscore_end.seq</string>\n      <string>underscore_middle.seq</string>\n      <string>underscore_start.seq</string>\n      <string>paseq-hb</string>\n      <string>geresh-hb</string>\n      <string>gershayim-hb</string>\n      <string>maqaf-hb</string>\n      <string>threedots-ar</string>\n      <string>doubleverticalbarbelowSymbol-ar</string>\n      <string>doubleverticalbarbelowSymbol-ar.comb</string>\n      <string>asteriskArt-ar</string>\n      <string>fullstop-ar</string>\n      <string>comma-ar</string>\n      <string>semicolon-ar</string>\n      <string>question-ar</string>\n      <string>number-ar</string>\n      <string>asterisk-ar</string>\n      <string>year-ar</string>\n      <string>footnotemarker-ar</string>\n      <string>pagenumber-ar</string>\n      <string>dateseparator-ar</string>\n      <string>verseComma-ar</string>\n      <string>misraComma-ar</string>\n      <string>sindhiampersand-ar</string>\n      <string>endofayah-ar</string>\n      <string>parenleft-ar</string>\n      <string>parenright-ar</string>\n      <string>anoteleia</string>\n      <string>questiongreek</string>\n      <string>punctuationspace</string>\n      <string>space</string>\n      <string>nbspace</string>\n      <string>CR</string>\n      <string>lineseparator</string>\n      <string>.notdef</string>\n      <string>ray-ar</string>\n      <string>afghani-ar</string>\n      <string>baht</string>\n      <string>bitcoin</string>\n      <string>cedi</string>\n      <string>cent</string>\n      <string>colonsign</string>\n      <string>currency</string>\n      <string>dollar</string>\n      <string>dong</string>\n      <string>euro</string>\n      <string>eurocurrency</string>\n      <string>florin</string>\n      <string>franc</string>\n      <string>guarani</string>\n      <string>hryvnia</string>\n      <string>kip</string>\n      <string>lari</string>\n      <string>lira</string>\n      <string>liraTurkish</string>\n      <string>manat</string>\n      <string>naira</string>\n      <string>peseta</string>\n      <string>peso</string>\n      <string>ruble</string>\n      <string>rupee</string>\n      <string>rupeeIndian</string>\n      <string>sheqel</string>\n      <string>sterling</string>\n      <string>tenge</string>\n      <string>tugrik</string>\n      <string>won</string>\n      <string>yen</string>\n      <string>bulletoperator</string>\n      <string>divisionslash</string>\n      <string>equivalence</string>\n      <string>horizontallineextension</string>\n      <string>integralbt</string>\n      <string>integraltp</string>\n      <string>logicalnotReversed</string>\n      <string>notidentical</string>\n      <string>plus</string>\n      <string>minus</string>\n      <string>multiply</string>\n      <string>divide</string>\n      <string>equal</string>\n      <string>notequal</string>\n      <string>greater</string>\n      <string>less</string>\n      <string>greaterequal</string>\n      <string>lessequal</string>\n      <string>plusminus</string>\n      <string>approxequal</string>\n      <string>asciitilde</string>\n      <string>logicalnot</string>\n      <string>asciicircum</string>\n      <string>infinity</string>\n      <string>intersection</string>\n      <string>integral</string>\n      <string>Ohm</string>\n      <string>increment</string>\n      <string>product</string>\n      <string>summation</string>\n      <string>radical</string>\n      <string>micro</string>\n      <string>partialdiff</string>\n      <string>orthogonal</string>\n      <string>percent</string>\n      <string>perthousand</string>\n      <string>ratio</string>\n      <string>strictlyequivalentto</string>\n      <string>vectorOrCrossProduct</string>\n      <string>greater.alt</string>\n      <string>less.alt</string>\n      <string>greater.center</string>\n      <string>less.center</string>\n      <string>upArrow</string>\n      <string>rightArrow</string>\n      <string>downArrow</string>\n      <string>leftArrow</string>\n      <string>leftRightArrow</string>\n      <string>upDownArrow</string>\n      <string>upDownbaseArrow</string>\n      <string>downTipLeftArrow</string>\n      <string>upDashArrow</string>\n      <string>dashdownArrow</string>\n      <string>lowerOneEighthBlock</string>\n      <string>lowerOneQuarterBlock</string>\n      <string>lowerThreeEighthsBlock</string>\n      <string>lowerHalfBlock</string>\n      <string>lowerFiveEighthsBlock</string>\n      <string>lowerThreeQuartersBlock</string>\n      <string>lowerSevenEighthsBlock</string>\n      <string>fullBlock</string>\n      <string>upperHalfBlock</string>\n      <string>upperOneEighthBlock</string>\n      <string>leftOneEighthBlock</string>\n      <string>leftOneQuarterBlock</string>\n      <string>leftThreeEighthsBlock</string>\n      <string>leftBlock</string>\n      <string>leftFiveEighthsBlock</string>\n      <string>leftThreeQuartersBlock</string>\n      <string>leftSevenEighthsBlock</string>\n      <string>rightBlock</string>\n      <string>rightOneEighthBlock</string>\n      <string>lowerLeftBlock</string>\n      <string>lowerRightBlock</string>\n      <string>upperLeftBlock</string>\n      <string>upperLeftAndLowerLeftAndLowerRightBlock</string>\n      <string>upperLeftAndLowerRightBlock</string>\n      <string>upperLeftAndUpperRightAndLowerLeftBlock</string>\n      <string>upperLeftAndUpperRightAndLowerRightBlock</string>\n      <string>upperRightBlock</string>\n      <string>upperRightAndLowerLeftBlock</string>\n      <string>upperRightAndLowerLeftAndLowerRightBlock</string>\n      <string>shadelight</string>\n      <string>shademedium</string>\n      <string>shadedark</string>\n      <string>blackCircle</string>\n      <string>whiteCircle</string>\n      <string>largeCircle</string>\n      <string>leftHalfBlackWhiteCircle</string>\n      <string>rightHalfBlackWhiteCircle</string>\n      <string>lowerHalfBlackWhiteCircle</string>\n      <string>upperHalfBlackWhiteCircle</string>\n      <string>leftHalfBlackCircle</string>\n      <string>rightHalfBlackCircle</string>\n      <string>upperRightBlackCircle</string>\n      <string>upperLeftWhiteCircle</string>\n      <string>upperLeftQuadrantWhiteCircle</string>\n      <string>lowerLeftQuadrantWhiteCircle</string>\n      <string>lowerRightQuadrantWhiteCircle</string>\n      <string>upperRightQuadrantWhiteCircle</string>\n      <string>verticalFillCircle</string>\n      <string>dottedCircle</string>\n      <string>fisheye</string>\n      <string>bullseye</string>\n      <string>whiteBullet</string>\n      <string>inverseBullet</string>\n      <string>inverseWhiteCircle</string>\n      <string>upperHalfInverseWhiteCircle</string>\n      <string>lowerHalfInverseWhiteCircle</string>\n      <string>upperHalfArc</string>\n      <string>lowerHalfArc</string>\n      <string>upperLeftArc</string>\n      <string>upperRightArc</string>\n      <string>lowerRightArc</string>\n      <string>lowerLeftArc</string>\n      <string>blackDiamond</string>\n      <string>whiteDiamond</string>\n      <string>leftHalfBlackDiamond</string>\n      <string>rightHalfBlackDiamond</string>\n      <string>topHalfBlackDiamond</string>\n      <string>bottomHalfBlackDiamond</string>\n      <string>blackInWhiteDiamond</string>\n      <string>lozenge</string>\n      <string>blackParallelogram</string>\n      <string>whiteParallelogram</string>\n      <string>blackVerticalRect</string>\n      <string>filledRect</string>\n      <string>whiteRect</string>\n      <string>whiteVerticalRect</string>\n      <string>blackSquare</string>\n      <string>whiteSquare</string>\n      <string>whiteRoundedCornersSquare</string>\n      <string>whiteInBlackSquare</string>\n      <string>dottedSquare</string>\n      <string>horizontalFillSquare</string>\n      <string>verticalFillSquare</string>\n      <string>crosshatchFillSquare</string>\n      <string>upperlefttolowerrightFillSquare</string>\n      <string>upperrighttolowerleftFillSquare</string>\n      <string>diagonalcrosshatchFillSquare</string>\n      <string>blackSmallSquare</string>\n      <string>whiteSmallSquare</string>\n      <string>leftHalfBlackSquare</string>\n      <string>rightHalfBlackSquare</string>\n      <string>upperLeftDiagonalHalfBlackSquare</string>\n      <string>lowerRightDiagonalHalfBlackSquare</string>\n      <string>verticalBisectingLineWhiteSquare</string>\n      <string>whiteUpperLeftQuadrantSquare</string>\n      <string>whiteLowerLeftQuadrantSquare</string>\n      <string>whiteLowerRightQuadrantSquare</string>\n      <string>whiteUpperRightQuadrantSquare</string>\n      <string>mediumWhiteSquare</string>\n      <string>mediumBlackSquare</string>\n      <string>mediumWhiteSmallSquare</string>\n      <string>mediumBlackSmallSquare</string>\n      <string>upBlackTriangle</string>\n      <string>rightBlackTriangle</string>\n      <string>downBlackTriangle</string>\n      <string>leftBlackTriangle</string>\n      <string>upWhiteTriangle</string>\n      <string>rightWhiteTriangle</string>\n      <string>downWhiteTriangle</string>\n      <string>leftWhiteTriangle</string>\n      <string>upWhiteTriangleWithDot</string>\n      <string>upLeftHalfBlackTriangle</string>\n      <string>upRightHalfBlackTriangle</string>\n      <string>rightBlackPointer</string>\n      <string>leftBlackPointer</string>\n      <string>rightWhitePointer</string>\n      <string>leftWhitePointer</string>\n      <string>upBlackSmallTriangle</string>\n      <string>rightBlackSmallTriangle</string>\n      <string>downBlackSmallTriangle</string>\n      <string>leftBlackSmallTriangle</string>\n      <string>upWhiteSmallTriangle</string>\n      <string>rightWhiteSmallTriangle</string>\n      <string>downWhiteSmallTriangle</string>\n      <string>leftWhiteSmallTriangle</string>\n      <string>upperRightBlackTriangle</string>\n      <string>lowerRightBlackTriangle</string>\n      <string>lowerLeftBlackTriangle</string>\n      <string>upperLeftBlackTriangle</string>\n      <string>upperRightTriangle</string>\n      <string>lowerRightTriangle</string>\n      <string>lowerLeftTriangle</string>\n      <string>upperLeftTriangle</string>\n      <string>boxDoubleDownAndHorizontal</string>\n      <string>boxDoubleDownAndLeft</string>\n      <string>boxDoubleDownAndRight</string>\n      <string>boxDoubleHorizontal</string>\n      <string>boxDoubleUpAndHorizontal</string>\n      <string>boxDoubleUpAndLeft</string>\n      <string>boxDoubleUpAndRight</string>\n      <string>boxDoubleVertical</string>\n      <string>boxDoubleVerticalAndHorizontal</string>\n      <string>boxDoubleVerticalAndLeft</string>\n      <string>boxDoubleVerticalAndRight</string>\n      <string>boxDownDoubleAndHorizontalSingle</string>\n      <string>boxDownDoubleAndLeftSingle</string>\n      <string>boxDownDoubleAndRightSingle</string>\n      <string>boxDownHeavyAndHorizontalLight</string>\n      <string>boxDownHeavyAndLeftLight</string>\n      <string>boxDownHeavyAndLeftUpLight</string>\n      <string>boxDownHeavyAndRightLight</string>\n      <string>boxDownHeavyAndRightUpLight</string>\n      <string>boxDownHeavyAndUpHorizontalLight</string>\n      <string>boxDownLightAndHorizontalHeavy</string>\n      <string>boxDownLightAndLeftHeavy</string>\n      <string>boxDownLightAndLeftUpHeavy</string>\n      <string>boxDownLightAndRightHeavy</string>\n      <string>boxDownLightAndRightUpHeavy</string>\n      <string>boxDownLightAndUpHorizontalHeavy</string>\n      <string>boxDownSingleAndHorizontalDouble</string>\n      <string>boxDownSingleAndLeftDouble</string>\n      <string>boxDownSingleAndRightDouble</string>\n      <string>boxHeavyDoubleDashHorizontal</string>\n      <string>boxHeavyDoubleDashVertical</string>\n      <string>boxHeavyDown</string>\n      <string>boxHeavyDownAndHorizontal</string>\n      <string>boxHeavyDownAndLeft</string>\n      <string>boxHeavyDownAndRight</string>\n      <string>boxHeavyHorizontal</string>\n      <string>boxHeavyLeft</string>\n      <string>boxHeavyLeftAndLightRight</string>\n      <string>boxHeavyQuadrupleDashHorizontal</string>\n      <string>boxHeavyQuadrupleDashVertical</string>\n      <string>boxHeavyRight</string>\n      <string>boxHeavyTripleDashHorizontal</string>\n      <string>boxHeavyTripleDashVertical</string>\n      <string>boxHeavyUp</string>\n      <string>boxHeavyUpAndHorizontal</string>\n      <string>boxHeavyUpAndLeft</string>\n      <string>boxHeavyUpAndLightDown</string>\n      <string>boxHeavyUpAndRight</string>\n      <string>boxHeavyVertical</string>\n      <string>boxHeavyVerticalAndHorizontal</string>\n      <string>boxHeavyVerticalAndLeft</string>\n      <string>boxHeavyVerticalAndRight</string>\n      <string>boxLeftDownHeavyAndRightUpLight</string>\n      <string>boxLeftHeavyAndRightDownLight</string>\n      <string>boxLeftHeavyAndRightUpLight</string>\n      <string>boxLeftHeavyAndRightVerticalLight</string>\n      <string>boxLeftLightAndRightDownHeavy</string>\n      <string>boxLeftLightAndRightUpHeavy</string>\n      <string>boxLeftLightAndRightVerticalHeavy</string>\n      <string>boxLeftUpHeavyAndRightDownLight</string>\n      <string>boxLightArcDownAndLeft</string>\n      <string>boxLightArcDownAndRight</string>\n      <string>boxLightArcUpAndLeft</string>\n      <string>boxLightArcUpAndRight</string>\n      <string>boxLightDiagonalCross</string>\n      <string>boxLightDiagonalUpperLeftToLowerRight</string>\n      <string>boxLightDiagonalUpperRightToLowerLeft</string>\n      <string>boxLightDoubleDashHorizontal</string>\n      <string>boxLightDoubleDashVertical</string>\n      <string>boxLightDown</string>\n      <string>boxLightDownAndHorizontal</string>\n      <string>boxLightDownAndLeft</string>\n      <string>boxLightDownAndRight</string>\n      <string>boxLightHorizontal</string>\n      <string>boxLightLeft</string>\n      <string>boxLightLeftAndHeavyRight</string>\n      <string>boxLightQuadrupleDashHorizontal</string>\n      <string>boxLightQuadrupleDashVertical</string>\n      <string>boxLightRight</string>\n      <string>boxLightTripleDashHorizontal</string>\n      <string>boxLightTripleDashVertical</string>\n      <string>boxLightUp</string>\n      <string>boxLightUpAndHeavyDown</string>\n      <string>boxLightUpAndHorizontal</string>\n      <string>boxLightUpAndLeft</string>\n      <string>boxLightUpAndRight</string>\n      <string>boxLightVertical</string>\n      <string>boxLightVerticalAndHorizontal</string>\n      <string>boxLightVerticalAndLeft</string>\n      <string>boxLightVerticalAndRight</string>\n      <string>boxRightDownHeavyAndLeftUpLight</string>\n      <string>boxRightHeavyAndLeftDownLight</string>\n      <string>boxRightHeavyAndLeftUpLight</string>\n      <string>boxRightHeavyAndLeftVerticalLight</string>\n      <string>boxRightLightAndLeftDownHeavy</string>\n      <string>boxRightLightAndLeftUpHeavy</string>\n      <string>boxRightLightAndLeftVerticalHeavy</string>\n      <string>boxRightUpHeavyAndLeftDownLight</string>\n      <string>boxUpDoubleAndHorizontalSingle</string>\n      <string>boxUpDoubleAndLeftSingle</string>\n      <string>boxUpDoubleAndRightSingle</string>\n      <string>boxUpHeavyAndDownHorizontalLight</string>\n      <string>boxUpHeavyAndHorizontalLight</string>\n      <string>boxUpHeavyAndLeftDownLight</string>\n      <string>boxUpHeavyAndLeftLight</string>\n      <string>boxUpHeavyAndRightDownLight</string>\n      <string>boxUpHeavyAndRightLight</string>\n      <string>boxUpLightAndDownHorizontalHeavy</string>\n      <string>boxUpLightAndHorizontalHeavy</string>\n      <string>boxUpLightAndLeftDownHeavy</string>\n      <string>boxUpLightAndLeftHeavy</string>\n      <string>boxUpLightAndRightDownHeavy</string>\n      <string>boxUpLightAndRightHeavy</string>\n      <string>boxUpSingleAndHorizontalDouble</string>\n      <string>boxUpSingleAndLeftDouble</string>\n      <string>boxUpSingleAndRightDouble</string>\n      <string>boxVerticalDoubleAndHorizontalSingle</string>\n      <string>boxVerticalDoubleAndLeftSingle</string>\n      <string>boxVerticalDoubleAndRightSingle</string>\n      <string>boxVerticalHeavyAndHorizontalLight</string>\n      <string>boxVerticalHeavyAndLeftLight</string>\n      <string>boxVerticalHeavyAndRightLight</string>\n      <string>boxVerticalLightAndHorizontalHeavy</string>\n      <string>boxVerticalLightAndLeftHeavy</string>\n      <string>boxVerticalLightAndRightHeavy</string>\n      <string>boxVerticalSingleAndHorizontalDouble</string>\n      <string>boxVerticalSingleAndLeftDouble</string>\n      <string>boxVerticalSingleAndRightDouble</string>\n      <string>lowerOneEighthBlock.stypo</string>\n      <string>lowerOneQuarterBlock.stypo</string>\n      <string>lowerThreeEighthsBlock.stypo</string>\n      <string>lowerHalfBlock.stypo</string>\n      <string>lowerFiveEighthsBlock.stypo</string>\n      <string>lowerThreeQuartersBlock.stypo</string>\n      <string>lowerSevenEighthsBlock.stypo</string>\n      <string>fullBlock.stypo</string>\n      <string>upperHalfBlock.stypo</string>\n      <string>upperOneEighthBlock.stypo</string>\n      <string>leftOneEighthBlock.stypo</string>\n      <string>leftOneQuarterBlock.stypo</string>\n      <string>leftThreeEighthsBlock.stypo</string>\n      <string>leftBlock.stypo</string>\n      <string>leftFiveEighthsBlock.stypo</string>\n      <string>leftThreeQuartersBlock.stypo</string>\n      <string>leftSevenEighthsBlock.stypo</string>\n      <string>rightBlock.stypo</string>\n      <string>rightOneEighthBlock.stypo</string>\n      <string>lowerLeftBlock.stypo</string>\n      <string>lowerRightBlock.stypo</string>\n      <string>upperLeftBlock.stypo</string>\n      <string>upperLeftAndLowerLeftAndLowerRightBlock.stypo</string>\n      <string>upperLeftAndLowerRightBlock.stypo</string>\n      <string>upperLeftAndUpperRightAndLowerLeftBlock.stypo</string>\n      <string>upperLeftAndUpperRightAndLowerRightBlock.stypo</string>\n      <string>upperRightBlock.stypo</string>\n      <string>upperRightAndLowerLeftBlock.stypo</string>\n      <string>upperRightAndLowerLeftAndLowerRightBlock.stypo</string>\n      <string>shadelight.stypo</string>\n      <string>shademedium.stypo</string>\n      <string>shadedark.stypo</string>\n      <string>boxDoubleDownAndHorizontal.stypo</string>\n      <string>boxDoubleDownAndLeft.stypo</string>\n      <string>boxDoubleDownAndRight.stypo</string>\n      <string>boxDoubleHorizontal.stypo</string>\n      <string>boxDoubleUpAndHorizontal.stypo</string>\n      <string>boxDoubleUpAndLeft.stypo</string>\n      <string>boxDoubleUpAndRight.stypo</string>\n      <string>boxDoubleVertical.stypo</string>\n      <string>boxDoubleVerticalAndHorizontal.stypo</string>\n      <string>boxDoubleVerticalAndLeft.stypo</string>\n      <string>boxDoubleVerticalAndRight.stypo</string>\n      <string>boxDownDoubleAndHorizontalSingle.stypo</string>\n      <string>boxDownDoubleAndLeftSingle.stypo</string>\n      <string>boxDownDoubleAndRightSingle.stypo</string>\n      <string>boxDownHeavyAndHorizontalLight.stypo</string>\n      <string>boxDownHeavyAndLeftLight.stypo</string>\n      <string>boxDownHeavyAndLeftUpLight.stypo</string>\n      <string>boxDownHeavyAndRightLight.stypo</string>\n      <string>boxDownHeavyAndRightUpLight.stypo</string>\n      <string>boxDownHeavyAndUpHorizontalLight.stypo</string>\n      <string>boxDownLightAndHorizontalHeavy.stypo</string>\n      <string>boxDownLightAndLeftHeavy.stypo</string>\n      <string>boxDownLightAndLeftUpHeavy.stypo</string>\n      <string>boxDownLightAndRightHeavy.stypo</string>\n      <string>boxDownLightAndRightUpHeavy.stypo</string>\n      <string>boxDownLightAndUpHorizontalHeavy.stypo</string>\n      <string>boxDownSingleAndHorizontalDouble.stypo</string>\n      <string>boxDownSingleAndLeftDouble.stypo</string>\n      <string>boxDownSingleAndRightDouble.stypo</string>\n      <string>boxHeavyDoubleDashHorizontal.stypo</string>\n      <string>boxHeavyDoubleDashVertical.stypo</string>\n      <string>boxHeavyDown.stypo</string>\n      <string>boxHeavyDownAndHorizontal.stypo</string>\n      <string>boxHeavyDownAndLeft.stypo</string>\n      <string>boxHeavyDownAndRight.stypo</string>\n      <string>boxHeavyHorizontal.stypo</string>\n      <string>boxHeavyLeft.stypo</string>\n      <string>boxHeavyLeftAndLightRight.stypo</string>\n      <string>boxHeavyQuadrupleDashHorizontal.stypo</string>\n      <string>boxHeavyQuadrupleDashVertical.stypo</string>\n      <string>boxHeavyRight.stypo</string>\n      <string>boxHeavyTripleDashHorizontal.stypo</string>\n      <string>boxHeavyTripleDashVertical.stypo</string>\n      <string>boxHeavyUp.stypo</string>\n      <string>boxHeavyUpAndHorizontal.stypo</string>\n      <string>boxHeavyUpAndLeft.stypo</string>\n      <string>boxHeavyUpAndLightDown.stypo</string>\n      <string>boxHeavyUpAndRight.stypo</string>\n      <string>boxHeavyVertical.stypo</string>\n      <string>boxHeavyVerticalAndHorizontal.stypo</string>\n      <string>boxHeavyVerticalAndLeft.stypo</string>\n      <string>boxHeavyVerticalAndRight.stypo</string>\n      <string>boxLeftDownHeavyAndRightUpLight.stypo</string>\n      <string>boxLeftHeavyAndRightDownLight.stypo</string>\n      <string>boxLeftHeavyAndRightUpLight.stypo</string>\n      <string>boxLeftHeavyAndRightVerticalLight.stypo</string>\n      <string>boxLeftLightAndRightDownHeavy.stypo</string>\n      <string>boxLeftLightAndRightUpHeavy.stypo</string>\n      <string>boxLeftLightAndRightVerticalHeavy.stypo</string>\n      <string>boxLeftUpHeavyAndRightDownLight.stypo</string>\n      <string>boxLightArcDownAndLeft.stypo</string>\n      <string>boxLightArcDownAndRight.stypo</string>\n      <string>boxLightArcUpAndLeft.stypo</string>\n      <string>boxLightArcUpAndRight.stypo</string>\n      <string>boxLightDiagonalCross.stypo</string>\n      <string>boxLightDiagonalUpperLeftToLowerRight.stypo</string>\n      <string>boxLightDiagonalUpperRightToLowerLeft.stypo</string>\n      <string>boxLightDoubleDashHorizontal.stypo</string>\n      <string>boxLightDoubleDashVertical.stypo</string>\n      <string>boxLightDown.stypo</string>\n      <string>boxLightDownAndHorizontal.stypo</string>\n      <string>boxLightDownAndLeft.stypo</string>\n      <string>boxLightDownAndRight.stypo</string>\n      <string>boxLightHorizontal.stypo</string>\n      <string>boxLightLeft.stypo</string>\n      <string>boxLightLeftAndHeavyRight.stypo</string>\n      <string>boxLightQuadrupleDashHorizontal.stypo</string>\n      <string>boxLightQuadrupleDashVertical.stypo</string>\n      <string>boxLightRight.stypo</string>\n      <string>boxLightTripleDashHorizontal.stypo</string>\n      <string>boxLightTripleDashVertical.stypo</string>\n      <string>boxLightUp.stypo</string>\n      <string>boxLightUpAndHeavyDown.stypo</string>\n      <string>boxLightUpAndHorizontal.stypo</string>\n      <string>boxLightUpAndLeft.stypo</string>\n      <string>boxLightUpAndRight.stypo</string>\n      <string>boxLightVertical.stypo</string>\n      <string>boxLightVerticalAndHorizontal.stypo</string>\n      <string>boxLightVerticalAndLeft.stypo</string>\n      <string>boxLightVerticalAndRight.stypo</string>\n      <string>boxRightDownHeavyAndLeftUpLight.stypo</string>\n      <string>boxRightHeavyAndLeftDownLight.stypo</string>\n      <string>boxRightHeavyAndLeftUpLight.stypo</string>\n      <string>boxRightHeavyAndLeftVerticalLight.stypo</string>\n      <string>boxRightLightAndLeftDownHeavy.stypo</string>\n      <string>boxRightLightAndLeftUpHeavy.stypo</string>\n      <string>boxRightLightAndLeftVerticalHeavy.stypo</string>\n      <string>boxRightUpHeavyAndLeftDownLight.stypo</string>\n      <string>boxUpDoubleAndHorizontalSingle.stypo</string>\n      <string>boxUpDoubleAndLeftSingle.stypo</string>\n      <string>boxUpDoubleAndRightSingle.stypo</string>\n      <string>boxUpHeavyAndDownHorizontalLight.stypo</string>\n      <string>boxUpHeavyAndHorizontalLight.stypo</string>\n      <string>boxUpHeavyAndLeftDownLight.stypo</string>\n      <string>boxUpHeavyAndLeftLight.stypo</string>\n      <string>boxUpHeavyAndRightDownLight.stypo</string>\n      <string>boxUpHeavyAndRightLight.stypo</string>\n      <string>boxUpLightAndDownHorizontalHeavy.stypo</string>\n      <string>boxUpLightAndHorizontalHeavy.stypo</string>\n      <string>boxUpLightAndLeftDownHeavy.stypo</string>\n      <string>boxUpLightAndLeftHeavy.stypo</string>\n      <string>boxUpLightAndRightDownHeavy.stypo</string>\n      <string>boxUpLightAndRightHeavy.stypo</string>\n      <string>boxUpSingleAndHorizontalDouble.stypo</string>\n      <string>boxUpSingleAndLeftDouble.stypo</string>\n      <string>boxUpSingleAndRightDouble.stypo</string>\n      <string>boxVerticalDoubleAndHorizontalSingle.stypo</string>\n      <string>boxVerticalDoubleAndLeftSingle.stypo</string>\n      <string>boxVerticalDoubleAndRightSingle.stypo</string>\n      <string>boxVerticalHeavyAndHorizontalLight.stypo</string>\n      <string>boxVerticalHeavyAndLeftLight.stypo</string>\n      <string>boxVerticalHeavyAndRightLight.stypo</string>\n      <string>boxVerticalLightAndHorizontalHeavy.stypo</string>\n      <string>boxVerticalLightAndLeftHeavy.stypo</string>\n      <string>boxVerticalLightAndRightHeavy.stypo</string>\n      <string>boxVerticalSingleAndHorizontalDouble.stypo</string>\n      <string>boxVerticalSingleAndLeftDouble.stypo</string>\n      <string>boxVerticalSingleAndRightDouble.stypo</string>\n      <string>reversedRotatedFloralHeartBullet</string>\n      <string>whiteSmilingFace</string>\n      <string>blackSmilingFace</string>\n      <string>sunWithRays</string>\n      <string>venus</string>\n      <string>mars</string>\n      <string>spadeBlackSuit</string>\n      <string>clubBlackSuit</string>\n      <string>heartBlackSuit</string>\n      <string>diamondBlackSuit</string>\n      <string>checkmark</string>\n      <string>rotatedFloralHeartBullet</string>\n      <string>acknowledgeControl</string>\n      <string>backspaceControl</string>\n      <string>at</string>\n      <string>ampersand</string>\n      <string>paragraph</string>\n      <string>section</string>\n      <string>copyright</string>\n      <string>registered</string>\n      <string>published</string>\n      <string>trademark</string>\n      <string>careof</string>\n      <string>degree</string>\n      <string>minute</string>\n      <string>second</string>\n      <string>bar</string>\n      <string>brokenbar</string>\n      <string>dagger</string>\n      <string>literSign</string>\n      <string>daggerdbl</string>\n      <string>estimated</string>\n      <string>numero</string>\n      <string>bellControl</string>\n      <string>blackHexagon</string>\n      <string>blackHorizontalEllipse</string>\n      <string>blackLargeCircle</string>\n      <string>blackLargeSquare</string>\n      <string>blackMediumDiamond</string>\n      <string>blackMediumDownTriangleCentred</string>\n      <string>blackMediumLeftTriangleCentred</string>\n      <string>blackMediumLozenge</string>\n      <string>blackMediumRightTriangleCentred</string>\n      <string>blackMediumUpTriangleCentred</string>\n      <string>blackPentagon</string>\n      <string>blackSmallDiamond</string>\n      <string>blackSmallLozenge</string>\n      <string>blackVerticalEllipse</string>\n      <string>blackVerysmallSquare</string>\n      <string>blank</string>\n      <string>blankSymbol</string>\n      <string>bottomHalfBlackCircle</string>\n      <string>cancelControl</string>\n      <string>carriageReturnControl</string>\n      <string>dataLinkEscapeControl</string>\n      <string>deleteControl</string>\n      <string>deleteFormTwoControl</string>\n      <string>deviceControlFourControl</string>\n      <string>deviceControlOneControl</string>\n      <string>deviceControlThreeControl</string>\n      <string>deviceControlTwoControl</string>\n      <string>endOfMediumControl</string>\n      <string>endOfTextControl</string>\n      <string>endOfTransmissionBlockControl</string>\n      <string>endOfTransmissionControl</string>\n      <string>enquiryControl</string>\n      <string>escapeControl</string>\n      <string>fileSeparatorControl</string>\n      <string>formFeedControl</string>\n      <string>groupSeparatorControl</string>\n      <string>horizontalBlackHexagon</string>\n      <string>horizontalTabulationControl</string>\n      <string>house</string>\n      <string>returnsymbol</string>\n      <string>lineFeedControl</string>\n      <string>lowerHalfWhiteSquare</string>\n      <string>lowerLeftHalfWhiteSquare</string>\n      <string>negativeAcknowledgeControl</string>\n      <string>newlineControl</string>\n      <string>nullControl</string>\n      <string>prescription</string>\n      <string>recordSeparatorControl</string>\n      <string>replacementCharacter</string>\n      <string>shiftInControl</string>\n      <string>shiftOutControl</string>\n      <string>spaceControl</string>\n      <string>startOfHeadingControl</string>\n      <string>startOfTextControl</string>\n      <string>substituteControl</string>\n      <string>substituteFormTwoControl</string>\n      <string>synchronousIdleControl</string>\n      <string>topHalfBlackCircle</string>\n      <string>topHalfWhiteSquare</string>\n      <string>topRightHalfWhiteSquare</string>\n      <string>unitSeparatorControl</string>\n      <string>verticalTabulationControl</string>\n      <string>whiteHexagon</string>\n      <string>whiteHorizontalEllipse</string>\n      <string>whiteLargeSquare</string>\n      <string>whiteMediumDiamond</string>\n      <string>whiteMediumLozenge</string>\n      <string>whitePentagon</string>\n      <string>whiteSmallLozenge</string>\n      <string>whiteVerticalEllipse</string>\n      <string>whiteVerysmallSquare</string>\n      <string>acknowledgeControl.ss20</string>\n      <string>backspaceControl.ss20</string>\n      <string>bellControl.ss20</string>\n      <string>cancelControl.ss20</string>\n      <string>carriageReturnControl.ss20</string>\n      <string>dataLinkEscapeControl.ss20</string>\n      <string>endOfMediumControl.ss20</string>\n      <string>endOfTextControl.ss20</string>\n      <string>endOfTransmissionBlockControl.ss20</string>\n      <string>endOfTransmissionControl.ss20</string>\n      <string>enquiryControl.ss20</string>\n      <string>escapeControl.ss20</string>\n      <string>formFeedControl.ss20</string>\n      <string>horizontalTabulationControl.ss20</string>\n      <string>lineFeedControl.ss20</string>\n      <string>negativeAcknowledgeControl.ss20</string>\n      <string>shiftInControl.ss20</string>\n      <string>shiftOutControl.ss20</string>\n      <string>startOfHeadingControl.ss20</string>\n      <string>startOfTextControl.ss20</string>\n      <string>substituteControl.ss20</string>\n      <string>synchronousIdleControl.ss20</string>\n      <string>verticalTabulationControl.ss20</string>\n      <string>ampersand_ampersand.liga</string>\n      <string>bar_braceright.liga</string>\n      <string>bar_bracketright.liga</string>\n      <string>bar_bar.liga</string>\n      <string>bar_bar_bar.liga</string>\n      <string>bar_bar_bar_greater.liga</string>\n      <string>bar_bar_greater.liga</string>\n      <string>bar_greater.liga</string>\n      <string>dollar_greater.liga</string>\n      <string>plus_plus.liga</string>\n      <string>plus_plus_plus.liga</string>\n      <string>plus_greater.liga</string>\n      <string>equal_equal.liga</string>\n      <string>equal_equal_equal.liga</string>\n      <string>equal_greater_greater.liga</string>\n      <string>equal_less_less.liga</string>\n      <string>greater_equal.liga</string>\n      <string>greater_greater.liga</string>\n      <string>greater_greater_equal.liga</string>\n      <string>greater_greater_greater.liga</string>\n      <string>less_exclam_hyphen_hyphen.liga</string>\n      <string>less_asterisk.liga</string>\n      <string>less_asterisk_greater.liga</string>\n      <string>less_bar.liga</string>\n      <string>less_bar_bar.liga</string>\n      <string>less_bar_bar_bar.liga</string>\n      <string>less_bar_greater.liga</string>\n      <string>less_dollar.liga</string>\n      <string>less_dollar_greater.liga</string>\n      <string>less_plus.liga</string>\n      <string>less_plus_greater.liga</string>\n      <string>less_equal.liga</string>\n      <string>less_greater.liga</string>\n      <string>less_less.liga</string>\n      <string>less_less_equal.liga</string>\n      <string>less_less_less.liga</string>\n      <string>less_asciitilde.liga</string>\n      <string>less_asciitilde_greater.liga</string>\n      <string>less_asciitilde_asciitilde.liga</string>\n      <string>less_slash.liga</string>\n      <string>less_slash_greater.liga</string>\n      <string>asciitilde_hyphen.liga</string>\n      <string>asciitilde_at.liga</string>\n      <string>asciitilde_equal.liga</string>\n      <string>asciitilde_greater.liga</string>\n      <string>asciitilde_asciitilde.liga</string>\n      <string>asciitilde_asciitilde_greater.liga</string>\n      <string>asciicircum_equal.liga</string>\n      <string>percent_percent.liga</string>\n      <string>bar_underscore_middle.seq</string>\n      <string>bar_bar_equal_middle.seq</string>\n      <string>bar_equal_middle.seq</string>\n      <string>bar_bar_equal_end.seq</string>\n      <string>bar_bar_equal_start.seq</string>\n      <string>bar_bar_hyphen_middle.seq</string>\n      <string>bar_hyphen_middle.seq</string>\n      <string>bar_bar_hyphen_end.seq</string>\n      <string>bar_bar_hyphen_start.seq</string>\n      <string>bar_equal_end.seq</string>\n      <string>bar_equal_start.seq</string>\n      <string>bar_hyphen_end.seq</string>\n      <string>bar_hyphen_start.seq</string>\n      <string>equal_middle.seq</string>\n      <string>equal_end.seq</string>\n      <string>equal_start.seq</string>\n      <string>greater_greater_equal_middle.seq</string>\n      <string>greater_equal_middle.seq</string>\n      <string>greater_greater_equal_end.seq</string>\n      <string>greater_greater_equal_start.seq</string>\n      <string>greater_equal_start.seq</string>\n      <string>greater_equal_end.seq</string>\n      <string>greater_greater_hyphen_middle.seq</string>\n      <string>greater_hyphen_middle.seq</string>\n      <string>greater_greater_hyphen_end.seq</string>\n      <string>greater_greater_hyphen_start.seq</string>\n      <string>greater_hyphen_start.seq</string>\n      <string>greater_hyphen_end.seq</string>\n      <string>less_less_equal_middle.seq</string>\n      <string>less_equal_middle.seq</string>\n      <string>less_less_equal_end.seq</string>\n      <string>less_less_equal_start.seq</string>\n      <string>less_equal_end.seq</string>\n      <string>less_equal_start.seq</string>\n      <string>less_less_hyphen_middle.seq</string>\n      <string>less_hyphen_middle.seq</string>\n      <string>less_less_hyphen_end.seq</string>\n      <string>less_less_hyphen_start.seq</string>\n      <string>less_hyphen_end.seq</string>\n      <string>less_hyphen_start.seq</string>\n      <string>note-musical</string>\n      <string>notedbl-musical</string>\n      <string>blank-braille</string>\n      <string>dots1-braille</string>\n      <string>dots12-braille</string>\n      <string>dots123-braille</string>\n      <string>dots1234-braille</string>\n      <string>dots12345-braille</string>\n      <string>dots123456-braille</string>\n      <string>dots1234567-braille</string>\n      <string>dots12345678-braille</string>\n      <string>dots1234568-braille</string>\n      <string>dots123457-braille</string>\n      <string>dots1234578-braille</string>\n      <string>dots123458-braille</string>\n      <string>dots12346-braille</string>\n      <string>dots123467-braille</string>\n      <string>dots1234678-braille</string>\n      <string>dots123468-braille</string>\n      <string>dots12347-braille</string>\n      <string>dots123478-braille</string>\n      <string>dots12348-braille</string>\n      <string>dots1235-braille</string>\n      <string>dots12356-braille</string>\n      <string>dots123567-braille</string>\n      <string>dots1235678-braille</string>\n      <string>dots123568-braille</string>\n      <string>dots12357-braille</string>\n      <string>dots123578-braille</string>\n      <string>dots12358-braille</string>\n      <string>dots1236-braille</string>\n      <string>dots12367-braille</string>\n      <string>dots123678-braille</string>\n      <string>dots12368-braille</string>\n      <string>dots1237-braille</string>\n      <string>dots12378-braille</string>\n      <string>dots1238-braille</string>\n      <string>dots124-braille</string>\n      <string>dots1245-braille</string>\n      <string>dots12456-braille</string>\n      <string>dots124567-braille</string>\n      <string>dots1245678-braille</string>\n      <string>dots124568-braille</string>\n      <string>dots12457-braille</string>\n      <string>dots124578-braille</string>\n      <string>dots12458-braille</string>\n      <string>dots1246-braille</string>\n      <string>dots12467-braille</string>\n      <string>dots124678-braille</string>\n      <string>dots12468-braille</string>\n      <string>dots1247-braille</string>\n      <string>dots12478-braille</string>\n      <string>dots1248-braille</string>\n      <string>dots125-braille</string>\n      <string>dots1256-braille</string>\n      <string>dots12567-braille</string>\n      <string>dots125678-braille</string>\n      <string>dots12568-braille</string>\n      <string>dots1257-braille</string>\n      <string>dots12578-braille</string>\n      <string>dots1258-braille</string>\n      <string>dots126-braille</string>\n      <string>dots1267-braille</string>\n      <string>dots12678-braille</string>\n      <string>dots1268-braille</string>\n      <string>dots127-braille</string>\n      <string>dots1278-braille</string>\n      <string>dots128-braille</string>\n      <string>dots13-braille</string>\n      <string>dots134-braille</string>\n      <string>dots1345-braille</string>\n      <string>dots13456-braille</string>\n      <string>dots134567-braille</string>\n      <string>dots1345678-braille</string>\n      <string>dots134568-braille</string>\n      <string>dots13457-braille</string>\n      <string>dots134578-braille</string>\n      <string>dots13458-braille</string>\n      <string>dots1346-braille</string>\n      <string>dots13467-braille</string>\n      <string>dots134678-braille</string>\n      <string>dots13468-braille</string>\n      <string>dots1347-braille</string>\n      <string>dots13478-braille</string>\n      <string>dots1348-braille</string>\n      <string>dots135-braille</string>\n      <string>dots1356-braille</string>\n      <string>dots13567-braille</string>\n      <string>dots135678-braille</string>\n      <string>dots13568-braille</string>\n      <string>dots1357-braille</string>\n      <string>dots13578-braille</string>\n      <string>dots1358-braille</string>\n      <string>dots136-braille</string>\n      <string>dots1367-braille</string>\n      <string>dots13678-braille</string>\n      <string>dots1368-braille</string>\n      <string>dots137-braille</string>\n      <string>dots1378-braille</string>\n      <string>dots138-braille</string>\n      <string>dots14-braille</string>\n      <string>dots145-braille</string>\n      <string>dots1456-braille</string>\n      <string>dots14567-braille</string>\n      <string>dots145678-braille</string>\n      <string>dots14568-braille</string>\n      <string>dots1457-braille</string>\n      <string>dots14578-braille</string>\n      <string>dots1458-braille</string>\n      <string>dots146-braille</string>\n      <string>dots1467-braille</string>\n      <string>dots14678-braille</string>\n      <string>dots1468-braille</string>\n      <string>dots147-braille</string>\n      <string>dots1478-braille</string>\n      <string>dots148-braille</string>\n      <string>dots15-braille</string>\n      <string>dots156-braille</string>\n      <string>dots1567-braille</string>\n      <string>dots15678-braille</string>\n      <string>dots1568-braille</string>\n      <string>dots157-braille</string>\n      <string>dots1578-braille</string>\n      <string>dots158-braille</string>\n      <string>dots16-braille</string>\n      <string>dots167-braille</string>\n      <string>dots1678-braille</string>\n      <string>dots168-braille</string>\n      <string>dots17-braille</string>\n      <string>dots178-braille</string>\n      <string>dots18-braille</string>\n      <string>dots2-braille</string>\n      <string>dots23-braille</string>\n      <string>dots234-braille</string>\n      <string>dots2345-braille</string>\n      <string>dots23456-braille</string>\n      <string>dots234567-braille</string>\n      <string>dots2345678-braille</string>\n      <string>dots234568-braille</string>\n      <string>dots23457-braille</string>\n      <string>dots234578-braille</string>\n      <string>dots23458-braille</string>\n      <string>dots2346-braille</string>\n      <string>dots23467-braille</string>\n      <string>dots234678-braille</string>\n      <string>dots23468-braille</string>\n      <string>dots2347-braille</string>\n      <string>dots23478-braille</string>\n      <string>dots2348-braille</string>\n      <string>dots235-braille</string>\n      <string>dots2356-braille</string>\n      <string>dots23567-braille</string>\n      <string>dots235678-braille</string>\n      <string>dots23568-braille</string>\n      <string>dots2357-braille</string>\n      <string>dots23578-braille</string>\n      <string>dots2358-braille</string>\n      <string>dots236-braille</string>\n      <string>dots2367-braille</string>\n      <string>dots23678-braille</string>\n      <string>dots2368-braille</string>\n      <string>dots237-braille</string>\n      <string>dots2378-braille</string>\n      <string>dots238-braille</string>\n      <string>dots24-braille</string>\n      <string>dots245-braille</string>\n      <string>dots2456-braille</string>\n      <string>dots24567-braille</string>\n      <string>dots245678-braille</string>\n      <string>dots24568-braille</string>\n      <string>dots2457-braille</string>\n      <string>dots24578-braille</string>\n      <string>dots2458-braille</string>\n      <string>dots246-braille</string>\n      <string>dots2467-braille</string>\n      <string>dots24678-braille</string>\n      <string>dots2468-braille</string>\n      <string>dots247-braille</string>\n      <string>dots2478-braille</string>\n      <string>dots248-braille</string>\n      <string>dots25-braille</string>\n      <string>dots256-braille</string>\n      <string>dots2567-braille</string>\n      <string>dots25678-braille</string>\n      <string>dots2568-braille</string>\n      <string>dots257-braille</string>\n      <string>dots2578-braille</string>\n      <string>dots258-braille</string>\n      <string>dots26-braille</string>\n      <string>dots267-braille</string>\n      <string>dots2678-braille</string>\n      <string>dots268-braille</string>\n      <string>dots27-braille</string>\n      <string>dots278-braille</string>\n      <string>dots28-braille</string>\n      <string>dots3-braille</string>\n      <string>dots34-braille</string>\n      <string>dots345-braille</string>\n      <string>dots3456-braille</string>\n      <string>dots34567-braille</string>\n      <string>dots345678-braille</string>\n      <string>dots34568-braille</string>\n      <string>dots3457-braille</string>\n      <string>dots34578-braille</string>\n      <string>dots3458-braille</string>\n      <string>dots346-braille</string>\n      <string>dots3467-braille</string>\n      <string>dots34678-braille</string>\n      <string>dots3468-braille</string>\n      <string>dots347-braille</string>\n      <string>dots3478-braille</string>\n      <string>dots348-braille</string>\n      <string>dots35-braille</string>\n      <string>dots356-braille</string>\n      <string>dots3567-braille</string>\n      <string>dots35678-braille</string>\n      <string>dots3568-braille</string>\n      <string>dots357-braille</string>\n      <string>dots3578-braille</string>\n      <string>dots358-braille</string>\n      <string>dots36-braille</string>\n      <string>dots367-braille</string>\n      <string>dots3678-braille</string>\n      <string>dots368-braille</string>\n      <string>dots37-braille</string>\n      <string>dots378-braille</string>\n      <string>dots38-braille</string>\n      <string>dots4-braille</string>\n      <string>dots45-braille</string>\n      <string>dots456-braille</string>\n      <string>dots4567-braille</string>\n      <string>dots45678-braille</string>\n      <string>dots4568-braille</string>\n      <string>dots457-braille</string>\n      <string>dots4578-braille</string>\n      <string>dots458-braille</string>\n      <string>dots46-braille</string>\n      <string>dots467-braille</string>\n      <string>dots4678-braille</string>\n      <string>dots468-braille</string>\n      <string>dots47-braille</string>\n      <string>dots478-braille</string>\n      <string>dots48-braille</string>\n      <string>dots5-braille</string>\n      <string>dots56-braille</string>\n      <string>dots567-braille</string>\n      <string>dots5678-braille</string>\n      <string>dots568-braille</string>\n      <string>dots57-braille</string>\n      <string>dots578-braille</string>\n      <string>dots58-braille</string>\n      <string>dots6-braille</string>\n      <string>dots67-braille</string>\n      <string>dots678-braille</string>\n      <string>dots68-braille</string>\n      <string>dots7-braille</string>\n      <string>dots78-braille</string>\n      <string>dots8-braille</string>\n      <string>sindhipostpositionmen-ar</string>\n      <string>percent-ar</string>\n      <string>cuberoot-ar</string>\n      <string>fourthroot-ar</string>\n      <string>perthousand-ar</string>\n      <string>numbermark-ar</string>\n      <string>samvat-ar</string>\n      <string>numeral-greek</string>\n      <string>lowernumeral-greek</string>\n      <string>apostrophemod</string>\n      <string>colontriangularmod</string>\n      <string>commaturnedmod</string>\n      <string>firsttonechinese</string>\n      <string>glottalstopmod</string>\n      <string>dieresiscomb</string>\n      <string>dotaccentcomb</string>\n      <string>gravecomb</string>\n      <string>acutecomb</string>\n      <string>hungarumlautcomb</string>\n      <string>circumflexcomb</string>\n      <string>caroncomb</string>\n      <string>brevecomb</string>\n      <string>ringcomb</string>\n      <string>tildecomb</string>\n      <string>macroncomb</string>\n      <string>hookabovecomb</string>\n      <string>commaturnedabovecomb</string>\n      <string>commaabovecomb</string>\n      <string>commaaboverightcomb</string>\n      <string>horncomb</string>\n      <string>dotbelowcomb</string>\n      <string>ringbelowcomb</string>\n      <string>commaaccentcomb</string>\n      <string>cedillacomb</string>\n      <string>ogonekcomb</string>\n      <string>macronbelowcomb</string>\n      <string>lowlinecomb</string>\n      <string>gravetonecomb</string>\n      <string>acutetonecomb</string>\n      <string>dieresis</string>\n      <string>dotaccent</string>\n      <string>grave</string>\n      <string>acute</string>\n      <string>hungarumlaut</string>\n      <string>circumflex</string>\n      <string>caron</string>\n      <string>breve</string>\n      <string>ring</string>\n      <string>tilde</string>\n      <string>macron</string>\n      <string>cedilla</string>\n      <string>ogonek</string>\n      <string>dieresiscomb.case</string>\n      <string>dotaccentcomb.case</string>\n      <string>gravecomb.case</string>\n      <string>acutecomb.case</string>\n      <string>hungarumlautcomb.case</string>\n      <string>circumflexcomb.case</string>\n      <string>caroncomb.case</string>\n      <string>brevecomb.case</string>\n      <string>ringcomb.case</string>\n      <string>tildecomb.case</string>\n      <string>macroncomb.case</string>\n      <string>hookabovecomb.case</string>\n      <string>horncomb.case</string>\n      <string>acutecomb.loclPLK</string>\n      <string>acutecomb.case.loclPLK</string>\n      <string>shindot-hb</string>\n      <string>patah-hb</string>\n      <string>qamats-hb</string>\n      <string>holam-hb</string>\n      <string>holamhaser-hb</string>\n      <string>dagesh-hb</string>\n      <string>sindot-hb</string>\n      <string>qamatsqatan-hb</string>\n      <string>tahcenter-ar</string>\n      <string>tahbelow-ar</string>\n      <string>dotabove-ar</string>\n      <string>dotbelow-ar</string>\n      <string>dotcenter-ar</string>\n      <string>twodotsverticalabove-ar</string>\n      <string>twodotsverticalbelow-ar</string>\n      <string>twodotsverticalcenter-ar</string>\n      <string>twodotshorizontalabove-ar</string>\n      <string>twodotshorizontalabove-ar.v2</string>\n      <string>twodotshorizontalbelow-ar</string>\n      <string>twodotshorizontalcenter-ar</string>\n      <string>threedotsdownabove-ar</string>\n      <string>threedotsdownbelow-ar</string>\n      <string>threedotsdowncenter-ar</string>\n      <string>threedotsupabove-ar</string>\n      <string>threedotsupabove-ar.v2</string>\n      <string>threedotsupbelow-ar</string>\n      <string>threedotsupcenter-ar</string>\n      <string>fourdotsabove-ar</string>\n      <string>fourdotsbelow-ar</string>\n      <string>fourdotscenter-ar</string>\n      <string>wasla-ar</string>\n      <string>wavyhamzaabove-ar</string>\n      <string>gafsarkashabove-ar</string>\n      <string>wavyhamzabelow-ar</string>\n      <string>alefabove-ar</string>\n      <string>alefbelow-ar</string>\n      <string>hamzaabove-ar</string>\n      <string>hamzabelow-ar</string>\n      <string>fathatan-ar</string>\n      <string>dammatan-ar</string>\n      <string>kasratan-ar</string>\n      <string>fatha-ar</string>\n      <string>damma-ar</string>\n      <string>kasra-ar</string>\n      <string>shadda-ar</string>\n      <string>sukun-ar</string>\n      <string>madda-ar</string>\n      <string>noonghunnaabove-ar</string>\n      <string>vabove-ar</string>\n      <string>vinvertedabove-ar</string>\n      <string>meemStopabove-ar</string>\n      <string>noonabove-ar</string>\n      <string>perispomenicomb</string>\n      <string>tonos</string>\n      <string>tonos.case</string>\n      <string>dieresistonos</string>\n      <string>brevecomb-cy</string>\n      <string>brevecomb-cy.case</string>\n      <string>uniFBC0</string>\n      <string>LIG</string>\n      <string>_twodotsverticalabove-ar</string>\n      <string>_fourdotscenter-ar</string>\n      <string>seenThreedotsbelowthreedots-ar.init</string>\n      <string>_four-persian.small01</string>\n      <string>_alefWavyhamzabelow-ar.fina.rlig</string>\n      <string>_alefWavyhamzaabove-ar.fina.rlig</string>\n      <string>_highhamzaAlef-ar.fina.rlig</string>\n      <string>_alefThreeabove-ar.fina.rlig</string>\n      <string>_alefTwoabove-ar.fina.rlig</string>\n      <string>_alefWasla-ar.fina.rlig</string>\n      <string>_alefMadda-ar.fina.rlig</string>\n      <string>_alefHamzabelow-ar.fina.rlig</string>\n      <string>_alefHamzaabove-ar.fina.rlig</string>\n      <string>_alef-ar.fina.short.rlig</string>\n      <string>_alef-ar.fina.rlig</string>\n      <string>seenThreedotsbelowthreedots-ar.alt</string>\n      <string>seenThreedotsbelowthreedots-ar.fina.alt</string>\n      <string>fehDotMovedbelow-ar.alt</string>\n      <string>dalTwodotsverticalbelowTahabove-ar.fina</string>\n      <string>seenThreedotsbelowthreedots-ar.fina</string>\n      <string>seenThreedotsbelowthreedots-ar.medi</string>\n      <string>_fatha-ar</string>\n      <string>_twodotshorizontal-ar</string>\n      <string>_hamzasmall-ar</string>\n      <string>_threedots-ar</string>\n      <string>_dot-ar</string>\n      <string>_tahabove</string>\n      <string>_hehgoalcomma</string>\n      <string>_alefabove</string>\n      <string>ringArabic</string>\n      <string>_ringArabic</string>\n      <string>_dots.horz.below</string>\n      <string>_vinvertedbelow-ar</string>\n      <string>_vabove</string>\n      <string>_vbelow-ar</string>\n      <string>twodotstahcenter-ar</string>\n      <string>_tahabovesmall</string>\n      <string>twodotstahbelow-ar</string>\n      <string>four-persiancenter-ar</string>\n      <string>_dotVInvertedabove</string>\n      <string>_stroke</string>\n      <string>_twodotstah</string>\n      <string>_invertedstroke</string>\n      <string>_doublebar</string>\n      <string>_bar</string>\n      <string>_damma-ar</string>\n      <string>four-persianbelow-ar</string>\n      <string>_yehRohingya-ar.fina</string>\n      <string>_yehRohingya-ar</string>\n      <string>_onedotstah</string>\n      <string>_dotVabove</string>\n      <string>tehabove-ar.small</string>\n      <string>_cuberoot_fourthroot-ar</string>\n      <string>_fourthroot-ar</string>\n      <string>_hamzawavy</string>\n      <string>_alefFathatan-ar.fina.rlig</string>\n      <string>zainVInvertedabove-ar.fina</string>\n      <string>fehDotMovedbelow-ar.fina</string>\n      <string>fehDotMovedbelow-ar.fina.alt</string>\n      <string>checkerBoardDeleteApple2</string>\n      <string>checkerBoardDeleteTrs80</string>\n      <string>checkerBoardDeleteAmstradCpc</string>\n      <string>checkerBoardDeleteAmstradCpc.stypo</string>\n      <string>checkerBoardFill</string>\n      <string>checkerBoardFill.stypo</string>\n      <string>checkerBoardFillInverse</string>\n      <string>checkerBoardFillInverse.stypo</string>\n      <string>blockQuadrant-UC</string>\n      <string>blockQuadrant-UC.stypo</string>\n      <string>blockQuadrant-LC</string>\n      <string>blockQuadrant-LC.stypo</string>\n      <string>blockQuadrant-ML</string>\n      <string>blockQuadrant-ML.stypo</string>\n      <string>blockQuadrant-MR</string>\n      <string>blockQuadrant-MR.stypo</string>\n      <string>blockTriangle-1</string>\n      <string>blockTriangle-1.stypo</string>\n      <string>blockTriangle-2</string>\n      <string>blockTriangle-2.stypo</string>\n      <string>blockTriangle-3</string>\n      <string>blockTriangle-3.stypo</string>\n      <string>blockTriangle-4</string>\n      <string>blockTriangle-4.stypo</string>\n      <string>blockTriangle-14</string>\n      <string>blockTriangle-14.stypo</string>\n      <string>blockTriangle-23</string>\n      <string>blockTriangle-23.stypo</string>\n      <string>blockTriangle-123</string>\n      <string>blockTriangle-123.stypo</string>\n      <string>blockTriangle-124</string>\n      <string>blockTriangle-124.stypo</string>\n      <string>blockTriangle-134</string>\n      <string>blockTriangle-134.stypo</string>\n      <string>blockTriangle-234</string>\n      <string>blockTriangle-234.stypo</string>\n      <string>blockCircle-1</string>\n      <string>blockCircle-1.stypo</string>\n      <string>blockCircle-2</string>\n      <string>blockCircle-2.stypo</string>\n      <string>blockCircle-3</string>\n      <string>blockCircle-3.stypo</string>\n      <string>blockCircle-4</string>\n      <string>blockCircle-4.stypo</string>\n      <string>blockCircle-UC</string>\n      <string>blockCircle-UC.stypo</string>\n      <string>blockCircle-LC</string>\n      <string>blockCircle-LC.stypo</string>\n      <string>blockCircle-ML</string>\n      <string>blockCircle-ML.stypo</string>\n      <string>blockCircle-MR</string>\n      <string>blockCircle-MR.stypo</string>\n      <string>blockSextant-1</string>\n      <string>blockSextant-1.stypo</string>\n      <string>blockSextant-2</string>\n      <string>blockSextant-2.stypo</string>\n      <string>blockSextant-12</string>\n      <string>blockSextant-12.stypo</string>\n      <string>blockSextant-3</string>\n      <string>blockSextant-3.stypo</string>\n      <string>blockSextant-13</string>\n      <string>blockSextant-13.stypo</string>\n      <string>blockSextant-23</string>\n      <string>blockSextant-23.stypo</string>\n      <string>blockSextant-123</string>\n      <string>blockSextant-123.stypo</string>\n      <string>blockSextant-4</string>\n      <string>blockSextant-4.stypo</string>\n      <string>blockSextant-14</string>\n      <string>blockSextant-14.stypo</string>\n      <string>blockSextant-24</string>\n      <string>blockSextant-24.stypo</string>\n      <string>blockSextant-124</string>\n      <string>blockSextant-124.stypo</string>\n      <string>blockSextant-34</string>\n      <string>blockSextant-34.stypo</string>\n      <string>blockSextant-134</string>\n      <string>blockSextant-134.stypo</string>\n      <string>blockSextant-234</string>\n      <string>blockSextant-234.stypo</string>\n      <string>blockSextant-1234</string>\n      <string>blockSextant-1234.stypo</string>\n      <string>blockSextant-5</string>\n      <string>blockSextant-5.stypo</string>\n      <string>blockSextant-15</string>\n      <string>blockSextant-15.stypo</string>\n      <string>blockSextant-25</string>\n      <string>blockSextant-25.stypo</string>\n      <string>blockSextant-125</string>\n      <string>blockSextant-125.stypo</string>\n      <string>blockSextant-35</string>\n      <string>blockSextant-35.stypo</string>\n      <string>blockSextant-235</string>\n      <string>blockSextant-235.stypo</string>\n      <string>blockSextant-1235</string>\n      <string>blockSextant-1235.stypo</string>\n      <string>blockSextant-45</string>\n      <string>blockSextant-45.stypo</string>\n      <string>blockSextant-145</string>\n      <string>blockSextant-145.stypo</string>\n      <string>blockSextant-245</string>\n      <string>blockSextant-245.stypo</string>\n      <string>blockSextant-1245</string>\n      <string>blockSextant-1245.stypo</string>\n      <string>blockSextant-345</string>\n      <string>blockSextant-345.stypo</string>\n      <string>blockSextant-1345</string>\n      <string>blockSextant-1345.stypo</string>\n      <string>blockSextant-2345</string>\n      <string>blockSextant-2345.stypo</string>\n      <string>blockSextant-12345</string>\n      <string>blockSextant-12345.stypo</string>\n      <string>blockSextant-6</string>\n      <string>blockSextant-6.stypo</string>\n      <string>blockSextant-16</string>\n      <string>blockSextant-16.stypo</string>\n      <string>blockSextant-26</string>\n      <string>blockSextant-26.stypo</string>\n      <string>blockSextant-126</string>\n      <string>blockSextant-126.stypo</string>\n      <string>blockSextant-36</string>\n      <string>blockSextant-36.stypo</string>\n      <string>blockSextant-136</string>\n      <string>blockSextant-136.stypo</string>\n      <string>blockSextant-236</string>\n      <string>blockSextant-236.stypo</string>\n      <string>blockSextant-1236</string>\n      <string>blockSextant-1236.stypo</string>\n      <string>blockSextant-46</string>\n      <string>blockSextant-46.stypo</string>\n      <string>blockSextant-146</string>\n      <string>blockSextant-146.stypo</string>\n      <string>blockSextant-1246</string>\n      <string>blockSextant-1246.stypo</string>\n      <string>blockSextant-346</string>\n      <string>blockSextant-346.stypo</string>\n      <string>blockSextant-1346</string>\n      <string>blockSextant-1346.stypo</string>\n      <string>blockSextant-2346</string>\n      <string>blockSextant-2346.stypo</string>\n      <string>blockSextant-12346</string>\n      <string>blockSextant-12346.stypo</string>\n      <string>blockSextant-56</string>\n      <string>blockSextant-56.stypo</string>\n      <string>blockSextant-156</string>\n      <string>blockSextant-156.stypo</string>\n      <string>blockSextant-256</string>\n      <string>blockSextant-256.stypo</string>\n      <string>blockSextant-1256</string>\n      <string>blockSextant-1256.stypo</string>\n      <string>blockSextant-356</string>\n      <string>blockSextant-356.stypo</string>\n      <string>blockSextant-1356</string>\n      <string>blockSextant-1356.stypo</string>\n      <string>blockSextant-2356</string>\n      <string>blockSextant-2356.stypo</string>\n      <string>blockSextant-12356</string>\n      <string>blockSextant-12356.stypo</string>\n      <string>blockSextant-456</string>\n      <string>blockSextant-456.stypo</string>\n      <string>blockSextant-1456</string>\n      <string>blockSextant-1456.stypo</string>\n      <string>blockSextant-2456</string>\n      <string>blockSextant-2456.stypo</string>\n      <string>blockSextant-12456</string>\n      <string>blockSextant-12456.stypo</string>\n      <string>blockSextant-3456</string>\n      <string>blockSextant-3456.stypo</string>\n      <string>blockSextant-13456</string>\n      <string>blockSextant-13456.stypo</string>\n      <string>blockSextant-23456</string>\n      <string>blockSextant-23456.stypo</string>\n      <string>blockDiagonal-1FB3C</string>\n      <string>blockDiagonal-1FB3C.stypo</string>\n      <string>blockDiagonal-1FB3D</string>\n      <string>blockDiagonal-1FB3D.stypo</string>\n      <string>blockDiagonal-1FB3E</string>\n      <string>blockDiagonal-1FB3E.stypo</string>\n      <string>blockDiagonal-1FB3F</string>\n      <string>blockDiagonal-1FB3F.stypo</string>\n      <string>blockDiagonal-1FB40</string>\n      <string>blockDiagonal-1FB40.stypo</string>\n      <string>blockDiagonal-1FB41</string>\n      <string>blockDiagonal-1FB41.stypo</string>\n      <string>blockDiagonal-1FB42</string>\n      <string>blockDiagonal-1FB42.stypo</string>\n      <string>blockDiagonal-1FB43</string>\n      <string>blockDiagonal-1FB43.stypo</string>\n      <string>blockDiagonal-1FB44</string>\n      <string>blockDiagonal-1FB44.stypo</string>\n      <string>blockDiagonal-1FB45</string>\n      <string>blockDiagonal-1FB45.stypo</string>\n      <string>blockDiagonal-1FB46</string>\n      <string>blockDiagonal-1FB46.stypo</string>\n      <string>blockDiagonal-1FB47</string>\n      <string>blockDiagonal-1FB47.stypo</string>\n      <string>blockDiagonal-1FB48</string>\n      <string>blockDiagonal-1FB48.stypo</string>\n      <string>blockDiagonal-1FB49</string>\n      <string>blockDiagonal-1FB49.stypo</string>\n      <string>blockDiagonal-1FB4A</string>\n      <string>blockDiagonal-1FB4A.stypo</string>\n      <string>blockDiagonal-1FB4B</string>\n      <string>blockDiagonal-1FB4B.stypo</string>\n      <string>blockDiagonal-1FB4C</string>\n      <string>blockDiagonal-1FB4C.stypo</string>\n      <string>blockDiagonal-1FB4D</string>\n      <string>blockDiagonal-1FB4D.stypo</string>\n      <string>blockDiagonal-1FB4E</string>\n      <string>blockDiagonal-1FB4E.stypo</string>\n      <string>blockDiagonal-1FB4F</string>\n      <string>blockDiagonal-1FB4F.stypo</string>\n      <string>blockDiagonal-1FB50</string>\n      <string>blockDiagonal-1FB50.stypo</string>\n      <string>blockDiagonal-1FB51</string>\n      <string>blockDiagonal-1FB51.stypo</string>\n      <string>blockDiagonal-1FB52</string>\n      <string>blockDiagonal-1FB52.stypo</string>\n      <string>blockDiagonal-1FB53</string>\n      <string>blockDiagonal-1FB53.stypo</string>\n      <string>blockDiagonal-1FB54</string>\n      <string>blockDiagonal-1FB54.stypo</string>\n      <string>blockDiagonal-1FB55</string>\n      <string>blockDiagonal-1FB55.stypo</string>\n      <string>blockDiagonal-1FB56</string>\n      <string>blockDiagonal-1FB56.stypo</string>\n      <string>blockDiagonal-1FB57</string>\n      <string>blockDiagonal-1FB57.stypo</string>\n      <string>blockDiagonal-1FB58</string>\n      <string>blockDiagonal-1FB58.stypo</string>\n      <string>blockDiagonal-1FB59</string>\n      <string>blockDiagonal-1FB59.stypo</string>\n      <string>blockDiagonal-1FB5A</string>\n      <string>blockDiagonal-1FB5A.stypo</string>\n      <string>blockDiagonal-1FB5B</string>\n      <string>blockDiagonal-1FB5B.stypo</string>\n      <string>blockDiagonal-1FB5C</string>\n      <string>blockDiagonal-1FB5C.stypo</string>\n      <string>blockDiagonal-1FB5D</string>\n      <string>blockDiagonal-1FB5D.stypo</string>\n      <string>blockDiagonal-1FB5E</string>\n      <string>blockDiagonal-1FB5E.stypo</string>\n      <string>blockDiagonal-1FB5F</string>\n      <string>blockDiagonal-1FB5F.stypo</string>\n      <string>blockDiagonal-1FB60</string>\n      <string>blockDiagonal-1FB60.stypo</string>\n      <string>blockDiagonal-1FB61</string>\n      <string>blockDiagonal-1FB61.stypo</string>\n      <string>blockDiagonal-1FB62</string>\n      <string>blockDiagonal-1FB62.stypo</string>\n      <string>blockDiagonal-1FB63</string>\n      <string>blockDiagonal-1FB63.stypo</string>\n      <string>blockDiagonal-1FB64</string>\n      <string>blockDiagonal-1FB64.stypo</string>\n      <string>blockDiagonal-1FB65</string>\n      <string>blockDiagonal-1FB65.stypo</string>\n      <string>blockDiagonal-1FB66</string>\n      <string>blockDiagonal-1FB66.stypo</string>\n      <string>blockDiagonal-1FB67</string>\n      <string>blockDiagonal-1FB67.stypo</string>\n      <string>blockOctant-1</string>\n      <string>blockOctant-1.stypo</string>\n      <string>blockOctant-2</string>\n      <string>blockOctant-2.stypo</string>\n      <string>blockOctant-12</string>\n      <string>blockOctant-12.stypo</string>\n      <string>blockOctant-3</string>\n      <string>blockOctant-3.stypo</string>\n      <string>blockOctant-23</string>\n      <string>blockOctant-23.stypo</string>\n      <string>blockOctant-123</string>\n      <string>blockOctant-123.stypo</string>\n      <string>blockOctant-4</string>\n      <string>blockOctant-4.stypo</string>\n      <string>blockOctant-14</string>\n      <string>blockOctant-14.stypo</string>\n      <string>blockOctant-124</string>\n      <string>blockOctant-124.stypo</string>\n      <string>blockOctant-34</string>\n      <string>blockOctant-34.stypo</string>\n      <string>blockOctant-134</string>\n      <string>blockOctant-134.stypo</string>\n      <string>blockOctant-234</string>\n      <string>blockOctant-234.stypo</string>\n      <string>blockOctant-5</string>\n      <string>blockOctant-5.stypo</string>\n      <string>blockOctant-15</string>\n      <string>blockOctant-15.stypo</string>\n      <string>blockOctant-25</string>\n      <string>blockOctant-25.stypo</string>\n      <string>blockOctant-125</string>\n      <string>blockOctant-125.stypo</string>\n      <string>blockOctant-135</string>\n      <string>blockOctant-135.stypo</string>\n      <string>blockOctant-235</string>\n      <string>blockOctant-235.stypo</string>\n      <string>blockOctant-1235</string>\n      <string>blockOctant-1235.stypo</string>\n      <string>blockOctant-45</string>\n      <string>blockOctant-45.stypo</string>\n      <string>blockOctant-145</string>\n      <string>blockOctant-145.stypo</string>\n      <string>blockOctant-245</string>\n      <string>blockOctant-245.stypo</string>\n      <string>blockOctant-1245</string>\n      <string>blockOctant-1245.stypo</string>\n      <string>blockOctant-345</string>\n      <string>blockOctant-345.stypo</string>\n      <string>blockOctant-1345</string>\n      <string>blockOctant-1345.stypo</string>\n      <string>blockOctant-2345</string>\n      <string>blockOctant-2345.stypo</string>\n      <string>blockOctant-12345</string>\n      <string>blockOctant-12345.stypo</string>\n      <string>blockOctant-6</string>\n      <string>blockOctant-6.stypo</string>\n      <string>blockOctant-16</string>\n      <string>blockOctant-16.stypo</string>\n      <string>blockOctant-26</string>\n      <string>blockOctant-26.stypo</string>\n      <string>blockOctant-126</string>\n      <string>blockOctant-126.stypo</string>\n      <string>blockOctant-36</string>\n      <string>blockOctant-36.stypo</string>\n      <string>blockOctant-136</string>\n      <string>blockOctant-136.stypo</string>\n      <string>blockOctant-236</string>\n      <string>blockOctant-236.stypo</string>\n      <string>blockOctant-1236</string>\n      <string>blockOctant-1236.stypo</string>\n      <string>blockOctant-146</string>\n      <string>blockOctant-146.stypo</string>\n      <string>blockOctant-246</string>\n      <string>blockOctant-246.stypo</string>\n      <string>blockOctant-1246</string>\n      <string>blockOctant-1246.stypo</string>\n      <string>blockOctant-346</string>\n      <string>blockOctant-346.stypo</string>\n      <string>blockOctant-1346</string>\n      <string>blockOctant-1346.stypo</string>\n      <string>blockOctant-2346</string>\n      <string>blockOctant-2346.stypo</string>\n      <string>blockOctant-12346</string>\n      <string>blockOctant-12346.stypo</string>\n      <string>blockOctant-56</string>\n      <string>blockOctant-56.stypo</string>\n      <string>blockOctant-156</string>\n      <string>blockOctant-156.stypo</string>\n      <string>blockOctant-256</string>\n      <string>blockOctant-256.stypo</string>\n      <string>blockOctant-1256</string>\n      <string>blockOctant-1256.stypo</string>\n      <string>blockOctant-356</string>\n      <string>blockOctant-356.stypo</string>\n      <string>blockOctant-1356</string>\n      <string>blockOctant-1356.stypo</string>\n      <string>blockOctant-2356</string>\n      <string>blockOctant-2356.stypo</string>\n      <string>blockOctant-12356</string>\n      <string>blockOctant-12356.stypo</string>\n      <string>blockOctant-456</string>\n      <string>blockOctant-456.stypo</string>\n      <string>blockOctant-1456</string>\n      <string>blockOctant-1456.stypo</string>\n      <string>blockOctant-2456</string>\n      <string>blockOctant-2456.stypo</string>\n      <string>blockOctant-12456</string>\n      <string>blockOctant-12456.stypo</string>\n      <string>blockOctant-3456</string>\n      <string>blockOctant-3456.stypo</string>\n      <string>blockOctant-13456</string>\n      <string>blockOctant-13456.stypo</string>\n      <string>blockOctant-23456</string>\n      <string>blockOctant-23456.stypo</string>\n      <string>blockOctant-123456</string>\n      <string>blockOctant-123456.stypo</string>\n      <string>blockOctant-7</string>\n      <string>blockOctant-7.stypo</string>\n      <string>blockOctant-17</string>\n      <string>blockOctant-17.stypo</string>\n      <string>blockOctant-27</string>\n      <string>blockOctant-27.stypo</string>\n      <string>blockOctant-127</string>\n      <string>blockOctant-127.stypo</string>\n      <string>blockOctant-37</string>\n      <string>blockOctant-37.stypo</string>\n      <string>blockOctant-137</string>\n      <string>blockOctant-137.stypo</string>\n      <string>blockOctant-237</string>\n      <string>blockOctant-237.stypo</string>\n      <string>blockOctant-1237</string>\n      <string>blockOctant-1237.stypo</string>\n      <string>blockOctant-47</string>\n      <string>blockOctant-47.stypo</string>\n      <string>blockOctant-147</string>\n      <string>blockOctant-147.stypo</string>\n      <string>blockOctant-247</string>\n      <string>blockOctant-247.stypo</string>\n      <string>blockOctant-1247</string>\n      <string>blockOctant-1247.stypo</string>\n      <string>blockOctant-347</string>\n      <string>blockOctant-347.stypo</string>\n      <string>blockOctant-1347</string>\n      <string>blockOctant-1347.stypo</string>\n      <string>blockOctant-2347</string>\n      <string>blockOctant-2347.stypo</string>\n      <string>blockOctant-12347</string>\n      <string>blockOctant-12347.stypo</string>\n      <string>blockOctant-157</string>\n      <string>blockOctant-157.stypo</string>\n      <string>blockOctant-257</string>\n      <string>blockOctant-257.stypo</string>\n      <string>blockOctant-1257</string>\n      <string>blockOctant-1257.stypo</string>\n      <string>blockOctant-357</string>\n      <string>blockOctant-357.stypo</string>\n      <string>blockOctant-2357</string>\n      <string>blockOctant-2357.stypo</string>\n      <string>blockOctant-12357</string>\n      <string>blockOctant-12357.stypo</string>\n      <string>blockOctant-457</string>\n      <string>blockOctant-457.stypo</string>\n      <string>blockOctant-1457</string>\n      <string>blockOctant-1457.stypo</string>\n      <string>blockOctant-12457</string>\n      <string>blockOctant-12457.stypo</string>\n      <string>blockOctant-3457</string>\n      <string>blockOctant-3457.stypo</string>\n      <string>blockOctant-13457</string>\n      <string>blockOctant-13457.stypo</string>\n      <string>blockOctant-23457</string>\n      <string>blockOctant-23457.stypo</string>\n      <string>blockOctant-67</string>\n      <string>blockOctant-67.stypo</string>\n      <string>blockOctant-167</string>\n      <string>blockOctant-167.stypo</string>\n      <string>blockOctant-267</string>\n      <string>blockOctant-267.stypo</string>\n      <string>blockOctant-1267</string>\n      <string>blockOctant-1267.stypo</string>\n      <string>blockOctant-367</string>\n      <string>blockOctant-367.stypo</string>\n      <string>blockOctant-1367</string>\n      <string>blockOctant-1367.stypo</string>\n      <string>blockOctant-2367</string>\n      <string>blockOctant-2367.stypo</string>\n      <string>blockOctant-12367</string>\n      <string>blockOctant-12367.stypo</string>\n      <string>blockOctant-467</string>\n      <string>blockOctant-467.stypo</string>\n      <string>blockOctant-1467</string>\n      <string>blockOctant-1467.stypo</string>\n      <string>blockOctant-2467</string>\n      <string>blockOctant-2467.stypo</string>\n      <string>blockOctant-12467</string>\n      <string>blockOctant-12467.stypo</string>\n      <string>blockOctant-3467</string>\n      <string>blockOctant-3467.stypo</string>\n      <string>blockOctant-13467</string>\n      <string>blockOctant-13467.stypo</string>\n      <string>blockOctant-23467</string>\n      <string>blockOctant-23467.stypo</string>\n      <string>blockOctant-123467</string>\n      <string>blockOctant-123467.stypo</string>\n      <string>blockOctant-567</string>\n      <string>blockOctant-567.stypo</string>\n      <string>blockOctant-1567</string>\n      <string>blockOctant-1567.stypo</string>\n      <string>blockOctant-2567</string>\n      <string>blockOctant-2567.stypo</string>\n      <string>blockOctant-12567</string>\n      <string>blockOctant-12567.stypo</string>\n      <string>blockOctant-3567</string>\n      <string>blockOctant-3567.stypo</string>\n      <string>blockOctant-13567</string>\n      <string>blockOctant-13567.stypo</string>\n      <string>blockOctant-23567</string>\n      <string>blockOctant-23567.stypo</string>\n      <string>blockOctant-123567</string>\n      <string>blockOctant-123567.stypo</string>\n      <string>blockOctant-4567</string>\n      <string>blockOctant-4567.stypo</string>\n      <string>blockOctant-14567</string>\n      <string>blockOctant-14567.stypo</string>\n      <string>blockOctant-24567</string>\n      <string>blockOctant-24567.stypo</string>\n      <string>blockOctant-124567</string>\n      <string>blockOctant-124567.stypo</string>\n      <string>blockOctant-34567</string>\n      <string>blockOctant-34567.stypo</string>\n      <string>blockOctant-134567</string>\n      <string>blockOctant-134567.stypo</string>\n      <string>blockOctant-234567</string>\n      <string>blockOctant-234567.stypo</string>\n      <string>blockOctant-1234567</string>\n      <string>blockOctant-1234567.stypo</string>\n      <string>blockOctant-8</string>\n      <string>blockOctant-8.stypo</string>\n      <string>blockOctant-18</string>\n      <string>blockOctant-18.stypo</string>\n      <string>blockOctant-28</string>\n      <string>blockOctant-28.stypo</string>\n      <string>blockOctant-128</string>\n      <string>blockOctant-128.stypo</string>\n      <string>blockOctant-38</string>\n      <string>blockOctant-38.stypo</string>\n      <string>blockOctant-138</string>\n      <string>blockOctant-138.stypo</string>\n      <string>blockOctant-238</string>\n      <string>blockOctant-238.stypo</string>\n      <string>blockOctant-1238</string>\n      <string>blockOctant-1238.stypo</string>\n      <string>blockOctant-48</string>\n      <string>blockOctant-48.stypo</string>\n      <string>blockOctant-148</string>\n      <string>blockOctant-148.stypo</string>\n      <string>blockOctant-248</string>\n      <string>blockOctant-248.stypo</string>\n      <string>blockOctant-1248</string>\n      <string>blockOctant-1248.stypo</string>\n      <string>blockOctant-348</string>\n      <string>blockOctant-348.stypo</string>\n      <string>blockOctant-1348</string>\n      <string>blockOctant-1348.stypo</string>\n      <string>blockOctant-2348</string>\n      <string>blockOctant-2348.stypo</string>\n      <string>blockOctant-12348</string>\n      <string>blockOctant-12348.stypo</string>\n      <string>blockOctant-58</string>\n      <string>blockOctant-58.stypo</string>\n      <string>blockOctant-158</string>\n      <string>blockOctant-158.stypo</string>\n      <string>blockOctant-258</string>\n      <string>blockOctant-258.stypo</string>\n      <string>blockOctant-1258</string>\n      <string>blockOctant-1258.stypo</string>\n      <string>blockOctant-358</string>\n      <string>blockOctant-358.stypo</string>\n      <string>blockOctant-1358</string>\n      <string>blockOctant-1358.stypo</string>\n      <string>blockOctant-2358</string>\n      <string>blockOctant-2358.stypo</string>\n      <string>blockOctant-12358</string>\n      <string>blockOctant-12358.stypo</string>\n      <string>blockOctant-458</string>\n      <string>blockOctant-458.stypo</string>\n      <string>blockOctant-1458</string>\n      <string>blockOctant-1458.stypo</string>\n      <string>blockOctant-2458</string>\n      <string>blockOctant-2458.stypo</string>\n      <string>blockOctant-12458</string>\n      <string>blockOctant-12458.stypo</string>\n      <string>blockOctant-3458</string>\n      <string>blockOctant-3458.stypo</string>\n      <string>blockOctant-13458</string>\n      <string>blockOctant-13458.stypo</string>\n      <string>blockOctant-23458</string>\n      <string>blockOctant-23458.stypo</string>\n      <string>blockOctant-123458</string>\n      <string>blockOctant-123458.stypo</string>\n      <string>blockOctant-168</string>\n      <string>blockOctant-168.stypo</string>\n      <string>blockOctant-268</string>\n      <string>blockOctant-268.stypo</string>\n      <string>blockOctant-1268</string>\n      <string>blockOctant-1268.stypo</string>\n      <string>blockOctant-368</string>\n      <string>blockOctant-368.stypo</string>\n      <string>blockOctant-2368</string>\n      <string>blockOctant-2368.stypo</string>\n      <string>blockOctant-12368</string>\n      <string>blockOctant-12368.stypo</string>\n      <string>blockOctant-468</string>\n      <string>blockOctant-468.stypo</string>\n      <string>blockOctant-1468</string>\n      <string>blockOctant-1468.stypo</string>\n      <string>blockOctant-12468</string>\n      <string>blockOctant-12468.stypo</string>\n      <string>blockOctant-3468</string>\n      <string>blockOctant-3468.stypo</string>\n      <string>blockOctant-13468</string>\n      <string>blockOctant-13468.stypo</string>\n      <string>blockOctant-23468</string>\n      <string>blockOctant-23468.stypo</string>\n      <string>blockOctant-568</string>\n      <string>blockOctant-568.stypo</string>\n      <string>blockOctant-1568</string>\n      <string>blockOctant-1568.stypo</string>\n      <string>blockOctant-2568</string>\n      <string>blockOctant-2568.stypo</string>\n      <string>blockOctant-12568</string>\n      <string>blockOctant-12568.stypo</string>\n      <string>blockOctant-3568</string>\n      <string>blockOctant-3568.stypo</string>\n      <string>blockOctant-13568</string>\n      <string>blockOctant-13568.stypo</string>\n      <string>blockOctant-23568</string>\n      <string>blockOctant-23568.stypo</string>\n      <string>blockOctant-123568</string>\n      <string>blockOctant-123568.stypo</string>\n      <string>blockOctant-4568</string>\n      <string>blockOctant-4568.stypo</string>\n      <string>blockOctant-14568</string>\n      <string>blockOctant-14568.stypo</string>\n      <string>blockOctant-24568</string>\n      <string>blockOctant-24568.stypo</string>\n      <string>blockOctant-124568</string>\n      <string>blockOctant-124568.stypo</string>\n      <string>blockOctant-34568</string>\n      <string>blockOctant-34568.stypo</string>\n      <string>blockOctant-134568</string>\n      <string>blockOctant-134568.stypo</string>\n      <string>blockOctant-234568</string>\n      <string>blockOctant-234568.stypo</string>\n      <string>blockOctant-1234568</string>\n      <string>blockOctant-1234568.stypo</string>\n      <string>blockOctant-178</string>\n      <string>blockOctant-178.stypo</string>\n      <string>blockOctant-278</string>\n      <string>blockOctant-278.stypo</string>\n      <string>blockOctant-1278</string>\n      <string>blockOctant-1278.stypo</string>\n      <string>blockOctant-378</string>\n      <string>blockOctant-378.stypo</string>\n      <string>blockOctant-1378</string>\n      <string>blockOctant-1378.stypo</string>\n      <string>blockOctant-2378</string>\n      <string>blockOctant-2378.stypo</string>\n      <string>blockOctant-12378</string>\n      <string>blockOctant-12378.stypo</string>\n      <string>blockOctant-478</string>\n      <string>blockOctant-478.stypo</string>\n      <string>blockOctant-1478</string>\n      <string>blockOctant-1478.stypo</string>\n      <string>blockOctant-2478</string>\n      <string>blockOctant-2478.stypo</string>\n      <string>blockOctant-12478</string>\n      <string>blockOctant-12478.stypo</string>\n      <string>blockOctant-3478</string>\n      <string>blockOctant-3478.stypo</string>\n      <string>blockOctant-13478</string>\n      <string>blockOctant-13478.stypo</string>\n      <string>blockOctant-23478</string>\n      <string>blockOctant-23478.stypo</string>\n      <string>blockOctant-123478</string>\n      <string>blockOctant-123478.stypo</string>\n      <string>blockOctant-578</string>\n      <string>blockOctant-578.stypo</string>\n      <string>blockOctant-1578</string>\n      <string>blockOctant-1578.stypo</string>\n      <string>blockOctant-2578</string>\n      <string>blockOctant-2578.stypo</string>\n      <string>blockOctant-12578</string>\n      <string>blockOctant-12578.stypo</string>\n      <string>blockOctant-3578</string>\n      <string>blockOctant-3578.stypo</string>\n      <string>blockOctant-13578</string>\n      <string>blockOctant-13578.stypo</string>\n      <string>blockOctant-23578</string>\n      <string>blockOctant-23578.stypo</string>\n      <string>blockOctant-123578</string>\n      <string>blockOctant-123578.stypo</string>\n      <string>blockOctant-4578</string>\n      <string>blockOctant-4578.stypo</string>\n      <string>blockOctant-14578</string>\n      <string>blockOctant-14578.stypo</string>\n      <string>blockOctant-24578</string>\n      <string>blockOctant-24578.stypo</string>\n      <string>blockOctant-124578</string>\n      <string>blockOctant-124578.stypo</string>\n      <string>blockOctant-34578</string>\n      <string>blockOctant-34578.stypo</string>\n      <string>blockOctant-134578</string>\n      <string>blockOctant-134578.stypo</string>\n      <string>blockOctant-234578</string>\n      <string>blockOctant-234578.stypo</string>\n      <string>blockOctant-1234578</string>\n      <string>blockOctant-1234578.stypo</string>\n      <string>blockOctant-678</string>\n      <string>blockOctant-678.stypo</string>\n      <string>blockOctant-1678</string>\n      <string>blockOctant-1678.stypo</string>\n      <string>blockOctant-2678</string>\n      <string>blockOctant-2678.stypo</string>\n      <string>blockOctant-12678</string>\n      <string>blockOctant-12678.stypo</string>\n      <string>blockOctant-3678</string>\n      <string>blockOctant-3678.stypo</string>\n      <string>blockOctant-13678</string>\n      <string>blockOctant-13678.stypo</string>\n      <string>blockOctant-23678</string>\n      <string>blockOctant-23678.stypo</string>\n      <string>blockOctant-123678</string>\n      <string>blockOctant-123678.stypo</string>\n      <string>blockOctant-4678</string>\n      <string>blockOctant-4678.stypo</string>\n      <string>blockOctant-14678</string>\n      <string>blockOctant-14678.stypo</string>\n      <string>blockOctant-24678</string>\n      <string>blockOctant-24678.stypo</string>\n      <string>blockOctant-124678</string>\n      <string>blockOctant-124678.stypo</string>\n      <string>blockOctant-34678</string>\n      <string>blockOctant-34678.stypo</string>\n      <string>blockOctant-134678</string>\n      <string>blockOctant-134678.stypo</string>\n      <string>blockOctant-234678</string>\n      <string>blockOctant-234678.stypo</string>\n      <string>blockOctant-1234678</string>\n      <string>blockOctant-1234678.stypo</string>\n      <string>blockOctant-15678</string>\n      <string>blockOctant-15678.stypo</string>\n      <string>blockOctant-25678</string>\n      <string>blockOctant-25678.stypo</string>\n      <string>blockOctant-125678</string>\n      <string>blockOctant-125678.stypo</string>\n      <string>blockOctant-35678</string>\n      <string>blockOctant-35678.stypo</string>\n      <string>blockOctant-235678</string>\n      <string>blockOctant-235678.stypo</string>\n      <string>blockOctant-1235678</string>\n      <string>blockOctant-1235678.stypo</string>\n      <string>blockOctant-45678</string>\n      <string>blockOctant-45678.stypo</string>\n      <string>blockOctant-145678</string>\n      <string>blockOctant-145678.stypo</string>\n      <string>blockOctant-1245678</string>\n      <string>blockOctant-1245678.stypo</string>\n      <string>blockOctant-1345678</string>\n      <string>blockOctant-1345678.stypo</string>\n      <string>blockOctant-2345678</string>\n      <string>blockOctant-2345678.stypo</string>\n      <string>blockSedecimant-1</string>\n      <string>blockSedecimant-1.stypo</string>\n      <string>blockSedecimant-2</string>\n      <string>blockSedecimant-2.stypo</string>\n      <string>blockSedecimant-3</string>\n      <string>blockSedecimant-3.stypo</string>\n      <string>blockSedecimant-4</string>\n      <string>blockSedecimant-4.stypo</string>\n      <string>blockSedecimant-5</string>\n      <string>blockSedecimant-5.stypo</string>\n      <string>blockSedecimant-6</string>\n      <string>blockSedecimant-6.stypo</string>\n      <string>blockSedecimant-7</string>\n      <string>blockSedecimant-7.stypo</string>\n      <string>blockSedecimant-8</string>\n      <string>blockSedecimant-8.stypo</string>\n      <string>blockSedecimant-9</string>\n      <string>blockSedecimant-9.stypo</string>\n      <string>blockSedecimant-A</string>\n      <string>blockSedecimant-A.stypo</string>\n      <string>blockSedecimant-B</string>\n      <string>blockSedecimant-B.stypo</string>\n      <string>blockSedecimant-C</string>\n      <string>blockSedecimant-C.stypo</string>\n      <string>blockSedecimant-D</string>\n      <string>blockSedecimant-D.stypo</string>\n      <string>blockSedecimant-E</string>\n      <string>blockSedecimant-E.stypo</string>\n      <string>blockSedecimant-F</string>\n      <string>blockSedecimant-F.stypo</string>\n      <string>blockSedecimant-G</string>\n      <string>blockSedecimant-G.stypo</string>\n      <string>blockSedecimant-EFG</string>\n      <string>blockSedecimant-EFG.stypo</string>\n      <string>blockSedecimant-DEF</string>\n      <string>blockSedecimant-DEF.stypo</string>\n      <string>blockSedecimant-9D</string>\n      <string>blockSedecimant-9D.stypo</string>\n      <string>blockSedecimant-59D</string>\n      <string>blockSedecimant-59D.stypo</string>\n      <string>blockSedecimant-159</string>\n      <string>blockSedecimant-159.stypo</string>\n      <string>blockSedecimant-15</string>\n      <string>blockSedecimant-15.stypo</string>\n      <string>blockSedecimant-123</string>\n      <string>blockSedecimant-123.stypo</string>\n      <string>blockSedecimant-234</string>\n      <string>blockSedecimant-234.stypo</string>\n      <string>blockSedecimant-48</string>\n      <string>blockSedecimant-48.stypo</string>\n      <string>blockSedecimant-48C</string>\n      <string>blockSedecimant-48C.stypo</string>\n      <string>blockSedecimant-8CG</string>\n      <string>blockSedecimant-8CG.stypo</string>\n      <string>blockSedecimant-CG</string>\n      <string>blockSedecimant-CG.stypo</string>\n      <string>verticalOneEighthBlock-2</string>\n      <string>verticalOneEighthBlock-2.stypo</string>\n      <string>verticalOneEighthBlock-3</string>\n      <string>verticalOneEighthBlock-3.stypo</string>\n      <string>verticalOneEighthBlock-4</string>\n      <string>verticalOneEighthBlock-4.stypo</string>\n      <string>verticalOneEighthBlock-5</string>\n      <string>verticalOneEighthBlock-5.stypo</string>\n      <string>verticalOneEighthBlock-6</string>\n      <string>verticalOneEighthBlock-6.stypo</string>\n      <string>verticalOneEighthBlock-7</string>\n      <string>verticalOneEighthBlock-7.stypo</string>\n      <string>horizontalOneEightBlock-2</string>\n      <string>horizontalOneEightBlock-2.stypo</string>\n      <string>horizontalOneEightBlock-3</string>\n      <string>horizontalOneEightBlock-3.stypo</string>\n      <string>horizontalOneEightBlock-4</string>\n      <string>horizontalOneEightBlock-4.stypo</string>\n      <string>horizontalOneEightBlock-5</string>\n      <string>horizontalOneEightBlock-5.stypo</string>\n      <string>horizontalOneEightBlock-6</string>\n      <string>horizontalOneEightBlock-6.stypo</string>\n      <string>horizontalOneEightBlock-7</string>\n      <string>horizontalOneEightBlock-7.stypo</string>\n      <string>leftAndLowerOneEightBlock</string>\n      <string>leftAndLowerOneEightBlock.stypo</string>\n      <string>leftAndUpperOneEightBlock</string>\n      <string>leftAndUpperOneEightBlock.stypo</string>\n      <string>rightAndUpperOneEightBlock</string>\n      <string>rightAndUpperOneEightBlock.stypo</string>\n      <string>rightAndLowerOneEightBlock</string>\n      <string>rightAndLowerOneEightBlock.stypo</string>\n      <string>upperAndLowerOneEightBlock</string>\n      <string>upperAndLowerOneEightBlock.stypo</string>\n      <string>upperThreeEighthsBlock</string>\n      <string>upperThreeEighthsBlock.stypo</string>\n      <string>upperFiveEighthsBlock</string>\n      <string>upperFiveEighthsBlock.stypo</string>\n      <string>upperSevenEighthsBlock</string>\n      <string>upperSevenEighthsBlock.stypo</string>\n      <string>rightOneQuarterBlock</string>\n      <string>rightOneQuarterBlock.stypo</string>\n      <string>rightThreeEighthsBlock</string>\n      <string>rightThreeEighthsBlock.stypo</string>\n      <string>rightFiveEighthsBlock</string>\n      <string>rightFiveEighthsBlock.stypo</string>\n      <string>rightThreeQuartersBlock</string>\n      <string>rightThreeQuartersBlock.stypo</string>\n      <string>rightSevenEighthsBlock</string>\n      <string>rightSevenEighthsBlock.stypo</string>\n      <string>leftTwoThirdsBlock</string>\n      <string>leftTwoThirdsBlock.stypo</string>\n      <string>leftOneThirdBlock</string>\n      <string>leftOneThirdBlock.stypo</string>\n      <string>heavyHorizontalFill</string>\n      <string>heavyHorizontalFill.stypo</string>\n      <string>blockSeparatedQuadrant-1</string>\n      <string>blockSeparatedQuadrant-1.stypo</string>\n      <string>blockSeparatedQuadrant-2</string>\n      <string>blockSeparatedQuadrant-2.stypo</string>\n      <string>blockSeparatedQuadrant-12</string>\n      <string>blockSeparatedQuadrant-12.stypo</string>\n      <string>blockSeparatedQuadrant-3</string>\n      <string>blockSeparatedQuadrant-3.stypo</string>\n      <string>blockSeparatedQuadrant-13</string>\n      <string>blockSeparatedQuadrant-13.stypo</string>\n      <string>blockSeparatedQuadrant-23</string>\n      <string>blockSeparatedQuadrant-23.stypo</string>\n      <string>blockSeparatedQuadrant-123</string>\n      <string>blockSeparatedQuadrant-123.stypo</string>\n      <string>blockSeparatedQuadrant-4</string>\n      <string>blockSeparatedQuadrant-4.stypo</string>\n      <string>blockSeparatedQuadrant-14</string>\n      <string>blockSeparatedQuadrant-14.stypo</string>\n      <string>blockSeparatedQuadrant-24</string>\n      <string>blockSeparatedQuadrant-24.stypo</string>\n      <string>blockSeparatedQuadrant-124</string>\n      <string>blockSeparatedQuadrant-124.stypo</string>\n      <string>blockSeparatedQuadrant-34</string>\n      <string>blockSeparatedQuadrant-34.stypo</string>\n      <string>blockSeparatedQuadrant-134</string>\n      <string>blockSeparatedQuadrant-134.stypo</string>\n      <string>blockSeparatedQuadrant-234</string>\n      <string>blockSeparatedQuadrant-234.stypo</string>\n      <string>blockSeparatedQuadrant-1234</string>\n      <string>blockSeparatedQuadrant-1234.stypo</string>\n      <string>blockSeparatedSextant-1</string>\n      <string>blockSeparatedSextant-1.stypo</string>\n      <string>blockSeparatedSextant-2</string>\n      <string>blockSeparatedSextant-2.stypo</string>\n      <string>blockSeparatedSextant-12</string>\n      <string>blockSeparatedSextant-12.stypo</string>\n      <string>blockSeparatedSextant-3</string>\n      <string>blockSeparatedSextant-3.stypo</string>\n      <string>blockSeparatedSextant-13</string>\n      <string>blockSeparatedSextant-13.stypo</string>\n      <string>blockSeparatedSextant-23</string>\n      <string>blockSeparatedSextant-23.stypo</string>\n      <string>blockSeparatedSextant-123</string>\n      <string>blockSeparatedSextant-123.stypo</string>\n      <string>blockSeparatedSextant-4</string>\n      <string>blockSeparatedSextant-4.stypo</string>\n      <string>blockSeparatedSextant-14</string>\n      <string>blockSeparatedSextant-14.stypo</string>\n      <string>blockSeparatedSextant-24</string>\n      <string>blockSeparatedSextant-24.stypo</string>\n      <string>blockSeparatedSextant-124</string>\n      <string>blockSeparatedSextant-124.stypo</string>\n      <string>blockSeparatedSextant-34</string>\n      <string>blockSeparatedSextant-34.stypo</string>\n      <string>blockSeparatedSextant-134</string>\n      <string>blockSeparatedSextant-134.stypo</string>\n      <string>blockSeparatedSextant-234</string>\n      <string>blockSeparatedSextant-234.stypo</string>\n      <string>blockSeparatedSextant-1234</string>\n      <string>blockSeparatedSextant-1234.stypo</string>\n      <string>blockSeparatedSextant-5</string>\n      <string>blockSeparatedSextant-5.stypo</string>\n      <string>blockSeparatedSextant-15</string>\n      <string>blockSeparatedSextant-15.stypo</string>\n      <string>blockSeparatedSextant-25</string>\n      <string>blockSeparatedSextant-25.stypo</string>\n      <string>blockSeparatedSextant-125</string>\n      <string>blockSeparatedSextant-125.stypo</string>\n      <string>blockSeparatedSextant-35</string>\n      <string>blockSeparatedSextant-35.stypo</string>\n      <string>blockSeparatedSextant-135</string>\n      <string>blockSeparatedSextant-135.stypo</string>\n      <string>blockSeparatedSextant-235</string>\n      <string>blockSeparatedSextant-235.stypo</string>\n      <string>blockSeparatedSextant-1235</string>\n      <string>blockSeparatedSextant-1235.stypo</string>\n      <string>blockSeparatedSextant-45</string>\n      <string>blockSeparatedSextant-45.stypo</string>\n      <string>blockSeparatedSextant-145</string>\n      <string>blockSeparatedSextant-145.stypo</string>\n      <string>blockSeparatedSextant-245</string>\n      <string>blockSeparatedSextant-245.stypo</string>\n      <string>blockSeparatedSextant-1245</string>\n      <string>blockSeparatedSextant-1245.stypo</string>\n      <string>blockSeparatedSextant-345</string>\n      <string>blockSeparatedSextant-345.stypo</string>\n      <string>blockSeparatedSextant-1345</string>\n      <string>blockSeparatedSextant-1345.stypo</string>\n      <string>blockSeparatedSextant-2345</string>\n      <string>blockSeparatedSextant-2345.stypo</string>\n      <string>blockSeparatedSextant-12345</string>\n      <string>blockSeparatedSextant-12345.stypo</string>\n      <string>blockSeparatedSextant-6</string>\n      <string>blockSeparatedSextant-6.stypo</string>\n      <string>blockSeparatedSextant-16</string>\n      <string>blockSeparatedSextant-16.stypo</string>\n      <string>blockSeparatedSextant-26</string>\n      <string>blockSeparatedSextant-26.stypo</string>\n      <string>blockSeparatedSextant-126</string>\n      <string>blockSeparatedSextant-126.stypo</string>\n      <string>blockSeparatedSextant-36</string>\n      <string>blockSeparatedSextant-36.stypo</string>\n      <string>blockSeparatedSextant-136</string>\n      <string>blockSeparatedSextant-136.stypo</string>\n      <string>blockSeparatedSextant-236</string>\n      <string>blockSeparatedSextant-236.stypo</string>\n      <string>blockSeparatedSextant-1236</string>\n      <string>blockSeparatedSextant-1236.stypo</string>\n      <string>blockSeparatedSextant-46</string>\n      <string>blockSeparatedSextant-46.stypo</string>\n      <string>blockSeparatedSextant-146</string>\n      <string>blockSeparatedSextant-146.stypo</string>\n      <string>blockSeparatedSextant-246</string>\n      <string>blockSeparatedSextant-246.stypo</string>\n      <string>blockSeparatedSextant-1246</string>\n      <string>blockSeparatedSextant-1246.stypo</string>\n      <string>blockSeparatedSextant-346</string>\n      <string>blockSeparatedSextant-346.stypo</string>\n      <string>blockSeparatedSextant-1346</string>\n      <string>blockSeparatedSextant-1346.stypo</string>\n      <string>blockSeparatedSextant-2346</string>\n      <string>blockSeparatedSextant-2346.stypo</string>\n      <string>blockSeparatedSextant-12346</string>\n      <string>blockSeparatedSextant-12346.stypo</string>\n      <string>blockSeparatedSextant-56</string>\n      <string>blockSeparatedSextant-56.stypo</string>\n      <string>blockSeparatedSextant-156</string>\n      <string>blockSeparatedSextant-156.stypo</string>\n      <string>blockSeparatedSextant-256</string>\n      <string>blockSeparatedSextant-256.stypo</string>\n      <string>blockSeparatedSextant-1256</string>\n      <string>blockSeparatedSextant-1256.stypo</string>\n      <string>blockSeparatedSextant-356</string>\n      <string>blockSeparatedSextant-356.stypo</string>\n      <string>blockSeparatedSextant-1356</string>\n      <string>blockSeparatedSextant-1356.stypo</string>\n      <string>blockSeparatedSextant-2356</string>\n      <string>blockSeparatedSextant-2356.stypo</string>\n      <string>blockSeparatedSextant-12356</string>\n      <string>blockSeparatedSextant-12356.stypo</string>\n      <string>blockSeparatedSextant-456</string>\n      <string>blockSeparatedSextant-456.stypo</string>\n      <string>blockSeparatedSextant-1456</string>\n      <string>blockSeparatedSextant-1456.stypo</string>\n      <string>blockSeparatedSextant-2456</string>\n      <string>blockSeparatedSextant-2456.stypo</string>\n      <string>blockSeparatedSextant-12456</string>\n      <string>blockSeparatedSextant-12456.stypo</string>\n      <string>blockSeparatedSextant-3456</string>\n      <string>blockSeparatedSextant-3456.stypo</string>\n      <string>blockSeparatedSextant-13456</string>\n      <string>blockSeparatedSextant-13456.stypo</string>\n      <string>blockSeparatedSextant-23456</string>\n      <string>blockSeparatedSextant-23456.stypo</string>\n      <string>blockSeparatedSextant-123456</string>\n      <string>blockSeparatedSextant-123456.stypo</string>\n      <string>segmentedDigit0</string>\n      <string>segmentedDigit1</string>\n      <string>segmentedDigit2</string>\n      <string>segmentedDigit3</string>\n      <string>segmentedDigit4</string>\n      <string>segmentedDigit5</string>\n      <string>segmentedDigit6</string>\n      <string>segmentedDigit7</string>\n      <string>segmentedDigit8</string>\n      <string>segmentedDigit9</string>\n      <string>largeType-1CE1A</string>\n      <string>largeType-1CE1A.stypo</string>\n      <string>largeType-1CE1B</string>\n      <string>largeType-1CE1B.stypo</string>\n      <string>largeType-1CE1C</string>\n      <string>largeType-1CE1C.stypo</string>\n      <string>largeType-1CE1D</string>\n      <string>largeType-1CE1D.stypo</string>\n      <string>largeType-1CE1E</string>\n      <string>largeType-1CE1E.stypo</string>\n      <string>largeType-1CE1F</string>\n      <string>largeType-1CE1F.stypo</string>\n      <string>largeType-1CE20</string>\n      <string>largeType-1CE20.stypo</string>\n      <string>largeType-1CE21</string>\n      <string>largeType-1CE21.stypo</string>\n      <string>largeType-1CE22</string>\n      <string>largeType-1CE22.stypo</string>\n      <string>largeType-1CE23</string>\n      <string>largeType-1CE23.stypo</string>\n      <string>largeType-1CE24</string>\n      <string>largeType-1CE24.stypo</string>\n      <string>largeType-1CE25</string>\n      <string>largeType-1CE25.stypo</string>\n      <string>largeType-1CE26</string>\n      <string>largeType-1CE26.stypo</string>\n      <string>largeType-1CE27</string>\n      <string>largeType-1CE27.stypo</string>\n      <string>largeType-1CE28</string>\n      <string>largeType-1CE28.stypo</string>\n      <string>largeType-1CE29</string>\n      <string>largeType-1CE29.stypo</string>\n      <string>largeType-1CE2A</string>\n      <string>largeType-1CE2A.stypo</string>\n      <string>largeType-1CE2B</string>\n      <string>largeType-1CE2B.stypo</string>\n      <string>largeType-1CE2C</string>\n      <string>largeType-1CE2C.stypo</string>\n      <string>largeType-1CE2D</string>\n      <string>largeType-1CE2D.stypo</string>\n      <string>largeType-1CE2E</string>\n      <string>largeType-1CE2E.stypo</string>\n      <string>largeType-1CE2F</string>\n      <string>largeType-1CE2F.stypo</string>\n      <string>largeType-1CE30</string>\n      <string>largeType-1CE30.stypo</string>\n      <string>largeType-1CE31</string>\n      <string>largeType-1CE31.stypo</string>\n      <string>largeType-1CE32</string>\n      <string>largeType-1CE32.stypo</string>\n      <string>largeType-1CE33</string>\n      <string>largeType-1CE33.stypo</string>\n      <string>largeType-1CE34</string>\n      <string>largeType-1CE34.stypo</string>\n      <string>largeType-1CE35</string>\n      <string>largeType-1CE35.stypo</string>\n      <string>largeType-1CE36</string>\n      <string>largeType-1CE36.stypo</string>\n      <string>largeType-1CE37</string>\n      <string>largeType-1CE37.stypo</string>\n      <string>largeType-1CE38</string>\n      <string>largeType-1CE38.stypo</string>\n      <string>largeType-1CE39</string>\n      <string>largeType-1CE39.stypo</string>\n      <string>largeType-1CE3A</string>\n      <string>largeType-1CE3A.stypo</string>\n      <string>largeType-1CE3B</string>\n      <string>largeType-1CE3B.stypo</string>\n      <string>largeType-1CE3C</string>\n      <string>largeType-1CE3C.stypo</string>\n      <string>largeType-1CE3D</string>\n      <string>largeType-1CE3D.stypo</string>\n      <string>largeType-1CE3E</string>\n      <string>largeType-1CE3E.stypo</string>\n      <string>largeType-1CE3F</string>\n      <string>largeType-1CE3F.stypo</string>\n      <string>largeType-1CE40</string>\n      <string>largeType-1CE40.stypo</string>\n      <string>largeType-1CE41</string>\n      <string>largeType-1CE41.stypo</string>\n      <string>largeType-1CE42</string>\n      <string>largeType-1CE42.stypo</string>\n      <string>largeType-1CE43</string>\n      <string>largeType-1CE43.stypo</string>\n      <string>largeType-1CE44</string>\n      <string>largeType-1CE44.stypo</string>\n      <string>largeType-1CE45</string>\n      <string>largeType-1CE45.stypo</string>\n      <string>largeType-1CE46</string>\n      <string>largeType-1CE46.stypo</string>\n      <string>largeType-1CE47</string>\n      <string>largeType-1CE47.stypo</string>\n      <string>largeType-1CE48</string>\n      <string>largeType-1CE48.stypo</string>\n      <string>largeType-1CE49</string>\n      <string>largeType-1CE49.stypo</string>\n      <string>largeType-1CE4A</string>\n      <string>largeType-1CE4A.stypo</string>\n      <string>largeType-1CE4B</string>\n      <string>largeType-1CE4B.stypo</string>\n      <string>largeType-1CE4C</string>\n      <string>largeType-1CE4C.stypo</string>\n      <string>largeType-1CE4D</string>\n      <string>largeType-1CE4D.stypo</string>\n      <string>largeType-1CE4E</string>\n      <string>largeType-1CE4E.stypo</string>\n      <string>largeType-1CE4F</string>\n      <string>largeType-1CE4F.stypo</string>\n      <string>largeType-1CE50</string>\n      <string>largeType-1CE50.stypo</string>\n    </array>\n    <key>public.postscriptNames</key>\n    <dict>\n      <key>A-cy</key>\n      <string>uni0410</string>\n      <key>Abreveacute</key>\n      <string>uni1EAE</string>\n      <key>Abrevedotbelow</key>\n      <string>uni1EB6</string>\n      <key>Abrevegrave</key>\n      <string>uni1EB0</string>\n      <key>Abrevehookabove</key>\n      <string>uni1EB2</string>\n      <key>Abrevetilde</key>\n      <string>uni1EB4</string>\n      <key>Acaron</key>\n      <string>uni01CD</string>\n      <key>Acircumflexacute</key>\n      <string>uni1EA4</string>\n      <key>Acircumflexdotbelow</key>\n      <string>uni1EAC</string>\n      <key>Acircumflexgrave</key>\n      <string>uni1EA6</string>\n      <key>Acircumflexhookabove</key>\n      <string>uni1EA8</string>\n      <key>Acircumflextilde</key>\n      <string>uni1EAA</string>\n      <key>Adotbelow</key>\n      <string>uni1EA0</string>\n      <key>Ahookabove</key>\n      <string>uni1EA2</string>\n      <key>Alpha-latin</key>\n      <string>uni2C6D</string>\n      <key>Asmall</key>\n      <string>uni1D00</string>\n      <key>Astroke</key>\n      <string>uni023A</string>\n      <key>Be-cy</key>\n      <string>uni0411</string>\n      <key>Che-cy</key>\n      <string>uni0427</string>\n      <key>Chedescender-cy</key>\n      <string>uni04B6</string>\n      <key>Cstroke</key>\n      <string>uni023B</string>\n      <key>Dafrican</key>\n      <string>uni0189</string>\n      <key>De-cy</key>\n      <string>uni0414</string>\n      <key>De-cy.loclBGR</key>\n      <string>uni0414.loclBGR</string>\n      <key>Delta</key>\n      <string>uni0394</string>\n      <key>Dje-cy</key>\n      <string>uni0402</string>\n      <key>Dze-cy</key>\n      <string>uni0405</string>\n      <key>Dzhe-cy</key>\n      <string>uni040F</string>\n      <key>E-cy</key>\n      <string>uni0404</string>\n      <key>Ecircumflexacute</key>\n      <string>uni1EBE</string>\n      <key>Ecircumflexdotbelow</key>\n      <string>uni1EC6</string>\n      <key>Ecircumflexgrave</key>\n      <string>uni1EC0</string>\n      <key>Ecircumflexhookabove</key>\n      <string>uni1EC2</string>\n      <key>Ecircumflextilde</key>\n      <string>uni1EC4</string>\n      <key>Edotbelow</key>\n      <string>uni1EB8</string>\n      <key>Ef-cy</key>\n      <string>uni0424</string>\n      <key>Ef-cy.loclBGR</key>\n      <string>uni0424.loclBGR</string>\n      <key>Ehookabove</key>\n      <string>uni1EBA</string>\n      <key>El-cy</key>\n      <string>uni041B</string>\n      <key>El-cy.loclBGR</key>\n      <string>uni041B.loclBGR</string>\n      <key>Em-cy</key>\n      <string>uni041C</string>\n      <key>En-cy</key>\n      <string>uni041D</string>\n      <key>Endescender-cy</key>\n      <string>uni04A2</string>\n      <key>Eopen</key>\n      <string>uni0190</string>\n      <key>Er-cy</key>\n      <string>uni0420</string>\n      <key>Ereversed</key>\n      <string>uni018E</string>\n      <key>Ereversed-cy</key>\n      <string>uni042D</string>\n      <key>Es-cy</key>\n      <string>uni0421</string>\n      <key>Esh</key>\n      <string>uni01A9</string>\n      <key>Etilde</key>\n      <string>uni1EBC</string>\n      <key>Ezh</key>\n      <string>uni01B7</string>\n      <key>Fhook</key>\n      <string>uni0191</string>\n      <key>Gammaafrican</key>\n      <string>uni0194</string>\n      <key>Gcommaaccent</key>\n      <string>uni0122</string>\n      <key>Ge-cy</key>\n      <string>uni0413</string>\n      <key>Germandbls</key>\n      <string>uni1E9E</string>\n      <key>Ghestroke-cy</key>\n      <string>uni0492</string>\n      <key>Gheupturn-cy</key>\n      <string>uni0490</string>\n      <key>Gje-cy</key>\n      <string>uni0403</string>\n      <key>Gsmall</key>\n      <string>uni0262</string>\n      <key>Gstroke</key>\n      <string>uni01E4</string>\n      <key>Ha-cy</key>\n      <string>uni0425</string>\n      <key>Hadescender-cy</key>\n      <string>uni04B2</string>\n      <key>Hardsign-cy</key>\n      <string>uni042A</string>\n      <key>Hcaron</key>\n      <string>uni021E</string>\n      <key>Hdotbelow</key>\n      <string>uni1E24</string>\n      <key>I-cy</key>\n      <string>uni0406</string>\n      <key>Ia-cy</key>\n      <string>uni042F</string>\n      <key>Idotbelow</key>\n      <string>uni1ECA</string>\n      <key>Ie-cy</key>\n      <string>uni0415</string>\n      <key>Iegrave-cy</key>\n      <string>uni0400</string>\n      <key>Ihookabove</key>\n      <string>uni1EC8</string>\n      <key>Ii-cy</key>\n      <string>uni0418</string>\n      <key>Iigrave-cy</key>\n      <string>uni040D</string>\n      <key>Iishort-cy</key>\n      <string>uni0419</string>\n      <key>Imacron-cy</key>\n      <string>uni04E2</string>\n      <key>Io-cy</key>\n      <string>uni0401</string>\n      <key>Iotaafrican</key>\n      <string>uni0196</string>\n      <key>Ismall</key>\n      <string>uni026A</string>\n      <key>Iu-cy</key>\n      <string>uni042E</string>\n      <key>Jacute</key>\n      <string>uni00A40301</string>\n      <key>Je-cy</key>\n      <string>uni0408</string>\n      <key>Ka-cy</key>\n      <string>uni041A</string>\n      <key>Kacute</key>\n      <string>uni1E30</string>\n      <key>Kadescender-cy</key>\n      <string>uni049A</string>\n      <key>KaiSymbol</key>\n      <string>uni03CF</string>\n      <key>Kcommaaccent</key>\n      <string>uni0136</string>\n      <key>Kdotbelow</key>\n      <string>uni1E32</string>\n      <key>Kje-cy</key>\n      <string>uni040C</string>\n      <key>Klinebelow</key>\n      <string>uni1E34</string>\n      <key>Lbar</key>\n      <string>uni023D</string>\n      <key>Lcommaaccent</key>\n      <string>uni013B</string>\n      <key>Ldotbelow</key>\n      <string>uni1E36</string>\n      <key>Lje-cy</key>\n      <string>uni0409</string>\n      <key>Llinebelow</key>\n      <string>uni1E3A</string>\n      <key>Lmiddletilde</key>\n      <string>uni2C62</string>\n      <key>Lsmall</key>\n      <string>uni029F</string>\n      <key>Ncommaaccent</key>\n      <string>uni0145</string>\n      <key>Nhookleft</key>\n      <string>uni019D</string>\n      <key>Nje-cy</key>\n      <string>uni040A</string>\n      <key>Nlinebelow</key>\n      <string>uni1E48</string>\n      <key>O-cy</key>\n      <string>uni041E</string>\n      <key>Obarred-cy</key>\n      <string>uni04E8</string>\n      <key>Ocircumflexacute</key>\n      <string>uni1ED0</string>\n      <key>Ocircumflexdotbelow</key>\n      <string>uni1ED8</string>\n      <key>Ocircumflexgrave</key>\n      <string>uni1ED2</string>\n      <key>Ocircumflexhookabove</key>\n      <string>uni1ED4</string>\n      <key>Ocircumflextilde</key>\n      <string>uni1ED6</string>\n      <key>Odotbelow</key>\n      <string>uni1ECC</string>\n      <key>Ohm</key>\n      <string>uni2126</string>\n      <key>Ohookabove</key>\n      <string>uni1ECE</string>\n      <key>Ohornacute</key>\n      <string>uni1EDA</string>\n      <key>Ohorndotbelow</key>\n      <string>uni1EE2</string>\n      <key>Ohorngrave</key>\n      <string>uni1EDC</string>\n      <key>Ohornhookabove</key>\n      <string>uni1EDE</string>\n      <key>Ohorntilde</key>\n      <string>uni1EE0</string>\n      <key>Omacronacute</key>\n      <string>uni1E52</string>\n      <key>Omacrongrave</key>\n      <string>uni1E50</string>\n      <key>Omega</key>\n      <string>uni03A9</string>\n      <key>Oogonek</key>\n      <string>uni01EA</string>\n      <key>Oopen</key>\n      <string>uni0186</string>\n      <key>Palochka-cy</key>\n      <string>uni04C0</string>\n      <key>Pe-cy</key>\n      <string>uni041F</string>\n      <key>Rcommaaccent</key>\n      <string>uni0156</string>\n      <key>Rdotbelow</key>\n      <string>uni1E5A</string>\n      <key>Schwa</key>\n      <string>uni018F</string>\n      <key>Schwa-cy</key>\n      <string>uni04D8</string>\n      <key>Scommaaccent</key>\n      <string>uni0218</string>\n      <key>Sdotbelow</key>\n      <string>uni1E62</string>\n      <key>Sha-cy</key>\n      <string>uni0428</string>\n      <key>Shcha-cy</key>\n      <string>uni0429</string>\n      <key>Shha-cy</key>\n      <string>uni04BA</string>\n      <key>Softsign-cy</key>\n      <string>uni042C</string>\n      <key>Tcedilla</key>\n      <string>uni0162</string>\n      <key>Tcommaaccent</key>\n      <string>uni021A</string>\n      <key>Tdiagonalstroke</key>\n      <string>uni023E</string>\n      <key>Te-cy</key>\n      <string>uni0422</string>\n      <key>Tlinebelow</key>\n      <string>uni1E6E</string>\n      <key>Tse-cy</key>\n      <string>uni0426</string>\n      <key>Tshe-cy</key>\n      <string>uni040B</string>\n      <key>U-cy</key>\n      <string>uni0423</string>\n      <key>Udotbelow</key>\n      <string>uni1EE4</string>\n      <key>Uhookabove</key>\n      <string>uni1EE6</string>\n      <key>Uhornacute</key>\n      <string>uni1EE8</string>\n      <key>Uhorndotbelow</key>\n      <string>uni1EF0</string>\n      <key>Uhorngrave</key>\n      <string>uni1EEA</string>\n      <key>Uhornhookabove</key>\n      <string>uni1EEC</string>\n      <key>Uhorntilde</key>\n      <string>uni1EEE</string>\n      <key>Umacron-cy</key>\n      <string>uni04EE</string>\n      <key>Upsilonafrican</key>\n      <string>uni01B1</string>\n      <key>Ushort-cy</key>\n      <string>uni040E</string>\n      <key>Ustraight-cy</key>\n      <string>uni04AE</string>\n      <key>Ustraightstroke-cy</key>\n      <string>uni04B0</string>\n      <key>Ve-cy</key>\n      <string>uni0412</string>\n      <key>Vhook</key>\n      <string>uni01B2</string>\n      <key>Vturned</key>\n      <string>uni0245</string>\n      <key>Ydotbelow</key>\n      <string>uni1EF4</string>\n      <key>Yeru-cy</key>\n      <string>uni042B</string>\n      <key>Yhookabove</key>\n      <string>uni1EF6</string>\n      <key>Yi-cy</key>\n      <string>uni0407</string>\n      <key>Ymacron</key>\n      <string>uni0232</string>\n      <key>Ytilde</key>\n      <string>uni1EF8</string>\n      <key>Ze-cy</key>\n      <string>uni0417</string>\n      <key>Zhe-cy</key>\n      <string>uni0416</string>\n      <key>Zhedescender-cy</key>\n      <string>uni0496</string>\n      <key>_alef-ar.fina.rlig</key>\n      <string>_alefar.fina.rlig</string>\n      <key>_alef-ar.fina.short.rlig</key>\n      <string>_alefar.fina.short.rlig</string>\n      <key>_alefFathatan-ar.fina.rlig</key>\n      <string>_alefFathatanar.fina.rlig</string>\n      <key>_alefHamzaabove-ar.fina.rlig</key>\n      <string>_alefHamzaabovear.fina.rlig</string>\n      <key>_alefHamzabelow-ar.fina.rlig</key>\n      <string>_alefHamzabelowar.fina.rlig</string>\n      <key>_alefMadda-ar.fina.rlig</key>\n      <string>_alefMaddaar.fina.rlig</string>\n      <key>_alefThreeabove-ar.fina.rlig</key>\n      <string>_alefThreeabovear.fina.rlig</string>\n      <key>_alefTwoabove-ar.fina.rlig</key>\n      <string>_alefTwoabovear.fina.rlig</string>\n      <key>_alefWasla-ar.fina.rlig</key>\n      <string>_alefWaslaar.fina.rlig</string>\n      <key>_alefWavyhamzaabove-ar.fina.rlig</key>\n      <string>_alefWavyhamzaabovear.fina.rlig</string>\n      <key>_alefWavyhamzabelow-ar.fina.rlig</key>\n      <string>_alefWavyhamzabelowar.fina.rlig</string>\n      <key>_cuberoot_fourthroot-ar</key>\n      <string>_cuberoot_fourthrootar</string>\n      <key>_damma-ar</key>\n      <string>_dammaar</string>\n      <key>_dot-ar</key>\n      <string>_dotar</string>\n      <key>_fatha-ar</key>\n      <string>_fathaar</string>\n      <key>_four-persian.small01</key>\n      <string>_fourpersian.small01</string>\n      <key>_fourdotscenter-ar</key>\n      <string>_fourdotscenterar</string>\n      <key>_fourthroot-ar</key>\n      <string>_fourthrootar</string>\n      <key>_hamzasmall-ar</key>\n      <string>_hamzasmallar</string>\n      <key>_highhamzaAlef-ar.fina.rlig</key>\n      <string>_highhamzaAlefar.fina.rlig</string>\n      <key>_threedots-ar</key>\n      <string>_threedotsar</string>\n      <key>_twodotshorizontal-ar</key>\n      <string>_twodotshorizontalar</string>\n      <key>_twodotsverticalabove-ar</key>\n      <string>_twodotsverticalabovear</string>\n      <key>_vbelow-ar</key>\n      <string>_vbelowar</string>\n      <key>_vinvertedbelow-ar</key>\n      <string>_vinvertedbelowar</string>\n      <key>_yehRohingya-ar</key>\n      <string>_yehRohingyaar</string>\n      <key>_yehRohingya-ar.fina</key>\n      <string>_yehRohingyaar.fina</string>\n      <key>a-cy</key>\n      <string>uni0430</string>\n      <key>abreveacute</key>\n      <string>uni1EAF</string>\n      <key>abrevedotbelow</key>\n      <string>uni1EB7</string>\n      <key>abrevegrave</key>\n      <string>uni1EB1</string>\n      <key>abrevehookabove</key>\n      <string>uni1EB3</string>\n      <key>abrevetilde</key>\n      <string>uni1EB5</string>\n      <key>acaron</key>\n      <string>uni01CE</string>\n      <key>acircumflexacute</key>\n      <string>uni1EA5</string>\n      <key>acircumflexdotbelow</key>\n      <string>uni1EAD</string>\n      <key>acircumflexgrave</key>\n      <string>uni1EA7</string>\n      <key>acircumflexhookabove</key>\n      <string>uni1EA9</string>\n      <key>acircumflextilde</key>\n      <string>uni1EAB</string>\n      <key>acknowledgeControl</key>\n      <string>uni2406</string>\n      <key>acknowledgeControl.ss20</key>\n      <string>uni2406.ss20</string>\n      <key>acutetonecomb</key>\n      <string>uni0341</string>\n      <key>adotbelow</key>\n      <string>uni1EA1</string>\n      <key>ae-ar</key>\n      <string>uni06D5</string>\n      <key>ae-ar.fina</key>\n      <string>uni06D5.fina</string>\n      <key>afghani-ar</key>\n      <string>uni060B</string>\n      <key>ahookabove</key>\n      <string>uni1EA3</string>\n      <key>ain-ar</key>\n      <string>uni0639</string>\n      <key>ain-ar.fina</key>\n      <string>uniFECA</string>\n      <key>ain-ar.init</key>\n      <string>uniFECB</string>\n      <key>ain-ar.medi</key>\n      <string>uniFECC</string>\n      <key>ainThreedots-ar</key>\n      <string>uni06A0</string>\n      <key>ainThreedots-ar.fina</key>\n      <string>uni06A0.fina</string>\n      <key>ainThreedots-ar.init</key>\n      <string>uni06A0.init</string>\n      <key>ainThreedots-ar.medi</key>\n      <string>uni06A0.medi</string>\n      <key>ainThreedotsdownabove-ar</key>\n      <string>uni075E</string>\n      <key>ainThreedotsdownabove-ar.fina</key>\n      <string>uni075E.fina</string>\n      <key>ainThreedotsdownabove-ar.init</key>\n      <string>uni075E.init</string>\n      <key>ainThreedotsdownabove-ar.medi</key>\n      <string>uni075E.medi</string>\n      <key>ainTwodotshorizontalabove-ar</key>\n      <string>uni075D</string>\n      <key>ainTwodotshorizontalabove-ar.fina</key>\n      <string>uni075D.fina</string>\n      <key>ainTwodotshorizontalabove-ar.init</key>\n      <string>uni075D.init</string>\n      <key>ainTwodotshorizontalabove-ar.medi</key>\n      <string>uni075D.medi</string>\n      <key>ainTwodotsverticalabove-ar</key>\n      <string>uni075F</string>\n      <key>ainTwodotsverticalabove-ar.fina</key>\n      <string>uni075F.fina</string>\n      <key>ainTwodotsverticalabove-ar.init</key>\n      <string>uni075F.init</string>\n      <key>ainTwodotsverticalabove-ar.medi</key>\n      <string>uni075F.medi</string>\n      <key>alef-ar</key>\n      <string>uni0627</string>\n      <key>alef-ar.fina</key>\n      <string>uniFE8E</string>\n      <key>alef-ar.fina.alt</key>\n      <string>uni0627.fina.alt</string>\n      <key>alef-ar.fina.rlig</key>\n      <string>uni0627.fina.rlig</string>\n      <key>alef-ar.fina.short</key>\n      <string>uni0627.fina.short</string>\n      <key>alef-ar.fina.short.alt</key>\n      <string>uni0627.fina.short.alt</string>\n      <key>alef-ar.fina.short.rlig</key>\n      <string>uni0627.fina.short.rlig</string>\n      <key>alef-ar.short</key>\n      <string>uni0627.short</string>\n      <key>alef-hb</key>\n      <string>uni05D0</string>\n      <key>alefFathatan-ar</key>\n      <string>uniFD3D</string>\n      <key>alefFathatan-ar.fina</key>\n      <string>uniFD3C</string>\n      <key>alefFathatan-ar.fina.rlig</key>\n      <string>uniFD3D.fina.rlig</string>\n      <key>alefHamzaabove-ar</key>\n      <string>uni0623</string>\n      <key>alefHamzaabove-ar.fina</key>\n      <string>uniFE84</string>\n      <key>alefHamzaabove-ar.fina.alt</key>\n      <string>uni0623.fina.alt</string>\n      <key>alefHamzaabove-ar.fina.rlig</key>\n      <string>uni0623.fina.rlig</string>\n      <key>alefHamzabelow-ar</key>\n      <string>uni0625</string>\n      <key>alefHamzabelow-ar.fina</key>\n      <string>uniFE88</string>\n      <key>alefHamzabelow-ar.fina.alt</key>\n      <string>uni0625.fina.alt</string>\n      <key>alefHamzabelow-ar.fina.rlig</key>\n      <string>uni0625.fina.rlig</string>\n      <key>alefMadda-ar</key>\n      <string>uni0622</string>\n      <key>alefMadda-ar.fina</key>\n      <string>uniFE82</string>\n      <key>alefMadda-ar.fina.alt</key>\n      <string>uni0622.fina.alt</string>\n      <key>alefMadda-ar.fina.rlig</key>\n      <string>uni0622.fina.rlig</string>\n      <key>alefMaksura-ar</key>\n      <string>uni0649</string>\n      <key>alefMaksura-ar.fina</key>\n      <string>uniFEF0</string>\n      <key>alefMaksura-ar.fina.alt</key>\n      <string>uni0649.fina.alt</string>\n      <key>alefMaksura-ar.init</key>\n      <string>uniFBE8</string>\n      <key>alefMaksura-ar.init.alt</key>\n      <string>uni0649.init.alt</string>\n      <key>alefMaksura-ar.medi</key>\n      <string>uniFBE9</string>\n      <key>alefMaksuraAlefabove-ar</key>\n      <string>uniFC5D</string>\n      <key>alefMaksuraAlefabove-ar.fina</key>\n      <string>uniFC90</string>\n      <key>alefMaksuraAlefabove-ar.fina.alt</key>\n      <string>uniFC5D.fina.alt</string>\n      <key>alefThreeabove-ar</key>\n      <string>uni0774</string>\n      <key>alefThreeabove-ar.fina</key>\n      <string>uni0774.fina</string>\n      <key>alefThreeabove-ar.fina.alt</key>\n      <string>uni0774.fina.alt</string>\n      <key>alefThreeabove-ar.fina.rlig</key>\n      <string>uni0774.fina.rlig</string>\n      <key>alefTwoabove-ar</key>\n      <string>uni0773</string>\n      <key>alefTwoabove-ar.fina</key>\n      <string>uni0773.fina</string>\n      <key>alefTwoabove-ar.fina.alt</key>\n      <string>uni0773.fina.alt</string>\n      <key>alefTwoabove-ar.fina.rlig</key>\n      <string>uni0773.fina.rlig</string>\n      <key>alefWasla-ar</key>\n      <string>uni0671</string>\n      <key>alefWasla-ar.fina</key>\n      <string>uniFB51</string>\n      <key>alefWasla-ar.fina.alt</key>\n      <string>uni0671.fina.alt</string>\n      <key>alefWasla-ar.fina.rlig</key>\n      <string>uni0671.fina.rlig</string>\n      <key>alefWavyhamzaabove-ar</key>\n      <string>uni0672</string>\n      <key>alefWavyhamzaabove-ar.fina</key>\n      <string>uni0672.fina</string>\n      <key>alefWavyhamzaabove-ar.fina.alt</key>\n      <string>uni0672.fina.alt</string>\n      <key>alefWavyhamzaabove-ar.fina.rlig</key>\n      <string>uni0672.fina.rlig</string>\n      <key>alefWavyhamzabelow-ar</key>\n      <string>uni0673</string>\n      <key>alefWavyhamzabelow-ar.fina</key>\n      <string>uni0673.fina</string>\n      <key>alefWavyhamzabelow-ar.fina.alt</key>\n      <string>uni0673.fina.alt</string>\n      <key>alefWavyhamzabelow-ar.fina.rlig</key>\n      <string>uni0673.fina.rlig</string>\n      <key>alefabove-ar</key>\n      <string>uni0670</string>\n      <key>alefbelow-ar</key>\n      <string>uni0656</string>\n      <key>alefdagesh-hb</key>\n      <string>uniFB30</string>\n      <key>alefdagesh-hb.BRACKET.500</key>\n      <string>uniFB30.BRACKET.500</string>\n      <key>alefpatah-hb</key>\n      <string>uniFB2E</string>\n      <key>alefqamats-hb</key>\n      <string>uniFB2F</string>\n      <key>allah-ar</key>\n      <string>uniFDF2</string>\n      <key>alpha-latin</key>\n      <string>uni0251</string>\n      <key>apostrophemod</key>\n      <string>uni02BC</string>\n      <key>asterisk-ar</key>\n      <string>uni066D</string>\n      <key>asteriskArt-ar</key>\n      <string>uni06DE</string>\n      <key>ayin-hb</key>\n      <string>uni05E2</string>\n      <key>backspaceControl</key>\n      <string>uni2408</string>\n      <key>backspaceControl.ss20</key>\n      <string>uni2408.ss20</string>\n      <key>baht</key>\n      <string>uni0E3F</string>\n      <key>baht.BRACKET.600</key>\n      <string>uni0E3F.BRACKET.600</string>\n      <key>be-cy</key>\n      <string>uni0431</string>\n      <key>be-cy.loclSRB</key>\n      <string>uni0431.loclSRB</string>\n      <key>beeh-ar</key>\n      <string>uni067B</string>\n      <key>beeh-ar.alt</key>\n      <string>uni067B.alt</string>\n      <key>beeh-ar.fina</key>\n      <string>uniFB53</string>\n      <key>beeh-ar.fina.alt</key>\n      <string>uni067B.fina.alt</string>\n      <key>beeh-ar.init</key>\n      <string>uniFB54</string>\n      <key>beeh-ar.init.alt</key>\n      <string>uni067B.init.alt</string>\n      <key>beeh-ar.medi</key>\n      <string>uniFB55</string>\n      <key>beh-ar</key>\n      <string>uni0628</string>\n      <key>beh-ar.alt</key>\n      <string>uni0628.alt</string>\n      <key>beh-ar.fina</key>\n      <string>uniFE90</string>\n      <key>beh-ar.fina.alt</key>\n      <string>uni0628.fina.alt</string>\n      <key>beh-ar.init</key>\n      <string>uniFE91</string>\n      <key>beh-ar.init.alt</key>\n      <string>uni0628.init.alt</string>\n      <key>beh-ar.medi</key>\n      <string>uniFE92</string>\n      <key>behDotless-ar</key>\n      <string>uni066E</string>\n      <key>behDotless-ar.alt</key>\n      <string>uni066E.alt</string>\n      <key>behDotless-ar.fina</key>\n      <string>uni066E.fina</string>\n      <key>behDotless-ar.fina.alt</key>\n      <string>uni066E.fina.alt</string>\n      <key>behDotless-ar.init</key>\n      <string>uni066E.init</string>\n      <key>behDotless-ar.init.alt</key>\n      <string>uni066E.init.alt</string>\n      <key>behDotless-ar.medi</key>\n      <string>uni066E.medi</string>\n      <key>behMeemabove-ar</key>\n      <string>uni08B6</string>\n      <key>behMeemabove-ar.alt</key>\n      <string>uni08B6.alt</string>\n      <key>behMeemabove-ar.fina</key>\n      <string>uni08B6.fina</string>\n      <key>behMeemabove-ar.fina.alt</key>\n      <string>uni08B6.fina.alt</string>\n      <key>behMeemabove-ar.init</key>\n      <string>uni08B6.init</string>\n      <key>behMeemabove-ar.init.alt</key>\n      <string>uni08B6.init.alt</string>\n      <key>behMeemabove-ar.medi</key>\n      <string>uni08B6.medi</string>\n      <key>behThreedotshorizontalbelow-ar</key>\n      <string>uni0750</string>\n      <key>behThreedotshorizontalbelow-ar.alt</key>\n      <string>uni0750.alt</string>\n      <key>behThreedotshorizontalbelow-ar.fina</key>\n      <string>uni0750.fina</string>\n      <key>behThreedotshorizontalbelow-ar.fina.alt</key>\n      <string>uni0750.fina.alt</string>\n      <key>behThreedotshorizontalbelow-ar.init</key>\n      <string>uni0750.init</string>\n      <key>behThreedotshorizontalbelow-ar.init.alt</key>\n      <string>uni0750.init.alt</string>\n      <key>behThreedotshorizontalbelow-ar.medi</key>\n      <string>uni0750.medi</string>\n      <key>behThreedotsupabove-ar</key>\n      <string>uni0751</string>\n      <key>behThreedotsupabove-ar.alt</key>\n      <string>uni0751.alt</string>\n      <key>behThreedotsupabove-ar.fina</key>\n      <string>uni0751.fina</string>\n      <key>behThreedotsupabove-ar.fina.alt</key>\n      <string>uni0751.fina.alt</string>\n      <key>behThreedotsupabove-ar.init</key>\n      <string>uni0751.init</string>\n      <key>behThreedotsupabove-ar.init.alt</key>\n      <string>uni0751.init.alt</string>\n      <key>behThreedotsupabove-ar.medi</key>\n      <string>uni0751.medi</string>\n      <key>behThreedotsupbelow-ar</key>\n      <string>uni0752</string>\n      <key>behThreedotsupbelow-ar.alt</key>\n      <string>uni0752.alt</string>\n      <key>behThreedotsupbelow-ar.fina</key>\n      <string>uni0752.fina</string>\n      <key>behThreedotsupbelow-ar.fina.alt</key>\n      <string>uni0752.fina.alt</string>\n      <key>behThreedotsupbelow-ar.init</key>\n      <string>uni0752.init</string>\n      <key>behThreedotsupbelow-ar.init.alt</key>\n      <string>uni0752.init.alt</string>\n      <key>behThreedotsupbelow-ar.medi</key>\n      <string>uni0752.medi</string>\n      <key>behTwodotsbelowDotabove-ar</key>\n      <string>uni0754</string>\n      <key>behTwodotsbelowDotabove-ar.alt</key>\n      <string>uni0754.alt</string>\n      <key>behTwodotsbelowDotabove-ar.fina</key>\n      <string>uni0754.fina</string>\n      <key>behTwodotsbelowDotabove-ar.fina.alt</key>\n      <string>uni0754.fina.alt</string>\n      <key>behTwodotsbelowDotabove-ar.init</key>\n      <string>uni0754.init</string>\n      <key>behTwodotsbelowDotabove-ar.init.alt</key>\n      <string>uni0754.init.alt</string>\n      <key>behTwodotsbelowDotabove-ar.medi</key>\n      <string>uni0754.medi</string>\n      <key>behVabove-ar</key>\n      <string>uni0756</string>\n      <key>behVabove-ar.alt</key>\n      <string>uni0756.alt</string>\n      <key>behVabove-ar.fina</key>\n      <string>uni0756.fina</string>\n      <key>behVabove-ar.fina.alt</key>\n      <string>uni0756.fina.alt</string>\n      <key>behVabove-ar.init</key>\n      <string>uni0756.init</string>\n      <key>behVabove-ar.init.alt</key>\n      <string>uni0756.init.alt</string>\n      <key>behVabove-ar.medi</key>\n      <string>uni0756.medi</string>\n      <key>behVbelow-ar</key>\n      <string>uni08A0</string>\n      <key>behVbelow-ar.alt</key>\n      <string>uni08A0.alt</string>\n      <key>behVbelow-ar.fina</key>\n      <string>uni08A0.fina</string>\n      <key>behVbelow-ar.fina.alt</key>\n      <string>uni08A0.fina.alt</string>\n      <key>behVbelow-ar.init</key>\n      <string>uni08A0.init</string>\n      <key>behVbelow-ar.init.alt</key>\n      <string>uni08A0.init.alt</string>\n      <key>behVbelow-ar.medi</key>\n      <string>uni08A0.medi</string>\n      <key>behVinvertedbelow-ar</key>\n      <string>uni0755</string>\n      <key>behVinvertedbelow-ar.alt</key>\n      <string>uni0755.alt</string>\n      <key>behVinvertedbelow-ar.fina</key>\n      <string>uni0755.fina</string>\n      <key>behVinvertedbelow-ar.fina.alt</key>\n      <string>uni0755.fina.alt</string>\n      <key>behVinvertedbelow-ar.init</key>\n      <string>uni0755.init</string>\n      <key>behVinvertedbelow-ar.init.alt</key>\n      <string>uni0755.init.alt</string>\n      <key>behVinvertedbelow-ar.medi</key>\n      <string>uni0755.medi</string>\n      <key>beheh-ar</key>\n      <string>uni0680</string>\n      <key>beheh-ar.alt</key>\n      <string>uni0680.alt</string>\n      <key>beheh-ar.fina</key>\n      <string>uniFB5B</string>\n      <key>beheh-ar.fina.alt</key>\n      <string>uni0680.fina.alt</string>\n      <key>beheh-ar.init</key>\n      <string>uniFB5C</string>\n      <key>beheh-ar.init.alt</key>\n      <string>uni0680.init.alt</string>\n      <key>beheh-ar.medi</key>\n      <string>uniFB5D</string>\n      <key>behhamzaabove-ar</key>\n      <string>uni08A1</string>\n      <key>behhamzaabove-ar.alt</key>\n      <string>uni08A1.alt</string>\n      <key>behhamzaabove-ar.fina</key>\n      <string>uni08A1.fina</string>\n      <key>behhamzaabove-ar.fina.alt</key>\n      <string>uni08A1.fina.alt</string>\n      <key>behhamzaabove-ar.init</key>\n      <string>uni08A1.init</string>\n      <key>behhamzaabove-ar.medi</key>\n      <string>uni08A1.medi</string>\n      <key>bellControl</key>\n      <string>uni2407</string>\n      <key>bellControl.ss20</key>\n      <string>uni2407.ss20</string>\n      <key>bet-hb</key>\n      <string>uni05D1</string>\n      <key>betdagesh-hb</key>\n      <string>uniFB31</string>\n      <key>bitcoin</key>\n      <string>uni20BF</string>\n      <key>blackCircle</key>\n      <string>uni25CF</string>\n      <key>blackDiamond</key>\n      <string>uni25C6</string>\n      <key>blackHexagon</key>\n      <string>uni2B22</string>\n      <key>blackHorizontalEllipse</key>\n      <string>uni2B2C</string>\n      <key>blackInWhiteDiamond</key>\n      <string>uni25C8</string>\n      <key>blackLargeCircle</key>\n      <string>uni2B24</string>\n      <key>blackLargeSquare</key>\n      <string>uni2B1B</string>\n      <key>blackMediumDiamond</key>\n      <string>uni2B25</string>\n      <key>blackMediumDownTriangleCentred</key>\n      <string>uni2BC6</string>\n      <key>blackMediumLeftTriangleCentred</key>\n      <string>uni2BC7</string>\n      <key>blackMediumLozenge</key>\n      <string>uni2B27</string>\n      <key>blackMediumRightTriangleCentred</key>\n      <string>uni2BC8</string>\n      <key>blackMediumUpTriangleCentred</key>\n      <string>uni2BC5</string>\n      <key>blackParallelogram</key>\n      <string>uni25B0</string>\n      <key>blackPentagon</key>\n      <string>uni2B1F</string>\n      <key>blackSmallDiamond</key>\n      <string>uni2B29</string>\n      <key>blackSmallLozenge</key>\n      <string>uni2B2A</string>\n      <key>blackSmallSquare</key>\n      <string>uni25AA</string>\n      <key>blackSmilingFace</key>\n      <string>invsmileface</string>\n      <key>blackSquare</key>\n      <string>filledbox</string>\n      <key>blackVerticalEllipse</key>\n      <string>uni2B2E</string>\n      <key>blackVerticalRect</key>\n      <string>uni25AE</string>\n      <key>blackVerysmallSquare</key>\n      <string>uni2B1D</string>\n      <key>blank</key>\n      <string>uni2423</string>\n      <key>blank-braille</key>\n      <string>uni2800</string>\n      <key>blankSymbol</key>\n      <string>uni2422</string>\n      <key>bottomHalfBlackCircle</key>\n      <string>uni2BCB</string>\n      <key>bottomHalfBlackDiamond</key>\n      <string>uni2B19</string>\n      <key>boxDoubleDownAndHorizontal</key>\n      <string>uni2566</string>\n      <key>boxDoubleDownAndHorizontal.stypo</key>\n      <string>uni2566.stypo</string>\n      <key>boxDoubleDownAndLeft</key>\n      <string>uni2557</string>\n      <key>boxDoubleDownAndLeft.stypo</key>\n      <string>uni2557.stypo</string>\n      <key>boxDoubleDownAndRight</key>\n      <string>uni2554</string>\n      <key>boxDoubleDownAndRight.stypo</key>\n      <string>uni2554.stypo</string>\n      <key>boxDoubleHorizontal</key>\n      <string>uni2550</string>\n      <key>boxDoubleHorizontal.stypo</key>\n      <string>uni2550.stypo</string>\n      <key>boxDoubleUpAndHorizontal</key>\n      <string>uni2569</string>\n      <key>boxDoubleUpAndHorizontal.stypo</key>\n      <string>uni2569.stypo</string>\n      <key>boxDoubleUpAndLeft</key>\n      <string>uni255D</string>\n      <key>boxDoubleUpAndLeft.stypo</key>\n      <string>uni255D.stypo</string>\n      <key>boxDoubleUpAndRight</key>\n      <string>uni255A</string>\n      <key>boxDoubleUpAndRight.stypo</key>\n      <string>uni255A.stypo</string>\n      <key>boxDoubleVertical</key>\n      <string>uni2551</string>\n      <key>boxDoubleVertical.stypo</key>\n      <string>uni2551.stypo</string>\n      <key>boxDoubleVerticalAndHorizontal</key>\n      <string>uni256C</string>\n      <key>boxDoubleVerticalAndHorizontal.stypo</key>\n      <string>uni256C.stypo</string>\n      <key>boxDoubleVerticalAndLeft</key>\n      <string>uni2563</string>\n      <key>boxDoubleVerticalAndLeft.stypo</key>\n      <string>uni2563.stypo</string>\n      <key>boxDoubleVerticalAndRight</key>\n      <string>uni2560</string>\n      <key>boxDoubleVerticalAndRight.stypo</key>\n      <string>uni2560.stypo</string>\n      <key>boxDownDoubleAndHorizontalSingle</key>\n      <string>uni2565</string>\n      <key>boxDownDoubleAndHorizontalSingle.stypo</key>\n      <string>uni2565.stypo</string>\n      <key>boxDownDoubleAndLeftSingle</key>\n      <string>uni2556</string>\n      <key>boxDownDoubleAndLeftSingle.stypo</key>\n      <string>uni2556.stypo</string>\n      <key>boxDownDoubleAndRightSingle</key>\n      <string>uni2553</string>\n      <key>boxDownDoubleAndRightSingle.stypo</key>\n      <string>uni2553.stypo</string>\n      <key>boxDownHeavyAndHorizontalLight</key>\n      <string>uni2530</string>\n      <key>boxDownHeavyAndHorizontalLight.stypo</key>\n      <string>uni2530.stypo</string>\n      <key>boxDownHeavyAndLeftLight</key>\n      <string>uni2512</string>\n      <key>boxDownHeavyAndLeftLight.stypo</key>\n      <string>uni2512.stypo</string>\n      <key>boxDownHeavyAndLeftUpLight</key>\n      <string>uni2527</string>\n      <key>boxDownHeavyAndLeftUpLight.stypo</key>\n      <string>uni2527.stypo</string>\n      <key>boxDownHeavyAndRightLight</key>\n      <string>uni250E</string>\n      <key>boxDownHeavyAndRightLight.stypo</key>\n      <string>uni250E.stypo</string>\n      <key>boxDownHeavyAndRightUpLight</key>\n      <string>uni251F</string>\n      <key>boxDownHeavyAndRightUpLight.stypo</key>\n      <string>uni251F.stypo</string>\n      <key>boxDownHeavyAndUpHorizontalLight</key>\n      <string>uni2541</string>\n      <key>boxDownHeavyAndUpHorizontalLight.stypo</key>\n      <string>uni2541.stypo</string>\n      <key>boxDownLightAndHorizontalHeavy</key>\n      <string>uni252F</string>\n      <key>boxDownLightAndHorizontalHeavy.stypo</key>\n      <string>uni252F.stypo</string>\n      <key>boxDownLightAndLeftHeavy</key>\n      <string>uni2511</string>\n      <key>boxDownLightAndLeftHeavy.stypo</key>\n      <string>uni2511.stypo</string>\n      <key>boxDownLightAndLeftUpHeavy</key>\n      <string>uni2529</string>\n      <key>boxDownLightAndLeftUpHeavy.stypo</key>\n      <string>uni2529.stypo</string>\n      <key>boxDownLightAndRightHeavy</key>\n      <string>uni250D</string>\n      <key>boxDownLightAndRightHeavy.stypo</key>\n      <string>uni250D.stypo</string>\n      <key>boxDownLightAndRightUpHeavy</key>\n      <string>uni2521</string>\n      <key>boxDownLightAndRightUpHeavy.stypo</key>\n      <string>uni2521.stypo</string>\n      <key>boxDownLightAndUpHorizontalHeavy</key>\n      <string>uni2547</string>\n      <key>boxDownLightAndUpHorizontalHeavy.stypo</key>\n      <string>uni2547.stypo</string>\n      <key>boxDownSingleAndHorizontalDouble</key>\n      <string>uni2564</string>\n      <key>boxDownSingleAndHorizontalDouble.stypo</key>\n      <string>uni2564.stypo</string>\n      <key>boxDownSingleAndLeftDouble</key>\n      <string>uni2555</string>\n      <key>boxDownSingleAndLeftDouble.stypo</key>\n      <string>uni2555.stypo</string>\n      <key>boxDownSingleAndRightDouble</key>\n      <string>uni2552</string>\n      <key>boxDownSingleAndRightDouble.stypo</key>\n      <string>uni2552.stypo</string>\n      <key>boxHeavyDoubleDashHorizontal</key>\n      <string>uni254D</string>\n      <key>boxHeavyDoubleDashHorizontal.stypo</key>\n      <string>uni254D.stypo</string>\n      <key>boxHeavyDoubleDashVertical</key>\n      <string>uni254F</string>\n      <key>boxHeavyDoubleDashVertical.stypo</key>\n      <string>uni254F.stypo</string>\n      <key>boxHeavyDown</key>\n      <string>uni257B</string>\n      <key>boxHeavyDown.stypo</key>\n      <string>uni257B.stypo</string>\n      <key>boxHeavyDownAndHorizontal</key>\n      <string>uni2533</string>\n      <key>boxHeavyDownAndHorizontal.stypo</key>\n      <string>uni2533.stypo</string>\n      <key>boxHeavyDownAndLeft</key>\n      <string>uni2513</string>\n      <key>boxHeavyDownAndLeft.stypo</key>\n      <string>uni2513.stypo</string>\n      <key>boxHeavyDownAndRight</key>\n      <string>uni250F</string>\n      <key>boxHeavyDownAndRight.stypo</key>\n      <string>uni250F.stypo</string>\n      <key>boxHeavyHorizontal</key>\n      <string>uni2501</string>\n      <key>boxHeavyHorizontal.stypo</key>\n      <string>uni2501.stypo</string>\n      <key>boxHeavyLeft</key>\n      <string>uni2578</string>\n      <key>boxHeavyLeft.stypo</key>\n      <string>uni2578.stypo</string>\n      <key>boxHeavyLeftAndLightRight</key>\n      <string>uni257E</string>\n      <key>boxHeavyLeftAndLightRight.stypo</key>\n      <string>uni257E.stypo</string>\n      <key>boxHeavyQuadrupleDashHorizontal</key>\n      <string>uni2509</string>\n      <key>boxHeavyQuadrupleDashHorizontal.stypo</key>\n      <string>uni2509.stypo</string>\n      <key>boxHeavyQuadrupleDashVertical</key>\n      <string>uni250B</string>\n      <key>boxHeavyQuadrupleDashVertical.stypo</key>\n      <string>uni250B.stypo</string>\n      <key>boxHeavyRight</key>\n      <string>uni257A</string>\n      <key>boxHeavyRight.stypo</key>\n      <string>uni257A.stypo</string>\n      <key>boxHeavyTripleDashHorizontal</key>\n      <string>uni2505</string>\n      <key>boxHeavyTripleDashHorizontal.stypo</key>\n      <string>uni2505.stypo</string>\n      <key>boxHeavyTripleDashVertical</key>\n      <string>uni2507</string>\n      <key>boxHeavyTripleDashVertical.stypo</key>\n      <string>uni2507.stypo</string>\n      <key>boxHeavyUp</key>\n      <string>uni2579</string>\n      <key>boxHeavyUp.stypo</key>\n      <string>uni2579.stypo</string>\n      <key>boxHeavyUpAndHorizontal</key>\n      <string>uni253B</string>\n      <key>boxHeavyUpAndHorizontal.stypo</key>\n      <string>uni253B.stypo</string>\n      <key>boxHeavyUpAndLeft</key>\n      <string>uni251B</string>\n      <key>boxHeavyUpAndLeft.stypo</key>\n      <string>uni251B.stypo</string>\n      <key>boxHeavyUpAndLightDown</key>\n      <string>uni257F</string>\n      <key>boxHeavyUpAndLightDown.stypo</key>\n      <string>uni257F.stypo</string>\n      <key>boxHeavyUpAndRight</key>\n      <string>uni2517</string>\n      <key>boxHeavyUpAndRight.stypo</key>\n      <string>uni2517.stypo</string>\n      <key>boxHeavyVertical</key>\n      <string>uni2503</string>\n      <key>boxHeavyVertical.stypo</key>\n      <string>uni2503.stypo</string>\n      <key>boxHeavyVerticalAndHorizontal</key>\n      <string>uni254B</string>\n      <key>boxHeavyVerticalAndHorizontal.stypo</key>\n      <string>uni254B.stypo</string>\n      <key>boxHeavyVerticalAndLeft</key>\n      <string>uni252B</string>\n      <key>boxHeavyVerticalAndLeft.stypo</key>\n      <string>uni252B.stypo</string>\n      <key>boxHeavyVerticalAndRight</key>\n      <string>uni2523</string>\n      <key>boxHeavyVerticalAndRight.stypo</key>\n      <string>uni2523.stypo</string>\n      <key>boxLeftDownHeavyAndRightUpLight</key>\n      <string>uni2545</string>\n      <key>boxLeftDownHeavyAndRightUpLight.stypo</key>\n      <string>uni2545.stypo</string>\n      <key>boxLeftHeavyAndRightDownLight</key>\n      <string>uni252D</string>\n      <key>boxLeftHeavyAndRightDownLight.stypo</key>\n      <string>uni252D.stypo</string>\n      <key>boxLeftHeavyAndRightUpLight</key>\n      <string>uni2535</string>\n      <key>boxLeftHeavyAndRightUpLight.stypo</key>\n      <string>uni2535.stypo</string>\n      <key>boxLeftHeavyAndRightVerticalLight</key>\n      <string>uni253D</string>\n      <key>boxLeftHeavyAndRightVerticalLight.stypo</key>\n      <string>uni253D.stypo</string>\n      <key>boxLeftLightAndRightDownHeavy</key>\n      <string>uni2532</string>\n      <key>boxLeftLightAndRightDownHeavy.stypo</key>\n      <string>uni2532.stypo</string>\n      <key>boxLeftLightAndRightUpHeavy</key>\n      <string>uni253A</string>\n      <key>boxLeftLightAndRightUpHeavy.stypo</key>\n      <string>uni253A.stypo</string>\n      <key>boxLeftLightAndRightVerticalHeavy</key>\n      <string>uni254A</string>\n      <key>boxLeftLightAndRightVerticalHeavy.stypo</key>\n      <string>uni254A.stypo</string>\n      <key>boxLeftUpHeavyAndRightDownLight</key>\n      <string>uni2543</string>\n      <key>boxLeftUpHeavyAndRightDownLight.stypo</key>\n      <string>uni2543.stypo</string>\n      <key>boxLightArcDownAndLeft</key>\n      <string>uni256E</string>\n      <key>boxLightArcDownAndLeft.stypo</key>\n      <string>uni256E.stypo</string>\n      <key>boxLightArcDownAndRight</key>\n      <string>uni256D</string>\n      <key>boxLightArcDownAndRight.stypo</key>\n      <string>uni256D.stypo</string>\n      <key>boxLightArcUpAndLeft</key>\n      <string>uni256F</string>\n      <key>boxLightArcUpAndLeft.stypo</key>\n      <string>uni256F.stypo</string>\n      <key>boxLightArcUpAndRight</key>\n      <string>uni2570</string>\n      <key>boxLightArcUpAndRight.stypo</key>\n      <string>uni2570.stypo</string>\n      <key>boxLightDiagonalCross</key>\n      <string>uni2573</string>\n      <key>boxLightDiagonalCross.stypo</key>\n      <string>uni2573.stypo</string>\n      <key>boxLightDiagonalUpperLeftToLowerRight</key>\n      <string>uni2572</string>\n      <key>boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n      <string>uni2572.stypo</string>\n      <key>boxLightDiagonalUpperRightToLowerLeft</key>\n      <string>uni2571</string>\n      <key>boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n      <string>uni2571.stypo</string>\n      <key>boxLightDoubleDashHorizontal</key>\n      <string>uni254C</string>\n      <key>boxLightDoubleDashHorizontal.stypo</key>\n      <string>uni254C.stypo</string>\n      <key>boxLightDoubleDashVertical</key>\n      <string>uni254E</string>\n      <key>boxLightDoubleDashVertical.stypo</key>\n      <string>uni254E.stypo</string>\n      <key>boxLightDown</key>\n      <string>uni2577</string>\n      <key>boxLightDown.stypo</key>\n      <string>uni2577.stypo</string>\n      <key>boxLightDownAndHorizontal</key>\n      <string>uni252C</string>\n      <key>boxLightDownAndHorizontal.stypo</key>\n      <string>uni252C.stypo</string>\n      <key>boxLightDownAndLeft</key>\n      <string>uni2510</string>\n      <key>boxLightDownAndLeft.stypo</key>\n      <string>uni2510.stypo</string>\n      <key>boxLightDownAndRight</key>\n      <string>uni250C</string>\n      <key>boxLightDownAndRight.stypo</key>\n      <string>uni250C.stypo</string>\n      <key>boxLightHorizontal</key>\n      <string>uni2500</string>\n      <key>boxLightHorizontal.stypo</key>\n      <string>uni2500.stypo</string>\n      <key>boxLightLeft</key>\n      <string>uni2574</string>\n      <key>boxLightLeft.stypo</key>\n      <string>uni2574.stypo</string>\n      <key>boxLightLeftAndHeavyRight</key>\n      <string>uni257C</string>\n      <key>boxLightLeftAndHeavyRight.stypo</key>\n      <string>uni257C.stypo</string>\n      <key>boxLightQuadrupleDashHorizontal</key>\n      <string>uni2508</string>\n      <key>boxLightQuadrupleDashHorizontal.stypo</key>\n      <string>uni2508.stypo</string>\n      <key>boxLightQuadrupleDashVertical</key>\n      <string>uni250A</string>\n      <key>boxLightQuadrupleDashVertical.stypo</key>\n      <string>uni250A.stypo</string>\n      <key>boxLightRight</key>\n      <string>uni2576</string>\n      <key>boxLightRight.stypo</key>\n      <string>uni2576.stypo</string>\n      <key>boxLightTripleDashHorizontal</key>\n      <string>uni2504</string>\n      <key>boxLightTripleDashHorizontal.stypo</key>\n      <string>uni2504.stypo</string>\n      <key>boxLightTripleDashVertical</key>\n      <string>uni2506</string>\n      <key>boxLightTripleDashVertical.stypo</key>\n      <string>uni2506.stypo</string>\n      <key>boxLightUp</key>\n      <string>uni2575</string>\n      <key>boxLightUp.stypo</key>\n      <string>uni2575.stypo</string>\n      <key>boxLightUpAndHeavyDown</key>\n      <string>uni257D</string>\n      <key>boxLightUpAndHeavyDown.stypo</key>\n      <string>uni257D.stypo</string>\n      <key>boxLightUpAndHorizontal</key>\n      <string>uni2534</string>\n      <key>boxLightUpAndHorizontal.stypo</key>\n      <string>uni2534.stypo</string>\n      <key>boxLightUpAndLeft</key>\n      <string>uni2518</string>\n      <key>boxLightUpAndLeft.stypo</key>\n      <string>uni2518.stypo</string>\n      <key>boxLightUpAndRight</key>\n      <string>uni2514</string>\n      <key>boxLightUpAndRight.stypo</key>\n      <string>uni2514.stypo</string>\n      <key>boxLightVertical</key>\n      <string>uni2502</string>\n      <key>boxLightVertical.stypo</key>\n      <string>uni2502.stypo</string>\n      <key>boxLightVerticalAndHorizontal</key>\n      <string>uni253C</string>\n      <key>boxLightVerticalAndHorizontal.stypo</key>\n      <string>uni253C.stypo</string>\n      <key>boxLightVerticalAndLeft</key>\n      <string>uni2524</string>\n      <key>boxLightVerticalAndLeft.stypo</key>\n      <string>uni2524.stypo</string>\n      <key>boxLightVerticalAndRight</key>\n      <string>uni251C</string>\n      <key>boxLightVerticalAndRight.stypo</key>\n      <string>uni251C.stypo</string>\n      <key>boxRightDownHeavyAndLeftUpLight</key>\n      <string>uni2546</string>\n      <key>boxRightDownHeavyAndLeftUpLight.stypo</key>\n      <string>uni2546.stypo</string>\n      <key>boxRightHeavyAndLeftDownLight</key>\n      <string>uni252E</string>\n      <key>boxRightHeavyAndLeftDownLight.stypo</key>\n      <string>uni252E.stypo</string>\n      <key>boxRightHeavyAndLeftUpLight</key>\n      <string>uni2536</string>\n      <key>boxRightHeavyAndLeftUpLight.stypo</key>\n      <string>uni2536.stypo</string>\n      <key>boxRightHeavyAndLeftVerticalLight</key>\n      <string>uni253E</string>\n      <key>boxRightHeavyAndLeftVerticalLight.stypo</key>\n      <string>uni253E.stypo</string>\n      <key>boxRightLightAndLeftDownHeavy</key>\n      <string>uni2531</string>\n      <key>boxRightLightAndLeftDownHeavy.stypo</key>\n      <string>uni2531.stypo</string>\n      <key>boxRightLightAndLeftUpHeavy</key>\n      <string>uni2539</string>\n      <key>boxRightLightAndLeftUpHeavy.stypo</key>\n      <string>uni2539.stypo</string>\n      <key>boxRightLightAndLeftVerticalHeavy</key>\n      <string>uni2549</string>\n      <key>boxRightLightAndLeftVerticalHeavy.stypo</key>\n      <string>uni2549.stypo</string>\n      <key>boxRightUpHeavyAndLeftDownLight</key>\n      <string>uni2544</string>\n      <key>boxRightUpHeavyAndLeftDownLight.stypo</key>\n      <string>uni2544.stypo</string>\n      <key>boxUpDoubleAndHorizontalSingle</key>\n      <string>uni2568</string>\n      <key>boxUpDoubleAndHorizontalSingle.stypo</key>\n      <string>uni2568.stypo</string>\n      <key>boxUpDoubleAndLeftSingle</key>\n      <string>uni255C</string>\n      <key>boxUpDoubleAndLeftSingle.stypo</key>\n      <string>uni255C.stypo</string>\n      <key>boxUpDoubleAndRightSingle</key>\n      <string>uni2559</string>\n      <key>boxUpDoubleAndRightSingle.stypo</key>\n      <string>uni2559.stypo</string>\n      <key>boxUpHeavyAndDownHorizontalLight</key>\n      <string>uni2540</string>\n      <key>boxUpHeavyAndDownHorizontalLight.stypo</key>\n      <string>uni2540.stypo</string>\n      <key>boxUpHeavyAndHorizontalLight</key>\n      <string>uni2538</string>\n      <key>boxUpHeavyAndHorizontalLight.stypo</key>\n      <string>uni2538.stypo</string>\n      <key>boxUpHeavyAndLeftDownLight</key>\n      <string>uni2526</string>\n      <key>boxUpHeavyAndLeftDownLight.stypo</key>\n      <string>uni2526.stypo</string>\n      <key>boxUpHeavyAndLeftLight</key>\n      <string>uni251A</string>\n      <key>boxUpHeavyAndLeftLight.stypo</key>\n      <string>uni251A.stypo</string>\n      <key>boxUpHeavyAndRightDownLight</key>\n      <string>uni251E</string>\n      <key>boxUpHeavyAndRightDownLight.stypo</key>\n      <string>uni251E.stypo</string>\n      <key>boxUpHeavyAndRightLight</key>\n      <string>uni2516</string>\n      <key>boxUpHeavyAndRightLight.stypo</key>\n      <string>uni2516.stypo</string>\n      <key>boxUpLightAndDownHorizontalHeavy</key>\n      <string>uni2548</string>\n      <key>boxUpLightAndDownHorizontalHeavy.stypo</key>\n      <string>uni2548.stypo</string>\n      <key>boxUpLightAndHorizontalHeavy</key>\n      <string>uni2537</string>\n      <key>boxUpLightAndHorizontalHeavy.stypo</key>\n      <string>uni2537.stypo</string>\n      <key>boxUpLightAndLeftDownHeavy</key>\n      <string>uni252A</string>\n      <key>boxUpLightAndLeftDownHeavy.stypo</key>\n      <string>uni252A.stypo</string>\n      <key>boxUpLightAndLeftHeavy</key>\n      <string>uni2519</string>\n      <key>boxUpLightAndLeftHeavy.stypo</key>\n      <string>uni2519.stypo</string>\n      <key>boxUpLightAndRightDownHeavy</key>\n      <string>uni2522</string>\n      <key>boxUpLightAndRightDownHeavy.stypo</key>\n      <string>uni2522.stypo</string>\n      <key>boxUpLightAndRightHeavy</key>\n      <string>uni2515</string>\n      <key>boxUpLightAndRightHeavy.stypo</key>\n      <string>uni2515.stypo</string>\n      <key>boxUpSingleAndHorizontalDouble</key>\n      <string>uni2567</string>\n      <key>boxUpSingleAndHorizontalDouble.stypo</key>\n      <string>uni2567.stypo</string>\n      <key>boxUpSingleAndLeftDouble</key>\n      <string>uni255B</string>\n      <key>boxUpSingleAndLeftDouble.stypo</key>\n      <string>uni255B.stypo</string>\n      <key>boxUpSingleAndRightDouble</key>\n      <string>uni2558</string>\n      <key>boxUpSingleAndRightDouble.stypo</key>\n      <string>uni2558.stypo</string>\n      <key>boxVerticalDoubleAndHorizontalSingle</key>\n      <string>uni256B</string>\n      <key>boxVerticalDoubleAndHorizontalSingle.stypo</key>\n      <string>uni256B.stypo</string>\n      <key>boxVerticalDoubleAndLeftSingle</key>\n      <string>uni2562</string>\n      <key>boxVerticalDoubleAndLeftSingle.stypo</key>\n      <string>uni2562.stypo</string>\n      <key>boxVerticalDoubleAndRightSingle</key>\n      <string>uni255F</string>\n      <key>boxVerticalDoubleAndRightSingle.stypo</key>\n      <string>uni255F.stypo</string>\n      <key>boxVerticalHeavyAndHorizontalLight</key>\n      <string>uni2542</string>\n      <key>boxVerticalHeavyAndHorizontalLight.stypo</key>\n      <string>uni2542.stypo</string>\n      <key>boxVerticalHeavyAndLeftLight</key>\n      <string>uni2528</string>\n      <key>boxVerticalHeavyAndLeftLight.stypo</key>\n      <string>uni2528.stypo</string>\n      <key>boxVerticalHeavyAndRightLight</key>\n      <string>uni2520</string>\n      <key>boxVerticalHeavyAndRightLight.stypo</key>\n      <string>uni2520.stypo</string>\n      <key>boxVerticalLightAndHorizontalHeavy</key>\n      <string>uni253F</string>\n      <key>boxVerticalLightAndHorizontalHeavy.stypo</key>\n      <string>uni253F.stypo</string>\n      <key>boxVerticalLightAndLeftHeavy</key>\n      <string>uni2525</string>\n      <key>boxVerticalLightAndLeftHeavy.stypo</key>\n      <string>uni2525.stypo</string>\n      <key>boxVerticalLightAndRightHeavy</key>\n      <string>uni251D</string>\n      <key>boxVerticalLightAndRightHeavy.stypo</key>\n      <string>uni251D.stypo</string>\n      <key>boxVerticalSingleAndHorizontalDouble</key>\n      <string>uni256A</string>\n      <key>boxVerticalSingleAndHorizontalDouble.stypo</key>\n      <string>uni256A.stypo</string>\n      <key>boxVerticalSingleAndLeftDouble</key>\n      <string>uni2561</string>\n      <key>boxVerticalSingleAndLeftDouble.stypo</key>\n      <string>uni2561.stypo</string>\n      <key>boxVerticalSingleAndRightDouble</key>\n      <string>uni255E</string>\n      <key>boxVerticalSingleAndRightDouble.stypo</key>\n      <string>uni255E.stypo</string>\n      <key>brevecomb</key>\n      <string>uni0306</string>\n      <key>brevecomb-cy</key>\n      <string>brevecombcy</string>\n      <key>brevecomb-cy.case</key>\n      <string>brevecombcy.case</string>\n      <key>brevecomb.case</key>\n      <string>uni0306.case</string>\n      <key>bulletoperator</key>\n      <string>uni2219</string>\n      <key>bullseye</key>\n      <string>uni25CE</string>\n      <key>cancelControl</key>\n      <string>uni2418</string>\n      <key>cancelControl.ss20</key>\n      <string>uni2418.ss20</string>\n      <key>careof</key>\n      <string>uni2105</string>\n      <key>caroncomb</key>\n      <string>uni030C</string>\n      <key>caroncomb.case</key>\n      <string>uni030C.case</string>\n      <key>carriageReturnControl</key>\n      <string>uni240D</string>\n      <key>carriageReturnControl.ss20</key>\n      <string>uni240D.ss20</string>\n      <key>cedi</key>\n      <string>uni20B5</string>\n      <key>cedillacomb</key>\n      <string>uni0327</string>\n      <key>che-cy</key>\n      <string>uni0447</string>\n      <key>checkmark</key>\n      <string>uni2713</string>\n      <key>chedescender-cy</key>\n      <string>uni04B7</string>\n      <key>circumflexcomb</key>\n      <string>uni0302</string>\n      <key>circumflexcomb.case</key>\n      <string>uni0302.case</string>\n      <key>clubBlackSuit</key>\n      <string>club</string>\n      <key>colonsign</key>\n      <string>colonmonetary</string>\n      <key>colontriangularmod</key>\n      <string>uni02D0</string>\n      <key>comma-ar</key>\n      <string>uni060C</string>\n      <key>commaabovecomb</key>\n      <string>uni0313</string>\n      <key>commaaboverightcomb</key>\n      <string>uni0315</string>\n      <key>commaaccentcomb</key>\n      <string>uni0326</string>\n      <key>commaturnedabovecomb</key>\n      <string>uni0312</string>\n      <key>commaturnedmod</key>\n      <string>uni02BB</string>\n      <key>crosshatchFillSquare</key>\n      <string>uni25A6</string>\n      <key>cuberoot-ar</key>\n      <string>uni0606</string>\n      <key>dad-ar</key>\n      <string>uni0636</string>\n      <key>dad-ar.alt</key>\n      <string>uni0636.alt</string>\n      <key>dad-ar.fina</key>\n      <string>uniFEBE</string>\n      <key>dad-ar.fina.alt</key>\n      <string>uni0636.fina.alt</string>\n      <key>dad-ar.init</key>\n      <string>uniFEBF</string>\n      <key>dad-ar.medi</key>\n      <string>uniFEC0</string>\n      <key>dadDotbelow-ar</key>\n      <string>uni06FB</string>\n      <key>dadDotbelow-ar.alt</key>\n      <string>uni06FB.alt</string>\n      <key>dadDotbelow-ar.fina</key>\n      <string>uni06FB.fina</string>\n      <key>dadDotbelow-ar.fina.alt</key>\n      <string>uni06FB.fina.alt</string>\n      <key>dadDotbelow-ar.init</key>\n      <string>uni06FB.init</string>\n      <key>dadDotbelow-ar.medi</key>\n      <string>uni06FB.medi</string>\n      <key>dagesh-hb</key>\n      <string>uni05BC</string>\n      <key>dahal-ar</key>\n      <string>uni068C</string>\n      <key>dahal-ar.fina</key>\n      <string>uniFB85</string>\n      <key>dal-ar</key>\n      <string>uni062F</string>\n      <key>dal-ar.fina</key>\n      <string>uniFEAA</string>\n      <key>dalDotbelow-ar</key>\n      <string>uni068A</string>\n      <key>dalDotbelow-ar.fina</key>\n      <string>uni068A.fina</string>\n      <key>dalDotbelowTah-ar</key>\n      <string>uni068B</string>\n      <key>dalDotbelowTah-ar.fina</key>\n      <string>uni068B.fina</string>\n      <key>dalFourdots-ar</key>\n      <string>uni0690</string>\n      <key>dalFourdots-ar.fina</key>\n      <string>uni0690.fina</string>\n      <key>dalRing-ar</key>\n      <string>uni0689</string>\n      <key>dalRing-ar.fina</key>\n      <string>uni0689.fina</string>\n      <key>dalThreedotsbelow-ar</key>\n      <string>uni08AE</string>\n      <key>dalThreedotsbelow-ar.fina</key>\n      <string>uni08AE.fina</string>\n      <key>dalThreedotsdown-ar</key>\n      <string>uni068F</string>\n      <key>dalThreedotsdown-ar.fina</key>\n      <string>uni068F.fina</string>\n      <key>dalTwodotsverticalbelowTahabove-ar</key>\n      <string>dalTwodotsverticalbelowTahabovear</string>\n      <key>dalTwodotsverticalbelowTahabove-ar.fina</key>\n      <string>dalTwodotsverticalbelowTahabovear.fina</string>\n      <key>dalVinvertedabove-ar</key>\n      <string>uni06EE</string>\n      <key>dalVinvertedabove-ar.fina</key>\n      <string>uni06EE.fina</string>\n      <key>dalVinvertedbelow-ar</key>\n      <string>uni075A</string>\n      <key>dalVinvertedbelow-ar.fina</key>\n      <string>uni075A.fina</string>\n      <key>dalet-hb</key>\n      <string>uni05D3</string>\n      <key>daletdagesh-hb</key>\n      <string>uniFB33</string>\n      <key>damma-ar</key>\n      <string>uni064F</string>\n      <key>dammatan-ar</key>\n      <string>uni064C</string>\n      <key>dashdownArrow</key>\n      <string>uni21E3</string>\n      <key>dataLinkEscapeControl</key>\n      <string>uni2410</string>\n      <key>dataLinkEscapeControl.ss20</key>\n      <string>uni2410.ss20</string>\n      <key>dateseparator-ar</key>\n      <string>uni060D</string>\n      <key>ddahal-ar</key>\n      <string>uni068D</string>\n      <key>ddahal-ar.fina</key>\n      <string>uniFB83</string>\n      <key>ddal-ar</key>\n      <string>uni0688</string>\n      <key>ddal-ar.fina</key>\n      <string>uniFB89</string>\n      <key>de-cy</key>\n      <string>uni0434</string>\n      <key>de-cy.loclBGR</key>\n      <string>uni0434.loclBGR</string>\n      <key>decimalseparator-ar</key>\n      <string>uni066B</string>\n      <key>deleteControl</key>\n      <string>uni2421</string>\n      <key>deleteFormTwoControl</key>\n      <string>uni2425</string>\n      <key>deviceControlFourControl</key>\n      <string>uni2414</string>\n      <key>deviceControlOneControl</key>\n      <string>uni2411</string>\n      <key>deviceControlThreeControl</key>\n      <string>uni2413</string>\n      <key>deviceControlTwoControl</key>\n      <string>uni2412</string>\n      <key>diagonalcrosshatchFillSquare</key>\n      <string>uni25A9</string>\n      <key>diamondBlackSuit</key>\n      <string>diamond</string>\n      <key>dieresiscomb</key>\n      <string>uni0308</string>\n      <key>dieresiscomb.case</key>\n      <string>uni0308.case</string>\n      <key>divisionslash</key>\n      <string>uni2215</string>\n      <key>dje-cy</key>\n      <string>uni0452</string>\n      <key>dotabove-ar</key>\n      <string>dotabovear</string>\n      <key>dotaccentcomb</key>\n      <string>uni0307</string>\n      <key>dotaccentcomb.case</key>\n      <string>uni0307.case</string>\n      <key>dotbelow-ar</key>\n      <string>dotbelowar</string>\n      <key>dotcenter-ar</key>\n      <string>dotcenterar</string>\n      <key>dots1-braille</key>\n      <string>uni2801</string>\n      <key>dots12-braille</key>\n      <string>uni2803</string>\n      <key>dots123-braille</key>\n      <string>uni2807</string>\n      <key>dots1234-braille</key>\n      <string>uni280F</string>\n      <key>dots12345-braille</key>\n      <string>uni281F</string>\n      <key>dots123456-braille</key>\n      <string>uni283F</string>\n      <key>dots1234567-braille</key>\n      <string>uni287F</string>\n      <key>dots12345678-braille</key>\n      <string>uni28FF</string>\n      <key>dots1234568-braille</key>\n      <string>uni28BF</string>\n      <key>dots123457-braille</key>\n      <string>uni285F</string>\n      <key>dots1234578-braille</key>\n      <string>uni28DF</string>\n      <key>dots123458-braille</key>\n      <string>uni289F</string>\n      <key>dots12346-braille</key>\n      <string>uni282F</string>\n      <key>dots123467-braille</key>\n      <string>uni286F</string>\n      <key>dots1234678-braille</key>\n      <string>uni28EF</string>\n      <key>dots123468-braille</key>\n      <string>uni28AF</string>\n      <key>dots12347-braille</key>\n      <string>uni284F</string>\n      <key>dots123478-braille</key>\n      <string>uni28CF</string>\n      <key>dots12348-braille</key>\n      <string>uni288F</string>\n      <key>dots1235-braille</key>\n      <string>uni2817</string>\n      <key>dots12356-braille</key>\n      <string>uni2837</string>\n      <key>dots123567-braille</key>\n      <string>uni2877</string>\n      <key>dots1235678-braille</key>\n      <string>uni28F7</string>\n      <key>dots123568-braille</key>\n      <string>uni28B7</string>\n      <key>dots12357-braille</key>\n      <string>uni2857</string>\n      <key>dots123578-braille</key>\n      <string>uni28D7</string>\n      <key>dots12358-braille</key>\n      <string>uni2897</string>\n      <key>dots1236-braille</key>\n      <string>uni2827</string>\n      <key>dots12367-braille</key>\n      <string>uni2867</string>\n      <key>dots123678-braille</key>\n      <string>uni28E7</string>\n      <key>dots12368-braille</key>\n      <string>uni28A7</string>\n      <key>dots1237-braille</key>\n      <string>uni2847</string>\n      <key>dots12378-braille</key>\n      <string>uni28C7</string>\n      <key>dots1238-braille</key>\n      <string>uni2887</string>\n      <key>dots124-braille</key>\n      <string>uni280B</string>\n      <key>dots1245-braille</key>\n      <string>uni281B</string>\n      <key>dots12456-braille</key>\n      <string>uni283B</string>\n      <key>dots124567-braille</key>\n      <string>uni287B</string>\n      <key>dots1245678-braille</key>\n      <string>uni28FB</string>\n      <key>dots124568-braille</key>\n      <string>uni28BB</string>\n      <key>dots12457-braille</key>\n      <string>uni285B</string>\n      <key>dots124578-braille</key>\n      <string>uni28DB</string>\n      <key>dots12458-braille</key>\n      <string>uni289B</string>\n      <key>dots1246-braille</key>\n      <string>uni282B</string>\n      <key>dots12467-braille</key>\n      <string>uni286B</string>\n      <key>dots124678-braille</key>\n      <string>uni28EB</string>\n      <key>dots12468-braille</key>\n      <string>uni28AB</string>\n      <key>dots1247-braille</key>\n      <string>uni284B</string>\n      <key>dots12478-braille</key>\n      <string>uni28CB</string>\n      <key>dots1248-braille</key>\n      <string>uni288B</string>\n      <key>dots125-braille</key>\n      <string>uni2813</string>\n      <key>dots1256-braille</key>\n      <string>uni2833</string>\n      <key>dots12567-braille</key>\n      <string>uni2873</string>\n      <key>dots125678-braille</key>\n      <string>uni28F3</string>\n      <key>dots12568-braille</key>\n      <string>uni28B3</string>\n      <key>dots1257-braille</key>\n      <string>uni2853</string>\n      <key>dots12578-braille</key>\n      <string>uni28D3</string>\n      <key>dots1258-braille</key>\n      <string>uni2893</string>\n      <key>dots126-braille</key>\n      <string>uni2823</string>\n      <key>dots1267-braille</key>\n      <string>uni2863</string>\n      <key>dots12678-braille</key>\n      <string>uni28E3</string>\n      <key>dots1268-braille</key>\n      <string>uni28A3</string>\n      <key>dots127-braille</key>\n      <string>uni2843</string>\n      <key>dots1278-braille</key>\n      <string>uni28C3</string>\n      <key>dots128-braille</key>\n      <string>uni2883</string>\n      <key>dots13-braille</key>\n      <string>uni2805</string>\n      <key>dots134-braille</key>\n      <string>uni280D</string>\n      <key>dots1345-braille</key>\n      <string>uni281D</string>\n      <key>dots13456-braille</key>\n      <string>uni283D</string>\n      <key>dots134567-braille</key>\n      <string>uni287D</string>\n      <key>dots1345678-braille</key>\n      <string>uni28FD</string>\n      <key>dots134568-braille</key>\n      <string>uni28BD</string>\n      <key>dots13457-braille</key>\n      <string>uni285D</string>\n      <key>dots134578-braille</key>\n      <string>uni28DD</string>\n      <key>dots13458-braille</key>\n      <string>uni289D</string>\n      <key>dots1346-braille</key>\n      <string>uni282D</string>\n      <key>dots13467-braille</key>\n      <string>uni286D</string>\n      <key>dots134678-braille</key>\n      <string>uni28ED</string>\n      <key>dots13468-braille</key>\n      <string>uni28AD</string>\n      <key>dots1347-braille</key>\n      <string>uni284D</string>\n      <key>dots13478-braille</key>\n      <string>uni28CD</string>\n      <key>dots1348-braille</key>\n      <string>uni288D</string>\n      <key>dots135-braille</key>\n      <string>uni2815</string>\n      <key>dots1356-braille</key>\n      <string>uni2835</string>\n      <key>dots13567-braille</key>\n      <string>uni2875</string>\n      <key>dots135678-braille</key>\n      <string>uni28F5</string>\n      <key>dots13568-braille</key>\n      <string>uni28B5</string>\n      <key>dots1357-braille</key>\n      <string>uni2855</string>\n      <key>dots13578-braille</key>\n      <string>uni28D5</string>\n      <key>dots1358-braille</key>\n      <string>uni2895</string>\n      <key>dots136-braille</key>\n      <string>uni2825</string>\n      <key>dots1367-braille</key>\n      <string>uni2865</string>\n      <key>dots13678-braille</key>\n      <string>uni28E5</string>\n      <key>dots1368-braille</key>\n      <string>uni28A5</string>\n      <key>dots137-braille</key>\n      <string>uni2845</string>\n      <key>dots1378-braille</key>\n      <string>uni28C5</string>\n      <key>dots138-braille</key>\n      <string>uni2885</string>\n      <key>dots14-braille</key>\n      <string>uni2809</string>\n      <key>dots145-braille</key>\n      <string>uni2819</string>\n      <key>dots1456-braille</key>\n      <string>uni2839</string>\n      <key>dots14567-braille</key>\n      <string>uni2879</string>\n      <key>dots145678-braille</key>\n      <string>uni28F9</string>\n      <key>dots14568-braille</key>\n      <string>uni28B9</string>\n      <key>dots1457-braille</key>\n      <string>uni2859</string>\n      <key>dots14578-braille</key>\n      <string>uni28D9</string>\n      <key>dots1458-braille</key>\n      <string>uni2899</string>\n      <key>dots146-braille</key>\n      <string>uni2829</string>\n      <key>dots1467-braille</key>\n      <string>uni2869</string>\n      <key>dots14678-braille</key>\n      <string>uni28E9</string>\n      <key>dots1468-braille</key>\n      <string>uni28A9</string>\n      <key>dots147-braille</key>\n      <string>uni2849</string>\n      <key>dots1478-braille</key>\n      <string>uni28C9</string>\n      <key>dots148-braille</key>\n      <string>uni2889</string>\n      <key>dots15-braille</key>\n      <string>uni2811</string>\n      <key>dots156-braille</key>\n      <string>uni2831</string>\n      <key>dots1567-braille</key>\n      <string>uni2871</string>\n      <key>dots15678-braille</key>\n      <string>uni28F1</string>\n      <key>dots1568-braille</key>\n      <string>uni28B1</string>\n      <key>dots157-braille</key>\n      <string>uni2851</string>\n      <key>dots1578-braille</key>\n      <string>uni28D1</string>\n      <key>dots158-braille</key>\n      <string>uni2891</string>\n      <key>dots16-braille</key>\n      <string>uni2821</string>\n      <key>dots167-braille</key>\n      <string>uni2861</string>\n      <key>dots1678-braille</key>\n      <string>uni28E1</string>\n      <key>dots168-braille</key>\n      <string>uni28A1</string>\n      <key>dots17-braille</key>\n      <string>uni2841</string>\n      <key>dots178-braille</key>\n      <string>uni28C1</string>\n      <key>dots18-braille</key>\n      <string>uni2881</string>\n      <key>dots2-braille</key>\n      <string>uni2802</string>\n      <key>dots23-braille</key>\n      <string>uni2806</string>\n      <key>dots234-braille</key>\n      <string>uni280E</string>\n      <key>dots2345-braille</key>\n      <string>uni281E</string>\n      <key>dots23456-braille</key>\n      <string>uni283E</string>\n      <key>dots234567-braille</key>\n      <string>uni287E</string>\n      <key>dots2345678-braille</key>\n      <string>uni28FE</string>\n      <key>dots234568-braille</key>\n      <string>uni28BE</string>\n      <key>dots23457-braille</key>\n      <string>uni285E</string>\n      <key>dots234578-braille</key>\n      <string>uni28DE</string>\n      <key>dots23458-braille</key>\n      <string>uni289E</string>\n      <key>dots2346-braille</key>\n      <string>uni282E</string>\n      <key>dots23467-braille</key>\n      <string>uni286E</string>\n      <key>dots234678-braille</key>\n      <string>uni28EE</string>\n      <key>dots23468-braille</key>\n      <string>uni28AE</string>\n      <key>dots2347-braille</key>\n      <string>uni284E</string>\n      <key>dots23478-braille</key>\n      <string>uni28CE</string>\n      <key>dots2348-braille</key>\n      <string>uni288E</string>\n      <key>dots235-braille</key>\n      <string>uni2816</string>\n      <key>dots2356-braille</key>\n      <string>uni2836</string>\n      <key>dots23567-braille</key>\n      <string>uni2876</string>\n      <key>dots235678-braille</key>\n      <string>uni28F6</string>\n      <key>dots23568-braille</key>\n      <string>uni28B6</string>\n      <key>dots2357-braille</key>\n      <string>uni2856</string>\n      <key>dots23578-braille</key>\n      <string>uni28D6</string>\n      <key>dots2358-braille</key>\n      <string>uni2896</string>\n      <key>dots236-braille</key>\n      <string>uni2826</string>\n      <key>dots2367-braille</key>\n      <string>uni2866</string>\n      <key>dots23678-braille</key>\n      <string>uni28E6</string>\n      <key>dots2368-braille</key>\n      <string>uni28A6</string>\n      <key>dots237-braille</key>\n      <string>uni2846</string>\n      <key>dots2378-braille</key>\n      <string>uni28C6</string>\n      <key>dots238-braille</key>\n      <string>uni2886</string>\n      <key>dots24-braille</key>\n      <string>uni280A</string>\n      <key>dots245-braille</key>\n      <string>uni281A</string>\n      <key>dots2456-braille</key>\n      <string>uni283A</string>\n      <key>dots24567-braille</key>\n      <string>uni287A</string>\n      <key>dots245678-braille</key>\n      <string>uni28FA</string>\n      <key>dots24568-braille</key>\n      <string>uni28BA</string>\n      <key>dots2457-braille</key>\n      <string>uni285A</string>\n      <key>dots24578-braille</key>\n      <string>uni28DA</string>\n      <key>dots2458-braille</key>\n      <string>uni289A</string>\n      <key>dots246-braille</key>\n      <string>uni282A</string>\n      <key>dots2467-braille</key>\n      <string>uni286A</string>\n      <key>dots24678-braille</key>\n      <string>uni28EA</string>\n      <key>dots2468-braille</key>\n      <string>uni28AA</string>\n      <key>dots247-braille</key>\n      <string>uni284A</string>\n      <key>dots2478-braille</key>\n      <string>uni28CA</string>\n      <key>dots248-braille</key>\n      <string>uni288A</string>\n      <key>dots25-braille</key>\n      <string>uni2812</string>\n      <key>dots256-braille</key>\n      <string>uni2832</string>\n      <key>dots2567-braille</key>\n      <string>uni2872</string>\n      <key>dots25678-braille</key>\n      <string>uni28F2</string>\n      <key>dots2568-braille</key>\n      <string>uni28B2</string>\n      <key>dots257-braille</key>\n      <string>uni2852</string>\n      <key>dots2578-braille</key>\n      <string>uni28D2</string>\n      <key>dots258-braille</key>\n      <string>uni2892</string>\n      <key>dots26-braille</key>\n      <string>uni2822</string>\n      <key>dots267-braille</key>\n      <string>uni2862</string>\n      <key>dots2678-braille</key>\n      <string>uni28E2</string>\n      <key>dots268-braille</key>\n      <string>uni28A2</string>\n      <key>dots27-braille</key>\n      <string>uni2842</string>\n      <key>dots278-braille</key>\n      <string>uni28C2</string>\n      <key>dots28-braille</key>\n      <string>uni2882</string>\n      <key>dots3-braille</key>\n      <string>uni2804</string>\n      <key>dots34-braille</key>\n      <string>uni280C</string>\n      <key>dots345-braille</key>\n      <string>uni281C</string>\n      <key>dots3456-braille</key>\n      <string>uni283C</string>\n      <key>dots34567-braille</key>\n      <string>uni287C</string>\n      <key>dots345678-braille</key>\n      <string>uni28FC</string>\n      <key>dots34568-braille</key>\n      <string>uni28BC</string>\n      <key>dots3457-braille</key>\n      <string>uni285C</string>\n      <key>dots34578-braille</key>\n      <string>uni28DC</string>\n      <key>dots3458-braille</key>\n      <string>uni289C</string>\n      <key>dots346-braille</key>\n      <string>uni282C</string>\n      <key>dots3467-braille</key>\n      <string>uni286C</string>\n      <key>dots34678-braille</key>\n      <string>uni28EC</string>\n      <key>dots3468-braille</key>\n      <string>uni28AC</string>\n      <key>dots347-braille</key>\n      <string>uni284C</string>\n      <key>dots3478-braille</key>\n      <string>uni28CC</string>\n      <key>dots348-braille</key>\n      <string>uni288C</string>\n      <key>dots35-braille</key>\n      <string>uni2814</string>\n      <key>dots356-braille</key>\n      <string>uni2834</string>\n      <key>dots3567-braille</key>\n      <string>uni2874</string>\n      <key>dots35678-braille</key>\n      <string>uni28F4</string>\n      <key>dots3568-braille</key>\n      <string>uni28B4</string>\n      <key>dots357-braille</key>\n      <string>uni2854</string>\n      <key>dots3578-braille</key>\n      <string>uni28D4</string>\n      <key>dots358-braille</key>\n      <string>uni2894</string>\n      <key>dots36-braille</key>\n      <string>uni2824</string>\n      <key>dots367-braille</key>\n      <string>uni2864</string>\n      <key>dots3678-braille</key>\n      <string>uni28E4</string>\n      <key>dots368-braille</key>\n      <string>uni28A4</string>\n      <key>dots37-braille</key>\n      <string>uni2844</string>\n      <key>dots378-braille</key>\n      <string>uni28C4</string>\n      <key>dots38-braille</key>\n      <string>uni2884</string>\n      <key>dots4-braille</key>\n      <string>uni2808</string>\n      <key>dots45-braille</key>\n      <string>uni2818</string>\n      <key>dots456-braille</key>\n      <string>uni2838</string>\n      <key>dots4567-braille</key>\n      <string>uni2878</string>\n      <key>dots45678-braille</key>\n      <string>uni28F8</string>\n      <key>dots4568-braille</key>\n      <string>uni28B8</string>\n      <key>dots457-braille</key>\n      <string>uni2858</string>\n      <key>dots4578-braille</key>\n      <string>uni28D8</string>\n      <key>dots458-braille</key>\n      <string>uni2898</string>\n      <key>dots46-braille</key>\n      <string>uni2828</string>\n      <key>dots467-braille</key>\n      <string>uni2868</string>\n      <key>dots4678-braille</key>\n      <string>uni28E8</string>\n      <key>dots468-braille</key>\n      <string>uni28A8</string>\n      <key>dots47-braille</key>\n      <string>uni2848</string>\n      <key>dots478-braille</key>\n      <string>uni28C8</string>\n      <key>dots48-braille</key>\n      <string>uni2888</string>\n      <key>dots5-braille</key>\n      <string>uni2810</string>\n      <key>dots56-braille</key>\n      <string>uni2830</string>\n      <key>dots567-braille</key>\n      <string>uni2870</string>\n      <key>dots5678-braille</key>\n      <string>uni28F0</string>\n      <key>dots568-braille</key>\n      <string>uni28B0</string>\n      <key>dots57-braille</key>\n      <string>uni2850</string>\n      <key>dots578-braille</key>\n      <string>uni28D0</string>\n      <key>dots58-braille</key>\n      <string>uni2890</string>\n      <key>dots6-braille</key>\n      <string>uni2820</string>\n      <key>dots67-braille</key>\n      <string>uni2860</string>\n      <key>dots678-braille</key>\n      <string>uni28E0</string>\n      <key>dots68-braille</key>\n      <string>uni28A0</string>\n      <key>dots7-braille</key>\n      <string>uni2840</string>\n      <key>dots78-braille</key>\n      <string>uni28C0</string>\n      <key>dots8-braille</key>\n      <string>uni2880</string>\n      <key>dottedCircle</key>\n      <string>uni25CC</string>\n      <key>dottedSquare</key>\n      <string>uni2B1A</string>\n      <key>doubleverticalbarbelowSymbol-ar</key>\n      <string>uniFBBC</string>\n      <key>doubleverticalbarbelowSymbol-ar.comb</key>\n      <string>uniFBBC.comb</string>\n      <key>downArrow</key>\n      <string>arrowdown</string>\n      <key>downBlackSmallTriangle</key>\n      <string>uni25BE</string>\n      <key>downBlackTriangle</key>\n      <string>triagdn</string>\n      <key>downTipLeftArrow</key>\n      <string>uni21B2</string>\n      <key>downWhiteSmallTriangle</key>\n      <string>uni25BF</string>\n      <key>downWhiteTriangle</key>\n      <string>uni25BD</string>\n      <key>dtail</key>\n      <string>uni0256</string>\n      <key>dul-ar</key>\n      <string>uni068E</string>\n      <key>dul-ar.fina</key>\n      <string>uniFB87</string>\n      <key>dyeh-ar</key>\n      <string>uni0684</string>\n      <key>dyeh-ar.fina</key>\n      <string>uniFB73</string>\n      <key>dyeh-ar.init</key>\n      <string>uniFB74</string>\n      <key>dyeh-ar.medi</key>\n      <string>uniFB75</string>\n      <key>dze-cy</key>\n      <string>uni0455</string>\n      <key>dzhe-cy</key>\n      <string>uni045F</string>\n      <key>e-ar</key>\n      <string>uni06D0</string>\n      <key>e-ar.fina</key>\n      <string>uniFBE5</string>\n      <key>e-ar.fina.alt</key>\n      <string>uni06D0.fina.alt</string>\n      <key>e-ar.init</key>\n      <string>uniFBE6</string>\n      <key>e-ar.init.alt</key>\n      <string>uni06D0.init.alt</string>\n      <key>e-ar.medi</key>\n      <string>uniFBE7</string>\n      <key>e-cy</key>\n      <string>uni0454</string>\n      <key>ecircumflexacute</key>\n      <string>uni1EBF</string>\n      <key>ecircumflexdotbelow</key>\n      <string>uni1EC7</string>\n      <key>ecircumflexgrave</key>\n      <string>uni1EC1</string>\n      <key>ecircumflexhookabove</key>\n      <string>uni1EC3</string>\n      <key>ecircumflextilde</key>\n      <string>uni1EC5</string>\n      <key>edotbelow</key>\n      <string>uni1EB9</string>\n      <key>ef-cy</key>\n      <string>uni0444</string>\n      <key>ef-cy.loclBGR</key>\n      <string>uni0424.loclBGR</string>\n      <key>ehookabove</key>\n      <string>uni1EBB</string>\n      <key>eight-ar</key>\n      <string>uni0668</string>\n      <key>eight-arinferior</key>\n      <string>eightarinferior</string>\n      <key>eight-arsuperior</key>\n      <string>eightarsuperior</string>\n      <key>eight-persian</key>\n      <string>uni06F8</string>\n      <key>eight-persianinferior</key>\n      <string>eightpersianinferior</string>\n      <key>eight-persiansuperior</key>\n      <string>eightpersiansuperior</string>\n      <key>eightinferior</key>\n      <string>uni2088</string>\n      <key>eightsuperior</key>\n      <string>uni2078</string>\n      <key>el-cy</key>\n      <string>uni043B</string>\n      <key>el-cy.loclBGR</key>\n      <string>uni043B.loclBGR</string>\n      <key>em-cy</key>\n      <string>uni043C</string>\n      <key>en-cy</key>\n      <string>uni043D</string>\n      <key>endOfMediumControl</key>\n      <string>uni2419</string>\n      <key>endOfMediumControl.ss20</key>\n      <string>uni2419.ss20</string>\n      <key>endOfTextControl</key>\n      <string>uni2403</string>\n      <key>endOfTextControl.ss20</key>\n      <string>uni2403.ss20</string>\n      <key>endOfTransmissionBlockControl</key>\n      <string>uni2417</string>\n      <key>endOfTransmissionBlockControl.ss20</key>\n      <string>uni2417.ss20</string>\n      <key>endOfTransmissionControl</key>\n      <string>uni2404</string>\n      <key>endOfTransmissionControl.ss20</key>\n      <string>uni2404.ss20</string>\n      <key>endescender-cy</key>\n      <string>uni04A3</string>\n      <key>endofayah-ar</key>\n      <string>uni06DD</string>\n      <key>enquiryControl</key>\n      <string>uni2405</string>\n      <key>enquiryControl.ss20</key>\n      <string>uni2405.ss20</string>\n      <key>eopen</key>\n      <string>uni025B</string>\n      <key>er-cy</key>\n      <string>uni0440</string>\n      <key>ereversed-cy</key>\n      <string>uni044D</string>\n      <key>es-cy</key>\n      <string>uni0441</string>\n      <key>escapeControl</key>\n      <string>uni241B</string>\n      <key>escapeControl.ss20</key>\n      <string>uni241B.ss20</string>\n      <key>esh</key>\n      <string>uni0283</string>\n      <key>etilde</key>\n      <string>uni1EBD</string>\n      <key>eturned</key>\n      <string>uni01DD</string>\n      <key>euro</key>\n      <string>Euro</string>\n      <key>eurocurrency</key>\n      <string>uni20A0</string>\n      <key>exclamdouble</key>\n      <string>exclamdbl</string>\n      <key>ezh</key>\n      <string>uni0292</string>\n      <key>fatha-ar</key>\n      <string>uni064E</string>\n      <key>fathatan-ar</key>\n      <string>uni064B</string>\n      <key>feh-ar</key>\n      <string>uni0641</string>\n      <key>feh-ar.alt</key>\n      <string>uni0641.alt</string>\n      <key>feh-ar.fina</key>\n      <string>uniFED2</string>\n      <key>feh-ar.fina.alt</key>\n      <string>uni0641.fina.alt</string>\n      <key>feh-ar.init</key>\n      <string>uniFED3</string>\n      <key>feh-ar.init.alt</key>\n      <string>uni0641.init.alt</string>\n      <key>feh-ar.medi</key>\n      <string>uniFED4</string>\n      <key>fehDotMovedbelow-ar</key>\n      <string>fehDotMovedbelowar</string>\n      <key>fehDotMovedbelow-ar.alt</key>\n      <string>fehDotMovedbelowar.alt</string>\n      <key>fehDotMovedbelow-ar.fina</key>\n      <string>fehDotMovedbelowar.fina</string>\n      <key>fehDotMovedbelow-ar.fina.alt</key>\n      <string>fehDotMovedbelowar.fina.alt</string>\n      <key>fehDotMovedbelow-ar.init</key>\n      <string>fehDotMovedbelowar.init</string>\n      <key>fehDotMovedbelow-ar.medi</key>\n      <string>fehDotMovedbelowar.medi</string>\n      <key>fehDotbelow-ar</key>\n      <string>uni06A3</string>\n      <key>fehDotbelow-ar.alt</key>\n      <string>uni06A3.alt</string>\n      <key>fehDotbelow-ar.fina</key>\n      <string>uni06A3.fina</string>\n      <key>fehDotbelow-ar.fina.alt</key>\n      <string>uni06A3.fina.alt</string>\n      <key>fehDotbelow-ar.init</key>\n      <string>uni06A3.init</string>\n      <key>fehDotbelow-ar.medi</key>\n      <string>uni06A3.medi</string>\n      <key>fehDotbelowThreedotsabove-ar</key>\n      <string>uni08A4</string>\n      <key>fehDotbelowThreedotsabove-ar.alt</key>\n      <string>uni08A4.alt</string>\n      <key>fehDotbelowThreedotsabove-ar.fina</key>\n      <string>uni08A4.fina</string>\n      <key>fehDotbelowThreedotsabove-ar.fina.alt</key>\n      <string>uni08A4.fina.alt</string>\n      <key>fehDotbelowThreedotsabove-ar.init</key>\n      <string>uni08A4.init</string>\n      <key>fehDotbelowThreedotsabove-ar.medi</key>\n      <string>uni08A4.medi</string>\n      <key>fehDotless-ar</key>\n      <string>uni06A1</string>\n      <key>fehDotless-ar.alt</key>\n      <string>uni06A1.alt</string>\n      <key>fehDotless-ar.fina</key>\n      <string>uni06A1.fina</string>\n      <key>fehDotless-ar.fina.alt</key>\n      <string>uni06A1.fina.alt</string>\n      <key>fehDotless-ar.init</key>\n      <string>uni06A1.init</string>\n      <key>fehDotless-ar.init.alt</key>\n      <string>uni06A1.init.alt</string>\n      <key>fehDotless-ar.medi</key>\n      <string>uni06A1.medi</string>\n      <key>fehThreedotsbelow-ar</key>\n      <string>uni06A5</string>\n      <key>fehThreedotsbelow-ar.alt</key>\n      <string>uni06A5.alt</string>\n      <key>fehThreedotsbelow-ar.fina</key>\n      <string>uni06A5.fina</string>\n      <key>fehThreedotsbelow-ar.fina.alt</key>\n      <string>uni06A5.fina.alt</string>\n      <key>fehThreedotsbelow-ar.init</key>\n      <string>uni06A5.init</string>\n      <key>fehThreedotsbelow-ar.medi</key>\n      <string>uni06A5.medi</string>\n      <key>fehThreedotsupbelow-ar</key>\n      <string>uni0761</string>\n      <key>fehThreedotsupbelow-ar.alt</key>\n      <string>uni0761.alt</string>\n      <key>fehThreedotsupbelow-ar.fina</key>\n      <string>uni0761.fina</string>\n      <key>fehThreedotsupbelow-ar.fina.alt</key>\n      <string>uni0761.fina.alt</string>\n      <key>fehThreedotsupbelow-ar.init</key>\n      <string>uni0761.init</string>\n      <key>fehThreedotsupbelow-ar.medi</key>\n      <string>uni0761.medi</string>\n      <key>fehTwodotsbelow-ar</key>\n      <string>uni0760</string>\n      <key>fehTwodotsbelow-ar.alt</key>\n      <string>uni0760.alt</string>\n      <key>fehTwodotsbelow-ar.fina</key>\n      <string>uni0760.fina</string>\n      <key>fehTwodotsbelow-ar.fina.alt</key>\n      <string>uni0760.fina.alt</string>\n      <key>fehTwodotsbelow-ar.init</key>\n      <string>uni0760.init</string>\n      <key>fehTwodotsbelow-ar.medi</key>\n      <string>uni0760.medi</string>\n      <key>fileSeparatorControl</key>\n      <string>uni241C</string>\n      <key>filledRect</key>\n      <string>filledrect</string>\n      <key>finalkaf-hb</key>\n      <string>uni05DA</string>\n      <key>finalkafdagesh-hb</key>\n      <string>uniFB3A</string>\n      <key>finalmem-hb</key>\n      <string>uni05DD</string>\n      <key>finalnun-hb</key>\n      <string>uni05DF</string>\n      <key>finalpe-hb</key>\n      <string>uni05E3</string>\n      <key>finalpedagesh-hb</key>\n      <string>uniFB43</string>\n      <key>finaltsadi-hb</key>\n      <string>uni05E5</string>\n      <key>firsttonechinese</key>\n      <string>uni02C9</string>\n      <key>fisheye</key>\n      <string>uni25C9</string>\n      <key>five-ar</key>\n      <string>uni0665</string>\n      <key>five-arinferior</key>\n      <string>fivearinferior</string>\n      <key>five-arsuperior</key>\n      <string>fivearsuperior</string>\n      <key>five-persian</key>\n      <string>uni06F5</string>\n      <key>five-persianinferior</key>\n      <string>fivepersianinferior</string>\n      <key>five-persiansuperior</key>\n      <string>fivepersiansuperior</string>\n      <key>fiveinferior</key>\n      <string>uni2085</string>\n      <key>fivesuperior</key>\n      <string>uni2075</string>\n      <key>footnotemarker-ar</key>\n      <string>uni0602</string>\n      <key>formFeedControl</key>\n      <string>uni240C</string>\n      <key>formFeedControl.ss20</key>\n      <string>uni240C.ss20</string>\n      <key>four-ar</key>\n      <string>uni0664</string>\n      <key>four-arinferior</key>\n      <string>fourarinferior</string>\n      <key>four-arsuperior</key>\n      <string>fourarsuperior</string>\n      <key>four-persian</key>\n      <string>uni06F4</string>\n      <key>four-persian.small01</key>\n      <string>uni06F4.small01</string>\n      <key>four-persian.urdu</key>\n      <string>uni06F4.urdu</string>\n      <key>four-persian.urduinferior</key>\n      <string>uni06F4.urduinferior</string>\n      <key>four-persian.urdusuperior</key>\n      <string>uni06F4.urdusuperior</string>\n      <key>four-persianbelow-ar</key>\n      <string>fourpersianbelowar</string>\n      <key>four-persiancenter-ar</key>\n      <string>fourpersiancenterar</string>\n      <key>four-persianinferior</key>\n      <string>fourpersianinferior</string>\n      <key>four-persiansuperior</key>\n      <string>fourpersiansuperior</string>\n      <key>fourdotsabove-ar</key>\n      <string>fourdotsabovear</string>\n      <key>fourdotsbelow-ar</key>\n      <string>fourdotsbelowar</string>\n      <key>fourdotscenter-ar</key>\n      <string>fourdotscenterar</string>\n      <key>fourinferior</key>\n      <string>uni2084</string>\n      <key>foursuperior</key>\n      <string>uni2074</string>\n      <key>fourthroot-ar</key>\n      <string>uni0607</string>\n      <key>fullBlock</key>\n      <string>block</string>\n      <key>fullBlock.stypo</key>\n      <string>block.stypo</string>\n      <key>fullstop-ar</key>\n      <string>uni06D4</string>\n      <key>gaf-ar</key>\n      <string>uni06AF</string>\n      <key>gaf-ar.fina</key>\n      <string>uniFB93</string>\n      <key>gaf-ar.init</key>\n      <string>uniFB94</string>\n      <key>gaf-ar.medi</key>\n      <string>uniFB95</string>\n      <key>gafInvertedstroke-ar</key>\n      <string>uni08B0</string>\n      <key>gafInvertedstroke-ar.fina</key>\n      <string>uni08B0.fina</string>\n      <key>gafInvertedstroke-ar.init</key>\n      <string>uni08B0.init</string>\n      <key>gafInvertedstroke-ar.medi</key>\n      <string>uni08B0.medi</string>\n      <key>gafRing-ar</key>\n      <string>uni06B0</string>\n      <key>gafRing-ar.fina</key>\n      <string>uni06B0.fina</string>\n      <key>gafRing-ar.init</key>\n      <string>uni06B0.init</string>\n      <key>gafRing-ar.medi</key>\n      <string>uni06B0.medi</string>\n      <key>gafThreedots-ar</key>\n      <string>uni06B4</string>\n      <key>gafThreedots-ar.fina</key>\n      <string>uni06B4.fina</string>\n      <key>gafThreedots-ar.init</key>\n      <string>uni06B4.init</string>\n      <key>gafThreedots-ar.medi</key>\n      <string>uni06B4.medi</string>\n      <key>gafTwodotsbelow-ar</key>\n      <string>uni06B2</string>\n      <key>gafTwodotsbelow-ar.fina</key>\n      <string>uni06B2.fina</string>\n      <key>gafTwodotsbelow-ar.init</key>\n      <string>uni06B2.init</string>\n      <key>gafTwodotsbelow-ar.medi</key>\n      <string>uni06B2.medi</string>\n      <key>gafsarkashabove-ar</key>\n      <string>gafsarkashabovear</string>\n      <key>gamma-latin</key>\n      <string>uni0263</string>\n      <key>gcommaaccent</key>\n      <string>uni0123</string>\n      <key>ge-cy</key>\n      <string>uni0433</string>\n      <key>ge-cy.loclBGR</key>\n      <string>uni0433.loclBGR</string>\n      <key>geresh-hb</key>\n      <string>uni05F3</string>\n      <key>gershayim-hb</key>\n      <string>uni05F4</string>\n      <key>ghain-ar</key>\n      <string>uni063A</string>\n      <key>ghain-ar.fina</key>\n      <string>uniFECE</string>\n      <key>ghain-ar.init</key>\n      <string>uniFECF</string>\n      <key>ghain-ar.medi</key>\n      <string>uniFED0</string>\n      <key>ghainDotbelow-ar</key>\n      <string>uni06FC</string>\n      <key>ghainDotbelow-ar.fina</key>\n      <string>uni06FC.fina</string>\n      <key>ghainDotbelow-ar.init</key>\n      <string>uni06FC.init</string>\n      <key>ghainDotbelow-ar.medi</key>\n      <string>uni06FC.medi</string>\n      <key>ghestroke-cy</key>\n      <string>uni0493</string>\n      <key>gheupturn-cy</key>\n      <string>uni0491</string>\n      <key>gimel-hb</key>\n      <string>uni05D2</string>\n      <key>gimeldagesh-hb</key>\n      <string>uniFB32</string>\n      <key>gje-cy</key>\n      <string>uni0453</string>\n      <key>glottalstop</key>\n      <string>uni0294</string>\n      <key>glottalstopmod</key>\n      <string>uni02C0</string>\n      <key>glottalstopreversed</key>\n      <string>uni0295</string>\n      <key>gravetonecomb</key>\n      <string>uni0340</string>\n      <key>groupSeparatorControl</key>\n      <string>uni241D</string>\n      <key>gstroke</key>\n      <string>uni01E5</string>\n      <key>guarani</key>\n      <string>uni20B2</string>\n      <key>gueh-ar</key>\n      <string>uni06B3</string>\n      <key>gueh-ar.fina</key>\n      <string>uniFB97</string>\n      <key>gueh-ar.init</key>\n      <string>uniFB98</string>\n      <key>gueh-ar.medi</key>\n      <string>uniFB99</string>\n      <key>guillemetleft</key>\n      <string>guillemotleft</string>\n      <key>guillemetright</key>\n      <string>guillemotright</string>\n      <key>ha-cy</key>\n      <string>uni0445</string>\n      <key>hadescender-cy</key>\n      <string>uni04B3</string>\n      <key>hah-ar</key>\n      <string>uni062D</string>\n      <key>hah-ar.fina</key>\n      <string>uniFEA2</string>\n      <key>hah-ar.init</key>\n      <string>uniFEA3</string>\n      <key>hah-ar.medi</key>\n      <string>uniFEA4</string>\n      <key>hahFourbelow-ar</key>\n      <string>uni077C</string>\n      <key>hahFourbelow-ar.fina</key>\n      <string>uni077C.fina</string>\n      <key>hahFourbelow-ar.init</key>\n      <string>uni077C.init</string>\n      <key>hahFourbelow-ar.medi</key>\n      <string>uni077C.medi</string>\n      <key>hahHamzaabove-ar</key>\n      <string>uni0681</string>\n      <key>hahHamzaabove-ar.fina</key>\n      <string>uni0681.fina</string>\n      <key>hahHamzaabove-ar.init</key>\n      <string>uni0681.init</string>\n      <key>hahHamzaabove-ar.medi</key>\n      <string>uni0681.medi</string>\n      <key>hahTahTwodotshorizontalabove-ar</key>\n      <string>uni076F</string>\n      <key>hahTahTwodotshorizontalabove-ar.fina</key>\n      <string>uni076F.fina</string>\n      <key>hahTahTwodotshorizontalabove-ar.init</key>\n      <string>uni076F.init</string>\n      <key>hahTahTwodotshorizontalabove-ar.medi</key>\n      <string>uni076F.medi</string>\n      <key>hahTahabove-ar</key>\n      <string>uni0772</string>\n      <key>hahTahabove-ar.fina</key>\n      <string>uni0772.fina</string>\n      <key>hahTahabove-ar.init</key>\n      <string>uni0772.init</string>\n      <key>hahTahabove-ar.medi</key>\n      <string>uni0772.medi</string>\n      <key>hahTahbelow-ar</key>\n      <string>uni076E</string>\n      <key>hahTahbelow-ar.fina</key>\n      <string>uni076E.fina</string>\n      <key>hahTahbelow-ar.init</key>\n      <string>uni076E.init</string>\n      <key>hahTahbelow-ar.medi</key>\n      <string>uni076E.medi</string>\n      <key>hahThreedotsabove-ar</key>\n      <string>uni0685</string>\n      <key>hahThreedotsabove-ar.fina</key>\n      <string>uni0685.fina</string>\n      <key>hahThreedotsabove-ar.init</key>\n      <string>uni0685.init</string>\n      <key>hahThreedotsabove-ar.medi</key>\n      <string>uni0685.medi</string>\n      <key>hahThreedotsupbelow-ar</key>\n      <string>uni0758</string>\n      <key>hahThreedotsupbelow-ar.fina</key>\n      <string>uni0758.fina</string>\n      <key>hahThreedotsupbelow-ar.init</key>\n      <string>uni0758.init</string>\n      <key>hahThreedotsupbelow-ar.medi</key>\n      <string>uni0758.medi</string>\n      <key>hahTwodotshorizontalabove-ar</key>\n      <string>uni0757</string>\n      <key>hahTwodotshorizontalabove-ar.fina</key>\n      <string>uni0757.fina</string>\n      <key>hahTwodotshorizontalabove-ar.init</key>\n      <string>uni0757.init</string>\n      <key>hahTwodotshorizontalabove-ar.medi</key>\n      <string>uni0757.medi</string>\n      <key>hahTwodotsverticalabove-ar</key>\n      <string>uni0682</string>\n      <key>hahTwodotsverticalabove-ar.fina</key>\n      <string>uni0682.fina</string>\n      <key>hahTwodotsverticalabove-ar.init</key>\n      <string>uni0682.init</string>\n      <key>hahTwodotsverticalabove-ar.medi</key>\n      <string>uni0682.medi</string>\n      <key>hamza-ar</key>\n      <string>uni0621</string>\n      <key>hamzaabove-ar</key>\n      <string>uni0654</string>\n      <key>hamzabelow-ar</key>\n      <string>uni0655</string>\n      <key>hardsign-cy</key>\n      <string>uni044A</string>\n      <key>hardsign-cy.loclBGR</key>\n      <string>uni044A.loclBGR</string>\n      <key>hcaron</key>\n      <string>uni021F</string>\n      <key>hdotbelow</key>\n      <string>uni1E25</string>\n      <key>he-hb</key>\n      <string>uni05D4</string>\n      <key>heartBlackSuit</key>\n      <string>heart</string>\n      <key>heavyleftpointinganglebracketornament</key>\n      <string>uni2770</string>\n      <key>heavyleftpointinganglequotationmarkornament</key>\n      <string>uni276E</string>\n      <key>heavyrightpointinganglebracketornament</key>\n      <string>uni2771</string>\n      <key>heavyrightpointinganglequotationmarkornament</key>\n      <string>uni276F</string>\n      <key>hedagesh-hb</key>\n      <string>uniFB34</string>\n      <key>heh-ar</key>\n      <string>uni0647</string>\n      <key>heh-ar.fina</key>\n      <string>uniFEEA</string>\n      <key>heh-ar.init</key>\n      <string>uniFEEB</string>\n      <key>heh-ar.medi</key>\n      <string>uniFEEC</string>\n      <key>hehAlefabove-ar.init</key>\n      <string>uniFCD9</string>\n      <key>hehAlefabove-ar.init.fina</key>\n      <string>hehAlefabovear.init.fina</string>\n      <key>hehDoachashmee-ar</key>\n      <string>uni06BE</string>\n      <key>hehDoachashmee-ar.fina</key>\n      <string>uniFBAB</string>\n      <key>hehDoachashmee-ar.init</key>\n      <string>uniFBAC</string>\n      <key>hehDoachashmee-ar.medi</key>\n      <string>uniFBAD</string>\n      <key>hehHamzaabove-ar</key>\n      <string>uni06C0</string>\n      <key>hehHamzaabove-ar.fina</key>\n      <string>uniFBA5</string>\n      <key>hehVinvertedabove-ar</key>\n      <string>uni06FF</string>\n      <key>hehVinvertedabove-ar.fina</key>\n      <string>uni06FF.fina</string>\n      <key>hehVinvertedabove-ar.init</key>\n      <string>uni06FF.init</string>\n      <key>hehVinvertedabove-ar.medi</key>\n      <string>uni06FF.medi</string>\n      <key>hehgoal-ar</key>\n      <string>uni06C1</string>\n      <key>hehgoal-ar.fina</key>\n      <string>uniFBA7</string>\n      <key>hehgoal-ar.init</key>\n      <string>uniFBA8</string>\n      <key>hehgoal-ar.init.alt</key>\n      <string>uni06C1.init.alt</string>\n      <key>hehgoal-ar.medi</key>\n      <string>uniFBA9</string>\n      <key>hehgoalHamzaabove-ar</key>\n      <string>uni06C2</string>\n      <key>hehgoalHamzaabove-ar.fina</key>\n      <string>uni06C2.fina</string>\n      <key>hehgoalHamzaabove-ar.init</key>\n      <string>uni06C2.init</string>\n      <key>hehgoalHamzaabove-ar.init.alt</key>\n      <string>uni06C2.init.alt</string>\n      <key>hehgoalHamzaabove-ar.medi</key>\n      <string>uni06C2.medi</string>\n      <key>het-hb</key>\n      <string>uni05D7</string>\n      <key>highhamza-ar</key>\n      <string>uni0674</string>\n      <key>highhamzaAlef-ar</key>\n      <string>uni0675</string>\n      <key>highhamzaAlef-ar.fina</key>\n      <string>uni0675.fina</string>\n      <key>highhamzaAlef-ar.fina.rlig</key>\n      <string>uni0675.fina.rlig</string>\n      <key>highhamzaWaw-ar</key>\n      <string>uni0676</string>\n      <key>highhamzaWaw-ar.fina</key>\n      <string>uni0676.fina</string>\n      <key>highhamzaYeh-ar</key>\n      <string>uni0678</string>\n      <key>highhamzaYeh-ar.fina</key>\n      <string>uni0678.fina</string>\n      <key>highhamzaYeh-ar.fina.alt</key>\n      <string>uni0678.fina.alt</string>\n      <key>highhamzaYeh-ar.init</key>\n      <string>uni0678.init</string>\n      <key>highhamzaYeh-ar.init.alt</key>\n      <string>uni0678.init.alt</string>\n      <key>highhamzaYeh-ar.medi</key>\n      <string>uni0678.medi</string>\n      <key>holam-hb</key>\n      <string>uni05B9</string>\n      <key>holamhaser-hb</key>\n      <string>uni05BA</string>\n      <key>horizontalBlackHexagon</key>\n      <string>uni2B23</string>\n      <key>horizontalFillSquare</key>\n      <string>uni25A4</string>\n      <key>horizontalTabulationControl</key>\n      <string>uni2409</string>\n      <key>horizontalTabulationControl.ss20</key>\n      <string>uni2409.ss20</string>\n      <key>horizontalbar</key>\n      <string>uni2015</string>\n      <key>horizontallineextension</key>\n      <string>uni23AF</string>\n      <key>horncomb</key>\n      <string>uni031B</string>\n      <key>horncomb.case</key>\n      <string>uni031B.case</string>\n      <key>hryvnia</key>\n      <string>uni20B4</string>\n      <key>hungarumlautcomb</key>\n      <string>uni030B</string>\n      <key>hungarumlautcomb.case</key>\n      <string>uni030B.case</string>\n      <key>hyphentwo</key>\n      <string>uni2010</string>\n      <key>i-cy</key>\n      <string>uni0456</string>\n      <key>ia-cy</key>\n      <string>uni044F</string>\n      <key>idotbelow</key>\n      <string>uni1ECB</string>\n      <key>idotless</key>\n      <string>dotlessi</string>\n      <key>ie-cy</key>\n      <string>uni0435</string>\n      <key>iegrave-cy</key>\n      <string>uni0450</string>\n      <key>ihookabove</key>\n      <string>uni1EC9</string>\n      <key>ii-cy</key>\n      <string>uni0438</string>\n      <key>ii-cy.loclBGR</key>\n      <string>uni0438.loclBGR</string>\n      <key>iigrave-cy</key>\n      <string>uni045D</string>\n      <key>iigrave-cy.loclBGR</key>\n      <string>uni045D.loclBGR</string>\n      <key>iishort-cy</key>\n      <string>uni0439</string>\n      <key>iishort-cy.loclBGR</key>\n      <string>uni0439.loclBGR</string>\n      <key>imacron-cy</key>\n      <string>uni04E3</string>\n      <key>increment</key>\n      <string>uni2206</string>\n      <key>inverseBullet</key>\n      <string>invbullet</string>\n      <key>inverseWhiteCircle</key>\n      <string>invcircle</string>\n      <key>io-cy</key>\n      <string>uni0451</string>\n      <key>iota-latin</key>\n      <string>uni0269</string>\n      <key>iu-cy</key>\n      <string>uni044E</string>\n      <key>iu-cy.loclBGR</key>\n      <string>uni044E.loclBGR</string>\n      <key>jacute</key>\n      <string>uni006A0301</string>\n      <key>jcaron</key>\n      <string>uni01F0</string>\n      <key>jdotless</key>\n      <string>uni0237</string>\n      <key>je-cy</key>\n      <string>uni0458</string>\n      <key>jeem-ar</key>\n      <string>uni062C</string>\n      <key>jeem-ar.fina</key>\n      <string>uniFE9E</string>\n      <key>jeem-ar.init</key>\n      <string>uniFE9F</string>\n      <key>jeem-ar.medi</key>\n      <string>uniFEA0</string>\n      <key>jeemTwodotsabove-ar</key>\n      <string>uni08A2</string>\n      <key>jeemTwodotsabove-ar.fina</key>\n      <string>uni08A2.fina</string>\n      <key>jeemTwodotsabove-ar.init</key>\n      <string>uni08A2.init</string>\n      <key>jeemTwodotsabove-ar.medi</key>\n      <string>uni08A2.medi</string>\n      <key>jeh-ar</key>\n      <string>uni0698</string>\n      <key>jeh-ar.fina</key>\n      <string>uniFB8B</string>\n      <key>ka-cy</key>\n      <string>uni043A</string>\n      <key>ka-cy.loclBGR</key>\n      <string>uni043A.loclBGR</string>\n      <key>kadescender-cy</key>\n      <string>uni049B</string>\n      <key>kaf-ar</key>\n      <string>uni0643</string>\n      <key>kaf-ar.fina</key>\n      <string>uniFEDA</string>\n      <key>kaf-ar.init</key>\n      <string>uniFEDB</string>\n      <key>kaf-ar.medi</key>\n      <string>uniFEDC</string>\n      <key>kaf-hb</key>\n      <string>uni05DB</string>\n      <key>kafDotabove-ar</key>\n      <string>uni06AC</string>\n      <key>kafDotabove-ar.fina</key>\n      <string>uni06AC.fina</string>\n      <key>kafDotabove-ar.init</key>\n      <string>uni06AC.init</string>\n      <key>kafDotabove-ar.medi</key>\n      <string>uni06AC.medi</string>\n      <key>kafRing-ar</key>\n      <string>uni06AB</string>\n      <key>kafRing-ar.fina</key>\n      <string>uni06AB.fina</string>\n      <key>kafRing-ar.init</key>\n      <string>uni06AB.init</string>\n      <key>kafRing-ar.medi</key>\n      <string>uni06AB.medi</string>\n      <key>kafThreedotsbelow-ar</key>\n      <string>uni06AE</string>\n      <key>kafThreedotsbelow-ar.fina</key>\n      <string>uni06AE.fina</string>\n      <key>kafThreedotsbelow-ar.init</key>\n      <string>uni06AE.init</string>\n      <key>kafThreedotsbelow-ar.medi</key>\n      <string>uni06AE.medi</string>\n      <key>kafTwodotshorizontalabove-ar</key>\n      <string>uni077F</string>\n      <key>kafTwodotshorizontalabove-ar.fina</key>\n      <string>uni077F.fina</string>\n      <key>kafTwodotshorizontalabove-ar.init</key>\n      <string>uni077F.init</string>\n      <key>kafTwodotshorizontalabove-ar.medi</key>\n      <string>uni077F.medi</string>\n      <key>kafdagesh-hb</key>\n      <string>uniFB3B</string>\n      <key>kafswash-ar</key>\n      <string>uni06AA</string>\n      <key>kafswash-ar.alt</key>\n      <string>uni06AA.alt</string>\n      <key>kafswash-ar.fina</key>\n      <string>uni06AA.fina</string>\n      <key>kafswash-ar.fina.alt</key>\n      <string>uni06AA.fina.alt</string>\n      <key>kafswash-ar.init</key>\n      <string>uni06AA.init</string>\n      <key>kafswash-ar.init.alt</key>\n      <string>uni06AA.init.alt</string>\n      <key>kafswash-ar.medi</key>\n      <string>uni06AA.medi</string>\n      <key>kafswash-ar.medi.alt</key>\n      <string>uni06AA.medi.alt</string>\n      <key>kaiSymbol</key>\n      <string>uni03D7</string>\n      <key>kashida-ar</key>\n      <string>uni0640</string>\n      <key>kasra-ar</key>\n      <string>uni0650</string>\n      <key>kasratan-ar</key>\n      <string>uni064D</string>\n      <key>kcommaaccent</key>\n      <string>uni0137</string>\n      <key>kdotbelow</key>\n      <string>uni1E33</string>\n      <key>keheh-ar</key>\n      <string>uni06A9</string>\n      <key>keheh-ar.fina</key>\n      <string>uniFB8F</string>\n      <key>keheh-ar.init</key>\n      <string>uniFB90</string>\n      <key>keheh-ar.medi</key>\n      <string>uniFB91</string>\n      <key>kehehDotabove-ar</key>\n      <string>uni0762</string>\n      <key>kehehDotabove-ar.fina</key>\n      <string>uni0762.fina</string>\n      <key>kehehDotabove-ar.init</key>\n      <string>uni0762.init</string>\n      <key>kehehDotabove-ar.medi</key>\n      <string>uni0762.medi</string>\n      <key>kehehThreedotsabove-ar</key>\n      <string>uni0763</string>\n      <key>kehehThreedotsabove-ar.fina</key>\n      <string>uni0763.fina</string>\n      <key>kehehThreedotsabove-ar.init</key>\n      <string>uni0763.init</string>\n      <key>kehehThreedotsabove-ar.medi</key>\n      <string>uni0763.medi</string>\n      <key>kehehThreedotsbelow-ar</key>\n      <string>uni063C</string>\n      <key>kehehThreedotsbelow-ar.fina</key>\n      <string>uni063C.fina</string>\n      <key>kehehThreedotsbelow-ar.init</key>\n      <string>uni063C.init</string>\n      <key>kehehThreedotsbelow-ar.medi</key>\n      <string>uni063C.medi</string>\n      <key>kehehThreedotsupbelow-ar</key>\n      <string>uni0764</string>\n      <key>kehehThreedotsupbelow-ar.fina</key>\n      <string>uni0764.fina</string>\n      <key>kehehThreedotsupbelow-ar.init</key>\n      <string>uni0764.init</string>\n      <key>kehehThreedotsupbelow-ar.medi</key>\n      <string>uni0764.medi</string>\n      <key>kehehTwodotshorizontalabove-ar</key>\n      <string>uni063B</string>\n      <key>kehehTwodotshorizontalabove-ar.fina</key>\n      <string>uni063B.fina</string>\n      <key>kehehTwodotshorizontalabove-ar.init</key>\n      <string>uni063B.init</string>\n      <key>kehehTwodotshorizontalabove-ar.medi</key>\n      <string>uni063B.medi</string>\n      <key>khah-ar</key>\n      <string>uni062E</string>\n      <key>khah-ar.fina</key>\n      <string>uniFEA6</string>\n      <key>khah-ar.init</key>\n      <string>uniFEA7</string>\n      <key>khah-ar.medi</key>\n      <string>uniFEA8</string>\n      <key>kip</key>\n      <string>uni20AD</string>\n      <key>kirghizoe-ar</key>\n      <string>uni06C5</string>\n      <key>kirghizoe-ar.fina</key>\n      <string>uniFBE1</string>\n      <key>kirghizyu-ar</key>\n      <string>uni06C9</string>\n      <key>kirghizyu-ar.fina</key>\n      <string>uniFBE3</string>\n      <key>kje-cy</key>\n      <string>uni045C</string>\n      <key>klinebelow</key>\n      <string>uni1E35</string>\n      <key>lam-ar</key>\n      <string>uni0644</string>\n      <key>lam-ar.fina</key>\n      <string>uniFEDE</string>\n      <key>lam-ar.init</key>\n      <string>uniFEDF</string>\n      <key>lam-ar.init.rlig</key>\n      <string>uni0644.init.rlig</string>\n      <key>lam-ar.medi</key>\n      <string>uniFEE0</string>\n      <key>lam-ar.medi.rlig</key>\n      <string>uni0644.medi.rlig</string>\n      <key>lamBar-ar</key>\n      <string>uni076A</string>\n      <key>lamBar-ar.fina</key>\n      <string>uni076A.fina</string>\n      <key>lamBar-ar.init</key>\n      <string>uni076A.init</string>\n      <key>lamBar-ar.init.rlig</key>\n      <string>uni076A.init.rlig</string>\n      <key>lamBar-ar.medi</key>\n      <string>uni076A.medi</string>\n      <key>lamBar-ar.medi.rlig</key>\n      <string>uni076A.medi.rlig</string>\n      <key>lamDotabove-ar</key>\n      <string>uni06B6</string>\n      <key>lamDotabove-ar.fina</key>\n      <string>uni06B6.fina</string>\n      <key>lamDotabove-ar.init</key>\n      <string>uni06B6.init</string>\n      <key>lamDotabove-ar.init.rlig</key>\n      <string>uni06B6.init.rlig</string>\n      <key>lamDotabove-ar.medi</key>\n      <string>uni06B6.medi</string>\n      <key>lamDotabove-ar.medi.rlig</key>\n      <string>uni06B6.medi.rlig</string>\n      <key>lamDoublebar-ar</key>\n      <string>uni08A6</string>\n      <key>lamDoublebar-ar.fina</key>\n      <string>uni08A6.fina</string>\n      <key>lamDoublebar-ar.init</key>\n      <string>uni08A6.init</string>\n      <key>lamDoublebar-ar.init.rlig</key>\n      <string>uni08A6.init.rlig</string>\n      <key>lamDoublebar-ar.medi</key>\n      <string>uni08A6.medi</string>\n      <key>lamDoublebar-ar.medi.rlig</key>\n      <string>uni08A6.medi.rlig</string>\n      <key>lamThreedotsabove-ar</key>\n      <string>uni06B7</string>\n      <key>lamThreedotsabove-ar.fina</key>\n      <string>uni06B7.fina</string>\n      <key>lamThreedotsabove-ar.init</key>\n      <string>uni06B7.init</string>\n      <key>lamThreedotsabove-ar.init.rlig</key>\n      <string>uni06B7.init.rlig</string>\n      <key>lamThreedotsabove-ar.medi</key>\n      <string>uni06B7.medi</string>\n      <key>lamThreedotsabove-ar.medi.rlig</key>\n      <string>uni06B7.medi.rlig</string>\n      <key>lamThreedotsbelow-ar</key>\n      <string>uni06B8</string>\n      <key>lamThreedotsbelow-ar.fina</key>\n      <string>uni06B8.fina</string>\n      <key>lamThreedotsbelow-ar.init</key>\n      <string>uni06B8.init</string>\n      <key>lamThreedotsbelow-ar.init.rlig</key>\n      <string>uni06B8.init.rlig</string>\n      <key>lamThreedotsbelow-ar.medi</key>\n      <string>uni06B8.medi</string>\n      <key>lamThreedotsbelow-ar.medi.rlig</key>\n      <string>uni06B8.medi.rlig</string>\n      <key>lamVabove-ar</key>\n      <string>uni06B5</string>\n      <key>lamVabove-ar.fina</key>\n      <string>uni06B5.fina</string>\n      <key>lamVabove-ar.init</key>\n      <string>uni06B5.init</string>\n      <key>lamVabove-ar.init.rlig</key>\n      <string>uni06B5.init.rlig</string>\n      <key>lamVabove-ar.medi</key>\n      <string>uni06B5.medi</string>\n      <key>lamVabove-ar.medi.rlig</key>\n      <string>uni06B5.medi.rlig</string>\n      <key>lam_alef-ar</key>\n      <string>uniFEFB</string>\n      <key>lam_alef-ar.fina</key>\n      <string>uniFEFC</string>\n      <key>lam_alef-ar.fina.short</key>\n      <string>uniFEFB.fina.short</string>\n      <key>lam_alef-ar.short</key>\n      <string>uniFEFB.short</string>\n      <key>lam_alefHamzaabove-ar</key>\n      <string>uniFEF7</string>\n      <key>lam_alefHamzaabove-ar.fina</key>\n      <string>uniFEF8</string>\n      <key>lam_alefHamzabelow-ar</key>\n      <string>uniFEF9</string>\n      <key>lam_alefHamzabelow-ar.fina</key>\n      <string>uniFEFA</string>\n      <key>lam_alefMadda-ar</key>\n      <string>uniFEF5</string>\n      <key>lam_alefMadda-ar.fina</key>\n      <string>uniFEF6</string>\n      <key>lam_alefWasla-ar</key>\n      <string>lam_alefWaslaar</string>\n      <key>lam_alefWasla-ar.fina</key>\n      <string>lam_alefWaslaar.fina</string>\n      <key>lam_lam_heh-ar</key>\n      <string>lam_lam_hehar</string>\n      <key>lambdastroke</key>\n      <string>uni019B</string>\n      <key>lamed-hb</key>\n      <string>uni05DC</string>\n      <key>lameddagesh-hb</key>\n      <string>uniFB3C</string>\n      <key>largeCircle</key>\n      <string>uni25EF</string>\n      <key>lari</key>\n      <string>uni20BE</string>\n      <key>lbar</key>\n      <string>uni019A</string>\n      <key>lbelt</key>\n      <string>uni026C</string>\n      <key>lcommaaccent</key>\n      <string>uni013C</string>\n      <key>ldotbelow</key>\n      <string>uni1E37</string>\n      <key>leftArrow</key>\n      <string>arrowleft</string>\n      <key>leftBlackPointer</key>\n      <string>triaglf</string>\n      <key>leftBlackSmallTriangle</key>\n      <string>uni25C2</string>\n      <key>leftBlackTriangle</key>\n      <string>uni25C0</string>\n      <key>leftBlock</key>\n      <string>lfblock</string>\n      <key>leftBlock.stypo</key>\n      <string>lfblock.stypo</string>\n      <key>leftFiveEighthsBlock</key>\n      <string>uni258B</string>\n      <key>leftFiveEighthsBlock.stypo</key>\n      <string>uni258B.stypo</string>\n      <key>leftHalfBlackCircle</key>\n      <string>uni25D6</string>\n      <key>leftHalfBlackDiamond</key>\n      <string>uni2B16</string>\n      <key>leftHalfBlackSquare</key>\n      <string>uni25E7</string>\n      <key>leftHalfBlackWhiteCircle</key>\n      <string>uni25D0</string>\n      <key>leftOneEighthBlock</key>\n      <string>uni258F</string>\n      <key>leftOneEighthBlock.stypo</key>\n      <string>uni258F.stypo</string>\n      <key>leftOneQuarterBlock</key>\n      <string>uni258E</string>\n      <key>leftOneQuarterBlock.stypo</key>\n      <string>uni258E.stypo</string>\n      <key>leftRightArrow</key>\n      <string>arrowboth</string>\n      <key>leftSevenEighthsBlock</key>\n      <string>uni2589</string>\n      <key>leftSevenEighthsBlock.stypo</key>\n      <string>uni2589.stypo</string>\n      <key>leftThreeEighthsBlock</key>\n      <string>uni258D</string>\n      <key>leftThreeEighthsBlock.stypo</key>\n      <string>uni258D.stypo</string>\n      <key>leftThreeQuartersBlock</key>\n      <string>uni258A</string>\n      <key>leftThreeQuartersBlock.stypo</key>\n      <string>uni258A.stypo</string>\n      <key>leftWhitePointer</key>\n      <string>uni25C5</string>\n      <key>leftWhiteSmallTriangle</key>\n      <string>uni25C3</string>\n      <key>leftWhiteTriangle</key>\n      <string>uni25C1</string>\n      <key>lineFeedControl</key>\n      <string>uni240A</string>\n      <key>lineFeedControl.ss20</key>\n      <string>uni240A.ss20</string>\n      <key>lineseparator</key>\n      <string>uni2028</string>\n      <key>liraTurkish</key>\n      <string>uni20BA</string>\n      <key>literSign</key>\n      <string>uni2113</string>\n      <key>lje-cy</key>\n      <string>uni0459</string>\n      <key>llinebelow</key>\n      <string>uni1E3B</string>\n      <key>lmiddletilde</key>\n      <string>uni026B</string>\n      <key>logicalnotReversed</key>\n      <string>revlogicalnot</string>\n      <key>lowerFiveEighthsBlock</key>\n      <string>uni2585</string>\n      <key>lowerFiveEighthsBlock.stypo</key>\n      <string>uni2585.stypo</string>\n      <key>lowerHalfArc</key>\n      <string>uni25E1</string>\n      <key>lowerHalfBlackWhiteCircle</key>\n      <string>uni25D2</string>\n      <key>lowerHalfBlock</key>\n      <string>dnblock</string>\n      <key>lowerHalfBlock.stypo</key>\n      <string>dnblock.stypo</string>\n      <key>lowerHalfInverseWhiteCircle</key>\n      <string>uni25DB</string>\n      <key>lowerHalfWhiteSquare</key>\n      <string>uni2B12</string>\n      <key>lowerLeftArc</key>\n      <string>uni25DF</string>\n      <key>lowerLeftBlackTriangle</key>\n      <string>uni25E3</string>\n      <key>lowerLeftBlock</key>\n      <string>uni2596</string>\n      <key>lowerLeftBlock.stypo</key>\n      <string>uni2596.stypo</string>\n      <key>lowerLeftHalfWhiteSquare</key>\n      <string>uni2B14</string>\n      <key>lowerLeftQuadrantWhiteCircle</key>\n      <string>uni25F5</string>\n      <key>lowerLeftTriangle</key>\n      <string>uni25FA</string>\n      <key>lowerOneEighthBlock</key>\n      <string>uni2581</string>\n      <key>lowerOneEighthBlock.stypo</key>\n      <string>uni2581.stypo</string>\n      <key>lowerOneQuarterBlock</key>\n      <string>uni2582</string>\n      <key>lowerOneQuarterBlock.stypo</key>\n      <string>uni2582.stypo</string>\n      <key>lowerRightArc</key>\n      <string>uni25DE</string>\n      <key>lowerRightBlackTriangle</key>\n      <string>uni25E2</string>\n      <key>lowerRightBlock</key>\n      <string>uni2597</string>\n      <key>lowerRightBlock.stypo</key>\n      <string>uni2597.stypo</string>\n      <key>lowerRightDiagonalHalfBlackSquare</key>\n      <string>uni25EA</string>\n      <key>lowerRightQuadrantWhiteCircle</key>\n      <string>uni25F6</string>\n      <key>lowerRightTriangle</key>\n      <string>uni25FF</string>\n      <key>lowerSevenEighthsBlock</key>\n      <string>uni2587</string>\n      <key>lowerSevenEighthsBlock.stypo</key>\n      <string>uni2587.stypo</string>\n      <key>lowerThreeEighthsBlock</key>\n      <string>uni2583</string>\n      <key>lowerThreeEighthsBlock.stypo</key>\n      <string>uni2583.stypo</string>\n      <key>lowerThreeQuartersBlock</key>\n      <string>uni2586</string>\n      <key>lowerThreeQuartersBlock.stypo</key>\n      <string>uni2586.stypo</string>\n      <key>lowernumeral-greek</key>\n      <string>uni0375</string>\n      <key>lowlinecomb</key>\n      <string>uni0332</string>\n      <key>macronbelowcomb</key>\n      <string>uni0331</string>\n      <key>macroncomb</key>\n      <string>uni0304</string>\n      <key>macroncomb.case</key>\n      <string>uni0304.case</string>\n      <key>madda-ar</key>\n      <string>uni0653</string>\n      <key>manat</key>\n      <string>uni20BC</string>\n      <key>maqaf-hb</key>\n      <string>uni05BE</string>\n      <key>mars</key>\n      <string>male</string>\n      <key>mediumBlackSmallSquare</key>\n      <string>uni25FE</string>\n      <key>mediumBlackSquare</key>\n      <string>uni25FC</string>\n      <key>mediumWhiteSmallSquare</key>\n      <string>uni25FD</string>\n      <key>mediumWhiteSquare</key>\n      <string>uni25FB</string>\n      <key>mediumleftpointinganglebracketornament</key>\n      <string>uni276C</string>\n      <key>mediumrightpointinganglebracketornament</key>\n      <string>uni276D</string>\n      <key>meem-ar</key>\n      <string>uni0645</string>\n      <key>meem-ar.fina</key>\n      <string>uniFEE2</string>\n      <key>meem-ar.init</key>\n      <string>uniFEE3</string>\n      <key>meem-ar.medi</key>\n      <string>uniFEE4</string>\n      <key>meemDotabove-ar</key>\n      <string>uni0765</string>\n      <key>meemDotabove-ar.fina</key>\n      <string>uni0765.fina</string>\n      <key>meemDotabove-ar.init</key>\n      <string>uni0765.init</string>\n      <key>meemDotabove-ar.medi</key>\n      <string>uni0765.medi</string>\n      <key>meemDotbelow-ar</key>\n      <string>uni0766</string>\n      <key>meemDotbelow-ar.fina</key>\n      <string>uni0766.fina</string>\n      <key>meemDotbelow-ar.init</key>\n      <string>uni0766.init</string>\n      <key>meemDotbelow-ar.medi</key>\n      <string>uni0766.medi</string>\n      <key>meemStopabove-ar</key>\n      <string>uni06E2</string>\n      <key>meemThreedotsabove-ar</key>\n      <string>uni08A7</string>\n      <key>meemThreedotsabove-ar.fina</key>\n      <string>uni08A7.fina</string>\n      <key>meemThreedotsabove-ar.init</key>\n      <string>uni08A7.init</string>\n      <key>meemThreedotsabove-ar.medi</key>\n      <string>uni08A7.medi</string>\n      <key>mem-hb</key>\n      <string>uni05DE</string>\n      <key>memdagesh-hb</key>\n      <string>uniFB3E</string>\n      <key>micro</key>\n      <string>uni00B5</string>\n      <key>misraComma-ar</key>\n      <string>uni060F</string>\n      <key>mu</key>\n      <string>uni03BC</string>\n      <key>naira</key>\n      <string>uni20A6</string>\n      <key>nbspace</key>\n      <string>uni00A0</string>\n      <key>ncommaaccent</key>\n      <string>uni0146</string>\n      <key>negativeAcknowledgeControl</key>\n      <string>uni2415</string>\n      <key>negativeAcknowledgeControl.ss20</key>\n      <string>uni2415.ss20</string>\n      <key>newlineControl</key>\n      <string>uni2424</string>\n      <key>ng-ar</key>\n      <string>uni06AD</string>\n      <key>ng-ar.fina</key>\n      <string>uniFBD4</string>\n      <key>ng-ar.init</key>\n      <string>uniFBD5</string>\n      <key>ng-ar.medi</key>\n      <string>uniFBD6</string>\n      <key>ngoeh-ar</key>\n      <string>uni06B1</string>\n      <key>ngoeh-ar.fina</key>\n      <string>uniFB9B</string>\n      <key>ngoeh-ar.init</key>\n      <string>uniFB9C</string>\n      <key>ngoeh-ar.medi</key>\n      <string>uniFB9D</string>\n      <key>nhookleft</key>\n      <string>uni0272</string>\n      <key>nine-ar</key>\n      <string>uni0669</string>\n      <key>nine-arinferior</key>\n      <string>ninearinferior</string>\n      <key>nine-arsuperior</key>\n      <string>ninearsuperior</string>\n      <key>nine-persian</key>\n      <string>uni06F9</string>\n      <key>nine-persianinferior</key>\n      <string>ninepersianinferior</string>\n      <key>nine-persiansuperior</key>\n      <string>ninepersiansuperior</string>\n      <key>nineinferior</key>\n      <string>uni2089</string>\n      <key>ninesuperior</key>\n      <string>uni2079</string>\n      <key>nje-cy</key>\n      <string>uni045A</string>\n      <key>nlinebelow</key>\n      <string>uni1E49</string>\n      <key>nmod</key>\n      <string>uni207F</string>\n      <key>nonbreakinghyphen</key>\n      <string>uni2011</string>\n      <key>noon-ar</key>\n      <string>uni0646</string>\n      <key>noon-ar.fina</key>\n      <string>uniFEE6</string>\n      <key>noon-ar.init</key>\n      <string>uniFEE7</string>\n      <key>noon-ar.init.alt</key>\n      <string>uni0646.init.alt</string>\n      <key>noon-ar.medi</key>\n      <string>uniFEE8</string>\n      <key>noonAfrican-ar</key>\n      <string>uni08BD</string>\n      <key>noonAfrican-ar.fina</key>\n      <string>uni08BD.fina</string>\n      <key>noonAfrican-ar.init</key>\n      <string>uni08BD.init</string>\n      <key>noonAfrican-ar.init.alt</key>\n      <string>uni08BD.init.alt</string>\n      <key>noonAfrican-ar.medi</key>\n      <string>uni08BD.medi</string>\n      <key>noonDotbelow-ar</key>\n      <string>uni06B9</string>\n      <key>noonDotbelow-ar.fina</key>\n      <string>uni06B9.fina</string>\n      <key>noonDotbelow-ar.init</key>\n      <string>uni06B9.init</string>\n      <key>noonDotbelow-ar.init.alt</key>\n      <string>uni06B9.init.alt</string>\n      <key>noonDotbelow-ar.medi</key>\n      <string>uni06B9.medi</string>\n      <key>noonRing-ar</key>\n      <string>uni06BC</string>\n      <key>noonRing-ar.fina</key>\n      <string>uni06BC.fina</string>\n      <key>noonRing-ar.init</key>\n      <string>uni06BC.init</string>\n      <key>noonRing-ar.init.alt</key>\n      <string>uni06BC.init.alt</string>\n      <key>noonRing-ar.medi</key>\n      <string>uni06BC.medi</string>\n      <key>noonTahabove-ar</key>\n      <string>uni0768</string>\n      <key>noonTahabove-ar.fina</key>\n      <string>uni0768.fina</string>\n      <key>noonTahabove-ar.init</key>\n      <string>uni0768.init</string>\n      <key>noonTahabove-ar.init.alt</key>\n      <string>uni0768.init.alt</string>\n      <key>noonTahabove-ar.medi</key>\n      <string>uni0768.medi</string>\n      <key>noonThreedotsabove-ar</key>\n      <string>uni06BD</string>\n      <key>noonThreedotsabove-ar.fina</key>\n      <string>uni06BD.fina</string>\n      <key>noonThreedotsabove-ar.init</key>\n      <string>uni06BD.init</string>\n      <key>noonThreedotsabove-ar.init.alt</key>\n      <string>uni06BD.init.alt</string>\n      <key>noonThreedotsabove-ar.medi</key>\n      <string>uni06BD.medi</string>\n      <key>noonTwodotsbelow-ar</key>\n      <string>uni0767</string>\n      <key>noonTwodotsbelow-ar.fina</key>\n      <string>uni0767.fina</string>\n      <key>noonTwodotsbelow-ar.init</key>\n      <string>uni0767.init</string>\n      <key>noonTwodotsbelow-ar.init.alt</key>\n      <string>uni0767.init.alt</string>\n      <key>noonTwodotsbelow-ar.medi</key>\n      <string>uni0767.medi</string>\n      <key>noonVabove-ar</key>\n      <string>uni0769</string>\n      <key>noonVabove-ar.fina</key>\n      <string>uni0769.fina</string>\n      <key>noonVabove-ar.init</key>\n      <string>uni0769.init</string>\n      <key>noonVabove-ar.init.alt</key>\n      <string>uni0769.init.alt</string>\n      <key>noonVabove-ar.medi</key>\n      <string>uni0769.medi</string>\n      <key>noonabove-ar</key>\n      <string>uni06E8</string>\n      <key>noonghunna-ar</key>\n      <string>uni06BA</string>\n      <key>noonghunna-ar.fina</key>\n      <string>uniFB9F</string>\n      <key>noonghunna-ar.init</key>\n      <string>uni06BA.init</string>\n      <key>noonghunna-ar.init.alt</key>\n      <string>uni06BA.init.alt</string>\n      <key>noonghunna-ar.medi</key>\n      <string>uni06BA.medi</string>\n      <key>noonghunnaabove-ar</key>\n      <string>uni0658</string>\n      <key>note-musical</key>\n      <string>musicalnote</string>\n      <key>notedbl-musical</key>\n      <string>musicalnotedbl</string>\n      <key>notidentical</key>\n      <string>uni2262</string>\n      <key>nullControl</key>\n      <string>uni2400</string>\n      <key>number-ar</key>\n      <string>uni0600</string>\n      <key>numbermark-ar</key>\n      <string>uni0605</string>\n      <key>numeral-greek</key>\n      <string>uni0374</string>\n      <key>numero</key>\n      <string>uni2116</string>\n      <key>nun-hb</key>\n      <string>uni05E0</string>\n      <key>nundagesh-hb</key>\n      <string>uniFB40</string>\n      <key>nyeh-ar</key>\n      <string>uni0683</string>\n      <key>nyeh-ar.fina</key>\n      <string>uniFB77</string>\n      <key>nyeh-ar.init</key>\n      <string>uniFB78</string>\n      <key>nyeh-ar.medi</key>\n      <string>uniFB79</string>\n      <key>o-cy</key>\n      <string>uni043E</string>\n      <key>obarred-cy</key>\n      <string>uni04E9</string>\n      <key>ocircumflexacute</key>\n      <string>uni1ED1</string>\n      <key>ocircumflexdotbelow</key>\n      <string>uni1ED9</string>\n      <key>ocircumflexgrave</key>\n      <string>uni1ED3</string>\n      <key>ocircumflexhookabove</key>\n      <string>uni1ED5</string>\n      <key>ocircumflextilde</key>\n      <string>uni1ED7</string>\n      <key>odotbelow</key>\n      <string>uni1ECD</string>\n      <key>oe-ar</key>\n      <string>uni06C6</string>\n      <key>oe-ar.fina</key>\n      <string>uniFBDA</string>\n      <key>ogonekcomb</key>\n      <string>uni0328</string>\n      <key>ohookabove</key>\n      <string>uni1ECF</string>\n      <key>ohornacute</key>\n      <string>uni1EDB</string>\n      <key>ohorndotbelow</key>\n      <string>uni1EE3</string>\n      <key>ohorngrave</key>\n      <string>uni1EDD</string>\n      <key>ohornhookabove</key>\n      <string>uni1EDF</string>\n      <key>ohorntilde</key>\n      <string>uni1EE1</string>\n      <key>omacronacute</key>\n      <string>uni1E53</string>\n      <key>omacrongrave</key>\n      <string>uni1E51</string>\n      <key>one-ar</key>\n      <string>uni0661</string>\n      <key>one-arinferior</key>\n      <string>onearinferior</string>\n      <key>one-arsuperior</key>\n      <string>onearsuperior</string>\n      <key>one-persian</key>\n      <string>uni06F1</string>\n      <key>one-persianinferior</key>\n      <string>onepersianinferior</string>\n      <key>one-persiansuperior</key>\n      <string>onepersiansuperior</string>\n      <key>oneinferior</key>\n      <string>uni2081</string>\n      <key>onesuperior</key>\n      <string>uni00B9</string>\n      <key>oogonek</key>\n      <string>uni01EB</string>\n      <key>oopen</key>\n      <string>uni0254</string>\n      <key>overline</key>\n      <string>uni203E</string>\n      <key>pagenumber-ar</key>\n      <string>uni0603</string>\n      <key>palochka-cy</key>\n      <string>uni04CF</string>\n      <key>parenleft-ar</key>\n      <string>uniFD3E</string>\n      <key>parenright-ar</key>\n      <string>uniFD3F</string>\n      <key>paseq-hb</key>\n      <string>uni05C0</string>\n      <key>patah-hb</key>\n      <string>uni05B7</string>\n      <key>pe-cy</key>\n      <string>uni043F</string>\n      <key>pe-cy.loclBGR</key>\n      <string>uni043F.loclBGR</string>\n      <key>pe-hb</key>\n      <string>uni05E4</string>\n      <key>pedagesh-hb</key>\n      <string>uniFB44</string>\n      <key>pedagesh-hb.BRACKET.600</key>\n      <string>uniFB44.BRACKET.600</string>\n      <key>peh-ar</key>\n      <string>uni067E</string>\n      <key>peh-ar.alt</key>\n      <string>uni067E.alt</string>\n      <key>peh-ar.fina</key>\n      <string>uniFB57</string>\n      <key>peh-ar.fina.alt</key>\n      <string>uni067E.fina.alt</string>\n      <key>peh-ar.init</key>\n      <string>uniFB58</string>\n      <key>peh-ar.init.alt</key>\n      <string>uni067E.init.alt</string>\n      <key>peh-ar.medi</key>\n      <string>uniFB59</string>\n      <key>pehMeemabove-ar</key>\n      <string>uni08B7</string>\n      <key>pehMeemabove-ar.alt</key>\n      <string>uni08B7.alt</string>\n      <key>pehMeemabove-ar.fina</key>\n      <string>uni08B7.fina</string>\n      <key>pehMeemabove-ar.fina.alt</key>\n      <string>uni08B7.fina.alt</string>\n      <key>pehMeemabove-ar.init</key>\n      <string>uni08B7.init</string>\n      <key>pehMeemabove-ar.init.alt</key>\n      <string>uni08B7.init.alt</string>\n      <key>pehMeemabove-ar.medi</key>\n      <string>uni08B7.medi</string>\n      <key>peheh-ar</key>\n      <string>uni06A6</string>\n      <key>peheh-ar.alt</key>\n      <string>uni06A6.alt</string>\n      <key>peheh-ar.fina</key>\n      <string>uniFB6F</string>\n      <key>peheh-ar.fina.alt</key>\n      <string>uni06A6.fina.alt</string>\n      <key>peheh-ar.init</key>\n      <string>uniFB70</string>\n      <key>peheh-ar.init.alt</key>\n      <string>uni06A6.init.alt</string>\n      <key>peheh-ar.medi</key>\n      <string>uniFB71</string>\n      <key>percent-ar</key>\n      <string>uni066A</string>\n      <key>perispomenicomb</key>\n      <string>uni0342</string>\n      <key>perthousand-ar</key>\n      <string>uni0609</string>\n      <key>peso</key>\n      <string>uni20B1</string>\n      <key>published</key>\n      <string>uni2117</string>\n      <key>punctuationspace</key>\n      <string>uni2008</string>\n      <key>qaf-ar</key>\n      <string>uni0642</string>\n      <key>qaf-ar.fina</key>\n      <string>uniFED6</string>\n      <key>qaf-ar.init</key>\n      <string>uniFED7</string>\n      <key>qaf-ar.init.alt</key>\n      <string>uni0642.init.alt</string>\n      <key>qaf-ar.medi</key>\n      <string>uniFED8</string>\n      <key>qafAfrican-ar</key>\n      <string>uni08BC</string>\n      <key>qafAfrican-ar.fina</key>\n      <string>uni08BC.fina</string>\n      <key>qafAfrican-ar.init</key>\n      <string>uni08BC.init</string>\n      <key>qafAfrican-ar.init.alt</key>\n      <string>uni08BC.init.alt</string>\n      <key>qafAfrican-ar.medi</key>\n      <string>uni08BC.medi</string>\n      <key>qafDotabove-ar</key>\n      <string>uni06A7</string>\n      <key>qafDotabove-ar.fina</key>\n      <string>uni06A7.fina</string>\n      <key>qafDotabove-ar.init</key>\n      <string>uni06A7.init</string>\n      <key>qafDotabove-ar.init.alt</key>\n      <string>uni06A7.init.alt</string>\n      <key>qafDotabove-ar.medi</key>\n      <string>uni06A7.medi</string>\n      <key>qafDotbelow-ar</key>\n      <string>uni08A5</string>\n      <key>qafDotbelow-ar.fina</key>\n      <string>uni08A5.fina</string>\n      <key>qafDotbelow-ar.init</key>\n      <string>uni08A5.init</string>\n      <key>qafDotbelow-ar.medi</key>\n      <string>uni08A5.medi</string>\n      <key>qafDotless-ar</key>\n      <string>uni066F</string>\n      <key>qafDotless-ar.fina</key>\n      <string>uni066F.fina</string>\n      <key>qafDotless-ar.init</key>\n      <string>uni066F.init</string>\n      <key>qafDotless-ar.init.alt</key>\n      <string>uni066F.init.alt</string>\n      <key>qafDotless-ar.medi</key>\n      <string>uni066F.medi</string>\n      <key>qafThreedotsabove-ar</key>\n      <string>uni06A8</string>\n      <key>qafThreedotsabove-ar.fina</key>\n      <string>uni06A8.fina</string>\n      <key>qafThreedotsabove-ar.init</key>\n      <string>uni06A8.init</string>\n      <key>qafThreedotsabove-ar.medi</key>\n      <string>uni06A8.medi</string>\n      <key>qamats-hb</key>\n      <string>uni05B8</string>\n      <key>qamatsqatan-hb</key>\n      <string>uni05C7</string>\n      <key>qof-hb</key>\n      <string>uni05E7</string>\n      <key>qofdagesh-hb</key>\n      <string>uniFB47</string>\n      <key>question-ar</key>\n      <string>uni061F</string>\n      <key>questiongreek</key>\n      <string>uni037E</string>\n      <key>ratio</key>\n      <string>uni2236</string>\n      <key>ray-ar</key>\n      <string>uni0608</string>\n      <key>rcommaaccent</key>\n      <string>uni0157</string>\n      <key>rdotbelow</key>\n      <string>uni1E5B</string>\n      <key>recordSeparatorControl</key>\n      <string>uni241E</string>\n      <key>reh-ar</key>\n      <string>uni0631</string>\n      <key>reh-ar.fina</key>\n      <string>uniFEAE</string>\n      <key>rehAlefabove-ar</key>\n      <string>uniFC5C</string>\n      <key>rehAlefabove-ar.fina</key>\n      <string>uniFC5C.fina</string>\n      <key>rehDotbelow-ar</key>\n      <string>uni0694</string>\n      <key>rehDotbelow-ar.fina</key>\n      <string>uni0694.fina</string>\n      <key>rehDotbelowdotabove-ar</key>\n      <string>uni0696</string>\n      <key>rehDotbelowdotabove-ar.fina</key>\n      <string>uni0696.fina</string>\n      <key>rehFourdots-ar</key>\n      <string>uni0699</string>\n      <key>rehFourdots-ar.fina</key>\n      <string>uni0699.fina</string>\n      <key>rehHamzaabove-ar</key>\n      <string>uni076C</string>\n      <key>rehHamzaabove-ar.fina</key>\n      <string>uni076C.fina</string>\n      <key>rehLoop-ar</key>\n      <string>uni08AA</string>\n      <key>rehLoop-ar.fina</key>\n      <string>uni08AA.fina</string>\n      <key>rehRing-ar</key>\n      <string>uni0693</string>\n      <key>rehRing-ar.fina</key>\n      <string>uni0693.fina</string>\n      <key>rehStroke-ar</key>\n      <string>uni075B</string>\n      <key>rehStroke-ar.fina</key>\n      <string>uni075B.fina</string>\n      <key>rehTwodots-ar</key>\n      <string>uni0697</string>\n      <key>rehTwodots-ar.fina</key>\n      <string>uni0697.fina</string>\n      <key>rehTwodotshorizontalaboveTahabove-ar</key>\n      <string>uni0771</string>\n      <key>rehTwodotshorizontalaboveTahabove-ar.fina</key>\n      <string>uni0771.fina</string>\n      <key>rehTwodotsverticalabove-ar</key>\n      <string>uni076B</string>\n      <key>rehTwodotsverticalabove-ar.fina</key>\n      <string>uni076B.fina</string>\n      <key>rehVbelow-ar</key>\n      <string>uni0695</string>\n      <key>rehVbelow-ar.fina</key>\n      <string>uni0695.fina</string>\n      <key>rehVinvertedabove-ar</key>\n      <string>uni06EF</string>\n      <key>rehVinvertedabove-ar.fina</key>\n      <string>uni06EF.fina</string>\n      <key>rehv-ar</key>\n      <string>uni0692</string>\n      <key>rehv-ar.fina</key>\n      <string>uni0692.fina</string>\n      <key>replacementCharacter</key>\n      <string>uniFFFD</string>\n      <key>resh-hb</key>\n      <string>uni05E8</string>\n      <key>reshdagesh-hb</key>\n      <string>uniFB48</string>\n      <key>returnsymbol</key>\n      <string>uni23CE</string>\n      <key>reversedRotatedFloralHeartBullet</key>\n      <string>uni2619</string>\n      <key>rightArrow</key>\n      <string>arrowright</string>\n      <key>rightBlackPointer</key>\n      <string>triagrt</string>\n      <key>rightBlackSmallTriangle</key>\n      <string>uni25B8</string>\n      <key>rightBlackTriangle</key>\n      <string>uni25B6</string>\n      <key>rightBlock</key>\n      <string>rtblock</string>\n      <key>rightBlock.stypo</key>\n      <string>rtblock.stypo</string>\n      <key>rightHalfBlackCircle</key>\n      <string>uni25D7</string>\n      <key>rightHalfBlackDiamond</key>\n      <string>uni2B17</string>\n      <key>rightHalfBlackSquare</key>\n      <string>uni25E8</string>\n      <key>rightHalfBlackWhiteCircle</key>\n      <string>uni25D1</string>\n      <key>rightOneEighthBlock</key>\n      <string>uni2595</string>\n      <key>rightOneEighthBlock.stypo</key>\n      <string>uni2595.stypo</string>\n      <key>rightWhitePointer</key>\n      <string>uni25BB</string>\n      <key>rightWhiteSmallTriangle</key>\n      <string>uni25B9</string>\n      <key>rightWhiteTriangle</key>\n      <string>uni25B7</string>\n      <key>ringbelowcomb</key>\n      <string>uni0325</string>\n      <key>ringcomb</key>\n      <string>uni030A</string>\n      <key>ringcomb.case</key>\n      <string>uni030A.case</string>\n      <key>rnoon-ar</key>\n      <string>uni06BB</string>\n      <key>rnoon-ar.fina</key>\n      <string>uniFBA1</string>\n      <key>rnoon-ar.init</key>\n      <string>uniFBA2</string>\n      <key>rnoon-ar.init.alt</key>\n      <string>uni06BB.init.alt</string>\n      <key>rnoon-ar.medi</key>\n      <string>uniFBA3</string>\n      <key>rotatedFloralHeartBullet</key>\n      <string>uni2767</string>\n      <key>rreh-ar</key>\n      <string>uni0691</string>\n      <key>rreh-ar.fina</key>\n      <string>uniFB8D</string>\n      <key>ruble</key>\n      <string>uni20BD</string>\n      <key>rupee</key>\n      <string>uni20A8</string>\n      <key>rupeeIndian</key>\n      <string>uni20B9</string>\n      <key>sad-ar</key>\n      <string>uni0635</string>\n      <key>sad-ar.alt</key>\n      <string>uni0635.alt</string>\n      <key>sad-ar.fina</key>\n      <string>uniFEBA</string>\n      <key>sad-ar.fina.alt</key>\n      <string>uni0635.fina.alt</string>\n      <key>sad-ar.init</key>\n      <string>uniFEBB</string>\n      <key>sad-ar.medi</key>\n      <string>uniFEBC</string>\n      <key>sadThreedots-ar</key>\n      <string>uni069E</string>\n      <key>sadThreedots-ar.alt</key>\n      <string>uni069E.alt</string>\n      <key>sadThreedots-ar.fina</key>\n      <string>uni069E.fina</string>\n      <key>sadThreedots-ar.fina.alt</key>\n      <string>uni069E.fina.alt</string>\n      <key>sadThreedots-ar.init</key>\n      <string>uni069E.init</string>\n      <key>sadThreedots-ar.medi</key>\n      <string>uni069E.medi</string>\n      <key>sadThreedotsbelow-ar</key>\n      <string>uni08AF</string>\n      <key>sadThreedotsbelow-ar.alt</key>\n      <string>uni08AF.alt</string>\n      <key>sadThreedotsbelow-ar.fina</key>\n      <string>uni08AF.fina</string>\n      <key>sadThreedotsbelow-ar.fina.alt</key>\n      <string>uni08AF.fina.alt</string>\n      <key>sadThreedotsbelow-ar.init</key>\n      <string>uni08AF.init</string>\n      <key>sadThreedotsbelow-ar.medi</key>\n      <string>uni08AF.medi</string>\n      <key>sadTwodotsbelow-ar</key>\n      <string>uni069D</string>\n      <key>sadTwodotsbelow-ar.alt</key>\n      <string>uni069D.alt</string>\n      <key>sadTwodotsbelow-ar.fina</key>\n      <string>uni069D.fina</string>\n      <key>sadTwodotsbelow-ar.fina.alt</key>\n      <string>uni069D.fina.alt</string>\n      <key>sadTwodotsbelow-ar.init</key>\n      <string>uni069D.init</string>\n      <key>sadTwodotsbelow-ar.medi</key>\n      <string>uni069D.medi</string>\n      <key>samekh-hb</key>\n      <string>uni05E1</string>\n      <key>samekhdagesh-hb</key>\n      <string>uniFB41</string>\n      <key>samvat-ar</key>\n      <string>uni0604</string>\n      <key>schwa</key>\n      <string>uni0259</string>\n      <key>schwa-cy</key>\n      <string>uni04D9</string>\n      <key>scommaaccent</key>\n      <string>uni0219</string>\n      <key>sdotbelow</key>\n      <string>uni1E63</string>\n      <key>seen-ar</key>\n      <string>uni0633</string>\n      <key>seen-ar.alt</key>\n      <string>uni0633.alt</string>\n      <key>seen-ar.fina</key>\n      <string>uniFEB2</string>\n      <key>seen-ar.fina.alt</key>\n      <string>uni0633.fina.alt</string>\n      <key>seen-ar.init</key>\n      <string>uniFEB3</string>\n      <key>seen-ar.medi</key>\n      <string>uniFEB4</string>\n      <key>seenDotbelowDotabove-ar</key>\n      <string>uni069A</string>\n      <key>seenDotbelowDotabove-ar.alt</key>\n      <string>uni069A.alt</string>\n      <key>seenDotbelowDotabove-ar.fina</key>\n      <string>uni069A.fina</string>\n      <key>seenDotbelowDotabove-ar.fina.alt</key>\n      <string>uni069A.fina.alt</string>\n      <key>seenDotbelowDotabove-ar.init</key>\n      <string>uni069A.init</string>\n      <key>seenDotbelowDotabove-ar.medi</key>\n      <string>uni069A.medi</string>\n      <key>seenFourabove-ar</key>\n      <string>uni077D</string>\n      <key>seenFourabove-ar.alt</key>\n      <string>uni077D.alt</string>\n      <key>seenFourabove-ar.fina</key>\n      <string>uni077D.fina</string>\n      <key>seenFourabove-ar.fina.alt</key>\n      <string>uni077D.fina.alt</string>\n      <key>seenFourabove-ar.init</key>\n      <string>uni077D.init</string>\n      <key>seenFourabove-ar.medi</key>\n      <string>uni077D.medi</string>\n      <key>seenFourdotsabove-ar</key>\n      <string>uni075C</string>\n      <key>seenFourdotsabove-ar.alt</key>\n      <string>uni075C.alt</string>\n      <key>seenFourdotsabove-ar.fina</key>\n      <string>uni075C.fina</string>\n      <key>seenFourdotsabove-ar.fina.alt</key>\n      <string>uni075C.fina.alt</string>\n      <key>seenFourdotsabove-ar.init</key>\n      <string>uni075C.init</string>\n      <key>seenFourdotsabove-ar.medi</key>\n      <string>uni075C.medi</string>\n      <key>seenTahTwodotshorizontalabove-ar</key>\n      <string>uni0770</string>\n      <key>seenTahTwodotshorizontalabove-ar.alt</key>\n      <string>uni0770.alt</string>\n      <key>seenTahTwodotshorizontalabove-ar.fina</key>\n      <string>uni0770.fina</string>\n      <key>seenTahTwodotshorizontalabove-ar.fina.alt</key>\n      <string>uni0770.fina.alt</string>\n      <key>seenTahTwodotshorizontalabove-ar.init</key>\n      <string>uni0770.init</string>\n      <key>seenTahTwodotshorizontalabove-ar.medi</key>\n      <string>uni0770.medi</string>\n      <key>seenThreedotsbelow-ar</key>\n      <string>uni069B</string>\n      <key>seenThreedotsbelow-ar.alt</key>\n      <string>uni069B.alt</string>\n      <key>seenThreedotsbelow-ar.fina</key>\n      <string>uni069B.fina</string>\n      <key>seenThreedotsbelow-ar.fina.alt</key>\n      <string>uni069B.fina.alt</string>\n      <key>seenThreedotsbelow-ar.init</key>\n      <string>uni069B.init</string>\n      <key>seenThreedotsbelow-ar.medi</key>\n      <string>uni069B.medi</string>\n      <key>seenThreedotsbelowthreedots-ar</key>\n      <string>seenThreedotsbelowthreedotsar</string>\n      <key>seenThreedotsbelowthreedots-ar.alt</key>\n      <string>seenThreedotsbelowthreedotsar.alt</string>\n      <key>seenThreedotsbelowthreedots-ar.fina</key>\n      <string>seenThreedotsbelowthreedotsar.fina</string>\n      <key>seenThreedotsbelowthreedots-ar.fina.alt</key>\n      <string>seenThreedotsbelowthreedotsar.fina.alt</string>\n      <key>seenThreedotsbelowthreedots-ar.init</key>\n      <string>seenThreedotsbelowthreedotsar.init</string>\n      <key>seenThreedotsbelowthreedots-ar.medi</key>\n      <string>seenThreedotsbelowthreedotsar.medi</string>\n      <key>seenTwodotshorizontalabove-ar</key>\n      <string>uni076D</string>\n      <key>seenTwodotshorizontalabove-ar.fina</key>\n      <string>uni076D.fina</string>\n      <key>seenTwodotshorizontalabove-ar.init</key>\n      <string>uni076D.init</string>\n      <key>seenTwodotshorizontalabove-ar.medi</key>\n      <string>uni076D.medi</string>\n      <key>seenTwodotsverticalabove-ar.alt</key>\n      <string>seenTwodotsverticalabovear.alt</string>\n      <key>seenTwodotsverticalabove-ar.fina.alt</key>\n      <string>seenTwodotsverticalabovear.fina.alt</string>\n      <key>seenVinvertedabove-ar</key>\n      <string>uni077E</string>\n      <key>seenVinvertedabove-ar.alt</key>\n      <string>uni077E.alt</string>\n      <key>seenVinvertedabove-ar.fina</key>\n      <string>uni077E.fina</string>\n      <key>seenVinvertedabove-ar.fina.alt</key>\n      <string>uni077E.fina.alt</string>\n      <key>seenVinvertedabove-ar.init</key>\n      <string>uni077E.init</string>\n      <key>seenVinvertedabove-ar.medi</key>\n      <string>uni077E.medi</string>\n      <key>semicolon-ar</key>\n      <string>uni061B</string>\n      <key>seven-ar</key>\n      <string>uni0667</string>\n      <key>seven-arinferior</key>\n      <string>sevenarinferior</string>\n      <key>seven-arsuperior</key>\n      <string>sevenarsuperior</string>\n      <key>seven-persian</key>\n      <string>uni06F7</string>\n      <key>seven-persian.urdu</key>\n      <string>uni06F7.urdu</string>\n      <key>seven-persian.urduinferior</key>\n      <string>uni06F7.urduinferior</string>\n      <key>seven-persian.urdusuperior</key>\n      <string>uni06F7.urdusuperior</string>\n      <key>seven-persianinferior</key>\n      <string>sevenpersianinferior</string>\n      <key>seven-persiansuperior</key>\n      <string>sevenpersiansuperior</string>\n      <key>seveninferior</key>\n      <string>uni2087</string>\n      <key>sevensuperior</key>\n      <string>uni2077</string>\n      <key>sha-cy</key>\n      <string>uni0448</string>\n      <key>sha-cy.loclBGR</key>\n      <string>uni0448.loclBGR</string>\n      <key>shadda-ar</key>\n      <string>uni0651</string>\n      <key>shadedark</key>\n      <string>dkshade</string>\n      <key>shadedark.stypo</key>\n      <string>dkshade.stypo</string>\n      <key>shadelight</key>\n      <string>ltshade</string>\n      <key>shadelight.stypo</key>\n      <string>ltshade.stypo</string>\n      <key>shademedium</key>\n      <string>shade</string>\n      <key>shademedium.stypo</key>\n      <string>shade.stypo</string>\n      <key>shcha-cy</key>\n      <string>uni0449</string>\n      <key>shcha-cy.loclBGR</key>\n      <string>uni0449.loclBGR</string>\n      <key>sheen-ar</key>\n      <string>uni0634</string>\n      <key>sheen-ar.alt</key>\n      <string>uni0634.alt</string>\n      <key>sheen-ar.fina</key>\n      <string>uniFEB6</string>\n      <key>sheen-ar.fina.alt</key>\n      <string>uni0634.fina.alt</string>\n      <key>sheen-ar.init</key>\n      <string>uniFEB7</string>\n      <key>sheen-ar.medi</key>\n      <string>uniFEB8</string>\n      <key>sheenDotbelow-ar</key>\n      <string>uni06FA</string>\n      <key>sheenDotbelow-ar.alt</key>\n      <string>uni06FA.alt</string>\n      <key>sheenDotbelow-ar.fina</key>\n      <string>uni06FA.fina</string>\n      <key>sheenDotbelow-ar.fina.alt</key>\n      <string>uni06FA.fina.alt</string>\n      <key>sheenDotbelow-ar.init</key>\n      <string>uni06FA.init</string>\n      <key>sheenDotbelow-ar.medi</key>\n      <string>uni06FA.medi</string>\n      <key>sheqel</key>\n      <string>uni20AA</string>\n      <key>shha-cy</key>\n      <string>uni04BB</string>\n      <key>shiftInControl</key>\n      <string>uni240F</string>\n      <key>shiftInControl.ss20</key>\n      <string>uni240F.ss20</string>\n      <key>shiftOutControl</key>\n      <string>uni240E</string>\n      <key>shiftOutControl.ss20</key>\n      <string>uni240E.ss20</string>\n      <key>shin-hb</key>\n      <string>uni05E9</string>\n      <key>shindagesh-hb</key>\n      <string>uniFB49</string>\n      <key>shindageshshindot-hb</key>\n      <string>uniFB2C</string>\n      <key>shindageshsindot-hb</key>\n      <string>uniFB2D</string>\n      <key>shindot-hb</key>\n      <string>uni05C1</string>\n      <key>shinshindot-hb</key>\n      <string>uniFB2A</string>\n      <key>shinsindot-hb</key>\n      <string>uniFB2B</string>\n      <key>sigmafinal</key>\n      <string>uni03C2</string>\n      <key>sindhiampersand-ar</key>\n      <string>uni06FD</string>\n      <key>sindhipostpositionmen-ar</key>\n      <string>uni06FE</string>\n      <key>sindot-hb</key>\n      <string>uni05C2</string>\n      <key>six-ar</key>\n      <string>uni0666</string>\n      <key>six-arinferior</key>\n      <string>sixarinferior</string>\n      <key>six-arsuperior</key>\n      <string>sixarsuperior</string>\n      <key>six-persian</key>\n      <string>uni06F6</string>\n      <key>six-persianinferior</key>\n      <string>sixpersianinferior</string>\n      <key>six-persiansuperior</key>\n      <string>sixpersiansuperior</string>\n      <key>sixinferior</key>\n      <string>uni2086</string>\n      <key>sixsuperior</key>\n      <string>uni2076</string>\n      <key>softhyphen</key>\n      <string>uni00AD</string>\n      <key>softsign-cy</key>\n      <string>uni044C</string>\n      <key>softsign-cy.loclBGR</key>\n      <string>uni044C.loclBGR</string>\n      <key>spaceControl</key>\n      <string>uni2420</string>\n      <key>spadeBlackSuit</key>\n      <string>spade</string>\n      <key>startOfHeadingControl</key>\n      <string>uni2401</string>\n      <key>startOfHeadingControl.ss20</key>\n      <string>uni2401.ss20</string>\n      <key>startOfTextControl</key>\n      <string>uni2402</string>\n      <key>startOfTextControl.ss20</key>\n      <string>uni2402.ss20</string>\n      <key>strictlyequivalentto</key>\n      <string>uni2263</string>\n      <key>substituteControl</key>\n      <string>uni241A</string>\n      <key>substituteControl.ss20</key>\n      <string>uni241A.ss20</string>\n      <key>substituteFormTwoControl</key>\n      <string>uni2426</string>\n      <key>sukun-ar</key>\n      <string>uni0652</string>\n      <key>sunWithRays</key>\n      <string>sun</string>\n      <key>synchronousIdleControl</key>\n      <string>uni2416</string>\n      <key>synchronousIdleControl.ss20</key>\n      <string>uni2416.ss20</string>\n      <key>tah-ar</key>\n      <string>uni0637</string>\n      <key>tah-ar.fina</key>\n      <string>uniFEC2</string>\n      <key>tah-ar.init</key>\n      <string>uniFEC3</string>\n      <key>tah-ar.medi</key>\n      <string>uniFEC4</string>\n      <key>tahThreedots-ar</key>\n      <string>uni069F</string>\n      <key>tahThreedots-ar.fina</key>\n      <string>uni069F.fina</string>\n      <key>tahThreedots-ar.init</key>\n      <string>uni069F.init</string>\n      <key>tahThreedots-ar.medi</key>\n      <string>uni069F.medi</string>\n      <key>tahTwodotsabove-ar</key>\n      <string>uni08A3</string>\n      <key>tahTwodotsabove-ar.fina</key>\n      <string>uni08A3.fina</string>\n      <key>tahTwodotsabove-ar.init</key>\n      <string>uni08A3.init</string>\n      <key>tahTwodotsabove-ar.medi</key>\n      <string>uni08A3.medi</string>\n      <key>tahbelow-ar</key>\n      <string>tahbelowar</string>\n      <key>tahcenter-ar</key>\n      <string>tahcenterar</string>\n      <key>tav-hb</key>\n      <string>uni05EA</string>\n      <key>tavdagesh-hb</key>\n      <string>uniFB4A</string>\n      <key>tcedilla</key>\n      <string>uni0163</string>\n      <key>tcheh-ar</key>\n      <string>uni0686</string>\n      <key>tcheh-ar.fina</key>\n      <string>uniFB7B</string>\n      <key>tcheh-ar.init</key>\n      <string>uniFB7C</string>\n      <key>tcheh-ar.medi</key>\n      <string>uniFB7D</string>\n      <key>tchehDotabove-ar</key>\n      <string>uni06BF</string>\n      <key>tchehDotabove-ar.fina</key>\n      <string>uni06BF.fina</string>\n      <key>tchehDotabove-ar.init</key>\n      <string>uni06BF.init</string>\n      <key>tchehDotabove-ar.medi</key>\n      <string>uni06BF.medi</string>\n      <key>tcheheh-ar</key>\n      <string>uni0687</string>\n      <key>tcheheh-ar.fina</key>\n      <string>uniFB7F</string>\n      <key>tcheheh-ar.init</key>\n      <string>uniFB80</string>\n      <key>tcheheh-ar.medi</key>\n      <string>uniFB81</string>\n      <key>tcommaaccent</key>\n      <string>uni021B</string>\n      <key>te-cy</key>\n      <string>uni0442</string>\n      <key>te-cy.loclBGR</key>\n      <string>uni0442.loclBGR</string>\n      <key>teh-ar</key>\n      <string>uni062A</string>\n      <key>teh-ar.alt</key>\n      <string>uni062A.alt</string>\n      <key>teh-ar.fina</key>\n      <string>uniFE96</string>\n      <key>teh-ar.fina.alt</key>\n      <string>uni062A.fina.alt</string>\n      <key>teh-ar.init</key>\n      <string>uniFE97</string>\n      <key>teh-ar.init.alt</key>\n      <string>uni062A.init.alt</string>\n      <key>teh-ar.medi</key>\n      <string>uniFE98</string>\n      <key>tehMarbuta-ar</key>\n      <string>uni0629</string>\n      <key>tehMarbuta-ar.fina</key>\n      <string>uniFE94</string>\n      <key>tehMarbutagoal-ar</key>\n      <string>uni06C3</string>\n      <key>tehMarbutagoal-ar.fina</key>\n      <string>uni06C3.fina</string>\n      <key>tehRing-ar</key>\n      <string>uni067C</string>\n      <key>tehRing-ar.alt</key>\n      <string>uni067C.alt</string>\n      <key>tehRing-ar.fina</key>\n      <string>uni067C.fina</string>\n      <key>tehRing-ar.fina.alt</key>\n      <string>uni067C.fina.alt</string>\n      <key>tehRing-ar.init</key>\n      <string>uni067C.init</string>\n      <key>tehRing-ar.init.alt</key>\n      <string>uni067C.init.alt</string>\n      <key>tehRing-ar.medi</key>\n      <string>uni067C.medi</string>\n      <key>tehTehabove-ar</key>\n      <string>uni08B8</string>\n      <key>tehTehabove-ar.alt</key>\n      <string>uni08B8.alt</string>\n      <key>tehTehabove-ar.fina</key>\n      <string>uni08B8.fina</string>\n      <key>tehTehabove-ar.fina.alt</key>\n      <string>uni08B8.fina.alt</string>\n      <key>tehTehabove-ar.init</key>\n      <string>uni08B8.init</string>\n      <key>tehTehabove-ar.init.alt</key>\n      <string>uni08B8.init.alt</string>\n      <key>tehTehabove-ar.medi</key>\n      <string>uni08B8.medi</string>\n      <key>tehThreedotsdown-ar</key>\n      <string>uni067D</string>\n      <key>tehThreedotsdown-ar.alt</key>\n      <string>uni067D.alt</string>\n      <key>tehThreedotsdown-ar.fina</key>\n      <string>uni067D.fina</string>\n      <key>tehThreedotsdown-ar.fina.alt</key>\n      <string>uni067D.fina.alt</string>\n      <key>tehThreedotsdown-ar.init</key>\n      <string>uni067D.init</string>\n      <key>tehThreedotsdown-ar.init.alt</key>\n      <string>uni067D.init.alt</string>\n      <key>tehThreedotsdown-ar.medi</key>\n      <string>uni067D.medi</string>\n      <key>tehThreedotsupbelow-ar</key>\n      <string>uni0753</string>\n      <key>tehThreedotsupbelow-ar.alt</key>\n      <string>uni0753.alt</string>\n      <key>tehThreedotsupbelow-ar.fina</key>\n      <string>uni0753.fina</string>\n      <key>tehThreedotsupbelow-ar.fina.alt</key>\n      <string>uni0753.fina.alt</string>\n      <key>tehThreedotsupbelow-ar.init</key>\n      <string>uni0753.init</string>\n      <key>tehThreedotsupbelow-ar.init.alt</key>\n      <string>uni0753.init.alt</string>\n      <key>tehThreedotsupbelow-ar.medi</key>\n      <string>uni0753.medi</string>\n      <key>tehabove-ar.small</key>\n      <string>tehabovear.small</string>\n      <key>teheh-ar</key>\n      <string>uni067F</string>\n      <key>teheh-ar.alt</key>\n      <string>uni067F.alt</string>\n      <key>teheh-ar.fina</key>\n      <string>uniFB63</string>\n      <key>teheh-ar.fina.alt</key>\n      <string>uni067F.fina.alt</string>\n      <key>teheh-ar.init</key>\n      <string>uniFB64</string>\n      <key>teheh-ar.init.alt</key>\n      <string>uni067F.init.alt</string>\n      <key>teheh-ar.medi</key>\n      <string>uniFB65</string>\n      <key>tenge</key>\n      <string>uni20B8</string>\n      <key>tesh</key>\n      <string>uni02A7</string>\n      <key>tet-hb</key>\n      <string>uni05D8</string>\n      <key>tetdagesh-hb</key>\n      <string>uniFB38</string>\n      <key>thal-ar</key>\n      <string>uni0630</string>\n      <key>thal-ar.fina</key>\n      <string>uniFEAC</string>\n      <key>thalAlefabove-ar</key>\n      <string>uniFC5B</string>\n      <key>thalAlefabove-ar.fina</key>\n      <string>uniFC5B.fina</string>\n      <key>theh-ar</key>\n      <string>uni062B</string>\n      <key>theh-ar.alt</key>\n      <string>uni062B.alt</string>\n      <key>theh-ar.fina</key>\n      <string>uniFE9A</string>\n      <key>theh-ar.fina.alt</key>\n      <string>uni062B.fina.alt</string>\n      <key>theh-ar.init</key>\n      <string>uniFE9B</string>\n      <key>theh-ar.init.alt</key>\n      <string>uni062B.init.alt</string>\n      <key>theh-ar.medi</key>\n      <string>uniFE9C</string>\n      <key>thetamod</key>\n      <string>uni1DBF</string>\n      <key>thousandseparator-ar</key>\n      <string>uni066C</string>\n      <key>three-ar</key>\n      <string>uni0663</string>\n      <key>three-arinferior</key>\n      <string>threearinferior</string>\n      <key>three-arsuperior</key>\n      <string>threearsuperior</string>\n      <key>three-persian</key>\n      <string>uni06F3</string>\n      <key>three-persian.small01</key>\n      <string>uni06F3.small01</string>\n      <key>three-persianinferior</key>\n      <string>threepersianinferior</string>\n      <key>three-persiansuperior</key>\n      <string>threepersiansuperior</string>\n      <key>threedots-ar</key>\n      <string>uni061E</string>\n      <key>threedotsdownabove-ar</key>\n      <string>threedotsdownabovear</string>\n      <key>threedotsdownbelow-ar</key>\n      <string>threedotsdownbelowar</string>\n      <key>threedotsdowncenter-ar</key>\n      <string>threedotsdowncenterar</string>\n      <key>threedotsupabove-ar</key>\n      <string>threedotsupabovear</string>\n      <key>threedotsupabove-ar.v2</key>\n      <string>threedotsupabovear.v2</string>\n      <key>threedotsupbelow-ar</key>\n      <string>threedotsupbelowar</string>\n      <key>threedotsupcenter-ar</key>\n      <string>threedotsupcenterar</string>\n      <key>threeinferior</key>\n      <string>uni2083</string>\n      <key>threesuperior</key>\n      <string>uni00B3</string>\n      <key>topHalfBlackCircle</key>\n      <string>uni2BCA</string>\n      <key>topHalfBlackDiamond</key>\n      <string>uni2B18</string>\n      <key>topHalfWhiteSquare</key>\n      <string>uni2B13</string>\n      <key>topRightHalfWhiteSquare</key>\n      <string>uni2B15</string>\n      <key>tsadi-hb</key>\n      <string>uni05E6</string>\n      <key>tsadidagesh-hb</key>\n      <string>uniFB46</string>\n      <key>tse-cy</key>\n      <string>uni0446</string>\n      <key>tse-cy.loclBGR</key>\n      <string>uni0446.loclBGR</string>\n      <key>tshe-cy</key>\n      <string>uni045B</string>\n      <key>tteh-ar</key>\n      <string>uni0679</string>\n      <key>tteh-ar.alt</key>\n      <string>uni0679.alt</string>\n      <key>tteh-ar.fina</key>\n      <string>uniFB67</string>\n      <key>tteh-ar.fina.alt</key>\n      <string>uni0679.fina.alt</string>\n      <key>tteh-ar.init</key>\n      <string>uniFB68</string>\n      <key>tteh-ar.init.alt</key>\n      <string>uni0679.init.alt</string>\n      <key>tteh-ar.medi</key>\n      <string>uniFB69</string>\n      <key>tteheh-ar</key>\n      <string>uni067A</string>\n      <key>tteheh-ar.alt</key>\n      <string>uni067A.alt</string>\n      <key>tteheh-ar.fina</key>\n      <string>uniFB5F</string>\n      <key>tteheh-ar.fina.alt</key>\n      <string>uni067A.fina.alt</string>\n      <key>tteheh-ar.init</key>\n      <string>uniFB60</string>\n      <key>tteheh-ar.init.alt</key>\n      <string>uni067A.init.alt</string>\n      <key>tteheh-ar.medi</key>\n      <string>uniFB61</string>\n      <key>tugrik</key>\n      <string>uni20AE</string>\n      <key>two-ar</key>\n      <string>uni0662</string>\n      <key>two-arinferior</key>\n      <string>twoarinferior</string>\n      <key>two-arsuperior</key>\n      <string>twoarsuperior</string>\n      <key>two-persian</key>\n      <string>uni06F2</string>\n      <key>two-persian.small01</key>\n      <string>uni06F2.small01</string>\n      <key>two-persianinferior</key>\n      <string>twopersianinferior</string>\n      <key>two-persiansuperior</key>\n      <string>twopersiansuperior</string>\n      <key>twodotshorizontalabove-ar</key>\n      <string>twodotshorizontalabovear</string>\n      <key>twodotshorizontalabove-ar.v2</key>\n      <string>twodotshorizontalabovear.v2</string>\n      <key>twodotshorizontalbelow-ar</key>\n      <string>twodotshorizontalbelowar</string>\n      <key>twodotshorizontalcenter-ar</key>\n      <string>twodotshorizontalcenterar</string>\n      <key>twodotstahbelow-ar</key>\n      <string>twodotstahbelowar</string>\n      <key>twodotstahcenter-ar</key>\n      <string>twodotstahcenterar</string>\n      <key>twodotsverticalabove-ar</key>\n      <string>twodotsverticalabovear</string>\n      <key>twodotsverticalbelow-ar</key>\n      <string>twodotsverticalbelowar</string>\n      <key>twodotsverticalcenter-ar</key>\n      <string>twodotsverticalcenterar</string>\n      <key>twoinferior</key>\n      <string>uni2082</string>\n      <key>twosuperior</key>\n      <string>uni00B2</string>\n      <key>u-ar</key>\n      <string>uni06C7</string>\n      <key>u-ar.fina</key>\n      <string>uniFBD8</string>\n      <key>u-cy</key>\n      <string>uni0443</string>\n      <key>uHamzaabove-ar</key>\n      <string>uni0677</string>\n      <key>uHamzaabove-ar.fina</key>\n      <string>uni0677.fina</string>\n      <key>udotbelow</key>\n      <string>uni1EE5</string>\n      <key>uhookabove</key>\n      <string>uni1EE7</string>\n      <key>uhornacute</key>\n      <string>uni1EE9</string>\n      <key>uhorndotbelow</key>\n      <string>uni1EF1</string>\n      <key>uhorngrave</key>\n      <string>uni1EEB</string>\n      <key>uhornhookabove</key>\n      <string>uni1EED</string>\n      <key>uhorntilde</key>\n      <string>uni1EEF</string>\n      <key>umacron-cy</key>\n      <string>uni04EF</string>\n      <key>unitSeparatorControl</key>\n      <string>uni241F</string>\n      <key>upArrow</key>\n      <string>arrowup</string>\n      <key>upBlackSmallTriangle</key>\n      <string>uni25B4</string>\n      <key>upBlackTriangle</key>\n      <string>triagup</string>\n      <key>upDashArrow</key>\n      <string>uni21E1</string>\n      <key>upDownArrow</key>\n      <string>arrowupdn</string>\n      <key>upDownbaseArrow</key>\n      <string>arrowupdnbse</string>\n      <key>upLeftHalfBlackTriangle</key>\n      <string>uni25ED</string>\n      <key>upRightHalfBlackTriangle</key>\n      <string>uni25EE</string>\n      <key>upWhiteSmallTriangle</key>\n      <string>uni25B5</string>\n      <key>upWhiteTriangle</key>\n      <string>uni25B3</string>\n      <key>upWhiteTriangleWithDot</key>\n      <string>uni25EC</string>\n      <key>upperHalfArc</key>\n      <string>uni25E0</string>\n      <key>upperHalfBlackWhiteCircle</key>\n      <string>uni25D3</string>\n      <key>upperHalfBlock</key>\n      <string>upblock</string>\n      <key>upperHalfBlock.stypo</key>\n      <string>upblock.stypo</string>\n      <key>upperHalfInverseWhiteCircle</key>\n      <string>uni25DA</string>\n      <key>upperLeftAndLowerLeftAndLowerRightBlock</key>\n      <string>uni2599</string>\n      <key>upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n      <string>uni2599.stypo</string>\n      <key>upperLeftAndLowerRightBlock</key>\n      <string>uni259A</string>\n      <key>upperLeftAndLowerRightBlock.stypo</key>\n      <string>uni259A.stypo</string>\n      <key>upperLeftAndUpperRightAndLowerLeftBlock</key>\n      <string>uni259B</string>\n      <key>upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n      <string>uni259B.stypo</string>\n      <key>upperLeftAndUpperRightAndLowerRightBlock</key>\n      <string>uni259C</string>\n      <key>upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n      <string>uni259C.stypo</string>\n      <key>upperLeftArc</key>\n      <string>uni25DC</string>\n      <key>upperLeftBlackTriangle</key>\n      <string>uni25E4</string>\n      <key>upperLeftBlock</key>\n      <string>uni2598</string>\n      <key>upperLeftBlock.stypo</key>\n      <string>uni2598.stypo</string>\n      <key>upperLeftDiagonalHalfBlackSquare</key>\n      <string>uni25E9</string>\n      <key>upperLeftQuadrantWhiteCircle</key>\n      <string>uni25F4</string>\n      <key>upperLeftTriangle</key>\n      <string>uni25F8</string>\n      <key>upperLeftWhiteCircle</key>\n      <string>uni25D5</string>\n      <key>upperOneEighthBlock</key>\n      <string>uni2594</string>\n      <key>upperOneEighthBlock.stypo</key>\n      <string>uni2594.stypo</string>\n      <key>upperRightAndLowerLeftAndLowerRightBlock</key>\n      <string>uni259F</string>\n      <key>upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n      <string>uni259F.stypo</string>\n      <key>upperRightAndLowerLeftBlock</key>\n      <string>uni259E</string>\n      <key>upperRightAndLowerLeftBlock.stypo</key>\n      <string>uni259E.stypo</string>\n      <key>upperRightArc</key>\n      <string>uni25DD</string>\n      <key>upperRightBlackCircle</key>\n      <string>uni25D4</string>\n      <key>upperRightBlackTriangle</key>\n      <string>uni25E5</string>\n      <key>upperRightBlock</key>\n      <string>uni259D</string>\n      <key>upperRightBlock.stypo</key>\n      <string>uni259D.stypo</string>\n      <key>upperRightQuadrantWhiteCircle</key>\n      <string>uni25F7</string>\n      <key>upperRightTriangle</key>\n      <string>uni25F9</string>\n      <key>upperlefttolowerrightFillSquare</key>\n      <string>uni25A7</string>\n      <key>upperrighttolowerleftFillSquare</key>\n      <string>uni25A8</string>\n      <key>upsilon-latin</key>\n      <string>uni028A</string>\n      <key>ushort-cy</key>\n      <string>uni045E</string>\n      <key>ustraight-cy</key>\n      <string>uni04AF</string>\n      <key>ustraightstroke-cy</key>\n      <string>uni04B1</string>\n      <key>vabove-ar</key>\n      <string>uni065A</string>\n      <key>vav-hb</key>\n      <string>uni05D5</string>\n      <key>vavdagesh-hb</key>\n      <string>uniFB35</string>\n      <key>vavholam-hb</key>\n      <string>uniFB4B</string>\n      <key>ve-ar</key>\n      <string>uni06CB</string>\n      <key>ve-ar.fina</key>\n      <string>uniFBDF</string>\n      <key>ve-cy</key>\n      <string>uni0432</string>\n      <key>ve-cy.loclBGR</key>\n      <string>uni0432.loclBGR</string>\n      <key>vectorOrCrossProduct</key>\n      <string>uni2A2F</string>\n      <key>veh-ar</key>\n      <string>uni06A4</string>\n      <key>veh-ar.alt</key>\n      <string>uni06A4.alt</string>\n      <key>veh-ar.fina</key>\n      <string>uniFB6B</string>\n      <key>veh-ar.fina.alt</key>\n      <string>uni06A4.fina.alt</string>\n      <key>veh-ar.init</key>\n      <string>uniFB6C</string>\n      <key>veh-ar.init.alt</key>\n      <string>uni06A4.init.alt</string>\n      <key>veh-ar.medi</key>\n      <string>uniFB6D</string>\n      <key>venus</key>\n      <string>female</string>\n      <key>verseComma-ar</key>\n      <string>uni060E</string>\n      <key>verticalBisectingLineWhiteSquare</key>\n      <string>uni25EB</string>\n      <key>verticalFillCircle</key>\n      <string>uni25CD</string>\n      <key>verticalFillSquare</key>\n      <string>uni25A5</string>\n      <key>verticalTabulationControl</key>\n      <string>uni240B</string>\n      <key>verticalTabulationControl.ss20</key>\n      <string>uni240B.ss20</string>\n      <key>vhook</key>\n      <string>uni028B</string>\n      <key>vinvertedabove-ar</key>\n      <string>uni065B</string>\n      <key>vturned</key>\n      <string>uni028C</string>\n      <key>wasla-ar</key>\n      <string>waslaar</string>\n      <key>wavyhamzaabove-ar</key>\n      <string>wavyhamzaabovear</string>\n      <key>wavyhamzabelow-ar</key>\n      <string>uni065F</string>\n      <key>waw-ar</key>\n      <string>uni0648</string>\n      <key>waw-ar.fina</key>\n      <string>uniFEEE</string>\n      <key>wawDotabove-ar</key>\n      <string>uni06CF</string>\n      <key>wawDotabove-ar.fina</key>\n      <string>uni06CF.fina</string>\n      <key>wawDotcenter-ar</key>\n      <string>uni08AB</string>\n      <key>wawDotcenter-ar.fina</key>\n      <string>uni08AB.fina</string>\n      <key>wawHamzaabove-ar</key>\n      <string>uni0624</string>\n      <key>wawHamzaabove-ar.fina</key>\n      <string>uniFE86</string>\n      <key>wawStraight-ar</key>\n      <string>uni08B1</string>\n      <key>wawThreeAbove-ar</key>\n      <string>uni0779</string>\n      <key>wawThreeAbove-ar.fina</key>\n      <string>uni0779.fina</string>\n      <key>wawTwoabove-ar</key>\n      <string>uni0778</string>\n      <key>wawTwoabove-ar.fina</key>\n      <string>uni0778.fina</string>\n      <key>wawTwodots-ar</key>\n      <string>uni06CA</string>\n      <key>wawTwodots-ar.fina</key>\n      <string>uni06CA.fina</string>\n      <key>wawring-ar</key>\n      <string>uni06C4</string>\n      <key>wawring-ar.fina</key>\n      <string>uni06C4.fina</string>\n      <key>whiteBullet</key>\n      <string>openbullet</string>\n      <key>whiteCircle</key>\n      <string>circle</string>\n      <key>whiteDiamond</key>\n      <string>uni25C7</string>\n      <key>whiteHexagon</key>\n      <string>uni2B21</string>\n      <key>whiteHorizontalEllipse</key>\n      <string>uni2B2D</string>\n      <key>whiteInBlackSquare</key>\n      <string>uni25A3</string>\n      <key>whiteLargeSquare</key>\n      <string>uni2B1C</string>\n      <key>whiteLowerLeftQuadrantSquare</key>\n      <string>uni25F1</string>\n      <key>whiteLowerRightQuadrantSquare</key>\n      <string>uni25F2</string>\n      <key>whiteMediumDiamond</key>\n      <string>uni2B26</string>\n      <key>whiteMediumLozenge</key>\n      <string>uni2B28</string>\n      <key>whiteParallelogram</key>\n      <string>uni25B1</string>\n      <key>whitePentagon</key>\n      <string>uni2B20</string>\n      <key>whiteRect</key>\n      <string>uni25AD</string>\n      <key>whiteRoundedCornersSquare</key>\n      <string>uni25A2</string>\n      <key>whiteSmallLozenge</key>\n      <string>uni2B2B</string>\n      <key>whiteSmallSquare</key>\n      <string>uni25AB</string>\n      <key>whiteSmilingFace</key>\n      <string>smileface</string>\n      <key>whiteSquare</key>\n      <string>uni25A1</string>\n      <key>whiteUpperLeftQuadrantSquare</key>\n      <string>uni25F0</string>\n      <key>whiteUpperRightQuadrantSquare</key>\n      <string>uni25F3</string>\n      <key>whiteVerticalEllipse</key>\n      <string>uni2B2F</string>\n      <key>whiteVerticalRect</key>\n      <string>uni25AF</string>\n      <key>whiteVerysmallSquare</key>\n      <string>uni2B1E</string>\n      <key>wmod</key>\n      <string>uni02B7</string>\n      <key>won</key>\n      <string>uni20A9</string>\n      <key>ydotbelow</key>\n      <string>uni1EF5</string>\n      <key>year-ar</key>\n      <string>uni0601</string>\n      <key>yeh-ar</key>\n      <string>uni064A</string>\n      <key>yeh-ar.fina</key>\n      <string>uniFEF2</string>\n      <key>yeh-ar.fina.alt</key>\n      <string>uni064A.fina.alt</string>\n      <key>yeh-ar.init</key>\n      <string>uniFEF3</string>\n      <key>yeh-ar.init.alt</key>\n      <string>uni064A.init.alt</string>\n      <key>yeh-ar.medi</key>\n      <string>uniFEF4</string>\n      <key>yeh-farsi</key>\n      <string>uni06CC</string>\n      <key>yeh-farsi.fina</key>\n      <string>uniFBFD</string>\n      <key>yeh-farsi.fina.alt</key>\n      <string>uni06CC.fina.alt</string>\n      <key>yeh-farsi.init</key>\n      <string>uniFBFE</string>\n      <key>yeh-farsi.init.alt</key>\n      <string>uni06CC.init.alt</string>\n      <key>yeh-farsi.medi</key>\n      <string>uniFBFF</string>\n      <key>yehFourbelow-farsi</key>\n      <string>uni0777</string>\n      <key>yehFourbelow-farsi.fina</key>\n      <string>uni0777.fina</string>\n      <key>yehFourbelow-farsi.fina.alt</key>\n      <string>uni0777.fina.alt</string>\n      <key>yehFourbelow-farsi.init</key>\n      <string>uni0777.init</string>\n      <key>yehFourbelow-farsi.init.alt</key>\n      <string>uni0777.init.alt</string>\n      <key>yehFourbelow-farsi.medi</key>\n      <string>uni0777.medi</string>\n      <key>yehHamzaabove-ar</key>\n      <string>uni0626</string>\n      <key>yehHamzaabove-ar.fina</key>\n      <string>uniFE8A</string>\n      <key>yehHamzaabove-ar.fina.alt</key>\n      <string>uni0626.fina.alt</string>\n      <key>yehHamzaabove-ar.init</key>\n      <string>uniFE8B</string>\n      <key>yehHamzaabove-ar.init.alt</key>\n      <string>uni0626.init.alt</string>\n      <key>yehHamzaabove-ar.medi</key>\n      <string>uniFE8C</string>\n      <key>yehKashmiri-ar</key>\n      <string>uni0620</string>\n      <key>yehKashmiri-ar.fina</key>\n      <string>uni0620.fina</string>\n      <key>yehKashmiri-ar.fina.alt</key>\n      <string>uni0620.fina.alt</string>\n      <key>yehKashmiri-ar.init</key>\n      <string>uni0620.init</string>\n      <key>yehKashmiri-ar.init.alt</key>\n      <string>uni0620.init.alt</string>\n      <key>yehKashmiri-ar.medi</key>\n      <string>uni0620.medi</string>\n      <key>yehRohingya-ar</key>\n      <string>uni08AC</string>\n      <key>yehRohingya-ar.fina</key>\n      <string>uni08AC.fina</string>\n      <key>yehRohingya-ar.isol</key>\n      <string>uni08AC.isol</string>\n      <key>yehTail-ar</key>\n      <string>uni06CD</string>\n      <key>yehTail-ar.fina</key>\n      <string>uni06CD.fina</string>\n      <key>yehTail-ar.fina.alt</key>\n      <string>uni06CD.fina.alt</string>\n      <key>yehThreeabove-farsi</key>\n      <string>uni0776</string>\n      <key>yehThreeabove-farsi.fina</key>\n      <string>uni0776.fina</string>\n      <key>yehThreeabove-farsi.fina.alt</key>\n      <string>uni0776.fina.alt</string>\n      <key>yehThreeabove-farsi.init</key>\n      <string>uni0776.init</string>\n      <key>yehThreeabove-farsi.init.alt</key>\n      <string>uni0776.init.alt</string>\n      <key>yehThreeabove-farsi.medi</key>\n      <string>uni0776.medi</string>\n      <key>yehThreedotsabove-farsi</key>\n      <string>uni063F</string>\n      <key>yehThreedotsabove-farsi.fina</key>\n      <string>uni063F.fina</string>\n      <key>yehThreedotsabove-farsi.fina.alt</key>\n      <string>uni063F.fina.alt</string>\n      <key>yehThreedotsabove-farsi.init</key>\n      <string>uni063F.init</string>\n      <key>yehThreedotsabove-farsi.init.alt</key>\n      <string>uni063F.init.alt</string>\n      <key>yehThreedotsabove-farsi.medi</key>\n      <string>uni063F.medi</string>\n      <key>yehThreedotsbelow-ar</key>\n      <string>uni06D1</string>\n      <key>yehThreedotsbelow-ar.fina</key>\n      <string>uni06D1.fina</string>\n      <key>yehThreedotsbelow-ar.fina.alt</key>\n      <string>uni06D1.fina.alt</string>\n      <key>yehThreedotsbelow-ar.init</key>\n      <string>uni06D1.init</string>\n      <key>yehThreedotsbelow-ar.init.alt</key>\n      <string>uni06D1.init.alt</string>\n      <key>yehThreedotsbelow-ar.medi</key>\n      <string>uni06D1.medi</string>\n      <key>yehTwoabove-farsi</key>\n      <string>uni0775</string>\n      <key>yehTwoabove-farsi.fina</key>\n      <string>uni0775.fina</string>\n      <key>yehTwoabove-farsi.fina.alt</key>\n      <string>uni0775.fina.alt</string>\n      <key>yehTwoabove-farsi.init</key>\n      <string>uni0775.init</string>\n      <key>yehTwoabove-farsi.init.alt</key>\n      <string>uni0775.init.alt</string>\n      <key>yehTwoabove-farsi.medi</key>\n      <string>uni0775.medi</string>\n      <key>yehTwodotsabove-farsi</key>\n      <string>uni063E</string>\n      <key>yehTwodotsabove-farsi.fina</key>\n      <string>uni063E.fina</string>\n      <key>yehTwodotsabove-farsi.fina.alt</key>\n      <string>uni063E.fina.alt</string>\n      <key>yehTwodotsabove-farsi.init</key>\n      <string>uni063E.init</string>\n      <key>yehTwodotsabove-farsi.init.alt</key>\n      <string>uni063E.init.alt</string>\n      <key>yehTwodotsabove-farsi.medi</key>\n      <string>uni063E.medi</string>\n      <key>yehTwodotsbelowDotabove-ar</key>\n      <string>uni08A9</string>\n      <key>yehTwodotsbelowDotabove-ar.fina</key>\n      <string>uni08A9.fina</string>\n      <key>yehTwodotsbelowDotabove-ar.init</key>\n      <string>uni08A9.init</string>\n      <key>yehTwodotsbelowDotabove-ar.init.alt</key>\n      <string>uni08A9.init.alt</string>\n      <key>yehTwodotsbelowDotabove-ar.medi</key>\n      <string>uni08A9.medi</string>\n      <key>yehTwodotsbelowHamzaabove-ar</key>\n      <string>uni08A8</string>\n      <key>yehTwodotsbelowHamzaabove-ar.fina</key>\n      <string>uni08A8.fina</string>\n      <key>yehTwodotsbelowHamzaabove-ar.init</key>\n      <string>uni08A8.init</string>\n      <key>yehTwodotsbelowHamzaabove-ar.init.alt</key>\n      <string>uni08A8.init.alt</string>\n      <key>yehTwodotsbelowHamzaabove-ar.medi</key>\n      <string>uni08A8.medi</string>\n      <key>yehTwodotsbelowNoonabove-ar</key>\n      <string>uni08BA</string>\n      <key>yehTwodotsbelowNoonabove-ar.fina</key>\n      <string>uni08BA.fina</string>\n      <key>yehTwodotsbelowNoonabove-ar.fina.alt</key>\n      <string>uni08BA.fina.alt</string>\n      <key>yehTwodotsbelowNoonabove-ar.init</key>\n      <string>uni08BA.init</string>\n      <key>yehTwodotsbelowNoonabove-ar.init.alt</key>\n      <string>uni08BA.init.alt</string>\n      <key>yehTwodotsbelowNoonabove-ar.medi</key>\n      <string>uni08BA.medi</string>\n      <key>yehVabove-ar</key>\n      <string>uni06CE</string>\n      <key>yehVabove-ar.fina</key>\n      <string>uni06CE.fina</string>\n      <key>yehVabove-ar.fina.alt</key>\n      <string>uni06CE.fina.alt</string>\n      <key>yehVabove-ar.init</key>\n      <string>uni06CE.init</string>\n      <key>yehVabove-ar.init.alt</key>\n      <string>uni06CE.init.alt</string>\n      <key>yehVabove-ar.medi</key>\n      <string>uni06CE.medi</string>\n      <key>yehVinverted-farsi</key>\n      <string>uni063D</string>\n      <key>yehVinverted-farsi.fina</key>\n      <string>uni063D.fina</string>\n      <key>yehVinverted-farsi.fina.alt</key>\n      <string>uni063D.fina.alt</string>\n      <key>yehVinverted-farsi.init</key>\n      <string>uni063D.init</string>\n      <key>yehVinverted-farsi.init.alt</key>\n      <string>uni063D.init.alt</string>\n      <key>yehVinverted-farsi.medi</key>\n      <string>uni063D.medi</string>\n      <key>yehbarree-ar</key>\n      <string>uni06D2</string>\n      <key>yehbarree-ar.fina</key>\n      <string>uniFBAF</string>\n      <key>yehbarreeHamzaabove-ar</key>\n      <string>uni06D3</string>\n      <key>yehbarreeHamzaabove-ar.fina</key>\n      <string>uniFBB1</string>\n      <key>yehbarreeThreeabove-ar</key>\n      <string>uni077B</string>\n      <key>yehbarreeThreeabove-ar.fina</key>\n      <string>uni077B.fina</string>\n      <key>yehbarreeThreeabove-ar.init</key>\n      <string>uni077B.init</string>\n      <key>yehbarreeThreeabove-ar.init.alt</key>\n      <string>uni077B.init.alt</string>\n      <key>yehbarreeThreeabove-ar.medi</key>\n      <string>uni077B.medi</string>\n      <key>yehbarreeTwoabove-ar</key>\n      <string>uni077A</string>\n      <key>yehbarreeTwoabove-ar.fina</key>\n      <string>uni077A.fina</string>\n      <key>yehbarreeTwoabove-ar.init</key>\n      <string>uni077A.init</string>\n      <key>yehbarreeTwoabove-ar.init.alt</key>\n      <string>uni077A.init.alt</string>\n      <key>yehbarreeTwoabove-ar.medi</key>\n      <string>uni077A.medi</string>\n      <key>yeru-cy</key>\n      <string>uni044B</string>\n      <key>yhookabove</key>\n      <string>uni1EF7</string>\n      <key>yi-cy</key>\n      <string>uni0457</string>\n      <key>ymacron</key>\n      <string>uni0233</string>\n      <key>ymod</key>\n      <string>uni02B8</string>\n      <key>yod-hb</key>\n      <string>uni05D9</string>\n      <key>yoddagesh-hb</key>\n      <string>uniFB39</string>\n      <key>ytilde</key>\n      <string>uni1EF9</string>\n      <key>yu-ar</key>\n      <string>uni06C8</string>\n      <key>yu-ar.fina</key>\n      <string>uniFBDC</string>\n      <key>zah-ar</key>\n      <string>uni0638</string>\n      <key>zah-ar.fina</key>\n      <string>uniFEC6</string>\n      <key>zah-ar.init</key>\n      <string>uniFEC7</string>\n      <key>zah-ar.medi</key>\n      <string>uniFEC8</string>\n      <key>zain-ar</key>\n      <string>uni0632</string>\n      <key>zain-ar.fina</key>\n      <string>uniFEB0</string>\n      <key>zainVInvertedabove-ar</key>\n      <string>zainVInvertedabovear</string>\n      <key>zainVInvertedabove-ar.fina</key>\n      <string>zainVInvertedabovear.fina</string>\n      <key>zayin-hb</key>\n      <string>uni05D6</string>\n      <key>zayindagesh-hb</key>\n      <string>uniFB36</string>\n      <key>ze-cy</key>\n      <string>uni0437</string>\n      <key>ze-cy.loclBGR</key>\n      <string>uni0437.loclBGR</string>\n      <key>zero-ar</key>\n      <string>uni0660</string>\n      <key>zero-arinferior</key>\n      <string>zeroarinferior</string>\n      <key>zero-arsuperior</key>\n      <string>zeroarsuperior</string>\n      <key>zero-persian</key>\n      <string>uni06F0</string>\n      <key>zero-persianinferior</key>\n      <string>zeropersianinferior</string>\n      <key>zero-persiansuperior</key>\n      <string>zeropersiansuperior</string>\n      <key>zeroinferior</key>\n      <string>uni2080</string>\n      <key>zerosuperior</key>\n      <string>uni2070</string>\n      <key>zhe-cy</key>\n      <string>uni0436</string>\n      <key>zhe-cy.loclBGR</key>\n      <string>uni0436.loclBGR</string>\n      <key>zhedescender-cy</key>\n      <string>uni0497</string>\n      <key>zmod</key>\n      <string>uni1DBB</string>\n      <key>checkerBoardDeleteApple2</key>\n      <string>uni2427</string>\n      <key>checkerBoardDeleteTrs80</key>\n      <string>uni2428</string>\n      <key>checkerBoardDeleteAmstradCpc</key>\n      <string>uni2429</string>\n      <key>checkerBoardDeleteAmstradCpc.stypo</key>\n      <string>uni2429.stypo</string>\n      <key>checkerBoardFill</key>\n      <string>u1FB95</string>\n      <key>checkerBoardFill.stypo</key>\n      <string>u1FB95.stypo</string>\n      <key>checkerBoardFillInverse</key>\n      <string>u1FB96</string>\n      <key>checkerBoardFillInverse.stypo</key>\n      <string>u1FB96.stypo</string>\n      <key>blockQuadrant-UC</key>\n      <string>u1FBE4</string>\n      <key>blockQuadrant-UC.stypo</key>\n      <string>u1FBE4.stypo</string>\n      <key>blockQuadrant-LC</key>\n      <string>u1FBE5</string>\n      <key>blockQuadrant-LC.stypo</key>\n      <string>u1FBE5.stypo</string>\n      <key>blockQuadrant-ML</key>\n      <string>u1FBE6</string>\n      <key>blockQuadrant-ML.stypo</key>\n      <string>u1FBE6.stypo</string>\n      <key>blockQuadrant-MR</key>\n      <string>u1FBE7</string>\n      <key>blockQuadrant-MR.stypo</key>\n      <string>u1FBE7.stypo</string>\n      <key>blockTriangle-1</key>\n      <string>u1FB6D</string>\n      <key>blockTriangle-1.stypo</key>\n      <string>u1FB6D.stypo</string>\n      <key>blockTriangle-2</key>\n      <string>u1FB6C</string>\n      <key>blockTriangle-2.stypo</key>\n      <string>u1FB6C.stypo</string>\n      <key>blockTriangle-3</key>\n      <string>u1FB6E</string>\n      <key>blockTriangle-3.stypo</key>\n      <string>u1FB6E.stypo</string>\n      <key>blockTriangle-4</key>\n      <string>u1FB6F</string>\n      <key>blockTriangle-4.stypo</key>\n      <string>u1FB6F.stypo</string>\n      <key>blockTriangle-14</key>\n      <string>u1FB9A</string>\n      <key>blockTriangle-14.stypo</key>\n      <string>u1FB9A.stypo</string>\n      <key>blockTriangle-23</key>\n      <string>u1FB9B</string>\n      <key>blockTriangle-23.stypo</key>\n      <string>u1FB9B.stypo</string>\n      <key>blockTriangle-123</key>\n      <string>u1FB6B</string>\n      <key>blockTriangle-123.stypo</key>\n      <string>u1FB6B.stypo</string>\n      <key>blockTriangle-124</key>\n      <string>u1FB6A</string>\n      <key>blockTriangle-124.stypo</key>\n      <string>u1FB6A.stypo</string>\n      <key>blockTriangle-134</key>\n      <string>u1FB68</string>\n      <key>blockTriangle-134.stypo</key>\n      <string>u1FB68.stypo</string>\n      <key>blockTriangle-234</key>\n      <string>u1FB69</string>\n      <key>blockTriangle-234.stypo</key>\n      <string>u1FB69.stypo</string>\n      <key>blockCircle-1</key>\n      <string>u1FBEF</string>\n      <key>blockCircle-1.stypo</key>\n      <string>u1FBEF.stypo</string>\n      <key>blockCircle-2</key>\n      <string>u1FBEC</string>\n      <key>blockCircle-2.stypo</key>\n      <string>u1FBEC.stypo</string>\n      <key>blockCircle-3</key>\n      <string>u1FBED</string>\n      <key>blockCircle-3.stypo</key>\n      <string>u1FBED.stypo</string>\n      <key>blockCircle-4</key>\n      <string>u1FBEE</string>\n      <key>blockCircle-4.stypo</key>\n      <string>u1FBEE.stypo</string>\n      <key>blockCircle-UC</key>\n      <string>u1FBE8</string>\n      <key>blockCircle-UC.stypo</key>\n      <string>u1FBE8.stypo</string>\n      <key>blockCircle-LC</key>\n      <string>u1FBEA</string>\n      <key>blockCircle-LC.stypo</key>\n      <string>u1FBEA.stypo</string>\n      <key>blockCircle-ML</key>\n      <string>u1FBEB</string>\n      <key>blockCircle-ML.stypo</key>\n      <string>u1FBEB.stypo</string>\n      <key>blockCircle-MR</key>\n      <string>u1FBE9</string>\n      <key>blockCircle-MR.stypo</key>\n      <string>u1FBE9.stypo</string>\n      <key>blockSextant-1</key>\n      <string>u1FB00</string>\n      <key>blockSextant-1.stypo</key>\n      <string>u1FB00.stypo</string>\n      <key>blockSextant-2</key>\n      <string>u1FB01</string>\n      <key>blockSextant-2.stypo</key>\n      <string>u1FB01.stypo</string>\n      <key>blockSextant-12</key>\n      <string>u1FB02</string>\n      <key>blockSextant-12.stypo</key>\n      <string>u1FB02.stypo</string>\n      <key>blockSextant-3</key>\n      <string>u1FB03</string>\n      <key>blockSextant-3.stypo</key>\n      <string>u1FB03.stypo</string>\n      <key>blockSextant-13</key>\n      <string>u1FB04</string>\n      <key>blockSextant-13.stypo</key>\n      <string>u1FB04.stypo</string>\n      <key>blockSextant-23</key>\n      <string>u1FB05</string>\n      <key>blockSextant-23.stypo</key>\n      <string>u1FB05.stypo</string>\n      <key>blockSextant-123</key>\n      <string>u1FB06</string>\n      <key>blockSextant-123.stypo</key>\n      <string>u1FB06.stypo</string>\n      <key>blockSextant-4</key>\n      <string>u1FB07</string>\n      <key>blockSextant-4.stypo</key>\n      <string>u1FB07.stypo</string>\n      <key>blockSextant-14</key>\n      <string>u1FB08</string>\n      <key>blockSextant-14.stypo</key>\n      <string>u1FB08.stypo</string>\n      <key>blockSextant-24</key>\n      <string>u1FB09</string>\n      <key>blockSextant-24.stypo</key>\n      <string>u1FB09.stypo</string>\n      <key>blockSextant-124</key>\n      <string>u1FB0A</string>\n      <key>blockSextant-124.stypo</key>\n      <string>u1FB0A.stypo</string>\n      <key>blockSextant-34</key>\n      <string>u1FB0B</string>\n      <key>blockSextant-34.stypo</key>\n      <string>u1FB0B.stypo</string>\n      <key>blockSextant-134</key>\n      <string>u1FB0C</string>\n      <key>blockSextant-134.stypo</key>\n      <string>u1FB0C.stypo</string>\n      <key>blockSextant-234</key>\n      <string>u1FB0D</string>\n      <key>blockSextant-234.stypo</key>\n      <string>u1FB0D.stypo</string>\n      <key>blockSextant-1234</key>\n      <string>u1FB0E</string>\n      <key>blockSextant-1234.stypo</key>\n      <string>u1FB0E.stypo</string>\n      <key>blockSextant-5</key>\n      <string>u1FB0F</string>\n      <key>blockSextant-5.stypo</key>\n      <string>u1FB0F.stypo</string>\n      <key>blockSextant-15</key>\n      <string>u1FB10</string>\n      <key>blockSextant-15.stypo</key>\n      <string>u1FB10.stypo</string>\n      <key>blockSextant-25</key>\n      <string>u1FB11</string>\n      <key>blockSextant-25.stypo</key>\n      <string>u1FB11.stypo</string>\n      <key>blockSextant-125</key>\n      <string>u1FB12</string>\n      <key>blockSextant-125.stypo</key>\n      <string>u1FB12.stypo</string>\n      <key>blockSextant-35</key>\n      <string>u1FB13</string>\n      <key>blockSextant-35.stypo</key>\n      <string>u1FB13.stypo</string>\n      <key>blockSextant-235</key>\n      <string>u1FB14</string>\n      <key>blockSextant-235.stypo</key>\n      <string>u1FB14.stypo</string>\n      <key>blockSextant-1235</key>\n      <string>u1FB15</string>\n      <key>blockSextant-1235.stypo</key>\n      <string>u1FB15.stypo</string>\n      <key>blockSextant-45</key>\n      <string>u1FB16</string>\n      <key>blockSextant-45.stypo</key>\n      <string>u1FB16.stypo</string>\n      <key>blockSextant-145</key>\n      <string>u1FB17</string>\n      <key>blockSextant-145.stypo</key>\n      <string>u1FB17.stypo</string>\n      <key>blockSextant-245</key>\n      <string>u1FB18</string>\n      <key>blockSextant-245.stypo</key>\n      <string>u1FB18.stypo</string>\n      <key>blockSextant-1245</key>\n      <string>u1FB19</string>\n      <key>blockSextant-1245.stypo</key>\n      <string>u1FB19.stypo</string>\n      <key>blockSextant-345</key>\n      <string>u1FB1A</string>\n      <key>blockSextant-345.stypo</key>\n      <string>u1FB1A.stypo</string>\n      <key>blockSextant-1345</key>\n      <string>u1FB1B</string>\n      <key>blockSextant-1345.stypo</key>\n      <string>u1FB1B.stypo</string>\n      <key>blockSextant-2345</key>\n      <string>u1FB1C</string>\n      <key>blockSextant-2345.stypo</key>\n      <string>u1FB1C.stypo</string>\n      <key>blockSextant-12345</key>\n      <string>u1FB1D</string>\n      <key>blockSextant-12345.stypo</key>\n      <string>u1FB1D.stypo</string>\n      <key>blockSextant-6</key>\n      <string>u1FB1E</string>\n      <key>blockSextant-6.stypo</key>\n      <string>u1FB1E.stypo</string>\n      <key>blockSextant-16</key>\n      <string>u1FB1F</string>\n      <key>blockSextant-16.stypo</key>\n      <string>u1FB1F.stypo</string>\n      <key>blockSextant-26</key>\n      <string>u1FB20</string>\n      <key>blockSextant-26.stypo</key>\n      <string>u1FB20.stypo</string>\n      <key>blockSextant-126</key>\n      <string>u1FB21</string>\n      <key>blockSextant-126.stypo</key>\n      <string>u1FB21.stypo</string>\n      <key>blockSextant-36</key>\n      <string>u1FB22</string>\n      <key>blockSextant-36.stypo</key>\n      <string>u1FB22.stypo</string>\n      <key>blockSextant-136</key>\n      <string>u1FB23</string>\n      <key>blockSextant-136.stypo</key>\n      <string>u1FB23.stypo</string>\n      <key>blockSextant-236</key>\n      <string>u1FB24</string>\n      <key>blockSextant-236.stypo</key>\n      <string>u1FB24.stypo</string>\n      <key>blockSextant-1236</key>\n      <string>u1FB25</string>\n      <key>blockSextant-1236.stypo</key>\n      <string>u1FB25.stypo</string>\n      <key>blockSextant-46</key>\n      <string>u1FB26</string>\n      <key>blockSextant-46.stypo</key>\n      <string>u1FB26.stypo</string>\n      <key>blockSextant-146</key>\n      <string>u1FB27</string>\n      <key>blockSextant-146.stypo</key>\n      <string>u1FB27.stypo</string>\n      <key>blockSextant-1246</key>\n      <string>u1FB28</string>\n      <key>blockSextant-1246.stypo</key>\n      <string>u1FB28.stypo</string>\n      <key>blockSextant-346</key>\n      <string>u1FB29</string>\n      <key>blockSextant-346.stypo</key>\n      <string>u1FB29.stypo</string>\n      <key>blockSextant-1346</key>\n      <string>u1FB2A</string>\n      <key>blockSextant-1346.stypo</key>\n      <string>u1FB2A.stypo</string>\n      <key>blockSextant-2346</key>\n      <string>u1FB2B</string>\n      <key>blockSextant-2346.stypo</key>\n      <string>u1FB2B.stypo</string>\n      <key>blockSextant-12346</key>\n      <string>u1FB2C</string>\n      <key>blockSextant-12346.stypo</key>\n      <string>u1FB2C.stypo</string>\n      <key>blockSextant-56</key>\n      <string>u1FB2D</string>\n      <key>blockSextant-56.stypo</key>\n      <string>u1FB2D.stypo</string>\n      <key>blockSextant-156</key>\n      <string>u1FB2E</string>\n      <key>blockSextant-156.stypo</key>\n      <string>u1FB2E.stypo</string>\n      <key>blockSextant-256</key>\n      <string>u1FB2F</string>\n      <key>blockSextant-256.stypo</key>\n      <string>u1FB2F.stypo</string>\n      <key>blockSextant-1256</key>\n      <string>u1FB30</string>\n      <key>blockSextant-1256.stypo</key>\n      <string>u1FB30.stypo</string>\n      <key>blockSextant-356</key>\n      <string>u1FB31</string>\n      <key>blockSextant-356.stypo</key>\n      <string>u1FB31.stypo</string>\n      <key>blockSextant-1356</key>\n      <string>u1FB32</string>\n      <key>blockSextant-1356.stypo</key>\n      <string>u1FB32.stypo</string>\n      <key>blockSextant-2356</key>\n      <string>u1FB33</string>\n      <key>blockSextant-2356.stypo</key>\n      <string>u1FB33.stypo</string>\n      <key>blockSextant-12356</key>\n      <string>u1FB34</string>\n      <key>blockSextant-12356.stypo</key>\n      <string>u1FB34.stypo</string>\n      <key>blockSextant-456</key>\n      <string>u1FB35</string>\n      <key>blockSextant-456.stypo</key>\n      <string>u1FB35.stypo</string>\n      <key>blockSextant-1456</key>\n      <string>u1FB36</string>\n      <key>blockSextant-1456.stypo</key>\n      <string>u1FB36.stypo</string>\n      <key>blockSextant-2456</key>\n      <string>u1FB37</string>\n      <key>blockSextant-2456.stypo</key>\n      <string>u1FB37.stypo</string>\n      <key>blockSextant-12456</key>\n      <string>u1FB38</string>\n      <key>blockSextant-12456.stypo</key>\n      <string>u1FB38.stypo</string>\n      <key>blockSextant-3456</key>\n      <string>u1FB39</string>\n      <key>blockSextant-3456.stypo</key>\n      <string>u1FB39.stypo</string>\n      <key>blockSextant-13456</key>\n      <string>u1FB3A</string>\n      <key>blockSextant-13456.stypo</key>\n      <string>u1FB3A.stypo</string>\n      <key>blockSextant-23456</key>\n      <string>u1FB3B</string>\n      <key>blockSextant-23456.stypo</key>\n      <string>u1FB3B.stypo</string>\n      <key>blockDiagonal-1FB3C</key>\n      <string>u1FB3C</string>\n      <key>blockDiagonal-1FB3C.stypo</key>\n      <string>u1FB3C.stypo</string>\n      <key>blockDiagonal-1FB3D</key>\n      <string>u1FB3D</string>\n      <key>blockDiagonal-1FB3D.stypo</key>\n      <string>u1FB3D.stypo</string>\n      <key>blockDiagonal-1FB3E</key>\n      <string>u1FB3E</string>\n      <key>blockDiagonal-1FB3E.stypo</key>\n      <string>u1FB3E.stypo</string>\n      <key>blockDiagonal-1FB3F</key>\n      <string>u1FB3F</string>\n      <key>blockDiagonal-1FB3F.stypo</key>\n      <string>u1FB3F.stypo</string>\n      <key>blockDiagonal-1FB40</key>\n      <string>u1FB40</string>\n      <key>blockDiagonal-1FB40.stypo</key>\n      <string>u1FB40.stypo</string>\n      <key>blockDiagonal-1FB41</key>\n      <string>u1FB41</string>\n      <key>blockDiagonal-1FB41.stypo</key>\n      <string>u1FB41.stypo</string>\n      <key>blockDiagonal-1FB42</key>\n      <string>u1FB42</string>\n      <key>blockDiagonal-1FB42.stypo</key>\n      <string>u1FB42.stypo</string>\n      <key>blockDiagonal-1FB43</key>\n      <string>u1FB43</string>\n      <key>blockDiagonal-1FB43.stypo</key>\n      <string>u1FB43.stypo</string>\n      <key>blockDiagonal-1FB44</key>\n      <string>u1FB44</string>\n      <key>blockDiagonal-1FB44.stypo</key>\n      <string>u1FB44.stypo</string>\n      <key>blockDiagonal-1FB45</key>\n      <string>u1FB45</string>\n      <key>blockDiagonal-1FB45.stypo</key>\n      <string>u1FB45.stypo</string>\n      <key>blockDiagonal-1FB46</key>\n      <string>u1FB46</string>\n      <key>blockDiagonal-1FB46.stypo</key>\n      <string>u1FB46.stypo</string>\n      <key>blockDiagonal-1FB47</key>\n      <string>u1FB47</string>\n      <key>blockDiagonal-1FB47.stypo</key>\n      <string>u1FB47.stypo</string>\n      <key>blockDiagonal-1FB48</key>\n      <string>u1FB48</string>\n      <key>blockDiagonal-1FB48.stypo</key>\n      <string>u1FB48.stypo</string>\n      <key>blockDiagonal-1FB49</key>\n      <string>u1FB49</string>\n      <key>blockDiagonal-1FB49.stypo</key>\n      <string>u1FB49.stypo</string>\n      <key>blockDiagonal-1FB4A</key>\n      <string>u1FB4A</string>\n      <key>blockDiagonal-1FB4A.stypo</key>\n      <string>u1FB4A.stypo</string>\n      <key>blockDiagonal-1FB4B</key>\n      <string>u1FB4B</string>\n      <key>blockDiagonal-1FB4B.stypo</key>\n      <string>u1FB4B.stypo</string>\n      <key>blockDiagonal-1FB4C</key>\n      <string>u1FB4C</string>\n      <key>blockDiagonal-1FB4C.stypo</key>\n      <string>u1FB4C.stypo</string>\n      <key>blockDiagonal-1FB4D</key>\n      <string>u1FB4D</string>\n      <key>blockDiagonal-1FB4D.stypo</key>\n      <string>u1FB4D.stypo</string>\n      <key>blockDiagonal-1FB4E</key>\n      <string>u1FB4E</string>\n      <key>blockDiagonal-1FB4E.stypo</key>\n      <string>u1FB4E.stypo</string>\n      <key>blockDiagonal-1FB4F</key>\n      <string>u1FB4F</string>\n      <key>blockDiagonal-1FB4F.stypo</key>\n      <string>u1FB4F.stypo</string>\n      <key>blockDiagonal-1FB50</key>\n      <string>u1FB50</string>\n      <key>blockDiagonal-1FB50.stypo</key>\n      <string>u1FB50.stypo</string>\n      <key>blockDiagonal-1FB51</key>\n      <string>u1FB51</string>\n      <key>blockDiagonal-1FB51.stypo</key>\n      <string>u1FB51.stypo</string>\n      <key>blockDiagonal-1FB52</key>\n      <string>u1FB52</string>\n      <key>blockDiagonal-1FB52.stypo</key>\n      <string>u1FB52.stypo</string>\n      <key>blockDiagonal-1FB53</key>\n      <string>u1FB53</string>\n      <key>blockDiagonal-1FB53.stypo</key>\n      <string>u1FB53.stypo</string>\n      <key>blockDiagonal-1FB54</key>\n      <string>u1FB54</string>\n      <key>blockDiagonal-1FB54.stypo</key>\n      <string>u1FB54.stypo</string>\n      <key>blockDiagonal-1FB55</key>\n      <string>u1FB55</string>\n      <key>blockDiagonal-1FB55.stypo</key>\n      <string>u1FB55.stypo</string>\n      <key>blockDiagonal-1FB56</key>\n      <string>u1FB56</string>\n      <key>blockDiagonal-1FB56.stypo</key>\n      <string>u1FB56.stypo</string>\n      <key>blockDiagonal-1FB57</key>\n      <string>u1FB57</string>\n      <key>blockDiagonal-1FB57.stypo</key>\n      <string>u1FB57.stypo</string>\n      <key>blockDiagonal-1FB58</key>\n      <string>u1FB58</string>\n      <key>blockDiagonal-1FB58.stypo</key>\n      <string>u1FB58.stypo</string>\n      <key>blockDiagonal-1FB59</key>\n      <string>u1FB59</string>\n      <key>blockDiagonal-1FB59.stypo</key>\n      <string>u1FB59.stypo</string>\n      <key>blockDiagonal-1FB5A</key>\n      <string>u1FB5A</string>\n      <key>blockDiagonal-1FB5A.stypo</key>\n      <string>u1FB5A.stypo</string>\n      <key>blockDiagonal-1FB5B</key>\n      <string>u1FB5B</string>\n      <key>blockDiagonal-1FB5B.stypo</key>\n      <string>u1FB5B.stypo</string>\n      <key>blockDiagonal-1FB5C</key>\n      <string>u1FB5C</string>\n      <key>blockDiagonal-1FB5C.stypo</key>\n      <string>u1FB5C.stypo</string>\n      <key>blockDiagonal-1FB5D</key>\n      <string>u1FB5D</string>\n      <key>blockDiagonal-1FB5D.stypo</key>\n      <string>u1FB5D.stypo</string>\n      <key>blockDiagonal-1FB5E</key>\n      <string>u1FB5E</string>\n      <key>blockDiagonal-1FB5E.stypo</key>\n      <string>u1FB5E.stypo</string>\n      <key>blockDiagonal-1FB5F</key>\n      <string>u1FB5F</string>\n      <key>blockDiagonal-1FB5F.stypo</key>\n      <string>u1FB5F.stypo</string>\n      <key>blockDiagonal-1FB60</key>\n      <string>u1FB60</string>\n      <key>blockDiagonal-1FB60.stypo</key>\n      <string>u1FB60.stypo</string>\n      <key>blockDiagonal-1FB61</key>\n      <string>u1FB61</string>\n      <key>blockDiagonal-1FB61.stypo</key>\n      <string>u1FB61.stypo</string>\n      <key>blockDiagonal-1FB62</key>\n      <string>u1FB62</string>\n      <key>blockDiagonal-1FB62.stypo</key>\n      <string>u1FB62.stypo</string>\n      <key>blockDiagonal-1FB63</key>\n      <string>u1FB63</string>\n      <key>blockDiagonal-1FB63.stypo</key>\n      <string>u1FB63.stypo</string>\n      <key>blockDiagonal-1FB64</key>\n      <string>u1FB64</string>\n      <key>blockDiagonal-1FB64.stypo</key>\n      <string>u1FB64.stypo</string>\n      <key>blockDiagonal-1FB65</key>\n      <string>u1FB65</string>\n      <key>blockDiagonal-1FB65.stypo</key>\n      <string>u1FB65.stypo</string>\n      <key>blockDiagonal-1FB66</key>\n      <string>u1FB66</string>\n      <key>blockDiagonal-1FB66.stypo</key>\n      <string>u1FB66.stypo</string>\n      <key>blockDiagonal-1FB67</key>\n      <string>u1FB67</string>\n      <key>blockDiagonal-1FB67.stypo</key>\n      <string>u1FB67.stypo</string>\n      <key>blockOctant-1</key>\n      <string>u1CEA8</string>\n      <key>blockOctant-1.stypo</key>\n      <string>u1CEA8.stypo</string>\n      <key>blockOctant-2</key>\n      <string>u1CEAB</string>\n      <key>blockOctant-2.stypo</key>\n      <string>u1CEAB.stypo</string>\n      <key>blockOctant-12</key>\n      <string>u1FB82</string>\n      <key>blockOctant-12.stypo</key>\n      <string>u1FB82.stypo</string>\n      <key>blockOctant-3</key>\n      <string>u1CD00</string>\n      <key>blockOctant-3.stypo</key>\n      <string>u1CD00.stypo</string>\n      <key>blockOctant-23</key>\n      <string>u1CD01</string>\n      <key>blockOctant-23.stypo</key>\n      <string>u1CD01.stypo</string>\n      <key>blockOctant-123</key>\n      <string>u1CD02</string>\n      <key>blockOctant-123.stypo</key>\n      <string>u1CD02.stypo</string>\n      <key>blockOctant-4</key>\n      <string>u1CD03</string>\n      <key>blockOctant-4.stypo</key>\n      <string>u1CD03.stypo</string>\n      <key>blockOctant-14</key>\n      <string>u1CD04</string>\n      <key>blockOctant-14.stypo</key>\n      <string>u1CD04.stypo</string>\n      <key>blockOctant-124</key>\n      <string>u1CD05</string>\n      <key>blockOctant-124.stypo</key>\n      <string>u1CD05.stypo</string>\n      <key>blockOctant-34</key>\n      <string>u1CD06</string>\n      <key>blockOctant-34.stypo</key>\n      <string>u1CD06.stypo</string>\n      <key>blockOctant-134</key>\n      <string>u1CD07</string>\n      <key>blockOctant-134.stypo</key>\n      <string>u1CD07.stypo</string>\n      <key>blockOctant-234</key>\n      <string>u1CD08</string>\n      <key>blockOctant-234.stypo</key>\n      <string>u1CD08.stypo</string>\n      <key>blockOctant-5</key>\n      <string>u1CD09</string>\n      <key>blockOctant-5.stypo</key>\n      <string>u1CD09.stypo</string>\n      <key>blockOctant-15</key>\n      <string>u1CD0A</string>\n      <key>blockOctant-15.stypo</key>\n      <string>u1CD0A.stypo</string>\n      <key>blockOctant-25</key>\n      <string>u1CD0B</string>\n      <key>blockOctant-25.stypo</key>\n      <string>u1CD0B.stypo</string>\n      <key>blockOctant-125</key>\n      <string>u1CD0C</string>\n      <key>blockOctant-125.stypo</key>\n      <string>u1CD0C.stypo</string>\n      <key>blockOctant-135</key>\n      <string>u1CD0D</string>\n      <key>blockOctant-135.stypo</key>\n      <string>u1CD0D.stypo</string>\n      <key>blockOctant-235</key>\n      <string>u1CD0E</string>\n      <key>blockOctant-235.stypo</key>\n      <string>u1CD0E.stypo</string>\n      <key>blockOctant-1235</key>\n      <string>u1CD0F</string>\n      <key>blockOctant-1235.stypo</key>\n      <string>u1CD0F.stypo</string>\n      <key>blockOctant-45</key>\n      <string>u1CD10</string>\n      <key>blockOctant-45.stypo</key>\n      <string>u1CD10.stypo</string>\n      <key>blockOctant-145</key>\n      <string>u1CD11</string>\n      <key>blockOctant-145.stypo</key>\n      <string>u1CD11.stypo</string>\n      <key>blockOctant-245</key>\n      <string>u1CD12</string>\n      <key>blockOctant-245.stypo</key>\n      <string>u1CD12.stypo</string>\n      <key>blockOctant-1245</key>\n      <string>u1CD13</string>\n      <key>blockOctant-1245.stypo</key>\n      <string>u1CD13.stypo</string>\n      <key>blockOctant-345</key>\n      <string>u1CD14</string>\n      <key>blockOctant-345.stypo</key>\n      <string>u1CD14.stypo</string>\n      <key>blockOctant-1345</key>\n      <string>u1CD15</string>\n      <key>blockOctant-1345.stypo</key>\n      <string>u1CD15.stypo</string>\n      <key>blockOctant-2345</key>\n      <string>u1CD16</string>\n      <key>blockOctant-2345.stypo</key>\n      <string>u1CD16.stypo</string>\n      <key>blockOctant-12345</key>\n      <string>u1CD17</string>\n      <key>blockOctant-12345.stypo</key>\n      <string>u1CD17.stypo</string>\n      <key>blockOctant-6</key>\n      <string>u1CD18</string>\n      <key>blockOctant-6.stypo</key>\n      <string>u1CD18.stypo</string>\n      <key>blockOctant-16</key>\n      <string>u1CD19</string>\n      <key>blockOctant-16.stypo</key>\n      <string>u1CD19.stypo</string>\n      <key>blockOctant-26</key>\n      <string>u1CD1A</string>\n      <key>blockOctant-26.stypo</key>\n      <string>u1CD1A.stypo</string>\n      <key>blockOctant-126</key>\n      <string>u1CD1B</string>\n      <key>blockOctant-126.stypo</key>\n      <string>u1CD1B.stypo</string>\n      <key>blockOctant-36</key>\n      <string>u1CD1C</string>\n      <key>blockOctant-36.stypo</key>\n      <string>u1CD1C.stypo</string>\n      <key>blockOctant-136</key>\n      <string>u1CD1D</string>\n      <key>blockOctant-136.stypo</key>\n      <string>u1CD1D.stypo</string>\n      <key>blockOctant-236</key>\n      <string>u1CD1E</string>\n      <key>blockOctant-236.stypo</key>\n      <string>u1CD1E.stypo</string>\n      <key>blockOctant-1236</key>\n      <string>u1CD1F</string>\n      <key>blockOctant-1236.stypo</key>\n      <string>u1CD1F.stypo</string>\n      <key>blockOctant-146</key>\n      <string>u1CD20</string>\n      <key>blockOctant-146.stypo</key>\n      <string>u1CD20.stypo</string>\n      <key>blockOctant-246</key>\n      <string>u1CD21</string>\n      <key>blockOctant-246.stypo</key>\n      <string>u1CD21.stypo</string>\n      <key>blockOctant-1246</key>\n      <string>u1CD22</string>\n      <key>blockOctant-1246.stypo</key>\n      <string>u1CD22.stypo</string>\n      <key>blockOctant-346</key>\n      <string>u1CD23</string>\n      <key>blockOctant-346.stypo</key>\n      <string>u1CD23.stypo</string>\n      <key>blockOctant-1346</key>\n      <string>u1CD24</string>\n      <key>blockOctant-1346.stypo</key>\n      <string>u1CD24.stypo</string>\n      <key>blockOctant-2346</key>\n      <string>u1CD25</string>\n      <key>blockOctant-2346.stypo</key>\n      <string>u1CD25.stypo</string>\n      <key>blockOctant-12346</key>\n      <string>u1CD26</string>\n      <key>blockOctant-12346.stypo</key>\n      <string>u1CD26.stypo</string>\n      <key>blockOctant-56</key>\n      <string>u1CD27</string>\n      <key>blockOctant-56.stypo</key>\n      <string>u1CD27.stypo</string>\n      <key>blockOctant-156</key>\n      <string>u1CD28</string>\n      <key>blockOctant-156.stypo</key>\n      <string>u1CD28.stypo</string>\n      <key>blockOctant-256</key>\n      <string>u1CD29</string>\n      <key>blockOctant-256.stypo</key>\n      <string>u1CD29.stypo</string>\n      <key>blockOctant-1256</key>\n      <string>u1CD2A</string>\n      <key>blockOctant-1256.stypo</key>\n      <string>u1CD2A.stypo</string>\n      <key>blockOctant-356</key>\n      <string>u1CD2B</string>\n      <key>blockOctant-356.stypo</key>\n      <string>u1CD2B.stypo</string>\n      <key>blockOctant-1356</key>\n      <string>u1CD2C</string>\n      <key>blockOctant-1356.stypo</key>\n      <string>u1CD2C.stypo</string>\n      <key>blockOctant-2356</key>\n      <string>u1CD2D</string>\n      <key>blockOctant-2356.stypo</key>\n      <string>u1CD2D.stypo</string>\n      <key>blockOctant-12356</key>\n      <string>u1CD2E</string>\n      <key>blockOctant-12356.stypo</key>\n      <string>u1CD2E.stypo</string>\n      <key>blockOctant-456</key>\n      <string>u1CD2F</string>\n      <key>blockOctant-456.stypo</key>\n      <string>u1CD2F.stypo</string>\n      <key>blockOctant-1456</key>\n      <string>u1CD30</string>\n      <key>blockOctant-1456.stypo</key>\n      <string>u1CD30.stypo</string>\n      <key>blockOctant-2456</key>\n      <string>u1CD31</string>\n      <key>blockOctant-2456.stypo</key>\n      <string>u1CD31.stypo</string>\n      <key>blockOctant-12456</key>\n      <string>u1CD32</string>\n      <key>blockOctant-12456.stypo</key>\n      <string>u1CD32.stypo</string>\n      <key>blockOctant-3456</key>\n      <string>u1CD33</string>\n      <key>blockOctant-3456.stypo</key>\n      <string>u1CD33.stypo</string>\n      <key>blockOctant-13456</key>\n      <string>u1CD34</string>\n      <key>blockOctant-13456.stypo</key>\n      <string>u1CD34.stypo</string>\n      <key>blockOctant-23456</key>\n      <string>u1CD35</string>\n      <key>blockOctant-23456.stypo</key>\n      <string>u1CD35.stypo</string>\n      <key>blockOctant-123456</key>\n      <string>u1FB85</string>\n      <key>blockOctant-123456.stypo</key>\n      <string>u1FB85.stypo</string>\n      <key>blockOctant-7</key>\n      <string>u1CEA3</string>\n      <key>blockOctant-7.stypo</key>\n      <string>u1CEA3.stypo</string>\n      <key>blockOctant-17</key>\n      <string>u1CD36</string>\n      <key>blockOctant-17.stypo</key>\n      <string>u1CD36.stypo</string>\n      <key>blockOctant-27</key>\n      <string>u1CD37</string>\n      <key>blockOctant-27.stypo</key>\n      <string>u1CD37.stypo</string>\n      <key>blockOctant-127</key>\n      <string>u1CD38</string>\n      <key>blockOctant-127.stypo</key>\n      <string>u1CD38.stypo</string>\n      <key>blockOctant-37</key>\n      <string>u1CD39</string>\n      <key>blockOctant-37.stypo</key>\n      <string>u1CD39.stypo</string>\n      <key>blockOctant-137</key>\n      <string>u1CD3A</string>\n      <key>blockOctant-137.stypo</key>\n      <string>u1CD3A.stypo</string>\n      <key>blockOctant-237</key>\n      <string>u1CD3B</string>\n      <key>blockOctant-237.stypo</key>\n      <string>u1CD3B.stypo</string>\n      <key>blockOctant-1237</key>\n      <string>u1CD3C</string>\n      <key>blockOctant-1237.stypo</key>\n      <string>u1CD3C.stypo</string>\n      <key>blockOctant-47</key>\n      <string>u1CD3D</string>\n      <key>blockOctant-47.stypo</key>\n      <string>u1CD3D.stypo</string>\n      <key>blockOctant-147</key>\n      <string>u1CD3E</string>\n      <key>blockOctant-147.stypo</key>\n      <string>u1CD3E.stypo</string>\n      <key>blockOctant-247</key>\n      <string>u1CD3F</string>\n      <key>blockOctant-247.stypo</key>\n      <string>u1CD3F.stypo</string>\n      <key>blockOctant-1247</key>\n      <string>u1CD40</string>\n      <key>blockOctant-1247.stypo</key>\n      <string>u1CD40.stypo</string>\n      <key>blockOctant-347</key>\n      <string>u1CD41</string>\n      <key>blockOctant-347.stypo</key>\n      <string>u1CD41.stypo</string>\n      <key>blockOctant-1347</key>\n      <string>u1CD42</string>\n      <key>blockOctant-1347.stypo</key>\n      <string>u1CD42.stypo</string>\n      <key>blockOctant-2347</key>\n      <string>u1CD43</string>\n      <key>blockOctant-2347.stypo</key>\n      <string>u1CD43.stypo</string>\n      <key>blockOctant-12347</key>\n      <string>u1CD44</string>\n      <key>blockOctant-12347.stypo</key>\n      <string>u1CD44.stypo</string>\n      <key>blockOctant-157</key>\n      <string>u1CD45</string>\n      <key>blockOctant-157.stypo</key>\n      <string>u1CD45.stypo</string>\n      <key>blockOctant-257</key>\n      <string>u1CD46</string>\n      <key>blockOctant-257.stypo</key>\n      <string>u1CD46.stypo</string>\n      <key>blockOctant-1257</key>\n      <string>u1CD47</string>\n      <key>blockOctant-1257.stypo</key>\n      <string>u1CD47.stypo</string>\n      <key>blockOctant-357</key>\n      <string>u1CD48</string>\n      <key>blockOctant-357.stypo</key>\n      <string>u1CD48.stypo</string>\n      <key>blockOctant-2357</key>\n      <string>u1CD49</string>\n      <key>blockOctant-2357.stypo</key>\n      <string>u1CD49.stypo</string>\n      <key>blockOctant-12357</key>\n      <string>u1CD4A</string>\n      <key>blockOctant-12357.stypo</key>\n      <string>u1CD4A.stypo</string>\n      <key>blockOctant-457</key>\n      <string>u1CD4B</string>\n      <key>blockOctant-457.stypo</key>\n      <string>u1CD4B.stypo</string>\n      <key>blockOctant-1457</key>\n      <string>u1CD4C</string>\n      <key>blockOctant-1457.stypo</key>\n      <string>u1CD4C.stypo</string>\n      <key>blockOctant-12457</key>\n      <string>u1CD4D</string>\n      <key>blockOctant-12457.stypo</key>\n      <string>u1CD4D.stypo</string>\n      <key>blockOctant-3457</key>\n      <string>u1CD4E</string>\n      <key>blockOctant-3457.stypo</key>\n      <string>u1CD4E.stypo</string>\n      <key>blockOctant-13457</key>\n      <string>u1CD4F</string>\n      <key>blockOctant-13457.stypo</key>\n      <string>u1CD4F.stypo</string>\n      <key>blockOctant-23457</key>\n      <string>u1CD50</string>\n      <key>blockOctant-23457.stypo</key>\n      <string>u1CD50.stypo</string>\n      <key>blockOctant-67</key>\n      <string>u1CD51</string>\n      <key>blockOctant-67.stypo</key>\n      <string>u1CD51.stypo</string>\n      <key>blockOctant-167</key>\n      <string>u1CD52</string>\n      <key>blockOctant-167.stypo</key>\n      <string>u1CD52.stypo</string>\n      <key>blockOctant-267</key>\n      <string>u1CD53</string>\n      <key>blockOctant-267.stypo</key>\n      <string>u1CD53.stypo</string>\n      <key>blockOctant-1267</key>\n      <string>u1CD54</string>\n      <key>blockOctant-1267.stypo</key>\n      <string>u1CD54.stypo</string>\n      <key>blockOctant-367</key>\n      <string>u1CD55</string>\n      <key>blockOctant-367.stypo</key>\n      <string>u1CD55.stypo</string>\n      <key>blockOctant-1367</key>\n      <string>u1CD56</string>\n      <key>blockOctant-1367.stypo</key>\n      <string>u1CD56.stypo</string>\n      <key>blockOctant-2367</key>\n      <string>u1CD57</string>\n      <key>blockOctant-2367.stypo</key>\n      <string>u1CD57.stypo</string>\n      <key>blockOctant-12367</key>\n      <string>u1CD58</string>\n      <key>blockOctant-12367.stypo</key>\n      <string>u1CD58.stypo</string>\n      <key>blockOctant-467</key>\n      <string>u1CD59</string>\n      <key>blockOctant-467.stypo</key>\n      <string>u1CD59.stypo</string>\n      <key>blockOctant-1467</key>\n      <string>u1CD5A</string>\n      <key>blockOctant-1467.stypo</key>\n      <string>u1CD5A.stypo</string>\n      <key>blockOctant-2467</key>\n      <string>u1CD5B</string>\n      <key>blockOctant-2467.stypo</key>\n      <string>u1CD5B.stypo</string>\n      <key>blockOctant-12467</key>\n      <string>u1CD5C</string>\n      <key>blockOctant-12467.stypo</key>\n      <string>u1CD5C.stypo</string>\n      <key>blockOctant-3467</key>\n      <string>u1CD5D</string>\n      <key>blockOctant-3467.stypo</key>\n      <string>u1CD5D.stypo</string>\n      <key>blockOctant-13467</key>\n      <string>u1CD5E</string>\n      <key>blockOctant-13467.stypo</key>\n      <string>u1CD5E.stypo</string>\n      <key>blockOctant-23467</key>\n      <string>u1CD5F</string>\n      <key>blockOctant-23467.stypo</key>\n      <string>u1CD5F.stypo</string>\n      <key>blockOctant-123467</key>\n      <string>u1CD60</string>\n      <key>blockOctant-123467.stypo</key>\n      <string>u1CD60.stypo</string>\n      <key>blockOctant-567</key>\n      <string>u1CD61</string>\n      <key>blockOctant-567.stypo</key>\n      <string>u1CD61.stypo</string>\n      <key>blockOctant-1567</key>\n      <string>u1CD62</string>\n      <key>blockOctant-1567.stypo</key>\n      <string>u1CD62.stypo</string>\n      <key>blockOctant-2567</key>\n      <string>u1CD63</string>\n      <key>blockOctant-2567.stypo</key>\n      <string>u1CD63.stypo</string>\n      <key>blockOctant-12567</key>\n      <string>u1CD64</string>\n      <key>blockOctant-12567.stypo</key>\n      <string>u1CD64.stypo</string>\n      <key>blockOctant-3567</key>\n      <string>u1CD65</string>\n      <key>blockOctant-3567.stypo</key>\n      <string>u1CD65.stypo</string>\n      <key>blockOctant-13567</key>\n      <string>u1CD66</string>\n      <key>blockOctant-13567.stypo</key>\n      <string>u1CD66.stypo</string>\n      <key>blockOctant-23567</key>\n      <string>u1CD67</string>\n      <key>blockOctant-23567.stypo</key>\n      <string>u1CD67.stypo</string>\n      <key>blockOctant-123567</key>\n      <string>u1CD68</string>\n      <key>blockOctant-123567.stypo</key>\n      <string>u1CD68.stypo</string>\n      <key>blockOctant-4567</key>\n      <string>u1CD69</string>\n      <key>blockOctant-4567.stypo</key>\n      <string>u1CD69.stypo</string>\n      <key>blockOctant-14567</key>\n      <string>u1CD6A</string>\n      <key>blockOctant-14567.stypo</key>\n      <string>u1CD6A.stypo</string>\n      <key>blockOctant-24567</key>\n      <string>u1CD6B</string>\n      <key>blockOctant-24567.stypo</key>\n      <string>u1CD6B.stypo</string>\n      <key>blockOctant-124567</key>\n      <string>u1CD6C</string>\n      <key>blockOctant-124567.stypo</key>\n      <string>u1CD6C.stypo</string>\n      <key>blockOctant-34567</key>\n      <string>u1CD6D</string>\n      <key>blockOctant-34567.stypo</key>\n      <string>u1CD6D.stypo</string>\n      <key>blockOctant-134567</key>\n      <string>u1CD6E</string>\n      <key>blockOctant-134567.stypo</key>\n      <string>u1CD6E.stypo</string>\n      <key>blockOctant-234567</key>\n      <string>u1CD6F</string>\n      <key>blockOctant-234567.stypo</key>\n      <string>u1CD6F.stypo</string>\n      <key>blockOctant-1234567</key>\n      <string>u1CD70</string>\n      <key>blockOctant-1234567.stypo</key>\n      <string>u1CD70.stypo</string>\n      <key>blockOctant-8</key>\n      <string>u1CEA0</string>\n      <key>blockOctant-8.stypo</key>\n      <string>u1CEA0.stypo</string>\n      <key>blockOctant-18</key>\n      <string>u1CD71</string>\n      <key>blockOctant-18.stypo</key>\n      <string>u1CD71.stypo</string>\n      <key>blockOctant-28</key>\n      <string>u1CD72</string>\n      <key>blockOctant-28.stypo</key>\n      <string>u1CD72.stypo</string>\n      <key>blockOctant-128</key>\n      <string>u1CD73</string>\n      <key>blockOctant-128.stypo</key>\n      <string>u1CD73.stypo</string>\n      <key>blockOctant-38</key>\n      <string>u1CD74</string>\n      <key>blockOctant-38.stypo</key>\n      <string>u1CD74.stypo</string>\n      <key>blockOctant-138</key>\n      <string>u1CD75</string>\n      <key>blockOctant-138.stypo</key>\n      <string>u1CD75.stypo</string>\n      <key>blockOctant-238</key>\n      <string>u1CD76</string>\n      <key>blockOctant-238.stypo</key>\n      <string>u1CD76.stypo</string>\n      <key>blockOctant-1238</key>\n      <string>u1CD77</string>\n      <key>blockOctant-1238.stypo</key>\n      <string>u1CD77.stypo</string>\n      <key>blockOctant-48</key>\n      <string>u1CD78</string>\n      <key>blockOctant-48.stypo</key>\n      <string>u1CD78.stypo</string>\n      <key>blockOctant-148</key>\n      <string>u1CD79</string>\n      <key>blockOctant-148.stypo</key>\n      <string>u1CD79.stypo</string>\n      <key>blockOctant-248</key>\n      <string>u1CD7A</string>\n      <key>blockOctant-248.stypo</key>\n      <string>u1CD7A.stypo</string>\n      <key>blockOctant-1248</key>\n      <string>u1CD7B</string>\n      <key>blockOctant-1248.stypo</key>\n      <string>u1CD7B.stypo</string>\n      <key>blockOctant-348</key>\n      <string>u1CD7C</string>\n      <key>blockOctant-348.stypo</key>\n      <string>u1CD7C.stypo</string>\n      <key>blockOctant-1348</key>\n      <string>u1CD7D</string>\n      <key>blockOctant-1348.stypo</key>\n      <string>u1CD7D.stypo</string>\n      <key>blockOctant-2348</key>\n      <string>u1CD7E</string>\n      <key>blockOctant-2348.stypo</key>\n      <string>u1CD7E.stypo</string>\n      <key>blockOctant-12348</key>\n      <string>u1CD7F</string>\n      <key>blockOctant-12348.stypo</key>\n      <string>u1CD7F.stypo</string>\n      <key>blockOctant-58</key>\n      <string>u1CD80</string>\n      <key>blockOctant-58.stypo</key>\n      <string>u1CD80.stypo</string>\n      <key>blockOctant-158</key>\n      <string>u1CD81</string>\n      <key>blockOctant-158.stypo</key>\n      <string>u1CD81.stypo</string>\n      <key>blockOctant-258</key>\n      <string>u1CD82</string>\n      <key>blockOctant-258.stypo</key>\n      <string>u1CD82.stypo</string>\n      <key>blockOctant-1258</key>\n      <string>u1CD83</string>\n      <key>blockOctant-1258.stypo</key>\n      <string>u1CD83.stypo</string>\n      <key>blockOctant-358</key>\n      <string>u1CD84</string>\n      <key>blockOctant-358.stypo</key>\n      <string>u1CD84.stypo</string>\n      <key>blockOctant-1358</key>\n      <string>u1CD85</string>\n      <key>blockOctant-1358.stypo</key>\n      <string>u1CD85.stypo</string>\n      <key>blockOctant-2358</key>\n      <string>u1CD86</string>\n      <key>blockOctant-2358.stypo</key>\n      <string>u1CD86.stypo</string>\n      <key>blockOctant-12358</key>\n      <string>u1CD87</string>\n      <key>blockOctant-12358.stypo</key>\n      <string>u1CD87.stypo</string>\n      <key>blockOctant-458</key>\n      <string>u1CD88</string>\n      <key>blockOctant-458.stypo</key>\n      <string>u1CD88.stypo</string>\n      <key>blockOctant-1458</key>\n      <string>u1CD89</string>\n      <key>blockOctant-1458.stypo</key>\n      <string>u1CD89.stypo</string>\n      <key>blockOctant-2458</key>\n      <string>u1CD8A</string>\n      <key>blockOctant-2458.stypo</key>\n      <string>u1CD8A.stypo</string>\n      <key>blockOctant-12458</key>\n      <string>u1CD8B</string>\n      <key>blockOctant-12458.stypo</key>\n      <string>u1CD8B.stypo</string>\n      <key>blockOctant-3458</key>\n      <string>u1CD8C</string>\n      <key>blockOctant-3458.stypo</key>\n      <string>u1CD8C.stypo</string>\n      <key>blockOctant-13458</key>\n      <string>u1CD8D</string>\n      <key>blockOctant-13458.stypo</key>\n      <string>u1CD8D.stypo</string>\n      <key>blockOctant-23458</key>\n      <string>u1CD8E</string>\n      <key>blockOctant-23458.stypo</key>\n      <string>u1CD8E.stypo</string>\n      <key>blockOctant-123458</key>\n      <string>u1CD8F</string>\n      <key>blockOctant-123458.stypo</key>\n      <string>u1CD8F.stypo</string>\n      <key>blockOctant-168</key>\n      <string>u1CD90</string>\n      <key>blockOctant-168.stypo</key>\n      <string>u1CD90.stypo</string>\n      <key>blockOctant-268</key>\n      <string>u1CD91</string>\n      <key>blockOctant-268.stypo</key>\n      <string>u1CD91.stypo</string>\n      <key>blockOctant-1268</key>\n      <string>u1CD92</string>\n      <key>blockOctant-1268.stypo</key>\n      <string>u1CD92.stypo</string>\n      <key>blockOctant-368</key>\n      <string>u1CD93</string>\n      <key>blockOctant-368.stypo</key>\n      <string>u1CD93.stypo</string>\n      <key>blockOctant-2368</key>\n      <string>u1CD94</string>\n      <key>blockOctant-2368.stypo</key>\n      <string>u1CD94.stypo</string>\n      <key>blockOctant-12368</key>\n      <string>u1CD95</string>\n      <key>blockOctant-12368.stypo</key>\n      <string>u1CD95.stypo</string>\n      <key>blockOctant-468</key>\n      <string>u1CD96</string>\n      <key>blockOctant-468.stypo</key>\n      <string>u1CD96.stypo</string>\n      <key>blockOctant-1468</key>\n      <string>u1CD97</string>\n      <key>blockOctant-1468.stypo</key>\n      <string>u1CD97.stypo</string>\n      <key>blockOctant-12468</key>\n      <string>u1CD98</string>\n      <key>blockOctant-12468.stypo</key>\n      <string>u1CD98.stypo</string>\n      <key>blockOctant-3468</key>\n      <string>u1CD99</string>\n      <key>blockOctant-3468.stypo</key>\n      <string>u1CD99.stypo</string>\n      <key>blockOctant-13468</key>\n      <string>u1CD9A</string>\n      <key>blockOctant-13468.stypo</key>\n      <string>u1CD9A.stypo</string>\n      <key>blockOctant-23468</key>\n      <string>u1CD9B</string>\n      <key>blockOctant-23468.stypo</key>\n      <string>u1CD9B.stypo</string>\n      <key>blockOctant-568</key>\n      <string>u1CD9C</string>\n      <key>blockOctant-568.stypo</key>\n      <string>u1CD9C.stypo</string>\n      <key>blockOctant-1568</key>\n      <string>u1CD9D</string>\n      <key>blockOctant-1568.stypo</key>\n      <string>u1CD9D.stypo</string>\n      <key>blockOctant-2568</key>\n      <string>u1CD9E</string>\n      <key>blockOctant-2568.stypo</key>\n      <string>u1CD9E.stypo</string>\n      <key>blockOctant-12568</key>\n      <string>u1CD9F</string>\n      <key>blockOctant-12568.stypo</key>\n      <string>u1CD9F.stypo</string>\n      <key>blockOctant-3568</key>\n      <string>u1CDA0</string>\n      <key>blockOctant-3568.stypo</key>\n      <string>u1CDA0.stypo</string>\n      <key>blockOctant-13568</key>\n      <string>u1CDA1</string>\n      <key>blockOctant-13568.stypo</key>\n      <string>u1CDA1.stypo</string>\n      <key>blockOctant-23568</key>\n      <string>u1CDA2</string>\n      <key>blockOctant-23568.stypo</key>\n      <string>u1CDA2.stypo</string>\n      <key>blockOctant-123568</key>\n      <string>u1CDA3</string>\n      <key>blockOctant-123568.stypo</key>\n      <string>u1CDA3.stypo</string>\n      <key>blockOctant-4568</key>\n      <string>u1CDA4</string>\n      <key>blockOctant-4568.stypo</key>\n      <string>u1CDA4.stypo</string>\n      <key>blockOctant-14568</key>\n      <string>u1CDA5</string>\n      <key>blockOctant-14568.stypo</key>\n      <string>u1CDA5.stypo</string>\n      <key>blockOctant-24568</key>\n      <string>u1CDA6</string>\n      <key>blockOctant-24568.stypo</key>\n      <string>u1CDA6.stypo</string>\n      <key>blockOctant-124568</key>\n      <string>u1CDA7</string>\n      <key>blockOctant-124568.stypo</key>\n      <string>u1CDA7.stypo</string>\n      <key>blockOctant-34568</key>\n      <string>u1CDA8</string>\n      <key>blockOctant-34568.stypo</key>\n      <string>u1CDA8.stypo</string>\n      <key>blockOctant-134568</key>\n      <string>u1CDA9</string>\n      <key>blockOctant-134568.stypo</key>\n      <string>u1CDA9.stypo</string>\n      <key>blockOctant-234568</key>\n      <string>u1CDAA</string>\n      <key>blockOctant-234568.stypo</key>\n      <string>u1CDAA.stypo</string>\n      <key>blockOctant-1234568</key>\n      <string>u1CDAB</string>\n      <key>blockOctant-1234568.stypo</key>\n      <string>u1CDAB.stypo</string>\n      <key>blockOctant-178</key>\n      <string>u1CDAC</string>\n      <key>blockOctant-178.stypo</key>\n      <string>u1CDAC.stypo</string>\n      <key>blockOctant-278</key>\n      <string>u1CDAD</string>\n      <key>blockOctant-278.stypo</key>\n      <string>u1CDAD.stypo</string>\n      <key>blockOctant-1278</key>\n      <string>u1CDAE</string>\n      <key>blockOctant-1278.stypo</key>\n      <string>u1CDAE.stypo</string>\n      <key>blockOctant-378</key>\n      <string>u1CDAF</string>\n      <key>blockOctant-378.stypo</key>\n      <string>u1CDAF.stypo</string>\n      <key>blockOctant-1378</key>\n      <string>u1CDB0</string>\n      <key>blockOctant-1378.stypo</key>\n      <string>u1CDB0.stypo</string>\n      <key>blockOctant-2378</key>\n      <string>u1CDB1</string>\n      <key>blockOctant-2378.stypo</key>\n      <string>u1CDB1.stypo</string>\n      <key>blockOctant-12378</key>\n      <string>u1CDB2</string>\n      <key>blockOctant-12378.stypo</key>\n      <string>u1CDB2.stypo</string>\n      <key>blockOctant-478</key>\n      <string>u1CDB3</string>\n      <key>blockOctant-478.stypo</key>\n      <string>u1CDB3.stypo</string>\n      <key>blockOctant-1478</key>\n      <string>u1CDB4</string>\n      <key>blockOctant-1478.stypo</key>\n      <string>u1CDB4.stypo</string>\n      <key>blockOctant-2478</key>\n      <string>u1CDB5</string>\n      <key>blockOctant-2478.stypo</key>\n      <string>u1CDB5.stypo</string>\n      <key>blockOctant-12478</key>\n      <string>u1CDB6</string>\n      <key>blockOctant-12478.stypo</key>\n      <string>u1CDB6.stypo</string>\n      <key>blockOctant-3478</key>\n      <string>u1CDB7</string>\n      <key>blockOctant-3478.stypo</key>\n      <string>u1CDB7.stypo</string>\n      <key>blockOctant-13478</key>\n      <string>u1CDB8</string>\n      <key>blockOctant-13478.stypo</key>\n      <string>u1CDB8.stypo</string>\n      <key>blockOctant-23478</key>\n      <string>u1CDB9</string>\n      <key>blockOctant-23478.stypo</key>\n      <string>u1CDB9.stypo</string>\n      <key>blockOctant-123478</key>\n      <string>u1CDBA</string>\n      <key>blockOctant-123478.stypo</key>\n      <string>u1CDBA.stypo</string>\n      <key>blockOctant-578</key>\n      <string>u1CDBB</string>\n      <key>blockOctant-578.stypo</key>\n      <string>u1CDBB.stypo</string>\n      <key>blockOctant-1578</key>\n      <string>u1CDBC</string>\n      <key>blockOctant-1578.stypo</key>\n      <string>u1CDBC.stypo</string>\n      <key>blockOctant-2578</key>\n      <string>u1CDBD</string>\n      <key>blockOctant-2578.stypo</key>\n      <string>u1CDBD.stypo</string>\n      <key>blockOctant-12578</key>\n      <string>u1CDBE</string>\n      <key>blockOctant-12578.stypo</key>\n      <string>u1CDBE.stypo</string>\n      <key>blockOctant-3578</key>\n      <string>u1CDBF</string>\n      <key>blockOctant-3578.stypo</key>\n      <string>u1CDBF.stypo</string>\n      <key>blockOctant-13578</key>\n      <string>u1CDC0</string>\n      <key>blockOctant-13578.stypo</key>\n      <string>u1CDC0.stypo</string>\n      <key>blockOctant-23578</key>\n      <string>u1CDC1</string>\n      <key>blockOctant-23578.stypo</key>\n      <string>u1CDC1.stypo</string>\n      <key>blockOctant-123578</key>\n      <string>u1CDC2</string>\n      <key>blockOctant-123578.stypo</key>\n      <string>u1CDC2.stypo</string>\n      <key>blockOctant-4578</key>\n      <string>u1CDC3</string>\n      <key>blockOctant-4578.stypo</key>\n      <string>u1CDC3.stypo</string>\n      <key>blockOctant-14578</key>\n      <string>u1CDC4</string>\n      <key>blockOctant-14578.stypo</key>\n      <string>u1CDC4.stypo</string>\n      <key>blockOctant-24578</key>\n      <string>u1CDC5</string>\n      <key>blockOctant-24578.stypo</key>\n      <string>u1CDC5.stypo</string>\n      <key>blockOctant-124578</key>\n      <string>u1CDC6</string>\n      <key>blockOctant-124578.stypo</key>\n      <string>u1CDC6.stypo</string>\n      <key>blockOctant-34578</key>\n      <string>u1CDC7</string>\n      <key>blockOctant-34578.stypo</key>\n      <string>u1CDC7.stypo</string>\n      <key>blockOctant-134578</key>\n      <string>u1CDC8</string>\n      <key>blockOctant-134578.stypo</key>\n      <string>u1CDC8.stypo</string>\n      <key>blockOctant-234578</key>\n      <string>u1CDC9</string>\n      <key>blockOctant-234578.stypo</key>\n      <string>u1CDC9.stypo</string>\n      <key>blockOctant-1234578</key>\n      <string>u1CDCA</string>\n      <key>blockOctant-1234578.stypo</key>\n      <string>u1CDCA.stypo</string>\n      <key>blockOctant-678</key>\n      <string>u1CDCB</string>\n      <key>blockOctant-678.stypo</key>\n      <string>u1CDCB.stypo</string>\n      <key>blockOctant-1678</key>\n      <string>u1CDCC</string>\n      <key>blockOctant-1678.stypo</key>\n      <string>u1CDCC.stypo</string>\n      <key>blockOctant-2678</key>\n      <string>u1CDCD</string>\n      <key>blockOctant-2678.stypo</key>\n      <string>u1CDCD.stypo</string>\n      <key>blockOctant-12678</key>\n      <string>u1CDCE</string>\n      <key>blockOctant-12678.stypo</key>\n      <string>u1CDCE.stypo</string>\n      <key>blockOctant-3678</key>\n      <string>u1CDCF</string>\n      <key>blockOctant-3678.stypo</key>\n      <string>u1CDCF.stypo</string>\n      <key>blockOctant-13678</key>\n      <string>u1CDD0</string>\n      <key>blockOctant-13678.stypo</key>\n      <string>u1CDD0.stypo</string>\n      <key>blockOctant-23678</key>\n      <string>u1CDD1</string>\n      <key>blockOctant-23678.stypo</key>\n      <string>u1CDD1.stypo</string>\n      <key>blockOctant-123678</key>\n      <string>u1CDD2</string>\n      <key>blockOctant-123678.stypo</key>\n      <string>u1CDD2.stypo</string>\n      <key>blockOctant-4678</key>\n      <string>u1CDD3</string>\n      <key>blockOctant-4678.stypo</key>\n      <string>u1CDD3.stypo</string>\n      <key>blockOctant-14678</key>\n      <string>u1CDD4</string>\n      <key>blockOctant-14678.stypo</key>\n      <string>u1CDD4.stypo</string>\n      <key>blockOctant-24678</key>\n      <string>u1CDD5</string>\n      <key>blockOctant-24678.stypo</key>\n      <string>u1CDD5.stypo</string>\n      <key>blockOctant-124678</key>\n      <string>u1CDD6</string>\n      <key>blockOctant-124678.stypo</key>\n      <string>u1CDD6.stypo</string>\n      <key>blockOctant-34678</key>\n      <string>u1CDD7</string>\n      <key>blockOctant-34678.stypo</key>\n      <string>u1CDD7.stypo</string>\n      <key>blockOctant-134678</key>\n      <string>u1CDD8</string>\n      <key>blockOctant-134678.stypo</key>\n      <string>u1CDD8.stypo</string>\n      <key>blockOctant-234678</key>\n      <string>u1CDD9</string>\n      <key>blockOctant-234678.stypo</key>\n      <string>u1CDD9.stypo</string>\n      <key>blockOctant-1234678</key>\n      <string>u1CDDA</string>\n      <key>blockOctant-1234678.stypo</key>\n      <string>u1CDDA.stypo</string>\n      <key>blockOctant-15678</key>\n      <string>u1CDDB</string>\n      <key>blockOctant-15678.stypo</key>\n      <string>u1CDDB.stypo</string>\n      <key>blockOctant-25678</key>\n      <string>u1CDDC</string>\n      <key>blockOctant-25678.stypo</key>\n      <string>u1CDDC.stypo</string>\n      <key>blockOctant-125678</key>\n      <string>u1CDDD</string>\n      <key>blockOctant-125678.stypo</key>\n      <string>u1CDDD.stypo</string>\n      <key>blockOctant-35678</key>\n      <string>u1CDDE</string>\n      <key>blockOctant-35678.stypo</key>\n      <string>u1CDDE.stypo</string>\n      <key>blockOctant-235678</key>\n      <string>u1CDDF</string>\n      <key>blockOctant-235678.stypo</key>\n      <string>u1CDDF.stypo</string>\n      <key>blockOctant-1235678</key>\n      <string>u1CDE0</string>\n      <key>blockOctant-1235678.stypo</key>\n      <string>u1CDE0.stypo</string>\n      <key>blockOctant-45678</key>\n      <string>u1CDE1</string>\n      <key>blockOctant-45678.stypo</key>\n      <string>u1CDE1.stypo</string>\n      <key>blockOctant-145678</key>\n      <string>u1CDE2</string>\n      <key>blockOctant-145678.stypo</key>\n      <string>u1CDE2.stypo</string>\n      <key>blockOctant-1245678</key>\n      <string>u1CDE3</string>\n      <key>blockOctant-1245678.stypo</key>\n      <string>u1CDE3.stypo</string>\n      <key>blockOctant-1345678</key>\n      <string>u1CDE4</string>\n      <key>blockOctant-1345678.stypo</key>\n      <string>u1CDE4.stypo</string>\n      <key>blockOctant-2345678</key>\n      <string>u1CDE5</string>\n      <key>blockOctant-2345678.stypo</key>\n      <string>u1CDE5.stypo</string>\n      <key>blockSedecimant-1</key>\n      <string>u1CE90</string>\n      <key>blockSedecimant-1.stypo</key>\n      <string>u1CE90.stypo</string>\n      <key>blockSedecimant-2</key>\n      <string>u1CE91</string>\n      <key>blockSedecimant-2.stypo</key>\n      <string>u1CE91.stypo</string>\n      <key>blockSedecimant-3</key>\n      <string>u1CE92</string>\n      <key>blockSedecimant-3.stypo</key>\n      <string>u1CE92.stypo</string>\n      <key>blockSedecimant-4</key>\n      <string>u1CE93</string>\n      <key>blockSedecimant-4.stypo</key>\n      <string>u1CE93.stypo</string>\n      <key>blockSedecimant-5</key>\n      <string>u1CE94</string>\n      <key>blockSedecimant-5.stypo</key>\n      <string>u1CE94.stypo</string>\n      <key>blockSedecimant-6</key>\n      <string>u1CE95</string>\n      <key>blockSedecimant-6.stypo</key>\n      <string>u1CE95.stypo</string>\n      <key>blockSedecimant-7</key>\n      <string>u1CE96</string>\n      <key>blockSedecimant-7.stypo</key>\n      <string>u1CE96.stypo</string>\n      <key>blockSedecimant-8</key>\n      <string>u1CE97</string>\n      <key>blockSedecimant-8.stypo</key>\n      <string>u1CE97.stypo</string>\n      <key>blockSedecimant-9</key>\n      <string>u1CE98</string>\n      <key>blockSedecimant-9.stypo</key>\n      <string>u1CE98.stypo</string>\n      <key>blockSedecimant-A</key>\n      <string>u1CE99</string>\n      <key>blockSedecimant-A.stypo</key>\n      <string>u1CE99.stypo</string>\n      <key>blockSedecimant-B</key>\n      <string>u1CE9A</string>\n      <key>blockSedecimant-B.stypo</key>\n      <string>u1CE9A.stypo</string>\n      <key>blockSedecimant-C</key>\n      <string>u1CE9B</string>\n      <key>blockSedecimant-C.stypo</key>\n      <string>u1CE9B.stypo</string>\n      <key>blockSedecimant-D</key>\n      <string>u1CE9C</string>\n      <key>blockSedecimant-D.stypo</key>\n      <string>u1CE9C.stypo</string>\n      <key>blockSedecimant-E</key>\n      <string>u1CE9D</string>\n      <key>blockSedecimant-E.stypo</key>\n      <string>u1CE9D.stypo</string>\n      <key>blockSedecimant-F</key>\n      <string>u1CE9E</string>\n      <key>blockSedecimant-F.stypo</key>\n      <string>u1CE9E.stypo</string>\n      <key>blockSedecimant-G</key>\n      <string>u1CE9F</string>\n      <key>blockSedecimant-G.stypo</key>\n      <string>u1CE9F.stypo</string>\n      <key>blockSedecimant-EFG</key>\n      <string>u1CEA1</string>\n      <key>blockSedecimant-EFG.stypo</key>\n      <string>u1CEA1.stypo</string>\n      <key>blockSedecimant-DEF</key>\n      <string>u1CEA2</string>\n      <key>blockSedecimant-DEF.stypo</key>\n      <string>u1CEA2.stypo</string>\n      <key>blockSedecimant-9D</key>\n      <string>u1CEA4</string>\n      <key>blockSedecimant-9D.stypo</key>\n      <string>u1CEA4.stypo</string>\n      <key>blockSedecimant-59D</key>\n      <string>u1CEA5</string>\n      <key>blockSedecimant-59D.stypo</key>\n      <string>u1CEA5.stypo</string>\n      <key>blockSedecimant-159</key>\n      <string>u1CEA6</string>\n      <key>blockSedecimant-159.stypo</key>\n      <string>u1CEA6.stypo</string>\n      <key>blockSedecimant-15</key>\n      <string>u1CEA7</string>\n      <key>blockSedecimant-15.stypo</key>\n      <string>u1CEA7.stypo</string>\n      <key>blockSedecimant-123</key>\n      <string>u1CEA9</string>\n      <key>blockSedecimant-123.stypo</key>\n      <string>u1CEA9.stypo</string>\n      <key>blockSedecimant-234</key>\n      <string>u1CEAA</string>\n      <key>blockSedecimant-234.stypo</key>\n      <string>u1CEAA.stypo</string>\n      <key>blockSedecimant-48</key>\n      <string>u1CEAC</string>\n      <key>blockSedecimant-48.stypo</key>\n      <string>u1CEAC.stypo</string>\n      <key>blockSedecimant-48C</key>\n      <string>u1CEAD</string>\n      <key>blockSedecimant-48C.stypo</key>\n      <string>u1CEAD.stypo</string>\n      <key>blockSedecimant-8CG</key>\n      <string>u1CEAE</string>\n      <key>blockSedecimant-8CG.stypo</key>\n      <string>u1CEAE.stypo</string>\n      <key>blockSedecimant-CG</key>\n      <string>u1CEAF</string>\n      <key>blockSedecimant-CG.stypo</key>\n      <string>u1CEAF.stypo</string>\n      <key>verticalOneEighthBlock-2</key>\n      <string>u1FB70</string>\n      <key>verticalOneEighthBlock-2.stypo</key>\n      <string>u1FB70.stypo</string>\n      <key>verticalOneEighthBlock-3</key>\n      <string>u1FB71</string>\n      <key>verticalOneEighthBlock-3.stypo</key>\n      <string>u1FB71.stypo</string>\n      <key>verticalOneEighthBlock-4</key>\n      <string>u1FB72</string>\n      <key>verticalOneEighthBlock-4.stypo</key>\n      <string>u1FB72.stypo</string>\n      <key>verticalOneEighthBlock-5</key>\n      <string>u1FB73</string>\n      <key>verticalOneEighthBlock-5.stypo</key>\n      <string>u1FB73.stypo</string>\n      <key>verticalOneEighthBlock-6</key>\n      <string>u1FB74</string>\n      <key>verticalOneEighthBlock-6.stypo</key>\n      <string>u1FB74.stypo</string>\n      <key>verticalOneEighthBlock-7</key>\n      <string>u1FB75</string>\n      <key>verticalOneEighthBlock-7.stypo</key>\n      <string>u1FB75.stypo</string>\n      <key>horizontalOneEightBlock-2</key>\n      <string>u1FB76</string>\n      <key>horizontalOneEightBlock-2.stypo</key>\n      <string>u1FB76.stypo</string>\n      <key>horizontalOneEightBlock-3</key>\n      <string>u1FB77</string>\n      <key>horizontalOneEightBlock-3.stypo</key>\n      <string>u1FB77.stypo</string>\n      <key>horizontalOneEightBlock-4</key>\n      <string>u1FB78</string>\n      <key>horizontalOneEightBlock-4.stypo</key>\n      <string>u1FB78.stypo</string>\n      <key>horizontalOneEightBlock-5</key>\n      <string>u1FB79</string>\n      <key>horizontalOneEightBlock-5.stypo</key>\n      <string>u1FB79.stypo</string>\n      <key>horizontalOneEightBlock-6</key>\n      <string>u1FB7A</string>\n      <key>horizontalOneEightBlock-6.stypo</key>\n      <string>u1FB7A.stypo</string>\n      <key>horizontalOneEightBlock-7</key>\n      <string>u1FB7B</string>\n      <key>horizontalOneEightBlock-7.stypo</key>\n      <string>u1FB7B.stypo</string>\n      <key>leftAndLowerOneEightBlock</key>\n      <string>u1FB7C</string>\n      <key>leftAndLowerOneEightBlock.stypo</key>\n      <string>u1FB7C.stypo</string>\n      <key>leftAndUpperOneEightBlock</key>\n      <string>u1FB7D</string>\n      <key>leftAndUpperOneEightBlock.stypo</key>\n      <string>u1FB7D.stypo</string>\n      <key>rightAndUpperOneEightBlock</key>\n      <string>u1FB7E</string>\n      <key>rightAndUpperOneEightBlock.stypo</key>\n      <string>u1FB7E.stypo</string>\n      <key>rightAndLowerOneEightBlock</key>\n      <string>u1FB7F</string>\n      <key>rightAndLowerOneEightBlock.stypo</key>\n      <string>u1FB7F.stypo</string>\n      <key>upperAndLowerOneEightBlock</key>\n      <string>u1FB80</string>\n      <key>upperAndLowerOneEightBlock.stypo</key>\n      <string>u1FB80.stypo</string>\n      <key>upperThreeEighthsBlock</key>\n      <string>u1FB83</string>\n      <key>upperThreeEighthsBlock.stypo</key>\n      <string>u1FB83.stypo</string>\n      <key>upperFiveEighthsBlock</key>\n      <string>u1FB84</string>\n      <key>upperFiveEighthsBlock.stypo</key>\n      <string>u1FB84.stypo</string>\n      <key>upperSevenEighthsBlock</key>\n      <string>u1FB86</string>\n      <key>upperSevenEighthsBlock.stypo</key>\n      <string>u1FB86.stypo</string>\n      <key>rightOneQuarterBlock</key>\n      <string>u1FB87</string>\n      <key>rightOneQuarterBlock.stypo</key>\n      <string>u1FB87.stypo</string>\n      <key>rightThreeEighthsBlock</key>\n      <string>u1FB88</string>\n      <key>rightThreeEighthsBlock.stypo</key>\n      <string>u1FB88.stypo</string>\n      <key>rightFiveEighthsBlock</key>\n      <string>u1FB89</string>\n      <key>rightFiveEighthsBlock.stypo</key>\n      <string>u1FB89.stypo</string>\n      <key>rightThreeQuartersBlock</key>\n      <string>u1FB8A</string>\n      <key>rightThreeQuartersBlock.stypo</key>\n      <string>u1FB8A.stypo</string>\n      <key>rightSevenEighthsBlock</key>\n      <string>u1FB8B</string>\n      <key>rightSevenEighthsBlock.stypo</key>\n      <string>u1FB8B.stypo</string>\n      <key>leftTwoThirdsBlock</key>\n      <string>u1FBCE</string>\n      <key>leftTwoThirdsBlock.stypo</key>\n      <string>u1FBCE.stypo</string>\n      <key>leftOneThirdBlock</key>\n      <string>u1FBCF</string>\n      <key>leftOneThirdBlock.stypo</key>\n      <string>u1FBCF.stypo</string>\n      <key>heavyHorizontalFill</key>\n      <string>u1FB97</string>\n      <key>heavyHorizontalFill.stypo</key>\n      <string>u1FB97.stypo</string>\n      <key>blockSeparatedQuadrant-1</key>\n      <string>u1CC21</string>\n      <key>blockSeparatedQuadrant-1.stypo</key>\n      <string>u1CC21.stypo</string>\n      <key>blockSeparatedQuadrant-2</key>\n      <string>u1CC22</string>\n      <key>blockSeparatedQuadrant-2.stypo</key>\n      <string>u1CC22.stypo</string>\n      <key>blockSeparatedQuadrant-12</key>\n      <string>u1CC23</string>\n      <key>blockSeparatedQuadrant-12.stypo</key>\n      <string>u1CC23.stypo</string>\n      <key>blockSeparatedQuadrant-3</key>\n      <string>u1CC24</string>\n      <key>blockSeparatedQuadrant-3.stypo</key>\n      <string>u1CC24.stypo</string>\n      <key>blockSeparatedQuadrant-13</key>\n      <string>u1CC25</string>\n      <key>blockSeparatedQuadrant-13.stypo</key>\n      <string>u1CC25.stypo</string>\n      <key>blockSeparatedQuadrant-23</key>\n      <string>u1CC26</string>\n      <key>blockSeparatedQuadrant-23.stypo</key>\n      <string>u1CC26.stypo</string>\n      <key>blockSeparatedQuadrant-123</key>\n      <string>u1CC27</string>\n      <key>blockSeparatedQuadrant-123.stypo</key>\n      <string>u1CC27.stypo</string>\n      <key>blockSeparatedQuadrant-4</key>\n      <string>u1CC28</string>\n      <key>blockSeparatedQuadrant-4.stypo</key>\n      <string>u1CC28.stypo</string>\n      <key>blockSeparatedQuadrant-14</key>\n      <string>u1CC29</string>\n      <key>blockSeparatedQuadrant-14.stypo</key>\n      <string>u1CC29.stypo</string>\n      <key>blockSeparatedQuadrant-24</key>\n      <string>u1CC2A</string>\n      <key>blockSeparatedQuadrant-24.stypo</key>\n      <string>u1CC2A.stypo</string>\n      <key>blockSeparatedQuadrant-124</key>\n      <string>u1CC2B</string>\n      <key>blockSeparatedQuadrant-124.stypo</key>\n      <string>u1CC2B.stypo</string>\n      <key>blockSeparatedQuadrant-34</key>\n      <string>u1CC2C</string>\n      <key>blockSeparatedQuadrant-34.stypo</key>\n      <string>u1CC2C.stypo</string>\n      <key>blockSeparatedQuadrant-134</key>\n      <string>u1CC2D</string>\n      <key>blockSeparatedQuadrant-134.stypo</key>\n      <string>u1CC2D.stypo</string>\n      <key>blockSeparatedQuadrant-234</key>\n      <string>u1CC2E</string>\n      <key>blockSeparatedQuadrant-234.stypo</key>\n      <string>u1CC2E.stypo</string>\n      <key>blockSeparatedQuadrant-1234</key>\n      <string>u1CC2F</string>\n      <key>blockSeparatedQuadrant-1234.stypo</key>\n      <string>u1CC2F.stypo</string>\n      <key>blockSeparatedSextant-1</key>\n      <string>u1CE51</string>\n      <key>blockSeparatedSextant-1.stypo</key>\n      <string>u1CE51.stypo</string>\n      <key>blockSeparatedSextant-2</key>\n      <string>u1CE52</string>\n      <key>blockSeparatedSextant-2.stypo</key>\n      <string>u1CE52.stypo</string>\n      <key>blockSeparatedSextant-12</key>\n      <string>u1CE53</string>\n      <key>blockSeparatedSextant-12.stypo</key>\n      <string>u1CE53.stypo</string>\n      <key>blockSeparatedSextant-3</key>\n      <string>u1CE54</string>\n      <key>blockSeparatedSextant-3.stypo</key>\n      <string>u1CE54.stypo</string>\n      <key>blockSeparatedSextant-13</key>\n      <string>u1CE55</string>\n      <key>blockSeparatedSextant-13.stypo</key>\n      <string>u1CE55.stypo</string>\n      <key>blockSeparatedSextant-23</key>\n      <string>u1CE56</string>\n      <key>blockSeparatedSextant-23.stypo</key>\n      <string>u1CE56.stypo</string>\n      <key>blockSeparatedSextant-123</key>\n      <string>u1CE57</string>\n      <key>blockSeparatedSextant-123.stypo</key>\n      <string>u1CE57.stypo</string>\n      <key>blockSeparatedSextant-4</key>\n      <string>u1CE58</string>\n      <key>blockSeparatedSextant-4.stypo</key>\n      <string>u1CE58.stypo</string>\n      <key>blockSeparatedSextant-14</key>\n      <string>u1CE59</string>\n      <key>blockSeparatedSextant-14.stypo</key>\n      <string>u1CE59.stypo</string>\n      <key>blockSeparatedSextant-24</key>\n      <string>u1CE5A</string>\n      <key>blockSeparatedSextant-24.stypo</key>\n      <string>u1CE5A.stypo</string>\n      <key>blockSeparatedSextant-124</key>\n      <string>u1CE5B</string>\n      <key>blockSeparatedSextant-124.stypo</key>\n      <string>u1CE5B.stypo</string>\n      <key>blockSeparatedSextant-34</key>\n      <string>u1CE5C</string>\n      <key>blockSeparatedSextant-34.stypo</key>\n      <string>u1CE5C.stypo</string>\n      <key>blockSeparatedSextant-134</key>\n      <string>u1CE5D</string>\n      <key>blockSeparatedSextant-134.stypo</key>\n      <string>u1CE5D.stypo</string>\n      <key>blockSeparatedSextant-234</key>\n      <string>u1CE5E</string>\n      <key>blockSeparatedSextant-234.stypo</key>\n      <string>u1CE5E.stypo</string>\n      <key>blockSeparatedSextant-1234</key>\n      <string>u1CE5F</string>\n      <key>blockSeparatedSextant-1234.stypo</key>\n      <string>u1CE5F.stypo</string>\n      <key>blockSeparatedSextant-5</key>\n      <string>u1CE60</string>\n      <key>blockSeparatedSextant-5.stypo</key>\n      <string>u1CE60.stypo</string>\n      <key>blockSeparatedSextant-15</key>\n      <string>u1CE61</string>\n      <key>blockSeparatedSextant-15.stypo</key>\n      <string>u1CE61.stypo</string>\n      <key>blockSeparatedSextant-25</key>\n      <string>u1CE62</string>\n      <key>blockSeparatedSextant-25.stypo</key>\n      <string>u1CE62.stypo</string>\n      <key>blockSeparatedSextant-125</key>\n      <string>u1CE63</string>\n      <key>blockSeparatedSextant-125.stypo</key>\n      <string>u1CE63.stypo</string>\n      <key>blockSeparatedSextant-35</key>\n      <string>u1CE64</string>\n      <key>blockSeparatedSextant-35.stypo</key>\n      <string>u1CE64.stypo</string>\n      <key>blockSeparatedSextant-135</key>\n      <string>u1CE65</string>\n      <key>blockSeparatedSextant-135.stypo</key>\n      <string>u1CE65.stypo</string>\n      <key>blockSeparatedSextant-235</key>\n      <string>u1CE66</string>\n      <key>blockSeparatedSextant-235.stypo</key>\n      <string>u1CE66.stypo</string>\n      <key>blockSeparatedSextant-1235</key>\n      <string>u1CE67</string>\n      <key>blockSeparatedSextant-1235.stypo</key>\n      <string>u1CE67.stypo</string>\n      <key>blockSeparatedSextant-45</key>\n      <string>u1CE68</string>\n      <key>blockSeparatedSextant-45.stypo</key>\n      <string>u1CE68.stypo</string>\n      <key>blockSeparatedSextant-145</key>\n      <string>u1CE69</string>\n      <key>blockSeparatedSextant-145.stypo</key>\n      <string>u1CE69.stypo</string>\n      <key>blockSeparatedSextant-245</key>\n      <string>u1CE6A</string>\n      <key>blockSeparatedSextant-245.stypo</key>\n      <string>u1CE6A.stypo</string>\n      <key>blockSeparatedSextant-1245</key>\n      <string>u1CE6B</string>\n      <key>blockSeparatedSextant-1245.stypo</key>\n      <string>u1CE6B.stypo</string>\n      <key>blockSeparatedSextant-345</key>\n      <string>u1CE6C</string>\n      <key>blockSeparatedSextant-345.stypo</key>\n      <string>u1CE6C.stypo</string>\n      <key>blockSeparatedSextant-1345</key>\n      <string>u1CE6D</string>\n      <key>blockSeparatedSextant-1345.stypo</key>\n      <string>u1CE6D.stypo</string>\n      <key>blockSeparatedSextant-2345</key>\n      <string>u1CE6E</string>\n      <key>blockSeparatedSextant-2345.stypo</key>\n      <string>u1CE6E.stypo</string>\n      <key>blockSeparatedSextant-12345</key>\n      <string>u1CE6F</string>\n      <key>blockSeparatedSextant-12345.stypo</key>\n      <string>u1CE6F.stypo</string>\n      <key>blockSeparatedSextant-6</key>\n      <string>u1CE70</string>\n      <key>blockSeparatedSextant-6.stypo</key>\n      <string>u1CE70.stypo</string>\n      <key>blockSeparatedSextant-16</key>\n      <string>u1CE71</string>\n      <key>blockSeparatedSextant-16.stypo</key>\n      <string>u1CE71.stypo</string>\n      <key>blockSeparatedSextant-26</key>\n      <string>u1CE72</string>\n      <key>blockSeparatedSextant-26.stypo</key>\n      <string>u1CE72.stypo</string>\n      <key>blockSeparatedSextant-126</key>\n      <string>u1CE73</string>\n      <key>blockSeparatedSextant-126.stypo</key>\n      <string>u1CE73.stypo</string>\n      <key>blockSeparatedSextant-36</key>\n      <string>u1CE74</string>\n      <key>blockSeparatedSextant-36.stypo</key>\n      <string>u1CE74.stypo</string>\n      <key>blockSeparatedSextant-136</key>\n      <string>u1CE75</string>\n      <key>blockSeparatedSextant-136.stypo</key>\n      <string>u1CE75.stypo</string>\n      <key>blockSeparatedSextant-236</key>\n      <string>u1CE76</string>\n      <key>blockSeparatedSextant-236.stypo</key>\n      <string>u1CE76.stypo</string>\n      <key>blockSeparatedSextant-1236</key>\n      <string>u1CE77</string>\n      <key>blockSeparatedSextant-1236.stypo</key>\n      <string>u1CE77.stypo</string>\n      <key>blockSeparatedSextant-46</key>\n      <string>u1CE78</string>\n      <key>blockSeparatedSextant-46.stypo</key>\n      <string>u1CE78.stypo</string>\n      <key>blockSeparatedSextant-146</key>\n      <string>u1CE79</string>\n      <key>blockSeparatedSextant-146.stypo</key>\n      <string>u1CE79.stypo</string>\n      <key>blockSeparatedSextant-246</key>\n      <string>u1CE7A</string>\n      <key>blockSeparatedSextant-246.stypo</key>\n      <string>u1CE7A.stypo</string>\n      <key>blockSeparatedSextant-1246</key>\n      <string>u1CE7B</string>\n      <key>blockSeparatedSextant-1246.stypo</key>\n      <string>u1CE7B.stypo</string>\n      <key>blockSeparatedSextant-346</key>\n      <string>u1CE7C</string>\n      <key>blockSeparatedSextant-346.stypo</key>\n      <string>u1CE7C.stypo</string>\n      <key>blockSeparatedSextant-1346</key>\n      <string>u1CE7D</string>\n      <key>blockSeparatedSextant-1346.stypo</key>\n      <string>u1CE7D.stypo</string>\n      <key>blockSeparatedSextant-2346</key>\n      <string>u1CE7E</string>\n      <key>blockSeparatedSextant-2346.stypo</key>\n      <string>u1CE7E.stypo</string>\n      <key>blockSeparatedSextant-12346</key>\n      <string>u1CE7F</string>\n      <key>blockSeparatedSextant-12346.stypo</key>\n      <string>u1CE7F.stypo</string>\n      <key>blockSeparatedSextant-56</key>\n      <string>u1CE80</string>\n      <key>blockSeparatedSextant-56.stypo</key>\n      <string>u1CE80.stypo</string>\n      <key>blockSeparatedSextant-156</key>\n      <string>u1CE81</string>\n      <key>blockSeparatedSextant-156.stypo</key>\n      <string>u1CE81.stypo</string>\n      <key>blockSeparatedSextant-256</key>\n      <string>u1CE82</string>\n      <key>blockSeparatedSextant-256.stypo</key>\n      <string>u1CE82.stypo</string>\n      <key>blockSeparatedSextant-1256</key>\n      <string>u1CE83</string>\n      <key>blockSeparatedSextant-1256.stypo</key>\n      <string>u1CE83.stypo</string>\n      <key>blockSeparatedSextant-356</key>\n      <string>u1CE84</string>\n      <key>blockSeparatedSextant-356.stypo</key>\n      <string>u1CE84.stypo</string>\n      <key>blockSeparatedSextant-1356</key>\n      <string>u1CE85</string>\n      <key>blockSeparatedSextant-1356.stypo</key>\n      <string>u1CE85.stypo</string>\n      <key>blockSeparatedSextant-2356</key>\n      <string>u1CE86</string>\n      <key>blockSeparatedSextant-2356.stypo</key>\n      <string>u1CE86.stypo</string>\n      <key>blockSeparatedSextant-12356</key>\n      <string>u1CE87</string>\n      <key>blockSeparatedSextant-12356.stypo</key>\n      <string>u1CE87.stypo</string>\n      <key>blockSeparatedSextant-456</key>\n      <string>u1CE88</string>\n      <key>blockSeparatedSextant-456.stypo</key>\n      <string>u1CE88.stypo</string>\n      <key>blockSeparatedSextant-1456</key>\n      <string>u1CE89</string>\n      <key>blockSeparatedSextant-1456.stypo</key>\n      <string>u1CE89.stypo</string>\n      <key>blockSeparatedSextant-2456</key>\n      <string>u1CE8A</string>\n      <key>blockSeparatedSextant-2456.stypo</key>\n      <string>u1CE8A.stypo</string>\n      <key>blockSeparatedSextant-12456</key>\n      <string>u1CE8B</string>\n      <key>blockSeparatedSextant-12456.stypo</key>\n      <string>u1CE8B.stypo</string>\n      <key>blockSeparatedSextant-3456</key>\n      <string>u1CE8C</string>\n      <key>blockSeparatedSextant-3456.stypo</key>\n      <string>u1CE8C.stypo</string>\n      <key>blockSeparatedSextant-13456</key>\n      <string>u1CE8D</string>\n      <key>blockSeparatedSextant-13456.stypo</key>\n      <string>u1CE8D.stypo</string>\n      <key>blockSeparatedSextant-23456</key>\n      <string>u1CE8E</string>\n      <key>blockSeparatedSextant-23456.stypo</key>\n      <string>u1CE8E.stypo</string>\n      <key>blockSeparatedSextant-123456</key>\n      <string>u1CE8F</string>\n      <key>blockSeparatedSextant-123456.stypo</key>\n      <string>u1CE8F.stypo</string>\n      <key>segmentedDigit0</key>\n      <string>u1FBF0</string>\n      <key>segmentedDigit1</key>\n      <string>u1FBF1</string>\n      <key>segmentedDigit2</key>\n      <string>u1FBF2</string>\n      <key>segmentedDigit3</key>\n      <string>u1FBF3</string>\n      <key>segmentedDigit4</key>\n      <string>u1FBF4</string>\n      <key>segmentedDigit5</key>\n      <string>u1FBF5</string>\n      <key>segmentedDigit6</key>\n      <string>u1FBF6</string>\n      <key>segmentedDigit7</key>\n      <string>u1FBF7</string>\n      <key>segmentedDigit8</key>\n      <string>u1FBF8</string>\n      <key>segmentedDigit9</key>\n      <string>u1FBF9</string>\n      <key>largeType-1CE1A</key>\n      <string>u1CE1A</string>\n      <key>largeType-1CE1A.stypo</key>\n      <string>u1CE1A.stypo</string>\n      <key>largeType-1CE1B</key>\n      <string>u1CE1B</string>\n      <key>largeType-1CE1B.stypo</key>\n      <string>u1CE1B.stypo</string>\n      <key>largeType-1CE1C</key>\n      <string>u1CE1C</string>\n      <key>largeType-1CE1C.stypo</key>\n      <string>u1CE1C.stypo</string>\n      <key>largeType-1CE1D</key>\n      <string>u1CE1D</string>\n      <key>largeType-1CE1D.stypo</key>\n      <string>u1CE1D.stypo</string>\n      <key>largeType-1CE1E</key>\n      <string>u1CE1E</string>\n      <key>largeType-1CE1E.stypo</key>\n      <string>u1CE1E.stypo</string>\n      <key>largeType-1CE1F</key>\n      <string>u1CE1F</string>\n      <key>largeType-1CE1F.stypo</key>\n      <string>u1CE1F.stypo</string>\n      <key>largeType-1CE20</key>\n      <string>u1CE20</string>\n      <key>largeType-1CE20.stypo</key>\n      <string>u1CE20.stypo</string>\n      <key>largeType-1CE21</key>\n      <string>u1CE21</string>\n      <key>largeType-1CE21.stypo</key>\n      <string>u1CE21.stypo</string>\n      <key>largeType-1CE22</key>\n      <string>u1CE22</string>\n      <key>largeType-1CE22.stypo</key>\n      <string>u1CE22.stypo</string>\n      <key>largeType-1CE23</key>\n      <string>u1CE23</string>\n      <key>largeType-1CE23.stypo</key>\n      <string>u1CE23.stypo</string>\n      <key>largeType-1CE24</key>\n      <string>u1CE24</string>\n      <key>largeType-1CE24.stypo</key>\n      <string>u1CE24.stypo</string>\n      <key>largeType-1CE25</key>\n      <string>u1CE25</string>\n      <key>largeType-1CE25.stypo</key>\n      <string>u1CE25.stypo</string>\n      <key>largeType-1CE26</key>\n      <string>u1CE26</string>\n      <key>largeType-1CE26.stypo</key>\n      <string>u1CE26.stypo</string>\n      <key>largeType-1CE27</key>\n      <string>u1CE27</string>\n      <key>largeType-1CE27.stypo</key>\n      <string>u1CE27.stypo</string>\n      <key>largeType-1CE28</key>\n      <string>u1CE28</string>\n      <key>largeType-1CE28.stypo</key>\n      <string>u1CE28.stypo</string>\n      <key>largeType-1CE29</key>\n      <string>u1CE29</string>\n      <key>largeType-1CE29.stypo</key>\n      <string>u1CE29.stypo</string>\n      <key>largeType-1CE2A</key>\n      <string>u1CE2A</string>\n      <key>largeType-1CE2A.stypo</key>\n      <string>u1CE2A.stypo</string>\n      <key>largeType-1CE2B</key>\n      <string>u1CE2B</string>\n      <key>largeType-1CE2B.stypo</key>\n      <string>u1CE2B.stypo</string>\n      <key>largeType-1CE2C</key>\n      <string>u1CE2C</string>\n      <key>largeType-1CE2C.stypo</key>\n      <string>u1CE2C.stypo</string>\n      <key>largeType-1CE2D</key>\n      <string>u1CE2D</string>\n      <key>largeType-1CE2D.stypo</key>\n      <string>u1CE2D.stypo</string>\n      <key>largeType-1CE2E</key>\n      <string>u1CE2E</string>\n      <key>largeType-1CE2E.stypo</key>\n      <string>u1CE2E.stypo</string>\n      <key>largeType-1CE2F</key>\n      <string>u1CE2F</string>\n      <key>largeType-1CE2F.stypo</key>\n      <string>u1CE2F.stypo</string>\n      <key>largeType-1CE30</key>\n      <string>u1CE30</string>\n      <key>largeType-1CE30.stypo</key>\n      <string>u1CE30.stypo</string>\n      <key>largeType-1CE31</key>\n      <string>u1CE31</string>\n      <key>largeType-1CE31.stypo</key>\n      <string>u1CE31.stypo</string>\n      <key>largeType-1CE32</key>\n      <string>u1CE32</string>\n      <key>largeType-1CE32.stypo</key>\n      <string>u1CE32.stypo</string>\n      <key>largeType-1CE33</key>\n      <string>u1CE33</string>\n      <key>largeType-1CE33.stypo</key>\n      <string>u1CE33.stypo</string>\n      <key>largeType-1CE34</key>\n      <string>u1CE34</string>\n      <key>largeType-1CE34.stypo</key>\n      <string>u1CE34.stypo</string>\n      <key>largeType-1CE35</key>\n      <string>u1CE35</string>\n      <key>largeType-1CE35.stypo</key>\n      <string>u1CE35.stypo</string>\n      <key>largeType-1CE36</key>\n      <string>u1CE36</string>\n      <key>largeType-1CE36.stypo</key>\n      <string>u1CE36.stypo</string>\n      <key>largeType-1CE37</key>\n      <string>u1CE37</string>\n      <key>largeType-1CE37.stypo</key>\n      <string>u1CE37.stypo</string>\n      <key>largeType-1CE38</key>\n      <string>u1CE38</string>\n      <key>largeType-1CE38.stypo</key>\n      <string>u1CE38.stypo</string>\n      <key>largeType-1CE39</key>\n      <string>u1CE39</string>\n      <key>largeType-1CE39.stypo</key>\n      <string>u1CE39.stypo</string>\n      <key>largeType-1CE3A</key>\n      <string>u1CE3A</string>\n      <key>largeType-1CE3A.stypo</key>\n      <string>u1CE3A.stypo</string>\n      <key>largeType-1CE3B</key>\n      <string>u1CE3B</string>\n      <key>largeType-1CE3B.stypo</key>\n      <string>u1CE3B.stypo</string>\n      <key>largeType-1CE3C</key>\n      <string>u1CE3C</string>\n      <key>largeType-1CE3C.stypo</key>\n      <string>u1CE3C.stypo</string>\n      <key>largeType-1CE3D</key>\n      <string>u1CE3D</string>\n      <key>largeType-1CE3D.stypo</key>\n      <string>u1CE3D.stypo</string>\n      <key>largeType-1CE3E</key>\n      <string>u1CE3E</string>\n      <key>largeType-1CE3E.stypo</key>\n      <string>u1CE3E.stypo</string>\n      <key>largeType-1CE3F</key>\n      <string>u1CE3F</string>\n      <key>largeType-1CE3F.stypo</key>\n      <string>u1CE3F.stypo</string>\n      <key>largeType-1CE40</key>\n      <string>u1CE40</string>\n      <key>largeType-1CE40.stypo</key>\n      <string>u1CE40.stypo</string>\n      <key>largeType-1CE41</key>\n      <string>u1CE41</string>\n      <key>largeType-1CE41.stypo</key>\n      <string>u1CE41.stypo</string>\n      <key>largeType-1CE42</key>\n      <string>u1CE42</string>\n      <key>largeType-1CE42.stypo</key>\n      <string>u1CE42.stypo</string>\n      <key>largeType-1CE43</key>\n      <string>u1CE43</string>\n      <key>largeType-1CE43.stypo</key>\n      <string>u1CE43.stypo</string>\n      <key>largeType-1CE44</key>\n      <string>u1CE44</string>\n      <key>largeType-1CE44.stypo</key>\n      <string>u1CE44.stypo</string>\n      <key>largeType-1CE45</key>\n      <string>u1CE45</string>\n      <key>largeType-1CE45.stypo</key>\n      <string>u1CE45.stypo</string>\n      <key>largeType-1CE46</key>\n      <string>u1CE46</string>\n      <key>largeType-1CE46.stypo</key>\n      <string>u1CE46.stypo</string>\n      <key>largeType-1CE47</key>\n      <string>u1CE47</string>\n      <key>largeType-1CE47.stypo</key>\n      <string>u1CE47.stypo</string>\n      <key>largeType-1CE48</key>\n      <string>u1CE48</string>\n      <key>largeType-1CE48.stypo</key>\n      <string>u1CE48.stypo</string>\n      <key>largeType-1CE49</key>\n      <string>u1CE49</string>\n      <key>largeType-1CE49.stypo</key>\n      <string>u1CE49.stypo</string>\n      <key>largeType-1CE4A</key>\n      <string>u1CE4A</string>\n      <key>largeType-1CE4A.stypo</key>\n      <string>u1CE4A.stypo</string>\n      <key>largeType-1CE4B</key>\n      <string>u1CE4B</string>\n      <key>largeType-1CE4B.stypo</key>\n      <string>u1CE4B.stypo</string>\n      <key>largeType-1CE4C</key>\n      <string>u1CE4C</string>\n      <key>largeType-1CE4C.stypo</key>\n      <string>u1CE4C.stypo</string>\n      <key>largeType-1CE4D</key>\n      <string>u1CE4D</string>\n      <key>largeType-1CE4D.stypo</key>\n      <string>u1CE4D.stypo</string>\n      <key>largeType-1CE4E</key>\n      <string>u1CE4E</string>\n      <key>largeType-1CE4E.stypo</key>\n      <string>u1CE4E.stypo</string>\n      <key>largeType-1CE4F</key>\n      <string>u1CE4F</string>\n      <key>largeType-1CE4F.stypo</key>\n      <string>u1CE4F.stypo</string>\n      <key>largeType-1CE50</key>\n      <string>u1CE50</string>\n      <key>largeType-1CE50.stypo</key>\n      <string>u1CE50.stypo</string>\n    </dict>\n    <key>public.skipExportGlyphs</key>\n    <array>\n      <string>A.half</string>\n      <string>B.half</string>\n      <string>C.half</string>\n      <string>D.half</string>\n      <string>E.half</string>\n      <string>F.half</string>\n      <string>G.half</string>\n      <string>H.half</string>\n      <string>I.half</string>\n      <string>K.half</string>\n      <string>L.half</string>\n      <string>M.half</string>\n      <string>N.half</string>\n      <string>O.half</string>\n      <string>P.half</string>\n      <string>Q.half</string>\n      <string>R.half</string>\n      <string>S.half</string>\n      <string>T.half</string>\n      <string>U.half</string>\n      <string>V.half</string>\n      <string>X.half</string>\n      <string>Y.half</string>\n      <string>four.half</string>\n      <string>one.half</string>\n      <string>three.half</string>\n      <string>two.half</string>\n    </array>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLight.ufo/metainfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>creator</key>\n    <string>com.github.fonttools.ufoLib</string>\n    <key>formatVersion</key>\n    <integer>3</integer>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/features.fea",
    "content": "# automatic\n@Uppercase = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Dafrican Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F Fhook G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK 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 Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol ];\n\n# Prefix: Languagesystems\n# automatic\nlanguagesystem DFLT dflt;\n\nlanguagesystem latn dflt;\nlanguagesystem latn ROM;\nlanguagesystem latn MOL;\nlanguagesystem latn PLK;\nlanguagesystem latn CAT;\nlanguagesystem latn NLD;\n\nlanguagesystem cyrl dflt;\nlanguagesystem cyrl BGR;\nlanguagesystem cyrl SRB;\n\n\nfeature aalt {\n# automatic\nfeature calt;\nfeature salt;\nfeature locl;\nfeature subs;\nfeature sinf;\nfeature sups;\nfeature numr;\nfeature dnom;\nfeature frac;\nfeature ordn;\nfeature case;\nfeature zero;\nfeature ss20;\n\n} aalt;\n\nfeature calt {\nsub [B C D E F G H I J K M N O P Q R S T U V W X Y Z seven f 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 Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy Ef-cy.loclBGR] [b h k shha-cy zhe-cy.loclBGR ka-cy.loclBGR]' by [b.alt h.alt k.alt shha-cy.alt zhe-cy.loclBGR.alt ka-cy.loclBGR.alt];\n} calt;\n\nfeature ss01 {\nsub f by f.salt;\nsub l by l.salt;\nsub lacute by lacute.salt;\nsub lbar by lbar.salt;\nsub lbelt by lbelt.salt;\nsub lcaron by lcaron.salt;\nsub lcommaaccent by lcommaaccent.salt;\nsub ldot by ldot.salt;\nsub ldotbelow by ldotbelow.salt;\nsub llinebelow by llinebelow.salt;\nsub lmiddletilde by lmiddletilde.salt;\nsub lslash by lslash.salt;\nsub r by r.salt;\nsub racute by racute.salt;\nsub rcaron by rcaron.salt;\nsub rcommaaccent by rcommaaccent.salt;\nsub rdotbelow by rdotbelow.salt;\nsub s by s.salt;\nsub sacute by sacute.salt;\nsub scaron by scaron.salt;\nsub scedilla by scedilla.salt;\nsub scircumflex by scircumflex.salt;\nsub scommaaccent by scommaaccent.salt;\nsub sdotbelow by sdotbelow.salt;\n} ss01;\n\nfeature ccmp {\n# automatic\nlookup ccmp_Other_1 {\n\t@CombiningTopAccents = [acutecomb acutetonecomb brevecomb caroncomb circumflexcomb commaabovecomb commaaboverightcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb gravetonecomb hookabovecomb hungarumlautcomb macroncomb perispomenicomb ringcomb tildecomb];\n\t@CombiningNonTopAccents = [cedillacomb dotbelowcomb lowlinecomb macronbelowcomb ogonekcomb ringbelowcomb horncomb];\n\tsub [i j]' @CombiningTopAccents by [idotless jdotless];\n\tsub [i j]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless];\n\t@Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb horncomb tonos brevecomb-cy];\n\t@MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case tonos.case brevecomb-cy.case];\n\tsub @Markscomb @Markscomb' by @MarkscombCase;\n\tsub @Uppercase @Markscomb' by @MarkscombCase;\n} ccmp_Other_1;\n\nlookup ccmp_Other_2 {\n\tsub @Markscomb' @MarkscombCase by @MarkscombCase;\n\tsub @MarkscombCase @Markscomb' by @MarkscombCase;\n} ccmp_Other_2;\n\n} ccmp;\n\nfeature locl {\n# automatic\nlookup locl_latn_0 {\n\tscript latn;\n\tlanguage ROM;\n\tlanguage MOL;\n\tsub Scedilla by Scommaaccent;\n\tsub scedilla by scommaaccent;\n\tsub Tcedilla by Tcommaaccent;\n\tsub tcedilla by tcommaaccent;\n} locl_latn_0;\n\nlookup locl_latn_1 {\n\tscript latn;\n\tlanguage PLK;\n\tsub Cacute by Cacute.loclPLK;\n\tsub Nacute by Nacute.loclPLK;\n\tsub Oacute by Oacute.loclPLK;\n\tsub Sacute by Sacute.loclPLK;\n\tsub Zacute by Zacute.loclPLK;\n\tsub cacute by cacute.loclPLK;\n\tsub nacute by nacute.loclPLK;\n\tsub oacute by oacute.loclPLK;\n\tsub sacute by sacute.loclPLK;\n\tsub zacute by zacute.loclPLK;\n\tsub acutecomb by acutecomb.loclPLK;\n} locl_latn_1;\n\nlookup locl_latn_2 {\n\tscript latn;\n\tlanguage CAT;\n\tsub  l' periodcentered' l by ldot;\n\tsub  L' periodcentered' L by Ldot;\n} locl_latn_2;\n\nlookup locl_latn_3 {\n\tscript latn;\n\tlanguage NLD;\n\tsub iacute j' by jacute;\n\tsub Iacute J' by Jacute;\n} locl_latn_3;\n\nlookup locl_cyrl_0 {\n\tscript cyrl;\n\tlanguage BGR;\n\tsub De-cy by De-cy.loclBGR;\n\tsub El-cy by El-cy.loclBGR;\n\tsub Ef-cy by Ef-cy.loclBGR;\n\tsub de-cy by de-cy.loclBGR;\n\tsub zhe-cy by zhe-cy.loclBGR;\n\tsub ze-cy by ze-cy.loclBGR;\n\tsub ka-cy by ka-cy.loclBGR;\n\tsub iu-cy by iu-cy.loclBGR;\n} locl_cyrl_0;\n\nlookup locl_cyrl_1 {\n\tscript cyrl;\n\tlanguage SRB;\n\tsub be-cy by be-cy.loclSRB;\n\tsub ge-cy by ge-cy.loclSRB;\n\tsub pe-cy by pe-cy.loclSRB;\n\tsub te-cy by te-cy.loclSRB;\n} locl_cyrl_1;\n\n} locl;\n\nfeature subs {\n# automatic\nsub zero by zeroinferior;\nsub one by oneinferior;\nsub two by twoinferior;\nsub three by threeinferior;\nsub four by fourinferior;\nsub five by fiveinferior;\nsub six by sixinferior;\nsub seven by seveninferior;\nsub eight by eightinferior;\nsub nine by nineinferior;\n\n} subs;\n\nfeature sinf {\n# automatic\nsub zero by zeroinferior;\nsub one by oneinferior;\nsub two by twoinferior;\nsub three by threeinferior;\nsub four by fourinferior;\nsub five by fiveinferior;\nsub six by sixinferior;\nsub seven by seveninferior;\nsub eight by eightinferior;\nsub nine by nineinferior;\n\n} sinf;\n\nfeature sups {\n# automatic\nsub zero by zerosuperior;\nsub one by onesuperior;\nsub two by twosuperior;\nsub three by threesuperior;\nsub four by foursuperior;\nsub five by fivesuperior;\nsub six by sixsuperior;\nsub seven by sevensuperior;\nsub eight by eightsuperior;\nsub nine by ninesuperior;\n\n} sups;\n\nfeature numr {\n# automatic\nsub zero by zero.numr;\nsub one by one.numr;\nsub two by two.numr;\nsub three by three.numr;\nsub four by four.numr;\nsub five by five.numr;\nsub six by six.numr;\nsub seven by seven.numr;\nsub eight by eight.numr;\nsub nine by nine.numr;\n\n} numr;\n\nfeature dnom {\n# automatic\nsub zero by zero.dnom;\nsub one by one.dnom;\nsub two by two.dnom;\nsub three by three.dnom;\nsub four by four.dnom;\nsub five by five.dnom;\nsub six by six.dnom;\nsub seven by seven.dnom;\nsub eight by eight.dnom;\nsub nine by nine.dnom;\n\n} dnom;\n\nfeature frac {\n# automatic\nlookup FRAC {\n\tsub slash by fraction;\n} FRAC;\nlookup UP {\n\tsub [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];\n} UP;\nlookup DOWN {\n\tsub 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];\n\tsub [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];\n} DOWN;\n\n} frac;\n\nfeature ordn {\n# automatic\nsub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;\nsub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;\nsub N o period by numero;\n\n} ordn;\n\nfeature case {\n# automatic\nsub dieresiscomb by dieresiscomb.case;\nsub dotaccentcomb by dotaccentcomb.case;\nsub gravecomb by gravecomb.case;\nsub acutecomb by acutecomb.case;\nsub hungarumlautcomb by hungarumlautcomb.case;\nsub circumflexcomb by circumflexcomb.case;\nsub caroncomb by caroncomb.case;\nsub brevecomb by brevecomb.case;\nsub ringcomb by ringcomb.case;\nsub tildecomb by tildecomb.case;\nsub macroncomb by macroncomb.case;\nsub hookabovecomb by hookabovecomb.case;\nsub horncomb by horncomb.case;\nsub tonos by tonos.case;\nsub brevecomb-cy by brevecomb-cy.case;\n\n} case;\n\nfeature liga {\n# automatic\n# disabled\n#lookupflag IgnoreMarks;\n#sub bar bar bar greater by bar_bar_bar_greater.liga;\n#sub less bar bar bar by less_bar_bar_bar.liga;\n#sub less exclam hyphen hyphen by less_exclam_hyphen_hyphen.liga;\n#sub asciitilde asciitilde greater by asciitilde_asciitilde_greater.liga;\n#sub asterisk asterisk asterisk by asterisk_asterisk_asterisk.liga;\n#sub bar bar bar by bar_bar_bar.liga;\n#sub bar bar greater by bar_bar_greater.liga;\n#sub colon colon colon by colon_colon_colon.liga;\n#sub colon colon equal by colon_colon_equal.liga;\n#sub colon slash slash by colon_slash_slash.liga;\n#sub equal equal equal by equal_equal_equal.liga;\n#sub equal greater greater by equal_greater_greater.liga;\n#sub equal less less by equal_less_less.liga;\n#sub exclam equal equal by exclam_equal_equal.liga;\n#sub exclam exclam period by exclam_exclam_period.liga;\n#sub greater greater equal by greater_greater_equal.liga;\n#sub greater greater greater by greater_greater_greater.liga;\n#sub hyphen hyphen hyphen by hyphen_hyphen_hyphen.liga;\n#sub less asciitilde asciitilde by less_asciitilde_asciitilde.liga;\n#sub less asciitilde greater by less_asciitilde_greater.liga;\n#sub less asterisk greater by less_asterisk_greater.liga;\n#sub less bar bar by less_bar_bar.liga;\n#sub less bar greater by less_bar_greater.liga;\n#sub less dollar greater by less_dollar_greater.liga;\n#sub less less equal by less_less_equal.liga;\n#sub less less less by less_less_less.liga;\n#sub less plus greater by less_plus_greater.liga;\n#sub less slash greater by less_slash_greater.liga;\n#sub numbersign underscore parenleft by numbersign_underscore_parenleft.liga;\n#sub period period equal by period_period_equal.liga;\n#sub period period less by period_period_less.liga;\n#sub period period period by period_period_period.liga;\n#sub plus plus plus by plus_plus_plus.liga;\n#sub question question equal by question_question_equal.liga;\n#sub slash slash slash by slash_slash_slash.liga;\n#sub w w w by w_w_w.liga;\n#sub ampersand ampersand by ampersand_ampersand.liga;\n#sub asciicircum equal by asciicircum_equal.liga;\n#sub asciitilde asciitilde by asciitilde_asciitilde.liga;\n#sub asciitilde at by asciitilde_at.liga;\n#sub asciitilde equal by asciitilde_equal.liga;\n#sub asciitilde greater by asciitilde_greater.liga;\n#sub asciitilde hyphen by asciitilde_hyphen.liga;\n#sub asterisk asterisk by asterisk_asterisk.liga;\n#sub asterisk greater by asterisk_greater.liga;\n#sub asterisk parenright by asterisk_parenright.liga;\n#sub asterisk slash by asterisk_slash.liga;\n#sub backslash backslash by backslash_backslash.liga;\n#sub backslash slash by backslash_slash.liga;\n#sub bar bar by bar_bar.liga;\n#sub bar braceright by bar_braceright.liga;\n#sub bar bracketright by bar_bracketright.liga;\n#sub bar greater by bar_greater.liga;\n#sub braceleft bar by braceleft_bar.liga;\n#sub braceright numbersign by braceright_numbersign.liga;\n#sub bracketleft bar by bracketleft_bar.liga;\n#sub bracketright numbersign by bracketright_numbersign.liga;\n#sub colon colon by colon_colon.liga;\n#sub colon equal by colon_equal.liga;\n#sub dollar greater by dollar_greater.liga;\n#sub equal equal by equal_equal.liga;\n#sub exclam colon by exclam_colon.liga;\n#sub exclam equal by exclam_equal.liga;\n#sub exclam exclam by exclam_exclam.liga;\n#sub exclam period by exclam_period.liga;\n#sub greater equal by greater_equal.liga;\n#sub greater greater by greater_greater.liga;\n#sub hyphen asciitilde by hyphen_asciitilde.liga;\n#sub hyphen hyphen by hyphen_hyphen.liga;\n#sub less asciitilde by less_asciitilde.liga;\n#sub less asterisk by less_asterisk.liga;\n#sub less bar by less_bar.liga;\n#sub less dollar by less_dollar.liga;\n#sub less equal by less_equal.liga;\n#sub less greater by less_greater.liga;\n#sub less less by less_less.liga;\n#sub less plus by less_plus.liga;\n#sub less slash by less_slash.liga;\n#sub numbersign braceleft by numbersign_braceleft.liga;\n#sub numbersign bracketleft by numbersign_bracketleft.liga;\n#sub numbersign colon by numbersign_colon.liga;\n#sub numbersign equal by numbersign_equal.liga;\n#sub numbersign exclam by numbersign_exclam.liga;\n#sub numbersign parenleft by numbersign_parenleft.liga;\n#sub numbersign question by numbersign_question.liga;\n#sub numbersign underscore by numbersign_underscore.liga;\n#sub parenleft asterisk by parenleft_asterisk.liga;\n#sub percent percent by percent_percent.liga;\n#sub period equal by period_equal.liga;\n#sub period hyphen by period_hyphen.liga;\n#sub period period by period_period.liga;\n#sub period question by period_question.liga;\n#sub plus greater by plus_greater.liga;\n#sub plus plus by plus_plus.liga;\n#sub question colon by question_colon.liga;\n#sub question equal by question_equal.liga;\n#sub question period by question_period.liga;\n#sub question question by question_question.liga;\n#sub semicolon semicolon by semicolon_semicolon.liga;\n#sub slash asterisk by slash_asterisk.liga;\n#sub slash backslash by slash_backslash.liga;\n#sub slash greater by slash_greater.liga;\n#sub slash slash by slash_slash.liga;\n#sub underscore underscore by underscore_underscore.liga;\n#sub f i by fi;\n#sub f l by fl;\n} liga;\n\nfeature zero {\n# automatic\nsub zero by zero.zero;\n\n} zero;\n\nfeature ss20 {\n# automatic\nsub acknowledgeControl by acknowledgeControl.ss20;\nsub backspaceControl by backspaceControl.ss20;\nsub bellControl by bellControl.ss20;\nsub cancelControl by cancelControl.ss20;\nsub carriageReturnControl by carriageReturnControl.ss20;\nsub dataLinkEscapeControl by dataLinkEscapeControl.ss20;\nsub endOfMediumControl by endOfMediumControl.ss20;\nsub endOfTextControl by endOfTextControl.ss20;\nsub endOfTransmissionBlockControl by endOfTransmissionBlockControl.ss20;\nsub endOfTransmissionControl by endOfTransmissionControl.ss20;\nsub enquiryControl by enquiryControl.ss20;\nsub escapeControl by escapeControl.ss20;\nsub formFeedControl by formFeedControl.ss20;\nsub horizontalTabulationControl by horizontalTabulationControl.ss20;\nsub lineFeedControl by lineFeedControl.ss20;\nsub negativeAcknowledgeControl by negativeAcknowledgeControl.ss20;\nsub shiftInControl by shiftInControl.ss20;\nsub shiftOutControl by shiftOutControl.ss20;\nsub startOfHeadingControl by startOfHeadingControl.ss20;\nsub startOfTextControl by startOfTextControl.ss20;\nsub substituteControl by substituteControl.ss20;\nsub synchronousIdleControl by synchronousIdleControl.ss20;\nsub verticalTabulationControl by verticalTabulationControl.ss20;\n\n} ss20;\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/fontinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>ascender</key>\n    <integer>1568</integer>\n    <key>capHeight</key>\n    <integer>1420</integer>\n    <key>copyright</key>\n    <string>© 2021 Microsoft Corporation. All Rights Reserved.</string>\n    <key>descender</key>\n    <integer>-480</integer>\n    <key>familyName</key>\n    <string>Cascadia Code</string>\n    <key>guidelines</key>\n    <array>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1100</integer>\n        <key>y</key>\n        <integer>1080</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>886</integer>\n        <key>y</key>\n        <integer>-20</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1052</integer>\n        <key>y</key>\n        <integer>1500</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>1276</integer>\n        <key>y</key>\n        <integer>1440</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>440</integer>\n        <key>y</key>\n        <integer>-460</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2160</integer>\n        <key>y</key>\n        <integer>332</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2120</integer>\n        <key>y</key>\n        <integer>342</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>2004</integer>\n        <key>y</key>\n        <integer>52</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3360</integer>\n        <key>y</key>\n        <integer>466</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3320</integer>\n        <key>y</key>\n        <integer>306</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>90</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>3208</integer>\n        <key>y</key>\n        <integer>146</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>180</integer>\n        <key>x</key>\n        <integer>867</integer>\n        <key>y</key>\n        <integer>1808</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>288</integer>\n        <key>y</key>\n        <integer>1230</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>2831</integer>\n        <key>y</key>\n        <integer>222</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>1192</integer>\n        <key>y</key>\n        <integer>1052</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>2741</integer>\n        <key>y</key>\n        <integer>215</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>4313</integer>\n        <key>y</key>\n        <integer>608</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>1881</integer>\n        <key>y</key>\n        <integer>144</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>100</integer>\n        <key>y</key>\n        <integer>0</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>925</integer>\n        <key>y</key>\n        <integer>764</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>1206</integer>\n        <key>y</key>\n        <integer>870</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>name</key>\n        <string> [locked]</string>\n        <key>x</key>\n        <integer>751</integer>\n        <key>y</key>\n        <integer>1390</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>375</integer>\n        <key>y</key>\n        <integer>42</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>80</integer>\n        <key>x</key>\n        <integer>384</integer>\n        <key>y</key>\n        <integer>-440</integer>\n      </dict>\n      <dict>\n        <key>angle</key>\n        <integer>0</integer>\n        <key>x</key>\n        <integer>962</integer>\n        <key>y</key>\n        <integer>280</integer>\n      </dict>\n    </array>\n    <key>italicAngle</key>\n    <integer>-10</integer>\n    <key>openTypeHeadCreated</key>\n    <string>2019/04/07 17:18:29</string>\n    <key>openTypeNameDesigner</key>\n    <string>Aaron Bell</string>\n    <key>openTypeNameDesignerURL</key>\n    <string>http://sajatypeworks.com</string>\n    <key>openTypeNameLicense</key>\n    <string>Microsoft supplied font. You may use this font to create, display, and print content as permitted by the license terms or terms of use, of the Microsoft product, service, or content in which this font was included. You may only (i) embed this font in content as permitted by the embedding restrictions included in this font; and (ii) temporarily download this font to a printer or other output device to help print content. Any other use is prohibited.\n \nThe following license, based on the SIL Open Font license (https://scripts.sil.org/OFL), applies to this font. Additional license terms may be found on the GitHub repository for this font (https://github.com/microsoft/cascadia-code/blob/main/LICENSE).\n \nPermission 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:\n \n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n \n2) 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.\n \n3) 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.\n \n4) 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.\n \n5) 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.\n \nTHE 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.</string>\n    <key>openTypeNameLicenseURL</key>\n    <string>https://scripts.sil.org/OFL</string>\n    <key>openTypeNameManufacturer</key>\n    <string>Saja Typeworks</string>\n    <key>openTypeNameManufacturerURL</key>\n    <string>http://sajatypeworks.com</string>\n    <key>openTypeOS2Panose</key>\n    <array>\n      <integer>2</integer>\n      <integer>11</integer>\n      <integer>6</integer>\n      <integer>9</integer>\n      <integer>2</integer>\n      <integer>0</integer>\n      <integer>0</integer>\n      <integer>2</integer>\n      <integer>0</integer>\n      <integer>4</integer>\n    </array>\n    <key>openTypeOS2Selection</key>\n    <array>\n      <integer>7</integer>\n    </array>\n    <key>openTypeOS2Type</key>\n    <array/>\n    <key>openTypeOS2VendorID</key>\n    <string>SAJA</string>\n    <key>postscriptBlueValues</key>\n    <array>\n      <integer>-20</integer>\n      <integer>0</integer>\n      <integer>1060</integer>\n      <integer>1080</integer>\n      <integer>1420</integer>\n      <integer>1440</integer>\n      <integer>1500</integer>\n      <integer>1520</integer>\n    </array>\n    <key>postscriptIsFixedPitch</key>\n    <true/>\n    <key>postscriptOtherBlues</key>\n    <array>\n      <integer>-480</integer>\n      <integer>-460</integer>\n    </array>\n    <key>postscriptStemSnapH</key>\n    <array>\n      <integer>200</integer>\n      <integer>210</integer>\n      <integer>212</integer>\n      <integer>220</integer>\n    </array>\n    <key>postscriptStemSnapV</key>\n    <array>\n      <integer>190</integer>\n      <integer>180</integer>\n    </array>\n    <key>postscriptUnderlinePosition</key>\n    <integer>-100</integer>\n    <key>postscriptUnderlineThickness</key>\n    <integer>100</integer>\n    <key>styleName</key>\n    <string>ExtraLight Italic</string>\n    <key>trademark</key>\n    <string>Cascadia Code is a trademark of the Microsoft group of companies.</string>\n    <key>unitsPerEm</key>\n    <integer>2048</integer>\n    <key>versionMajor</key>\n    <integer>4</integer>\n    <key>versionMinor</key>\n    <integer>300</integer>\n    <key>xHeight</key>\n    <integer>1060</integer>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0410\"/>\n  <outline>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0041\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"989\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-24\" y=\"0\" type=\"line\"/>\n      <point x=\"86\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"1333\" type=\"line\"/>\n      <point x=\"750\" y=\"1333\" type=\"line\"/>\n      <point x=\"822\" y=\"1045\"/>\n      <point x=\"879\" y=\"626\"/>\n      <point x=\"932\" y=\"0\" type=\"curve\"/>\n      <point x=\"1038\" y=\"0\" type=\"line\"/>\n      <point x=\"976\" y=\"655\"/>\n      <point x=\"910\" y=\"1102\"/>\n      <point x=\"829\" y=\"1421\" type=\"curve\"/>\n      <point x=\"681\" y=\"1421\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"220\" y=\"396\" type=\"line\"/>\n      <point x=\"940\" y=\"396\" type=\"line\"/>\n      <point x=\"957\" y=\"486\" type=\"line\"/>\n      <point x=\"237\" y=\"486\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"A.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"42\" y=\"0\" type=\"line\"/>\n      <point x=\"144\" y=\"0\" type=\"line\"/>\n      <point x=\"416\" y=\"564\" type=\"line\"/>\n      <point x=\"425\" y=\"564\" type=\"line\"/>\n      <point x=\"697\" y=\"0\" type=\"line\"/>\n      <point x=\"799\" y=\"0\" type=\"line\"/>\n      <point x=\"486\" y=\"639\" type=\"line\"/>\n      <point x=\"355\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"129\" type=\"line\"/>\n      <point x=\"669\" y=\"129\" type=\"line\"/>\n      <point x=\"669\" y=\"218\" type=\"line\"/>\n      <point x=\"165\" y=\"218\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"AE\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C6\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"990\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"867\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"544\" y=\"0\" type=\"line\"/>\n      <point x=\"638\" y=\"0\" type=\"line\"/>\n      <point x=\"888\" y=\"1420\" type=\"line\"/>\n      <point x=\"794\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"0\" type=\"line\"/>\n      <point x=\"980\" y=\"0\" type=\"line\"/>\n      <point x=\"996\" y=\"90\" type=\"line\"/>\n      <point x=\"571\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"699\" y=\"666\" type=\"line\"/>\n      <point x=\"1037\" y=\"666\" type=\"line\"/>\n      <point x=\"1053\" y=\"756\" type=\"line\"/>\n      <point x=\"715\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"789\" y=\"1330\" type=\"line\"/>\n      <point x=\"1215\" y=\"1330\" type=\"line\"/>\n      <point x=\"1230\" y=\"1420\" type=\"line\"/>\n      <point x=\"804\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-31\" y=\"0\" type=\"line\"/>\n      <point x=\"70\" y=\"0\" type=\"line\"/>\n      <point x=\"761\" y=\"1331\" type=\"line\"/>\n      <point x=\"799\" y=\"1331\" type=\"line\"/>\n      <point x=\"867\" y=\"1420\" type=\"line\"/>\n      <point x=\"708\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"198\" y=\"283\" type=\"line\"/>\n      <point x=\"658\" y=\"283\" type=\"line\"/>\n      <point x=\"670\" y=\"373\" type=\"line\"/>\n      <point x=\"210\" y=\"373\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_E_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"AEacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FC\"/>\n  <outline>\n    <component base=\"AE\"/>\n    <component base=\"acutecomb.case\" xOffset=\"110\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C1\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0102\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_breveacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abreveacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAE\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"70\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_brevedotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevedotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB6\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_brevegrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevegrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"70\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_brevehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"70\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_brevetilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Abrevetilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"brevecomb.case\"/>\n    <component base=\"tildecomb.case\" xOffset=\"70\" yOffset=\"400\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01CD\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"337\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAC\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA6\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"337\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA8\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"337\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Acircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAA\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"tildecomb.case\" xOffset=\"67\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Adieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C4\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Adotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Agrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C0\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ahookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA2\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_lpha-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alpha-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2C6D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1112\" y=\"1430\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"530\" y=\"1430\"/>\n      <point x=\"78\" y=\"945\"/>\n      <point x=\"78\" y=\"318\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"78\" y=\"106\"/>\n      <point x=\"194\" y=\"-20\"/>\n      <point x=\"392\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"-20\"/>\n      <point x=\"776\" y=\"99\"/>\n      <point x=\"861\" y=\"359\" type=\"curve\"/>\n      <point x=\"821\" y=\"284\" type=\"line\"/>\n      <point x=\"907\" y=\"284\" type=\"line\"/>\n      <point x=\"850\" y=\"329\" type=\"line\"/>\n      <point x=\"800\" y=\"-10\" type=\"line\"/>\n      <point x=\"1060\" y=\"0\" type=\"line\"/>\n      <point x=\"1074\" y=\"82\" type=\"line\"/>\n      <point x=\"874\" y=\"82\" type=\"line\"/>\n      <point x=\"892\" y=\"80\" type=\"line\"/>\n      <point x=\"1130\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"417\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"70\"/>\n      <point x=\"174\" y=\"171\"/>\n      <point x=\"174\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"174\" y=\"877\"/>\n      <point x=\"568\" y=\"1321\"/>\n      <point x=\"1039\" y=\"1340\" type=\"curve\"/>\n      <point x=\"1029\" y=\"1399\" type=\"line\"/>\n      <point x=\"900\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"827\" y=\"255\"/>\n      <point x=\"665\" y=\"70\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_lpha.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alpha\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0391\"/>\n  <outline>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_lphatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Alphatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0386\"/>\n  <anchor x=\"634\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"884\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"343\" y=\"0\" type=\"line\"/>\n      <point x=\"459\" y=\"358\"/>\n      <point x=\"677\" y=\"989\"/>\n      <point x=\"836\" y=\"1333\" type=\"curve\"/>\n      <point x=\"854\" y=\"1333\" type=\"line\"/>\n      <point x=\"860\" y=\"0\" type=\"line\"/>\n      <point x=\"966\" y=\"0\" type=\"line\"/>\n      <point x=\"938\" y=\"1421\" type=\"line\"/>\n      <point x=\"780\" y=\"1421\" type=\"line\"/>\n      <point x=\"593\" y=\"1026\"/>\n      <point x=\"360\" y=\"390\"/>\n      <point x=\"233\" y=\"0\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"444\" y=\"396\" type=\"line\"/>\n      <point x=\"868\" y=\"396\" type=\"line\"/>\n      <point x=\"885\" y=\"486\" type=\"line\"/>\n      <point x=\"461\" y=\"486\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"1040\" type=\"line\"/>\n      <point x=\"244\" y=\"1040\" type=\"line\"/>\n      <point x=\"423\" y=\"1420\" type=\"line\"/>\n      <point x=\"314\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Amacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0100\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0104\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"846\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"889\" y=\"-423\"/>\n      <point x=\"931\" y=\"-417\"/>\n      <point x=\"960\" y=\"-405\" type=\"curve\"/>\n      <point x=\"947\" y=\"-322\" type=\"line\"/>\n      <point x=\"927\" y=\"-329\"/>\n      <point x=\"896\" y=\"-336\"/>\n      <point x=\"862\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"-336\"/>\n      <point x=\"793\" y=\"-311\"/>\n      <point x=\"793\" y=\"-264\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"-189\"/>\n      <point x=\"870\" y=\"-106\"/>\n      <point x=\"1038\" y=\"0\" type=\"curve\"/>\n      <point x=\"1013\" y=\"34\" type=\"line\"/>\n      <point x=\"948\" y=\"58\" type=\"line\"/>\n      <point x=\"948\" y=\"0\" type=\"line\"/>\n      <point x=\"777\" y=\"-97\"/>\n      <point x=\"699\" y=\"-186\"/>\n      <point x=\"699\" y=\"-284\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"-374\"/>\n      <point x=\"750\" y=\"-423\"/>\n    </contour>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C5\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"ringcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_ringacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Aringacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FA\"/>\n  <outline>\n    <component base=\"acutecomb.case\" xOffset=\"22\" yOffset=\"240\"/>\n    <component base=\"Aring\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Asmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1D00\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"989\" y=\"8\" name=\"ogonek\"/>\n  <anchor x=\"696\" y=\"1079\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-26\" y=\"0\" type=\"line\"/>\n      <point x=\"78\" y=\"0\" type=\"line\"/>\n      <point x=\"682\" y=\"1004\" type=\"line\"/>\n      <point x=\"692\" y=\"1004\" type=\"line\"/>\n      <point x=\"939\" y=\"0\" type=\"line\"/>\n      <point x=\"1040\" y=\"0\" type=\"line\"/>\n      <point x=\"768\" y=\"1079\" type=\"line\"/>\n      <point x=\"623\" y=\"1079\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"293\" type=\"line\"/>\n      <point x=\"914\" y=\"293\" type=\"line\"/>\n      <point x=\"929\" y=\"378\" type=\"line\"/>\n      <point x=\"209\" y=\"378\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Astroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023A\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"316\" y=\"-340\" type=\"line\"/>\n      <point x=\"597\" y=\"425\" type=\"line\"/>\n      <point x=\"613\" y=\"469\" type=\"line\"/>\n      <point x=\"831\" y=\"1062\" type=\"line\"/>\n      <point x=\"855\" y=\"1129\" type=\"line\"/>\n      <point x=\"1065\" y=\"1699\" type=\"line\"/>\n      <point x=\"968\" y=\"1723\" type=\"line\"/>\n      <point x=\"803\" y=\"1266\" type=\"line\"/>\n      <point x=\"789\" y=\"1226\" type=\"line\"/>\n      <point x=\"513\" y=\"465\" type=\"line\"/>\n      <point x=\"498\" y=\"423\" type=\"line\"/>\n      <point x=\"229\" y=\"-320\" type=\"line\"/>\n    </contour>\n    <component base=\"A\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Atilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C3\"/>\n  <outline>\n    <component base=\"A\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"B\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0042\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"437\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"265\" y=\"755\" type=\"line\"/>\n      <point x=\"697\" y=\"755\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"755\"/>\n      <point x=\"1103\" y=\"873\"/>\n      <point x=\"1103\" y=\"1101\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1103\" y=\"1324\"/>\n      <point x=\"942\" y=\"1440\"/>\n      <point x=\"635\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"518\" y=\"1440\"/>\n      <point x=\"416\" y=\"1433\"/>\n      <point x=\"341\" y=\"1420\" type=\"curve\"/>\n      <point x=\"348\" y=\"1330\" type=\"line\"/>\n      <point x=\"419\" y=\"1343\"/>\n      <point x=\"517\" y=\"1350\"/>\n      <point x=\"632\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"1350\"/>\n      <point x=\"1007\" y=\"1263\"/>\n      <point x=\"1007\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1007\" y=\"899\"/>\n      <point x=\"887\" y=\"795\"/>\n      <point x=\"660\" y=\"795\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"795\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"167\" y=\"0\" type=\"line\"/>\n      <point x=\"521\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"0\"/>\n      <point x=\"1084\" y=\"145\"/>\n      <point x=\"1084\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"626\"/>\n      <point x=\"940\" y=\"747\"/>\n      <point x=\"695\" y=\"747\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"255\" y=\"747\" type=\"line\"/>\n      <point x=\"256\" y=\"705\" type=\"line\"/>\n      <point x=\"648\" y=\"705\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"705\"/>\n      <point x=\"988\" y=\"599\"/>\n      <point x=\"988\" y=\"418\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"202\"/>\n      <point x=\"835\" y=\"90\"/>\n      <point x=\"541\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"201\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"293\" y=\"708\" type=\"line\"/>\n      <point x=\"734\" y=\"708\" type=\"line\"/>\n      <point x=\"746\" y=\"786\" type=\"line\"/>\n      <point x=\"305\" y=\"786\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/B_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"B.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"206\" y=\"0\" type=\"line\"/>\n      <point x=\"536\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"694\" y=\"0\"/>\n      <point x=\"784\" y=\"62\"/>\n      <point x=\"784\" y=\"170\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"269\"/>\n      <point x=\"703\" y=\"326\"/>\n      <point x=\"562\" y=\"326\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"326\" type=\"line\"/>\n      <point x=\"209\" y=\"283\" type=\"line\"/>\n      <point x=\"539\" y=\"283\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"283\"/>\n      <point x=\"686\" y=\"246\"/>\n      <point x=\"686\" y=\"181\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"122\"/>\n      <point x=\"626\" y=\"88\"/>\n      <point x=\"521\" y=\"88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"307\" type=\"line\"/>\n      <point x=\"570\" y=\"307\" type=\"line\"/>\n      <point x=\"570\" y=\"346\" type=\"line\"/>\n      <point x=\"184\" y=\"346\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"206\" y=\"330\" type=\"line\"/>\n      <point x=\"532\" y=\"330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"330\"/>\n      <point x=\"734\" y=\"382\"/>\n      <point x=\"734\" y=\"473\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"579\"/>\n      <point x=\"651\" y=\"639\"/>\n      <point x=\"507\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"639\" type=\"line\"/>\n      <point x=\"209\" y=\"551\" type=\"line\"/>\n      <point x=\"509\" y=\"551\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"551\"/>\n      <point x=\"636\" y=\"520\"/>\n      <point x=\"636\" y=\"465\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"406\"/>\n      <point x=\"597\" y=\"372\"/>\n      <point x=\"530\" y=\"372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"372\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/B_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Be-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0411\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"93\" y=\"0\" type=\"line\"/>\n      <point x=\"444\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"0\"/>\n      <point x=\"1079\" y=\"186\"/>\n      <point x=\"1079\" y=\"487\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"724\"/>\n      <point x=\"894\" y=\"878\"/>\n      <point x=\"576\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"878\"/>\n      <point x=\"361\" y=\"859\"/>\n      <point x=\"270\" y=\"828\" type=\"curve\"/>\n      <point x=\"258\" y=\"736\" type=\"line\"/>\n      <point x=\"352\" y=\"770\"/>\n      <point x=\"472\" y=\"792\"/>\n      <point x=\"576\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"792\"/>\n      <point x=\"983\" y=\"675\"/>\n      <point x=\"983\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"232\"/>\n      <point x=\"797\" y=\"85\"/>\n      <point x=\"449\" y=\"86\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"109\" y=\"87\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"437\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"325\" y=\"1330\" type=\"line\"/>\n      <point x=\"1124\" y=\"1330\" type=\"line\"/>\n      <point x=\"1140\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/B_eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Beta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0392\"/>\n  <outline>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"C\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0043\"/>\n  <anchor x=\"586\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"857\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"666\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"-20\"/>\n      <point x=\"923\" y=\"0\"/>\n      <point x=\"1052\" y=\"42\" type=\"curve\"/>\n      <point x=\"1040\" y=\"130\" type=\"line\"/>\n      <point x=\"922\" y=\"90\"/>\n      <point x=\"807\" y=\"70\"/>\n      <point x=\"693\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"70\"/>\n      <point x=\"219\" y=\"254\"/>\n      <point x=\"219\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"219\" y=\"1022\"/>\n      <point x=\"483\" y=\"1350\"/>\n      <point x=\"880\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"999\" y=\"1350\"/>\n      <point x=\"1093\" y=\"1306\"/>\n      <point x=\"1180\" y=\"1210\" type=\"curve\"/>\n      <point x=\"1253\" y=\"1281\" type=\"line\"/>\n      <point x=\"1153\" y=\"1391\"/>\n      <point x=\"1040\" y=\"1440\"/>\n      <point x=\"889\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"1440\"/>\n      <point x=\"125\" y=\"1073\"/>\n      <point x=\"125\" y=\"523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"125\" y=\"197\"/>\n      <point x=\"341\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"C.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"-9\"/>\n      <point x=\"693\" y=\"1\"/>\n      <point x=\"773\" y=\"22\" type=\"curve\"/>\n      <point x=\"749\" y=\"109\" type=\"line\"/>\n      <point x=\"681\" y=\"90\"/>\n      <point x=\"608\" y=\"81\"/>\n      <point x=\"542\" y=\"81\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"81\"/>\n      <point x=\"172\" y=\"162\"/>\n      <point x=\"172\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"473\"/>\n      <point x=\"306\" y=\"558\"/>\n      <point x=\"511\" y=\"558\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"558\"/>\n      <point x=\"690\" y=\"538\"/>\n      <point x=\"741\" y=\"503\" type=\"curve\"/>\n      <point x=\"790\" y=\"587\" type=\"line\"/>\n      <point x=\"735\" y=\"626\"/>\n      <point x=\"641\" y=\"648\"/>\n      <point x=\"510\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"648\"/>\n      <point x=\"73\" y=\"528\"/>\n      <point x=\"73\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"73\" y=\"101\"/>\n      <point x=\"225\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"CR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"000D\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0106\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"acutecomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010C\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"caroncomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C7\"/>\n  <anchor x=\"518\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"cedillacomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ccircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0108\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010A\"/>\n  <outline>\n    <component base=\"C\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_he-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Che-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0427\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"673\" y=\"545\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"545\"/>\n      <point x=\"897\" y=\"567\"/>\n      <point x=\"973\" y=\"615\" type=\"curve\"/>\n      <point x=\"992\" y=\"722\" type=\"line\"/>\n      <point x=\"915\" y=\"670\"/>\n      <point x=\"803\" y=\"635\"/>\n      <point x=\"677\" y=\"635\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"635\"/>\n      <point x=\"326\" y=\"755\"/>\n      <point x=\"326\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"1071\"/>\n      <point x=\"343\" y=\"1200\"/>\n      <point x=\"373\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"397\" y=\"1420\" type=\"line\"/>\n      <point x=\"302\" y=\"1420\" type=\"line\"/>\n      <point x=\"281\" y=\"1337\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"245\" y=\"1195\"/>\n      <point x=\"230\" y=\"1054\"/>\n      <point x=\"230\" y=\"974\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"230\" y=\"704\"/>\n      <point x=\"382\" y=\"545\"/>\n    </contour>\n    <contour>\n      <point x=\"837\" y=\"0\" type=\"line\"/>\n      <point x=\"933\" y=\"0\" type=\"line\"/>\n      <point x=\"1183\" y=\"1420\" type=\"line\"/>\n      <point x=\"1087\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_hedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Chedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B6\"/>\n  <outline>\n    <contour>\n      <point x=\"917\" y=\"-324\" type=\"line\"/>\n      <point x=\"957\" y=\"-219\"/>\n      <point x=\"1004\" y=\"-37\"/>\n      <point x=\"1020\" y=\"90\" type=\"curve\"/>\n      <point x=\"927\" y=\"90\" type=\"line\"/>\n      <point x=\"917\" y=\"37\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"-44\"/>\n      <point x=\"865\" y=\"-191\"/>\n      <point x=\"824\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <component base=\"Che-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_hi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Chi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A7\"/>\n  <outline>\n    <component base=\"X\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Cstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023B\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"871\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"366\" y=\"-340\" type=\"line\"/>\n      <point x=\"1115\" y=\"1699\" type=\"line\"/>\n      <point x=\"1018\" y=\"1723\" type=\"line\"/>\n      <point x=\"279\" y=\"-320\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"D\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0044\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"631\" y=\"710\" name=\"center\"/>\n  <anchor x=\"717\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"129\" y=\"0\" type=\"line\"/>\n      <point x=\"299\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"0\"/>\n      <point x=\"1151\" y=\"316\"/>\n      <point x=\"1151\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1151\" y=\"1222\"/>\n      <point x=\"924\" y=\"1440\"/>\n      <point x=\"539\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"458\" y=\"1440\"/>\n      <point x=\"381\" y=\"1433\"/>\n      <point x=\"311\" y=\"1420\" type=\"curve\"/>\n      <point x=\"297\" y=\"1330\" type=\"line\"/>\n      <point x=\"366\" y=\"1343\"/>\n      <point x=\"441\" y=\"1350\"/>\n      <point x=\"514\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"854\" y=\"1350\"/>\n      <point x=\"1055\" y=\"1174\"/>\n      <point x=\"1055\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"381\"/>\n      <point x=\"777\" y=\"90\"/>\n      <point x=\"309\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"131\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"61\" y=\"0\" type=\"line\"/>\n      <point x=\"156\" y=\"0\" type=\"line\"/>\n      <point x=\"406\" y=\"1420\" type=\"line\"/>\n      <point x=\"311\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"D.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"206\" y=\"0\" type=\"line\"/>\n      <point x=\"403\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"0\"/>\n      <point x=\"798\" y=\"113\"/>\n      <point x=\"798\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"520\"/>\n      <point x=\"654\" y=\"639\"/>\n      <point x=\"403\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"639\" type=\"line\"/>\n      <point x=\"209\" y=\"551\" type=\"line\"/>\n      <point x=\"403\" y=\"551\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"551\"/>\n      <point x=\"700\" y=\"464\"/>\n      <point x=\"700\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"169\"/>\n      <point x=\"592\" y=\"88\"/>\n      <point x=\"403\" y=\"88\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"206\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_african.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0189\"/>\n  <outline>\n    <component base=\"Eth\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010E\"/>\n  <outline>\n    <component base=\"D\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_croat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dcroat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0110\"/>\n  <outline>\n    <component base=\"Eth\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"De-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0414\"/>\n  <note>\nuni0414\n</note>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"830\" y=\"0\" type=\"line\"/>\n      <point x=\"926\" y=\"0\" type=\"line\"/>\n      <point x=\"1177\" y=\"1420\" type=\"line\"/>\n      <point x=\"489\" y=\"1420\" type=\"line\"/>\n      <point x=\"473\" y=\"1330\" type=\"line\"/>\n      <point x=\"1065\" y=\"1330\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"5\" y=\"-302\" type=\"line\"/>\n      <point x=\"26\" y=\"-182\"/>\n      <point x=\"46\" y=\"-64\"/>\n      <point x=\"68\" y=\"56\" type=\"curve\"/>\n      <point x=\"-31\" y=\"0\" type=\"line\"/>\n      <point x=\"1042\" y=\"0\" type=\"line\"/>\n      <point x=\"960\" y=\"46\" type=\"line\"/>\n      <point x=\"953\" y=\"-46\"/>\n      <point x=\"909\" y=\"-192\"/>\n      <point x=\"868\" y=\"-303\" type=\"curve\"/>\n      <point x=\"963\" y=\"-324\" type=\"line\"/>\n      <point x=\"1010\" y=\"-192\"/>\n      <point x=\"1058\" y=\"-11\"/>\n      <point x=\"1065\" y=\"90\" type=\"curve\"/>\n      <point x=\"-22\" y=\"90\" type=\"line\"/>\n      <point x=\"-45\" y=\"-38\"/>\n      <point x=\"-68\" y=\"-166\"/>\n      <point x=\"-91\" y=\"-294\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"51\" type=\"line\"/>\n      <point x=\"295\" y=\"251\"/>\n      <point x=\"434\" y=\"682\"/>\n      <point x=\"512\" y=\"1061\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"1420\" type=\"line\"/>\n      <point x=\"489\" y=\"1420\" type=\"line\"/>\n      <point x=\"419\" y=\"1081\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"620\"/>\n      <point x=\"175\" y=\"210\"/>\n      <point x=\"58\" y=\"82\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_e-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"De-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"731\" y=\"1333\" type=\"line\"/>\n      <point x=\"747\" y=\"1333\" type=\"line\"/>\n      <point x=\"804\" y=\"1045\"/>\n      <point x=\"852\" y=\"530\"/>\n      <point x=\"852\" y=\"0\" type=\"curve\"/>\n      <point x=\"950\" y=\"0\" type=\"line\"/>\n      <point x=\"944\" y=\"559\"/>\n      <point x=\"894\" y=\"1101\"/>\n      <point x=\"828\" y=\"1421\" type=\"curve\"/>\n      <point x=\"678\" y=\"1421\" type=\"line\"/>\n      <point x=\"49\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"5\" y=\"-302\" type=\"line\"/>\n      <point x=\"26\" y=\"-182\"/>\n      <point x=\"46\" y=\"-64\"/>\n      <point x=\"68\" y=\"56\" type=\"curve\"/>\n      <point x=\"-31\" y=\"0\" type=\"line\"/>\n      <point x=\"1042\" y=\"0\" type=\"line\"/>\n      <point x=\"960\" y=\"46\" type=\"line\"/>\n      <point x=\"953\" y=\"-46\"/>\n      <point x=\"909\" y=\"-192\"/>\n      <point x=\"868\" y=\"-303\" type=\"curve\"/>\n      <point x=\"963\" y=\"-324\" type=\"line\"/>\n      <point x=\"1010\" y=\"-192\"/>\n      <point x=\"1058\" y=\"-11\"/>\n      <point x=\"1065\" y=\"90\" type=\"curve\"/>\n      <point x=\"-22\" y=\"90\" type=\"line\"/>\n      <point x=\"-45\" y=\"-38\"/>\n      <point x=\"-68\" y=\"-166\"/>\n      <point x=\"-91\" y=\"-294\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_elta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Delta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0394\"/>\n  <anchor x=\"534\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-24\" y=\"0\" type=\"line\"/>\n      <point x=\"86\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"1333\" type=\"line\"/>\n      <point x=\"750\" y=\"1333\" type=\"line\"/>\n      <point x=\"822\" y=\"1045\"/>\n      <point x=\"879\" y=\"626\"/>\n      <point x=\"932\" y=\"0\" type=\"curve\"/>\n      <point x=\"1038\" y=\"0\" type=\"line\"/>\n      <point x=\"976\" y=\"655\"/>\n      <point x=\"910\" y=\"1102\"/>\n      <point x=\"829\" y=\"1421\" type=\"curve\"/>\n      <point x=\"681\" y=\"1421\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"50\" y=\"0\" type=\"line\"/>\n      <point x=\"940\" y=\"0\" type=\"line\"/>\n      <point x=\"957\" y=\"90\" type=\"line\"/>\n      <point x=\"67\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0402\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"542\" y=\"-20\" type=\"line\"/>\n      <point x=\"548\" y=\"-20\"/>\n      <point x=\"553\" y=\"-20\"/>\n      <point x=\"559\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"836\" y=\"-20\"/>\n      <point x=\"1041\" y=\"195\"/>\n      <point x=\"1041\" y=\"502\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"734\"/>\n      <point x=\"888\" y=\"878\"/>\n      <point x=\"669\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"878\"/>\n      <point x=\"473\" y=\"841\"/>\n      <point x=\"409\" y=\"786\" type=\"curve\"/>\n      <point x=\"369\" y=\"654\" type=\"line\"/>\n      <point x=\"473\" y=\"744\"/>\n      <point x=\"556\" y=\"788\"/>\n      <point x=\"669\" y=\"788\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"788\"/>\n      <point x=\"945\" y=\"684\"/>\n      <point x=\"945\" y=\"502\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"945\" y=\"245\"/>\n      <point x=\"780\" y=\"70\"/>\n      <point x=\"557\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"70\"/>\n      <point x=\"548\" y=\"70\"/>\n      <point x=\"544\" y=\"70\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"202\" y=\"0\" type=\"line\"/>\n      <point x=\"298\" y=\"0\" type=\"line\"/>\n      <point x=\"548\" y=\"1420\" type=\"line\"/>\n      <point x=\"452\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"185\" y=\"1330\" type=\"line\"/>\n      <point x=\"957\" y=\"1330\" type=\"line\"/>\n      <point x=\"973\" y=\"1420\" type=\"line\"/>\n      <point x=\"201\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_ze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0405\"/>\n  <outline>\n    <component base=\"S\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_zhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Dzhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"846\" y=\"0\" type=\"line\"/>\n      <point x=\"942\" y=\"0\" type=\"line\"/>\n      <point x=\"1193\" y=\"1420\" type=\"line\"/>\n      <point x=\"1097\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"478\" y=\"-324\" type=\"line\"/>\n      <point x=\"522\" y=\"-209\"/>\n      <point x=\"563\" y=\"-58\"/>\n      <point x=\"584\" y=\"90\" type=\"curve\"/>\n      <point x=\"474\" y=\"0\" type=\"line\"/>\n      <point x=\"458\" y=\"-89\"/>\n      <point x=\"421\" y=\"-209\"/>\n      <point x=\"384\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"71\" y=\"0\" type=\"line\"/>\n      <point x=\"942\" y=\"0\" type=\"line\"/>\n      <point x=\"958\" y=\"90\" type=\"line\"/>\n      <point x=\"87\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"71\" y=\"0\" type=\"line\"/>\n      <point x=\"167\" y=\"0\" type=\"line\"/>\n      <point x=\"418\" y=\"1420\" type=\"line\"/>\n      <point x=\"322\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0404\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"658\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"-20\"/>\n      <point x=\"915\" y=\"0\"/>\n      <point x=\"1044\" y=\"42\" type=\"curve\"/>\n      <point x=\"1032\" y=\"130\" type=\"line\"/>\n      <point x=\"914\" y=\"90\"/>\n      <point x=\"799\" y=\"70\"/>\n      <point x=\"685\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"70\"/>\n      <point x=\"211\" y=\"254\"/>\n      <point x=\"211\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"211\" y=\"1022\"/>\n      <point x=\"475\" y=\"1350\"/>\n      <point x=\"872\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"991\" y=\"1350\"/>\n      <point x=\"1085\" y=\"1306\"/>\n      <point x=\"1172\" y=\"1210\" type=\"curve\"/>\n      <point x=\"1245\" y=\"1281\" type=\"line\"/>\n      <point x=\"1145\" y=\"1391\"/>\n      <point x=\"1032\" y=\"1440\"/>\n      <point x=\"881\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"1440\"/>\n      <point x=\"117\" y=\"1073\"/>\n      <point x=\"117\" y=\"523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"117\" y=\"197\"/>\n      <point x=\"333\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"146\" y=\"682\" type=\"line\"/>\n      <point x=\"858\" y=\"682\" type=\"line\"/>\n      <point x=\"874\" y=\"772\" type=\"line\"/>\n      <point x=\"162\" y=\"772\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0045\"/>\n  <guideline x=\"897\" y=\"-480\" angle=\"80\"/>\n  <guideline x=\"718\" y=\"-480\" angle=\"80\"/>\n  <anchor x=\"526\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"942\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"777\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"182\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"437\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"982\" y=\"0\" type=\"line\"/>\n      <point x=\"997\" y=\"90\" type=\"line\"/>\n      <point x=\"107\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"216\" y=\"666\" type=\"line\"/>\n      <point x=\"920\" y=\"666\" type=\"line\"/>\n      <point x=\"936\" y=\"756\" type=\"line\"/>\n      <point x=\"233\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"325\" y=\"1330\" type=\"line\"/>\n      <point x=\"1216\" y=\"1330\" type=\"line\"/>\n      <point x=\"1232\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"E.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"760\" y=\"0\" type=\"line\"/>\n      <point x=\"760\" y=\"88\" type=\"line\"/>\n      <point x=\"122\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"276\" type=\"line\"/>\n      <point x=\"634\" y=\"276\" type=\"line\"/>\n      <point x=\"634\" y=\"364\" type=\"line\"/>\n      <point x=\"122\" y=\"364\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"551\" type=\"line\"/>\n      <point x=\"760\" y=\"551\" type=\"line\"/>\n      <point x=\"760\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C9\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"acutecomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ebreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0114\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"brevecomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011A\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"caroncomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CA\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBE\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"20\"/>\n    <component base=\"acutecomb.case\" xOffset=\"357\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC6\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"19\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC0\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"20\"/>\n    <component base=\"gravecomb.case\" xOffset=\"357\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC2\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"20\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"357\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ecircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC4\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"20\"/>\n    <component base=\"tildecomb.case\" xOffset=\"87\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CB\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0116\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Edotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB8\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"19\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_f-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ef-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0424\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"456\" y=\"-20\" type=\"line\"/>\n      <point x=\"552\" y=\"-20\" type=\"line\"/>\n      <point x=\"581\" y=\"148\" type=\"line\"/>\n      <point x=\"585\" y=\"171\" type=\"line\"/>\n      <point x=\"779\" y=\"1269\" type=\"line\"/>\n      <point x=\"786\" y=\"1308\" type=\"line\"/>\n      <point x=\"812\" y=\"1460\" type=\"line\"/>\n      <point x=\"716\" y=\"1460\" type=\"line\"/>\n      <point x=\"690\" y=\"1308\" type=\"line\"/>\n      <point x=\"683\" y=\"1269\" type=\"line\"/>\n      <point x=\"489\" y=\"171\" type=\"line\"/>\n      <point x=\"485\" y=\"148\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"550\" y=\"120\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"120\"/>\n      <point x=\"1155\" y=\"468\"/>\n      <point x=\"1155\" y=\"887\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1155\" y=\"1172\"/>\n      <point x=\"991\" y=\"1321\"/>\n      <point x=\"717\" y=\"1321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"1321\"/>\n      <point x=\"112\" y=\"974\"/>\n      <point x=\"112\" y=\"555\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"112\" y=\"270\"/>\n      <point x=\"275\" y=\"120\"/>\n    </contour>\n    <contour>\n      <point x=\"556\" y=\"210\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"330\" y=\"210\"/>\n      <point x=\"208\" y=\"327\"/>\n      <point x=\"208\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"208\" y=\"917\"/>\n      <point x=\"385\" y=\"1231\"/>\n      <point x=\"711\" y=\"1231\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"1231\"/>\n      <point x=\"1059\" y=\"1115\"/>\n      <point x=\"1059\" y=\"882\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1059\" y=\"525\"/>\n      <point x=\"882\" y=\"210\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_f-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ef-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"528\" y=\"52\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"52\"/>\n      <point x=\"1162\" y=\"494\"/>\n      <point x=\"1162\" y=\"946\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1162\" y=\"1245\"/>\n      <point x=\"1009\" y=\"1403\"/>\n      <point x=\"741\" y=\"1403\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"366\" y=\"1403\"/>\n      <point x=\"123\" y=\"1040\"/>\n      <point x=\"107\" y=\"538\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"108\" y=\"231\"/>\n      <point x=\"231\" y=\"52\"/>\n    </contour>\n    <contour>\n      <point x=\"444\" y=\"-80\" type=\"line\"/>\n      <point x=\"541\" y=\"-80\" type=\"line\"/>\n      <point x=\"570\" y=\"82\" type=\"line\"/>\n      <point x=\"575\" y=\"105\" type=\"line\"/>\n      <point x=\"792\" y=\"1347\" type=\"line\"/>\n      <point x=\"800\" y=\"1390\" type=\"line\"/>\n      <point x=\"820\" y=\"1500\" type=\"line\"/>\n      <point x=\"723\" y=\"1500\" type=\"line\"/>\n      <point x=\"704\" y=\"1390\" type=\"line\"/>\n      <point x=\"696\" y=\"1347\" type=\"line\"/>\n      <point x=\"479\" y=\"105\" type=\"line\"/>\n      <point x=\"474\" y=\"82\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"536\" y=\"142\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"142\"/>\n      <point x=\"202\" y=\"294\"/>\n      <point x=\"203\" y=\"545\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"220\" y=\"987\"/>\n      <point x=\"419\" y=\"1313\"/>\n      <point x=\"733\" y=\"1313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"953\" y=\"1313\"/>\n      <point x=\"1066\" y=\"1182\"/>\n      <point x=\"1066\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1066\" y=\"552\"/>\n      <point x=\"889\" y=\"142\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Egrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00C8\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"gravecomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBA\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_l-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"El-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041B\"/>\n  <note>\nuni041B\n</note>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"32\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"-20\"/>\n      <point x=\"449\" y=\"471\"/>\n      <point x=\"527\" y=\"877\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"1155\"/>\n      <point x=\"601\" y=\"1281\"/>\n      <point x=\"624\" y=\"1407\" type=\"curve\"/>\n      <point x=\"523\" y=\"1330\" type=\"line\"/>\n      <point x=\"1081\" y=\"1330\" type=\"line\"/>\n      <point x=\"847\" y=\"0\" type=\"line\"/>\n      <point x=\"943\" y=\"0\" type=\"line\"/>\n      <point x=\"1193\" y=\"1420\" type=\"line\"/>\n      <point x=\"530\" y=\"1420\" type=\"line\"/>\n      <point x=\"507\" y=\"1293\"/>\n      <point x=\"486\" y=\"1165\"/>\n      <point x=\"431\" y=\"886\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"359\" y=\"518\"/>\n      <point x=\"263\" y=\"70\"/>\n      <point x=\"29\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"13\" y=\"70\"/>\n      <point x=\"-1\" y=\"71\"/>\n      <point x=\"-16\" y=\"75\" type=\"curve\"/>\n      <point x=\"-35\" y=\"-14\" type=\"line\"/>\n      <point x=\"-12\" y=\"-18\"/>\n      <point x=\"10\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_l-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"El-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-24\" y=\"0\" type=\"line\"/>\n      <point x=\"86\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"1333\" type=\"line\"/>\n      <point x=\"750\" y=\"1333\" type=\"line\"/>\n      <point x=\"822\" y=\"1045\"/>\n      <point x=\"879\" y=\"626\"/>\n      <point x=\"932\" y=\"0\" type=\"curve\"/>\n      <point x=\"1038\" y=\"0\" type=\"line\"/>\n      <point x=\"976\" y=\"655\"/>\n      <point x=\"910\" y=\"1102\"/>\n      <point x=\"829\" y=\"1421\" type=\"curve\"/>\n      <point x=\"681\" y=\"1421\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_m-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Em-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041C\"/>\n  <outline>\n    <component base=\"M\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Emacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0112\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"macroncomb.case\" xOffset=\"22\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_n-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"En-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041D\"/>\n  <outline>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_ndescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Endescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04A2\"/>\n  <outline>\n    <contour>\n      <point x=\"938\" y=\"-324\" type=\"line\"/>\n      <point x=\"978\" y=\"-219\"/>\n      <point x=\"1025\" y=\"-37\"/>\n      <point x=\"1041\" y=\"90\" type=\"curve\"/>\n      <point x=\"948\" y=\"90\" type=\"line\"/>\n      <point x=\"938\" y=\"37\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"923\" y=\"-44\"/>\n      <point x=\"886\" y=\"-191\"/>\n      <point x=\"844\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <component base=\"En-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_ng.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eng\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014A\"/>\n  <guideline x=\"663\" y=\"123\" angle=\"90\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"151\" type=\"line\"/>\n      <point x=\"833\" y=\"-38\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"-224\"/>\n      <point x=\"676\" y=\"-327\"/>\n      <point x=\"436\" y=\"-367\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-373\" type=\"line\"/>\n      <point x=\"405\" y=\"-465\" type=\"line\"/>\n      <point x=\"420\" y=\"-463\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"-422\"/>\n      <point x=\"887\" y=\"-279\"/>\n      <point x=\"934\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"151\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0118\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"796\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"-423\"/>\n      <point x=\"881\" y=\"-417\"/>\n      <point x=\"910\" y=\"-405\" type=\"curve\"/>\n      <point x=\"897\" y=\"-322\" type=\"line\"/>\n      <point x=\"877\" y=\"-329\"/>\n      <point x=\"846\" y=\"-336\"/>\n      <point x=\"812\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"-336\"/>\n      <point x=\"693\" y=\"-301\"/>\n      <point x=\"693\" y=\"-234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"-94\"/>\n      <point x=\"846\" y=\"0\"/>\n      <point x=\"981\" y=\"0\" type=\"curve\"/>\n      <point x=\"896\" y=\"34\" type=\"line\"/>\n      <point x=\"776\" y=\"52\" type=\"line\"/>\n      <point x=\"776\" y=\"-6\" type=\"line\"/>\n      <point x=\"666\" y=\"-63\"/>\n      <point x=\"599\" y=\"-155\"/>\n      <point x=\"599\" y=\"-254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"-364\"/>\n      <point x=\"667\" y=\"-423\"/>\n    </contour>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_open.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0190\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"841\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"539\" y=\"1440\"/>\n      <point x=\"301\" y=\"1304\"/>\n      <point x=\"301\" y=\"1041\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"301\" y=\"894\"/>\n      <point x=\"384\" y=\"783\"/>\n      <point x=\"586\" y=\"758\" type=\"curve\"/>\n      <point x=\"580\" y=\"819\" type=\"line\"/>\n      <point x=\"560\" y=\"702\" type=\"line\"/>\n      <point x=\"585\" y=\"751\" type=\"line\"/>\n      <point x=\"303\" y=\"745\"/>\n      <point x=\"115\" y=\"576\"/>\n      <point x=\"115\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"115\" y=\"108\"/>\n      <point x=\"281\" y=\"-20\"/>\n      <point x=\"577\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"-20\"/>\n      <point x=\"861\" y=\"-4\"/>\n      <point x=\"991\" y=\"48\" type=\"curve\"/>\n      <point x=\"983\" y=\"137\" type=\"line\"/>\n      <point x=\"830\" y=\"84\"/>\n      <point x=\"750\" y=\"70\"/>\n      <point x=\"588\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"70\"/>\n      <point x=\"214\" y=\"171\"/>\n      <point x=\"214\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"214\" y=\"559\"/>\n      <point x=\"407\" y=\"702\"/>\n      <point x=\"697\" y=\"702\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"702\" type=\"line\"/>\n      <point x=\"904\" y=\"790\" type=\"line\"/>\n      <point x=\"546\" y=\"803\"/>\n      <point x=\"396\" y=\"880\"/>\n      <point x=\"396\" y=\"1045\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"1245\"/>\n      <point x=\"585\" y=\"1350\"/>\n      <point x=\"826\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"974\" y=\"1350\"/>\n      <point x=\"1096\" y=\"1310\"/>\n      <point x=\"1166\" y=\"1214\" type=\"curve\"/>\n      <point x=\"1240\" y=\"1286\" type=\"line\"/>\n      <point x=\"1176\" y=\"1374\"/>\n      <point x=\"1033\" y=\"1440\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_psilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Epsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0395\"/>\n  <outline>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_psilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Epsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0388\"/>\n  <anchor x=\"634\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"884\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"265\" y=\"0\" type=\"line\"/>\n      <point x=\"361\" y=\"0\" type=\"line\"/>\n      <point x=\"611\" y=\"1420\" type=\"line\"/>\n      <point x=\"515\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"265\" y=\"0\" type=\"line\"/>\n      <point x=\"982\" y=\"0\" type=\"line\"/>\n      <point x=\"997\" y=\"90\" type=\"line\"/>\n      <point x=\"281\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"390\" y=\"666\" type=\"line\"/>\n      <point x=\"920\" y=\"666\" type=\"line\"/>\n      <point x=\"936\" y=\"756\" type=\"line\"/>\n      <point x=\"407\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"499\" y=\"1330\" type=\"line\"/>\n      <point x=\"1216\" y=\"1330\" type=\"line\"/>\n      <point x=\"1232\" y=\"1420\" type=\"line\"/>\n      <point x=\"515\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"112\" y=\"1040\" type=\"line\"/>\n      <point x=\"206\" y=\"1040\" type=\"line\"/>\n      <point x=\"385\" y=\"1420\" type=\"line\"/>\n      <point x=\"276\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_r-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Er-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0420\"/>\n  <outline>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_reversed-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ereversed-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"400\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"829\" y=\"-20\"/>\n      <point x=\"1135\" y=\"373\"/>\n      <point x=\"1135\" y=\"851\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1135\" y=\"1252\"/>\n      <point x=\"919\" y=\"1440\"/>\n      <point x=\"597\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"482\" y=\"1440\"/>\n      <point x=\"329\" y=\"1408\"/>\n      <point x=\"208\" y=\"1348\" type=\"curve\"/>\n      <point x=\"224\" y=\"1262\" type=\"line\"/>\n      <point x=\"341\" y=\"1321\"/>\n      <point x=\"471\" y=\"1350\"/>\n      <point x=\"574\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"851\" y=\"1350\"/>\n      <point x=\"1039\" y=\"1193\"/>\n      <point x=\"1039\" y=\"842\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1039\" y=\"428\"/>\n      <point x=\"777\" y=\"70\"/>\n      <point x=\"413\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"70\"/>\n      <point x=\"177\" y=\"112\"/>\n      <point x=\"84\" y=\"210\" type=\"curve\"/>\n      <point x=\"11\" y=\"139\" type=\"line\"/>\n      <point x=\"111\" y=\"33\"/>\n      <point x=\"239\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"398\" y=\"678\" type=\"line\"/>\n      <point x=\"1074\" y=\"678\" type=\"line\"/>\n      <point x=\"1090\" y=\"768\" type=\"line\"/>\n      <point x=\"414\" y=\"768\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_reversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ereversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"018E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1364\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"826\" y=\"0\" type=\"line\"/>\n      <point x=\"922\" y=\"0\" type=\"line\"/>\n      <point x=\"1172\" y=\"1420\" type=\"line\"/>\n      <point x=\"1076\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"31\" y=\"0\" type=\"line\"/>\n      <point x=\"922\" y=\"0\" type=\"line\"/>\n      <point x=\"938\" y=\"90\" type=\"line\"/>\n      <point x=\"47\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"327\" y=\"664\" type=\"line\"/>\n      <point x=\"1030\" y=\"664\" type=\"line\"/>\n      <point x=\"1047\" y=\"754\" type=\"line\"/>\n      <point x=\"343\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"266\" y=\"1330\" type=\"line\"/>\n      <point x=\"1156\" y=\"1330\" type=\"line\"/>\n      <point x=\"1172\" y=\"1420\" type=\"line\"/>\n      <point x=\"281\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_s-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Es-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0421\"/>\n  <outline>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_sh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Esh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A9\"/>\n  <outline>\n    <component base=\"Sigma\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_ta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0397\"/>\n  <outline>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_tatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Etatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0389\"/>\n  <anchor x=\"622\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"872\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"847\" y=\"0\" type=\"line\"/>\n      <point x=\"943\" y=\"0\" type=\"line\"/>\n      <point x=\"1193\" y=\"1420\" type=\"line\"/>\n      <point x=\"1097\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"246\" y=\"0\" type=\"line\"/>\n      <point x=\"342\" y=\"0\" type=\"line\"/>\n      <point x=\"592\" y=\"1420\" type=\"line\"/>\n      <point x=\"496\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"405\" y=\"662\" type=\"line\"/>\n      <point x=\"1013\" y=\"662\" type=\"line\"/>\n      <point x=\"1033\" y=\"752\" type=\"line\"/>\n      <point x=\"425\" y=\"752\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"113\" y=\"1040\" type=\"line\"/>\n      <point x=\"207\" y=\"1040\" type=\"line\"/>\n      <point x=\"386\" y=\"1420\" type=\"line\"/>\n      <point x=\"277\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_th.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Eth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D0\"/>\n  <outline>\n    <contour>\n      <point x=\"35\" y=\"662\" type=\"line\"/>\n      <point x=\"674\" y=\"662\" type=\"line\"/>\n      <point x=\"690\" y=\"752\" type=\"line\"/>\n      <point x=\"51\" y=\"752\" type=\"line\"/>\n    </contour>\n    <component base=\"D\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Etilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBC\"/>\n  <outline>\n    <component base=\"E\"/>\n    <component base=\"tildecomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_zh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ezh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B7\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"469\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"-20\"/>\n      <point x=\"1039\" y=\"147\"/>\n      <point x=\"1039\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1039\" y=\"669\"/>\n      <point x=\"854\" y=\"787\"/>\n      <point x=\"480\" y=\"793\" type=\"curve\"/>\n      <point x=\"483\" y=\"752\" type=\"line\"/>\n      <point x=\"1131\" y=\"1317\" type=\"line\"/>\n      <point x=\"1115\" y=\"1420\" type=\"line\"/>\n      <point x=\"344\" y=\"1420\" type=\"line\"/>\n      <point x=\"328\" y=\"1330\" type=\"line\"/>\n      <point x=\"1061\" y=\"1330\" type=\"line\"/>\n      <point x=\"1083\" y=\"1391\" type=\"line\"/>\n      <point x=\"364\" y=\"765\" type=\"line\"/>\n      <point x=\"373\" y=\"703\" type=\"line\"/>\n      <point x=\"465\" y=\"703\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"703\"/>\n      <point x=\"942\" y=\"614\"/>\n      <point x=\"942\" y=\"434\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"204\"/>\n      <point x=\"749\" y=\"70\"/>\n      <point x=\"490\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"334\" y=\"70\"/>\n      <point x=\"204\" y=\"121\"/>\n      <point x=\"110\" y=\"218\" type=\"curve\"/>\n      <point x=\"44\" y=\"148\" type=\"line\"/>\n      <point x=\"156\" y=\"38\"/>\n      <point x=\"302\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/F_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"F\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0046\"/>\n  <guideline x=\"941\" y=\"-480\" angle=\"80\"/>\n  <guideline x=\"761\" y=\"-480\" angle=\"80\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"207\" y=\"0\" type=\"line\"/>\n      <point x=\"457\" y=\"1420\" type=\"line\"/>\n      <point x=\"361\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"253\" y=\"606\" type=\"line\"/>\n      <point x=\"952\" y=\"606\" type=\"line\"/>\n      <point x=\"968\" y=\"696\" type=\"line\"/>\n      <point x=\"270\" y=\"696\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"345\" y=\"1330\" type=\"line\"/>\n      <point x=\"1260\" y=\"1330\" type=\"line\"/>\n      <point x=\"1276\" y=\"1420\" type=\"line\"/>\n      <point x=\"361\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/F_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"F.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"244\" type=\"line\"/>\n      <point x=\"651\" y=\"244\" type=\"line\"/>\n      <point x=\"651\" y=\"332\" type=\"line\"/>\n      <point x=\"122\" y=\"332\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"551\" type=\"line\"/>\n      <point x=\"760\" y=\"551\" type=\"line\"/>\n      <point x=\"760\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/F_hook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Fhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0191\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"138\" y=\"151\" type=\"line\"/>\n      <point x=\"105\" y=\"-33\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"68\" y=\"-238\"/>\n      <point x=\"1\" y=\"-342\"/>\n      <point x=\"-182\" y=\"-376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-225\" y=\"-384\" type=\"line\"/>\n      <point x=\"-219\" y=\"-476\" type=\"line\"/>\n      <point x=\"-188\" y=\"-472\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"61\" y=\"-440\"/>\n      <point x=\"154\" y=\"-308\"/>\n      <point x=\"206\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"233\" y=\"151\" type=\"line\"/>\n    </contour>\n    <component base=\"F\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"G\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0047\"/>\n  <guideline x=\"427\" y=\"-460\" angle=\"80\"/>\n  <anchor x=\"586\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"857\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"611\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"-20\"/>\n      <point x=\"945\" y=\"22\"/>\n      <point x=\"1003\" y=\"40\" type=\"curve\"/>\n      <point x=\"976\" y=\"130\" type=\"line\"/>\n      <point x=\"905\" y=\"108\"/>\n      <point x=\"793\" y=\"70\"/>\n      <point x=\"657\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"70\"/>\n      <point x=\"195\" y=\"226\"/>\n      <point x=\"195\" y=\"539\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"195\" y=\"1014\"/>\n      <point x=\"474\" y=\"1350\"/>\n      <point x=\"840\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"1350\"/>\n      <point x=\"1076\" y=\"1309\"/>\n      <point x=\"1164\" y=\"1207\" type=\"curve\"/>\n      <point x=\"1239\" y=\"1272\" type=\"line\"/>\n      <point x=\"1158\" y=\"1373\"/>\n      <point x=\"1019\" y=\"1440\"/>\n      <point x=\"860\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"1440\"/>\n      <point x=\"99\" y=\"1050\"/>\n      <point x=\"99\" y=\"523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"182\"/>\n      <point x=\"289\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"907\" y=\"40\" type=\"line\"/>\n      <point x=\"1003\" y=\"40\" type=\"line\"/>\n      <point x=\"1112\" y=\"660\" type=\"line\"/>\n      <point x=\"1016\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"620\" y=\"570\" type=\"line\"/>\n      <point x=\"1073\" y=\"570\" type=\"line\"/>\n      <point x=\"1106\" y=\"660\" type=\"line\"/>\n      <point x=\"635\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"G.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"-9\"/>\n      <point x=\"731\" y=\"10\"/>\n      <point x=\"770\" y=\"18\" type=\"curve\"/>\n      <point x=\"724\" y=\"100\" type=\"line\"/>\n      <point x=\"682\" y=\"92\"/>\n      <point x=\"613\" y=\"77\"/>\n      <point x=\"525\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"77\"/>\n      <point x=\"172\" y=\"162\"/>\n      <point x=\"172\" y=\"325\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"473\"/>\n      <point x=\"297\" y=\"558\"/>\n      <point x=\"511\" y=\"558\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"558\"/>\n      <point x=\"687\" y=\"537\"/>\n      <point x=\"741\" y=\"503\" type=\"curve\"/>\n      <point x=\"789\" y=\"586\" type=\"line\"/>\n      <point x=\"728\" y=\"625\"/>\n      <point x=\"634\" y=\"648\"/>\n      <point x=\"503\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"230\" y=\"648\"/>\n      <point x=\"73\" y=\"528\"/>\n      <point x=\"73\" y=\"320\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"73\" y=\"103\"/>\n      <point x=\"226\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"678\" y=\"18\" type=\"line\"/>\n      <point x=\"770\" y=\"18\" type=\"line\"/>\n      <point x=\"770\" y=\"321\" type=\"line\"/>\n      <point x=\"678\" y=\"321\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"444\" y=\"233\" type=\"line\"/>\n      <point x=\"766\" y=\"233\" type=\"line\"/>\n      <point x=\"766\" y=\"321\" type=\"line\"/>\n      <point x=\"444\" y=\"321\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_amma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gamma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0393\"/>\n  <outline>\n    <component base=\"Ge-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_ammaafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gammaafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0194\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"382\" y=\"-462\" type=\"line\"/>\n      <point x=\"563\" y=\"-462\"/>\n      <point x=\"684\" y=\"-368\"/>\n      <point x=\"684\" y=\"-227\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"684\" y=\"-147\"/>\n      <point x=\"641\" y=\"-65\"/>\n      <point x=\"546\" y=\"31\" type=\"curve\"/>\n      <point x=\"452\" y=\"26\" type=\"line\"/>\n      <point x=\"551\" y=\"-102\"/>\n      <point x=\"586\" y=\"-167\"/>\n      <point x=\"586\" y=\"-222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"-312\"/>\n      <point x=\"509\" y=\"-372\"/>\n      <point x=\"394\" y=\"-372\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"382\" y=\"-462\" type=\"curve\"/>\n      <point x=\"394\" y=\"-372\" type=\"line\"/>\n      <point x=\"316\" y=\"-372\"/>\n      <point x=\"264\" y=\"-331\"/>\n      <point x=\"264\" y=\"-270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"-197\"/>\n      <point x=\"310\" y=\"-137\"/>\n      <point x=\"490\" y=\"16\" type=\"curve\"/>\n      <point x=\"399\" y=\"31\" type=\"line\"/>\n      <point x=\"263\" y=\"-54\"/>\n      <point x=\"166\" y=\"-151\"/>\n      <point x=\"166\" y=\"-282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"-390\"/>\n      <point x=\"252\" y=\"-462\"/>\n    </contour>\n    <contour>\n      <point x=\"397\" y=\"0\" type=\"line\"/>\n      <point x=\"478\" y=\"23\" type=\"line\"/>\n      <point x=\"549\" y=\"0\" type=\"line\"/>\n      <point x=\"887\" y=\"388\"/>\n      <point x=\"1127\" y=\"866\"/>\n      <point x=\"1288\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1192\" y=\"1420\" type=\"line\"/>\n      <point x=\"1020\" y=\"876\"/>\n      <point x=\"795\" y=\"433\"/>\n      <point x=\"502\" y=\"77\" type=\"curve\"/>\n      <point x=\"484\" y=\"77\" type=\"line\"/>\n      <point x=\"328\" y=\"1432\" type=\"line\"/>\n      <point x=\"226\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gbreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011E\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"brevecomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E6\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"caroncomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011C\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0122\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0120\"/>\n  <outline>\n    <component base=\"G\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"100\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ge-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0413\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"207\" y=\"0\" type=\"line\"/>\n      <point x=\"457\" y=\"1420\" type=\"line\"/>\n      <point x=\"361\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"346\" y=\"1330\" type=\"line\"/>\n      <point x=\"1207\" y=\"1330\" type=\"line\"/>\n      <point x=\"1222\" y=\"1420\" type=\"line\"/>\n      <point x=\"361\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_ermandbls.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Germandbls\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E9E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"73\" y=\"0\" type=\"line\"/>\n      <point x=\"169\" y=\"0\" type=\"line\"/>\n      <point x=\"333\" y=\"930\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"384\" y=\"1218\"/>\n      <point x=\"531\" y=\"1350\"/>\n      <point x=\"800\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"942\" y=\"1350\"/>\n      <point x=\"1052\" y=\"1302\"/>\n      <point x=\"1123\" y=\"1210\" type=\"curve\"/>\n      <point x=\"1209\" y=\"1270\" type=\"line\"/>\n      <point x=\"1118\" y=\"1382\"/>\n      <point x=\"984\" y=\"1440\"/>\n      <point x=\"817\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"481\" y=\"1440\"/>\n      <point x=\"299\" y=\"1280\"/>\n      <point x=\"237\" y=\"930\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"564\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"-20\"/>\n      <point x=\"1118\" y=\"168\"/>\n      <point x=\"1118\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"649\"/>\n      <point x=\"1025\" y=\"779\"/>\n      <point x=\"841\" y=\"846\" type=\"curve\"/>\n      <point x=\"842\" y=\"817\" type=\"line\"/>\n      <point x=\"1210\" y=\"1270\" type=\"line\"/>\n      <point x=\"1115\" y=\"1300\" type=\"line\"/>\n      <point x=\"705\" y=\"794\" type=\"line\"/>\n      <point x=\"793\" y=\"764\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"714\"/>\n      <point x=\"1021\" y=\"611\"/>\n      <point x=\"1021\" y=\"478\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"222\"/>\n      <point x=\"863\" y=\"70\"/>\n      <point x=\"596\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"530\" y=\"70\"/>\n      <point x=\"457\" y=\"78\"/>\n      <point x=\"396\" y=\"91\" type=\"curve\"/>\n      <point x=\"366\" y=\"3\" type=\"line\"/>\n      <point x=\"414\" y=\"-11\"/>\n      <point x=\"486\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_hestroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ghestroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0492\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"247\" y=\"0\" type=\"line\"/>\n      <point x=\"497\" y=\"1420\" type=\"line\"/>\n      <point x=\"401\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"77\" y=\"635\" type=\"line\"/>\n      <point x=\"765\" y=\"635\" type=\"line\"/>\n      <point x=\"781\" y=\"725\" type=\"line\"/>\n      <point x=\"93\" y=\"725\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"386\" y=\"1330\" type=\"line\"/>\n      <point x=\"1207\" y=\"1330\" type=\"line\"/>\n      <point x=\"1222\" y=\"1420\" type=\"line\"/>\n      <point x=\"401\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0,0.67,0.91,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_heupturn-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gheupturn-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0490\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"87\" y=\"0\" type=\"line\"/>\n      <point x=\"183\" y=\"0\" type=\"line\"/>\n      <point x=\"433\" y=\"1420\" type=\"line\"/>\n      <point x=\"337\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"322\" y=\"1330\" type=\"line\"/>\n      <point x=\"1227\" y=\"1330\" type=\"line\"/>\n      <point x=\"1242\" y=\"1420\" type=\"line\"/>\n      <point x=\"337\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1131\" y=\"1330\" type=\"line\"/>\n      <point x=\"1227\" y=\"1330\" type=\"line\"/>\n      <point x=\"1297\" y=\"1730\" type=\"line\"/>\n      <point x=\"1201\" y=\"1730\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0403\"/>\n  <outline>\n    <component base=\"Ge-cy\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gsmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0262\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"746\" y=\"1079\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"607\" y=\"-15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"-15\"/>\n      <point x=\"932\" y=\"17\"/>\n      <point x=\"991\" y=\"30\" type=\"curve\"/>\n      <point x=\"946\" y=\"115\" type=\"line\"/>\n      <point x=\"876\" y=\"101\"/>\n      <point x=\"765\" y=\"77\"/>\n      <point x=\"627\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"347\" y=\"77\"/>\n      <point x=\"194\" y=\"204\"/>\n      <point x=\"194\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"194\" y=\"776\"/>\n      <point x=\"411\" y=\"1002\"/>\n      <point x=\"751\" y=\"1002\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"1002\"/>\n      <point x=\"1032\" y=\"961\"/>\n      <point x=\"1110\" y=\"890\" type=\"curve\"/>\n      <point x=\"1190\" y=\"973\" type=\"line\"/>\n      <point x=\"1119\" y=\"1050\"/>\n      <point x=\"966\" y=\"1094\"/>\n      <point x=\"765\" y=\"1094\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"1094\"/>\n      <point x=\"88\" y=\"826\"/>\n      <point x=\"88\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"144\"/>\n      <point x=\"271\" y=\"-15\"/>\n    </contour>\n    <contour>\n      <point x=\"895\" y=\"30\" type=\"line\"/>\n      <point x=\"991\" y=\"30\" type=\"line\"/>\n      <point x=\"1076\" y=\"510\" type=\"line\"/>\n      <point x=\"980\" y=\"510\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"632\" y=\"420\" type=\"line\"/>\n      <point x=\"1054\" y=\"420\" type=\"line\"/>\n      <point x=\"1070\" y=\"510\" type=\"line\"/>\n      <point x=\"648\" y=\"510\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_stroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Gstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E4\"/>\n  <anchor x=\"586\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"857\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"611\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"-20\"/>\n      <point x=\"945\" y=\"22\"/>\n      <point x=\"1003\" y=\"40\" type=\"curve\"/>\n      <point x=\"976\" y=\"130\" type=\"line\"/>\n      <point x=\"905\" y=\"108\"/>\n      <point x=\"793\" y=\"70\"/>\n      <point x=\"657\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"70\"/>\n      <point x=\"195\" y=\"226\"/>\n      <point x=\"195\" y=\"539\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"195\" y=\"1014\"/>\n      <point x=\"474\" y=\"1350\"/>\n      <point x=\"840\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"983\" y=\"1350\"/>\n      <point x=\"1076\" y=\"1309\"/>\n      <point x=\"1164\" y=\"1207\" type=\"curve\"/>\n      <point x=\"1239\" y=\"1272\" type=\"line\"/>\n      <point x=\"1158\" y=\"1373\"/>\n      <point x=\"1019\" y=\"1440\"/>\n      <point x=\"860\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"393\" y=\"1440\"/>\n      <point x=\"99\" y=\"1050\"/>\n      <point x=\"99\" y=\"523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"182\"/>\n      <point x=\"289\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"907\" y=\"40\" type=\"line\"/>\n      <point x=\"1003\" y=\"40\" type=\"line\"/>\n      <point x=\"1112\" y=\"660\" type=\"line\"/>\n      <point x=\"1016\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"612\" y=\"424\" type=\"line\"/>\n      <point x=\"1182\" y=\"424\" type=\"line\"/>\n      <point x=\"1197\" y=\"512\" type=\"line\"/>\n      <point x=\"627\" y=\"512\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"H\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0048\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"634\" y=\"710\" name=\"center\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"177\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"847\" y=\"0\" type=\"line\"/>\n      <point x=\"943\" y=\"0\" type=\"line\"/>\n      <point x=\"1193\" y=\"1420\" type=\"line\"/>\n      <point x=\"1097\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"71\" y=\"0\" type=\"line\"/>\n      <point x=\"167\" y=\"0\" type=\"line\"/>\n      <point x=\"417\" y=\"1420\" type=\"line\"/>\n      <point x=\"321\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"230\" y=\"662\" type=\"line\"/>\n      <point x=\"1013\" y=\"662\" type=\"line\"/>\n      <point x=\"1033\" y=\"752\" type=\"line\"/>\n      <point x=\"250\" y=\"752\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"H.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"638\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"0\" type=\"line\"/>\n      <point x=\"732\" y=\"639\" type=\"line\"/>\n      <point x=\"638\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"108\" y=\"0\" type=\"line\"/>\n      <point x=\"202\" y=\"0\" type=\"line\"/>\n      <point x=\"202\" y=\"639\" type=\"line\"/>\n      <point x=\"108\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"137\" y=\"274\" type=\"line\"/>\n      <point x=\"706\" y=\"274\" type=\"line\"/>\n      <point x=\"706\" y=\"362\" type=\"line\"/>\n      <point x=\"137\" y=\"362\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0425\"/>\n  <outline>\n    <component base=\"X\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_adescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B2\"/>\n  <outline>\n    <contour>\n      <point x=\"929\" y=\"-324\" type=\"line\"/>\n      <point x=\"976\" y=\"-192\"/>\n      <point x=\"1024\" y=\"-11\"/>\n      <point x=\"1031\" y=\"90\" type=\"curve\"/>\n      <point x=\"988\" y=\"128\" type=\"line\"/>\n      <point x=\"933\" y=\"83\" type=\"line\"/>\n      <point x=\"931\" y=\"68\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"-29\"/>\n      <point x=\"887\" y=\"-160\"/>\n      <point x=\"834\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <component base=\"X\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_ardsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hardsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"171\" y=\"0\" type=\"line\"/>\n      <point x=\"267\" y=\"0\" type=\"line\"/>\n      <point x=\"517\" y=\"1420\" type=\"line\"/>\n      <point x=\"421\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"155\" y=\"1330\" type=\"line\"/>\n      <point x=\"449\" y=\"1330\" type=\"line\"/>\n      <point x=\"465\" y=\"1420\" type=\"line\"/>\n      <point x=\"171\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"-1\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"831\" y=\"-2\"/>\n      <point x=\"1091\" y=\"210\"/>\n      <point x=\"1091\" y=\"528\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"783\"/>\n      <point x=\"911\" y=\"940\"/>\n      <point x=\"628\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"940\"/>\n      <point x=\"430\" y=\"923\"/>\n      <point x=\"355\" y=\"896\" type=\"curve\"/>\n      <point x=\"341\" y=\"803\" type=\"line\"/>\n      <point x=\"419\" y=\"832\"/>\n      <point x=\"527\" y=\"850\"/>\n      <point x=\"621\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"850\"/>\n      <point x=\"995\" y=\"727\"/>\n      <point x=\"995\" y=\"525\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"995\" y=\"259\"/>\n      <point x=\"783\" y=\"89\"/>\n      <point x=\"478\" y=\"89\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"207\" y=\"89\" type=\"line\"/>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0126\"/>\n  <outline>\n    <contour>\n      <point x=\"134\" y=\"1052\" type=\"line\"/>\n      <point x=\"1250\" y=\"1052\" type=\"line\"/>\n      <point x=\"1266\" y=\"1142\" type=\"line\"/>\n      <point x=\"150\" y=\"1142\" type=\"line\"/>\n    </contour>\n    <component base=\"H\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021E\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0124\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Hdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E24\"/>\n  <outline>\n    <component base=\"H\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0406\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0049\"/>\n  <anchor x=\"506\" y=\"1\" name=\"bottom\"/>\n  <anchor x=\"508\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"757\" y=\"1421\" name=\"top\"/>\n  <anchor x=\"182\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"458\" y=\"0\" type=\"line\"/>\n      <point x=\"552\" y=\"0\" type=\"line\"/>\n      <point x=\"802\" y=\"1420\" type=\"line\"/>\n      <point x=\"708\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"929\" y=\"90\" type=\"line\"/>\n      <point x=\"114\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"334\" y=\"1330\" type=\"line\"/>\n      <point x=\"1149\" y=\"1330\" type=\"line\"/>\n      <point x=\"1164\" y=\"1420\" type=\"line\"/>\n      <point x=\"349\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"I.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"467\" y=\"0\" type=\"line\"/>\n      <point x=\"467\" y=\"639\" type=\"line\"/>\n      <point x=\"373\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"0\" type=\"line\"/>\n      <point x=\"713\" y=\"0\" type=\"line\"/>\n      <point x=\"713\" y=\"88\" type=\"line\"/>\n      <point x=\"128\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"551\" type=\"line\"/>\n      <point x=\"713\" y=\"551\" type=\"line\"/>\n      <point x=\"713\" y=\"639\" type=\"line\"/>\n      <point x=\"128\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_J_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"IJ\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0132\"/>\n  <guideline x=\"1046\" y=\"226\" angle=\"80\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"561\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"822\" y=\"-20\"/>\n      <point x=\"984\" y=\"123\"/>\n      <point x=\"1033\" y=\"396\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1214\" y=\"1420\" type=\"line\"/>\n      <point x=\"1118\" y=\"1420\" type=\"line\"/>\n      <point x=\"937\" y=\"396\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"182\"/>\n      <point x=\"775\" y=\"70\"/>\n      <point x=\"577\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"396\" y=\"70\"/>\n      <point x=\"317\" y=\"175\"/>\n      <point x=\"346\" y=\"376\" type=\"curve\"/>\n      <point x=\"250\" y=\"376\" type=\"line\"/>\n      <point x=\"213\" y=\"116\"/>\n      <point x=\"320\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"53\" y=\"517\" type=\"line\"/>\n      <point x=\"597\" y=\"517\" type=\"line\"/>\n      <point x=\"613\" y=\"607\" type=\"line\"/>\n      <point x=\"69\" y=\"607\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"276\" y=\"517\" type=\"line\"/>\n      <point x=\"372\" y=\"517\" type=\"line\"/>\n      <point x=\"531\" y=\"1420\" type=\"line\"/>\n      <point x=\"435\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"196\" y=\"1330\" type=\"line\"/>\n      <point x=\"720\" y=\"1330\" type=\"line\"/>\n      <point x=\"736\" y=\"1420\" type=\"line\"/>\n      <point x=\"212\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"831\" y=\"1330\" type=\"line\"/>\n      <point x=\"1153\" y=\"1330\" type=\"line\"/>\n      <point x=\"1169\" y=\"1420\" type=\"line\"/>\n      <point x=\"847\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_J__acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"IJ_acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"IJ\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-273\"/>\n    <component base=\"acutecomb.case\" xOffset=\"331\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb.case</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ia-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"756\" y=\"496\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"497\"/>\n      <point x=\"922\" y=\"506\"/>\n      <point x=\"1007\" y=\"528\" type=\"curve\"/>\n      <point x=\"1020\" y=\"620\" type=\"line\"/>\n      <point x=\"928\" y=\"597\"/>\n      <point x=\"845\" y=\"588\"/>\n      <point x=\"762\" y=\"586\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"580\"/>\n      <point x=\"285\" y=\"708\"/>\n      <point x=\"285\" y=\"915\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"1184\"/>\n      <point x=\"492\" y=\"1350\"/>\n      <point x=\"855\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"1350\"/>\n      <point x=\"1081\" y=\"1343\"/>\n      <point x=\"1177\" y=\"1329\" type=\"curve\"/>\n      <point x=\"1194\" y=\"1420\" type=\"line\"/>\n      <point x=\"1095\" y=\"1434\"/>\n      <point x=\"989\" y=\"1440\"/>\n      <point x=\"861\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"1440\"/>\n      <point x=\"189\" y=\"1230\"/>\n      <point x=\"189\" y=\"914\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"189\" y=\"661\"/>\n      <point x=\"392\" y=\"490\"/>\n    </contour>\n    <contour>\n      <point x=\"-7\" y=\"0\" type=\"line\"/>\n      <point x=\"108\" y=\"0\" type=\"line\"/>\n      <point x=\"537\" y=\"574\" type=\"line\"/>\n      <point x=\"445\" y=\"602\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"847\" y=\"0\" type=\"line\"/>\n      <point x=\"944\" y=\"0\" type=\"line\"/>\n      <point x=\"1193\" y=\"1416\" type=\"line\"/>\n      <point x=\"1098\" y=\"1424\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CD\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"acutecomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ibreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012C\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"brevecomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Icircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CE\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"circumflexcomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CF\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dieresiscomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0130\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dotaccentcomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Idotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECA\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ie-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0415\"/>\n  <outline>\n    <component base=\"E\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_egrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iegrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0400\"/>\n  <outline>\n    <component base=\"Ie-cy\"/>\n    <component base=\"gravecomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Igrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00CC\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"gravecomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ihookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC8\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"hookabovecomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ii-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0418\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"141\" y=\"0\" type=\"line\"/>\n      <point x=\"200\" y=\"0\" type=\"line\"/>\n      <point x=\"1040\" y=\"1240\" type=\"line\"/>\n      <point x=\"1100\" y=\"1240\" type=\"line\"/>\n      <point x=\"1131\" y=\"1420\" type=\"line\"/>\n      <point x=\"1064\" y=\"1420\" type=\"line\"/>\n      <point x=\"224\" y=\"180\" type=\"line\"/>\n      <point x=\"172\" y=\"180\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"79\" y=\"0\" type=\"line\"/>\n      <point x=\"175\" y=\"0\" type=\"line\"/>\n      <point x=\"425\" y=\"1420\" type=\"line\"/>\n      <point x=\"329\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"839\" y=\"0\" type=\"line\"/>\n      <point x=\"935\" y=\"0\" type=\"line\"/>\n      <point x=\"1185\" y=\"1420\" type=\"line\"/>\n      <point x=\"1089\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_igrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iigrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040D\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_ishort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iishort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0419\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"brevecomb-cy.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_macron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Imacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E2\"/>\n  <outline>\n    <component base=\"Ii-cy\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Imacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012A\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_o-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Io-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0401\"/>\n  <outline>\n    <component base=\"Ie-cy\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012E\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"476\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"519\" y=\"-423\"/>\n      <point x=\"561\" y=\"-417\"/>\n      <point x=\"590\" y=\"-405\" type=\"curve\"/>\n      <point x=\"577\" y=\"-322\" type=\"line\"/>\n      <point x=\"557\" y=\"-329\"/>\n      <point x=\"526\" y=\"-336\"/>\n      <point x=\"492\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"415\" y=\"-336\"/>\n      <point x=\"373\" y=\"-301\"/>\n      <point x=\"373\" y=\"-234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"-94\"/>\n      <point x=\"526\" y=\"0\"/>\n      <point x=\"661\" y=\"0\" type=\"curve\"/>\n      <point x=\"576\" y=\"34\" type=\"line\"/>\n      <point x=\"456\" y=\"52\" type=\"line\"/>\n      <point x=\"456\" y=\"-6\" type=\"line\"/>\n      <point x=\"346\" y=\"-63\"/>\n      <point x=\"279\" y=\"-155\"/>\n      <point x=\"279\" y=\"-254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"279\" y=\"-364\"/>\n      <point x=\"347\" y=\"-423\"/>\n    </contour>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_ota.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iota\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0399\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_otaafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotaafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0196\"/>\n  <outline>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_otadieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotadieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AA\"/>\n  <outline>\n    <component base=\"Iota\"/>\n    <component base=\"dieresiscomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_otatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iotatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038A\"/>\n  <anchor x=\"624\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"874\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"558\" y=\"0\" type=\"line\"/>\n      <point x=\"652\" y=\"0\" type=\"line\"/>\n      <point x=\"902\" y=\"1420\" type=\"line\"/>\n      <point x=\"808\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"289\" y=\"0\" type=\"line\"/>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"929\" y=\"90\" type=\"line\"/>\n      <point x=\"304\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"524\" y=\"1330\" type=\"line\"/>\n      <point x=\"1149\" y=\"1330\" type=\"line\"/>\n      <point x=\"1164\" y=\"1420\" type=\"line\"/>\n      <point x=\"539\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"112\" y=\"1040\" type=\"line\"/>\n      <point x=\"206\" y=\"1040\" type=\"line\"/>\n      <point x=\"385\" y=\"1420\" type=\"line\"/>\n      <point x=\"276\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ismall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"741\" y=\"1060\" type=\"line\"/>\n      <point x=\"645\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"915\" y=\"0\" type=\"line\"/>\n      <point x=\"930\" y=\"90\" type=\"line\"/>\n      <point x=\"114\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"270\" y=\"970\" type=\"line\"/>\n      <point x=\"1086\" y=\"970\" type=\"line\"/>\n      <point x=\"1101\" y=\"1060\" type=\"line\"/>\n      <point x=\"285\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Itilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0128\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"tildecomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_u-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Iu-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"669\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1017\" y=\"-20\"/>\n      <point x=\"1160\" y=\"595\"/>\n      <point x=\"1160\" y=\"1075\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1160\" y=\"1318\"/>\n      <point x=\"1079\" y=\"1440\"/>\n      <point x=\"910\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"646\" y=\"1440\"/>\n      <point x=\"468\" y=\"1044\"/>\n      <point x=\"433\" y=\"415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"177\"/>\n      <point x=\"459\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"11\" y=\"0\" type=\"line\"/>\n      <point x=\"107\" y=\"0\" type=\"line\"/>\n      <point x=\"357\" y=\"1420\" type=\"line\"/>\n      <point x=\"261\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"189\" y=\"662\" type=\"line\"/>\n      <point x=\"516\" y=\"662\" type=\"line\"/>\n      <point x=\"532\" y=\"752\" type=\"line\"/>\n      <point x=\"205\" y=\"752\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"687\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"70\"/>\n      <point x=\"520\" y=\"245\"/>\n      <point x=\"530\" y=\"434\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"995\"/>\n      <point x=\"716\" y=\"1350\"/>\n      <point x=\"896\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"1350\"/>\n      <point x=\"1064\" y=\"1262\"/>\n      <point x=\"1064\" y=\"1061\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1064\" y=\"698\"/>\n      <point x=\"939\" y=\"70\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/J_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"J\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"957\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"491\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"-20\"/>\n      <point x=\"970\" y=\"144\"/>\n      <point x=\"1028\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1194\" y=\"1420\" type=\"line\"/>\n      <point x=\"1098\" y=\"1420\" type=\"line\"/>\n      <point x=\"932\" y=\"476\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"205\"/>\n      <point x=\"744\" y=\"70\"/>\n      <point x=\"507\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"70\"/>\n      <point x=\"148\" y=\"205\"/>\n      <point x=\"196\" y=\"476\" type=\"curve\"/>\n      <point x=\"100\" y=\"476\" type=\"line\"/>\n      <point x=\"44\" y=\"143\"/>\n      <point x=\"170\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"630\" y=\"1330\" type=\"line\"/>\n      <point x=\"1136\" y=\"1330\" type=\"line\"/>\n      <point x=\"1152\" y=\"1420\" type=\"line\"/>\n      <point x=\"646\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/J_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Jacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"J\"/>\n    <component base=\"acutecomb.case\" xOffset=\"200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/J_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Jcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0134\"/>\n  <outline>\n    <component base=\"J\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"200\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/J_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Je-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0408\"/>\n  <outline>\n    <component base=\"J\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"K\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004B\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"223\" y=\"382\" type=\"line\"/>\n      <point x=\"798\" y=\"461\"/>\n      <point x=\"1136\" y=\"878\"/>\n      <point x=\"1227\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1131\" y=\"1420\" type=\"line\"/>\n      <point x=\"1046\" y=\"943\"/>\n      <point x=\"774\" y=\"557\"/>\n      <point x=\"236\" y=\"480\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"81\" y=\"0\" type=\"line\"/>\n      <point x=\"177\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"1420\" type=\"line\"/>\n      <point x=\"331\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"933\" y=\"0\" type=\"line\"/>\n      <point x=\"1045\" y=\"0\" type=\"line\"/>\n      <point x=\"799\" y=\"677\" type=\"line\"/>\n      <point x=\"720\" y=\"612\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"K.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"184\" y=\"206\" type=\"line\"/>\n      <point x=\"552\" y=\"206\"/>\n      <point x=\"763\" y=\"364\"/>\n      <point x=\"763\" y=\"639\" type=\"curve\"/>\n      <point x=\"666\" y=\"639\" type=\"line\"/>\n      <point x=\"666\" y=\"419\"/>\n      <point x=\"495\" y=\"293\"/>\n      <point x=\"196\" y=\"293\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"697\" y=\"0\" type=\"line\"/>\n      <point x=\"810\" y=\"0\" type=\"line\"/>\n      <point x=\"543\" y=\"351\" type=\"line\"/>\n      <point x=\"459\" y=\"308\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"634\" y=\"710\" name=\"center\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"437\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"236\" y=\"615\" type=\"line\"/>\n      <point x=\"684\" y=\"615\" type=\"line\"/>\n      <point x=\"692\" y=\"705\" type=\"line\"/>\n      <point x=\"244\" y=\"705\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"891\" y=\"0\" type=\"line\"/>\n      <point x=\"1003\" y=\"0\" type=\"line\"/>\n      <point x=\"736\" y=\"683\" type=\"line\"/>\n      <point x=\"646\" y=\"651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"704\" y=\"623\" type=\"line\"/>\n      <point x=\"872\" y=\"704\"/>\n      <point x=\"1177\" y=\"1108\"/>\n      <point x=\"1263\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1163\" y=\"1420\" type=\"line\"/>\n      <point x=\"1092\" y=\"1181\"/>\n      <point x=\"850\" y=\"802\"/>\n      <point x=\"655\" y=\"698\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.65,0.48,0.2,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E30\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_adescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"049A\"/>\n  <outline>\n    <contour>\n      <point x=\"954\" y=\"-324\" type=\"line\"/>\n      <point x=\"994\" y=\"-219\"/>\n      <point x=\"1041\" y=\"-37\"/>\n      <point x=\"1057\" y=\"90\" type=\"curve\"/>\n      <point x=\"964\" y=\"90\" type=\"line\"/>\n      <point x=\"954\" y=\"37\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"939\" y=\"-44\"/>\n      <point x=\"902\" y=\"-191\"/>\n      <point x=\"860\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <component base=\"Ka-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_aiS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"KaiSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CF\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"223\" y=\"382\" type=\"line\"/>\n      <point x=\"798\" y=\"461\"/>\n      <point x=\"1136\" y=\"878\"/>\n      <point x=\"1227\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1131\" y=\"1420\" type=\"line\"/>\n      <point x=\"1046\" y=\"943\"/>\n      <point x=\"774\" y=\"557\"/>\n      <point x=\"236\" y=\"480\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"81\" y=\"0\" type=\"line\"/>\n      <point x=\"177\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"1420\" type=\"line\"/>\n      <point x=\"331\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"675\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"-480\"/>\n      <point x=\"1043\" y=\"-396\"/>\n      <point x=\"1043\" y=\"-213\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1043\" y=\"-129\"/>\n      <point x=\"1015\" y=\"-27\"/>\n      <point x=\"979\" y=\"66\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"751\" y=\"643\" type=\"line\"/>\n      <point x=\"671\" y=\"596\" type=\"line\"/>\n      <point x=\"891\" y=\"27\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"-58\"/>\n      <point x=\"947\" y=\"-147\"/>\n      <point x=\"947\" y=\"-215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"-334\"/>\n      <point x=\"860\" y=\"-388\"/>\n      <point x=\"671\" y=\"-388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"624\" y=\"-388\"/>\n      <point x=\"577\" y=\"-382\"/>\n      <point x=\"504\" y=\"-368\" type=\"curve\"/>\n      <point x=\"479\" y=\"-460\" type=\"line\"/>\n      <point x=\"567\" y=\"-474\"/>\n      <point x=\"623\" y=\"-480\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_appa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kappa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039A\"/>\n  <outline>\n    <component base=\"K\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0136\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E32\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Kje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040C\"/>\n  <outline>\n    <component base=\"Ka-cy\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Klinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E34\"/>\n  <outline>\n    <component base=\"K\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"L\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004C\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"721\" y=\"710\" name=\"center\"/>\n  <anchor x=\"389\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1097\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"437\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"0\" type=\"line\"/>\n      <point x=\"1000\" y=\"90\" type=\"line\"/>\n      <point x=\"107\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"L.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"760\" y=\"0\" type=\"line\"/>\n      <point x=\"760\" y=\"90\" type=\"line\"/>\n      <point x=\"122\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_I_G_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"LIG\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0139\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-368\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_ambda.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lambda\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039B\"/>\n  <outline>\n    <component base=\"El-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023D\"/>\n  <outline>\n    <contour>\n      <point x=\"6\" y=\"677\" type=\"line\"/>\n      <point x=\"822\" y=\"677\" type=\"line\"/>\n      <point x=\"838\" y=\"767\" type=\"line\"/>\n      <point x=\"22\" y=\"767\" type=\"line\"/>\n    </contour>\n    <component base=\"L\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013D\"/>\n  <outline>\n    <contour>\n      <point x=\"920\" y=\"1188\" type=\"line\"/>\n      <point x=\"1002\" y=\"1188\" type=\"line\"/>\n      <point x=\"1154\" y=\"1568\" type=\"line\"/>\n      <point x=\"1049\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"L\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013B\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_dot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ldot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013F\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"periodcentered\" xOffset=\"280\" yOffset=\"320\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ldotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E36\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0409\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"13\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"257\" y=\"-20\"/>\n      <point x=\"329\" y=\"436\"/>\n      <point x=\"458\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"1231\"/>\n      <point x=\"490\" y=\"1319\"/>\n      <point x=\"506\" y=\"1407\" type=\"curve\"/>\n      <point x=\"409\" y=\"1330\" type=\"line\"/>\n      <point x=\"793\" y=\"1330\" type=\"line\"/>\n      <point x=\"793\" y=\"1420\" type=\"line\"/>\n      <point x=\"412\" y=\"1420\" type=\"line\"/>\n      <point x=\"396\" y=\"1334\"/>\n      <point x=\"381\" y=\"1248\"/>\n      <point x=\"365\" y=\"1162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"489\"/>\n      <point x=\"168\" y=\"70\"/>\n      <point x=\"4\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-6\" y=\"70\"/>\n      <point x=\"-16\" y=\"71\"/>\n      <point x=\"-26\" y=\"76\" type=\"curve\"/>\n      <point x=\"-45\" y=\"-13\" type=\"line\"/>\n      <point x=\"-29\" y=\"-18\"/>\n      <point x=\"-3\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"522\" y=\"0\" type=\"line\"/>\n      <point x=\"611\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"0\"/>\n      <point x=\"1098\" y=\"271\"/>\n      <point x=\"1098\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1098\" y=\"800\"/>\n      <point x=\"966\" y=\"940\"/>\n      <point x=\"787\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"940\"/>\n      <point x=\"699\" y=\"932\"/>\n      <point x=\"680\" y=\"906\" type=\"curve\"/>\n      <point x=\"664\" y=\"809\" type=\"line\"/>\n      <point x=\"696\" y=\"835\"/>\n      <point x=\"732\" y=\"850\"/>\n      <point x=\"780\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"850\"/>\n      <point x=\"1002\" y=\"744\"/>\n      <point x=\"1002\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"316\"/>\n      <point x=\"812\" y=\"90\"/>\n      <point x=\"630\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"515\" y=\"0\" type=\"line\"/>\n      <point x=\"612\" y=\"0\" type=\"line\"/>\n      <point x=\"619\" y=\"41\" type=\"line\"/>\n      <point x=\"861\" y=\"1420\" type=\"line\"/>\n      <point x=\"765\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Llinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E3A\"/>\n  <outline>\n    <component base=\"L\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_middletilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lmiddletilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2C62\"/>\n  <anchor x=\"643\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"752\" y=\"710\" name=\"center\"/>\n  <anchor x=\"560\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1342\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"262\" y=\"0\" type=\"line\"/>\n      <point x=\"358\" y=\"0\" type=\"line\"/>\n      <point x=\"608\" y=\"1420\" type=\"line\"/>\n      <point x=\"512\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"262\" y=\"0\" type=\"line\"/>\n      <point x=\"982\" y=\"0\" type=\"line\"/>\n      <point x=\"998\" y=\"90\" type=\"line\"/>\n      <point x=\"278\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"34\" y=\"589\" type=\"line\"/>\n      <point x=\"130\" y=\"589\" type=\"line\"/>\n      <point x=\"149\" y=\"701\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"163\" y=\"784\"/>\n      <point x=\"206\" y=\"827\"/>\n      <point x=\"272\" y=\"827\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"827\"/>\n      <point x=\"372\" y=\"791\"/>\n      <point x=\"443\" y=\"721\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"650\"/>\n      <point x=\"598\" y=\"616\"/>\n      <point x=\"677\" y=\"616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"616\"/>\n      <point x=\"875\" y=\"693\"/>\n      <point x=\"900\" y=\"840\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"944\" type=\"line\"/>\n      <point x=\"822\" y=\"944\" type=\"line\"/>\n      <point x=\"803\" y=\"832\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"749\"/>\n      <point x=\"747\" y=\"706\"/>\n      <point x=\"682\" y=\"706\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"706\"/>\n      <point x=\"563\" y=\"741\"/>\n      <point x=\"491\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"882\"/>\n      <point x=\"335\" y=\"917\"/>\n      <point x=\"278\" y=\"917\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"154\" y=\"917\"/>\n      <point x=\"77\" y=\"840\"/>\n      <point x=\"52\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0141\"/>\n  <anchor x=\"554\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"659\" y=\"710\" name=\"center\"/>\n  <anchor x=\"561\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1364\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"48\" y=\"469\" type=\"line\"/>\n      <point x=\"941\" y=\"960\" type=\"line\"/>\n      <point x=\"959\" y=\"1062\" type=\"line\"/>\n      <point x=\"66\" y=\"571\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"0\" type=\"line\"/>\n      <point x=\"359\" y=\"0\" type=\"line\"/>\n      <point x=\"609\" y=\"1420\" type=\"line\"/>\n      <point x=\"513\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"263\" y=\"0\" type=\"line\"/>\n      <point x=\"982\" y=\"0\" type=\"line\"/>\n      <point x=\"998\" y=\"90\" type=\"line\"/>\n      <point x=\"279\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_small.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Lsmall\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"029F\"/>\n  <anchor x=\"554\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"629\" y=\"540\" name=\"center\"/>\n  <anchor x=\"328\" y=\"1079\" name=\"top\"/>\n  <anchor x=\"1304\" y=\"1079\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"90\" y=\"0\" type=\"line\"/>\n      <point x=\"186\" y=\"0\" type=\"line\"/>\n      <point x=\"376\" y=\"1079\" type=\"line\"/>\n      <point x=\"280\" y=\"1079\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"90\" y=\"0\" type=\"line\"/>\n      <point x=\"985\" y=\"0\" type=\"line\"/>\n      <point x=\"1001\" y=\"90\" type=\"line\"/>\n      <point x=\"106\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/M_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"M\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"615\" y=\"660\" type=\"line\"/>\n      <point x=\"688\" y=\"660\" type=\"line\"/>\n      <point x=\"1084\" y=\"1332\" type=\"line\"/>\n      <point x=\"1126\" y=\"1332\" type=\"line\"/>\n      <point x=\"1141\" y=\"1420\" type=\"line\"/>\n      <point x=\"1036\" y=\"1420\" type=\"line\"/>\n      <point x=\"641\" y=\"748\" type=\"line\"/>\n      <point x=\"639\" y=\"748\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"59\" y=\"0\" type=\"line\"/>\n      <point x=\"155\" y=\"0\" type=\"line\"/>\n      <point x=\"405\" y=\"1420\" type=\"line\"/>\n      <point x=\"309\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"568\" y=\"660\" type=\"line\"/>\n      <point x=\"642\" y=\"660\" type=\"line\"/>\n      <point x=\"640\" y=\"748\" type=\"line\"/>\n      <point x=\"637\" y=\"748\" type=\"line\"/>\n      <point x=\"468\" y=\"1420\" type=\"line\"/>\n      <point x=\"391\" y=\"1420\" type=\"line\"/>\n      <point x=\"376\" y=\"1332\" type=\"line\"/>\n      <point x=\"400\" y=\"1332\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"859\" y=\"0\" type=\"line\"/>\n      <point x=\"955\" y=\"0\" type=\"line\"/>\n      <point x=\"1205\" y=\"1420\" type=\"line\"/>\n      <point x=\"1109\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/M_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"M.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"405\" y=\"207\" type=\"line\"/>\n      <point x=\"470\" y=\"207\" type=\"line\"/>\n      <point x=\"637\" y=\"527\" type=\"line\"/>\n      <point x=\"671\" y=\"527\" type=\"line\"/>\n      <point x=\"671\" y=\"639\" type=\"line\"/>\n      <point x=\"591\" y=\"639\" type=\"line\"/>\n      <point x=\"424\" y=\"310\" type=\"line\"/>\n      <point x=\"419\" y=\"310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"192\" y=\"639\" type=\"line\"/>\n      <point x=\"100\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"371\" y=\"207\" type=\"line\"/>\n      <point x=\"432\" y=\"207\" type=\"line\"/>\n      <point x=\"421\" y=\"310\" type=\"line\"/>\n      <point x=\"417\" y=\"310\" type=\"line\"/>\n      <point x=\"250\" y=\"639\" type=\"line\"/>\n      <point x=\"177\" y=\"639\" type=\"line\"/>\n      <point x=\"177\" y=\"527\" type=\"line\"/>\n      <point x=\"203\" y=\"527\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"649\" y=\"0\" type=\"line\"/>\n      <point x=\"741\" y=\"0\" type=\"line\"/>\n      <point x=\"741\" y=\"639\" type=\"line\"/>\n      <point x=\"649\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/M_u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Mu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039C\"/>\n  <outline>\n    <component base=\"M\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"N\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"778\" y=\"0\" type=\"line\"/>\n      <point x=\"874\" y=\"0\" type=\"line\"/>\n      <point x=\"889\" y=\"88\" type=\"line\"/>\n      <point x=\"847\" y=\"88\" type=\"line\"/>\n      <point x=\"487\" y=\"1420\" type=\"line\"/>\n      <point x=\"374\" y=\"1420\" type=\"line\"/>\n      <point x=\"359\" y=\"1332\" type=\"line\"/>\n      <point x=\"418\" y=\"1332\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"79\" y=\"0\" type=\"line\"/>\n      <point x=\"175\" y=\"0\" type=\"line\"/>\n      <point x=\"425\" y=\"1420\" type=\"line\"/>\n      <point x=\"329\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"839\" y=\"0\" type=\"line\"/>\n      <point x=\"935\" y=\"0\" type=\"line\"/>\n      <point x=\"1185\" y=\"1420\" type=\"line\"/>\n      <point x=\"1089\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"N.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"0\" type=\"line\"/>\n      <point x=\"658\" y=\"0\" type=\"line\"/>\n      <point x=\"658\" y=\"111\" type=\"line\"/>\n      <point x=\"626\" y=\"111\" type=\"line\"/>\n      <point x=\"247\" y=\"639\" type=\"line\"/>\n      <point x=\"166\" y=\"639\" type=\"line\"/>\n      <point x=\"166\" y=\"529\" type=\"line\"/>\n      <point x=\"215\" y=\"529\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"114\" y=\"0\" type=\"line\"/>\n      <point x=\"206\" y=\"0\" type=\"line\"/>\n      <point x=\"206\" y=\"639\" type=\"line\"/>\n      <point x=\"114\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"635\" y=\"0\" type=\"line\"/>\n      <point x=\"727\" y=\"0\" type=\"line\"/>\n      <point x=\"727\" y=\"639\" type=\"line\"/>\n      <point x=\"635\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0143\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"acutecomb.case.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ncaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0147\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ncommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0145\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_hookleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nhookleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019D\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"106\" y=\"151\" type=\"line\"/>\n      <point x=\"73\" y=\"-33\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"36\" y=\"-238\"/>\n      <point x=\"-31\" y=\"-342\"/>\n      <point x=\"-214\" y=\"-376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-257\" y=\"-384\" type=\"line\"/>\n      <point x=\"-251\" y=\"-476\" type=\"line\"/>\n      <point x=\"-220\" y=\"-472\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"29\" y=\"-440\"/>\n      <point x=\"122\" y=\"-308\"/>\n      <point x=\"174\" y=\"-6\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"201\" y=\"151\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"522\" y=\"0\" type=\"line\"/>\n      <point x=\"611\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"0\"/>\n      <point x=\"1098\" y=\"271\"/>\n      <point x=\"1098\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1098\" y=\"800\"/>\n      <point x=\"966\" y=\"938\"/>\n      <point x=\"787\" y=\"938\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"752\" y=\"938\"/>\n      <point x=\"718\" y=\"938\"/>\n      <point x=\"683\" y=\"938\" type=\"curve\"/>\n      <point x=\"668\" y=\"848\" type=\"line\"/>\n      <point x=\"705\" y=\"848\"/>\n      <point x=\"743\" y=\"848\"/>\n      <point x=\"780\" y=\"848\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"848\"/>\n      <point x=\"1002\" y=\"744\"/>\n      <point x=\"1002\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1002\" y=\"316\"/>\n      <point x=\"812\" y=\"90\"/>\n      <point x=\"630\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"59\" y=\"0\" type=\"line\"/>\n      <point x=\"155\" y=\"0\" type=\"line\"/>\n      <point x=\"405\" y=\"1420\" type=\"line\"/>\n      <point x=\"309\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"237\" y=\"848\" type=\"line\"/>\n      <point x=\"694\" y=\"848\" type=\"line\"/>\n      <point x=\"709\" y=\"938\" type=\"line\"/>\n      <point x=\"253\" y=\"938\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"515\" y=\"0\" type=\"line\"/>\n      <point x=\"612\" y=\"0\" type=\"line\"/>\n      <point x=\"620\" y=\"46\" type=\"line\"/>\n      <point x=\"768\" y=\"888\" type=\"line\"/>\n      <point x=\"771\" y=\"906\" type=\"line\"/>\n      <point x=\"861\" y=\"1420\" type=\"line\"/>\n      <point x=\"765\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E48\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D1\"/>\n  <outline>\n    <component base=\"N\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_u.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Nu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039D\"/>\n  <outline>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041E\"/>\n  <outline>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"004F\"/>\n  <guideline x=\"927\" y=\"1269\" angle=\"90\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"631\" y=\"710\" name=\"center\"/>\n  <anchor x=\"528\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"198\" y=\"1420\" name=\"topleft\"/>\n  <anchor x=\"1328\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"513\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"-20\"/>\n      <point x=\"1157\" y=\"361\"/>\n      <point x=\"1157\" y=\"1005\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"1278\"/>\n      <point x=\"1007\" y=\"1440\"/>\n      <point x=\"752\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"347\" y=\"1440\"/>\n      <point x=\"107\" y=\"1063\"/>\n      <point x=\"107\" y=\"426\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"107\" y=\"146\"/>\n      <point x=\"258\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"522\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"70\"/>\n      <point x=\"201\" y=\"208\"/>\n      <point x=\"201\" y=\"441\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"201\" y=\"1012\"/>\n      <point x=\"404\" y=\"1350\"/>\n      <point x=\"748\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1350\"/>\n      <point x=\"1053\" y=\"1216\"/>\n      <point x=\"1053\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"412\"/>\n      <point x=\"856\" y=\"70\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"O.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"420\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"656\" y=\"-9\"/>\n      <point x=\"777\" y=\"98\"/>\n      <point x=\"777\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"777\" y=\"537\"/>\n      <point x=\"657\" y=\"648\"/>\n      <point x=\"420\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"183\" y=\"648\"/>\n      <point x=\"63\" y=\"537\"/>\n      <point x=\"63\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"63\" y=\"98\"/>\n      <point x=\"183\" y=\"-9\"/>\n    </contour>\n    <contour>\n      <point x=\"420\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"77\"/>\n      <point x=\"161\" y=\"156\"/>\n      <point x=\"161\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"161\" y=\"480\"/>\n      <point x=\"248\" y=\"562\"/>\n      <point x=\"420\" y=\"562\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"562\"/>\n      <point x=\"679\" y=\"480\"/>\n      <point x=\"679\" y=\"315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"156\"/>\n      <point x=\"592\" y=\"77\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_E_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"OE\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0152\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"422\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"-20\"/>\n      <point x=\"559\" y=\"0\"/>\n      <point x=\"606\" y=\"0\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"639\" y=\"0\" type=\"line\"/>\n      <point x=\"889\" y=\"1420\" type=\"line\"/>\n      <point x=\"856\" y=\"1420\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"794\" y=\"1420\"/>\n      <point x=\"752\" y=\"1440\"/>\n      <point x=\"680\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"1440\"/>\n      <point x=\"105\" y=\"882\"/>\n      <point x=\"105\" y=\"438\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"105\" y=\"143\"/>\n      <point x=\"215\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"554\" y=\"0\" type=\"line\"/>\n      <point x=\"980\" y=\"0\" type=\"line\"/>\n      <point x=\"996\" y=\"90\" type=\"line\"/>\n      <point x=\"571\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"448\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"70\"/>\n      <point x=\"201\" y=\"203\"/>\n      <point x=\"201\" y=\"445\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"201\" y=\"816\"/>\n      <point x=\"362\" y=\"1350\"/>\n      <point x=\"664\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"708\" y=\"1350\"/>\n      <point x=\"747\" y=\"1342\"/>\n      <point x=\"777\" y=\"1328\" type=\"curve\"/>\n      <point x=\"556\" y=\"76\" type=\"line\"/>\n      <point x=\"526\" y=\"72\"/>\n      <point x=\"486\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"699\" y=\"666\" type=\"line\"/>\n      <point x=\"1037\" y=\"666\" type=\"line\"/>\n      <point x=\"1053\" y=\"756\" type=\"line\"/>\n      <point x=\"715\" y=\"756\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"789\" y=\"1330\" type=\"line\"/>\n      <point x=\"1215\" y=\"1330\" type=\"line\"/>\n      <point x=\"1230\" y=\"1420\" type=\"line\"/>\n      <point x=\"804\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D3\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"acutecomb.case.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_barred-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Obarred-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E8\"/>\n  <outline>\n    <contour>\n      <point x=\"182\" y=\"662\" type=\"line\"/>\n      <point x=\"1053\" y=\"662\" type=\"line\"/>\n      <point x=\"1053\" y=\"752\" type=\"line\"/>\n      <point x=\"182\" y=\"752\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Obreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014E\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D4\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED0\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"acutecomb.case\" xOffset=\"337\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED8\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED2\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"gravecomb.case\" xOffset=\"337\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED4\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"hookabovecomb.case\" xOffset=\"337\" yOffset=\"248\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ocircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED6\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"circumflexcomb.case\"/>\n    <component base=\"tildecomb.case\" xOffset=\"67\" yOffset=\"380\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Odieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D6\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Odotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECC\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ograve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D2\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hm.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohm\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2126\"/>\n  <outline>\n    <component base=\"Omega\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECE\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A0\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"horncomb.case\" xOffset=\"403\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDA\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_horndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE2\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_horngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDC\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDE\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_horntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE0\"/>\n  <outline>\n    <component base=\"Ohorn\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ohungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0150\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"hungarumlautcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014C\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_macronacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacronacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E52\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n    <component base=\"acutecomb.case\" xOffset=\"47\" yOffset=\"258\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_macrongrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omacrongrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E50\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n    <component base=\"gravecomb.case\" xOffset=\"47\" yOffset=\"258\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_mega.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omega\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A9\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"253\" y=\"51\" type=\"line\"/>\n      <point x=\"440\" y=\"90\" type=\"line\"/>\n      <point x=\"280\" y=\"158\"/>\n      <point x=\"207\" y=\"291\"/>\n      <point x=\"207\" y=\"514\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"207\" y=\"934\"/>\n      <point x=\"370\" y=\"1350\"/>\n      <point x=\"745\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"959\" y=\"1350\"/>\n      <point x=\"1067\" y=\"1210\"/>\n      <point x=\"1067\" y=\"929\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1067\" y=\"591\"/>\n      <point x=\"954\" y=\"171\"/>\n      <point x=\"604\" y=\"90\" type=\"curve\"/>\n      <point x=\"778\" y=\"59\" type=\"line\"/>\n      <point x=\"786\" y=\"99\" type=\"line\"/>\n      <point x=\"1079\" y=\"210\"/>\n      <point x=\"1164\" y=\"652\"/>\n      <point x=\"1164\" y=\"939\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1164\" y=\"1274\"/>\n      <point x=\"1030\" y=\"1440\"/>\n      <point x=\"761\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"1440\"/>\n      <point x=\"107\" y=\"991\"/>\n      <point x=\"107\" y=\"497\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"107\" y=\"309\"/>\n      <point x=\"156\" y=\"184\"/>\n      <point x=\"262\" y=\"99\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"35\" y=\"0\" type=\"line\"/>\n      <point x=\"424\" y=\"0\" type=\"line\"/>\n      <point x=\"440\" y=\"90\" type=\"line\"/>\n      <point x=\"51\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"588\" y=\"0\" type=\"line\"/>\n      <point x=\"979\" y=\"0\" type=\"line\"/>\n      <point x=\"995\" y=\"90\" type=\"line\"/>\n      <point x=\"604\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_megatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omegatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038F\"/>\n  <anchor x=\"607\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"857\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"113\" y=\"1040\" type=\"line\"/>\n      <point x=\"207\" y=\"1040\" type=\"line\"/>\n      <point x=\"386\" y=\"1420\" type=\"line\"/>\n      <point x=\"277\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"436\" y=\"7\" type=\"line\"/>\n      <point x=\"581\" y=\"90\" type=\"line\"/>\n      <point x=\"465\" y=\"139\"/>\n      <point x=\"408\" y=\"265\"/>\n      <point x=\"408\" y=\"469\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"849\"/>\n      <point x=\"541\" y=\"1350\"/>\n      <point x=\"845\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"996\" y=\"1350\"/>\n      <point x=\"1072\" y=\"1242\"/>\n      <point x=\"1072\" y=\"1024\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1072\" y=\"678\"/>\n      <point x=\"937\" y=\"181\"/>\n      <point x=\"665\" y=\"90\" type=\"curve\"/>\n      <point x=\"782\" y=\"15\" type=\"line\"/>\n      <point x=\"798\" y=\"110\" type=\"line\"/>\n      <point x=\"1041\" y=\"168\"/>\n      <point x=\"1169\" y=\"708\"/>\n      <point x=\"1169\" y=\"1039\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1169\" y=\"1307\"/>\n      <point x=\"1066\" y=\"1440\"/>\n      <point x=\"861\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"475\" y=\"1440\"/>\n      <point x=\"308\" y=\"902\"/>\n      <point x=\"308\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"247\"/>\n      <point x=\"357\" y=\"138\"/>\n      <point x=\"454\" y=\"107\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"235\" y=\"0\" type=\"line\"/>\n      <point x=\"565\" y=\"0\" type=\"line\"/>\n      <point x=\"581\" y=\"90\" type=\"line\"/>\n      <point x=\"251\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"649\" y=\"0\" type=\"line\"/>\n      <point x=\"979\" y=\"0\" type=\"line\"/>\n      <point x=\"995\" y=\"90\" type=\"line\"/>\n      <point x=\"665\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_micron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omicron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039F\"/>\n  <outline>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_microntonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Omicrontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038C\"/>\n  <anchor x=\"622\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"872\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"603\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"-20\"/>\n      <point x=\"1157\" y=\"372\"/>\n      <point x=\"1157\" y=\"1035\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"1289\"/>\n      <point x=\"1040\" y=\"1440\"/>\n      <point x=\"842\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"494\" y=\"1440\"/>\n      <point x=\"287\" y=\"1052\"/>\n      <point x=\"287\" y=\"396\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"135\"/>\n      <point x=\"405\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"612\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"467\" y=\"70\"/>\n      <point x=\"381\" y=\"197\"/>\n      <point x=\"381\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"1001\"/>\n      <point x=\"551\" y=\"1350\"/>\n      <point x=\"838\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"973\" y=\"1350\"/>\n      <point x=\"1053\" y=\"1227\"/>\n      <point x=\"1053\" y=\"1020\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"423\"/>\n      <point x=\"889\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"112\" y=\"1040\" type=\"line\"/>\n      <point x=\"206\" y=\"1040\" type=\"line\"/>\n      <point x=\"385\" y=\"1420\" type=\"line\"/>\n      <point x=\"276\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01EA\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"-423\"/>\n      <point x=\"593\" y=\"-417\"/>\n      <point x=\"622\" y=\"-405\" type=\"curve\"/>\n      <point x=\"609\" y=\"-322\" type=\"line\"/>\n      <point x=\"589\" y=\"-329\"/>\n      <point x=\"558\" y=\"-336\"/>\n      <point x=\"524\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"-336\"/>\n      <point x=\"402\" y=\"-301\"/>\n      <point x=\"402\" y=\"-234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"-94\"/>\n      <point x=\"542\" y=\"-33\"/>\n      <point x=\"666\" y=\"0\" type=\"curve\"/>\n      <point x=\"581\" y=\"34\" type=\"line\"/>\n      <point x=\"471\" y=\"52\" type=\"line\"/>\n      <point x=\"471\" y=\"-24\" type=\"line\"/>\n      <point x=\"360\" y=\"-77\"/>\n      <point x=\"308\" y=\"-162\"/>\n      <point x=\"308\" y=\"-254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"-364\"/>\n      <point x=\"377\" y=\"-423\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_open.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0186\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"645\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"1440\"/>\n      <point x=\"395\" y=\"1420\"/>\n      <point x=\"269\" y=\"1378\" type=\"curve\"/>\n      <point x=\"281\" y=\"1290\" type=\"line\"/>\n      <point x=\"396\" y=\"1330\"/>\n      <point x=\"507\" y=\"1350\"/>\n      <point x=\"618\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"878\" y=\"1350\"/>\n      <point x=\"1052\" y=\"1166\"/>\n      <point x=\"1052\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1052\" y=\"398\"/>\n      <point x=\"796\" y=\"70\"/>\n      <point x=\"411\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"70\"/>\n      <point x=\"170\" y=\"114\"/>\n      <point x=\"71\" y=\"210\" type=\"curve\"/>\n      <point x=\"-2\" y=\"139\" type=\"line\"/>\n      <point x=\"109\" y=\"29\"/>\n      <point x=\"234\" y=\"-20\"/>\n      <point x=\"402\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"-20\"/>\n      <point x=\"1146\" y=\"347\"/>\n      <point x=\"1146\" y=\"897\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1146\" y=\"1223\"/>\n      <point x=\"946\" y=\"1440\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_slash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D8\"/>\n  <outline>\n    <contour>\n      <point x=\"74\" y=\"-134\" type=\"line\"/>\n      <point x=\"1241\" y=\"1477\" type=\"line\"/>\n      <point x=\"1166\" y=\"1532\" type=\"line\"/>\n      <point x=\"-1\" y=\"-79\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_slashacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Oslashacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FE\"/>\n  <outline>\n    <component base=\"Oslash\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Otilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D5\"/>\n  <outline>\n    <component base=\"O\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"P\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0050\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"707\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"437\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"201\" y=\"410\" type=\"line\"/>\n      <point x=\"243\" y=\"410\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"856\" y=\"410\"/>\n      <point x=\"1175\" y=\"619\"/>\n      <point x=\"1175\" y=\"1021\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1175\" y=\"1296\"/>\n      <point x=\"990\" y=\"1440\"/>\n      <point x=\"635\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"517\" y=\"1440\"/>\n      <point x=\"415\" y=\"1433\"/>\n      <point x=\"341\" y=\"1420\" type=\"curve\"/>\n      <point x=\"348\" y=\"1330\" type=\"line\"/>\n      <point x=\"415\" y=\"1343\"/>\n      <point x=\"506\" y=\"1350\"/>\n      <point x=\"612\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"919\" y=\"1350\"/>\n      <point x=\"1079\" y=\"1235\"/>\n      <point x=\"1079\" y=\"1018\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"678\"/>\n      <point x=\"804\" y=\"500\"/>\n      <point x=\"276\" y=\"500\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"214\" y=\"500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"P.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"199\" y=\"201\" type=\"line\"/>\n      <point x=\"483\" y=\"201\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"201\"/>\n      <point x=\"774\" y=\"274\"/>\n      <point x=\"774\" y=\"420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"774\" y=\"566\"/>\n      <point x=\"678\" y=\"639\"/>\n      <point x=\"483\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"202\" y=\"639\" type=\"line\"/>\n      <point x=\"202\" y=\"551\" type=\"line\"/>\n      <point x=\"483\" y=\"551\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"551\"/>\n      <point x=\"676\" y=\"507\"/>\n      <point x=\"676\" y=\"420\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"676\" y=\"333\"/>\n      <point x=\"612\" y=\"290\"/>\n      <point x=\"483\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"199\" y=\"290\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"122\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"0\" type=\"line\"/>\n      <point x=\"216\" y=\"639\" type=\"line\"/>\n      <point x=\"122\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_alochka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Palochka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04C0\"/>\n  <outline>\n    <component base=\"I\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Pe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"041F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"847\" y=\"0\" type=\"line\"/>\n      <point x=\"943\" y=\"0\" type=\"line\"/>\n      <point x=\"1193\" y=\"1420\" type=\"line\"/>\n      <point x=\"1097\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"71\" y=\"0\" type=\"line\"/>\n      <point x=\"167\" y=\"0\" type=\"line\"/>\n      <point x=\"417\" y=\"1420\" type=\"line\"/>\n      <point x=\"321\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"352\" y=\"1330\" type=\"line\"/>\n      <point x=\"1135\" y=\"1330\" type=\"line\"/>\n      <point x=\"1155\" y=\"1420\" type=\"line\"/>\n      <point x=\"372\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_hi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Phi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A6\"/>\n  <outline>\n    <component base=\"Ef-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Pi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A0\"/>\n  <outline>\n    <component base=\"Pe-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_si.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Psi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A8\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"570\" y=\"359\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"902\" y=\"359\"/>\n      <point x=\"1099\" y=\"521\"/>\n      <point x=\"1157\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1257\" y=\"1420\" type=\"line\"/>\n      <point x=\"1161\" y=\"1420\" type=\"line\"/>\n      <point x=\"1061\" y=\"850\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"582\"/>\n      <point x=\"855\" y=\"449\"/>\n      <point x=\"586\" y=\"449\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"449\"/>\n      <point x=\"206\" y=\"582\"/>\n      <point x=\"253\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"1420\" type=\"line\"/>\n      <point x=\"257\" y=\"1420\" type=\"line\"/>\n      <point x=\"157\" y=\"850\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"521\"/>\n      <point x=\"238\" y=\"359\"/>\n    </contour>\n    <contour>\n      <point x=\"531\" y=\"402\" type=\"line\"/>\n      <point x=\"459\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"625\" y=\"402\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"625\" y=\"402\" type=\"line\"/>\n      <point x=\"805\" y=\"1420\" type=\"line\"/>\n      <point x=\"709\" y=\"1420\" type=\"line\"/>\n      <point x=\"531\" y=\"402\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Q_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Q\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0051\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"816\" y=\"-460\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"839\" y=\"-460\" type=\"line\"/>\n      <point x=\"856\" y=\"-372\" type=\"line\"/>\n      <point x=\"821\" y=\"-372\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"-372\"/>\n      <point x=\"537\" y=\"-244\"/>\n      <point x=\"576\" y=\"-22\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"587\" y=\"42\" type=\"line\"/>\n      <point x=\"497\" y=\"42\" type=\"line\"/>\n      <point x=\"486\" y=\"-20\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"-299\"/>\n      <point x=\"561\" y=\"-460\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Q_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Q.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"612\" y=\"-217\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"-217\" type=\"line\"/>\n      <point x=\"719\" y=\"-132\" type=\"line\"/>\n      <point x=\"612\" y=\"-132\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"-132\"/>\n      <point x=\"464\" y=\"-98\"/>\n      <point x=\"464\" y=\"-30\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"27\" type=\"line\"/>\n      <point x=\"370\" y=\"27\" type=\"line\"/>\n      <point x=\"370\" y=\"-29\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"370\" y=\"-155\"/>\n      <point x=\"450\" y=\"-217\"/>\n    </contour>\n    <component base=\"O.half\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>O.half</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"R\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0052\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"707\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"500\" type=\"line\"/>\n      <point x=\"253\" y=\"500\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"846\" y=\"500\"/>\n      <point x=\"1155\" y=\"686\"/>\n      <point x=\"1155\" y=\"1041\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1155\" y=\"1304\"/>\n      <point x=\"970\" y=\"1440\"/>\n      <point x=\"615\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"1440\"/>\n      <point x=\"395\" y=\"1433\"/>\n      <point x=\"321\" y=\"1420\" type=\"curve\"/>\n      <point x=\"328\" y=\"1330\" type=\"line\"/>\n      <point x=\"395\" y=\"1343\"/>\n      <point x=\"486\" y=\"1350\"/>\n      <point x=\"592\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"1350\"/>\n      <point x=\"1059\" y=\"1242\"/>\n      <point x=\"1059\" y=\"1038\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1059\" y=\"744\"/>\n      <point x=\"794\" y=\"590\"/>\n      <point x=\"286\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"590\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"71\" y=\"0\" type=\"line\"/>\n      <point x=\"167\" y=\"0\" type=\"line\"/>\n      <point x=\"417\" y=\"1420\" type=\"line\"/>\n      <point x=\"321\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"920\" y=\"0\" type=\"line\"/>\n      <point x=\"1029\" y=\"0\" type=\"line\"/>\n      <point x=\"809\" y=\"610\" type=\"line\"/>\n      <point x=\"704\" y=\"610\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"R.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"192\" y=\"247\" type=\"line\"/>\n      <point x=\"516\" y=\"247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"247\"/>\n      <point x=\"753\" y=\"320\"/>\n      <point x=\"753\" y=\"447\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"569\"/>\n      <point x=\"667\" y=\"639\"/>\n      <point x=\"516\" y=\"639\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"178\" y=\"639\" type=\"line\"/>\n      <point x=\"195\" y=\"551\" type=\"line\"/>\n      <point x=\"516\" y=\"551\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"551\"/>\n      <point x=\"655\" y=\"510\"/>\n      <point x=\"655\" y=\"438\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"372\"/>\n      <point x=\"604\" y=\"335\"/>\n      <point x=\"516\" y=\"335\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"335\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"108\" y=\"0\" type=\"line\"/>\n      <point x=\"202\" y=\"0\" type=\"line\"/>\n      <point x=\"202\" y=\"639\" type=\"line\"/>\n      <point x=\"108\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"676\" y=\"0\" type=\"line\"/>\n      <point x=\"789\" y=\"0\" type=\"line\"/>\n      <point x=\"546\" y=\"301\" type=\"line\"/>\n      <point x=\"442\" y=\"301\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Racute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0154\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0158\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-50\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0156\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E5A\"/>\n  <outline>\n    <component base=\"R\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_ho.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Rho\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A1\"/>\n  <outline>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"S\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0053\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"486\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"-20\"/>\n      <point x=\"1007\" y=\"114\"/>\n      <point x=\"1007\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1007\" y=\"459\"/>\n      <point x=\"923\" y=\"543\"/>\n      <point x=\"823\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"864\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"936\"/>\n      <point x=\"400\" y=\"1013\"/>\n      <point x=\"400\" y=\"1114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1262\"/>\n      <point x=\"521\" y=\"1350\"/>\n      <point x=\"727\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"1350\"/>\n      <point x=\"982\" y=\"1309\"/>\n      <point x=\"1086\" y=\"1201\" type=\"curve\"/>\n      <point x=\"1157\" y=\"1271\" type=\"line\"/>\n      <point x=\"1056\" y=\"1382\"/>\n      <point x=\"913\" y=\"1440\"/>\n      <point x=\"739\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"1440\"/>\n      <point x=\"304\" y=\"1313\"/>\n      <point x=\"304\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"981\"/>\n      <point x=\"373\" y=\"891\"/>\n      <point x=\"462\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"482\"/>\n      <point x=\"911\" y=\"412\"/>\n      <point x=\"911\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"162\"/>\n      <point x=\"760\" y=\"70\"/>\n      <point x=\"505\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"70\"/>\n      <point x=\"242\" y=\"101\"/>\n      <point x=\"108\" y=\"160\" type=\"curve\"/>\n      <point x=\"71\" y=\"64\" type=\"line\"/>\n      <point x=\"183\" y=\"9\"/>\n      <point x=\"325\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"S.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"385\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"616\" y=\"-9\"/>\n      <point x=\"730\" y=\"51\"/>\n      <point x=\"730\" y=\"172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"730\" y=\"252\"/>\n      <point x=\"674\" y=\"306\"/>\n      <point x=\"560\" y=\"336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"392\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"406\"/>\n      <point x=\"224\" y=\"431\"/>\n      <point x=\"224\" y=\"468\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"528\"/>\n      <point x=\"296\" y=\"558\"/>\n      <point x=\"442\" y=\"558\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"558\"/>\n      <point x=\"596\" y=\"543\"/>\n      <point x=\"671\" y=\"513\" type=\"curve\"/>\n      <point x=\"722\" y=\"598\" type=\"line\"/>\n      <point x=\"629\" y=\"631\"/>\n      <point x=\"536\" y=\"648\"/>\n      <point x=\"441\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"231\" y=\"648\"/>\n      <point x=\"127\" y=\"587\"/>\n      <point x=\"127\" y=\"464\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"127\" y=\"387\"/>\n      <point x=\"174\" y=\"336\"/>\n      <point x=\"270\" y=\"310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"248\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"233\"/>\n      <point x=\"632\" y=\"207\"/>\n      <point x=\"632\" y=\"170\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"110\"/>\n      <point x=\"554\" y=\"81\"/>\n      <point x=\"397\" y=\"81\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"81\"/>\n      <point x=\"216\" y=\"95\"/>\n      <point x=\"113\" y=\"123\" type=\"curve\"/>\n      <point x=\"100\" y=\"25\" type=\"line\"/>\n      <point x=\"182\" y=\"2\"/>\n      <point x=\"277\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015A\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"acutecomb.case.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0160\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015E\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"cedillacomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_chwa-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Schwa-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04D8\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"435\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"-20\"/>\n      <point x=\"1164\" y=\"304\"/>\n      <point x=\"1164\" y=\"851\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1164\" y=\"1221\"/>\n      <point x=\"945\" y=\"1440\"/>\n      <point x=\"575\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"1440\"/>\n      <point x=\"345\" y=\"1416\"/>\n      <point x=\"242\" y=\"1376\" type=\"curve\"/>\n      <point x=\"272\" y=\"1288\" type=\"line\"/>\n      <point x=\"366\" y=\"1327\"/>\n      <point x=\"476\" y=\"1350\"/>\n      <point x=\"566\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"1350\"/>\n      <point x=\"1066\" y=\"1160\"/>\n      <point x=\"1068\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1067\" y=\"356\"/>\n      <point x=\"808\" y=\"70\"/>\n      <point x=\"451\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"70\"/>\n      <point x=\"195\" y=\"167\"/>\n      <point x=\"195\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"195\" y=\"546\"/>\n      <point x=\"383\" y=\"778\"/>\n      <point x=\"832\" y=\"778\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"778\"/>\n      <point x=\"1025\" y=\"772\"/>\n      <point x=\"1119\" y=\"759\" type=\"curve\"/>\n      <point x=\"1078\" y=\"849\" type=\"line\"/>\n      <point x=\"991\" y=\"861\"/>\n      <point x=\"910\" y=\"866\"/>\n      <point x=\"836\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"866\"/>\n      <point x=\"99\" y=\"593\"/>\n      <point x=\"99\" y=\"300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"108\"/>\n      <point x=\"233\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_chwa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Schwa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"018F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"566\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"1350\"/>\n      <point x=\"1066\" y=\"1160\"/>\n      <point x=\"1068\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1067\" y=\"356\"/>\n      <point x=\"838\" y=\"70\"/>\n      <point x=\"451\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"297\" y=\"70\"/>\n      <point x=\"195\" y=\"167\"/>\n      <point x=\"195\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"195\" y=\"584\"/>\n      <point x=\"538\" y=\"749\"/>\n      <point x=\"1119\" y=\"759\" type=\"curve\"/>\n      <point x=\"1078\" y=\"849\" type=\"line\"/>\n      <point x=\"463\" y=\"838\"/>\n      <point x=\"99\" y=\"634\"/>\n      <point x=\"99\" y=\"300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"99\" y=\"108\"/>\n      <point x=\"233\" y=\"-20\"/>\n      <point x=\"435\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"-20\"/>\n      <point x=\"1164\" y=\"304\"/>\n      <point x=\"1164\" y=\"851\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1164\" y=\"1221\"/>\n      <point x=\"945\" y=\"1440\"/>\n      <point x=\"575\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"1440\"/>\n      <point x=\"345\" y=\"1416\"/>\n      <point x=\"242\" y=\"1376\" type=\"curve\"/>\n      <point x=\"272\" y=\"1288\" type=\"line\"/>\n      <point x=\"366\" y=\"1327\"/>\n      <point x=\"476\" y=\"1350\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"015C\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Scommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0218\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E62\"/>\n  <outline>\n    <component base=\"S\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_ha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0428\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"859\" y=\"0\" type=\"line\"/>\n      <point x=\"955\" y=\"0\" type=\"line\"/>\n      <point x=\"1205\" y=\"1420\" type=\"line\"/>\n      <point x=\"1109\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"0\" type=\"line\"/>\n      <point x=\"918\" y=\"0\" type=\"line\"/>\n      <point x=\"934\" y=\"90\" type=\"line\"/>\n      <point x=\"117\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"59\" y=\"0\" type=\"line\"/>\n      <point x=\"155\" y=\"0\" type=\"line\"/>\n      <point x=\"405\" y=\"1420\" type=\"line\"/>\n      <point x=\"309\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"1420\" type=\"line\"/>\n      <point x=\"709\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_hcha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Shcha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0429\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"859\" y=\"0\" type=\"line\"/>\n      <point x=\"955\" y=\"0\" type=\"line\"/>\n      <point x=\"1206\" y=\"1420\" type=\"line\"/>\n      <point x=\"1110\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"948\" y=\"-324\" type=\"line\"/>\n      <point x=\"998\" y=\"-192\"/>\n      <point x=\"1046\" y=\"-11\"/>\n      <point x=\"1055\" y=\"90\" type=\"curve\"/>\n      <point x=\"121\" y=\"90\" type=\"line\"/>\n      <point x=\"105\" y=\"0\" type=\"line\"/>\n      <point x=\"1032\" y=\"0\" type=\"line\"/>\n      <point x=\"950\" y=\"46\" type=\"line\"/>\n      <point x=\"941\" y=\"-46\"/>\n      <point x=\"897\" y=\"-192\"/>\n      <point x=\"854\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"59\" y=\"0\" type=\"line\"/>\n      <point x=\"155\" y=\"0\" type=\"line\"/>\n      <point x=\"406\" y=\"1420\" type=\"line\"/>\n      <point x=\"310\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"806\" y=\"1420\" type=\"line\"/>\n      <point x=\"710\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_hha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Shha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04BA\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1109\" y=\"0\" name=\"bottomright\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"867\" y=\"0\" type=\"line\"/>\n      <point x=\"962\" y=\"0\" type=\"line\"/>\n      <point x=\"983\" y=\"83\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1019\" y=\"225\"/>\n      <point x=\"1034\" y=\"365\"/>\n      <point x=\"1034\" y=\"446\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1034\" y=\"716\"/>\n      <point x=\"865\" y=\"874\"/>\n      <point x=\"619\" y=\"874\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"874\"/>\n      <point x=\"375\" y=\"856\"/>\n      <point x=\"291\" y=\"805\" type=\"curve\"/>\n      <point x=\"272\" y=\"698\" type=\"line\"/>\n      <point x=\"363\" y=\"757\"/>\n      <point x=\"461\" y=\"784\"/>\n      <point x=\"611\" y=\"784\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"784\"/>\n      <point x=\"938\" y=\"665\"/>\n      <point x=\"938\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"938\" y=\"352\"/>\n      <point x=\"921\" y=\"220\"/>\n      <point x=\"891\" y=\"97\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"81\" y=\"0\" type=\"line\"/>\n      <point x=\"177\" y=\"0\" type=\"line\"/>\n      <point x=\"427\" y=\"1420\" type=\"line\"/>\n      <point x=\"331\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_igma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Sigma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A3\"/>\n  <anchor x=\"506\" y=\"1\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1421\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"170\" y=\"38\" type=\"line\"/>\n      <point x=\"840\" y=\"712\" type=\"line\"/>\n      <point x=\"402\" y=\"1375\" type=\"line\"/>\n      <point x=\"314\" y=\"1330\" type=\"line\"/>\n      <point x=\"718\" y=\"721\" type=\"line\"/>\n      <point x=\"96\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"80\" y=\"0\" type=\"line\"/>\n      <point x=\"952\" y=\"0\" type=\"line\"/>\n      <point x=\"968\" y=\"90\" type=\"line\"/>\n      <point x=\"96\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"314\" y=\"1330\" type=\"line\"/>\n      <point x=\"1166\" y=\"1330\" type=\"line\"/>\n      <point x=\"1182\" y=\"1420\" type=\"line\"/>\n      <point x=\"330\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_oftsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Softsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042C\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"415\" y=\"0\" type=\"line\"/>\n      <point x=\"808\" y=\"0\"/>\n      <point x=\"1080\" y=\"203\"/>\n      <point x=\"1080\" y=\"518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"778\"/>\n      <point x=\"878\" y=\"939\"/>\n      <point x=\"587\" y=\"939\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"939\"/>\n      <point x=\"395\" y=\"930\"/>\n      <point x=\"312\" y=\"904\" type=\"curve\"/>\n      <point x=\"299\" y=\"808\" type=\"line\"/>\n      <point x=\"387\" y=\"837\"/>\n      <point x=\"473\" y=\"849\"/>\n      <point x=\"583\" y=\"849\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"849\"/>\n      <point x=\"984\" y=\"723\"/>\n      <point x=\"984\" y=\"517\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"984\" y=\"249\"/>\n      <point x=\"752\" y=\"90\"/>\n      <point x=\"421\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"90\" y=\"90\" type=\"line\"/>\n      <point x=\"73\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"71\" y=\"0\" type=\"line\"/>\n      <point x=\"167\" y=\"0\" type=\"line\"/>\n      <point x=\"417\" y=\"1420\" type=\"line\"/>\n      <point x=\"321\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"T\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0054\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"631\" y=\"710\" name=\"center\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"458\" y=\"0\" type=\"line\"/>\n      <point x=\"554\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"1420\" type=\"line\"/>\n      <point x=\"709\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"246\" y=\"1330\" type=\"line\"/>\n      <point x=\"1237\" y=\"1330\" type=\"line\"/>\n      <point x=\"1253\" y=\"1420\" type=\"line\"/>\n      <point x=\"261\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"T.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"467\" y=\"0\" type=\"line\"/>\n      <point x=\"467\" y=\"639\" type=\"line\"/>\n      <point x=\"373\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"551\" type=\"line\"/>\n      <point x=\"774\" y=\"551\" type=\"line\"/>\n      <point x=\"774\" y=\"639\" type=\"line\"/>\n      <point x=\"66\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_au.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tau\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A4\"/>\n  <outline>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0166\"/>\n  <outline>\n    <contour>\n      <point x=\"211\" y=\"637\" type=\"line\"/>\n      <point x=\"1027\" y=\"637\" type=\"line\"/>\n      <point x=\"1043\" y=\"727\" type=\"line\"/>\n      <point x=\"227\" y=\"727\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0164\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"caroncomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0162\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"cedillacomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_commaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021A\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_diagonalstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tdiagonalstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"023E\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"186\" y=\"-340\" type=\"line\"/>\n      <point x=\"1295\" y=\"1679\" type=\"line\"/>\n      <point x=\"1211\" y=\"1719\" type=\"line\"/>\n      <point x=\"114\" y=\"-304\" type=\"line\"/>\n    </contour>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Te-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0422\"/>\n  <outline>\n    <component base=\"T\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_heta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Theta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0398\"/>\n  <outline>\n    <contour>\n      <point x=\"180\" y=\"662\" type=\"line\"/>\n      <point x=\"1063\" y=\"662\" type=\"line\"/>\n      <point x=\"1083\" y=\"752\" type=\"line\"/>\n      <point x=\"200\" y=\"752\" type=\"line\"/>\n    </contour>\n    <component base=\"O\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Thorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DE\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"437\" y=\"1420\" type=\"line\"/>\n      <point x=\"341\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"155\" y=\"187\" type=\"line\"/>\n      <point x=\"197\" y=\"187\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"187\"/>\n      <point x=\"1129\" y=\"396\"/>\n      <point x=\"1129\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1129\" y=\"1073\"/>\n      <point x=\"944\" y=\"1217\"/>\n      <point x=\"589\" y=\"1217\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"1217\"/>\n      <point x=\"384\" y=\"1210\"/>\n      <point x=\"315\" y=\"1197\" type=\"curve\"/>\n      <point x=\"302\" y=\"1107\" type=\"line\"/>\n      <point x=\"369\" y=\"1120\"/>\n      <point x=\"460\" y=\"1127\"/>\n      <point x=\"566\" y=\"1127\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"1127\"/>\n      <point x=\"1033\" y=\"1012\"/>\n      <point x=\"1033\" y=\"795\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"455\"/>\n      <point x=\"758\" y=\"277\"/>\n      <point x=\"230\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"168\" y=\"277\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_linebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E6E\"/>\n  <guideline x=\"1286\" y=\"1420\" angle=\"81.5358\"/>\n  <guideline x=\"249\" y=\"1420\" angle=\"81.5358\"/>\n  <outline>\n    <component base=\"T\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_se-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tse-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0426\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"844\" y=\"0\" type=\"line\"/>\n      <point x=\"940\" y=\"0\" type=\"line\"/>\n      <point x=\"1191\" y=\"1420\" type=\"line\"/>\n      <point x=\"1095\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"948\" y=\"-324\" type=\"line\"/>\n      <point x=\"998\" y=\"-192\"/>\n      <point x=\"1046\" y=\"-11\"/>\n      <point x=\"1055\" y=\"90\" type=\"curve\"/>\n      <point x=\"121\" y=\"90\" type=\"line\"/>\n      <point x=\"105\" y=\"0\" type=\"line\"/>\n      <point x=\"1032\" y=\"0\" type=\"line\"/>\n      <point x=\"950\" y=\"46\" type=\"line\"/>\n      <point x=\"941\" y=\"-46\"/>\n      <point x=\"897\" y=\"-192\"/>\n      <point x=\"854\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"67\" y=\"0\" type=\"line\"/>\n      <point x=\"163\" y=\"0\" type=\"line\"/>\n      <point x=\"414\" y=\"1420\" type=\"line\"/>\n      <point x=\"318\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_she-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Tshe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040B\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"202\" y=\"0\" type=\"line\"/>\n      <point x=\"298\" y=\"0\" type=\"line\"/>\n      <point x=\"548\" y=\"1420\" type=\"line\"/>\n      <point x=\"452\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"875\" y=\"0\" type=\"line\"/>\n      <point x=\"965\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"85\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1014\" y=\"221\"/>\n      <point x=\"1045\" y=\"349\"/>\n      <point x=\"1045\" y=\"475\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1045\" y=\"712\"/>\n      <point x=\"940\" y=\"878\"/>\n      <point x=\"676\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"878\"/>\n      <point x=\"490\" y=\"860\"/>\n      <point x=\"412\" y=\"808\" type=\"curve\"/>\n      <point x=\"393\" y=\"699\" type=\"line\"/>\n      <point x=\"478\" y=\"760\"/>\n      <point x=\"569\" y=\"787\"/>\n      <point x=\"666\" y=\"787\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"787\"/>\n      <point x=\"949\" y=\"662\"/>\n      <point x=\"949\" y=\"477\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"949\" y=\"359\"/>\n      <point x=\"925\" y=\"235\"/>\n      <point x=\"896\" y=\"99\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"185\" y=\"1330\" type=\"line\"/>\n      <point x=\"957\" y=\"1330\" type=\"line\"/>\n      <point x=\"973\" y=\"1420\" type=\"line\"/>\n      <point x=\"201\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0423\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"181\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"-20\"/>\n      <point x=\"546\" y=\"65\"/>\n      <point x=\"726\" y=\"300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"574\"/>\n      <point x=\"1160\" y=\"1049\"/>\n      <point x=\"1263\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1168\" y=\"1420\" type=\"line\"/>\n      <point x=\"1070\" y=\"1067\"/>\n      <point x=\"860\" y=\"617\"/>\n      <point x=\"660\" y=\"355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"145\"/>\n      <point x=\"349\" y=\"70\"/>\n      <point x=\"181\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"70\"/>\n      <point x=\"107\" y=\"72\"/>\n      <point x=\"82\" y=\"79\" type=\"curve\"/>\n      <point x=\"65\" y=\"-10\" type=\"line\"/>\n      <point x=\"103\" y=\"-18\"/>\n      <point x=\"139\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"619\" y=\"277\" type=\"line\"/>\n      <point x=\"722\" y=\"405\" type=\"line\"/>\n      <point x=\"669\" y=\"405\" type=\"line\"/>\n      <point x=\"330\" y=\"1435\" type=\"line\"/>\n      <point x=\"231\" y=\"1418\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0055\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"973\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1372\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"524\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"-20\"/>\n      <point x=\"968\" y=\"143\"/>\n      <point x=\"1023\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1193\" y=\"1420\" type=\"line\"/>\n      <point x=\"1097\" y=\"1420\" type=\"line\"/>\n      <point x=\"927\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"202\"/>\n      <point x=\"746\" y=\"70\"/>\n      <point x=\"536\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"302\" y=\"70\"/>\n      <point x=\"202\" y=\"203\"/>\n      <point x=\"247\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"1420\" type=\"line\"/>\n      <point x=\"321\" y=\"1420\" type=\"line\"/>\n      <point x=\"151\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"96\" y=\"143\"/>\n      <point x=\"225\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"U.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"417\" y=\"-9\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"-9\"/>\n      <point x=\"732\" y=\"70\"/>\n      <point x=\"732\" y=\"255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"639\" type=\"line\"/>\n      <point x=\"638\" y=\"639\" type=\"line\"/>\n      <point x=\"638\" y=\"255\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"130\"/>\n      <point x=\"573\" y=\"77\"/>\n      <point x=\"420\" y=\"77\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"77\"/>\n      <point x=\"202\" y=\"130\"/>\n      <point x=\"202\" y=\"255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"202\" y=\"639\" type=\"line\"/>\n      <point x=\"108\" y=\"639\" type=\"line\"/>\n      <point x=\"108\" y=\"255\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"108\" y=\"70\"/>\n      <point x=\"200\" y=\"-9\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DA\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ubreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016C\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"brevecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ucircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DB\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Udieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DC\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Udotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE4\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ugrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D9\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE6\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_horn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01AF\"/>\n  <outline>\n    <contour>\n      <point x=\"1110\" y=\"1335\" type=\"line\"/>\n      <point x=\"1172\" y=\"1345\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1351\" y=\"1375\"/>\n      <point x=\"1442\" y=\"1460\"/>\n      <point x=\"1476\" y=\"1653\" type=\"curve\"/>\n      <point x=\"1380\" y=\"1653\" type=\"line\"/>\n      <point x=\"1356\" y=\"1512\"/>\n      <point x=\"1293\" y=\"1451\"/>\n      <point x=\"1167\" y=\"1430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1105\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"U\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_hornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE8\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_horndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF0\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_horngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEA\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_hornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEC\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_horntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EEE\"/>\n  <outline>\n    <component base=\"Uhorn\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uhungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0170\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"hungarumlautcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_macron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Umacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04EE\"/>\n  <outline>\n    <component base=\"U-cy\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Umacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016A\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0172\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"513\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"-423\"/>\n      <point x=\"598\" y=\"-417\"/>\n      <point x=\"627\" y=\"-405\" type=\"curve\"/>\n      <point x=\"614\" y=\"-322\" type=\"line\"/>\n      <point x=\"594\" y=\"-329\"/>\n      <point x=\"563\" y=\"-336\"/>\n      <point x=\"529\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"-336\"/>\n      <point x=\"407\" y=\"-301\"/>\n      <point x=\"407\" y=\"-234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"407\" y=\"-95\"/>\n      <point x=\"547\" y=\"-34\"/>\n      <point x=\"671\" y=\"-1\" type=\"curve\"/>\n      <point x=\"586\" y=\"34\" type=\"line\"/>\n      <point x=\"476\" y=\"52\" type=\"line\"/>\n      <point x=\"476\" y=\"-24\" type=\"line\"/>\n      <point x=\"365\" y=\"-77\"/>\n      <point x=\"313\" y=\"-162\"/>\n      <point x=\"313\" y=\"-254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"-364\"/>\n      <point x=\"382\" y=\"-423\"/>\n    </contour>\n    <component base=\"U\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_psilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03A5\"/>\n  <outline>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_psilonafrican.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilonafrican\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B1\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"1389\" type=\"line\"/>\n      <point x=\"508\" y=\"1318\" type=\"line\"/>\n      <point x=\"231\" y=\"1168\"/>\n      <point x=\"86\" y=\"888\"/>\n      <point x=\"86\" y=\"468\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"86\" y=\"162\"/>\n      <point x=\"241\" y=\"-20\"/>\n      <point x=\"504\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"-20\"/>\n      <point x=\"1157\" y=\"317\"/>\n      <point x=\"1157\" y=\"887\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1157\" y=\"1098\"/>\n      <point x=\"1091\" y=\"1259\"/>\n      <point x=\"977\" y=\"1318\" type=\"curve\"/>\n      <point x=\"977\" y=\"1381\" type=\"line\"/>\n      <point x=\"835\" y=\"1330\" type=\"line\"/>\n      <point x=\"978\" y=\"1281\"/>\n      <point x=\"1061\" y=\"1119\"/>\n      <point x=\"1061\" y=\"894\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1061\" y=\"376\"/>\n      <point x=\"859\" y=\"70\"/>\n      <point x=\"518\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"70\"/>\n      <point x=\"182\" y=\"218\"/>\n      <point x=\"182\" y=\"470\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"182\" y=\"891\"/>\n      <point x=\"341\" y=\"1164\"/>\n      <point x=\"646\" y=\"1330\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"280\" y=\"1420\" type=\"line\"/>\n      <point x=\"264\" y=\"1330\" type=\"line\"/>\n      <point x=\"646\" y=\"1330\" type=\"line\"/>\n      <point x=\"662\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"851\" y=\"1420\" type=\"line\"/>\n      <point x=\"835\" y=\"1330\" type=\"line\"/>\n      <point x=\"1211\" y=\"1330\" type=\"line\"/>\n      <point x=\"1227\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_psilondieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilondieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AB\"/>\n  <outline>\n    <component base=\"Upsilon\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_psilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Upsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"038E\"/>\n  <anchor x=\"675\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"925\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"608\" y=\"0\" type=\"line\"/>\n      <point x=\"704\" y=\"0\" type=\"line\"/>\n      <point x=\"809\" y=\"594\" type=\"line\"/>\n      <point x=\"713\" y=\"594\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"713\" y=\"475\" type=\"line\"/>\n      <point x=\"746\" y=\"458\" type=\"line\"/>\n      <point x=\"991\" y=\"771\"/>\n      <point x=\"1173\" y=\"1036\"/>\n      <point x=\"1308\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1212\" y=\"1420\" type=\"line\"/>\n      <point x=\"1092\" y=\"1099\"/>\n      <point x=\"960\" y=\"886\"/>\n      <point x=\"779\" y=\"626\" type=\"curve\"/>\n      <point x=\"761\" y=\"626\" type=\"line\"/>\n      <point x=\"606\" y=\"1435\" type=\"line\"/>\n      <point x=\"506\" y=\"1418\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"113\" y=\"1040\" type=\"line\"/>\n      <point x=\"207\" y=\"1040\" type=\"line\"/>\n      <point x=\"386\" y=\"1420\" type=\"line\"/>\n      <point x=\"277\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_ring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Uring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"016E\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"ringcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_short-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ushort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"040E\"/>\n  <outline>\n    <component base=\"U-cy\"/>\n    <component base=\"brevecomb-cy.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_straight-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ustraight-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04AE\"/>\n  <outline>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_straightstroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ustraightstroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B0\"/>\n  <outline>\n    <contour>\n      <point x=\"233\" y=\"405\" type=\"line\"/>\n      <point x=\"922\" y=\"405\" type=\"line\"/>\n      <point x=\"938\" y=\"495\" type=\"line\"/>\n      <point x=\"249\" y=\"495\" type=\"line\"/>\n    </contour>\n    <component base=\"Y\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Utilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0168\"/>\n  <outline>\n    <component base=\"U\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"V\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0056\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"397\" y=\"0\" type=\"line\"/>\n      <point x=\"549\" y=\"0\" type=\"line\"/>\n      <point x=\"887\" y=\"388\"/>\n      <point x=\"1127\" y=\"866\"/>\n      <point x=\"1288\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1192\" y=\"1420\" type=\"line\"/>\n      <point x=\"1020\" y=\"876\"/>\n      <point x=\"795\" y=\"433\"/>\n      <point x=\"502\" y=\"77\" type=\"curve\"/>\n      <point x=\"484\" y=\"77\" type=\"line\"/>\n      <point x=\"328\" y=\"1432\" type=\"line\"/>\n      <point x=\"226\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"V.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"355\" y=\"0\" type=\"line\"/>\n      <point x=\"486\" y=\"0\" type=\"line\"/>\n      <point x=\"799\" y=\"639\" type=\"line\"/>\n      <point x=\"700\" y=\"639\" type=\"line\"/>\n      <point x=\"425\" y=\"80\" type=\"line\"/>\n      <point x=\"416\" y=\"80\" type=\"line\"/>\n      <point x=\"141\" y=\"639\" type=\"line\"/>\n      <point x=\"42\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ve-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0412\"/>\n  <outline>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_hook.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Vhook\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01B2\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"1005\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"1354\" y=\"1420\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"833\" y=\"1420\" type=\"line\"/>\n      <point x=\"817\" y=\"1330\" type=\"line\"/>\n      <point x=\"949\" y=\"1330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1036\" y=\"1330\"/>\n      <point x=\"1072\" y=\"1275\"/>\n      <point x=\"1053\" y=\"1170\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"200\"/>\n      <point x=\"744\" y=\"70\"/>\n      <point x=\"519\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"70\"/>\n      <point x=\"202\" y=\"200\"/>\n      <point x=\"247\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"417\" y=\"1420\" type=\"line\"/>\n      <point x=\"321\" y=\"1420\" type=\"line\"/>\n      <point x=\"151\" y=\"456\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"95\" y=\"138\"/>\n      <point x=\"211\" y=\"-20\"/>\n      <point x=\"499\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"-20\"/>\n      <point x=\"967\" y=\"138\"/>\n      <point x=\"1023\" y=\"456\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1149\" y=\"1170\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1178\" y=\"1334\"/>\n      <point x=\"1115\" y=\"1420\"/>\n      <point x=\"967\" y=\"1420\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_turned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Vturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0245\"/>\n  <outline>\n    <component base=\"El-cy.loclBGR\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"W\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0057\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"717\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"579\" y=\"0\" type=\"line\"/>\n      <point x=\"754\" y=\"0\" type=\"line\"/>\n      <point x=\"991\" y=\"383\"/>\n      <point x=\"1233\" y=\"871\"/>\n      <point x=\"1311\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1215\" y=\"1420\" type=\"line\"/>\n      <point x=\"1134\" y=\"886\"/>\n      <point x=\"890\" y=\"433\"/>\n      <point x=\"694\" y=\"77\" type=\"curve\"/>\n      <point x=\"676\" y=\"77\" type=\"line\"/>\n      <point x=\"715\" y=\"1067\" type=\"line\"/>\n      <point x=\"613\" y=\"1060\" type=\"line\"/>\n      <point x=\"601\" y=\"505\" type=\"line\"/>\n      <point x=\"602\" y=\"505\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"177\" y=\"0\" type=\"line\"/>\n      <point x=\"359\" y=\"0\" type=\"line\"/>\n      <point x=\"652\" y=\"596\" type=\"line\"/>\n      <point x=\"516\" y=\"466\" type=\"line\"/>\n      <point x=\"669\" y=\"466\" type=\"line\"/>\n      <point x=\"624\" y=\"737\" type=\"line\"/>\n      <point x=\"292\" y=\"77\" type=\"line\"/>\n      <point x=\"274\" y=\"77\" type=\"line\"/>\n      <point x=\"303\" y=\"1429\" type=\"line\"/>\n      <point x=\"201\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E82\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0174\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wdieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E84\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"dieresiscomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Wgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E80\"/>\n  <outline>\n    <component base=\"W\"/>\n    <component base=\"gravecomb.case\" xOffset=\"-40\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/X_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"X\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0058\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"115\" y=\"-20\" type=\"line\"/>\n      <point x=\"639\" y=\"643\" type=\"line\"/>\n      <point x=\"1174\" y=\"1370\" type=\"line\"/>\n      <point x=\"1103\" y=\"1430\" type=\"line\"/>\n      <point x=\"604\" y=\"746\" type=\"line\"/>\n      <point x=\"44\" y=\"50\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"810\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"-20\"/>\n      <point x=\"954\" y=\"-4\"/>\n      <point x=\"1025\" y=\"44\" type=\"curve\"/>\n      <point x=\"988\" y=\"128\" type=\"line\"/>\n      <point x=\"935\" y=\"91\"/>\n      <point x=\"880\" y=\"72\"/>\n      <point x=\"829\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"734\" y=\"72\"/>\n      <point x=\"684\" y=\"139\"/>\n      <point x=\"682\" y=\"268\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"1191\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"1354\"/>\n      <point x=\"589\" y=\"1440\"/>\n      <point x=\"455\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"397\" y=\"1440\"/>\n      <point x=\"323\" y=\"1427\"/>\n      <point x=\"240\" y=\"1386\" type=\"curve\"/>\n      <point x=\"272\" y=\"1304\" type=\"line\"/>\n      <point x=\"325\" y=\"1333\"/>\n      <point x=\"381\" y=\"1348\"/>\n      <point x=\"436\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"1348\"/>\n      <point x=\"566\" y=\"1288\"/>\n      <point x=\"568\" y=\"1172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"586\" y=\"249\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"72\"/>\n      <point x=\"666\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/X_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"X.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"663\" y=\"0\" type=\"line\"/>\n      <point x=\"785\" y=\"0\" type=\"line\"/>\n      <point x=\"461\" y=\"336\" type=\"line\"/>\n      <point x=\"178\" y=\"639\" type=\"line\"/>\n      <point x=\"56\" y=\"639\" type=\"line\"/>\n      <point x=\"389\" y=\"286\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"56\" y=\"0\" type=\"line\"/>\n      <point x=\"178\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"286\" type=\"line\"/>\n      <point x=\"785\" y=\"639\" type=\"line\"/>\n      <point x=\"663\" y=\"639\" type=\"line\"/>\n      <point x=\"379\" y=\"335\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/X_i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Xi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"039E\"/>\n  <anchor x=\"506\" y=\"1\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1421\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"265\" y=\"1330\" type=\"line\"/>\n      <point x=\"1216\" y=\"1330\" type=\"line\"/>\n      <point x=\"1232\" y=\"1420\" type=\"line\"/>\n      <point x=\"281\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"31\" y=\"0\" type=\"line\"/>\n      <point x=\"982\" y=\"0\" type=\"line\"/>\n      <point x=\"998\" y=\"90\" type=\"line\"/>\n      <point x=\"47\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"218\" y=\"666\" type=\"line\"/>\n      <point x=\"1029\" y=\"666\" type=\"line\"/>\n      <point x=\"1045\" y=\"756\" type=\"line\"/>\n      <point x=\"234\" y=\"756\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Y\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0059\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <anchor x=\"158\" y=\"1420\" name=\"topleft\"/>\n  <outline>\n    <contour>\n      <point x=\"458\" y=\"0\" type=\"line\"/>\n      <point x=\"554\" y=\"0\" type=\"line\"/>\n      <point x=\"659\" y=\"594\" type=\"line\"/>\n      <point x=\"563\" y=\"594\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"563\" y=\"475\" type=\"line\"/>\n      <point x=\"596\" y=\"458\" type=\"line\"/>\n      <point x=\"906\" y=\"771\"/>\n      <point x=\"1137\" y=\"1036\"/>\n      <point x=\"1308\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1212\" y=\"1420\" type=\"line\"/>\n      <point x=\"1049\" y=\"1091\"/>\n      <point x=\"871\" y=\"873\"/>\n      <point x=\"626\" y=\"606\" type=\"curve\"/>\n      <point x=\"608\" y=\"606\" type=\"line\"/>\n      <point x=\"306\" y=\"1435\" type=\"line\"/>\n      <point x=\"206\" y=\"1418\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Y.half\" format=\"2\">\n  <advance width=\"841\"/>\n  <outline>\n    <contour>\n      <point x=\"386\" y=\"168\" type=\"line\"/>\n      <point x=\"455\" y=\"168\" type=\"line\"/>\n      <point x=\"813\" y=\"639\" type=\"line\"/>\n      <point x=\"709\" y=\"639\" type=\"line\"/>\n      <point x=\"425\" y=\"267\" type=\"line\"/>\n      <point x=\"416\" y=\"267\" type=\"line\"/>\n      <point x=\"132\" y=\"639\" type=\"line\"/>\n      <point x=\"28\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"373\" y=\"0\" type=\"line\"/>\n      <point x=\"468\" y=\"0\" type=\"line\"/>\n      <point x=\"468\" y=\"257\" type=\"line\"/>\n      <point x=\"373\" y=\"257\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DD\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"acutecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ycircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0176\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"circumflexcomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ydieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0178\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"dieresiscomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_dotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ydotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF4\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_eru-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yeru-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"042B\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"92\" y=\"0\" type=\"line\"/>\n      <point x=\"268\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"0\"/>\n      <point x=\"768\" y=\"271\"/>\n      <point x=\"768\" y=\"576\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"768\" y=\"800\"/>\n      <point x=\"636\" y=\"940\"/>\n      <point x=\"417\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"940\"/>\n      <point x=\"315\" y=\"932\"/>\n      <point x=\"256\" y=\"906\" type=\"curve\"/>\n      <point x=\"240\" y=\"809\" type=\"line\"/>\n      <point x=\"292\" y=\"835\"/>\n      <point x=\"352\" y=\"850\"/>\n      <point x=\"410\" y=\"850\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"850\"/>\n      <point x=\"672\" y=\"744\"/>\n      <point x=\"672\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"316\"/>\n      <point x=\"522\" y=\"90\"/>\n      <point x=\"277\" y=\"90\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"108\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"60\" y=\"0\" type=\"line\"/>\n      <point x=\"157\" y=\"0\" type=\"line\"/>\n      <point x=\"165\" y=\"47\" type=\"line\"/>\n      <point x=\"406\" y=\"1420\" type=\"line\"/>\n      <point x=\"310\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"859\" y=\"0\" type=\"line\"/>\n      <point x=\"955\" y=\"0\" type=\"line\"/>\n      <point x=\"1205\" y=\"1420\" type=\"line\"/>\n      <point x=\"1109\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ygrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF2\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"gravecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_hookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF6\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"hookabovecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Yi-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0407\"/>\n  <outline>\n    <component base=\"I\"/>\n    <component base=\"dieresiscomb.case\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ymacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0232\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"macroncomb.case\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_tilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ytilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EF8\"/>\n  <outline>\n    <component base=\"Y\"/>\n    <component base=\"tildecomb.case\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Z\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"632\" y=\"710\" name=\"center\"/>\n  <anchor x=\"737\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"190\" y=\"58\" type=\"line\"/>\n      <point x=\"1187\" y=\"1330\" type=\"line\"/>\n      <point x=\"1093\" y=\"1362\" type=\"line\"/>\n      <point x=\"96\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"138\" y=\"0\" type=\"line\"/>\n      <point x=\"942\" y=\"0\" type=\"line\"/>\n      <point x=\"958\" y=\"90\" type=\"line\"/>\n      <point x=\"191\" y=\"90\" type=\"line\"/>\n      <point x=\"96\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"347\" y=\"1330\" type=\"line\"/>\n      <point x=\"1120\" y=\"1330\" type=\"line\"/>\n      <point x=\"1187\" y=\"1330\" type=\"line\"/>\n      <point x=\"1144\" y=\"1420\" type=\"line\"/>\n      <point x=\"362\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0179\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_acute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"acutecomb.case.loclPLK\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017D\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017B\"/>\n  <outline>\n    <component base=\"Z\"/>\n    <component base=\"dotaccentcomb.case\" xOffset=\"-20\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Ze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0417\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"489\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"-20\"/>\n      <point x=\"1039\" y=\"201\"/>\n      <point x=\"1027\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1018\" y=\"591\"/>\n      <point x=\"894\" y=\"707\"/>\n      <point x=\"659\" y=\"728\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"472\" y=\"745\" type=\"line\"/>\n      <point x=\"456\" y=\"674\" type=\"line\"/>\n      <point x=\"486\" y=\"675\"/>\n      <point x=\"499\" y=\"675\"/>\n      <point x=\"504\" y=\"675\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"769\" y=\"675\"/>\n      <point x=\"921\" y=\"581\"/>\n      <point x=\"930\" y=\"415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"234\"/>\n      <point x=\"768\" y=\"70\"/>\n      <point x=\"500\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"70\"/>\n      <point x=\"186\" y=\"132\"/>\n      <point x=\"89\" y=\"236\" type=\"curve\"/>\n      <point x=\"21\" y=\"160\" type=\"line\"/>\n      <point x=\"113\" y=\"61\"/>\n      <point x=\"275\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"456\" y=\"674\" type=\"line\"/>\n      <point x=\"642\" y=\"696\" type=\"line\"/>\n      <point x=\"642\" y=\"745\" type=\"line\"/>\n      <point x=\"993\" y=\"808\"/>\n      <point x=\"1103\" y=\"1003\"/>\n      <point x=\"1103\" y=\"1157\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1103\" y=\"1321\"/>\n      <point x=\"978\" y=\"1440\"/>\n      <point x=\"742\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"1440\"/>\n      <point x=\"406\" y=\"1381\"/>\n      <point x=\"272\" y=\"1273\" type=\"curve\"/>\n      <point x=\"323\" y=\"1203\" type=\"line\"/>\n      <point x=\"466\" y=\"1306\"/>\n      <point x=\"617\" y=\"1350\"/>\n      <point x=\"734\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"1350\"/>\n      <point x=\"1007\" y=\"1254\"/>\n      <point x=\"1007\" y=\"1135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1007\" y=\"983\"/>\n      <point x=\"846\" y=\"854\"/>\n      <point x=\"633\" y=\"799\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"582\" y=\"786\"/>\n      <point x=\"523\" y=\"774\"/>\n      <point x=\"452\" y=\"762\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zeta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0396\"/>\n  <outline>\n    <component base=\"Z\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_he-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0416\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"1420\" type=\"line\"/>\n      <point x=\"709\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-70\" y=\"0\" type=\"curve\"/>\n      <point x=\"35\" y=\"0\" type=\"line\"/>\n      <point x=\"136\" y=\"200\"/>\n      <point x=\"233\" y=\"384\"/>\n      <point x=\"409\" y=\"667\" type=\"curve\"/>\n      <point x=\"329\" y=\"708\" type=\"line\"/>\n      <point x=\"141\" y=\"405\"/>\n      <point x=\"36\" y=\"208\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"630\" type=\"line\"/>\n      <point x=\"895\" y=\"630\" type=\"line\"/>\n      <point x=\"903\" y=\"720\" type=\"line\"/>\n      <point x=\"346\" y=\"720\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"985\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"0\" type=\"line\"/>\n      <point x=\"946\" y=\"688\" type=\"line\"/>\n      <point x=\"856\" y=\"681\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"409\" y=\"650\" type=\"line\"/>\n      <point x=\"306\" y=\"1420\" type=\"line\"/>\n      <point x=\"208\" y=\"1420\" type=\"line\"/>\n      <point x=\"322\" y=\"654\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"928\" y=\"641\" type=\"line\"/>\n      <point x=\"1071\" y=\"857\"/>\n      <point x=\"1246\" y=\"1217\"/>\n      <point x=\"1329\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1232\" y=\"1420\" type=\"line\"/>\n      <point x=\"1146\" y=\"1222\"/>\n      <point x=\"981\" y=\"877\"/>\n      <point x=\"845\" y=\"672\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.annotations</key>\n      <array>\n        <dict>\n          <key>position</key>\n          <array>\n            <real>1010.795</real>\n            <real>-63.731</real>\n          </array>\n          <key>type</key>\n          <string>Minus</string>\n          <key>width</key>\n          <integer>100</integer>\n        </dict>\n        <dict>\n          <key>position</key>\n          <array>\n            <real>1081.285</real>\n            <real>-55.901</real>\n          </array>\n          <key>type</key>\n          <string>Minus</string>\n          <key>width</key>\n          <integer>100</integer>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_hedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"Zhedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0496\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"438\" y=\"0\" type=\"line\"/>\n      <point x=\"534\" y=\"0\" type=\"line\"/>\n      <point x=\"784\" y=\"1420\" type=\"line\"/>\n      <point x=\"688\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-76\" y=\"0\" type=\"curve\"/>\n      <point x=\"29\" y=\"0\" type=\"line\"/>\n      <point x=\"130\" y=\"200\"/>\n      <point x=\"227\" y=\"384\"/>\n      <point x=\"403\" y=\"667\" type=\"curve\"/>\n      <point x=\"323\" y=\"708\" type=\"line\"/>\n      <point x=\"135\" y=\"405\"/>\n      <point x=\"30\" y=\"208\"/>\n    </contour>\n    <contour>\n      <point x=\"1002\" y=\"-324\" type=\"line\"/>\n      <point x=\"1042\" y=\"-219\"/>\n      <point x=\"1089\" y=\"-37\"/>\n      <point x=\"1105\" y=\"90\" type=\"curve\"/>\n      <point x=\"1012\" y=\"90\" type=\"line\"/>\n      <point x=\"1002\" y=\"37\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"987\" y=\"-44\"/>\n      <point x=\"950\" y=\"-191\"/>\n      <point x=\"908\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"952\" y=\"0\" type=\"line\"/>\n      <point x=\"1050\" y=\"0\" type=\"line\"/>\n      <point x=\"906\" y=\"688\" type=\"line\"/>\n      <point x=\"816\" y=\"681\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"888\" y=\"641\" type=\"line\"/>\n      <point x=\"1031\" y=\"857\"/>\n      <point x=\"1207\" y=\"1217\"/>\n      <point x=\"1290\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1193\" y=\"1420\" type=\"line\"/>\n      <point x=\"1107\" y=\"1222\"/>\n      <point x=\"941\" y=\"877\"/>\n      <point x=\"805\" y=\"672\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"403\" y=\"650\" type=\"line\"/>\n      <point x=\"294\" y=\"1420\" type=\"line\"/>\n      <point x=\"196\" y=\"1420\" type=\"line\"/>\n      <point x=\"316\" y=\"654\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"630\" type=\"line\"/>\n      <point x=\"895\" y=\"630\" type=\"line\"/>\n      <point x=\"903\" y=\"720\" type=\"line\"/>\n      <point x=\"346\" y=\"720\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/_notdef.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\".notdef\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"863\" y=\"0\" type=\"line\"/>\n      <point x=\"953\" y=\"0\" type=\"line\"/>\n      <point x=\"1203\" y=\"1420\" type=\"line\"/>\n      <point x=\"1113\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"121\" y=\"0\" type=\"line\"/>\n      <point x=\"913\" y=\"0\" type=\"line\"/>\n      <point x=\"928\" y=\"88\" type=\"line\"/>\n      <point x=\"136\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"61\" y=\"0\" type=\"line\"/>\n      <point x=\"151\" y=\"0\" type=\"line\"/>\n      <point x=\"401\" y=\"1420\" type=\"line\"/>\n      <point x=\"311\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"356\" y=\"1332\" type=\"line\"/>\n      <point x=\"1148\" y=\"1332\" type=\"line\"/>\n      <point x=\"1163\" y=\"1420\" type=\"line\"/>\n      <point x=\"371\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/a-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"a-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0430\"/>\n  <outline>\n    <component base=\"a\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/a.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"a\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0061\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"982\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"723\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"372\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"-21\"/>\n      <point x=\"767\" y=\"125\"/>\n      <point x=\"847\" y=\"382\" type=\"curve\"/>\n      <point x=\"799\" y=\"284\" type=\"line\"/>\n      <point x=\"895\" y=\"284\" type=\"line\"/>\n      <point x=\"826\" y=\"289\" type=\"line\"/>\n      <point x=\"788\" y=\"82\"/>\n      <point x=\"845\" y=\"-10\"/>\n      <point x=\"1032\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"-10\" type=\"line\"/>\n      <point x=\"1095\" y=\"82\" type=\"line\"/>\n      <point x=\"1025\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"82\"/>\n      <point x=\"886\" y=\"147\"/>\n      <point x=\"906\" y=\"258\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"1070\" type=\"line\"/>\n      <point x=\"1031\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"478\" y=\"1070\"/>\n      <point x=\"68\" y=\"758\"/>\n      <point x=\"68\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"68\" y=\"88\"/>\n      <point x=\"178\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"387\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"247\" y=\"71\"/>\n      <point x=\"164\" y=\"148\"/>\n      <point x=\"164\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"677\"/>\n      <point x=\"502\" y=\"958\"/>\n      <point x=\"1023\" y=\"978\" type=\"curve\"/>\n      <point x=\"940\" y=\"997\" type=\"line\"/>\n      <point x=\"875\" y=\"627\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"272\"/>\n      <point x=\"622\" y=\"71\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"acutecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0103\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abreveacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abreveacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAF\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n    <component base=\"acutecomb\" xOffset=\"115\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abrevedotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevedotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB7\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abrevegrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevegrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n    <component base=\"gravecomb\" xOffset=\"115\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abrevehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n    <component base=\"hookabovecomb\" xOffset=\"115\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abrevetilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"abrevetilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"brevecomb\" xOffset=\"30\"/>\n    <component base=\"tildecomb\" xOffset=\"115\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01CE\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"caroncomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E2\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n    <component base=\"acutecomb\" xOffset=\"335\" yOffset=\"340\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAD\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA7\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n    <component base=\"gravecomb\" xOffset=\"336\" yOffset=\"340\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA9\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n    <component base=\"hookabovecomb\" xOffset=\"295\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EAB\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"circumflexcomb\" xOffset=\"30\"/>\n    <component base=\"tildecomb\" xOffset=\"118\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acknowledgeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acknowledgeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2406\"/>\n  <outline>\n    <component base=\"A.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"K.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>A.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>K.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acknowledgeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acknowledgeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"389\" y=\"185\" type=\"line\"/>\n      <point x=\"516\" y=\"185\" type=\"line\"/>\n      <point x=\"1062\" y=\"1236\" type=\"line\"/>\n      <point x=\"965\" y=\"1236\" type=\"line\"/>\n      <point x=\"459\" y=\"285\" type=\"line\"/>\n      <point x=\"441\" y=\"285\" type=\"line\"/>\n      <point x=\"227\" y=\"786\" type=\"line\"/>\n      <point x=\"130\" y=\"786\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B4\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"_viet_top\"/>\n  <anchor x=\"818\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"730\" y=\"1580\" type=\"line\"/>\n      <point x=\"842\" y=\"1580\" type=\"line\"/>\n      <point x=\"1080\" y=\"1831\" type=\"line\"/>\n      <point x=\"958\" y=\"1831\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutecomb.case.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.case.loclPLK\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"824\" y=\"1800\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"713\" y=\"1540\" type=\"line\"/>\n      <point x=\"810\" y=\"1540\" type=\"line\"/>\n      <point x=\"932\" y=\"1840\" type=\"line\"/>\n      <point x=\"835\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb\" format=\"2\">\n  <unicode hex=\"0301\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_viet_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"668\" y=\"1248\" type=\"line\"/>\n      <point x=\"782\" y=\"1248\" type=\"line\"/>\n      <point x=\"1041\" y=\"1628\" type=\"line\"/>\n      <point x=\"912\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutecomb.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutecomb.loclPLK\" format=\"2\">\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"785\" y=\"1580\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"680\" y=\"1248\" type=\"line\"/>\n      <point x=\"779\" y=\"1248\" type=\"line\"/>\n      <point x=\"940\" y=\"1648\" type=\"line\"/>\n      <point x=\"835\" y=\"1648\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutetonecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"acutetonecomb\" format=\"2\">\n  <unicode hex=\"0341\"/>\n  <outline>\n    <component base=\"acutecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/adieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"adieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E4\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dieresiscomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/adotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"adotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA1\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ae.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ae\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E6\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"878\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"70\"/>\n      <point x=\"624\" y=\"193\"/>\n      <point x=\"623\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"624\" y=\"754\"/>\n      <point x=\"751\" y=\"990\"/>\n      <point x=\"938\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1030\" y=\"990\"/>\n      <point x=\"1082\" y=\"924\"/>\n      <point x=\"1082\" y=\"818\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"620\"/>\n      <point x=\"908\" y=\"502\"/>\n      <point x=\"612\" y=\"496\" type=\"curve\"/>\n      <point x=\"613\" y=\"406\" type=\"line\"/>\n      <point x=\"968\" y=\"414\"/>\n      <point x=\"1178\" y=\"569\"/>\n      <point x=\"1178\" y=\"820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1178\" y=\"983\"/>\n      <point x=\"1095\" y=\"1080\"/>\n      <point x=\"954\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"1080\"/>\n      <point x=\"552\" y=\"804\"/>\n      <point x=\"552\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"132\"/>\n      <point x=\"670\" y=\"-20\"/>\n      <point x=\"870\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"-20\"/>\n      <point x=\"987\" y=\"-7\"/>\n      <point x=\"1039\" y=\"14\" type=\"curve\"/>\n      <point x=\"1018\" y=\"100\" type=\"line\"/>\n      <point x=\"972\" y=\"81\"/>\n      <point x=\"921\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"217\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"411\" y=\"-20\"/>\n      <point x=\"529\" y=\"93\"/>\n      <point x=\"573\" y=\"356\" type=\"curve\"/>\n      <point x=\"533\" y=\"264\" type=\"line\"/>\n      <point x=\"614\" y=\"264\" type=\"line\"/>\n      <point x=\"546\" y=\"556\" type=\"line\"/>\n      <point x=\"513\" y=\"380\" type=\"line\"/>\n      <point x=\"481\" y=\"182\"/>\n      <point x=\"366\" y=\"70\"/>\n      <point x=\"232\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"133\" y=\"70\"/>\n      <point x=\"81\" y=\"127\"/>\n      <point x=\"81\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"81\" y=\"399\"/>\n      <point x=\"209\" y=\"511\"/>\n      <point x=\"408\" y=\"511\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"511\"/>\n      <point x=\"553\" y=\"501\"/>\n      <point x=\"585\" y=\"481\" type=\"curve\"/>\n      <point x=\"610\" y=\"565\" type=\"line\"/>\n      <point x=\"569\" y=\"588\"/>\n      <point x=\"491\" y=\"601\"/>\n      <point x=\"419\" y=\"601\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"160\" y=\"601\"/>\n      <point x=\"-15\" y=\"448\"/>\n      <point x=\"-15\" y=\"222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-15\" y=\"67\"/>\n      <point x=\"67\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"500\" y=\"310\" type=\"line\"/>\n      <point x=\"570\" y=\"310\" type=\"line\"/>\n      <point x=\"618\" y=\"584\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"881\"/>\n      <point x=\"536\" y=\"1070\"/>\n      <point x=\"283\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"241\" y=\"1070\" type=\"line\"/>\n      <point x=\"227\" y=\"980\" type=\"line\"/>\n      <point x=\"246\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"980\"/>\n      <point x=\"591\" y=\"830\"/>\n      <point x=\"554\" y=\"616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"392\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aeacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aeacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FD\"/>\n  <outline>\n    <component base=\"ae\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/agrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"agrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E0\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"gravecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ahookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ahookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EA3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"hookabovecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/alpha-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alpha-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0251\"/>\n  <outline>\n    <component base=\"alpha\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/alpha.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alpha\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B1\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"982\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"723\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"636\" y=\"978\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"978\"/>\n      <point x=\"873\" y=\"911\"/>\n      <point x=\"939\" y=\"766\" type=\"curve\"/>\n      <point x=\"932\" y=\"910\" type=\"line\"/>\n      <point x=\"919\" y=\"910\" type=\"line\"/>\n      <point x=\"872\" y=\"1015\"/>\n      <point x=\"776\" y=\"1070\"/>\n      <point x=\"639\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"1070\"/>\n      <point x=\"68\" y=\"781\"/>\n      <point x=\"68\" y=\"347\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"68\" y=\"113\"/>\n      <point x=\"180\" y=\"-21\"/>\n      <point x=\"377\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"589\" y=\"-21\"/>\n      <point x=\"755\" y=\"112\"/>\n      <point x=\"832\" y=\"344\" type=\"curve\"/>\n      <point x=\"763\" y=\"286\" type=\"line\"/>\n      <point x=\"879\" y=\"286\" type=\"line\"/>\n      <point x=\"828\" y=\"292\" type=\"line\"/>\n      <point x=\"783\" y=\"85\"/>\n      <point x=\"847\" y=\"-10\"/>\n      <point x=\"1031\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1079\" y=\"-10\" type=\"line\"/>\n      <point x=\"1095\" y=\"82\" type=\"line\"/>\n      <point x=\"1044\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"82\"/>\n      <point x=\"885\" y=\"141\"/>\n      <point x=\"908\" y=\"270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1047\" y=\"1060\" type=\"line\"/>\n      <point x=\"951\" y=\"1060\" type=\"line\"/>\n      <point x=\"881\" y=\"667\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"268\"/>\n      <point x=\"627\" y=\"71\"/>\n      <point x=\"392\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"248\" y=\"71\"/>\n      <point x=\"163\" y=\"172\"/>\n      <point x=\"163\" y=\"352\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"163\" y=\"709\"/>\n      <point x=\"353\" y=\"978\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/alphatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"alphatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AC\"/>\n  <outline>\n    <component base=\"alpha\"/>\n    <component base=\"tonos\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/amacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"amacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0101\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"macroncomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ampersand.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"854\" y=\"545\" type=\"line\"/>\n      <point x=\"859\" y=\"512\"/>\n      <point x=\"875\" y=\"444\"/>\n      <point x=\"875\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"190\"/>\n      <point x=\"745\" y=\"70\"/>\n      <point x=\"527\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"315\" y=\"70\"/>\n      <point x=\"189\" y=\"172\"/>\n      <point x=\"189\" y=\"349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"189\" y=\"587\"/>\n      <point x=\"422\" y=\"755\"/>\n      <point x=\"818\" y=\"805\" type=\"curve\"/>\n      <point x=\"820\" y=\"895\" type=\"line\"/>\n      <point x=\"689\" y=\"851\" type=\"line\"/>\n      <point x=\"314\" y=\"804\"/>\n      <point x=\"93\" y=\"614\"/>\n      <point x=\"93\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"93\" y=\"114\"/>\n      <point x=\"245\" y=\"-20\"/>\n      <point x=\"501\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"-20\"/>\n      <point x=\"971\" y=\"140\"/>\n      <point x=\"971\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"453\"/>\n      <point x=\"956\" y=\"527\"/>\n      <point x=\"950\" y=\"545\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1145\" y=\"638\" type=\"line\"/>\n      <point x=\"1068\" y=\"592\"/>\n      <point x=\"964\" y=\"557\"/>\n      <point x=\"855\" y=\"545\" type=\"curve\"/>\n      <point x=\"876\" y=\"462\" type=\"line\"/>\n      <point x=\"987\" y=\"472\"/>\n      <point x=\"1092\" y=\"506\"/>\n      <point x=\"1166\" y=\"553\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1150\" y=\"1303\" type=\"line\"/>\n      <point x=\"1057\" y=\"1392\"/>\n      <point x=\"923\" y=\"1440\"/>\n      <point x=\"760\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"1440\"/>\n      <point x=\"323\" y=\"1305\"/>\n      <point x=\"323\" y=\"1103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"967\"/>\n      <point x=\"405\" y=\"873\"/>\n      <point x=\"569\" y=\"849\" type=\"curve\"/>\n      <point x=\"569\" y=\"780\" type=\"line\"/>\n      <point x=\"820\" y=\"895\" type=\"line\"/>\n      <point x=\"584\" y=\"895\"/>\n      <point x=\"419\" y=\"959\"/>\n      <point x=\"419\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"1249\"/>\n      <point x=\"551\" y=\"1350\"/>\n      <point x=\"750\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"1350\"/>\n      <point x=\"986\" y=\"1321\"/>\n      <point x=\"1078\" y=\"1233\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ampersand.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0026\"/>\n  <outline>\n    <contour>\n      <point x=\"860\" y=\"485\" type=\"line\"/>\n      <point x=\"864\" y=\"477\"/>\n      <point x=\"875\" y=\"425\"/>\n      <point x=\"875\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"190\"/>\n      <point x=\"745\" y=\"70\"/>\n      <point x=\"527\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"315\" y=\"70\"/>\n      <point x=\"189\" y=\"172\"/>\n      <point x=\"189\" y=\"349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"189\" y=\"587\"/>\n      <point x=\"422\" y=\"755\"/>\n      <point x=\"818\" y=\"805\" type=\"curve\"/>\n      <point x=\"820\" y=\"895\" type=\"line\"/>\n      <point x=\"689\" y=\"851\" type=\"line\"/>\n      <point x=\"314\" y=\"804\"/>\n      <point x=\"93\" y=\"614\"/>\n      <point x=\"93\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"93\" y=\"114\"/>\n      <point x=\"245\" y=\"-20\"/>\n      <point x=\"501\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"-20\"/>\n      <point x=\"971\" y=\"140\"/>\n      <point x=\"971\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"971\" y=\"447\"/>\n      <point x=\"960\" y=\"510\"/>\n      <point x=\"956\" y=\"525\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1145\" y=\"638\" type=\"line\"/>\n      <point x=\"1002\" y=\"582\"/>\n      <point x=\"806\" y=\"540\"/>\n      <point x=\"603\" y=\"526\" type=\"curve\"/>\n      <point x=\"615\" y=\"430\" type=\"line\"/>\n      <point x=\"826\" y=\"443\"/>\n      <point x=\"1025\" y=\"489\"/>\n      <point x=\"1166\" y=\"553\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1150\" y=\"1303\" type=\"line\"/>\n      <point x=\"1057\" y=\"1392\"/>\n      <point x=\"923\" y=\"1440\"/>\n      <point x=\"760\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"1440\"/>\n      <point x=\"323\" y=\"1305\"/>\n      <point x=\"323\" y=\"1103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"967\"/>\n      <point x=\"405\" y=\"873\"/>\n      <point x=\"569\" y=\"849\" type=\"curve\"/>\n      <point x=\"569\" y=\"780\" type=\"line\"/>\n      <point x=\"820\" y=\"895\" type=\"line\"/>\n      <point x=\"584\" y=\"895\"/>\n      <point x=\"419\" y=\"959\"/>\n      <point x=\"419\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"1249\"/>\n      <point x=\"551\" y=\"1350\"/>\n      <point x=\"750\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"1350\"/>\n      <point x=\"986\" y=\"1321\"/>\n      <point x=\"1078\" y=\"1233\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand_ampersand.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1655\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1932\" y=\"-20\"/>\n      <point x=\"2095\" y=\"140\"/>\n      <point x=\"2095\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2095\" y=\"447\"/>\n      <point x=\"2084\" y=\"510\"/>\n      <point x=\"2080\" y=\"525\" type=\"curve\"/>\n      <point x=\"1981\" y=\"552\" type=\"line\"/>\n      <point x=\"1986\" y=\"538\"/>\n      <point x=\"1999\" y=\"446\"/>\n      <point x=\"1999\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1999\" y=\"190\"/>\n      <point x=\"1881\" y=\"70\"/>\n      <point x=\"1681\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1487\" y=\"70\"/>\n      <point x=\"1373\" y=\"172\"/>\n      <point x=\"1373\" y=\"349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1373\" y=\"587\"/>\n      <point x=\"1563\" y=\"755\"/>\n      <point x=\"1886\" y=\"805\" type=\"curve\"/>\n      <point x=\"1888\" y=\"895\" type=\"line\"/>\n      <point x=\"1757\" y=\"851\" type=\"line\"/>\n      <point x=\"1455\" y=\"804\"/>\n      <point x=\"1277\" y=\"614\"/>\n      <point x=\"1277\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1277\" y=\"114\"/>\n      <point x=\"1417\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"571\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"-20\"/>\n      <point x=\"1011\" y=\"140\"/>\n      <point x=\"1011\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"447\"/>\n      <point x=\"1000\" y=\"510\"/>\n      <point x=\"996\" y=\"525\" type=\"curve\"/>\n      <point x=\"897\" y=\"552\" type=\"line\"/>\n      <point x=\"902\" y=\"538\"/>\n      <point x=\"915\" y=\"446\"/>\n      <point x=\"915\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"190\"/>\n      <point x=\"797\" y=\"70\"/>\n      <point x=\"597\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"70\"/>\n      <point x=\"289\" y=\"172\"/>\n      <point x=\"289\" y=\"349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"587\"/>\n      <point x=\"479\" y=\"755\"/>\n      <point x=\"802\" y=\"805\" type=\"curve\"/>\n      <point x=\"804\" y=\"895\" type=\"line\"/>\n      <point x=\"673\" y=\"851\" type=\"line\"/>\n      <point x=\"371\" y=\"804\"/>\n      <point x=\"193\" y=\"614\"/>\n      <point x=\"193\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"193\" y=\"114\"/>\n      <point x=\"333\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"919\" y=\"469\" type=\"line\"/>\n      <point x=\"1030\" y=\"483\"/>\n      <point x=\"1131\" y=\"510\"/>\n      <point x=\"1196\" y=\"543\" type=\"curve\"/>\n      <point x=\"1175\" y=\"628\" type=\"line\"/>\n      <point x=\"1108\" y=\"597\"/>\n      <point x=\"1007\" y=\"568\"/>\n      <point x=\"897\" y=\"552\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"780\" type=\"line\"/>\n      <point x=\"804\" y=\"895\" type=\"line\"/>\n      <point x=\"607\" y=\"895\"/>\n      <point x=\"469\" y=\"959\"/>\n      <point x=\"469\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"1249\"/>\n      <point x=\"601\" y=\"1350\"/>\n      <point x=\"800\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"1350\"/>\n      <point x=\"1000\" y=\"1321\"/>\n      <point x=\"1078\" y=\"1233\" type=\"curve\"/>\n      <point x=\"1150\" y=\"1303\" type=\"line\"/>\n      <point x=\"1069\" y=\"1392\"/>\n      <point x=\"952\" y=\"1440\"/>\n      <point x=\"810\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"1440\"/>\n      <point x=\"373\" y=\"1305\"/>\n      <point x=\"373\" y=\"1103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"967\"/>\n      <point x=\"433\" y=\"873\"/>\n      <point x=\"553\" y=\"849\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"2003\" y=\"469\" type=\"line\"/>\n      <point x=\"2114\" y=\"483\"/>\n      <point x=\"2215\" y=\"510\"/>\n      <point x=\"2280\" y=\"543\" type=\"curve\"/>\n      <point x=\"2259\" y=\"628\" type=\"line\"/>\n      <point x=\"2192\" y=\"597\"/>\n      <point x=\"2091\" y=\"568\"/>\n      <point x=\"1981\" y=\"552\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1637\" y=\"780\" type=\"line\"/>\n      <point x=\"1888\" y=\"895\" type=\"line\"/>\n      <point x=\"1691\" y=\"895\"/>\n      <point x=\"1553\" y=\"959\"/>\n      <point x=\"1553\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1553\" y=\"1249\"/>\n      <point x=\"1685\" y=\"1350\"/>\n      <point x=\"1884\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1980\" y=\"1350\"/>\n      <point x=\"2084\" y=\"1321\"/>\n      <point x=\"2162\" y=\"1233\" type=\"curve\"/>\n      <point x=\"2234\" y=\"1303\" type=\"line\"/>\n      <point x=\"2153\" y=\"1392\"/>\n      <point x=\"2036\" y=\"1440\"/>\n      <point x=\"1894\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1632\" y=\"1440\"/>\n      <point x=\"1457\" y=\"1305\"/>\n      <point x=\"1457\" y=\"1103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1457\" y=\"967\"/>\n      <point x=\"1517\" y=\"873\"/>\n      <point x=\"1637\" y=\"849\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ampersand_ampersand.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ampersand_ampersand.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1655\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1932\" y=\"-20\"/>\n      <point x=\"2095\" y=\"140\"/>\n      <point x=\"2095\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2095\" y=\"447\"/>\n      <point x=\"2084\" y=\"510\"/>\n      <point x=\"2080\" y=\"525\" type=\"curve\"/>\n      <point x=\"1984\" y=\"485\" type=\"line\"/>\n      <point x=\"1988\" y=\"477\"/>\n      <point x=\"1999\" y=\"425\"/>\n      <point x=\"1999\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1999\" y=\"190\"/>\n      <point x=\"1881\" y=\"70\"/>\n      <point x=\"1681\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1487\" y=\"70\"/>\n      <point x=\"1373\" y=\"172\"/>\n      <point x=\"1373\" y=\"349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1373\" y=\"587\"/>\n      <point x=\"1563\" y=\"755\"/>\n      <point x=\"1886\" y=\"805\" type=\"curve\"/>\n      <point x=\"1888\" y=\"895\" type=\"line\"/>\n      <point x=\"1757\" y=\"851\" type=\"line\"/>\n      <point x=\"1455\" y=\"804\"/>\n      <point x=\"1277\" y=\"614\"/>\n      <point x=\"1277\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1277\" y=\"114\"/>\n      <point x=\"1417\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"571\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"-20\"/>\n      <point x=\"1011\" y=\"140\"/>\n      <point x=\"1011\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"447\"/>\n      <point x=\"1000\" y=\"510\"/>\n      <point x=\"996\" y=\"525\" type=\"curve\"/>\n      <point x=\"900\" y=\"485\" type=\"line\"/>\n      <point x=\"904\" y=\"477\"/>\n      <point x=\"915\" y=\"425\"/>\n      <point x=\"915\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"190\"/>\n      <point x=\"797\" y=\"70\"/>\n      <point x=\"597\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"70\"/>\n      <point x=\"289\" y=\"172\"/>\n      <point x=\"289\" y=\"349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"289\" y=\"587\"/>\n      <point x=\"479\" y=\"755\"/>\n      <point x=\"802\" y=\"805\" type=\"curve\"/>\n      <point x=\"804\" y=\"895\" type=\"line\"/>\n      <point x=\"673\" y=\"851\" type=\"line\"/>\n      <point x=\"371\" y=\"804\"/>\n      <point x=\"193\" y=\"614\"/>\n      <point x=\"193\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"193\" y=\"114\"/>\n      <point x=\"333\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"655\" y=\"420\" type=\"line\"/>\n      <point x=\"892\" y=\"443\"/>\n      <point x=\"1088\" y=\"489\"/>\n      <point x=\"1196\" y=\"543\" type=\"curve\"/>\n      <point x=\"1175\" y=\"628\" type=\"line\"/>\n      <point x=\"1065\" y=\"582\"/>\n      <point x=\"872\" y=\"540\"/>\n      <point x=\"643\" y=\"516\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"780\" type=\"line\"/>\n      <point x=\"804\" y=\"895\" type=\"line\"/>\n      <point x=\"607\" y=\"895\"/>\n      <point x=\"469\" y=\"959\"/>\n      <point x=\"469\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"469\" y=\"1249\"/>\n      <point x=\"601\" y=\"1350\"/>\n      <point x=\"800\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"1350\"/>\n      <point x=\"1000\" y=\"1321\"/>\n      <point x=\"1078\" y=\"1233\" type=\"curve\"/>\n      <point x=\"1150\" y=\"1303\" type=\"line\"/>\n      <point x=\"1069\" y=\"1392\"/>\n      <point x=\"952\" y=\"1440\"/>\n      <point x=\"810\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"548\" y=\"1440\"/>\n      <point x=\"373\" y=\"1305\"/>\n      <point x=\"373\" y=\"1103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"373\" y=\"967\"/>\n      <point x=\"433\" y=\"873\"/>\n      <point x=\"553\" y=\"849\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1749\" y=\"420\" type=\"line\"/>\n      <point x=\"1976\" y=\"443\"/>\n      <point x=\"2172\" y=\"489\"/>\n      <point x=\"2290\" y=\"543\" type=\"curve\"/>\n      <point x=\"2269\" y=\"628\" type=\"line\"/>\n      <point x=\"2149\" y=\"582\"/>\n      <point x=\"1956\" y=\"540\"/>\n      <point x=\"1737\" y=\"516\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1637\" y=\"780\" type=\"line\"/>\n      <point x=\"1888\" y=\"895\" type=\"line\"/>\n      <point x=\"1691\" y=\"895\"/>\n      <point x=\"1553\" y=\"959\"/>\n      <point x=\"1553\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1553\" y=\"1249\"/>\n      <point x=\"1685\" y=\"1350\"/>\n      <point x=\"1884\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1980\" y=\"1350\"/>\n      <point x=\"2084\" y=\"1321\"/>\n      <point x=\"2162\" y=\"1233\" type=\"curve\"/>\n      <point x=\"2234\" y=\"1303\" type=\"line\"/>\n      <point x=\"2153\" y=\"1392\"/>\n      <point x=\"2036\" y=\"1440\"/>\n      <point x=\"1894\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1632\" y=\"1440\"/>\n      <point x=\"1457\" y=\"1305\"/>\n      <point x=\"1457\" y=\"1103\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1457\" y=\"967\"/>\n      <point x=\"1517\" y=\"873\"/>\n      <point x=\"1637\" y=\"849\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/anoteleia.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"anoteleia\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0387\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"159\" yOffset=\"900\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0105\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"857\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-423\"/>\n      <point x=\"941\" y=\"-417\"/>\n      <point x=\"970\" y=\"-405\" type=\"curve\"/>\n      <point x=\"957\" y=\"-322\" type=\"line\"/>\n      <point x=\"937\" y=\"-329\"/>\n      <point x=\"907\" y=\"-336\"/>\n      <point x=\"873\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"-336\"/>\n      <point x=\"754\" y=\"-301\"/>\n      <point x=\"754\" y=\"-234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"754\" y=\"-100\"/>\n      <point x=\"914\" y=\"-10\"/>\n      <point x=\"1055\" y=\"-10\" type=\"curve\"/>\n      <point x=\"970\" y=\"24\" type=\"line\"/>\n      <point x=\"900\" y=\"62\" type=\"line\"/>\n      <point x=\"900\" y=\"4\" type=\"line\"/>\n      <point x=\"751\" y=\"-34\"/>\n      <point x=\"660\" y=\"-151\"/>\n      <point x=\"660\" y=\"-254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"-364\"/>\n      <point x=\"728\" y=\"-423\"/>\n    </contour>\n    <component base=\"a\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/apostrophemod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"apostrophemod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02BC\"/>\n  <outline>\n    <component base=\"quoteright\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/approxequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"approxequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2248\"/>\n  <guideline x=\"79\" y=\"366\" angle=\"261.2025\"/>\n  <guideline x=\"1089\" y=\"366\" angle=\"261.2025\"/>\n  <outline>\n    <component base=\"asciitilde\" xOffset=\"50\" yOffset=\"290\"/>\n    <component base=\"asciitilde\" xOffset=\"-53\" yOffset=\"-290\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aring.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aring\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E5\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"ringcomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aringacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"aringacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FB\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"ringcomb\" xOffset=\"30\"/>\n    <component base=\"acutecomb\" xOffset=\"69\" yOffset=\"280\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>2</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciicircum.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciicircum\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005E\"/>\n  <outline>\n    <contour>\n      <point x=\"280\" y=\"820\" type=\"line\"/>\n      <point x=\"386\" y=\"820\" type=\"line\"/>\n      <point x=\"744\" y=\"1340\" type=\"line\"/>\n      <point x=\"752\" y=\"1340\" type=\"line\"/>\n      <point x=\"926\" y=\"820\" type=\"line\"/>\n      <point x=\"1022\" y=\"820\" type=\"line\"/>\n      <point x=\"818\" y=\"1420\" type=\"line\"/>\n      <point x=\"696\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciicircum_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciicircum_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"241\" y=\"658\" type=\"line\"/>\n      <point x=\"347\" y=\"658\" type=\"line\"/>\n      <point x=\"817\" y=\"1340\" type=\"line\"/>\n      <point x=\"825\" y=\"1340\" type=\"line\"/>\n      <point x=\"967\" y=\"914\" type=\"line\"/>\n      <point x=\"1063\" y=\"914\" type=\"line\"/>\n      <point x=\"891\" y=\"1420\" type=\"line\"/>\n      <point x=\"769\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1115\" y=\"414\" type=\"line\"/>\n      <point x=\"2099\" y=\"414\" type=\"line\"/>\n      <point x=\"2115\" y=\"504\" type=\"line\"/>\n      <point x=\"1131\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"967\" y=\"914\" type=\"line\"/>\n      <point x=\"2187\" y=\"914\" type=\"line\"/>\n      <point x=\"2203\" y=\"1004\" type=\"line\"/>\n      <point x=\"983\" y=\"1004\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007E\"/>\n  <outline>\n    <contour>\n      <point x=\"113\" y=\"486\" type=\"line\"/>\n      <point x=\"209\" y=\"486\" type=\"line\"/>\n      <point x=\"215\" y=\"520\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"724\"/>\n      <point x=\"300\" y=\"806\"/>\n      <point x=\"409\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"462\" y=\"806\"/>\n      <point x=\"528\" y=\"770\"/>\n      <point x=\"619\" y=\"663\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"554\"/>\n      <point x=\"785\" y=\"520\"/>\n      <point x=\"866\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1018\" y=\"520\"/>\n      <point x=\"1092\" y=\"613\"/>\n      <point x=\"1134\" y=\"846\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1149\" y=\"930\" type=\"line\"/>\n      <point x=\"1053\" y=\"930\" type=\"line\"/>\n      <point x=\"1047\" y=\"896\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"692\"/>\n      <point x=\"961\" y=\"610\"/>\n      <point x=\"874\" y=\"610\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"610\"/>\n      <point x=\"759\" y=\"645\"/>\n      <point x=\"671\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"859\"/>\n      <point x=\"502\" y=\"896\"/>\n      <point x=\"415\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"250\" y=\"896\"/>\n      <point x=\"171\" y=\"805\"/>\n      <point x=\"130\" y=\"580\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"289\" y=\"446\" type=\"line\"/>\n      <point x=\"385\" y=\"446\" type=\"line\"/>\n      <point x=\"400\" y=\"531\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"426\" y=\"677\"/>\n      <point x=\"487\" y=\"749\"/>\n      <point x=\"587\" y=\"749\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"749\"/>\n      <point x=\"691\" y=\"717\"/>\n      <point x=\"758\" y=\"661\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"603\"/>\n      <point x=\"893\" y=\"574\"/>\n      <point x=\"972\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"574\"/>\n      <point x=\"1170\" y=\"632\"/>\n      <point x=\"1287\" y=\"739\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1363\" y=\"809\"/>\n      <point x=\"1429\" y=\"839\"/>\n      <point x=\"1493\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1550\" y=\"839\"/>\n      <point x=\"1604\" y=\"810\"/>\n      <point x=\"1659\" y=\"761\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1733\" y=\"695\"/>\n      <point x=\"1804\" y=\"664\"/>\n      <point x=\"1873\" y=\"664\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2037\" y=\"664\"/>\n      <point x=\"2139\" y=\"770\"/>\n      <point x=\"2176\" y=\"984\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2189\" y=\"1060\" type=\"line\"/>\n      <point x=\"2093\" y=\"1060\" type=\"line\"/>\n      <point x=\"2076\" y=\"965\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2051\" y=\"825\"/>\n      <point x=\"1988\" y=\"756\"/>\n      <point x=\"1883\" y=\"756\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1840\" y=\"756\"/>\n      <point x=\"1780\" y=\"785\"/>\n      <point x=\"1707\" y=\"847\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1639\" y=\"902\"/>\n      <point x=\"1572\" y=\"931\"/>\n      <point x=\"1500\" y=\"931\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1407\" y=\"931\"/>\n      <point x=\"1314\" y=\"884\"/>\n      <point x=\"1218\" y=\"789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1130\" y=\"704\"/>\n      <point x=\"1047\" y=\"666\"/>\n      <point x=\"972\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"666\"/>\n      <point x=\"871\" y=\"695\"/>\n      <point x=\"817\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"808\"/>\n      <point x=\"667\" y=\"841\"/>\n      <point x=\"605\" y=\"841\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"841\"/>\n      <point x=\"339\" y=\"735\"/>\n      <point x=\"302\" y=\"521\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1702\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1603\" y=\"878\"/>\n      <point x=\"1478\" y=\"823\"/>\n      <point x=\"1359\" y=\"766\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1273\" y=\"725\"/>\n      <point x=\"1187\" y=\"691\"/>\n      <point x=\"1115\" y=\"691\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1030\" y=\"691\"/>\n      <point x=\"959\" y=\"731\"/>\n      <point x=\"885\" y=\"771\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"820\"/>\n      <point x=\"700\" y=\"878\"/>\n      <point x=\"582\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"878\"/>\n      <point x=\"268\" y=\"779\"/>\n      <point x=\"233\" y=\"577\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"217\" y=\"487\" type=\"line\"/>\n      <point x=\"313\" y=\"487\" type=\"line\"/>\n      <point x=\"325\" y=\"557\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"716\"/>\n      <point x=\"436\" y=\"793\"/>\n      <point x=\"569\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"793\"/>\n      <point x=\"727\" y=\"746\"/>\n      <point x=\"802\" y=\"703\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"657\"/>\n      <point x=\"979\" y=\"601\"/>\n      <point x=\"1093\" y=\"601\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1192\" y=\"601\"/>\n      <point x=\"1315\" y=\"647\"/>\n      <point x=\"1431\" y=\"703\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1524\" y=\"747\"/>\n      <point x=\"1616\" y=\"787\"/>\n      <point x=\"1693\" y=\"787\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1769\" y=\"787\"/>\n      <point x=\"1828\" y=\"766\"/>\n      <point x=\"1902\" y=\"720\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1985\" y=\"670\"/>\n      <point x=\"2069\" y=\"621\"/>\n      <point x=\"2204\" y=\"621\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2454\" y=\"621\"/>\n      <point x=\"2568\" y=\"718\"/>\n      <point x=\"2824\" y=\"718\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3044\" y=\"718\"/>\n      <point x=\"3101\" y=\"669\"/>\n      <point x=\"3290\" y=\"669\" type=\"curve\"/>\n      <point x=\"3305\" y=\"755\" type=\"line\"/>\n      <point x=\"3116\" y=\"755\"/>\n      <point x=\"3059\" y=\"808\"/>\n      <point x=\"2837\" y=\"808\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2584\" y=\"808\"/>\n      <point x=\"2469\" y=\"711\"/>\n      <point x=\"2226\" y=\"711\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2122\" y=\"711\"/>\n      <point x=\"2051\" y=\"750\"/>\n      <point x=\"1978\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1881\" y=\"852\"/>\n      <point x=\"1804\" y=\"878\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"2385\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_at.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_at.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"216\" y=\"486\" type=\"line\"/>\n      <point x=\"312\" y=\"486\" type=\"line\"/>\n      <point x=\"318\" y=\"520\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"724\"/>\n      <point x=\"403\" y=\"806\"/>\n      <point x=\"512\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"565\" y=\"806\"/>\n      <point x=\"631\" y=\"770\"/>\n      <point x=\"722\" y=\"663\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"554\"/>\n      <point x=\"888\" y=\"520\"/>\n      <point x=\"969\" y=\"520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"520\"/>\n      <point x=\"1170\" y=\"590\"/>\n      <point x=\"1307\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1465\" y=\"1249\"/>\n      <point x=\"1589\" y=\"1349\"/>\n      <point x=\"1826\" y=\"1349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2001\" y=\"1349\"/>\n      <point x=\"2092\" y=\"1285\"/>\n      <point x=\"2092\" y=\"1049\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2092\" y=\"994\"/>\n      <point x=\"2079\" y=\"911\"/>\n      <point x=\"2009\" y=\"524\" type=\"curve\"/>\n      <point x=\"2105\" y=\"524\" type=\"line\"/>\n      <point x=\"2162\" y=\"846\"/>\n      <point x=\"2188\" y=\"991\"/>\n      <point x=\"2188\" y=\"1068\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2188\" y=\"1312\"/>\n      <point x=\"2074\" y=\"1439\"/>\n      <point x=\"1856\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1543\" y=\"1439\"/>\n      <point x=\"1399\" y=\"1319\"/>\n      <point x=\"1220\" y=\"916\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1114\" y=\"679\"/>\n      <point x=\"1057\" y=\"610\"/>\n      <point x=\"977\" y=\"610\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"920\" y=\"610\"/>\n      <point x=\"862\" y=\"645\"/>\n      <point x=\"774\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"683\" y=\"859\"/>\n      <point x=\"605\" y=\"896\"/>\n      <point x=\"518\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"896\"/>\n      <point x=\"274\" y=\"805\"/>\n      <point x=\"233\" y=\"580\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1659\" y=\"-243\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1729\" y=\"-243\"/>\n      <point x=\"1779\" y=\"-236\"/>\n      <point x=\"1831\" y=\"-218\" type=\"curve\"/>\n      <point x=\"1847\" y=\"-125\" type=\"line\"/>\n      <point x=\"1796\" y=\"-142\"/>\n      <point x=\"1740\" y=\"-149\"/>\n      <point x=\"1661\" y=\"-149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1299\" y=\"-149\"/>\n      <point x=\"1223\" y=\"110\"/>\n      <point x=\"1269\" y=\"522\" type=\"curve\"/>\n      <point x=\"1241\" y=\"491\"/>\n      <point x=\"1206\" y=\"466\"/>\n      <point x=\"1166\" y=\"447\" type=\"curve\"/>\n      <point x=\"1139\" y=\"9\"/>\n      <point x=\"1247\" y=\"-243\"/>\n    </contour>\n    <contour>\n      <point x=\"1683\" y=\"149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1830\" y=\"149\"/>\n      <point x=\"1948\" y=\"251\"/>\n      <point x=\"2000\" y=\"429\" type=\"curve\"/>\n      <point x=\"1945\" y=\"361\" type=\"line\"/>\n      <point x=\"2061\" y=\"361\" type=\"line\"/>\n      <point x=\"1998\" y=\"466\" type=\"line\"/>\n      <point x=\"1970\" y=\"168\" type=\"line\"/>\n      <point x=\"2042\" y=\"168\" type=\"line\"/>\n      <point x=\"2137\" y=\"710\" type=\"line\"/>\n      <point x=\"2041\" y=\"710\" type=\"line\"/>\n      <point x=\"1993\" y=\"432\"/>\n      <point x=\"1845\" y=\"243\"/>\n      <point x=\"1693\" y=\"243\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1592\" y=\"243\"/>\n      <point x=\"1534\" y=\"320\"/>\n      <point x=\"1534\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1534\" y=\"754\"/>\n      <point x=\"1765\" y=\"963\"/>\n      <point x=\"2108\" y=\"1000\" type=\"curve\"/>\n      <point x=\"2117\" y=\"1090\" type=\"line\"/>\n      <point x=\"1723\" y=\"1049\"/>\n      <point x=\"1438\" y=\"798\"/>\n      <point x=\"1438\" y=\"427\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1438\" y=\"252\"/>\n      <point x=\"1526\" y=\"149\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asciitilde\" xOffset=\"39\"/>\n    <component base=\"equal\" xOffset=\"1161\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"217\" y=\"487\" type=\"line\"/>\n      <point x=\"313\" y=\"487\" type=\"line\"/>\n      <point x=\"331\" y=\"591\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"738\"/>\n      <point x=\"432\" y=\"810\"/>\n      <point x=\"552\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"810\"/>\n      <point x=\"737\" y=\"750\"/>\n      <point x=\"816\" y=\"695\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"897\" y=\"639\"/>\n      <point x=\"989\" y=\"575\"/>\n      <point x=\"1119\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1296\" y=\"575\"/>\n      <point x=\"1425\" y=\"712\"/>\n      <point x=\"1631\" y=\"712\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1793\" y=\"712\"/>\n      <point x=\"1915\" y=\"664\"/>\n      <point x=\"2089\" y=\"664\" type=\"curve\"/>\n      <point x=\"2104\" y=\"746\" type=\"line\"/>\n      <point x=\"1934\" y=\"746\"/>\n      <point x=\"1797\" y=\"802\"/>\n      <point x=\"1627\" y=\"802\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1420\" y=\"802\"/>\n      <point x=\"1287\" y=\"665\"/>\n      <point x=\"1115\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1008\" y=\"665\"/>\n      <point x=\"938\" y=\"727\"/>\n      <point x=\"869\" y=\"774\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"779\" y=\"835\"/>\n      <point x=\"689\" y=\"900\"/>\n      <point x=\"566\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"379\" y=\"900\"/>\n      <point x=\"271\" y=\"798\"/>\n      <point x=\"237\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"1199\" yOffset=\"-5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asciitilde_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"971\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1108\" y=\"480\"/>\n      <point x=\"1182\" y=\"560\"/>\n      <point x=\"1216\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1218\" y=\"740\" type=\"line\"/>\n      <point x=\"1124\" y=\"744\" type=\"line\"/>\n      <point x=\"1120\" y=\"716\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1105\" y=\"612\"/>\n      <point x=\"1059\" y=\"570\"/>\n      <point x=\"986\" y=\"570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"570\"/>\n      <point x=\"849\" y=\"616\"/>\n      <point x=\"768\" y=\"717\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"664\" y=\"846\"/>\n      <point x=\"615\" y=\"896\"/>\n      <point x=\"515\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"896\"/>\n      <point x=\"270\" y=\"797\"/>\n      <point x=\"230\" y=\"566\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"216\" y=\"486\" type=\"line\"/>\n      <point x=\"312\" y=\"486\" type=\"line\"/>\n      <point x=\"328\" y=\"576\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"737\"/>\n      <point x=\"406\" y=\"806\"/>\n      <point x=\"498\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"576\" y=\"806\"/>\n      <point x=\"614\" y=\"755\"/>\n      <point x=\"712\" y=\"634\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"528\"/>\n      <point x=\"879\" y=\"480\"/>\n    </contour>\n    <contour>\n      <point x=\"1119\" y=\"654\" type=\"line\"/>\n      <point x=\"2142\" y=\"654\" type=\"line\"/>\n      <point x=\"2158\" y=\"744\" type=\"line\"/>\n      <point x=\"1124\" y=\"744\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002A\"/>\n  <outline>\n    <contour>\n      <point x=\"308\" y=\"280\" type=\"line\"/>\n      <point x=\"658\" y=\"668\" type=\"line\"/>\n      <point x=\"600\" y=\"724\" type=\"line\"/>\n      <point x=\"240\" y=\"347\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"610\" y=\"660\" type=\"line\"/>\n      <point x=\"649\" y=\"732\" type=\"line\"/>\n      <point x=\"231\" y=\"904\" type=\"line\"/>\n      <point x=\"185\" y=\"810\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"809\" y=\"280\" type=\"line\"/>\n      <point x=\"891\" y=\"337\" type=\"line\"/>\n      <point x=\"662\" y=\"720\" type=\"line\"/>\n      <point x=\"596\" y=\"672\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"586\" y=\"696\" type=\"line\"/>\n      <point x=\"672\" y=\"696\" type=\"line\"/>\n      <point x=\"761\" y=\"1176\" type=\"line\"/>\n      <point x=\"667\" y=\"1176\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"643\" y=\"658\" type=\"line\"/>\n      <point x=\"1123\" y=\"814\" type=\"line\"/>\n      <point x=\"1101\" y=\"904\" type=\"line\"/>\n      <point x=\"623\" y=\"732\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"55\"/>\n    <component base=\"asterisk\" xOffset=\"1145\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_asterisk_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"2345\"/>\n    <component base=\"asterisk\" xOffset=\"55\"/>\n    <component base=\"asterisk\" xOffset=\"1261\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"57\"/>\n    <component base=\"greater\" xOffset=\"1108\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_parenright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_parenright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1188\" y=\"-199\" type=\"line\"/>\n      <point x=\"1238\" y=\"-199\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1731\" y=\"-199\"/>\n      <point x=\"2103\" y=\"139\"/>\n      <point x=\"2195\" y=\"717\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2286\" y=\"1285\"/>\n      <point x=\"2057\" y=\"1621\"/>\n      <point x=\"1558\" y=\"1621\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1509\" y=\"1621\" type=\"line\"/>\n      <point x=\"1493\" y=\"1531\" type=\"line\"/>\n      <point x=\"1543\" y=\"1531\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1980\" y=\"1531\"/>\n      <point x=\"2179\" y=\"1229\"/>\n      <point x=\"2099\" y=\"717\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2018\" y=\"196\"/>\n      <point x=\"1687\" y=\"-109\"/>\n      <point x=\"1253\" y=\"-109\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1204\" y=\"-109\" type=\"line\"/>\n    </contour>\n    <component base=\"asterisk\" xOffset=\"205\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"asterisk_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"asterisk\" xOffset=\"57\"/>\n    <component base=\"slash\" xOffset=\"1115\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/at.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"at\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0040\"/>\n  <outline>\n    <contour>\n      <point x=\"604\" y=\"-243\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"-243\"/>\n      <point x=\"724\" y=\"-236\"/>\n      <point x=\"776\" y=\"-218\" type=\"curve\"/>\n      <point x=\"792\" y=\"-125\" type=\"line\"/>\n      <point x=\"741\" y=\"-142\"/>\n      <point x=\"685\" y=\"-149\"/>\n      <point x=\"606\" y=\"-149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"332\" y=\"-149\"/>\n      <point x=\"203\" y=\"-5\"/>\n      <point x=\"203\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"203\" y=\"884\"/>\n      <point x=\"461\" y=\"1349\"/>\n      <point x=\"771\" y=\"1349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"946\" y=\"1349\"/>\n      <point x=\"1037\" y=\"1285\"/>\n      <point x=\"1037\" y=\"1049\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"994\"/>\n      <point x=\"1024\" y=\"911\"/>\n      <point x=\"954\" y=\"524\" type=\"curve\"/>\n      <point x=\"1050\" y=\"524\" type=\"line\"/>\n      <point x=\"1107\" y=\"846\"/>\n      <point x=\"1133\" y=\"991\"/>\n      <point x=\"1133\" y=\"1068\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1133\" y=\"1312\"/>\n      <point x=\"1019\" y=\"1439\"/>\n      <point x=\"801\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"1439\"/>\n      <point x=\"107\" y=\"957\"/>\n      <point x=\"107\" y=\"317\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"107\" y=\"-72\"/>\n      <point x=\"266\" y=\"-243\"/>\n    </contour>\n    <contour>\n      <point x=\"628\" y=\"149\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"149\"/>\n      <point x=\"893\" y=\"251\"/>\n      <point x=\"945\" y=\"429\" type=\"curve\"/>\n      <point x=\"890\" y=\"361\" type=\"line\"/>\n      <point x=\"1006\" y=\"361\" type=\"line\"/>\n      <point x=\"943\" y=\"466\" type=\"line\"/>\n      <point x=\"915\" y=\"168\" type=\"line\"/>\n      <point x=\"987\" y=\"168\" type=\"line\"/>\n      <point x=\"1082\" y=\"710\" type=\"line\"/>\n      <point x=\"986\" y=\"710\" type=\"line\"/>\n      <point x=\"938\" y=\"432\"/>\n      <point x=\"790\" y=\"243\"/>\n      <point x=\"638\" y=\"243\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"537\" y=\"243\"/>\n      <point x=\"479\" y=\"323\"/>\n      <point x=\"479\" y=\"462\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"759\"/>\n      <point x=\"710\" y=\"963\"/>\n      <point x=\"1053\" y=\"1000\" type=\"curve\"/>\n      <point x=\"1062\" y=\"1090\" type=\"line\"/>\n      <point x=\"668\" y=\"1050\"/>\n      <point x=\"383\" y=\"802\"/>\n      <point x=\"383\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"256\"/>\n      <point x=\"471\" y=\"149\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/atilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"atilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E3\"/>\n  <outline>\n    <component base=\"a\"/>\n    <component base=\"tildecomb\" xOffset=\"30\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/b.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"b.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"395\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"312\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"-20\"/>\n      <point x=\"1099\" y=\"307\"/>\n      <point x=\"1099\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"957\"/>\n      <point x=\"984\" y=\"1080\"/>\n      <point x=\"785\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1080\"/>\n      <point x=\"379\" y=\"931\"/>\n      <point x=\"317\" y=\"673\" type=\"curve\"/>\n      <point x=\"369\" y=\"749\" type=\"line\"/>\n      <point x=\"287\" y=\"749\" type=\"line\"/>\n      <point x=\"248\" y=\"318\" type=\"line\"/>\n      <point x=\"326\" y=\"788\"/>\n      <point x=\"553\" y=\"988\"/>\n      <point x=\"755\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"988\"/>\n      <point x=\"1003\" y=\"894\"/>\n      <point x=\"1003\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"355\"/>\n      <point x=\"715\" y=\"72\"/>\n      <point x=\"334\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"72\"/>\n      <point x=\"204\" y=\"82\"/>\n      <point x=\"175\" y=\"97\" type=\"curve\"/>\n      <point x=\"96\" y=\"1\" type=\"line\"/>\n      <point x=\"168\" y=\"-12\"/>\n      <point x=\"240\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"443\" y=\"1420\" type=\"line\"/>\n      <point x=\"347\" y=\"1420\" type=\"line\"/>\n      <point x=\"96\" y=\"1\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/b.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"b\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0062\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"385\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"312\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"761\" y=\"-20\"/>\n      <point x=\"1099\" y=\"307\"/>\n      <point x=\"1099\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"957\"/>\n      <point x=\"984\" y=\"1080\"/>\n      <point x=\"785\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1080\"/>\n      <point x=\"379\" y=\"931\"/>\n      <point x=\"317\" y=\"673\" type=\"curve\"/>\n      <point x=\"369\" y=\"749\" type=\"line\"/>\n      <point x=\"287\" y=\"749\" type=\"line\"/>\n      <point x=\"248\" y=\"318\" type=\"line\"/>\n      <point x=\"326\" y=\"788\"/>\n      <point x=\"553\" y=\"988\"/>\n      <point x=\"755\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"988\"/>\n      <point x=\"1003\" y=\"894\"/>\n      <point x=\"1003\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1003\" y=\"355\"/>\n      <point x=\"715\" y=\"72\"/>\n      <point x=\"334\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"264\" y=\"72\"/>\n      <point x=\"204\" y=\"82\"/>\n      <point x=\"175\" y=\"97\" type=\"curve\"/>\n      <point x=\"96\" y=\"1\" type=\"line\"/>\n      <point x=\"168\" y=\"-12\"/>\n      <point x=\"240\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"216\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1521\"/>\n      <point x=\"134\" y=\"1517\"/>\n      <point x=\"94\" y=\"1505\" type=\"curve\"/>\n      <point x=\"105\" y=\"1418\" type=\"line\"/>\n      <point x=\"141\" y=\"1426\"/>\n      <point x=\"178\" y=\"1429\"/>\n      <point x=\"214\" y=\"1429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"1429\"/>\n      <point x=\"337\" y=\"1367\"/>\n      <point x=\"314\" y=\"1237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"96\" y=\"1\" type=\"line\"/>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"413\" y=\"1247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1431\"/>\n      <point x=\"389\" y=\"1521\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005C\"/>\n  <outline>\n    <contour>\n      <point x=\"809\" y=\"-190\" type=\"line\"/>\n      <point x=\"905\" y=\"-190\" type=\"line\"/>\n      <point x=\"351\" y=\"1610\" type=\"line\"/>\n      <point x=\"255\" y=\"1610\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backslash_backslash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash_backslash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"backslash\" xOffset=\"166\"/>\n    <component base=\"backslash\" xOffset=\"1048\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backslash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backslash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"989\"/>\n    <component base=\"backslash\" xOffset=\"212\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backspaceC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backspaceControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2408\"/>\n  <outline>\n    <component base=\"B.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backspaceC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"backspaceControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1035\" y=\"285\" type=\"line\"/>\n      <point x=\"1125\" y=\"285\" type=\"line\"/>\n      <point x=\"1125\" y=\"947\" type=\"line\"/>\n      <point x=\"1035\" y=\"947\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1100\" y=\"857\" type=\"line\"/>\n      <point x=\"1100\" y=\"947\" type=\"line\"/>\n      <point x=\"124\" y=\"947\" type=\"line\"/>\n      <point x=\"124\" y=\"857\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"452\" y=\"496\" type=\"line\"/>\n      <point x=\"516\" y=\"553\" type=\"line\"/>\n      <point x=\"177\" y=\"893\" type=\"line\"/>\n      <point x=\"177\" y=\"911\" type=\"line\"/>\n      <point x=\"516\" y=\"1251\" type=\"line\"/>\n      <point x=\"452\" y=\"1308\" type=\"line\"/>\n      <point x=\"64\" y=\"913\" type=\"line\"/>\n      <point x=\"64\" y=\"891\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"baht.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"435\" y=\"40\" type=\"line\"/>\n      <point x=\"372\" y=\"-320\" type=\"line\"/>\n      <point x=\"468\" y=\"-320\" type=\"line\"/>\n      <point x=\"531\" y=\"40\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"770\" y=\"1392\" type=\"line\"/>\n      <point x=\"831\" y=\"1740\" type=\"line\"/>\n      <point x=\"735\" y=\"1740\" type=\"line\"/>\n      <point x=\"674\" y=\"1392\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/baht.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"baht\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0E3F\"/>\n  <outline>\n    <contour>\n      <point x=\"372\" y=\"-320\" type=\"line\"/>\n      <point x=\"468\" y=\"-320\" type=\"line\"/>\n      <point x=\"831\" y=\"1740\" type=\"line\"/>\n      <point x=\"735\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-310\" type=\"line\"/>\n      <point x=\"647\" y=\"-310\" type=\"line\"/>\n      <point x=\"647\" y=\"1730\" type=\"line\"/>\n      <point x=\"553\" y=\"1730\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"1067\"/>\n    <component base=\"bar\" xOffset=\"133\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"1200\"/>\n    <component base=\"bar\" xOffset=\"2397\"/>\n    <component base=\"bar\" xOffset=\"3\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"359\"/>\n    <component base=\"bar\" xOffset=\"1358\"/>\n    <component base=\"bar_greater.liga\" xOffset=\"2255\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"48\" y=\"914\" type=\"line\"/>\n      <point x=\"751\" y=\"914\" type=\"line\"/>\n      <point x=\"767\" y=\"1004\" type=\"line\"/>\n      <point x=\"64\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-40\" y=\"414\" type=\"line\"/>\n      <point x=\"763\" y=\"414\" type=\"line\"/>\n      <point x=\"779\" y=\"504\" type=\"line\"/>\n      <point x=\"-24\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1022\"/>\n    <component base=\"bar\" xOffset=\"182\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1615\" y=\"914\" type=\"line\"/>\n      <point x=\"2517\" y=\"914\" type=\"line\"/>\n      <point x=\"2533\" y=\"1004\" type=\"line\"/>\n      <point x=\"1631\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-70\" y=\"414\" type=\"line\"/>\n      <point x=\"760\" y=\"414\" type=\"line\"/>\n      <point x=\"776\" y=\"504\" type=\"line\"/>\n      <point x=\"-54\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"914\" type=\"line\"/>\n      <point x=\"778\" y=\"914\" type=\"line\"/>\n      <point x=\"794\" y=\"1004\" type=\"line\"/>\n      <point x=\"34\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1597\" y=\"414\" type=\"line\"/>\n      <point x=\"2429\" y=\"414\" type=\"line\"/>\n      <point x=\"2445\" y=\"504\" type=\"line\"/>\n      <point x=\"1613\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"182\"/>\n    <component base=\"bar\" xOffset=\"1022\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1650\" y=\"914\" type=\"line\"/>\n      <point x=\"2487\" y=\"914\" type=\"line\"/>\n      <point x=\"2503\" y=\"1004\" type=\"line\"/>\n      <point x=\"1666\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1602\" y=\"414\" type=\"line\"/>\n      <point x=\"2399\" y=\"414\" type=\"line\"/>\n      <point x=\"2415\" y=\"504\" type=\"line\"/>\n      <point x=\"1618\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1022\"/>\n    <component base=\"bar\" xOffset=\"182\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"262\"/>\n    <component base=\"bar_greater.liga\" xOffset=\"1010\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"4\" y=\"664\" type=\"line\"/>\n      <point x=\"793\" y=\"664\" type=\"line\"/>\n      <point x=\"809\" y=\"754\" type=\"line\"/>\n      <point x=\"20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1022\"/>\n    <component base=\"bar\" xOffset=\"182\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1625\" y=\"664\" type=\"line\"/>\n      <point x=\"2473\" y=\"664\" type=\"line\"/>\n      <point x=\"2489\" y=\"754\" type=\"line\"/>\n      <point x=\"1641\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-26\" y=\"664\" type=\"line\"/>\n      <point x=\"815\" y=\"664\" type=\"line\"/>\n      <point x=\"831\" y=\"754\" type=\"line\"/>\n      <point x=\"-10\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1022\"/>\n    <component base=\"bar\" xOffset=\"182\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bar_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1634\" y=\"664\" type=\"line\"/>\n      <point x=\"2443\" y=\"664\" type=\"line\"/>\n      <point x=\"2459\" y=\"754\" type=\"line\"/>\n      <point x=\"1650\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1022\"/>\n    <component base=\"bar\" xOffset=\"182\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_braceright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_braceright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1401\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1675\" y=\"-214\"/>\n      <point x=\"1902\" y=\"-42\"/>\n      <point x=\"1856\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1851\" y=\"261\"/>\n      <point x=\"1833\" y=\"336\"/>\n      <point x=\"1833\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1833\" y=\"578\"/>\n      <point x=\"1920\" y=\"649\"/>\n      <point x=\"2157\" y=\"649\" type=\"curve\"/>\n      <point x=\"2178\" y=\"767\" type=\"line\"/>\n      <point x=\"2012\" y=\"767\"/>\n      <point x=\"1915\" y=\"830\"/>\n      <point x=\"1915\" y=\"936\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1915\" y=\"1068\"/>\n      <point x=\"2042\" y=\"1161\"/>\n      <point x=\"2070\" y=\"1343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2097\" y=\"1518\"/>\n      <point x=\"1931\" y=\"1626\"/>\n      <point x=\"1706\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1596\" y=\"1626\"/>\n      <point x=\"1532\" y=\"1617\"/>\n      <point x=\"1474\" y=\"1606\" type=\"curve\"/>\n      <point x=\"1473\" y=\"1522\" type=\"line\"/>\n      <point x=\"1551\" y=\"1530\"/>\n      <point x=\"1628\" y=\"1536\"/>\n      <point x=\"1686\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1864\" y=\"1536\"/>\n      <point x=\"1989\" y=\"1462\"/>\n      <point x=\"1974\" y=\"1344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1955\" y=\"1198\"/>\n      <point x=\"1819\" y=\"1099\"/>\n      <point x=\"1819\" y=\"920\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1819\" y=\"793\"/>\n      <point x=\"1912\" y=\"716\"/>\n      <point x=\"2070\" y=\"712\" type=\"curve\"/>\n      <point x=\"2069\" y=\"704\" type=\"line\"/>\n      <point x=\"1845\" y=\"700\"/>\n      <point x=\"1737\" y=\"595\"/>\n      <point x=\"1737\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1737\" y=\"330\"/>\n      <point x=\"1750\" y=\"278\"/>\n      <point x=\"1760\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1805\" y=\"9\"/>\n      <point x=\"1614\" y=\"-124\"/>\n      <point x=\"1395\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1337\" y=\"-124\"/>\n      <point x=\"1262\" y=\"-118\"/>\n      <point x=\"1186\" y=\"-109\" type=\"curve\"/>\n      <point x=\"1157\" y=\"-194\" type=\"line\"/>\n      <point x=\"1218\" y=\"-206\"/>\n      <point x=\"1288\" y=\"-214\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"3\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bracketright.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_bracketright.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2025\" y=\"1634\" type=\"line\"/>\n      <point x=\"1929\" y=\"1634\" type=\"line\"/>\n      <point x=\"1603\" y=\"-214\" type=\"line\"/>\n      <point x=\"1699\" y=\"-214\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1951\" y=\"1634\" type=\"line\"/>\n      <point x=\"1342\" y=\"1634\" type=\"line\"/>\n      <point x=\"1326\" y=\"1544\" type=\"line\"/>\n      <point x=\"1935\" y=\"1544\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1641\" y=\"-124\" type=\"line\"/>\n      <point x=\"1032\" y=\"-124\" type=\"line\"/>\n      <point x=\"1016\" y=\"-214\" type=\"line\"/>\n      <point x=\"1625\" y=\"-214\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"49\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"48\" y=\"914\" type=\"line\"/>\n      <point x=\"619\" y=\"914\" type=\"line\"/>\n      <point x=\"635\" y=\"1004\" type=\"line\"/>\n      <point x=\"64\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-40\" y=\"414\" type=\"line\"/>\n      <point x=\"582\" y=\"414\" type=\"line\"/>\n      <point x=\"598\" y=\"504\" type=\"line\"/>\n      <point x=\"-24\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"615\" y=\"914\" type=\"line\"/>\n      <point x=\"1287\" y=\"914\" type=\"line\"/>\n      <point x=\"1303\" y=\"1004\" type=\"line\"/>\n      <point x=\"631\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"577\" y=\"414\" type=\"line\"/>\n      <point x=\"1199\" y=\"414\" type=\"line\"/>\n      <point x=\"1215\" y=\"504\" type=\"line\"/>\n      <point x=\"593\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"33\" type=\"line\"/>\n      <point x=\"2065\" y=\"648\" type=\"line\"/>\n      <point x=\"2087\" y=\"770\" type=\"line\"/>\n      <point x=\"553\" y=\"1497\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"170\" type=\"line\"/>\n      <point x=\"647\" y=\"1345\" type=\"line\"/>\n      <point x=\"1979\" y=\"726\" type=\"line\"/>\n      <point x=\"1976\" y=\"708\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"4\" y=\"664\" type=\"line\"/>\n      <point x=\"631\" y=\"664\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\"/>\n    <component base=\"hyphen_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"616\" y=\"664\" type=\"line\"/>\n      <point x=\"1243\" y=\"664\" type=\"line\"/>\n      <point x=\"1259\" y=\"754\" type=\"line\"/>\n      <point x=\"632\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_underscore_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bar_underscore_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"452\" y=\"-40\" type=\"line\"/>\n      <point x=\"546\" y=\"-40\" type=\"line\"/>\n      <point x=\"546\" y=\"1730\" type=\"line\"/>\n      <point x=\"452\" y=\"1730\" type=\"line\"/>\n    </contour>\n    <component base=\"underscore_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/be-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"be-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0431\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"774\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"532\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"-20\"/>\n      <point x=\"1073\" y=\"273\"/>\n      <point x=\"1073\" y=\"622\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1073\" y=\"874\"/>\n      <point x=\"933\" y=\"1010\"/>\n      <point x=\"722\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"541\" y=\"1010\"/>\n      <point x=\"368\" y=\"895\"/>\n      <point x=\"287\" y=\"760\" type=\"curve\"/>\n      <point x=\"273\" y=\"763\" type=\"line\"/>\n      <point x=\"345\" y=\"1100\"/>\n      <point x=\"500\" y=\"1330\"/>\n      <point x=\"817\" y=\"1379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"939\" y=\"1398\"/>\n      <point x=\"1115\" y=\"1394\"/>\n      <point x=\"1222\" y=\"1425\" type=\"curve\"/>\n      <point x=\"1219\" y=\"1519\" type=\"line\"/>\n      <point x=\"1095\" y=\"1487\"/>\n      <point x=\"938\" y=\"1490\"/>\n      <point x=\"814\" y=\"1472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"534\" y=\"1431\"/>\n      <point x=\"346\" y=\"1252\"/>\n      <point x=\"244\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"179\" y=\"815\"/>\n      <point x=\"148\" y=\"581\"/>\n      <point x=\"148\" y=\"425\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"143\"/>\n      <point x=\"274\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"542\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"72\"/>\n      <point x=\"206\" y=\"317\"/>\n      <point x=\"262\" y=\"623\" type=\"curve\"/>\n      <point x=\"327\" y=\"785\"/>\n      <point x=\"493\" y=\"918\"/>\n      <point x=\"687\" y=\"918\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"890\" y=\"918\"/>\n      <point x=\"977\" y=\"789\"/>\n      <point x=\"977\" y=\"610\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"977\" y=\"325\"/>\n      <point x=\"821\" y=\"72\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/be-cy.loclS_R_B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"be-cy.loclSRB\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"774\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"501\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"-20\"/>\n      <point x=\"1044\" y=\"233\"/>\n      <point x=\"1044\" y=\"575\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1044\" y=\"826\"/>\n      <point x=\"919\" y=\"920\"/>\n      <point x=\"773\" y=\"1002\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"1079\"/>\n      <point x=\"510\" y=\"1135\"/>\n      <point x=\"510\" y=\"1247\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"1323\"/>\n      <point x=\"567\" y=\"1376\"/>\n      <point x=\"691\" y=\"1389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"796\" y=\"1400\"/>\n      <point x=\"1018\" y=\"1391\"/>\n      <point x=\"1223\" y=\"1433\" type=\"curve\"/>\n      <point x=\"1212\" y=\"1520\" type=\"line\"/>\n      <point x=\"993\" y=\"1483\"/>\n      <point x=\"787\" y=\"1491\"/>\n      <point x=\"681\" y=\"1480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"509\" y=\"1462\"/>\n      <point x=\"413\" y=\"1382\"/>\n      <point x=\"413\" y=\"1250\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"413\" y=\"1088\"/>\n      <point x=\"557\" y=\"1020\"/>\n      <point x=\"693\" y=\"946\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"852\"/>\n      <point x=\"948\" y=\"783\"/>\n      <point x=\"948\" y=\"583\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"292\"/>\n      <point x=\"788\" y=\"72\"/>\n      <point x=\"511\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"327\" y=\"72\"/>\n      <point x=\"228\" y=\"167\"/>\n      <point x=\"228\" y=\"366\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"228\" y=\"689\"/>\n      <point x=\"420\" y=\"888\"/>\n      <point x=\"759\" y=\"888\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"888\"/>\n      <point x=\"851\" y=\"882\"/>\n      <point x=\"888\" y=\"875\" type=\"curve\"/>\n      <point x=\"897\" y=\"910\" type=\"line\"/>\n      <point x=\"830\" y=\"937\"/>\n      <point x=\"761\" y=\"949\"/>\n      <point x=\"694\" y=\"949\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"949\"/>\n      <point x=\"132\" y=\"704\"/>\n      <point x=\"132\" y=\"351\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"132\" y=\"128\"/>\n      <point x=\"243\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bellC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bellControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2407\"/>\n  <outline>\n    <component base=\"B.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bellC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bellControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"305\" type=\"line\"/>\n      <point x=\"171\" y=\"305\" type=\"line\"/>\n      <point x=\"171\" y=\"385\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"171\" y=\"822\"/>\n      <point x=\"306\" y=\"1023\"/>\n      <point x=\"600\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"894\" y=\"1023\"/>\n      <point x=\"1029\" y=\"822\"/>\n      <point x=\"1029\" y=\"385\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"305\" type=\"line\"/>\n      <point x=\"1125\" y=\"305\" type=\"line\"/>\n      <point x=\"1125\" y=\"385\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"886\"/>\n      <point x=\"960\" y=\"1115\"/>\n      <point x=\"600\" y=\"1115\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"240\" y=\"1115\"/>\n      <point x=\"75\" y=\"886\"/>\n      <point x=\"75\" y=\"385\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"125\" y=\"305\" type=\"line\"/>\n      <point x=\"1075\" y=\"305\" type=\"line\"/>\n      <point x=\"1075\" y=\"395\" type=\"line\"/>\n      <point x=\"125\" y=\"395\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/beta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"beta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B2\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"565\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"858\" y=\"-20\"/>\n      <point x=\"1065\" y=\"134\"/>\n      <point x=\"1065\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1065\" y=\"620\"/>\n      <point x=\"996\" y=\"761\"/>\n      <point x=\"824\" y=\"804\" type=\"curve\"/>\n      <point x=\"824\" y=\"828\" type=\"line\"/>\n      <point x=\"765\" y=\"840\"/>\n      <point x=\"704\" y=\"846\"/>\n      <point x=\"627\" y=\"846\" type=\"curve\"/>\n      <point x=\"619\" y=\"785\" type=\"line\"/>\n      <point x=\"845\" y=\"785\"/>\n      <point x=\"969\" y=\"665\"/>\n      <point x=\"969\" y=\"452\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"194\"/>\n      <point x=\"799\" y=\"71\"/>\n      <point x=\"571\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"329\" y=\"72\"/>\n      <point x=\"221\" y=\"248\"/>\n      <point x=\"274\" y=\"556\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"1020\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"1294\"/>\n      <point x=\"537\" y=\"1428\"/>\n      <point x=\"777\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"1428\"/>\n      <point x=\"1024\" y=\"1349\"/>\n      <point x=\"1024\" y=\"1209\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1024\" y=\"985\"/>\n      <point x=\"792\" y=\"844\"/>\n      <point x=\"449\" y=\"844\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"291\" y=\"844\" type=\"line\"/>\n      <point x=\"284\" y=\"754\" type=\"line\"/>\n      <point x=\"440\" y=\"754\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"754\"/>\n      <point x=\"1120\" y=\"931\"/>\n      <point x=\"1120\" y=\"1207\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1120\" y=\"1407\"/>\n      <point x=\"1005\" y=\"1520\"/>\n      <point x=\"794\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"491\" y=\"1520\"/>\n      <point x=\"314\" y=\"1354\"/>\n      <point x=\"258\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"181\" y=\"566\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"118\" y=\"193\"/>\n      <point x=\"258\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bitcoin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bitcoin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BF\"/>\n  <outline>\n    <contour>\n      <point x=\"274\" y=\"33\" type=\"line\"/>\n      <point x=\"212\" y=\"-320\" type=\"line\"/>\n      <point x=\"308\" y=\"-320\" type=\"line\"/>\n      <point x=\"370\" y=\"33\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"33\" type=\"line\"/>\n      <point x=\"493\" y=\"-320\" type=\"line\"/>\n      <point x=\"589\" y=\"-320\" type=\"line\"/>\n      <point x=\"651\" y=\"33\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"608\" y=\"1383\" type=\"line\"/>\n      <point x=\"671\" y=\"1740\" type=\"line\"/>\n      <point x=\"575\" y=\"1740\" type=\"line\"/>\n      <point x=\"512\" y=\"1383\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"889\" y=\"1383\" type=\"line\"/>\n      <point x=\"952\" y=\"1740\" type=\"line\"/>\n      <point x=\"856\" y=\"1740\" type=\"line\"/>\n      <point x=\"793\" y=\"1383\" type=\"line\"/>\n    </contour>\n    <component base=\"B\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CF\"/>\n  <note>\nH18533\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C6\"/>\n  <note>\nuni25C6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B22\"/>\n  <note>\nuni2B22\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"line\"/>\n      <point x=\"1120\" y=\"410\" type=\"line\"/>\n      <point x=\"1120\" y=\"1010\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"80\" y=\"1010\" type=\"line\"/>\n      <point x=\"80\" y=\"410\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackH_orizontalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackHorizontalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2C\"/>\n  <note>\nuni2B2C\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"395\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"395\"/>\n      <point x=\"1125\" y=\"520\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"900\"/>\n      <point x=\"916\" y=\"1025\"/>\n      <point x=\"600\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"1025\"/>\n      <point x=\"75\" y=\"900\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"520\"/>\n      <point x=\"284\" y=\"395\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackI_nW_hiteD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackInWhiteDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C8\"/>\n  <note>\nuni25C8\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"534\" type=\"line\"/>\n      <point x=\"776\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"886\" type=\"line\"/>\n      <point x=\"424\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackL_argeC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackLargeCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B24\"/>\n  <note>\nuni2B24\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackL_argeS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackLargeSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1B\"/>\n  <note>\nuni2B1B\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B25\"/>\n  <note>\nuni2B25\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"322\" type=\"line\"/>\n      <point x=\"988\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\n      <point x=\"212\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumDownTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC6\"/>\n  <note>\nuni2BC6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"466\" type=\"line\"/>\n      <point x=\"938\" y=\"1040\" type=\"line\"/>\n      <point x=\"262\" y=\"1040\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumLeftTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC7\"/>\n  <note>\nuni2BC7\n</note>\n  <outline>\n    <contour>\n      <point x=\"840\" y=\"372\" type=\"line\"/>\n      <point x=\"840\" y=\"1048\" type=\"line\"/>\n      <point x=\"266\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B27\"/>\n  <note>\nuni2B27\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"256\" type=\"line\"/>\n      <point x=\"873\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1164\" type=\"line\"/>\n      <point x=\"328\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumRightTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC8\"/>\n  <note>\nuni2BC8\n</note>\n  <outline>\n    <contour>\n      <point x=\"360\" y=\"372\" type=\"line\"/>\n      <point x=\"934\" y=\"710\" type=\"line\"/>\n      <point x=\"360\" y=\"1048\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackMediumUpTriangleCentred\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BC5\"/>\n  <note>\nuni2BC5\n</note>\n  <outline>\n    <contour>\n      <point x=\"262\" y=\"380\" type=\"line\"/>\n      <point x=\"938\" y=\"380\" type=\"line\"/>\n      <point x=\"600\" y=\"954\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackP_arallelogram.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackParallelogram\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25B0\"/>\n  <note>\nuni25B0\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1030\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"170\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackP_entagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackPentagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1F\"/>\n  <note>\nuni2B1F\n</note>\n  <outline>\n    <contour>\n      <point x=\"230\" y=\"168\" type=\"line\"/>\n      <point x=\"970\" y=\"168\" type=\"line\"/>\n      <point x=\"1200\" y=\"874\" type=\"line\"/>\n      <point x=\"600\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"874\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_mallD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B29\"/>\n  <note>\nuni2B29\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"534\" type=\"line\"/>\n      <point x=\"776\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"886\" type=\"line\"/>\n      <point x=\"424\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_mallL_ozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallLozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2A\"/>\n  <note>\nuni2B2A\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"402\" type=\"line\"/>\n      <point x=\"785\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"1019\" type=\"line\"/>\n      <point x=\"415\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AA\"/>\n  <note>\nH18543\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"410\" type=\"line\"/>\n      <point x=\"900\" y=\"1010\" type=\"line\"/>\n      <point x=\"300\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_milingF_ace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSmilingFace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"263B\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"957\" y=\"110\"/>\n      <point x=\"1243\" y=\"394\"/>\n      <point x=\"1243\" y=\"820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1243\" y=\"1114\"/>\n      <point x=\"1042\" y=\"1310\"/>\n      <point x=\"738\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"1310\"/>\n      <point x=\"21\" y=\"1026\"/>\n      <point x=\"21\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"21\" y=\"306\"/>\n      <point x=\"223\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"567\" y=\"343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"419\" y=\"343\"/>\n      <point x=\"320\" y=\"417\"/>\n      <point x=\"320\" y=\"528\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"320\" y=\"589\"/>\n      <point x=\"353\" y=\"629\"/>\n      <point x=\"402\" y=\"629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"629\"/>\n      <point x=\"728\" y=\"629\"/>\n      <point x=\"858\" y=\"629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"629\"/>\n      <point x=\"905\" y=\"611\"/>\n      <point x=\"905\" y=\"585\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"905\" y=\"440\"/>\n      <point x=\"770\" y=\"343\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"395\" y=\"792\"/>\n      <point x=\"356\" y=\"831\"/>\n      <point x=\"356\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"949\"/>\n      <point x=\"395\" y=\"988\"/>\n      <point x=\"454\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"988\"/>\n      <point x=\"552\" y=\"949\"/>\n      <point x=\"552\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"831\"/>\n      <point x=\"513\" y=\"792\"/>\n    </contour>\n    <contour>\n      <point x=\"874\" y=\"792\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"792\"/>\n      <point x=\"776\" y=\"831\"/>\n      <point x=\"776\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"949\"/>\n      <point x=\"815\" y=\"988\"/>\n      <point x=\"874\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"933\" y=\"988\"/>\n      <point x=\"972\" y=\"949\"/>\n      <point x=\"972\" y=\"890\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"831\"/>\n      <point x=\"933\" y=\"792\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A0\"/>\n  <note>\nfilledbox\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackV_erticalE_llipse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerticalEllipse\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B2E\"/>\n  <note>\nuni2B2E\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"185\"/>\n      <point x=\"915\" y=\"394\"/>\n      <point x=\"915\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"1026\"/>\n      <point x=\"790\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1235\"/>\n      <point x=\"285\" y=\"1026\"/>\n      <point x=\"285\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"285\" y=\"394\"/>\n      <point x=\"410\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackV_erticalR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerticalRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AE\"/>\n  <note>\nuni25AE\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"110\" type=\"line\"/>\n      <point x=\"900\" y=\"1310\" type=\"line\"/>\n      <point x=\"300\" y=\"1310\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackV_erysmallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blackVerysmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1D\"/>\n  <note>\nuni2B1D\n</note>\n  <outline>\n    <contour>\n      <point x=\"375\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"485\" type=\"line\"/>\n      <point x=\"825\" y=\"935\" type=\"line\"/>\n      <point x=\"375\" y=\"935\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blank-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blank-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2800\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blank.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blank\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2423\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"-338\" type=\"line\"/>\n      <point x=\"1100\" y=\"-338\" type=\"line\"/>\n      <point x=\"1100\" y=\"-248\" type=\"line\"/>\n      <point x=\"100\" y=\"-248\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1006\" y=\"-298\" type=\"line\"/>\n      <point x=\"1100\" y=\"-298\" type=\"line\"/>\n      <point x=\"1100\" y=\"-20\" type=\"line\"/>\n      <point x=\"1006\" y=\"-20\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"100\" y=\"-298\" type=\"line\"/>\n      <point x=\"194\" y=\"-298\" type=\"line\"/>\n      <point x=\"194\" y=\"-20\" type=\"line\"/>\n      <point x=\"100\" y=\"-20\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blankS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"blankSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2422\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"985\" type=\"line\"/>\n      <point x=\"706\" y=\"1305\" type=\"line\"/>\n      <point x=\"706\" y=\"1411\" type=\"line\"/>\n      <point x=\"0\" y=\"1091\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"397\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"-20\"/>\n      <point x=\"1075\" y=\"206\"/>\n      <point x=\"1075\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1075\" y=\"906\"/>\n      <point x=\"922\" y=\"1080\"/>\n      <point x=\"655\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"1080\"/>\n      <point x=\"335\" y=\"1010\"/>\n      <point x=\"287\" y=\"868\" type=\"curve\"/>\n      <point x=\"215\" y=\"868\" type=\"line\"/>\n      <point x=\"277\" y=\"596\" type=\"line\"/>\n      <point x=\"277\" y=\"859\"/>\n      <point x=\"400\" y=\"988\"/>\n      <point x=\"645\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"988\"/>\n      <point x=\"979\" y=\"848\"/>\n      <point x=\"979\" y=\"600\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"264\"/>\n      <point x=\"783\" y=\"72\"/>\n      <point x=\"439\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"72\"/>\n      <point x=\"304\" y=\"77\"/>\n      <point x=\"249\" y=\"86\" type=\"curve\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"260\" y=\"-12\"/>\n      <point x=\"326\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"277\" y=\"18\" type=\"line\"/>\n      <point x=\"277\" y=\"1500\" type=\"line\"/>\n      <point x=\"187\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"0\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBED\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-LC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-LC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"196\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"196\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-LC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-LC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"115\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"115\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-ML.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-ML\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBEB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"2226\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"600\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"300\" y=\"-480\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-ML.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-ML.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"300\" y=\"1900\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"300\" y=\"-480\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-MR.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-MR\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"2226\"/>\r\n      <point x=\"600\" y=\"1549\"/>\r\n      <point x=\"600\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"196\"/>\r\n      <point x=\"900\" y=\"-480\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-MR.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-MR.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"1900\"/>\r\n      <point x=\"600\" y=\"1305\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"115\"/>\r\n      <point x=\"900\" y=\"-480\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-UC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-UC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1549\"/>\r\n      <point x=\"300\" y=\"873\"/>\r\n      <point x=\"600\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"873\"/>\r\n      <point x=\"1200\" y=\"1549\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-UC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockCircle-UC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1305\"/>\r\n      <point x=\"300\" y=\"710\"/>\r\n      <point x=\"600\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"710\"/>\r\n      <point x=\"1200\" y=\"1305\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB3F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB40.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB40\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB40.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB41.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB41\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB41.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB42.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB42\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB42.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB43.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB43\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB43.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB44.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB44\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB44.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB45\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB49.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB49\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB49.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB4F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB50.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB50\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB50.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB51.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB51\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB51.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB52.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB52\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB52.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB53.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB53\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB53.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB54.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB54\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB54.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB55.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB55\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB55.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB57.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB57\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB57.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB58.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB58\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB58.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB59.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB59\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB59.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB5F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB60.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB60\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB60.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB61.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB61\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB61.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB62.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB62\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB62.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB63.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB63\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB63.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB64.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB64\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB64.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB65.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB65\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB65.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB66.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB66\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB66.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB67.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB67\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockDiagonal-1FB67.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD02\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD17\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD70\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1234678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1235678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1235678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1235678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD87\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-123678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1237.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1237\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1237.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1237.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1238.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1238\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD77\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1238.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1238.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD05\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD13\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1245678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1245678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1245678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-124678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD98\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1247.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1247\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1247.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1247.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1248.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1248\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1248.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1248.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-125678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-125678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-125678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1257.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1257\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1257.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1257.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1258.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1258\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1258.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1258.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1267.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1267\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1267.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1267.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-12678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1268.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1268\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD92\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1268.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1268.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-127.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-127\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-127.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-127.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1278.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1278\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1278.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1278.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-128.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-128\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD73\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-128.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-128.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD07\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD15\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1345678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1345678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1345678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-134678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-135.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-135\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-135.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-135.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-13678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-137.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-137\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-137.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-137.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-138.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-138\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD75\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-138.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-138.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD04\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD11\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-145678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-145678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-145678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD89\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-14678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-147.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-147\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-147.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-147.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-148.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-148\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD79\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-148.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-148.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-15678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-15678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-15678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-157.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-157\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD45\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-157.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-157.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-158.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-158\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD81\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-158.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-158.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD19\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-167.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-167\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-167.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-167.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-1678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-168.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-168\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD90\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-168.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-168.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-17.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-17\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-17.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-17.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-178.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-178\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-178.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-178.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-18.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-18\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD71\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-18.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-18.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD01\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD08\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD16\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2345678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2345678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2345678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-234678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-235678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-235678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-235678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-23678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD94\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-237.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-237\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-237.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-237.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-238.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-238\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD76\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-238.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-238.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD12\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-24678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-247.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-247\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-247.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-247.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-248.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-248\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-248.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-248.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD0B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-25678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-25678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-25678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-257.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-257\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-257.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-257.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-258.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-258\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-258.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-258.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-267.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-267\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-267.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-267.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-2678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-268.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-268\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD91\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-268.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-268.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-27.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-27\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-27.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-27.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-278.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-278\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-278.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-278.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-28.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-28\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD72\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-28.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-28.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD00\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD06\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD14\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA8\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD8C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-34678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD99\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-347.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-347\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-347.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-347.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-348.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-348\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD7C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-348.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-348.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-35678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-35678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDDE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-35678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-35678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-357.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-357\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-357.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-357.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-358.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-358\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-358.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-358.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-367.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-367\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-367.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-367.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-3678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-368.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-368\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD93\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-368.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-368.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-37.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-37\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-37.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-37.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-378.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-378\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDAF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-378.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-378.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-38.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-38\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD74\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-38.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-38.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD03\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD10\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-45678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDE1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-45678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-45678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDA4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-457.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-457\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-457.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-457.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDC3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-458.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-458\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD88\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-458.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-458.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-467.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-467\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-467.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-467.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDD3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-4678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-468.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-468\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-468.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-468.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-478.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-478\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDB3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-478.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-478.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD78\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD09\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-567.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-567\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-567.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-567.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-568.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-568\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD9C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-568.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-568.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-578.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-578\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDBB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-578.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-578.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-58.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-58\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD80\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-58.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-58.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD18\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-67.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-67\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CD51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-67.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-67.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-678.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-678\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CDCB\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-678.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-678.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-7\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA3\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-7.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-8\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA0\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-8.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockOctant-8.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-LC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-LC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-LC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-LC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-ML.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-ML\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-ML.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-ML.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-MR.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-MR\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-MR.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-MR.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-UC.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-UC\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FBE4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-UC.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockQuadrant-UC.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE90\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA9\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA7\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-159.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-159\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA6\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-159.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-159.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE91\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAA\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE92\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE93\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAC\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-48C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAD\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-48C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-48C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE94\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-59D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-59D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA5\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-59D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-59D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-7\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-7.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-8.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-8.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-8CG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8CG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAE\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-8CG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-8CG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-9.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE98\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-9.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-9D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA4\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-9D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-9D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE99\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-CG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-CG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEAF\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-CG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-CG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-DEF.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-DEF\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA2\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-DEF.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-DEF.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-EFG.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-EFG\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CEA1\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-EFG.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-EFG.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-G.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-G\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE9F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-G.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSedecimant-G.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"860\" type=\"line\"/>\r\n      <point x=\"150\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1023\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1023\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"860\" type=\"line\"/>\r\n      <point x=\"750\" y=\"860\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"723\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"560\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CC28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"723\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedQuadrant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"560\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE51\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE53\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE57\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-123456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-123456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE67\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE87\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE77\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE63\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE83\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE73\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE55\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-135.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-135\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE65\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-135.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE85\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE75\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE59\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE89\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE79\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE61\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE81\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE71\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"150\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE52\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE56\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE66\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE86\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE76\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE62\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE82\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE72\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"2076\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1474\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1474\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1750\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1257\" type=\"line\"/>\r\n      <point x=\"750\" y=\"1257\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE54\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE5C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE8C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE7C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE64\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE84\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE74\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"450\" y=\"572\" type=\"line\"/>\r\n      <point x=\"150\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"957\" type=\"line\"/>\r\n      <point x=\"450\" y=\"463\" type=\"line\"/>\r\n      <point x=\"150\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE58\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE88\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE78\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"1174\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"572\" type=\"line\"/>\r\n      <point x=\"750\" y=\"572\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"957\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"463\" type=\"line\"/>\r\n      <point x=\"750\" y=\"463\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE60\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE80\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"272\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"150\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"163\" type=\"line\"/>\r\n      <point x=\"450\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"150\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE70\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"272\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSeparatedSextant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"750\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"163\" type=\"line\"/>\r\n      <point x=\"1050\" y=\"-330\" type=\"line\"/>\r\n      <point x=\"750\" y=\"-330\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB00\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB02\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB06\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB15\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB19\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-12456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1246.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1246\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1246.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1246.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-125.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-125\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB12\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-125.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-125.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-126.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-126\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-126.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-126.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-13.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB04\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-13.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-13456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-13456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-13456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-136.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-136\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-136.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-136.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB08\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-145.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-145\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB17\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-145.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-145.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-1456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-146.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-146\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-146.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-146.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-15.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-15\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB10\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-15.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-15.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-156.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-156\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-156.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-156.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-16.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-16\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-16.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-16.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB01\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB05\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-23456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-23456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-23456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-235.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-235\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB14\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-235.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-235.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-236.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-236\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-236.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-236.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB09\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-245.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-245\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB18\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-245.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-245.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-2456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB11\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-256.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-256\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-256.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-256.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB03\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-345.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-345\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-345.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-345.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-3456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-3456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-3456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-346.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-346\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-346.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-346.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB13\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-356.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-356\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-356.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-356.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB07\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB16\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-456.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-456\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-456.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-456.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-5\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB0F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-5.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-56.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-56\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-56.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-56.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-6\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockSextant-6.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-1.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-1\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-1.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-1.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-123.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-123\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-123.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-123.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-124.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-124\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-124.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-124.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-134.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-134\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB68\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-134.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-134.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-14.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-14\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB9A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-14.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-14.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-2\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-2.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB9B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-234.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-234\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB69\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-234.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-234.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-3\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-3.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-4\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB6F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"blockTriangle-4.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bottomH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bottomHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2BCB\"/>\n  <note>\nuni2BCB\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bottomH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bottomHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B19\"/>\n  <note>\nuni2B19\n</note>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"1133\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\" xScale=\"-1\" yScale=\"-1\" xOffset=\"1200\" yOffset=\"1420\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2566\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2557\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2554\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2550\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2569\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255D\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255A\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2551\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256C\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2563\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"459\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2560\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDoubleVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"848\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2565\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2556\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2553\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2530\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2512\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2527\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250E\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251F\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndUpHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2541\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownHeavyAndUpHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252F\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2511\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2529\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-571\" type=\"line\"/>\n      <point x=\"647\" y=\"-571\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"2185\" type=\"line\"/>\n      <point x=\"506\" y=\"2185\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndLeftUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2521\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndRightUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndUpHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2547\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownLightAndUpHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2564\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2555\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2552\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxDownSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254D\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"613\" type=\"line\"/>\n      <point x=\"1050\" y=\"613\" type=\"line\"/>\n      <point x=\"1050\" y=\"801\" type=\"line\"/>\n      <point x=\"750\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"613\" type=\"line\"/>\n      <point x=\"450\" y=\"613\" type=\"line\"/>\n      <point x=\"450\" y=\"801\" type=\"line\"/>\n      <point x=\"150\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"613\" type=\"line\"/>\n      <point x=\"1050\" y=\"613\" type=\"line\"/>\n      <point x=\"1050\" y=\"801\" type=\"line\"/>\n      <point x=\"750\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"613\" type=\"line\"/>\n      <point x=\"450\" y=\"613\" type=\"line\"/>\n      <point x=\"450\" y=\"801\" type=\"line\"/>\n      <point x=\"150\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254F\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1013\" type=\"line\"/>\n      <point x=\"694\" y=\"1013\" type=\"line\"/>\n      <point x=\"694\" y=\"1626\" type=\"line\"/>\n      <point x=\"506\" y=\"1626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-212\" type=\"line\"/>\n      <point x=\"694\" y=\"-212\" type=\"line\"/>\n      <point x=\"694\" y=\"401\" type=\"line\"/>\n      <point x=\"506\" y=\"401\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDoubleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"972\" type=\"line\"/>\n      <point x=\"694\" y=\"972\" type=\"line\"/>\n      <point x=\"694\" y=\"1503\" type=\"line\"/>\n      <point x=\"506\" y=\"1503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-90\" type=\"line\"/>\n      <point x=\"694\" y=\"-90\" type=\"line\"/>\n      <point x=\"694\" y=\"441\" type=\"line\"/>\n      <point x=\"506\" y=\"441\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257B\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2533\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2513\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250F\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2501\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2578\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeftAndLightRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257E\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyLeftAndLightRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2509\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"613\" type=\"line\"/>\n      <point x=\"1162\" y=\"613\" type=\"line\"/>\n      <point x=\"1162\" y=\"801\" type=\"line\"/>\n      <point x=\"937\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"613\" type=\"line\"/>\n      <point x=\"262\" y=\"613\" type=\"line\"/>\n      <point x=\"262\" y=\"801\" type=\"line\"/>\n      <point x=\"37\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"613\" type=\"line\"/>\n      <point x=\"562\" y=\"613\" type=\"line\"/>\n      <point x=\"562\" y=\"801\" type=\"line\"/>\n      <point x=\"337\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"613\" type=\"line\"/>\n      <point x=\"862\" y=\"613\" type=\"line\"/>\n      <point x=\"862\" y=\"801\" type=\"line\"/>\n      <point x=\"637\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"613\" type=\"line\"/>\n      <point x=\"1162\" y=\"613\" type=\"line\"/>\n      <point x=\"1162\" y=\"801\" type=\"line\"/>\n      <point x=\"937\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"613\" type=\"line\"/>\n      <point x=\"262\" y=\"613\" type=\"line\"/>\n      <point x=\"262\" y=\"801\" type=\"line\"/>\n      <point x=\"37\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"613\" type=\"line\"/>\n      <point x=\"562\" y=\"613\" type=\"line\"/>\n      <point x=\"562\" y=\"801\" type=\"line\"/>\n      <point x=\"337\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"613\" type=\"line\"/>\n      <point x=\"862\" y=\"613\" type=\"line\"/>\n      <point x=\"862\" y=\"801\" type=\"line\"/>\n      <point x=\"637\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250B\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1394\" type=\"line\"/>\n      <point x=\"694\" y=\"1394\" type=\"line\"/>\n      <point x=\"694\" y=\"1853\" type=\"line\"/>\n      <point x=\"506\" y=\"1853\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-442\" type=\"line\"/>\n      <point x=\"694\" y=\"-442\" type=\"line\"/>\n      <point x=\"694\" y=\"17\" type=\"line\"/>\n      <point x=\"506\" y=\"17\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"170\" type=\"line\"/>\n      <point x=\"694\" y=\"170\" type=\"line\"/>\n      <point x=\"694\" y=\"629\" type=\"line\"/>\n      <point x=\"506\" y=\"629\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"782\" type=\"line\"/>\n      <point x=\"694\" y=\"782\" type=\"line\"/>\n      <point x=\"694\" y=\"1241\" type=\"line\"/>\n      <point x=\"506\" y=\"1241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyQuadrupleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1304\" type=\"line\"/>\n      <point x=\"694\" y=\"1304\" type=\"line\"/>\n      <point x=\"694\" y=\"1703\" type=\"line\"/>\n      <point x=\"506\" y=\"1703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-289\" type=\"line\"/>\n      <point x=\"694\" y=\"-289\" type=\"line\"/>\n      <point x=\"694\" y=\"110\" type=\"line\"/>\n      <point x=\"506\" y=\"110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"242\" type=\"line\"/>\n      <point x=\"694\" y=\"242\" type=\"line\"/>\n      <point x=\"694\" y=\"641\" type=\"line\"/>\n      <point x=\"506\" y=\"641\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"773\" type=\"line\"/>\n      <point x=\"694\" y=\"773\" type=\"line\"/>\n      <point x=\"694\" y=\"1172\" type=\"line\"/>\n      <point x=\"506\" y=\"1172\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257A\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2505\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"613\" type=\"line\"/>\n      <point x=\"1133\" y=\"613\" type=\"line\"/>\n      <point x=\"1133\" y=\"801\" type=\"line\"/>\n      <point x=\"866\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"613\" type=\"line\"/>\n      <point x=\"333\" y=\"613\" type=\"line\"/>\n      <point x=\"333\" y=\"801\" type=\"line\"/>\n      <point x=\"66\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"613\" type=\"line\"/>\n      <point x=\"733\" y=\"613\" type=\"line\"/>\n      <point x=\"733\" y=\"801\" type=\"line\"/>\n      <point x=\"466\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"613\" type=\"line\"/>\n      <point x=\"1133\" y=\"613\" type=\"line\"/>\n      <point x=\"1133\" y=\"801\" type=\"line\"/>\n      <point x=\"866\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"613\" type=\"line\"/>\n      <point x=\"333\" y=\"613\" type=\"line\"/>\n      <point x=\"333\" y=\"801\" type=\"line\"/>\n      <point x=\"66\" y=\"801\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"613\" type=\"line\"/>\n      <point x=\"733\" y=\"613\" type=\"line\"/>\n      <point x=\"733\" y=\"801\" type=\"line\"/>\n      <point x=\"466\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2507\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1250\" type=\"line\"/>\n      <point x=\"694\" y=\"1250\" type=\"line\"/>\n      <point x=\"694\" y=\"1794\" type=\"line\"/>\n      <point x=\"506\" y=\"1794\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-382\" type=\"line\"/>\n      <point x=\"694\" y=\"-382\" type=\"line\"/>\n      <point x=\"694\" y=\"162\" type=\"line\"/>\n      <point x=\"506\" y=\"162\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"434\" type=\"line\"/>\n      <point x=\"694\" y=\"434\" type=\"line\"/>\n      <point x=\"694\" y=\"978\" type=\"line\"/>\n      <point x=\"506\" y=\"978\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyTripleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"1179\" type=\"line\"/>\n      <point x=\"694\" y=\"1179\" type=\"line\"/>\n      <point x=\"694\" y=\"1651\" type=\"line\"/>\n      <point x=\"506\" y=\"1651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"-237\" type=\"line\"/>\n      <point x=\"694\" y=\"-237\" type=\"line\"/>\n      <point x=\"694\" y=\"235\" type=\"line\"/>\n      <point x=\"506\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"471\" type=\"line\"/>\n      <point x=\"694\" y=\"471\" type=\"line\"/>\n      <point x=\"694\" y=\"943\" type=\"line\"/>\n      <point x=\"506\" y=\"943\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2579\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_p.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUp.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253B\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251B\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLightDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257F\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndLightDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2517\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2503\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254B\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252B\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2523\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxHeavyVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftDownHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2545\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftDownHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2535\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightVerticalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftHeavyAndRightVerticalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2532\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253A\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightVerticalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254A\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftLightAndRightVerticalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftUpHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2543\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLeftUpHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"464\"/>\n      <point x=\"357\" y=\"754\"/>\n      <point x=\"0\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"0\" y=\"660\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"660\"/>\n      <point x=\"553\" y=\"412\"/>\n      <point x=\"553\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"464\"/>\n      <point x=\"357\" y=\"754\"/>\n      <point x=\"0\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"0\" y=\"660\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"305\" y=\"660\"/>\n      <point x=\"553\" y=\"412\"/>\n      <point x=\"553\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"412\"/>\n      <point x=\"895\" y=\"660\"/>\n      <point x=\"1200\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1200\" y=\"754\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"754\"/>\n      <point x=\"553\" y=\"464\"/>\n      <point x=\"553\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"107\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"412\"/>\n      <point x=\"895\" y=\"660\"/>\n      <point x=\"1200\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1200\" y=\"754\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"843\" y=\"754\"/>\n      <point x=\"553\" y=\"464\"/>\n      <point x=\"553\" y=\"107\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256F\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"0\" y=\"660\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"660\"/>\n      <point x=\"647\" y=\"950\"/>\n      <point x=\"647\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"1002\"/>\n      <point x=\"305\" y=\"754\"/>\n      <point x=\"0\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"0\" y=\"660\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"660\"/>\n      <point x=\"647\" y=\"950\"/>\n      <point x=\"647\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"1002\"/>\n      <point x=\"305\" y=\"754\"/>\n      <point x=\"0\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2570\"/>\n  <outline>\n    <contour>\n      <point x=\"1200\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1200\" y=\"754\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"754\"/>\n      <point x=\"647\" y=\"1002\"/>\n      <point x=\"647\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"950\"/>\n      <point x=\"843\" y=\"660\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightArcUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1200\" y=\"660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1200\" y=\"754\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"754\"/>\n      <point x=\"647\" y=\"1002\"/>\n      <point x=\"647\" y=\"1307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1307\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"950\"/>\n      <point x=\"843\" y=\"660\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalC_ross.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalCross\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2573\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-518\" type=\"line\"/>\n      <point x=\"52\" y=\"-518\" type=\"line\"/>\n      <point x=\"600\" y=\"600\" type=\"line\"/>\n      <point x=\"1148\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-411\" type=\"line\"/>\n      <point x=\"652\" y=\"707\" type=\"line\"/>\n      <point x=\"1200\" y=\"1825\" type=\"line\"/>\n      <point x=\"1200\" y=\"1932\" type=\"line\"/>\n      <point x=\"1148\" y=\"1932\" type=\"line\"/>\n      <point x=\"600\" y=\"814\" type=\"line\"/>\n      <point x=\"52\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1825\" type=\"line\"/>\n      <point x=\"548\" y=\"707\" type=\"line\"/>\n      <point x=\"0\" y=\"-411\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalCross.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-355\" type=\"line\"/>\n      <point x=\"54\" y=\"-355\" type=\"line\"/>\n      <point x=\"600\" y=\"611\" type=\"line\"/>\n      <point x=\"1146\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-259\" type=\"line\"/>\n      <point x=\"654\" y=\"707\" type=\"line\"/>\n      <point x=\"1200\" y=\"1673\" type=\"line\"/>\n      <point x=\"1200\" y=\"1769\" type=\"line\"/>\n      <point x=\"1146\" y=\"1769\" type=\"line\"/>\n      <point x=\"600\" y=\"803\" type=\"line\"/>\n      <point x=\"54\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1673\" type=\"line\"/>\n      <point x=\"546\" y=\"707\" type=\"line\"/>\n      <point x=\"0\" y=\"-259\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperLeftToLowerRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2572\"/>\n  <outline>\n    <contour>\n      <point x=\"1148\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"-411\" type=\"line\"/>\n      <point x=\"52\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"1825\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperLeftToLowerRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1146\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"-259\" type=\"line\"/>\n      <point x=\"54\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"1673\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperRightToLowerLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2571\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-518\" type=\"line\"/>\n      <point x=\"52\" y=\"-518\" type=\"line\"/>\n      <point x=\"1200\" y=\"1825\" type=\"line\"/>\n      <point x=\"1200\" y=\"1932\" type=\"line\"/>\n      <point x=\"1148\" y=\"1932\" type=\"line\"/>\n      <point x=\"0\" y=\"-411\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDiagonalUpperRightToLowerLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-355\" type=\"line\"/>\n      <point x=\"54\" y=\"-355\" type=\"line\"/>\n      <point x=\"1200\" y=\"1673\" type=\"line\"/>\n      <point x=\"1200\" y=\"1769\" type=\"line\"/>\n      <point x=\"1146\" y=\"1769\" type=\"line\"/>\n      <point x=\"0\" y=\"-259\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254C\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"660\" type=\"line\"/>\n      <point x=\"1050\" y=\"660\" type=\"line\"/>\n      <point x=\"1050\" y=\"754\" type=\"line\"/>\n      <point x=\"750\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"660\" type=\"line\"/>\n      <point x=\"450\" y=\"660\" type=\"line\"/>\n      <point x=\"450\" y=\"754\" type=\"line\"/>\n      <point x=\"150\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"750\" y=\"660\" type=\"line\"/>\n      <point x=\"1050\" y=\"660\" type=\"line\"/>\n      <point x=\"1050\" y=\"754\" type=\"line\"/>\n      <point x=\"750\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"660\" type=\"line\"/>\n      <point x=\"450\" y=\"660\" type=\"line\"/>\n      <point x=\"450\" y=\"754\" type=\"line\"/>\n      <point x=\"150\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"254E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1013\" type=\"line\"/>\n      <point x=\"647\" y=\"1013\" type=\"line\"/>\n      <point x=\"647\" y=\"1626\" type=\"line\"/>\n      <point x=\"553\" y=\"1626\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-212\" type=\"line\"/>\n      <point x=\"647\" y=\"-212\" type=\"line\"/>\n      <point x=\"647\" y=\"401\" type=\"line\"/>\n      <point x=\"553\" y=\"401\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDoubleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"972\" type=\"line\"/>\n      <point x=\"647\" y=\"972\" type=\"line\"/>\n      <point x=\"647\" y=\"1503\" type=\"line\"/>\n      <point x=\"553\" y=\"1503\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-90\" type=\"line\"/>\n      <point x=\"647\" y=\"-90\" type=\"line\"/>\n      <point x=\"647\" y=\"441\" type=\"line\"/>\n      <point x=\"553\" y=\"441\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2577\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2510\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightDownAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2500\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2574\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeftAndHeavyRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightLeftAndHeavyRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2508\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"660\" type=\"line\"/>\n      <point x=\"1162\" y=\"660\" type=\"line\"/>\n      <point x=\"1162\" y=\"754\" type=\"line\"/>\n      <point x=\"937\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"660\" type=\"line\"/>\n      <point x=\"262\" y=\"660\" type=\"line\"/>\n      <point x=\"262\" y=\"754\" type=\"line\"/>\n      <point x=\"37\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"660\" type=\"line\"/>\n      <point x=\"562\" y=\"660\" type=\"line\"/>\n      <point x=\"562\" y=\"754\" type=\"line\"/>\n      <point x=\"337\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"660\" type=\"line\"/>\n      <point x=\"862\" y=\"660\" type=\"line\"/>\n      <point x=\"862\" y=\"754\" type=\"line\"/>\n      <point x=\"637\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"937\" y=\"660\" type=\"line\"/>\n      <point x=\"1162\" y=\"660\" type=\"line\"/>\n      <point x=\"1162\" y=\"754\" type=\"line\"/>\n      <point x=\"937\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"37\" y=\"660\" type=\"line\"/>\n      <point x=\"262\" y=\"660\" type=\"line\"/>\n      <point x=\"262\" y=\"754\" type=\"line\"/>\n      <point x=\"37\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"337\" y=\"660\" type=\"line\"/>\n      <point x=\"562\" y=\"660\" type=\"line\"/>\n      <point x=\"562\" y=\"754\" type=\"line\"/>\n      <point x=\"337\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"637\" y=\"660\" type=\"line\"/>\n      <point x=\"862\" y=\"660\" type=\"line\"/>\n      <point x=\"862\" y=\"754\" type=\"line\"/>\n      <point x=\"637\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"250A\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1535\" type=\"line\"/>\n      <point x=\"647\" y=\"1535\" type=\"line\"/>\n      <point x=\"647\" y=\"1994\" type=\"line\"/>\n      <point x=\"553\" y=\"1994\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-301\" type=\"line\"/>\n      <point x=\"647\" y=\"-301\" type=\"line\"/>\n      <point x=\"647\" y=\"158\" type=\"line\"/>\n      <point x=\"553\" y=\"158\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"311\" type=\"line\"/>\n      <point x=\"647\" y=\"311\" type=\"line\"/>\n      <point x=\"647\" y=\"770\" type=\"line\"/>\n      <point x=\"553\" y=\"770\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"923\" type=\"line\"/>\n      <point x=\"647\" y=\"923\" type=\"line\"/>\n      <point x=\"647\" y=\"1382\" type=\"line\"/>\n      <point x=\"553\" y=\"1382\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightQuadrupleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1304\" type=\"line\"/>\n      <point x=\"647\" y=\"1304\" type=\"line\"/>\n      <point x=\"647\" y=\"1703\" type=\"line\"/>\n      <point x=\"553\" y=\"1703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-289\" type=\"line\"/>\n      <point x=\"647\" y=\"-289\" type=\"line\"/>\n      <point x=\"647\" y=\"110\" type=\"line\"/>\n      <point x=\"553\" y=\"110\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"242\" type=\"line\"/>\n      <point x=\"647\" y=\"242\" type=\"line\"/>\n      <point x=\"647\" y=\"641\" type=\"line\"/>\n      <point x=\"553\" y=\"641\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"773\" type=\"line\"/>\n      <point x=\"647\" y=\"773\" type=\"line\"/>\n      <point x=\"647\" y=\"1172\" type=\"line\"/>\n      <point x=\"553\" y=\"1172\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2576\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2504\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"660\" type=\"line\"/>\n      <point x=\"1133\" y=\"660\" type=\"line\"/>\n      <point x=\"1133\" y=\"754\" type=\"line\"/>\n      <point x=\"866\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"660\" type=\"line\"/>\n      <point x=\"333\" y=\"660\" type=\"line\"/>\n      <point x=\"333\" y=\"754\" type=\"line\"/>\n      <point x=\"66\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"660\" type=\"line\"/>\n      <point x=\"733\" y=\"660\" type=\"line\"/>\n      <point x=\"733\" y=\"754\" type=\"line\"/>\n      <point x=\"466\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"866\" y=\"660\" type=\"line\"/>\n      <point x=\"1133\" y=\"660\" type=\"line\"/>\n      <point x=\"1133\" y=\"754\" type=\"line\"/>\n      <point x=\"866\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"66\" y=\"660\" type=\"line\"/>\n      <point x=\"333\" y=\"660\" type=\"line\"/>\n      <point x=\"333\" y=\"754\" type=\"line\"/>\n      <point x=\"66\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"660\" type=\"line\"/>\n      <point x=\"733\" y=\"660\" type=\"line\"/>\n      <point x=\"733\" y=\"754\" type=\"line\"/>\n      <point x=\"466\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2506\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1391\" type=\"line\"/>\n      <point x=\"647\" y=\"1391\" type=\"line\"/>\n      <point x=\"647\" y=\"1935\" type=\"line\"/>\n      <point x=\"553\" y=\"1935\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-241\" type=\"line\"/>\n      <point x=\"647\" y=\"-241\" type=\"line\"/>\n      <point x=\"647\" y=\"303\" type=\"line\"/>\n      <point x=\"553\" y=\"303\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"575\" type=\"line\"/>\n      <point x=\"647\" y=\"575\" type=\"line\"/>\n      <point x=\"647\" y=\"1119\" type=\"line\"/>\n      <point x=\"553\" y=\"1119\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightTripleDashVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1179\" type=\"line\"/>\n      <point x=\"647\" y=\"1179\" type=\"line\"/>\n      <point x=\"647\" y=\"1651\" type=\"line\"/>\n      <point x=\"553\" y=\"1651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-237\" type=\"line\"/>\n      <point x=\"647\" y=\"-237\" type=\"line\"/>\n      <point x=\"647\" y=\"235\" type=\"line\"/>\n      <point x=\"553\" y=\"235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"471\" type=\"line\"/>\n      <point x=\"647\" y=\"471\" type=\"line\"/>\n      <point x=\"647\" y=\"943\" type=\"line\"/>\n      <point x=\"553\" y=\"943\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2575\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_p.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUp.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHeavyDown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"257D\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHeavyDown.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2534\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2518\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2514\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightUpAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_ertical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVertical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2502\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_ertical.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVertical.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndHorizontal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndHorizontal.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndLeft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2524\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndLeft.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndRight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251C\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxLightVerticalAndRight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightDownHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2546\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightDownHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftUpLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2536\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftUpLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftVerticalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightHeavyAndLeftVerticalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2531\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftUpHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2539\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftUpHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftVerticalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2549\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightLightAndLeftVerticalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightUpHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2544\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxRightUpHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2568\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255C\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2559\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndDownHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2540\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndDownHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2538\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2526\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251A\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightDownLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightDownLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2516\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndDownHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2548\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndDownHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2537\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"252A\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"506\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2519\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightDownHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2522\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightDownHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"506\" y=\"801\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2515\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2567\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255B\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2558\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxUpSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndHorizontalSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256B\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndHorizontalSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndLeftSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2562\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndLeftSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"459\" y=\"660\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndRightSingle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255F\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"-530\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"2226\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"459\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalDoubleAndRightSingle.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"-508\" type=\"line\"/>\n      <point x=\"741\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"754\" type=\"line\"/>\n      <point x=\"741\" y=\"1922\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"459\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndHorizontalLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2542\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndHorizontalLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndLeftLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2528\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndLeftLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"506\" y=\"660\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndRightLight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2520\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"-530\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"2226\" type=\"line\"/>\n      <point x=\"506\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalHeavyAndRightLight.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"506\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"-508\" type=\"line\"/>\n      <point x=\"694\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"754\" type=\"line\"/>\n      <point x=\"694\" y=\"1922\" type=\"line\"/>\n      <point x=\"506\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndHorizontalHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"253F\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndHorizontalHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndLeftHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2525\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndLeftHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"801\" type=\"line\"/>\n      <point x=\"-47\" y=\"613\" type=\"line\"/>\n      <point x=\"553\" y=\"613\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndRightHeavy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"251D\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalLightAndRightHeavy.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"613\" type=\"line\"/>\n      <point x=\"1247\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"801\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndHorizontalDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"256A\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndHorizontalDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndLeftDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2561\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndLeftDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"848\" type=\"line\"/>\n      <point x=\"-47\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"754\" type=\"line\"/>\n      <point x=\"553\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"660\" type=\"line\"/>\n      <point x=\"-47\" y=\"566\" type=\"line\"/>\n      <point x=\"553\" y=\"566\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndRightDouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"255E\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"-530\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"boxVerticalSingleAndRightDouble.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"-508\" type=\"line\"/>\n      <point x=\"647\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"566\" type=\"line\"/>\n      <point x=\"1247\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"660\" type=\"line\"/>\n      <point x=\"647\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"754\" type=\"line\"/>\n      <point x=\"1247\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"848\" type=\"line\"/>\n      <point x=\"647\" y=\"1922\" type=\"line\"/>\n      <point x=\"553\" y=\"1922\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/braceleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007B\"/>\n  <outline>\n    <contour>\n      <point x=\"701\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"-214\"/>\n      <point x=\"815\" y=\"-205\"/>\n      <point x=\"853\" y=\"-194\" type=\"curve\"/>\n      <point x=\"854\" y=\"-110\" type=\"line\"/>\n      <point x=\"805\" y=\"-118\"/>\n      <point x=\"757\" y=\"-124\"/>\n      <point x=\"721\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"-124\"/>\n      <point x=\"498\" y=\"-50\"/>\n      <point x=\"513\" y=\"68\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"214\"/>\n      <point x=\"668\" y=\"313\"/>\n      <point x=\"668\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"668\" y=\"619\"/>\n      <point x=\"575\" y=\"696\"/>\n      <point x=\"417\" y=\"700\" type=\"curve\"/>\n      <point x=\"418\" y=\"708\" type=\"line\"/>\n      <point x=\"642\" y=\"712\"/>\n      <point x=\"750\" y=\"817\"/>\n      <point x=\"750\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"1082\"/>\n      <point x=\"737\" y=\"1134\"/>\n      <point x=\"727\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"682\" y=\"1403\"/>\n      <point x=\"836\" y=\"1536\"/>\n      <point x=\"1012\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1048\" y=\"1536\"/>\n      <point x=\"1094\" y=\"1530\"/>\n      <point x=\"1141\" y=\"1521\" type=\"curve\"/>\n      <point x=\"1170\" y=\"1606\" type=\"line\"/>\n      <point x=\"1129\" y=\"1618\"/>\n      <point x=\"1082\" y=\"1626\"/>\n      <point x=\"1006\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"776\" y=\"1626\"/>\n      <point x=\"585\" y=\"1454\"/>\n      <point x=\"631\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"636\" y=\"1151\"/>\n      <point x=\"654\" y=\"1076\"/>\n      <point x=\"654\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"834\"/>\n      <point x=\"567\" y=\"763\"/>\n      <point x=\"330\" y=\"763\" type=\"curve\"/>\n      <point x=\"309\" y=\"645\" type=\"line\"/>\n      <point x=\"475\" y=\"645\"/>\n      <point x=\"572\" y=\"582\"/>\n      <point x=\"572\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"344\"/>\n      <point x=\"445\" y=\"251\"/>\n      <point x=\"417\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"-106\"/>\n      <point x=\"522\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/braceleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceleft_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"756\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"866\" y=\"-214\"/>\n      <point x=\"930\" y=\"-205\"/>\n      <point x=\"988\" y=\"-194\" type=\"curve\"/>\n      <point x=\"989\" y=\"-110\" type=\"line\"/>\n      <point x=\"911\" y=\"-118\"/>\n      <point x=\"834\" y=\"-124\"/>\n      <point x=\"776\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"598\" y=\"-124\"/>\n      <point x=\"473\" y=\"-50\"/>\n      <point x=\"488\" y=\"68\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"507\" y=\"214\"/>\n      <point x=\"643\" y=\"313\"/>\n      <point x=\"643\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"643\" y=\"619\"/>\n      <point x=\"550\" y=\"696\"/>\n      <point x=\"392\" y=\"700\" type=\"curve\"/>\n      <point x=\"393\" y=\"708\" type=\"line\"/>\n      <point x=\"617\" y=\"712\"/>\n      <point x=\"725\" y=\"817\"/>\n      <point x=\"725\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"1082\"/>\n      <point x=\"712\" y=\"1134\"/>\n      <point x=\"702\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"1403\"/>\n      <point x=\"848\" y=\"1536\"/>\n      <point x=\"1067\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"1536\"/>\n      <point x=\"1200\" y=\"1530\"/>\n      <point x=\"1276\" y=\"1521\" type=\"curve\"/>\n      <point x=\"1305\" y=\"1606\" type=\"line\"/>\n      <point x=\"1244\" y=\"1618\"/>\n      <point x=\"1174\" y=\"1626\"/>\n      <point x=\"1061\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"787\" y=\"1626\"/>\n      <point x=\"560\" y=\"1454\"/>\n      <point x=\"606\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"1151\"/>\n      <point x=\"629\" y=\"1076\"/>\n      <point x=\"629\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"834\"/>\n      <point x=\"542\" y=\"763\"/>\n      <point x=\"305\" y=\"763\" type=\"curve\"/>\n      <point x=\"284\" y=\"645\" type=\"line\"/>\n      <point x=\"450\" y=\"645\"/>\n      <point x=\"547\" y=\"582\"/>\n      <point x=\"547\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"344\"/>\n      <point x=\"420\" y=\"251\"/>\n      <point x=\"392\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"365\" y=\"-106\"/>\n      <point x=\"531\" y=\"-214\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1198\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/braceright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"007D\"/>\n  <guideline x=\"920\" y=\"589\" angle=\"80\"/>\n  <outline>\n    <contour>\n      <point x=\"256\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"486\" y=\"-214\"/>\n      <point x=\"677\" y=\"-42\"/>\n      <point x=\"631\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"626\" y=\"261\"/>\n      <point x=\"608\" y=\"336\"/>\n      <point x=\"608\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"608\" y=\"578\"/>\n      <point x=\"695\" y=\"649\"/>\n      <point x=\"932\" y=\"649\" type=\"curve\"/>\n      <point x=\"953\" y=\"767\" type=\"line\"/>\n      <point x=\"787\" y=\"767\"/>\n      <point x=\"690\" y=\"830\"/>\n      <point x=\"690\" y=\"936\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"690\" y=\"1068\"/>\n      <point x=\"817\" y=\"1159\"/>\n      <point x=\"845\" y=\"1343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"1516\"/>\n      <point x=\"740\" y=\"1626\"/>\n      <point x=\"561\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"1626\"/>\n      <point x=\"447\" y=\"1617\"/>\n      <point x=\"409\" y=\"1606\" type=\"curve\"/>\n      <point x=\"408\" y=\"1522\" type=\"line\"/>\n      <point x=\"457\" y=\"1530\"/>\n      <point x=\"505\" y=\"1536\"/>\n      <point x=\"541\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"1536\"/>\n      <point x=\"762\" y=\"1461\"/>\n      <point x=\"749\" y=\"1344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"1196\"/>\n      <point x=\"594\" y=\"1099\"/>\n      <point x=\"594\" y=\"920\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"594\" y=\"793\"/>\n      <point x=\"687\" y=\"716\"/>\n      <point x=\"845\" y=\"712\" type=\"curve\"/>\n      <point x=\"844\" y=\"704\" type=\"line\"/>\n      <point x=\"620\" y=\"700\"/>\n      <point x=\"512\" y=\"595\"/>\n      <point x=\"512\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"330\"/>\n      <point x=\"525\" y=\"278\"/>\n      <point x=\"535\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"9\"/>\n      <point x=\"426\" y=\"-124\"/>\n      <point x=\"250\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"214\" y=\"-124\"/>\n      <point x=\"168\" y=\"-118\"/>\n      <point x=\"121\" y=\"-109\" type=\"curve\"/>\n      <point x=\"92\" y=\"-194\" type=\"line\"/>\n      <point x=\"133\" y=\"-206\"/>\n      <point x=\"180\" y=\"-214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/braceright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"braceright_numbersign.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"280\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"510\" y=\"-214\"/>\n      <point x=\"701\" y=\"-42\"/>\n      <point x=\"655\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"650\" y=\"261\"/>\n      <point x=\"632\" y=\"336\"/>\n      <point x=\"632\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"578\"/>\n      <point x=\"719\" y=\"649\"/>\n      <point x=\"956\" y=\"649\" type=\"curve\"/>\n      <point x=\"977\" y=\"767\" type=\"line\"/>\n      <point x=\"811\" y=\"767\"/>\n      <point x=\"714\" y=\"830\"/>\n      <point x=\"714\" y=\"936\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"714\" y=\"1068\"/>\n      <point x=\"841\" y=\"1159\"/>\n      <point x=\"869\" y=\"1343\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"1516\"/>\n      <point x=\"764\" y=\"1626\"/>\n      <point x=\"585\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"1626\"/>\n      <point x=\"471\" y=\"1617\"/>\n      <point x=\"433\" y=\"1606\" type=\"curve\"/>\n      <point x=\"432\" y=\"1522\" type=\"line\"/>\n      <point x=\"481\" y=\"1530\"/>\n      <point x=\"529\" y=\"1536\"/>\n      <point x=\"565\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"696\" y=\"1536\"/>\n      <point x=\"786\" y=\"1461\"/>\n      <point x=\"773\" y=\"1344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"757\" y=\"1196\"/>\n      <point x=\"618\" y=\"1099\"/>\n      <point x=\"618\" y=\"920\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"618\" y=\"793\"/>\n      <point x=\"711\" y=\"716\"/>\n      <point x=\"869\" y=\"712\" type=\"curve\"/>\n      <point x=\"868\" y=\"704\" type=\"line\"/>\n      <point x=\"644\" y=\"700\"/>\n      <point x=\"536\" y=\"595\"/>\n      <point x=\"536\" y=\"381\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"330\"/>\n      <point x=\"549\" y=\"278\"/>\n      <point x=\"559\" y=\"230\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"9\"/>\n      <point x=\"450\" y=\"-124\"/>\n      <point x=\"274\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"-124\"/>\n      <point x=\"192\" y=\"-118\"/>\n      <point x=\"145\" y=\"-109\" type=\"curve\"/>\n      <point x=\"116\" y=\"-194\" type=\"line\"/>\n      <point x=\"157\" y=\"-206\"/>\n      <point x=\"204\" y=\"-214\"/>\n    </contour>\n    <contour>\n      <point x=\"584\" y=\"419\" type=\"line\"/>\n      <point x=\"2076\" y=\"419\" type=\"line\"/>\n      <point x=\"2092\" y=\"509\" type=\"line\"/>\n      <point x=\"600\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1198\" y=\"0\" type=\"line\"/>\n      <point x=\"1292\" y=\"0\" type=\"line\"/>\n      <point x=\"1658\" y=\"1420\" type=\"line\"/>\n      <point x=\"1564\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"671\" y=\"911\" type=\"line\"/>\n      <point x=\"2163\" y=\"911\" type=\"line\"/>\n      <point x=\"2179\" y=\"1001\" type=\"line\"/>\n      <point x=\"687\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1644\" y=\"0\" type=\"line\"/>\n      <point x=\"1738\" y=\"0\" type=\"line\"/>\n      <point x=\"2104\" y=\"1420\" type=\"line\"/>\n      <point x=\"2010\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bracketleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005B\"/>\n  <outline>\n    <contour>\n      <point x=\"265\" y=\"-214\" type=\"line\"/>\n      <point x=\"361\" y=\"-214\" type=\"line\"/>\n      <point x=\"687\" y=\"1634\" type=\"line\"/>\n      <point x=\"591\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"339\" y=\"-214\" type=\"line\"/>\n      <point x=\"843\" y=\"-214\" type=\"line\"/>\n      <point x=\"859\" y=\"-124\" type=\"line\"/>\n      <point x=\"355\" y=\"-124\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"649\" y=\"1544\" type=\"line\"/>\n      <point x=\"1153\" y=\"1544\" type=\"line\"/>\n      <point x=\"1169\" y=\"1634\" type=\"line\"/>\n      <point x=\"665\" y=\"1634\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bracketleft_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketleft_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"433\" y=\"-214\" type=\"line\"/>\n      <point x=\"529\" y=\"-214\" type=\"line\"/>\n      <point x=\"855\" y=\"1634\" type=\"line\"/>\n      <point x=\"759\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"507\" y=\"-214\" type=\"line\"/>\n      <point x=\"1116\" y=\"-214\" type=\"line\"/>\n      <point x=\"1132\" y=\"-124\" type=\"line\"/>\n      <point x=\"523\" y=\"-124\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"817\" y=\"1544\" type=\"line\"/>\n      <point x=\"1426\" y=\"1544\" type=\"line\"/>\n      <point x=\"1442\" y=\"1634\" type=\"line\"/>\n      <point x=\"833\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <component base=\"bar\" xOffset=\"1151\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bracketright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"005D\"/>\n  <outline>\n    <contour>\n      <point x=\"577\" y=\"-214\" type=\"line\"/>\n      <point x=\"673\" y=\"-214\" type=\"line\"/>\n      <point x=\"999\" y=\"1634\" type=\"line\"/>\n      <point x=\"903\" y=\"1634\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"95\" y=\"-214\" type=\"line\"/>\n      <point x=\"599\" y=\"-214\" type=\"line\"/>\n      <point x=\"615\" y=\"-124\" type=\"line\"/>\n      <point x=\"111\" y=\"-124\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"405\" y=\"1544\" type=\"line\"/>\n      <point x=\"909\" y=\"1544\" type=\"line\"/>\n      <point x=\"925\" y=\"1634\" type=\"line\"/>\n      <point x=\"421\" y=\"1634\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bracketright_numbersign.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bracketright_numbersign.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1644\" y=\"0\" type=\"line\"/>\n      <point x=\"1734\" y=\"0\" type=\"line\"/>\n      <point x=\"2104\" y=\"1420\" type=\"line\"/>\n      <point x=\"2014\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"774\" y=\"419\" type=\"line\"/>\n      <point x=\"2076\" y=\"419\" type=\"line\"/>\n      <point x=\"2092\" y=\"509\" type=\"line\"/>\n      <point x=\"790\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1198\" y=\"0\" type=\"line\"/>\n      <point x=\"1288\" y=\"0\" type=\"line\"/>\n      <point x=\"1658\" y=\"1420\" type=\"line\"/>\n      <point x=\"1568\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"860\" y=\"911\" type=\"line\"/>\n      <point x=\"2162\" y=\"911\" type=\"line\"/>\n      <point x=\"2178\" y=\"1001\" type=\"line\"/>\n      <point x=\"876\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <component base=\"bracketright\" xOffset=\"10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/breve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"breve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D8\"/>\n  <outline>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brevecomb-cy.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb-cy.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"827\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"734\" y=\"1568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"872\" y=\"1568\"/>\n      <point x=\"1020\" y=\"1638\"/>\n      <point x=\"1126\" y=\"1797\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"1815\" type=\"line\"/>\n      <point x=\"1064\" y=\"1855\" type=\"line\"/>\n      <point x=\"1054\" y=\"1840\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"966\" y=\"1708\"/>\n      <point x=\"848\" y=\"1650\"/>\n      <point x=\"748\" y=\"1650\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"680\" y=\"1650\"/>\n      <point x=\"623\" y=\"1683\"/>\n      <point x=\"615\" y=\"1743\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"610\" y=\"1776\"/>\n      <point x=\"625\" y=\"1827\"/>\n      <point x=\"643\" y=\"1851\" type=\"curve\"/>\n      <point x=\"551\" y=\"1864\" type=\"line\"/>\n      <point x=\"529\" y=\"1828\"/>\n      <point x=\"520\" y=\"1776\"/>\n      <point x=\"526\" y=\"1731\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"541\" y=\"1627\"/>\n      <point x=\"631\" y=\"1568\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brevecomb-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb-cy\" format=\"2\">\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"736\" y=\"1220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"1220\"/>\n      <point x=\"1018\" y=\"1307\"/>\n      <point x=\"1092\" y=\"1481\" type=\"curve\"/>\n      <point x=\"1025\" y=\"1524\" type=\"line\"/>\n      <point x=\"967\" y=\"1384\"/>\n      <point x=\"846\" y=\"1302\"/>\n      <point x=\"737\" y=\"1302\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"639\" y=\"1302\"/>\n      <point x=\"590\" y=\"1351\"/>\n      <point x=\"590\" y=\"1430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"1455\"/>\n      <point x=\"596\" y=\"1484\"/>\n      <point x=\"606\" y=\"1516\" type=\"curve\"/>\n      <point x=\"526\" y=\"1539\" type=\"line\"/>\n      <point x=\"510\" y=\"1497\"/>\n      <point x=\"502\" y=\"1458\"/>\n      <point x=\"502\" y=\"1421\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"502\" y=\"1303\"/>\n      <point x=\"586\" y=\"1220\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brevecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"827\" y=\"1820\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"714\" y=\"1570\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"1570\"/>\n      <point x=\"1080\" y=\"1654\"/>\n      <point x=\"1177\" y=\"1795\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1190\" y=\"1814\" type=\"line\"/>\n      <point x=\"1113\" y=\"1856\" type=\"line\"/>\n      <point x=\"1102\" y=\"1840\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1023\" y=\"1724\"/>\n      <point x=\"884\" y=\"1655\"/>\n      <point x=\"729\" y=\"1655\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"612\" y=\"1655\"/>\n      <point x=\"552\" y=\"1700\"/>\n      <point x=\"565\" y=\"1777\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"569\" y=\"1800\"/>\n      <point x=\"580\" y=\"1827\"/>\n      <point x=\"593\" y=\"1850\" type=\"curve\"/>\n      <point x=\"514\" y=\"1888\" type=\"line\"/>\n      <point x=\"493\" y=\"1859\"/>\n      <point x=\"478\" y=\"1823\"/>\n      <point x=\"472\" y=\"1789\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1651\"/>\n      <point x=\"536\" y=\"1570\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brevecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brevecomb\" format=\"2\">\n  <unicode hex=\"0306\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"698\" y=\"1219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"864\" y=\"1219\"/>\n      <point x=\"1025\" y=\"1328\"/>\n      <point x=\"1131\" y=\"1528\" type=\"curve\"/>\n      <point x=\"1057\" y=\"1567\" type=\"line\"/>\n      <point x=\"974\" y=\"1405\"/>\n      <point x=\"841\" y=\"1304\"/>\n      <point x=\"707\" y=\"1304\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"604\" y=\"1304\"/>\n      <point x=\"543\" y=\"1366\"/>\n      <point x=\"543\" y=\"1466\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"1505\"/>\n      <point x=\"551\" y=\"1545\"/>\n      <point x=\"565\" y=\"1583\" type=\"curve\"/>\n      <point x=\"477\" y=\"1588\" type=\"line\"/>\n      <point x=\"460\" y=\"1543\"/>\n      <point x=\"452\" y=\"1494\"/>\n      <point x=\"452\" y=\"1453\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"452\" y=\"1312\"/>\n      <point x=\"548\" y=\"1219\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brokenbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"brokenbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A6\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"870\" type=\"line\"/>\n      <point x=\"647\" y=\"870\" type=\"line\"/>\n      <point x=\"647\" y=\"1730\" type=\"line\"/>\n      <point x=\"553\" y=\"1730\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"553\" y=\"-310\" type=\"line\"/>\n      <point x=\"647\" y=\"-310\" type=\"line\"/>\n      <point x=\"647\" y=\"550\" type=\"line\"/>\n      <point x=\"553\" y=\"550\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2022\"/>\n  <outline>\n    <contour>\n      <point x=\"632\" y=\"554\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"554\"/>\n      <point x=\"788\" y=\"624\"/>\n      <point x=\"788\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"796\"/>\n      <point x=\"718\" y=\"866\"/>\n      <point x=\"632\" y=\"866\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"866\"/>\n      <point x=\"476\" y=\"796\"/>\n      <point x=\"476\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"624\"/>\n      <point x=\"546\" y=\"554\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bulletoperator.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bulletoperator\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2219\"/>\n  <outline>\n    <component base=\"bullet\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bullseye.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"bullseye\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CE\"/>\n  <note>\nuni25CE\n</note>\n  <outline>\n    <component base=\"largeCircle\"/>\n    <component base=\"whiteBullet\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/c.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"c\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0063\"/>\n  <anchor x=\"576\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"539\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"72\"/>\n      <point x=\"225\" y=\"194\"/>\n      <point x=\"223\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"224\" y=\"755\"/>\n      <point x=\"418\" y=\"988\"/>\n      <point x=\"712\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"988\"/>\n      <point x=\"974\" y=\"935\"/>\n      <point x=\"1027\" y=\"802\" type=\"curve\"/>\n      <point x=\"1104\" y=\"860\" type=\"line\"/>\n      <point x=\"1044\" y=\"1005\"/>\n      <point x=\"913\" y=\"1080\"/>\n      <point x=\"720\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"1080\"/>\n      <point x=\"127\" y=\"806\"/>\n      <point x=\"127\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"127\" y=\"132\"/>\n      <point x=\"273\" y=\"-20\"/>\n      <point x=\"520\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"-20\"/>\n      <point x=\"862\" y=\"39\"/>\n      <point x=\"991\" y=\"129\" type=\"curve\"/>\n      <point x=\"953\" y=\"209\" type=\"line\"/>\n      <point x=\"830\" y=\"126\"/>\n      <point x=\"679\" y=\"72\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0107\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"acutecomb.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cancelC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cancelControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2418\"/>\n  <outline>\n    <component base=\"C.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"N.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cancelC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cancelControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"138\" y=\"219\" type=\"line\"/>\n      <point x=\"1125\" y=\"1145\" type=\"line\"/>\n      <point x=\"1062\" y=\"1203\" type=\"line\"/>\n      <point x=\"75\" y=\"275\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"275\" type=\"line\"/>\n      <point x=\"75\" y=\"275\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1062\" y=\"219\" type=\"line\"/>\n      <point x=\"1125\" y=\"275\" type=\"line\"/>\n      <point x=\"138\" y=\"1203\" type=\"line\"/>\n      <point x=\"75\" y=\"1145\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"1145\" type=\"line\"/>\n      <point x=\"1125\" y=\"1145\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/careof.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"careof\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2105\"/>\n  <outline>\n    <contour>\n      <point x=\"147\" y=\"306\" type=\"line\"/>\n      <point x=\"1167\" y=\"1030\" type=\"line\"/>\n      <point x=\"1123\" y=\"1106\" type=\"line\"/>\n      <point x=\"103\" y=\"382\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"409\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"815\"/>\n      <point x=\"586\" y=\"844\"/>\n      <point x=\"657\" y=\"899\" type=\"curve\"/>\n      <point x=\"623\" y=\"967\" type=\"line\"/>\n      <point x=\"551\" y=\"924\"/>\n      <point x=\"481\" y=\"901\"/>\n      <point x=\"419\" y=\"901\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"901\"/>\n      <point x=\"247\" y=\"969\"/>\n      <point x=\"247\" y=\"1089\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"247\" y=\"1245\"/>\n      <point x=\"351\" y=\"1353\"/>\n      <point x=\"516\" y=\"1353\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"573\" y=\"1353\"/>\n      <point x=\"632\" y=\"1337\"/>\n      <point x=\"672\" y=\"1282\" type=\"curve\"/>\n      <point x=\"738\" y=\"1343\" type=\"line\"/>\n      <point x=\"707\" y=\"1403\"/>\n      <point x=\"630\" y=\"1439\"/>\n      <point x=\"531\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"302\" y=\"1439\"/>\n      <point x=\"155\" y=\"1296\"/>\n      <point x=\"155\" y=\"1083\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"155\" y=\"911\"/>\n      <point x=\"245\" y=\"815\"/>\n    </contour>\n    <component base=\"zeroinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/caron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C7\"/>\n  <outline>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/caroncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caroncomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"824\" y=\"1800\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"744\" y=\"1580\" type=\"line\"/>\n      <point x=\"826\" y=\"1580\" type=\"line\"/>\n      <point x=\"1157\" y=\"1840\" type=\"line\"/>\n      <point x=\"1023\" y=\"1840\" type=\"line\"/>\n      <point x=\"761\" y=\"1631\" type=\"line\"/>\n      <point x=\"814\" y=\"1631\" type=\"line\"/>\n      <point x=\"625\" y=\"1840\" type=\"line\"/>\n      <point x=\"505\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/caroncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"caroncomb\" format=\"2\">\n  <unicode hex=\"030C\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"688\" y=\"1210\" type=\"line\"/>\n      <point x=\"750\" y=\"1210\" type=\"line\"/>\n      <point x=\"1113\" y=\"1590\" type=\"line\"/>\n      <point x=\"986\" y=\"1590\" type=\"line\"/>\n      <point x=\"720\" y=\"1299\" type=\"line\"/>\n      <point x=\"740\" y=\"1299\" type=\"line\"/>\n      <point x=\"578\" y=\"1590\" type=\"line\"/>\n      <point x=\"461\" y=\"1590\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/carriageR_eturnC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"carriageReturnControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240D\"/>\n  <outline>\n    <component base=\"C.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"R.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>R.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"carriageReturnControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"183\" type=\"line\"/>\n      <point x=\"1125\" y=\"295\" type=\"line\"/>\n      <point x=\"348\" y=\"645\" type=\"line\"/>\n      <point x=\"348\" y=\"773\" type=\"line\"/>\n      <point x=\"1125\" y=\"1123\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"70\" y=\"720\" type=\"line\"/>\n      <point x=\"70\" y=\"698\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"298\" y=\"664\" type=\"line\"/>\n      <point x=\"1125\" y=\"664\" type=\"line\"/>\n      <point x=\"1125\" y=\"754\" type=\"line\"/>\n      <point x=\"298\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ccaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010D\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ccedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E7\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"cedillacomb\" xOffset=\"70\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ccircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ccircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0109\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010B\"/>\n  <outline>\n    <component base=\"c\"/>\n    <component base=\"dotaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cedi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B5\"/>\n  <outline>\n    <contour>\n      <point x=\"492\" y=\"-320\" type=\"line\"/>\n      <point x=\"588\" y=\"-320\" type=\"line\"/>\n      <point x=\"951\" y=\"1740\" type=\"line\"/>\n      <point x=\"855\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cedilla.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedilla\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B8\"/>\n  <outline>\n    <component base=\"cedillacomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cedillacomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cedillacomb\" format=\"2\">\n  <unicode hex=\"0327\"/>\n  <anchor x=\"506\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"446\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"256\" y=\"-480\" type=\"line\"/>\n      <point x=\"504\" y=\"-480\"/>\n      <point x=\"633\" y=\"-412\"/>\n      <point x=\"633\" y=\"-281\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"633\" y=\"-201\"/>\n      <point x=\"579\" y=\"-137\"/>\n      <point x=\"475\" y=\"-96\" type=\"curve\"/>\n      <point x=\"529\" y=\"12\" type=\"line\"/>\n      <point x=\"465\" y=\"49\" type=\"line\"/>\n      <point x=\"361\" y=\"-135\" type=\"line\"/>\n      <point x=\"483\" y=\"-167\"/>\n      <point x=\"546\" y=\"-219\"/>\n      <point x=\"546\" y=\"-287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"546\" y=\"-361\"/>\n      <point x=\"452\" y=\"-399\"/>\n      <point x=\"271\" y=\"-399\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"cent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A2\"/>\n  <outline>\n    <contour>\n      <point x=\"451\" y=\"-334\" type=\"line\"/>\n      <point x=\"547\" y=\"-334\" type=\"line\"/>\n      <point x=\"851\" y=\"1394\" type=\"line\"/>\n      <point x=\"755\" y=\"1394\" type=\"line\"/>\n    </contour>\n    <component base=\"c\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/che-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"che-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0447\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"997\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <anchor x=\"1187\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"496\" y=\"318\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"318\"/>\n      <point x=\"819\" y=\"450\"/>\n      <point x=\"866\" y=\"525\" type=\"curve\"/>\n      <point x=\"936\" y=\"525\" type=\"line\"/>\n      <point x=\"929\" y=\"787\" type=\"line\"/>\n      <point x=\"898\" y=\"573\"/>\n      <point x=\"742\" y=\"411\"/>\n      <point x=\"515\" y=\"411\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"351\" y=\"411\"/>\n      <point x=\"261\" y=\"496\"/>\n      <point x=\"261\" y=\"668\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"261\" y=\"762\"/>\n      <point x=\"288\" y=\"853\"/>\n      <point x=\"361\" y=\"1066\" type=\"curve\"/>\n      <point x=\"266\" y=\"1086\" type=\"line\"/>\n      <point x=\"205\" y=\"908\"/>\n      <point x=\"166\" y=\"794\"/>\n      <point x=\"166\" y=\"665\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"444\"/>\n      <point x=\"280\" y=\"318\"/>\n    </contour>\n    <contour>\n      <point x=\"1011\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"-20\"/>\n      <point x=\"1048\" y=\"-19\"/>\n      <point x=\"1067\" y=\"-17\" type=\"curve\"/>\n      <point x=\"1084\" y=\"77\" type=\"line\"/>\n      <point x=\"1063\" y=\"74\"/>\n      <point x=\"1041\" y=\"72\"/>\n      <point x=\"1024\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"926\" y=\"72\"/>\n      <point x=\"908\" y=\"137\"/>\n      <point x=\"935\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1071\" y=\"1060\" type=\"line\"/>\n      <point x=\"977\" y=\"1060\" type=\"line\"/>\n      <point x=\"839\" y=\"280\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"803\" y=\"77\"/>\n      <point x=\"859\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/che-cy.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"che-cy.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"910\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"-20\"/>\n      <point x=\"1035\" y=\"-12\"/>\n      <point x=\"1087\" y=\"4\" type=\"curve\"/>\n      <point x=\"1081\" y=\"90\" type=\"line\"/>\n      <point x=\"1035\" y=\"79\"/>\n      <point x=\"988\" y=\"72\"/>\n      <point x=\"925\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"72\"/>\n      <point x=\"728\" y=\"119\"/>\n      <point x=\"728\" y=\"235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"358\"/>\n      <point x=\"808\" y=\"528\"/>\n      <point x=\"868\" y=\"653\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"989\" type=\"line\"/>\n      <point x=\"995\" y=\"1045\" type=\"line\"/>\n      <point x=\"952\" y=\"1037\"/>\n      <point x=\"904\" y=\"1023\"/>\n      <point x=\"764\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"1023\"/>\n      <point x=\"412\" y=\"1059\"/>\n      <point x=\"345\" y=\"1081\" type=\"curve\"/>\n      <point x=\"326\" y=\"991\" type=\"line\"/>\n      <point x=\"405\" y=\"966\"/>\n      <point x=\"577\" y=\"931\"/>\n      <point x=\"764\" y=\"931\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"885\" y=\"931\"/>\n      <point x=\"916\" y=\"940\"/>\n      <point x=\"954\" y=\"947\" type=\"curve\"/>\n      <point x=\"916\" y=\"965\" type=\"line\"/>\n      <point x=\"767\" y=\"646\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"501\"/>\n      <point x=\"632\" y=\"361\"/>\n      <point x=\"632\" y=\"228\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"58\"/>\n      <point x=\"751\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"147\" y=\"310\" type=\"line\"/>\n      <point x=\"320\" y=\"511\"/>\n      <point x=\"410\" y=\"775\"/>\n      <point x=\"410\" y=\"1082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1166\" type=\"line\"/>\n      <point x=\"314\" y=\"1166\" type=\"line\"/>\n      <point x=\"314\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"800\"/>\n      <point x=\"232\" y=\"559\"/>\n      <point x=\"75\" y=\"375\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardDeleteAmstradCpc\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"2429\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1888\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1211\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"535\" type=\"line\"/>\r\n      <point x=\"0\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"535\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"535\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"535\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-142\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardDeleteAmstradCpc.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1602\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"412\" type=\"line\"/>\r\n      <point x=\"0\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"412\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"412\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"412\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-183\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-183\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-183\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkerBoardDeleteApple2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2427\"/>\n  <outline>\n    <contour>\n      <point x=\"140\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"140\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"140\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"140\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkerBoardDeleteTrs80\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2428\"/>\n  <outline>\n    <contour>\n      <point x=\"324\" y=\"1421\" type=\"line\"/>\n      <point x=\"508\" y=\"1421\" type=\"line\"/>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1421\" type=\"line\"/>\n      <point x=\"876\" y=\"1421\" type=\"line\"/>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1218\" type=\"line\"/>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"140\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1218\" type=\"line\"/>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1218\" type=\"line\"/>\n      <point x=\"1060\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"1015\" type=\"line\"/>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"1015\" type=\"line\"/>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"812\" type=\"line\"/>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"140\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"812\" type=\"line\"/>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"812\" type=\"line\"/>\n      <point x=\"1060\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"609\" type=\"line\"/>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"609\" type=\"line\"/>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"406\" type=\"line\"/>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"140\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"508\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"406\" type=\"line\"/>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"876\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"406\" type=\"line\"/>\n      <point x=\"1060\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"324\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"203\" type=\"line\"/>\n      <point x=\"508\" y=\"0\" type=\"line\"/>\n      <point x=\"324\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"203\" type=\"line\"/>\n      <point x=\"876\" y=\"0\" type=\"line\"/>\n      <point x=\"692\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardF_ill.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFill\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB95\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardF_ill.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFill.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardF_illI_nverse.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFillInverse\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB96\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"873\" type=\"line\"/>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"196\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"196\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"checkerBoardFillInverse.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"300\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"710\" type=\"line\"/>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"900\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"115\" type=\"line\"/>\r\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"600\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"115\" type=\"line\"/>\r\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkmark.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"checkmark\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2713\"/>\n  <outline>\n    <contour>\n      <point x=\"306\" y=\"0\" type=\"line\"/>\n      <point x=\"438\" y=\"0\" type=\"line\"/>\n      <point x=\"1259\" y=\"1420\" type=\"line\"/>\n      <point x=\"1157\" y=\"1420\" type=\"line\"/>\n      <point x=\"393\" y=\"100\" type=\"line\"/>\n      <point x=\"375\" y=\"100\" type=\"line\"/>\n      <point x=\"260\" y=\"601\" type=\"line\"/>\n      <point x=\"163\" y=\"601\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/chedescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chedescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B7\"/>\n  <outline>\n    <contour>\n      <point x=\"983\" y=\"-324\" type=\"line\"/>\n      <point x=\"1023\" y=\"-219\"/>\n      <point x=\"1070\" y=\"-37\"/>\n      <point x=\"1084\" y=\"77\" type=\"curve\"/>\n      <point x=\"1051\" y=\"69\"/>\n      <point x=\"1019\" y=\"60\"/>\n      <point x=\"986\" y=\"52\" type=\"curve\"/>\n      <point x=\"983\" y=\"37\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"967\" y=\"-44\"/>\n      <point x=\"931\" y=\"-191\"/>\n      <point x=\"889\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <component base=\"che-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/chedescender-cy.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chedescender-cy.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"977\" y=\"-324\" type=\"line\"/>\n      <point x=\"1024\" y=\"-192\"/>\n      <point x=\"1072\" y=\"-11\"/>\n      <point x=\"1080\" y=\"91\" type=\"curve\"/>\n      <point x=\"1023\" y=\"78\"/>\n      <point x=\"972\" y=\"72\"/>\n      <point x=\"927\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"72\"/>\n      <point x=\"728\" y=\"122\"/>\n      <point x=\"728\" y=\"214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"319\"/>\n      <point x=\"808\" y=\"499\"/>\n      <point x=\"868\" y=\"633\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"989\" type=\"line\"/>\n      <point x=\"995\" y=\"1045\" type=\"line\"/>\n      <point x=\"952\" y=\"1037\"/>\n      <point x=\"904\" y=\"1023\"/>\n      <point x=\"768\" y=\"1023\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"1023\"/>\n      <point x=\"412\" y=\"1069\"/>\n      <point x=\"345\" y=\"1081\" type=\"curve\"/>\n      <point x=\"326\" y=\"995\" type=\"line\"/>\n      <point x=\"405\" y=\"980\"/>\n      <point x=\"577\" y=\"929\"/>\n      <point x=\"760\" y=\"929\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"862\" y=\"929\"/>\n      <point x=\"902\" y=\"935\"/>\n      <point x=\"933\" y=\"941\" type=\"curve\"/>\n      <point x=\"937\" y=\"1014\" type=\"line\"/>\n      <point x=\"767\" y=\"626\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"698\" y=\"469\"/>\n      <point x=\"633\" y=\"322\"/>\n      <point x=\"633\" y=\"201\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"633\" y=\"50\"/>\n      <point x=\"760\" y=\"-20\"/>\n      <point x=\"911\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"-20\"/>\n      <point x=\"991\" y=\"-15\"/>\n      <point x=\"1031\" y=\"-6\" type=\"curve\"/>\n      <point x=\"974\" y=\"29\" type=\"line\"/>\n      <point x=\"958\" y=\"-63\"/>\n      <point x=\"928\" y=\"-178\"/>\n      <point x=\"882\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"147\" y=\"310\" type=\"line\"/>\n      <point x=\"320\" y=\"511\"/>\n      <point x=\"410\" y=\"775\"/>\n      <point x=\"410\" y=\"1082\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"410\" y=\"1166\" type=\"line\"/>\n      <point x=\"314\" y=\"1166\" type=\"line\"/>\n      <point x=\"314\" y=\"1080\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"800\"/>\n      <point x=\"232\" y=\"559\"/>\n      <point x=\"75\" y=\"375\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/chi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"chi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C7\"/>\n  <anchor x=\"428\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"16\" y=\"-468\" type=\"line\"/>\n      <point x=\"591\" y=\"299\" type=\"line\"/>\n      <point x=\"1146\" y=\"1007\" type=\"line\"/>\n      <point x=\"1070\" y=\"1072\" type=\"line\"/>\n      <point x=\"561\" y=\"388\" type=\"line\"/>\n      <point x=\"-57\" y=\"-401\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"814\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"884\" y=\"-480\"/>\n      <point x=\"949\" y=\"-465\"/>\n      <point x=\"1021\" y=\"-431\" type=\"curve\"/>\n      <point x=\"991\" y=\"-344\" type=\"line\"/>\n      <point x=\"929\" y=\"-374\"/>\n      <point x=\"876\" y=\"-388\"/>\n      <point x=\"823\" y=\"-388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"-388\"/>\n      <point x=\"643\" y=\"-313\"/>\n      <point x=\"638\" y=\"-150\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"608\" y=\"761\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"980\"/>\n      <point x=\"519\" y=\"1080\"/>\n      <point x=\"350\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"293\" y=\"1080\"/>\n      <point x=\"232\" y=\"1067\"/>\n      <point x=\"153\" y=\"1039\" type=\"curve\"/>\n      <point x=\"180\" y=\"952\" type=\"line\"/>\n      <point x=\"241\" y=\"977\"/>\n      <point x=\"292\" y=\"988\"/>\n      <point x=\"341\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"460\" y=\"988\"/>\n      <point x=\"517\" y=\"910\"/>\n      <point x=\"523\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"-171\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"560\" y=\"-383\"/>\n      <point x=\"642\" y=\"-480\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/circumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C6\"/>\n  <outline>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/circumflexcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflexcomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"824\" y=\"1800\" name=\"top\"/>\n  <anchor x=\"1094\" y=\"1668\" name=\"viet_top\"/>\n  <outline>\n    <contour>\n      <point x=\"464\" y=\"1580\" type=\"line\"/>\n      <point x=\"601\" y=\"1580\" type=\"line\"/>\n      <point x=\"891\" y=\"1809\" type=\"line\"/>\n      <point x=\"778\" y=\"1819\" type=\"line\"/>\n      <point x=\"994\" y=\"1580\" type=\"line\"/>\n      <point x=\"1116\" y=\"1580\" type=\"line\"/>\n      <point x=\"877\" y=\"1840\" type=\"line\"/>\n      <point x=\"795\" y=\"1840\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/circumflexcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"circumflexcomb\" format=\"2\">\n  <unicode hex=\"0302\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"781\" y=\"1540\" name=\"top\"/>\n  <anchor x=\"998\" y=\"1400\" name=\"viet_top\"/>\n  <outline>\n    <contour>\n      <point x=\"826\" y=\"1628\" type=\"line\"/>\n      <point x=\"764\" y=\"1628\" type=\"line\"/>\n      <point x=\"401\" y=\"1248\" type=\"line\"/>\n      <point x=\"528\" y=\"1248\" type=\"line\"/>\n      <point x=\"794\" y=\"1539\" type=\"line\"/>\n      <point x=\"774\" y=\"1539\" type=\"line\"/>\n      <point x=\"936\" y=\"1248\" type=\"line\"/>\n      <point x=\"1053\" y=\"1248\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/clubB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"clubBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2663\"/>\n  <guideline x=\"637\" y=\"60\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1280\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1260\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"80\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"40\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"609\" y=\"590\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"853\" y=\"590\"/>\n      <point x=\"1026\" y=\"758\"/>\n      <point x=\"1026\" y=\"973\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"1157\"/>\n      <point x=\"908\" y=\"1280\"/>\n      <point x=\"730\" y=\"1280\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"1280\"/>\n      <point x=\"303\" y=\"1102\"/>\n      <point x=\"303\" y=\"836\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"685\"/>\n      <point x=\"420\" y=\"590\"/>\n    </contour>\n    <contour>\n      <point x=\"238\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"380\" y=\"162\"/>\n      <point x=\"488\" y=\"242\"/>\n      <point x=\"513\" y=\"363\" type=\"curve\"/>\n      <point x=\"576\" y=\"363\" type=\"line\"/>\n      <point x=\"591\" y=\"446\" type=\"line\"/>\n      <point x=\"381\" y=\"481\" type=\"line\"/>\n      <point x=\"503\" y=\"363\" type=\"line\"/>\n      <point x=\"530\" y=\"523\"/>\n      <point x=\"460\" y=\"629\"/>\n      <point x=\"320\" y=\"629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"629\"/>\n      <point x=\"60\" y=\"515\"/>\n      <point x=\"60\" y=\"346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"60\" y=\"231\"/>\n      <point x=\"126\" y=\"162\"/>\n    </contour>\n    <contour>\n      <point x=\"339\" y=\"419\" type=\"line\"/>\n      <point x=\"626\" y=\"419\" type=\"line\"/>\n      <point x=\"661\" y=\"621\" type=\"line\"/>\n      <point x=\"457\" y=\"634\" type=\"line\"/>\n      <point x=\"348\" y=\"471\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"469\" y=\"60\" type=\"line\"/>\n      <point x=\"565\" y=\"60\" type=\"line\"/>\n      <point x=\"742\" y=\"1060\" type=\"line\"/>\n      <point x=\"646\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"532\" y=\"419\" type=\"line\"/>\n      <point x=\"835\" y=\"419\" type=\"line\"/>\n      <point x=\"834\" y=\"471\" type=\"line\"/>\n      <point x=\"768\" y=\"621\" type=\"line\"/>\n      <point x=\"567\" y=\"621\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"828\" y=\"162\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"985\" y=\"162\"/>\n      <point x=\"1089\" y=\"271\"/>\n      <point x=\"1089\" y=\"434\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1089\" y=\"551\"/>\n      <point x=\"1017\" y=\"629\"/>\n      <point x=\"910\" y=\"629\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"775\" y=\"629\"/>\n      <point x=\"669\" y=\"530\"/>\n      <point x=\"638\" y=\"383\" type=\"curve\"/>\n      <point x=\"815\" y=\"481\" type=\"line\"/>\n      <point x=\"577\" y=\"446\" type=\"line\"/>\n      <point x=\"562\" y=\"363\" type=\"line\"/>\n      <point x=\"628\" y=\"363\" type=\"line\"/>\n      <point x=\"620\" y=\"242\"/>\n      <point x=\"700\" y=\"162\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"32\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003A\"/>\n  <outline>\n    <contour>\n      <point x=\"680\" y=\"881\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"735\" y=\"881\"/>\n      <point x=\"780\" y=\"925\"/>\n      <point x=\"780\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"780\" y=\"1035\"/>\n      <point x=\"735\" y=\"1080\"/>\n      <point x=\"680\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"625\" y=\"1080\"/>\n      <point x=\"580\" y=\"1035\"/>\n      <point x=\"580\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"580\" y=\"925\"/>\n      <point x=\"625\" y=\"881\"/>\n    </contour>\n    <contour>\n      <point x=\"520\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"-20\"/>\n      <point x=\"620\" y=\"24\"/>\n      <point x=\"620\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"620\" y=\"134\"/>\n      <point x=\"575\" y=\"179\"/>\n      <point x=\"520\" y=\"179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"179\"/>\n      <point x=\"420\" y=\"134\"/>\n      <point x=\"420\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"24\"/>\n      <point x=\"465\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"143\"/>\n    <component base=\"colon\" xOffset=\"1057\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_colon_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"403\"/>\n    <component base=\"colon\" xOffset=\"1200\"/>\n    <component base=\"colon\" xOffset=\"1997\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_colon_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_colon_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1968\" y=\"914\" type=\"line\"/>\n      <point x=\"3388\" y=\"914\" type=\"line\"/>\n      <point x=\"3404\" y=\"1004\" type=\"line\"/>\n      <point x=\"1984\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1880\" y=\"416\" type=\"line\"/>\n      <point x=\"3300\" y=\"416\" type=\"line\"/>\n      <point x=\"3316\" y=\"506\" type=\"line\"/>\n      <point x=\"1896\" y=\"506\" type=\"line\"/>\n    </contour>\n    <component base=\"colon\" xOffset=\"674\" yOffset=\"180\"/>\n    <component base=\"colon\" xOffset=\"-85\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1068\" y=\"914\" type=\"line\"/>\n      <point x=\"2188\" y=\"914\" type=\"line\"/>\n      <point x=\"2204\" y=\"1004\" type=\"line\"/>\n      <point x=\"1084\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"980\" y=\"416\" type=\"line\"/>\n      <point x=\"2100\" y=\"416\" type=\"line\"/>\n      <point x=\"2116\" y=\"506\" type=\"line\"/>\n      <point x=\"996\" y=\"506\" type=\"line\"/>\n    </contour>\n    <component base=\"colon\" xOffset=\"-25\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"967\" y=\"914\" type=\"line\"/>\n      <point x=\"1317\" y=\"914\" type=\"line\"/>\n      <point x=\"1333\" y=\"1004\" type=\"line\"/>\n      <point x=\"983\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"879\" y=\"414\" type=\"line\"/>\n      <point x=\"1229\" y=\"414\" type=\"line\"/>\n      <point x=\"1245\" y=\"504\" type=\"line\"/>\n      <point x=\"895\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"914\" type=\"line\"/>\n      <point x=\"368\" y=\"914\" type=\"line\"/>\n      <point x=\"384\" y=\"1004\" type=\"line\"/>\n      <point x=\"34\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-70\" y=\"414\" type=\"line\"/>\n      <point x=\"280\" y=\"414\" type=\"line\"/>\n      <point x=\"296\" y=\"504\" type=\"line\"/>\n      <point x=\"-54\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"colon.center\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_slash_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colon_slash_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"colon\" xOffset=\"113\"/>\n    <component base=\"slash\" xOffset=\"2053\"/>\n    <component base=\"slash\" xOffset=\"1092\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colonsign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colonsign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A1\"/>\n  <outline>\n    <contour>\n      <point x=\"484\" y=\"-330\" type=\"line\"/>\n      <point x=\"1231\" y=\"1692\" type=\"line\"/>\n      <point x=\"1134\" y=\"1716\" type=\"line\"/>\n      <point x=\"397\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"194\" y=\"-330\" type=\"line\"/>\n      <point x=\"941\" y=\"1692\" type=\"line\"/>\n      <point x=\"844\" y=\"1716\" type=\"line\"/>\n      <point x=\"107\" y=\"-306\" type=\"line\"/>\n    </contour>\n    <component base=\"C\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colontriangularmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"colontriangularmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D0\"/>\n  <outline>\n    <contour>\n      <point x=\"644\" y=\"780\" type=\"line\"/>\n      <point x=\"843\" y=\"1060\" type=\"line\"/>\n      <point x=\"543\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"357\" y=\"0\" type=\"line\"/>\n      <point x=\"657\" y=\"0\" type=\"line\"/>\n      <point x=\"556\" y=\"280\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/comma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"comma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002C\"/>\n  <outline>\n    <contour>\n      <point x=\"312\" y=\"-436\" type=\"line\"/>\n      <point x=\"405\" y=\"-436\" type=\"line\"/>\n      <point x=\"610\" y=\"254\" type=\"line\"/>\n      <point x=\"512\" y=\"254\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaabovecomb\" format=\"2\">\n  <unicode hex=\"0313\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"770\" y=\"1498\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"693\" y=\"1192\" type=\"line\"/>\n      <point x=\"809\" y=\"1292\"/>\n      <point x=\"907\" y=\"1388\"/>\n      <point x=\"907\" y=\"1495\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"1578\"/>\n      <point x=\"855\" y=\"1616\"/>\n      <point x=\"747\" y=\"1616\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"672\" y=\"1616\" type=\"line\"/>\n      <point x=\"656\" y=\"1524\" type=\"line\"/>\n      <point x=\"731\" y=\"1524\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"1524\"/>\n      <point x=\"808\" y=\"1509\"/>\n      <point x=\"808\" y=\"1475\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"808\" y=\"1410\"/>\n      <point x=\"713\" y=\"1323\"/>\n      <point x=\"626\" y=\"1251\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaaboverightcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaaboverightcomb\" format=\"2\">\n  <unicode hex=\"0315\"/>\n  <outline>\n    <component base=\"commaabovecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaaccentcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaaccentcomb\" format=\"2\">\n  <unicode hex=\"0326\"/>\n  <anchor x=\"506\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"446\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <component base=\"commaabovecomb\" xOffset=\"-310\" yOffset=\"-1730\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaturnedabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaturnedabovecomb\" format=\"2\">\n  <unicode hex=\"0312\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"715\" y=\"1211\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"790\" y=\"1211\" type=\"line\"/>\n      <point x=\"806\" y=\"1303\" type=\"line\"/>\n      <point x=\"731\" y=\"1303\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"1303\"/>\n      <point x=\"654\" y=\"1318\"/>\n      <point x=\"654\" y=\"1352\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"1417\"/>\n      <point x=\"747\" y=\"1502\"/>\n      <point x=\"836\" y=\"1576\" type=\"curve\"/>\n      <point x=\"769\" y=\"1635\" type=\"line\"/>\n      <point x=\"653\" y=\"1536\"/>\n      <point x=\"555\" y=\"1442\"/>\n      <point x=\"555\" y=\"1337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"1251\"/>\n      <point x=\"607\" y=\"1211\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaturnedmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"commaturnedmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02BB\"/>\n  <outline>\n    <component base=\"quoteleft\" xOffset=\"5\" yOffset=\"75\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/contents.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>.notdef</key>\n    <string>_notdef.glif</string>\n    <key>A</key>\n    <string>A_.glif</string>\n    <key>A-cy</key>\n    <string>A_-cy.glif</string>\n    <key>A.half</key>\n    <string>A_.half.glif</string>\n    <key>AE</key>\n    <string>A_E_.glif</string>\n    <key>AEacute</key>\n    <string>A_E_acute.glif</string>\n    <key>Aacute</key>\n    <string>A_acute.glif</string>\n    <key>Abreve</key>\n    <string>A_breve.glif</string>\n    <key>Abreveacute</key>\n    <string>A_breveacute.glif</string>\n    <key>Abrevedotbelow</key>\n    <string>A_brevedotbelow.glif</string>\n    <key>Abrevegrave</key>\n    <string>A_brevegrave.glif</string>\n    <key>Abrevehookabove</key>\n    <string>A_brevehookabove.glif</string>\n    <key>Abrevetilde</key>\n    <string>A_brevetilde.glif</string>\n    <key>Acaron</key>\n    <string>A_caron.glif</string>\n    <key>Acircumflex</key>\n    <string>A_circumflex.glif</string>\n    <key>Acircumflexacute</key>\n    <string>A_circumflexacute.glif</string>\n    <key>Acircumflexdotbelow</key>\n    <string>A_circumflexdotbelow.glif</string>\n    <key>Acircumflexgrave</key>\n    <string>A_circumflexgrave.glif</string>\n    <key>Acircumflexhookabove</key>\n    <string>A_circumflexhookabove.glif</string>\n    <key>Acircumflextilde</key>\n    <string>A_circumflextilde.glif</string>\n    <key>Adieresis</key>\n    <string>A_dieresis.glif</string>\n    <key>Adotbelow</key>\n    <string>A_dotbelow.glif</string>\n    <key>Agrave</key>\n    <string>A_grave.glif</string>\n    <key>Ahookabove</key>\n    <string>A_hookabove.glif</string>\n    <key>Alpha</key>\n    <string>A_lpha.glif</string>\n    <key>Alpha-latin</key>\n    <string>A_lpha-latin.glif</string>\n    <key>Alphatonos</key>\n    <string>A_lphatonos.glif</string>\n    <key>Amacron</key>\n    <string>A_macron.glif</string>\n    <key>Aogonek</key>\n    <string>A_ogonek.glif</string>\n    <key>Aring</key>\n    <string>A_ring.glif</string>\n    <key>Aringacute</key>\n    <string>A_ringacute.glif</string>\n    <key>Asmall</key>\n    <string>A_small.glif</string>\n    <key>Astroke</key>\n    <string>A_stroke.glif</string>\n    <key>Atilde</key>\n    <string>A_tilde.glif</string>\n    <key>B</key>\n    <string>B_.glif</string>\n    <key>B.half</key>\n    <string>B_.half.glif</string>\n    <key>Be-cy</key>\n    <string>B_e-cy.glif</string>\n    <key>Beta</key>\n    <string>B_eta.glif</string>\n    <key>C</key>\n    <string>C_.glif</string>\n    <key>C.half</key>\n    <string>C_.half.glif</string>\n    <key>CR</key>\n    <string>C_R_.glif</string>\n    <key>Cacute</key>\n    <string>C_acute.glif</string>\n    <key>Cacute.loclPLK</key>\n    <string>C_acute.loclP_L_K_.glif</string>\n    <key>Ccaron</key>\n    <string>C_caron.glif</string>\n    <key>Ccedilla</key>\n    <string>C_cedilla.glif</string>\n    <key>Ccircumflex</key>\n    <string>C_circumflex.glif</string>\n    <key>Cdotaccent</key>\n    <string>C_dotaccent.glif</string>\n    <key>Che-cy</key>\n    <string>C_he-cy.glif</string>\n    <key>Chedescender-cy</key>\n    <string>C_hedescender-cy.glif</string>\n    <key>Chi</key>\n    <string>C_hi.glif</string>\n    <key>Cstroke</key>\n    <string>C_stroke.glif</string>\n    <key>D</key>\n    <string>D_.glif</string>\n    <key>D.half</key>\n    <string>D_.half.glif</string>\n    <key>Dafrican</key>\n    <string>D_african.glif</string>\n    <key>Dcaron</key>\n    <string>D_caron.glif</string>\n    <key>Dcroat</key>\n    <string>D_croat.glif</string>\n    <key>De-cy</key>\n    <string>D_e-cy.glif</string>\n    <key>De-cy.loclBGR</key>\n    <string>D_e-cy.loclB_G_R_.glif</string>\n    <key>Delta</key>\n    <string>D_elta.glif</string>\n    <key>Dje-cy</key>\n    <string>D_je-cy.glif</string>\n    <key>Dze-cy</key>\n    <string>D_ze-cy.glif</string>\n    <key>Dzhe-cy</key>\n    <string>D_zhe-cy.glif</string>\n    <key>E</key>\n    <string>E_.glif</string>\n    <key>E-cy</key>\n    <string>E_-cy.glif</string>\n    <key>E.half</key>\n    <string>E_.half.glif</string>\n    <key>Eacute</key>\n    <string>E_acute.glif</string>\n    <key>Ebreve</key>\n    <string>E_breve.glif</string>\n    <key>Ecaron</key>\n    <string>E_caron.glif</string>\n    <key>Ecircumflex</key>\n    <string>E_circumflex.glif</string>\n    <key>Ecircumflexacute</key>\n    <string>E_circumflexacute.glif</string>\n    <key>Ecircumflexdotbelow</key>\n    <string>E_circumflexdotbelow.glif</string>\n    <key>Ecircumflexgrave</key>\n    <string>E_circumflexgrave.glif</string>\n    <key>Ecircumflexhookabove</key>\n    <string>E_circumflexhookabove.glif</string>\n    <key>Ecircumflextilde</key>\n    <string>E_circumflextilde.glif</string>\n    <key>Edieresis</key>\n    <string>E_dieresis.glif</string>\n    <key>Edotaccent</key>\n    <string>E_dotaccent.glif</string>\n    <key>Edotbelow</key>\n    <string>E_dotbelow.glif</string>\n    <key>Ef-cy</key>\n    <string>E_f-cy.glif</string>\n    <key>Ef-cy.loclBGR</key>\n    <string>E_f-cy.loclB_G_R_.glif</string>\n    <key>Egrave</key>\n    <string>E_grave.glif</string>\n    <key>Ehookabove</key>\n    <string>E_hookabove.glif</string>\n    <key>El-cy</key>\n    <string>E_l-cy.glif</string>\n    <key>El-cy.loclBGR</key>\n    <string>E_l-cy.loclB_G_R_.glif</string>\n    <key>Em-cy</key>\n    <string>E_m-cy.glif</string>\n    <key>Emacron</key>\n    <string>E_macron.glif</string>\n    <key>En-cy</key>\n    <string>E_n-cy.glif</string>\n    <key>Endescender-cy</key>\n    <string>E_ndescender-cy.glif</string>\n    <key>Eng</key>\n    <string>E_ng.glif</string>\n    <key>Eogonek</key>\n    <string>E_ogonek.glif</string>\n    <key>Eopen</key>\n    <string>E_open.glif</string>\n    <key>Epsilon</key>\n    <string>E_psilon.glif</string>\n    <key>Epsilontonos</key>\n    <string>E_psilontonos.glif</string>\n    <key>Er-cy</key>\n    <string>E_r-cy.glif</string>\n    <key>Ereversed</key>\n    <string>E_reversed.glif</string>\n    <key>Ereversed-cy</key>\n    <string>E_reversed-cy.glif</string>\n    <key>Es-cy</key>\n    <string>E_s-cy.glif</string>\n    <key>Esh</key>\n    <string>E_sh.glif</string>\n    <key>Eta</key>\n    <string>E_ta.glif</string>\n    <key>Etatonos</key>\n    <string>E_tatonos.glif</string>\n    <key>Eth</key>\n    <string>E_th.glif</string>\n    <key>Etilde</key>\n    <string>E_tilde.glif</string>\n    <key>Ezh</key>\n    <string>E_zh.glif</string>\n    <key>F</key>\n    <string>F_.glif</string>\n    <key>F.half</key>\n    <string>F_.half.glif</string>\n    <key>Fhook</key>\n    <string>F_hook.glif</string>\n    <key>G</key>\n    <string>G_.glif</string>\n    <key>G.half</key>\n    <string>G_.half.glif</string>\n    <key>Gamma</key>\n    <string>G_amma.glif</string>\n    <key>Gammaafrican</key>\n    <string>G_ammaafrican.glif</string>\n    <key>Gbreve</key>\n    <string>G_breve.glif</string>\n    <key>Gcaron</key>\n    <string>G_caron.glif</string>\n    <key>Gcircumflex</key>\n    <string>G_circumflex.glif</string>\n    <key>Gcommaaccent</key>\n    <string>G_commaaccent.glif</string>\n    <key>Gdotaccent</key>\n    <string>G_dotaccent.glif</string>\n    <key>Ge-cy</key>\n    <string>G_e-cy.glif</string>\n    <key>Germandbls</key>\n    <string>G_ermandbls.glif</string>\n    <key>Ghestroke-cy</key>\n    <string>G_hestroke-cy.glif</string>\n    <key>Gheupturn-cy</key>\n    <string>G_heupturn-cy.glif</string>\n    <key>Gje-cy</key>\n    <string>G_je-cy.glif</string>\n    <key>Gsmall</key>\n    <string>G_small.glif</string>\n    <key>Gstroke</key>\n    <string>G_stroke.glif</string>\n    <key>H</key>\n    <string>H_.glif</string>\n    <key>H.half</key>\n    <string>H_.half.glif</string>\n    <key>Ha-cy</key>\n    <string>H_a-cy.glif</string>\n    <key>Hadescender-cy</key>\n    <string>H_adescender-cy.glif</string>\n    <key>Hardsign-cy</key>\n    <string>H_ardsign-cy.glif</string>\n    <key>Hbar</key>\n    <string>H_bar.glif</string>\n    <key>Hcaron</key>\n    <string>H_caron.glif</string>\n    <key>Hcircumflex</key>\n    <string>H_circumflex.glif</string>\n    <key>Hdotbelow</key>\n    <string>H_dotbelow.glif</string>\n    <key>I</key>\n    <string>I_.glif</string>\n    <key>I-cy</key>\n    <string>I_-cy.glif</string>\n    <key>I.half</key>\n    <string>I_.half.glif</string>\n    <key>IJ</key>\n    <string>I_J_.glif</string>\n    <key>IJ_acute</key>\n    <string>I_J__acute.glif</string>\n    <key>Ia-cy</key>\n    <string>I_a-cy.glif</string>\n    <key>Iacute</key>\n    <string>I_acute.glif</string>\n    <key>Ibreve</key>\n    <string>I_breve.glif</string>\n    <key>Icircumflex</key>\n    <string>I_circumflex.glif</string>\n    <key>Idieresis</key>\n    <string>I_dieresis.glif</string>\n    <key>Idotaccent</key>\n    <string>I_dotaccent.glif</string>\n    <key>Idotbelow</key>\n    <string>I_dotbelow.glif</string>\n    <key>Ie-cy</key>\n    <string>I_e-cy.glif</string>\n    <key>Iegrave-cy</key>\n    <string>I_egrave-cy.glif</string>\n    <key>Igrave</key>\n    <string>I_grave.glif</string>\n    <key>Ihookabove</key>\n    <string>I_hookabove.glif</string>\n    <key>Ii-cy</key>\n    <string>I_i-cy.glif</string>\n    <key>Iigrave-cy</key>\n    <string>I_igrave-cy.glif</string>\n    <key>Iishort-cy</key>\n    <string>I_ishort-cy.glif</string>\n    <key>Imacron</key>\n    <string>I_macron.glif</string>\n    <key>Imacron-cy</key>\n    <string>I_macron-cy.glif</string>\n    <key>Io-cy</key>\n    <string>I_o-cy.glif</string>\n    <key>Iogonek</key>\n    <string>I_ogonek.glif</string>\n    <key>Iota</key>\n    <string>I_ota.glif</string>\n    <key>Iotaafrican</key>\n    <string>I_otaafrican.glif</string>\n    <key>Iotadieresis</key>\n    <string>I_otadieresis.glif</string>\n    <key>Iotatonos</key>\n    <string>I_otatonos.glif</string>\n    <key>Ismall</key>\n    <string>I_small.glif</string>\n    <key>Itilde</key>\n    <string>I_tilde.glif</string>\n    <key>Iu-cy</key>\n    <string>I_u-cy.glif</string>\n    <key>J</key>\n    <string>J_.glif</string>\n    <key>Jacute</key>\n    <string>J_acute.glif</string>\n    <key>Jcircumflex</key>\n    <string>J_circumflex.glif</string>\n    <key>Je-cy</key>\n    <string>J_e-cy.glif</string>\n    <key>K</key>\n    <string>K_.glif</string>\n    <key>K.half</key>\n    <string>K_.half.glif</string>\n    <key>Ka-cy</key>\n    <string>K_a-cy.glif</string>\n    <key>Kacute</key>\n    <string>K_acute.glif</string>\n    <key>Kadescender-cy</key>\n    <string>K_adescender-cy.glif</string>\n    <key>KaiSymbol</key>\n    <string>K_aiS_ymbol.glif</string>\n    <key>Kappa</key>\n    <string>K_appa.glif</string>\n    <key>Kcommaaccent</key>\n    <string>K_commaaccent.glif</string>\n    <key>Kdotbelow</key>\n    <string>K_dotbelow.glif</string>\n    <key>Kje-cy</key>\n    <string>K_je-cy.glif</string>\n    <key>Klinebelow</key>\n    <string>K_linebelow.glif</string>\n    <key>L</key>\n    <string>L_.glif</string>\n    <key>L.half</key>\n    <string>L_.half.glif</string>\n    <key>LIG</key>\n    <string>L_I_G_.glif</string>\n    <key>Lacute</key>\n    <string>L_acute.glif</string>\n    <key>Lambda</key>\n    <string>L_ambda.glif</string>\n    <key>Lbar</key>\n    <string>L_bar.glif</string>\n    <key>Lcaron</key>\n    <string>L_caron.glif</string>\n    <key>Lcommaaccent</key>\n    <string>L_commaaccent.glif</string>\n    <key>Ldot</key>\n    <string>L_dot.glif</string>\n    <key>Ldotbelow</key>\n    <string>L_dotbelow.glif</string>\n    <key>Lje-cy</key>\n    <string>L_je-cy.glif</string>\n    <key>Llinebelow</key>\n    <string>L_linebelow.glif</string>\n    <key>Lmiddletilde</key>\n    <string>L_middletilde.glif</string>\n    <key>Lslash</key>\n    <string>L_slash.glif</string>\n    <key>Lsmall</key>\n    <string>L_small.glif</string>\n    <key>M</key>\n    <string>M_.glif</string>\n    <key>M.half</key>\n    <string>M_.half.glif</string>\n    <key>Mu</key>\n    <string>M_u.glif</string>\n    <key>N</key>\n    <string>N_.glif</string>\n    <key>N.half</key>\n    <string>N_.half.glif</string>\n    <key>Nacute</key>\n    <string>N_acute.glif</string>\n    <key>Nacute.loclPLK</key>\n    <string>N_acute.loclP_L_K_.glif</string>\n    <key>Ncaron</key>\n    <string>N_caron.glif</string>\n    <key>Ncommaaccent</key>\n    <string>N_commaaccent.glif</string>\n    <key>Nhookleft</key>\n    <string>N_hookleft.glif</string>\n    <key>Nje-cy</key>\n    <string>N_je-cy.glif</string>\n    <key>Nlinebelow</key>\n    <string>N_linebelow.glif</string>\n    <key>Ntilde</key>\n    <string>N_tilde.glif</string>\n    <key>Nu</key>\n    <string>N_u.glif</string>\n    <key>O</key>\n    <string>O_.glif</string>\n    <key>O-cy</key>\n    <string>O_-cy.glif</string>\n    <key>O.half</key>\n    <string>O_.half.glif</string>\n    <key>OE</key>\n    <string>O_E_.glif</string>\n    <key>Oacute</key>\n    <string>O_acute.glif</string>\n    <key>Oacute.loclPLK</key>\n    <string>O_acute.loclP_L_K_.glif</string>\n    <key>Obarred-cy</key>\n    <string>O_barred-cy.glif</string>\n    <key>Obreve</key>\n    <string>O_breve.glif</string>\n    <key>Ocircumflex</key>\n    <string>O_circumflex.glif</string>\n    <key>Ocircumflexacute</key>\n    <string>O_circumflexacute.glif</string>\n    <key>Ocircumflexdotbelow</key>\n    <string>O_circumflexdotbelow.glif</string>\n    <key>Ocircumflexgrave</key>\n    <string>O_circumflexgrave.glif</string>\n    <key>Ocircumflexhookabove</key>\n    <string>O_circumflexhookabove.glif</string>\n    <key>Ocircumflextilde</key>\n    <string>O_circumflextilde.glif</string>\n    <key>Odieresis</key>\n    <string>O_dieresis.glif</string>\n    <key>Odotbelow</key>\n    <string>O_dotbelow.glif</string>\n    <key>Ograve</key>\n    <string>O_grave.glif</string>\n    <key>Ohm</key>\n    <string>O_hm.glif</string>\n    <key>Ohookabove</key>\n    <string>O_hookabove.glif</string>\n    <key>Ohorn</key>\n    <string>O_horn.glif</string>\n    <key>Ohornacute</key>\n    <string>O_hornacute.glif</string>\n    <key>Ohorndotbelow</key>\n    <string>O_horndotbelow.glif</string>\n    <key>Ohorngrave</key>\n    <string>O_horngrave.glif</string>\n    <key>Ohornhookabove</key>\n    <string>O_hornhookabove.glif</string>\n    <key>Ohorntilde</key>\n    <string>O_horntilde.glif</string>\n    <key>Ohungarumlaut</key>\n    <string>O_hungarumlaut.glif</string>\n    <key>Omacron</key>\n    <string>O_macron.glif</string>\n    <key>Omacronacute</key>\n    <string>O_macronacute.glif</string>\n    <key>Omacrongrave</key>\n    <string>O_macrongrave.glif</string>\n    <key>Omega</key>\n    <string>O_mega.glif</string>\n    <key>Omegatonos</key>\n    <string>O_megatonos.glif</string>\n    <key>Omicron</key>\n    <string>O_micron.glif</string>\n    <key>Omicrontonos</key>\n    <string>O_microntonos.glif</string>\n    <key>Oogonek</key>\n    <string>O_ogonek.glif</string>\n    <key>Oopen</key>\n    <string>O_open.glif</string>\n    <key>Oslash</key>\n    <string>O_slash.glif</string>\n    <key>Oslashacute</key>\n    <string>O_slashacute.glif</string>\n    <key>Otilde</key>\n    <string>O_tilde.glif</string>\n    <key>P</key>\n    <string>P_.glif</string>\n    <key>P.half</key>\n    <string>P_.half.glif</string>\n    <key>Palochka-cy</key>\n    <string>P_alochka-cy.glif</string>\n    <key>Pe-cy</key>\n    <string>P_e-cy.glif</string>\n    <key>Phi</key>\n    <string>P_hi.glif</string>\n    <key>Pi</key>\n    <string>P_i.glif</string>\n    <key>Psi</key>\n    <string>P_si.glif</string>\n    <key>Q</key>\n    <string>Q_.glif</string>\n    <key>Q.half</key>\n    <string>Q_.half.glif</string>\n    <key>R</key>\n    <string>R_.glif</string>\n    <key>R.half</key>\n    <string>R_.half.glif</string>\n    <key>Racute</key>\n    <string>R_acute.glif</string>\n    <key>Rcaron</key>\n    <string>R_caron.glif</string>\n    <key>Rcommaaccent</key>\n    <string>R_commaaccent.glif</string>\n    <key>Rdotbelow</key>\n    <string>R_dotbelow.glif</string>\n    <key>Rho</key>\n    <string>R_ho.glif</string>\n    <key>S</key>\n    <string>S_.glif</string>\n    <key>S.half</key>\n    <string>S_.half.glif</string>\n    <key>Sacute</key>\n    <string>S_acute.glif</string>\n    <key>Sacute.loclPLK</key>\n    <string>S_acute.loclP_L_K_.glif</string>\n    <key>Scaron</key>\n    <string>S_caron.glif</string>\n    <key>Scedilla</key>\n    <string>S_cedilla.glif</string>\n    <key>Schwa</key>\n    <string>S_chwa.glif</string>\n    <key>Schwa-cy</key>\n    <string>S_chwa-cy.glif</string>\n    <key>Scircumflex</key>\n    <string>S_circumflex.glif</string>\n    <key>Scommaaccent</key>\n    <string>S_commaaccent.glif</string>\n    <key>Sdotbelow</key>\n    <string>S_dotbelow.glif</string>\n    <key>Sha-cy</key>\n    <string>S_ha-cy.glif</string>\n    <key>Shcha-cy</key>\n    <string>S_hcha-cy.glif</string>\n    <key>Shha-cy</key>\n    <string>S_hha-cy.glif</string>\n    <key>Sigma</key>\n    <string>S_igma.glif</string>\n    <key>Softsign-cy</key>\n    <string>S_oftsign-cy.glif</string>\n    <key>T</key>\n    <string>T_.glif</string>\n    <key>T.half</key>\n    <string>T_.half.glif</string>\n    <key>Tau</key>\n    <string>T_au.glif</string>\n    <key>Tbar</key>\n    <string>T_bar.glif</string>\n    <key>Tcaron</key>\n    <string>T_caron.glif</string>\n    <key>Tcedilla</key>\n    <string>T_cedilla.glif</string>\n    <key>Tcommaaccent</key>\n    <string>T_commaaccent.glif</string>\n    <key>Tdiagonalstroke</key>\n    <string>T_diagonalstroke.glif</string>\n    <key>Te-cy</key>\n    <string>T_e-cy.glif</string>\n    <key>Theta</key>\n    <string>T_heta.glif</string>\n    <key>Thorn</key>\n    <string>T_horn.glif</string>\n    <key>Tlinebelow</key>\n    <string>T_linebelow.glif</string>\n    <key>Tse-cy</key>\n    <string>T_se-cy.glif</string>\n    <key>Tshe-cy</key>\n    <string>T_she-cy.glif</string>\n    <key>U</key>\n    <string>U_.glif</string>\n    <key>U-cy</key>\n    <string>U_-cy.glif</string>\n    <key>U.half</key>\n    <string>U_.half.glif</string>\n    <key>Uacute</key>\n    <string>U_acute.glif</string>\n    <key>Ubreve</key>\n    <string>U_breve.glif</string>\n    <key>Ucircumflex</key>\n    <string>U_circumflex.glif</string>\n    <key>Udieresis</key>\n    <string>U_dieresis.glif</string>\n    <key>Udotbelow</key>\n    <string>U_dotbelow.glif</string>\n    <key>Ugrave</key>\n    <string>U_grave.glif</string>\n    <key>Uhookabove</key>\n    <string>U_hookabove.glif</string>\n    <key>Uhorn</key>\n    <string>U_horn.glif</string>\n    <key>Uhornacute</key>\n    <string>U_hornacute.glif</string>\n    <key>Uhorndotbelow</key>\n    <string>U_horndotbelow.glif</string>\n    <key>Uhorngrave</key>\n    <string>U_horngrave.glif</string>\n    <key>Uhornhookabove</key>\n    <string>U_hornhookabove.glif</string>\n    <key>Uhorntilde</key>\n    <string>U_horntilde.glif</string>\n    <key>Uhungarumlaut</key>\n    <string>U_hungarumlaut.glif</string>\n    <key>Umacron</key>\n    <string>U_macron.glif</string>\n    <key>Umacron-cy</key>\n    <string>U_macron-cy.glif</string>\n    <key>Uogonek</key>\n    <string>U_ogonek.glif</string>\n    <key>Upsilon</key>\n    <string>U_psilon.glif</string>\n    <key>Upsilonafrican</key>\n    <string>U_psilonafrican.glif</string>\n    <key>Upsilondieresis</key>\n    <string>U_psilondieresis.glif</string>\n    <key>Upsilontonos</key>\n    <string>U_psilontonos.glif</string>\n    <key>Uring</key>\n    <string>U_ring.glif</string>\n    <key>Ushort-cy</key>\n    <string>U_short-cy.glif</string>\n    <key>Ustraight-cy</key>\n    <string>U_straight-cy.glif</string>\n    <key>Ustraightstroke-cy</key>\n    <string>U_straightstroke-cy.glif</string>\n    <key>Utilde</key>\n    <string>U_tilde.glif</string>\n    <key>V</key>\n    <string>V_.glif</string>\n    <key>V.half</key>\n    <string>V_.half.glif</string>\n    <key>Ve-cy</key>\n    <string>V_e-cy.glif</string>\n    <key>Vhook</key>\n    <string>V_hook.glif</string>\n    <key>Vturned</key>\n    <string>V_turned.glif</string>\n    <key>W</key>\n    <string>W_.glif</string>\n    <key>Wacute</key>\n    <string>W_acute.glif</string>\n    <key>Wcircumflex</key>\n    <string>W_circumflex.glif</string>\n    <key>Wdieresis</key>\n    <string>W_dieresis.glif</string>\n    <key>Wgrave</key>\n    <string>W_grave.glif</string>\n    <key>X</key>\n    <string>X_.glif</string>\n    <key>X.half</key>\n    <string>X_.half.glif</string>\n    <key>Xi</key>\n    <string>X_i.glif</string>\n    <key>Y</key>\n    <string>Y_.glif</string>\n    <key>Y.half</key>\n    <string>Y_.half.glif</string>\n    <key>Yacute</key>\n    <string>Y_acute.glif</string>\n    <key>Ycircumflex</key>\n    <string>Y_circumflex.glif</string>\n    <key>Ydieresis</key>\n    <string>Y_dieresis.glif</string>\n    <key>Ydotbelow</key>\n    <string>Y_dotbelow.glif</string>\n    <key>Yeru-cy</key>\n    <string>Y_eru-cy.glif</string>\n    <key>Ygrave</key>\n    <string>Y_grave.glif</string>\n    <key>Yhookabove</key>\n    <string>Y_hookabove.glif</string>\n    <key>Yi-cy</key>\n    <string>Y_i-cy.glif</string>\n    <key>Ymacron</key>\n    <string>Y_macron.glif</string>\n    <key>Ytilde</key>\n    <string>Y_tilde.glif</string>\n    <key>Z</key>\n    <string>Z_.glif</string>\n    <key>Zacute</key>\n    <string>Z_acute.glif</string>\n    <key>Zacute.loclPLK</key>\n    <string>Z_acute.loclP_L_K_.glif</string>\n    <key>Zcaron</key>\n    <string>Z_caron.glif</string>\n    <key>Zdotaccent</key>\n    <string>Z_dotaccent.glif</string>\n    <key>Ze-cy</key>\n    <string>Z_e-cy.glif</string>\n    <key>Zeta</key>\n    <string>Z_eta.glif</string>\n    <key>Zhe-cy</key>\n    <string>Z_he-cy.glif</string>\n    <key>Zhedescender-cy</key>\n    <string>Z_hedescender-cy.glif</string>\n    <key>a</key>\n    <string>a.glif</string>\n    <key>a-cy</key>\n    <string>a-cy.glif</string>\n    <key>aacute</key>\n    <string>aacute.glif</string>\n    <key>abreve</key>\n    <string>abreve.glif</string>\n    <key>abreveacute</key>\n    <string>abreveacute.glif</string>\n    <key>abrevedotbelow</key>\n    <string>abrevedotbelow.glif</string>\n    <key>abrevegrave</key>\n    <string>abrevegrave.glif</string>\n    <key>abrevehookabove</key>\n    <string>abrevehookabove.glif</string>\n    <key>abrevetilde</key>\n    <string>abrevetilde.glif</string>\n    <key>acaron</key>\n    <string>acaron.glif</string>\n    <key>acircumflex</key>\n    <string>acircumflex.glif</string>\n    <key>acircumflexacute</key>\n    <string>acircumflexacute.glif</string>\n    <key>acircumflexdotbelow</key>\n    <string>acircumflexdotbelow.glif</string>\n    <key>acircumflexgrave</key>\n    <string>acircumflexgrave.glif</string>\n    <key>acircumflexhookabove</key>\n    <string>acircumflexhookabove.glif</string>\n    <key>acircumflextilde</key>\n    <string>acircumflextilde.glif</string>\n    <key>acknowledgeControl</key>\n    <string>acknowledgeC_ontrol.glif</string>\n    <key>acknowledgeControl.ss20</key>\n    <string>acknowledgeC_ontrol.ss20.glif</string>\n    <key>acute</key>\n    <string>acute.glif</string>\n    <key>acutecomb</key>\n    <string>acutecomb.glif</string>\n    <key>acutecomb.case</key>\n    <string>acutecomb.case.glif</string>\n    <key>acutecomb.case.loclPLK</key>\n    <string>acutecomb.case.loclP_L_K_.glif</string>\n    <key>acutecomb.loclPLK</key>\n    <string>acutecomb.loclP_L_K_.glif</string>\n    <key>acutetonecomb</key>\n    <string>acutetonecomb.glif</string>\n    <key>adieresis</key>\n    <string>adieresis.glif</string>\n    <key>adotbelow</key>\n    <string>adotbelow.glif</string>\n    <key>ae</key>\n    <string>ae.glif</string>\n    <key>aeacute</key>\n    <string>aeacute.glif</string>\n    <key>agrave</key>\n    <string>agrave.glif</string>\n    <key>ahookabove</key>\n    <string>ahookabove.glif</string>\n    <key>alpha</key>\n    <string>alpha.glif</string>\n    <key>alpha-latin</key>\n    <string>alpha-latin.glif</string>\n    <key>alphatonos</key>\n    <string>alphatonos.glif</string>\n    <key>amacron</key>\n    <string>amacron.glif</string>\n    <key>ampersand</key>\n    <string>ampersand.glif</string>\n    <key>ampersand.BRACKET.600</key>\n    <string>ampersand.B_R_A_C_K_E_T_.600.glif</string>\n    <key>ampersand_ampersand.liga</key>\n    <string>ampersand_ampersand.liga.glif</string>\n    <key>ampersand_ampersand.liga.BRACKET.600</key>\n    <string>ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>anoteleia</key>\n    <string>anoteleia.glif</string>\n    <key>aogonek</key>\n    <string>aogonek.glif</string>\n    <key>apostrophemod</key>\n    <string>apostrophemod.glif</string>\n    <key>approxequal</key>\n    <string>approxequal.glif</string>\n    <key>aring</key>\n    <string>aring.glif</string>\n    <key>aringacute</key>\n    <string>aringacute.glif</string>\n    <key>asciicircum</key>\n    <string>asciicircum.glif</string>\n    <key>asciicircum_equal.liga</key>\n    <string>asciicircum_equal.liga.glif</string>\n    <key>asciitilde</key>\n    <string>asciitilde.glif</string>\n    <key>asciitilde_asciitilde.liga</key>\n    <string>asciitilde_asciitilde.liga.glif</string>\n    <key>asciitilde_asciitilde_greater.liga</key>\n    <string>asciitilde_asciitilde_greater.liga.glif</string>\n    <key>asciitilde_at.liga</key>\n    <string>asciitilde_at.liga.glif</string>\n    <key>asciitilde_equal.liga</key>\n    <string>asciitilde_equal.liga.glif</string>\n    <key>asciitilde_greater.liga</key>\n    <string>asciitilde_greater.liga.glif</string>\n    <key>asciitilde_hyphen.liga</key>\n    <string>asciitilde_hyphen.liga.glif</string>\n    <key>asterisk</key>\n    <string>asterisk.glif</string>\n    <key>asterisk_asterisk.liga</key>\n    <string>asterisk_asterisk.liga.glif</string>\n    <key>asterisk_asterisk_asterisk.liga</key>\n    <string>asterisk_asterisk_asterisk.liga.glif</string>\n    <key>asterisk_greater.liga</key>\n    <string>asterisk_greater.liga.glif</string>\n    <key>asterisk_parenright.liga</key>\n    <string>asterisk_parenright.liga.glif</string>\n    <key>asterisk_slash.liga</key>\n    <string>asterisk_slash.liga.glif</string>\n    <key>at</key>\n    <string>at.glif</string>\n    <key>atilde</key>\n    <string>atilde.glif</string>\n    <key>b</key>\n    <string>b.glif</string>\n    <key>b.alt</key>\n    <string>b.alt.glif</string>\n    <key>backslash</key>\n    <string>backslash.glif</string>\n    <key>backslash_backslash.liga</key>\n    <string>backslash_backslash.liga.glif</string>\n    <key>backslash_slash.liga</key>\n    <string>backslash_slash.liga.glif</string>\n    <key>backspaceControl</key>\n    <string>backspaceC_ontrol.glif</string>\n    <key>backspaceControl.ss20</key>\n    <string>backspaceC_ontrol.ss20.glif</string>\n    <key>baht</key>\n    <string>baht.glif</string>\n    <key>baht.BRACKET.600</key>\n    <string>baht.B_R_A_C_K_E_T_.600.glif</string>\n    <key>bar</key>\n    <string>bar.glif</string>\n    <key>bar_bar.liga</key>\n    <string>bar_bar.liga.glif</string>\n    <key>bar_bar_bar.liga</key>\n    <string>bar_bar_bar.liga.glif</string>\n    <key>bar_bar_bar_greater.liga</key>\n    <string>bar_bar_bar_greater.liga.glif</string>\n    <key>bar_bar_equal_end.seq</key>\n    <string>bar_bar_equal_end.seq.glif</string>\n    <key>bar_bar_equal_middle.seq</key>\n    <string>bar_bar_equal_middle.seq.glif</string>\n    <key>bar_bar_equal_start.seq</key>\n    <string>bar_bar_equal_start.seq.glif</string>\n    <key>bar_bar_greater.liga</key>\n    <string>bar_bar_greater.liga.glif</string>\n    <key>bar_bar_hyphen_end.seq</key>\n    <string>bar_bar_hyphen_end.seq.glif</string>\n    <key>bar_bar_hyphen_middle.seq</key>\n    <string>bar_bar_hyphen_middle.seq.glif</string>\n    <key>bar_bar_hyphen_start.seq</key>\n    <string>bar_bar_hyphen_start.seq.glif</string>\n    <key>bar_braceright.liga</key>\n    <string>bar_braceright.liga.glif</string>\n    <key>bar_bracketright.liga</key>\n    <string>bar_bracketright.liga.glif</string>\n    <key>bar_equal_end.seq</key>\n    <string>bar_equal_end.seq.glif</string>\n    <key>bar_equal_middle.seq</key>\n    <string>bar_equal_middle.seq.glif</string>\n    <key>bar_equal_start.seq</key>\n    <string>bar_equal_start.seq.glif</string>\n    <key>bar_greater.liga</key>\n    <string>bar_greater.liga.glif</string>\n    <key>bar_hyphen_end.seq</key>\n    <string>bar_hyphen_end.seq.glif</string>\n    <key>bar_hyphen_middle.seq</key>\n    <string>bar_hyphen_middle.seq.glif</string>\n    <key>bar_hyphen_start.seq</key>\n    <string>bar_hyphen_start.seq.glif</string>\n    <key>bar_underscore_middle.seq</key>\n    <string>bar_underscore_middle.seq.glif</string>\n    <key>be-cy</key>\n    <string>be-cy.glif</string>\n    <key>be-cy.loclSRB</key>\n    <string>be-cy.loclS_R_B_.glif</string>\n    <key>bellControl</key>\n    <string>bellC_ontrol.glif</string>\n    <key>bellControl.ss20</key>\n    <string>bellC_ontrol.ss20.glif</string>\n    <key>beta</key>\n    <string>beta.glif</string>\n    <key>bitcoin</key>\n    <string>bitcoin.glif</string>\n    <key>blackCircle</key>\n    <string>blackC_ircle.glif</string>\n    <key>blackDiamond</key>\n    <string>blackD_iamond.glif</string>\n    <key>blackHexagon</key>\n    <string>blackH_exagon.glif</string>\n    <key>blackHorizontalEllipse</key>\n    <string>blackH_orizontalE_llipse.glif</string>\n    <key>blackInWhiteDiamond</key>\n    <string>blackI_nW_hiteD_iamond.glif</string>\n    <key>blackLargeCircle</key>\n    <string>blackL_argeC_ircle.glif</string>\n    <key>blackLargeSquare</key>\n    <string>blackL_argeS_quare.glif</string>\n    <key>blackMediumDiamond</key>\n    <string>blackM_ediumD_iamond.glif</string>\n    <key>blackMediumDownTriangleCentred</key>\n    <string>blackM_ediumD_ownT_riangleC_entred.glif</string>\n    <key>blackMediumLeftTriangleCentred</key>\n    <string>blackM_ediumL_eftT_riangleC_entred.glif</string>\n    <key>blackMediumLozenge</key>\n    <string>blackM_ediumL_ozenge.glif</string>\n    <key>blackMediumRightTriangleCentred</key>\n    <string>blackM_ediumR_ightT_riangleC_entred.glif</string>\n    <key>blackMediumUpTriangleCentred</key>\n    <string>blackM_ediumU_pT_riangleC_entred.glif</string>\n    <key>blackParallelogram</key>\n    <string>blackP_arallelogram.glif</string>\n    <key>blackPentagon</key>\n    <string>blackP_entagon.glif</string>\n    <key>blackSmallDiamond</key>\n    <string>blackS_mallD_iamond.glif</string>\n    <key>blackSmallLozenge</key>\n    <string>blackS_mallL_ozenge.glif</string>\n    <key>blackSmallSquare</key>\n    <string>blackS_mallS_quare.glif</string>\n    <key>blackSmilingFace</key>\n    <string>blackS_milingF_ace.glif</string>\n    <key>blackSquare</key>\n    <string>blackS_quare.glif</string>\n    <key>blackVerticalEllipse</key>\n    <string>blackV_erticalE_llipse.glif</string>\n    <key>blackVerticalRect</key>\n    <string>blackV_erticalR_ect.glif</string>\n    <key>blackVerysmallSquare</key>\n    <string>blackV_erysmallS_quare.glif</string>\n    <key>blank</key>\n    <string>blank.glif</string>\n    <key>blank-braille</key>\n    <string>blank-braille.glif</string>\n    <key>blankSymbol</key>\n    <string>blankS_ymbol.glif</string>\n    <key>bottomHalfBlackCircle</key>\n    <string>bottomH_alfB_lackC_ircle.glif</string>\n    <key>bottomHalfBlackDiamond</key>\n    <string>bottomH_alfB_lackD_iamond.glif</string>\n    <key>boxDoubleDownAndHorizontal</key>\n    <string>boxD_oubleD_ownA_ndH_orizontal.glif</string>\n    <key>boxDoubleDownAndHorizontal.stypo</key>\n    <string>boxD_oubleD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleDownAndLeft</key>\n    <string>boxD_oubleD_ownA_ndL_eft.glif</string>\n    <key>boxDoubleDownAndLeft.stypo</key>\n    <string>boxD_oubleD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleDownAndRight</key>\n    <string>boxD_oubleD_ownA_ndR_ight.glif</string>\n    <key>boxDoubleDownAndRight.stypo</key>\n    <string>boxD_oubleD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxDoubleHorizontal</key>\n    <string>boxD_oubleH_orizontal.glif</string>\n    <key>boxDoubleHorizontal.stypo</key>\n    <string>boxD_oubleH_orizontal.stypo.glif</string>\n    <key>boxDoubleUpAndHorizontal</key>\n    <string>boxD_oubleU_pA_ndH_orizontal.glif</string>\n    <key>boxDoubleUpAndHorizontal.stypo</key>\n    <string>boxD_oubleU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleUpAndLeft</key>\n    <string>boxD_oubleU_pA_ndL_eft.glif</string>\n    <key>boxDoubleUpAndLeft.stypo</key>\n    <string>boxD_oubleU_pA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleUpAndRight</key>\n    <string>boxD_oubleU_pA_ndR_ight.glif</string>\n    <key>boxDoubleUpAndRight.stypo</key>\n    <string>boxD_oubleU_pA_ndR_ight.stypo.glif</string>\n    <key>boxDoubleVertical</key>\n    <string>boxD_oubleV_ertical.glif</string>\n    <key>boxDoubleVertical.stypo</key>\n    <string>boxD_oubleV_ertical.stypo.glif</string>\n    <key>boxDoubleVerticalAndHorizontal</key>\n    <string>boxD_oubleV_erticalA_ndH_orizontal.glif</string>\n    <key>boxDoubleVerticalAndHorizontal.stypo</key>\n    <string>boxD_oubleV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxDoubleVerticalAndLeft</key>\n    <string>boxD_oubleV_erticalA_ndL_eft.glif</string>\n    <key>boxDoubleVerticalAndLeft.stypo</key>\n    <string>boxD_oubleV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxDoubleVerticalAndRight</key>\n    <string>boxD_oubleV_erticalA_ndR_ight.glif</string>\n    <key>boxDoubleVerticalAndRight.stypo</key>\n    <string>boxD_oubleV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxDownDoubleAndHorizontalSingle</key>\n    <string>boxD_ownD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxDownDoubleAndHorizontalSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxDownDoubleAndLeftSingle</key>\n    <string>boxD_ownD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxDownDoubleAndLeftSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxDownDoubleAndRightSingle</key>\n    <string>boxD_ownD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxDownDoubleAndRightSingle.stypo</key>\n    <string>boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxDownHeavyAndHorizontalLight</key>\n    <string>boxD_ownH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxDownHeavyAndHorizontalLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndLeftLight</key>\n    <string>boxD_ownH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxDownHeavyAndLeftLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndLeftUpLight</key>\n    <string>boxD_ownH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxDownHeavyAndLeftUpLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndRightLight</key>\n    <string>boxD_ownH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxDownHeavyAndRightLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndRightUpLight</key>\n    <string>boxD_ownH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxDownHeavyAndRightUpLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxDownHeavyAndUpHorizontalLight</key>\n    <string>boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif</string>\n    <key>boxDownHeavyAndUpHorizontalLight.stypo</key>\n    <string>boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif</string>\n    <key>boxDownLightAndHorizontalHeavy</key>\n    <string>boxD_ownL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxDownLightAndHorizontalHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxDownLightAndLeftHeavy</key>\n    <string>boxD_ownL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxDownLightAndLeftHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxDownLightAndLeftUpHeavy</key>\n    <string>boxD_ownL_ightA_ndL_eftU_pH_eavy.glif</string>\n    <key>boxDownLightAndLeftUpHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif</string>\n    <key>boxDownLightAndRightHeavy</key>\n    <string>boxD_ownL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxDownLightAndRightHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxDownLightAndRightUpHeavy</key>\n    <string>boxD_ownL_ightA_ndR_ightU_pH_eavy.glif</string>\n    <key>boxDownLightAndRightUpHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif</string>\n    <key>boxDownLightAndUpHorizontalHeavy</key>\n    <string>boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif</string>\n    <key>boxDownLightAndUpHorizontalHeavy.stypo</key>\n    <string>boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif</string>\n    <key>boxDownSingleAndHorizontalDouble</key>\n    <string>boxD_ownS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxDownSingleAndHorizontalDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxDownSingleAndLeftDouble</key>\n    <string>boxD_ownS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxDownSingleAndLeftDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxDownSingleAndRightDouble</key>\n    <string>boxD_ownS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxDownSingleAndRightDouble.stypo</key>\n    <string>boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>boxHeavyDoubleDashHorizontal</key>\n    <string>boxH_eavyD_oubleD_ashH_orizontal.glif</string>\n    <key>boxHeavyDoubleDashHorizontal.stypo</key>\n    <string>boxH_eavyD_oubleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyDoubleDashVertical</key>\n    <string>boxH_eavyD_oubleD_ashV_ertical.glif</string>\n    <key>boxHeavyDoubleDashVertical.stypo</key>\n    <string>boxH_eavyD_oubleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyDown</key>\n    <string>boxH_eavyD_own.glif</string>\n    <key>boxHeavyDown.stypo</key>\n    <string>boxH_eavyD_own.stypo.glif</string>\n    <key>boxHeavyDownAndHorizontal</key>\n    <string>boxH_eavyD_ownA_ndH_orizontal.glif</string>\n    <key>boxHeavyDownAndHorizontal.stypo</key>\n    <string>boxH_eavyD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyDownAndLeft</key>\n    <string>boxH_eavyD_ownA_ndL_eft.glif</string>\n    <key>boxHeavyDownAndLeft.stypo</key>\n    <string>boxH_eavyD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyDownAndRight</key>\n    <string>boxH_eavyD_ownA_ndR_ight.glif</string>\n    <key>boxHeavyDownAndRight.stypo</key>\n    <string>boxH_eavyD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxHeavyHorizontal</key>\n    <string>boxH_eavyH_orizontal.glif</string>\n    <key>boxHeavyHorizontal.stypo</key>\n    <string>boxH_eavyH_orizontal.stypo.glif</string>\n    <key>boxHeavyLeft</key>\n    <string>boxH_eavyL_eft.glif</string>\n    <key>boxHeavyLeft.stypo</key>\n    <string>boxH_eavyL_eft.stypo.glif</string>\n    <key>boxHeavyLeftAndLightRight</key>\n    <string>boxH_eavyL_eftA_ndL_ightR_ight.glif</string>\n    <key>boxHeavyLeftAndLightRight.stypo</key>\n    <string>boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif</string>\n    <key>boxHeavyQuadrupleDashHorizontal</key>\n    <string>boxH_eavyQ_uadrupleD_ashH_orizontal.glif</string>\n    <key>boxHeavyQuadrupleDashHorizontal.stypo</key>\n    <string>boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyQuadrupleDashVertical</key>\n    <string>boxH_eavyQ_uadrupleD_ashV_ertical.glif</string>\n    <key>boxHeavyQuadrupleDashVertical.stypo</key>\n    <string>boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyRight</key>\n    <string>boxH_eavyR_ight.glif</string>\n    <key>boxHeavyRight.stypo</key>\n    <string>boxH_eavyR_ight.stypo.glif</string>\n    <key>boxHeavyTripleDashHorizontal</key>\n    <string>boxH_eavyT_ripleD_ashH_orizontal.glif</string>\n    <key>boxHeavyTripleDashHorizontal.stypo</key>\n    <string>boxH_eavyT_ripleD_ashH_orizontal.stypo.glif</string>\n    <key>boxHeavyTripleDashVertical</key>\n    <string>boxH_eavyT_ripleD_ashV_ertical.glif</string>\n    <key>boxHeavyTripleDashVertical.stypo</key>\n    <string>boxH_eavyT_ripleD_ashV_ertical.stypo.glif</string>\n    <key>boxHeavyUp</key>\n    <string>boxH_eavyU_p.glif</string>\n    <key>boxHeavyUp.stypo</key>\n    <string>boxH_eavyU_p.stypo.glif</string>\n    <key>boxHeavyUpAndHorizontal</key>\n    <string>boxH_eavyU_pA_ndH_orizontal.glif</string>\n    <key>boxHeavyUpAndHorizontal.stypo</key>\n    <string>boxH_eavyU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyUpAndLeft</key>\n    <string>boxH_eavyU_pA_ndL_eft.glif</string>\n    <key>boxHeavyUpAndLeft.stypo</key>\n    <string>boxH_eavyU_pA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyUpAndLightDown</key>\n    <string>boxH_eavyU_pA_ndL_ightD_own.glif</string>\n    <key>boxHeavyUpAndLightDown.stypo</key>\n    <string>boxH_eavyU_pA_ndL_ightD_own.stypo.glif</string>\n    <key>boxHeavyUpAndRight</key>\n    <string>boxH_eavyU_pA_ndR_ight.glif</string>\n    <key>boxHeavyUpAndRight.stypo</key>\n    <string>boxH_eavyU_pA_ndR_ight.stypo.glif</string>\n    <key>boxHeavyVertical</key>\n    <string>boxH_eavyV_ertical.glif</string>\n    <key>boxHeavyVertical.stypo</key>\n    <string>boxH_eavyV_ertical.stypo.glif</string>\n    <key>boxHeavyVerticalAndHorizontal</key>\n    <string>boxH_eavyV_erticalA_ndH_orizontal.glif</string>\n    <key>boxHeavyVerticalAndHorizontal.stypo</key>\n    <string>boxH_eavyV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxHeavyVerticalAndLeft</key>\n    <string>boxH_eavyV_erticalA_ndL_eft.glif</string>\n    <key>boxHeavyVerticalAndLeft.stypo</key>\n    <string>boxH_eavyV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxHeavyVerticalAndRight</key>\n    <string>boxH_eavyV_erticalA_ndR_ight.glif</string>\n    <key>boxHeavyVerticalAndRight.stypo</key>\n    <string>boxH_eavyV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxLeftDownHeavyAndRightUpLight</key>\n    <string>boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxLeftDownHeavyAndRightUpLight.stypo</key>\n    <string>boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightDownLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxLeftHeavyAndRightDownLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightUpLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightU_pL_ight.glif</string>\n    <key>boxLeftHeavyAndRightUpLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif</string>\n    <key>boxLeftHeavyAndRightVerticalLight</key>\n    <string>boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif</string>\n    <key>boxLeftHeavyAndRightVerticalLight.stypo</key>\n    <string>boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif</string>\n    <key>boxLeftLightAndRightDownHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif</string>\n    <key>boxLeftLightAndRightDownHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif</string>\n    <key>boxLeftLightAndRightUpHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightU_pH_eavy.glif</string>\n    <key>boxLeftLightAndRightUpHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif</string>\n    <key>boxLeftLightAndRightVerticalHeavy</key>\n    <string>boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif</string>\n    <key>boxLeftLightAndRightVerticalHeavy.stypo</key>\n    <string>boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif</string>\n    <key>boxLeftUpHeavyAndRightDownLight</key>\n    <string>boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxLeftUpHeavyAndRightDownLight.stypo</key>\n    <string>boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxLightArcDownAndLeft</key>\n    <string>boxL_ightA_rcD_ownA_ndL_eft.glif</string>\n    <key>boxLightArcDownAndLeft.stypo</key>\n    <string>boxL_ightA_rcD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxLightArcDownAndRight</key>\n    <string>boxL_ightA_rcD_ownA_ndR_ight.glif</string>\n    <key>boxLightArcDownAndRight.stypo</key>\n    <string>boxL_ightA_rcD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxLightArcUpAndLeft</key>\n    <string>boxL_ightA_rcU_pA_ndL_eft.glif</string>\n    <key>boxLightArcUpAndLeft.stypo</key>\n    <string>boxL_ightA_rcU_pA_ndL_eft.stypo.glif</string>\n    <key>boxLightArcUpAndRight</key>\n    <string>boxL_ightA_rcU_pA_ndR_ight.glif</string>\n    <key>boxLightArcUpAndRight.stypo</key>\n    <string>boxL_ightA_rcU_pA_ndR_ight.stypo.glif</string>\n    <key>boxLightDiagonalCross</key>\n    <string>boxL_ightD_iagonalC_ross.glif</string>\n    <key>boxLightDiagonalCross.stypo</key>\n    <string>boxL_ightD_iagonalC_ross.stypo.glif</string>\n    <key>boxLightDiagonalUpperLeftToLowerRight</key>\n    <string>boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif</string>\n    <key>boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n    <string>boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif</string>\n    <key>boxLightDiagonalUpperRightToLowerLeft</key>\n    <string>boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif</string>\n    <key>boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n    <string>boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif</string>\n    <key>boxLightDoubleDashHorizontal</key>\n    <string>boxL_ightD_oubleD_ashH_orizontal.glif</string>\n    <key>boxLightDoubleDashHorizontal.stypo</key>\n    <string>boxL_ightD_oubleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightDoubleDashVertical</key>\n    <string>boxL_ightD_oubleD_ashV_ertical.glif</string>\n    <key>boxLightDoubleDashVertical.stypo</key>\n    <string>boxL_ightD_oubleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightDown</key>\n    <string>boxL_ightD_own.glif</string>\n    <key>boxLightDown.stypo</key>\n    <string>boxL_ightD_own.stypo.glif</string>\n    <key>boxLightDownAndHorizontal</key>\n    <string>boxL_ightD_ownA_ndH_orizontal.glif</string>\n    <key>boxLightDownAndHorizontal.stypo</key>\n    <string>boxL_ightD_ownA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightDownAndLeft</key>\n    <string>boxL_ightD_ownA_ndL_eft.glif</string>\n    <key>boxLightDownAndLeft.stypo</key>\n    <string>boxL_ightD_ownA_ndL_eft.stypo.glif</string>\n    <key>boxLightDownAndRight</key>\n    <string>boxL_ightD_ownA_ndR_ight.glif</string>\n    <key>boxLightDownAndRight.stypo</key>\n    <string>boxL_ightD_ownA_ndR_ight.stypo.glif</string>\n    <key>boxLightHorizontal</key>\n    <string>boxL_ightH_orizontal.glif</string>\n    <key>boxLightHorizontal.stypo</key>\n    <string>boxL_ightH_orizontal.stypo.glif</string>\n    <key>boxLightLeft</key>\n    <string>boxL_ightL_eft.glif</string>\n    <key>boxLightLeft.stypo</key>\n    <string>boxL_ightL_eft.stypo.glif</string>\n    <key>boxLightLeftAndHeavyRight</key>\n    <string>boxL_ightL_eftA_ndH_eavyR_ight.glif</string>\n    <key>boxLightLeftAndHeavyRight.stypo</key>\n    <string>boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif</string>\n    <key>boxLightQuadrupleDashHorizontal</key>\n    <string>boxL_ightQ_uadrupleD_ashH_orizontal.glif</string>\n    <key>boxLightQuadrupleDashHorizontal.stypo</key>\n    <string>boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightQuadrupleDashVertical</key>\n    <string>boxL_ightQ_uadrupleD_ashV_ertical.glif</string>\n    <key>boxLightQuadrupleDashVertical.stypo</key>\n    <string>boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightRight</key>\n    <string>boxL_ightR_ight.glif</string>\n    <key>boxLightRight.stypo</key>\n    <string>boxL_ightR_ight.stypo.glif</string>\n    <key>boxLightTripleDashHorizontal</key>\n    <string>boxL_ightT_ripleD_ashH_orizontal.glif</string>\n    <key>boxLightTripleDashHorizontal.stypo</key>\n    <string>boxL_ightT_ripleD_ashH_orizontal.stypo.glif</string>\n    <key>boxLightTripleDashVertical</key>\n    <string>boxL_ightT_ripleD_ashV_ertical.glif</string>\n    <key>boxLightTripleDashVertical.stypo</key>\n    <string>boxL_ightT_ripleD_ashV_ertical.stypo.glif</string>\n    <key>boxLightUp</key>\n    <string>boxL_ightU_p.glif</string>\n    <key>boxLightUp.stypo</key>\n    <string>boxL_ightU_p.stypo.glif</string>\n    <key>boxLightUpAndHeavyDown</key>\n    <string>boxL_ightU_pA_ndH_eavyD_own.glif</string>\n    <key>boxLightUpAndHeavyDown.stypo</key>\n    <string>boxL_ightU_pA_ndH_eavyD_own.stypo.glif</string>\n    <key>boxLightUpAndHorizontal</key>\n    <string>boxL_ightU_pA_ndH_orizontal.glif</string>\n    <key>boxLightUpAndHorizontal.stypo</key>\n    <string>boxL_ightU_pA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightUpAndLeft</key>\n    <string>boxL_ightU_pA_ndL_eft.glif</string>\n    <key>boxLightUpAndLeft.stypo</key>\n    <string>boxL_ightU_pA_ndL_eft.stypo.glif</string>\n    <key>boxLightUpAndRight</key>\n    <string>boxL_ightU_pA_ndR_ight.glif</string>\n    <key>boxLightUpAndRight.stypo</key>\n    <string>boxL_ightU_pA_ndR_ight.stypo.glif</string>\n    <key>boxLightVertical</key>\n    <string>boxL_ightV_ertical.glif</string>\n    <key>boxLightVertical.stypo</key>\n    <string>boxL_ightV_ertical.stypo.glif</string>\n    <key>boxLightVerticalAndHorizontal</key>\n    <string>boxL_ightV_erticalA_ndH_orizontal.glif</string>\n    <key>boxLightVerticalAndHorizontal.stypo</key>\n    <string>boxL_ightV_erticalA_ndH_orizontal.stypo.glif</string>\n    <key>boxLightVerticalAndLeft</key>\n    <string>boxL_ightV_erticalA_ndL_eft.glif</string>\n    <key>boxLightVerticalAndLeft.stypo</key>\n    <string>boxL_ightV_erticalA_ndL_eft.stypo.glif</string>\n    <key>boxLightVerticalAndRight</key>\n    <string>boxL_ightV_erticalA_ndR_ight.glif</string>\n    <key>boxLightVerticalAndRight.stypo</key>\n    <string>boxL_ightV_erticalA_ndR_ight.stypo.glif</string>\n    <key>boxRightDownHeavyAndLeftUpLight</key>\n    <string>boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxRightDownHeavyAndLeftUpLight.stypo</key>\n    <string>boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftDownLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxRightHeavyAndLeftDownLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftUpLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftU_pL_ight.glif</string>\n    <key>boxRightHeavyAndLeftUpLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif</string>\n    <key>boxRightHeavyAndLeftVerticalLight</key>\n    <string>boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif</string>\n    <key>boxRightHeavyAndLeftVerticalLight.stypo</key>\n    <string>boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif</string>\n    <key>boxRightLightAndLeftDownHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif</string>\n    <key>boxRightLightAndLeftDownHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif</string>\n    <key>boxRightLightAndLeftUpHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftU_pH_eavy.glif</string>\n    <key>boxRightLightAndLeftUpHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif</string>\n    <key>boxRightLightAndLeftVerticalHeavy</key>\n    <string>boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif</string>\n    <key>boxRightLightAndLeftVerticalHeavy.stypo</key>\n    <string>boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif</string>\n    <key>boxRightUpHeavyAndLeftDownLight</key>\n    <string>boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxRightUpHeavyAndLeftDownLight.stypo</key>\n    <string>boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxUpDoubleAndHorizontalSingle</key>\n    <string>boxU_pD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxUpDoubleAndHorizontalSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxUpDoubleAndLeftSingle</key>\n    <string>boxU_pD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxUpDoubleAndLeftSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxUpDoubleAndRightSingle</key>\n    <string>boxU_pD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxUpDoubleAndRightSingle.stypo</key>\n    <string>boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxUpHeavyAndDownHorizontalLight</key>\n    <string>boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif</string>\n    <key>boxUpHeavyAndDownHorizontalLight.stypo</key>\n    <string>boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndHorizontalLight</key>\n    <string>boxU_pH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxUpHeavyAndHorizontalLight.stypo</key>\n    <string>boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndLeftDownLight</key>\n    <string>boxU_pH_eavyA_ndL_eftD_ownL_ight.glif</string>\n    <key>boxUpHeavyAndLeftDownLight.stypo</key>\n    <string>boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndLeftLight</key>\n    <string>boxU_pH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxUpHeavyAndLeftLight.stypo</key>\n    <string>boxU_pH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndRightDownLight</key>\n    <string>boxU_pH_eavyA_ndR_ightD_ownL_ight.glif</string>\n    <key>boxUpHeavyAndRightDownLight.stypo</key>\n    <string>boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif</string>\n    <key>boxUpHeavyAndRightLight</key>\n    <string>boxU_pH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxUpHeavyAndRightLight.stypo</key>\n    <string>boxU_pH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxUpLightAndDownHorizontalHeavy</key>\n    <string>boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif</string>\n    <key>boxUpLightAndDownHorizontalHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif</string>\n    <key>boxUpLightAndHorizontalHeavy</key>\n    <string>boxU_pL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxUpLightAndHorizontalHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxUpLightAndLeftDownHeavy</key>\n    <string>boxU_pL_ightA_ndL_eftD_ownH_eavy.glif</string>\n    <key>boxUpLightAndLeftDownHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif</string>\n    <key>boxUpLightAndLeftHeavy</key>\n    <string>boxU_pL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxUpLightAndLeftHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxUpLightAndRightDownHeavy</key>\n    <string>boxU_pL_ightA_ndR_ightD_ownH_eavy.glif</string>\n    <key>boxUpLightAndRightDownHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif</string>\n    <key>boxUpLightAndRightHeavy</key>\n    <string>boxU_pL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxUpLightAndRightHeavy.stypo</key>\n    <string>boxU_pL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxUpSingleAndHorizontalDouble</key>\n    <string>boxU_pS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxUpSingleAndHorizontalDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxUpSingleAndLeftDouble</key>\n    <string>boxU_pS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxUpSingleAndLeftDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxUpSingleAndRightDouble</key>\n    <string>boxU_pS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxUpSingleAndRightDouble.stypo</key>\n    <string>boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>boxVerticalDoubleAndHorizontalSingle</key>\n    <string>boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif</string>\n    <key>boxVerticalDoubleAndHorizontalSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif</string>\n    <key>boxVerticalDoubleAndLeftSingle</key>\n    <string>boxV_erticalD_oubleA_ndL_eftS_ingle.glif</string>\n    <key>boxVerticalDoubleAndLeftSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif</string>\n    <key>boxVerticalDoubleAndRightSingle</key>\n    <string>boxV_erticalD_oubleA_ndR_ightS_ingle.glif</string>\n    <key>boxVerticalDoubleAndRightSingle.stypo</key>\n    <string>boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif</string>\n    <key>boxVerticalHeavyAndHorizontalLight</key>\n    <string>boxV_erticalH_eavyA_ndH_orizontalL_ight.glif</string>\n    <key>boxVerticalHeavyAndHorizontalLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif</string>\n    <key>boxVerticalHeavyAndLeftLight</key>\n    <string>boxV_erticalH_eavyA_ndL_eftL_ight.glif</string>\n    <key>boxVerticalHeavyAndLeftLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif</string>\n    <key>boxVerticalHeavyAndRightLight</key>\n    <string>boxV_erticalH_eavyA_ndR_ightL_ight.glif</string>\n    <key>boxVerticalHeavyAndRightLight.stypo</key>\n    <string>boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif</string>\n    <key>boxVerticalLightAndHorizontalHeavy</key>\n    <string>boxV_erticalL_ightA_ndH_orizontalH_eavy.glif</string>\n    <key>boxVerticalLightAndHorizontalHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif</string>\n    <key>boxVerticalLightAndLeftHeavy</key>\n    <string>boxV_erticalL_ightA_ndL_eftH_eavy.glif</string>\n    <key>boxVerticalLightAndLeftHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif</string>\n    <key>boxVerticalLightAndRightHeavy</key>\n    <string>boxV_erticalL_ightA_ndR_ightH_eavy.glif</string>\n    <key>boxVerticalLightAndRightHeavy.stypo</key>\n    <string>boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif</string>\n    <key>boxVerticalSingleAndHorizontalDouble</key>\n    <string>boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif</string>\n    <key>boxVerticalSingleAndHorizontalDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif</string>\n    <key>boxVerticalSingleAndLeftDouble</key>\n    <string>boxV_erticalS_ingleA_ndL_eftD_ouble.glif</string>\n    <key>boxVerticalSingleAndLeftDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif</string>\n    <key>boxVerticalSingleAndRightDouble</key>\n    <string>boxV_erticalS_ingleA_ndR_ightD_ouble.glif</string>\n    <key>boxVerticalSingleAndRightDouble.stypo</key>\n    <string>boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif</string>\n    <key>braceleft</key>\n    <string>braceleft.glif</string>\n    <key>braceleft_bar.liga</key>\n    <string>braceleft_bar.liga.glif</string>\n    <key>braceright</key>\n    <string>braceright.glif</string>\n    <key>braceright_numbersign.liga</key>\n    <string>braceright_numbersign.liga.glif</string>\n    <key>bracketleft</key>\n    <string>bracketleft.glif</string>\n    <key>bracketleft_bar.liga</key>\n    <string>bracketleft_bar.liga.glif</string>\n    <key>bracketright</key>\n    <string>bracketright.glif</string>\n    <key>bracketright_numbersign.liga</key>\n    <string>bracketright_numbersign.liga.glif</string>\n    <key>breve</key>\n    <string>breve.glif</string>\n    <key>brevecomb</key>\n    <string>brevecomb.glif</string>\n    <key>brevecomb-cy</key>\n    <string>brevecomb-cy.glif</string>\n    <key>brevecomb-cy.case</key>\n    <string>brevecomb-cy.case.glif</string>\n    <key>brevecomb.case</key>\n    <string>brevecomb.case.glif</string>\n    <key>brokenbar</key>\n    <string>brokenbar.glif</string>\n    <key>bullet</key>\n    <string>bullet.glif</string>\n    <key>bulletoperator</key>\n    <string>bulletoperator.glif</string>\n    <key>bullseye</key>\n    <string>bullseye.glif</string>\n    <key>c</key>\n    <string>c.glif</string>\n    <key>cacute</key>\n    <string>cacute.glif</string>\n    <key>cacute.loclPLK</key>\n    <string>cacute.loclP_L_K_.glif</string>\n    <key>cancelControl</key>\n    <string>cancelC_ontrol.glif</string>\n    <key>cancelControl.ss20</key>\n    <string>cancelC_ontrol.ss20.glif</string>\n    <key>careof</key>\n    <string>careof.glif</string>\n    <key>caron</key>\n    <string>caron.glif</string>\n    <key>caroncomb</key>\n    <string>caroncomb.glif</string>\n    <key>caroncomb.case</key>\n    <string>caroncomb.case.glif</string>\n    <key>carriageReturnControl</key>\n    <string>carriageR_eturnC_ontrol.glif</string>\n    <key>carriageReturnControl.ss20</key>\n    <string>carriageR_eturnC_ontrol.ss20.glif</string>\n    <key>ccaron</key>\n    <string>ccaron.glif</string>\n    <key>ccedilla</key>\n    <string>ccedilla.glif</string>\n    <key>ccircumflex</key>\n    <string>ccircumflex.glif</string>\n    <key>cdotaccent</key>\n    <string>cdotaccent.glif</string>\n    <key>cedi</key>\n    <string>cedi.glif</string>\n    <key>cedilla</key>\n    <string>cedilla.glif</string>\n    <key>cedillacomb</key>\n    <string>cedillacomb.glif</string>\n    <key>cent</key>\n    <string>cent.glif</string>\n    <key>che-cy</key>\n    <string>che-cy.glif</string>\n    <key>che-cy.salt</key>\n    <string>che-cy.salt.glif</string>\n    <key>checkmark</key>\n    <string>checkmark.glif</string>\n    <key>chedescender-cy</key>\n    <string>chedescender-cy.glif</string>\n    <key>chedescender-cy.salt</key>\n    <string>chedescender-cy.salt.glif</string>\n    <key>chi</key>\n    <string>chi.glif</string>\n    <key>circumflex</key>\n    <string>circumflex.glif</string>\n    <key>circumflexcomb</key>\n    <string>circumflexcomb.glif</string>\n    <key>circumflexcomb.case</key>\n    <string>circumflexcomb.case.glif</string>\n    <key>clubBlackSuit</key>\n    <string>clubB_lackS_uit.glif</string>\n    <key>colon</key>\n    <string>colon.glif</string>\n    <key>colon.center</key>\n    <string>colon.center.glif</string>\n    <key>colon_colon.liga</key>\n    <string>colon_colon.liga.glif</string>\n    <key>colon_colon_colon.liga</key>\n    <string>colon_colon_colon.liga.glif</string>\n    <key>colon_colon_equal.liga</key>\n    <string>colon_colon_equal.liga.glif</string>\n    <key>colon_equal.liga</key>\n    <string>colon_equal.liga.glif</string>\n    <key>colon_equal_middle.seq</key>\n    <string>colon_equal_middle.seq.glif</string>\n    <key>colon_slash_slash.liga</key>\n    <string>colon_slash_slash.liga.glif</string>\n    <key>colonsign</key>\n    <string>colonsign.glif</string>\n    <key>colontriangularmod</key>\n    <string>colontriangularmod.glif</string>\n    <key>comma</key>\n    <string>comma.glif</string>\n    <key>commaabovecomb</key>\n    <string>commaabovecomb.glif</string>\n    <key>commaaboverightcomb</key>\n    <string>commaaboverightcomb.glif</string>\n    <key>commaaccentcomb</key>\n    <string>commaaccentcomb.glif</string>\n    <key>commaturnedabovecomb</key>\n    <string>commaturnedabovecomb.glif</string>\n    <key>commaturnedmod</key>\n    <string>commaturnedmod.glif</string>\n    <key>copyright</key>\n    <string>copyright.glif</string>\n    <key>crosshatchFillSquare</key>\n    <string>crosshatchF_illS_quare.glif</string>\n    <key>currency</key>\n    <string>currency.glif</string>\n    <key>d</key>\n    <string>d.glif</string>\n    <key>dagger</key>\n    <string>dagger.glif</string>\n    <key>daggerdbl</key>\n    <string>daggerdbl.glif</string>\n    <key>dashdownArrow</key>\n    <string>dashdownA_rrow.glif</string>\n    <key>dataLinkEscapeControl</key>\n    <string>dataL_inkE_scapeC_ontrol.glif</string>\n    <key>dataLinkEscapeControl.ss20</key>\n    <string>dataL_inkE_scapeC_ontrol.ss20.glif</string>\n    <key>dcaron</key>\n    <string>dcaron.glif</string>\n    <key>dcaron.alt</key>\n    <string>dcaron.alt.glif</string>\n    <key>dcroat</key>\n    <string>dcroat.glif</string>\n    <key>de-cy</key>\n    <string>de-cy.glif</string>\n    <key>de-cy.loclBGR</key>\n    <string>de-cy.loclB_G_R_.glif</string>\n    <key>degree</key>\n    <string>degree.glif</string>\n    <key>deleteControl</key>\n    <string>deleteC_ontrol.glif</string>\n    <key>deleteFormTwoControl</key>\n    <string>deleteF_ormT_woC_ontrol.glif</string>\n    <key>delta</key>\n    <string>delta.glif</string>\n    <key>deviceControlFourControl</key>\n    <string>deviceC_ontrolF_ourC_ontrol.glif</string>\n    <key>deviceControlOneControl</key>\n    <string>deviceC_ontrolO_neC_ontrol.glif</string>\n    <key>deviceControlThreeControl</key>\n    <string>deviceC_ontrolT_hreeC_ontrol.glif</string>\n    <key>deviceControlTwoControl</key>\n    <string>deviceC_ontrolT_woC_ontrol.glif</string>\n    <key>diagonalcrosshatchFillSquare</key>\n    <string>diagonalcrosshatchF_illS_quare.glif</string>\n    <key>diamondBlackSuit</key>\n    <string>diamondB_lackS_uit.glif</string>\n    <key>dieresis</key>\n    <string>dieresis.glif</string>\n    <key>dieresiscomb</key>\n    <string>dieresiscomb.glif</string>\n    <key>dieresiscomb.case</key>\n    <string>dieresiscomb.case.glif</string>\n    <key>dieresistonos</key>\n    <string>dieresistonos.glif</string>\n    <key>divide</key>\n    <string>divide.glif</string>\n    <key>divisionslash</key>\n    <string>divisionslash.glif</string>\n    <key>dje-cy</key>\n    <string>dje-cy.glif</string>\n    <key>dollar</key>\n    <string>dollar.glif</string>\n    <key>dollar.BRACKET.600</key>\n    <string>dollar.B_R_A_C_K_E_T_.600.glif</string>\n    <key>dollar_greater.liga</key>\n    <string>dollar_greater.liga.glif</string>\n    <key>dollar_greater.liga.BRACKET.600</key>\n    <string>dollar_greater.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>dong</key>\n    <string>dong.glif</string>\n    <key>dotaccent</key>\n    <string>dotaccent.glif</string>\n    <key>dotaccentcomb</key>\n    <string>dotaccentcomb.glif</string>\n    <key>dotaccentcomb.case</key>\n    <string>dotaccentcomb.case.glif</string>\n    <key>dotbelowcomb</key>\n    <string>dotbelowcomb.glif</string>\n    <key>dots1-braille</key>\n    <string>dots1-braille.glif</string>\n    <key>dots12-braille</key>\n    <string>dots12-braille.glif</string>\n    <key>dots123-braille</key>\n    <string>dots123-braille.glif</string>\n    <key>dots1234-braille</key>\n    <string>dots1234-braille.glif</string>\n    <key>dots12345-braille</key>\n    <string>dots12345-braille.glif</string>\n    <key>dots123456-braille</key>\n    <string>dots123456-braille.glif</string>\n    <key>dots1234567-braille</key>\n    <string>dots1234567-braille.glif</string>\n    <key>dots12345678-braille</key>\n    <string>dots12345678-braille.glif</string>\n    <key>dots1234568-braille</key>\n    <string>dots1234568-braille.glif</string>\n    <key>dots123457-braille</key>\n    <string>dots123457-braille.glif</string>\n    <key>dots1234578-braille</key>\n    <string>dots1234578-braille.glif</string>\n    <key>dots123458-braille</key>\n    <string>dots123458-braille.glif</string>\n    <key>dots12346-braille</key>\n    <string>dots12346-braille.glif</string>\n    <key>dots123467-braille</key>\n    <string>dots123467-braille.glif</string>\n    <key>dots1234678-braille</key>\n    <string>dots1234678-braille.glif</string>\n    <key>dots123468-braille</key>\n    <string>dots123468-braille.glif</string>\n    <key>dots12347-braille</key>\n    <string>dots12347-braille.glif</string>\n    <key>dots123478-braille</key>\n    <string>dots123478-braille.glif</string>\n    <key>dots12348-braille</key>\n    <string>dots12348-braille.glif</string>\n    <key>dots1235-braille</key>\n    <string>dots1235-braille.glif</string>\n    <key>dots12356-braille</key>\n    <string>dots12356-braille.glif</string>\n    <key>dots123567-braille</key>\n    <string>dots123567-braille.glif</string>\n    <key>dots1235678-braille</key>\n    <string>dots1235678-braille.glif</string>\n    <key>dots123568-braille</key>\n    <string>dots123568-braille.glif</string>\n    <key>dots12357-braille</key>\n    <string>dots12357-braille.glif</string>\n    <key>dots123578-braille</key>\n    <string>dots123578-braille.glif</string>\n    <key>dots12358-braille</key>\n    <string>dots12358-braille.glif</string>\n    <key>dots1236-braille</key>\n    <string>dots1236-braille.glif</string>\n    <key>dots12367-braille</key>\n    <string>dots12367-braille.glif</string>\n    <key>dots123678-braille</key>\n    <string>dots123678-braille.glif</string>\n    <key>dots12368-braille</key>\n    <string>dots12368-braille.glif</string>\n    <key>dots1237-braille</key>\n    <string>dots1237-braille.glif</string>\n    <key>dots12378-braille</key>\n    <string>dots12378-braille.glif</string>\n    <key>dots1238-braille</key>\n    <string>dots1238-braille.glif</string>\n    <key>dots124-braille</key>\n    <string>dots124-braille.glif</string>\n    <key>dots1245-braille</key>\n    <string>dots1245-braille.glif</string>\n    <key>dots12456-braille</key>\n    <string>dots12456-braille.glif</string>\n    <key>dots124567-braille</key>\n    <string>dots124567-braille.glif</string>\n    <key>dots1245678-braille</key>\n    <string>dots1245678-braille.glif</string>\n    <key>dots124568-braille</key>\n    <string>dots124568-braille.glif</string>\n    <key>dots12457-braille</key>\n    <string>dots12457-braille.glif</string>\n    <key>dots124578-braille</key>\n    <string>dots124578-braille.glif</string>\n    <key>dots12458-braille</key>\n    <string>dots12458-braille.glif</string>\n    <key>dots1246-braille</key>\n    <string>dots1246-braille.glif</string>\n    <key>dots12467-braille</key>\n    <string>dots12467-braille.glif</string>\n    <key>dots124678-braille</key>\n    <string>dots124678-braille.glif</string>\n    <key>dots12468-braille</key>\n    <string>dots12468-braille.glif</string>\n    <key>dots1247-braille</key>\n    <string>dots1247-braille.glif</string>\n    <key>dots12478-braille</key>\n    <string>dots12478-braille.glif</string>\n    <key>dots1248-braille</key>\n    <string>dots1248-braille.glif</string>\n    <key>dots125-braille</key>\n    <string>dots125-braille.glif</string>\n    <key>dots1256-braille</key>\n    <string>dots1256-braille.glif</string>\n    <key>dots12567-braille</key>\n    <string>dots12567-braille.glif</string>\n    <key>dots125678-braille</key>\n    <string>dots125678-braille.glif</string>\n    <key>dots12568-braille</key>\n    <string>dots12568-braille.glif</string>\n    <key>dots1257-braille</key>\n    <string>dots1257-braille.glif</string>\n    <key>dots12578-braille</key>\n    <string>dots12578-braille.glif</string>\n    <key>dots1258-braille</key>\n    <string>dots1258-braille.glif</string>\n    <key>dots126-braille</key>\n    <string>dots126-braille.glif</string>\n    <key>dots1267-braille</key>\n    <string>dots1267-braille.glif</string>\n    <key>dots12678-braille</key>\n    <string>dots12678-braille.glif</string>\n    <key>dots1268-braille</key>\n    <string>dots1268-braille.glif</string>\n    <key>dots127-braille</key>\n    <string>dots127-braille.glif</string>\n    <key>dots1278-braille</key>\n    <string>dots1278-braille.glif</string>\n    <key>dots128-braille</key>\n    <string>dots128-braille.glif</string>\n    <key>dots13-braille</key>\n    <string>dots13-braille.glif</string>\n    <key>dots134-braille</key>\n    <string>dots134-braille.glif</string>\n    <key>dots1345-braille</key>\n    <string>dots1345-braille.glif</string>\n    <key>dots13456-braille</key>\n    <string>dots13456-braille.glif</string>\n    <key>dots134567-braille</key>\n    <string>dots134567-braille.glif</string>\n    <key>dots1345678-braille</key>\n    <string>dots1345678-braille.glif</string>\n    <key>dots134568-braille</key>\n    <string>dots134568-braille.glif</string>\n    <key>dots13457-braille</key>\n    <string>dots13457-braille.glif</string>\n    <key>dots134578-braille</key>\n    <string>dots134578-braille.glif</string>\n    <key>dots13458-braille</key>\n    <string>dots13458-braille.glif</string>\n    <key>dots1346-braille</key>\n    <string>dots1346-braille.glif</string>\n    <key>dots13467-braille</key>\n    <string>dots13467-braille.glif</string>\n    <key>dots134678-braille</key>\n    <string>dots134678-braille.glif</string>\n    <key>dots13468-braille</key>\n    <string>dots13468-braille.glif</string>\n    <key>dots1347-braille</key>\n    <string>dots1347-braille.glif</string>\n    <key>dots13478-braille</key>\n    <string>dots13478-braille.glif</string>\n    <key>dots1348-braille</key>\n    <string>dots1348-braille.glif</string>\n    <key>dots135-braille</key>\n    <string>dots135-braille.glif</string>\n    <key>dots1356-braille</key>\n    <string>dots1356-braille.glif</string>\n    <key>dots13567-braille</key>\n    <string>dots13567-braille.glif</string>\n    <key>dots135678-braille</key>\n    <string>dots135678-braille.glif</string>\n    <key>dots13568-braille</key>\n    <string>dots13568-braille.glif</string>\n    <key>dots1357-braille</key>\n    <string>dots1357-braille.glif</string>\n    <key>dots13578-braille</key>\n    <string>dots13578-braille.glif</string>\n    <key>dots1358-braille</key>\n    <string>dots1358-braille.glif</string>\n    <key>dots136-braille</key>\n    <string>dots136-braille.glif</string>\n    <key>dots1367-braille</key>\n    <string>dots1367-braille.glif</string>\n    <key>dots13678-braille</key>\n    <string>dots13678-braille.glif</string>\n    <key>dots1368-braille</key>\n    <string>dots1368-braille.glif</string>\n    <key>dots137-braille</key>\n    <string>dots137-braille.glif</string>\n    <key>dots1378-braille</key>\n    <string>dots1378-braille.glif</string>\n    <key>dots138-braille</key>\n    <string>dots138-braille.glif</string>\n    <key>dots14-braille</key>\n    <string>dots14-braille.glif</string>\n    <key>dots145-braille</key>\n    <string>dots145-braille.glif</string>\n    <key>dots1456-braille</key>\n    <string>dots1456-braille.glif</string>\n    <key>dots14567-braille</key>\n    <string>dots14567-braille.glif</string>\n    <key>dots145678-braille</key>\n    <string>dots145678-braille.glif</string>\n    <key>dots14568-braille</key>\n    <string>dots14568-braille.glif</string>\n    <key>dots1457-braille</key>\n    <string>dots1457-braille.glif</string>\n    <key>dots14578-braille</key>\n    <string>dots14578-braille.glif</string>\n    <key>dots1458-braille</key>\n    <string>dots1458-braille.glif</string>\n    <key>dots146-braille</key>\n    <string>dots146-braille.glif</string>\n    <key>dots1467-braille</key>\n    <string>dots1467-braille.glif</string>\n    <key>dots14678-braille</key>\n    <string>dots14678-braille.glif</string>\n    <key>dots1468-braille</key>\n    <string>dots1468-braille.glif</string>\n    <key>dots147-braille</key>\n    <string>dots147-braille.glif</string>\n    <key>dots1478-braille</key>\n    <string>dots1478-braille.glif</string>\n    <key>dots148-braille</key>\n    <string>dots148-braille.glif</string>\n    <key>dots15-braille</key>\n    <string>dots15-braille.glif</string>\n    <key>dots156-braille</key>\n    <string>dots156-braille.glif</string>\n    <key>dots1567-braille</key>\n    <string>dots1567-braille.glif</string>\n    <key>dots15678-braille</key>\n    <string>dots15678-braille.glif</string>\n    <key>dots1568-braille</key>\n    <string>dots1568-braille.glif</string>\n    <key>dots157-braille</key>\n    <string>dots157-braille.glif</string>\n    <key>dots1578-braille</key>\n    <string>dots1578-braille.glif</string>\n    <key>dots158-braille</key>\n    <string>dots158-braille.glif</string>\n    <key>dots16-braille</key>\n    <string>dots16-braille.glif</string>\n    <key>dots167-braille</key>\n    <string>dots167-braille.glif</string>\n    <key>dots1678-braille</key>\n    <string>dots1678-braille.glif</string>\n    <key>dots168-braille</key>\n    <string>dots168-braille.glif</string>\n    <key>dots17-braille</key>\n    <string>dots17-braille.glif</string>\n    <key>dots178-braille</key>\n    <string>dots178-braille.glif</string>\n    <key>dots18-braille</key>\n    <string>dots18-braille.glif</string>\n    <key>dots2-braille</key>\n    <string>dots2-braille.glif</string>\n    <key>dots23-braille</key>\n    <string>dots23-braille.glif</string>\n    <key>dots234-braille</key>\n    <string>dots234-braille.glif</string>\n    <key>dots2345-braille</key>\n    <string>dots2345-braille.glif</string>\n    <key>dots23456-braille</key>\n    <string>dots23456-braille.glif</string>\n    <key>dots234567-braille</key>\n    <string>dots234567-braille.glif</string>\n    <key>dots2345678-braille</key>\n    <string>dots2345678-braille.glif</string>\n    <key>dots234568-braille</key>\n    <string>dots234568-braille.glif</string>\n    <key>dots23457-braille</key>\n    <string>dots23457-braille.glif</string>\n    <key>dots234578-braille</key>\n    <string>dots234578-braille.glif</string>\n    <key>dots23458-braille</key>\n    <string>dots23458-braille.glif</string>\n    <key>dots2346-braille</key>\n    <string>dots2346-braille.glif</string>\n    <key>dots23467-braille</key>\n    <string>dots23467-braille.glif</string>\n    <key>dots234678-braille</key>\n    <string>dots234678-braille.glif</string>\n    <key>dots23468-braille</key>\n    <string>dots23468-braille.glif</string>\n    <key>dots2347-braille</key>\n    <string>dots2347-braille.glif</string>\n    <key>dots23478-braille</key>\n    <string>dots23478-braille.glif</string>\n    <key>dots2348-braille</key>\n    <string>dots2348-braille.glif</string>\n    <key>dots235-braille</key>\n    <string>dots235-braille.glif</string>\n    <key>dots2356-braille</key>\n    <string>dots2356-braille.glif</string>\n    <key>dots23567-braille</key>\n    <string>dots23567-braille.glif</string>\n    <key>dots235678-braille</key>\n    <string>dots235678-braille.glif</string>\n    <key>dots23568-braille</key>\n    <string>dots23568-braille.glif</string>\n    <key>dots2357-braille</key>\n    <string>dots2357-braille.glif</string>\n    <key>dots23578-braille</key>\n    <string>dots23578-braille.glif</string>\n    <key>dots2358-braille</key>\n    <string>dots2358-braille.glif</string>\n    <key>dots236-braille</key>\n    <string>dots236-braille.glif</string>\n    <key>dots2367-braille</key>\n    <string>dots2367-braille.glif</string>\n    <key>dots23678-braille</key>\n    <string>dots23678-braille.glif</string>\n    <key>dots2368-braille</key>\n    <string>dots2368-braille.glif</string>\n    <key>dots237-braille</key>\n    <string>dots237-braille.glif</string>\n    <key>dots2378-braille</key>\n    <string>dots2378-braille.glif</string>\n    <key>dots238-braille</key>\n    <string>dots238-braille.glif</string>\n    <key>dots24-braille</key>\n    <string>dots24-braille.glif</string>\n    <key>dots245-braille</key>\n    <string>dots245-braille.glif</string>\n    <key>dots2456-braille</key>\n    <string>dots2456-braille.glif</string>\n    <key>dots24567-braille</key>\n    <string>dots24567-braille.glif</string>\n    <key>dots245678-braille</key>\n    <string>dots245678-braille.glif</string>\n    <key>dots24568-braille</key>\n    <string>dots24568-braille.glif</string>\n    <key>dots2457-braille</key>\n    <string>dots2457-braille.glif</string>\n    <key>dots24578-braille</key>\n    <string>dots24578-braille.glif</string>\n    <key>dots2458-braille</key>\n    <string>dots2458-braille.glif</string>\n    <key>dots246-braille</key>\n    <string>dots246-braille.glif</string>\n    <key>dots2467-braille</key>\n    <string>dots2467-braille.glif</string>\n    <key>dots24678-braille</key>\n    <string>dots24678-braille.glif</string>\n    <key>dots2468-braille</key>\n    <string>dots2468-braille.glif</string>\n    <key>dots247-braille</key>\n    <string>dots247-braille.glif</string>\n    <key>dots2478-braille</key>\n    <string>dots2478-braille.glif</string>\n    <key>dots248-braille</key>\n    <string>dots248-braille.glif</string>\n    <key>dots25-braille</key>\n    <string>dots25-braille.glif</string>\n    <key>dots256-braille</key>\n    <string>dots256-braille.glif</string>\n    <key>dots2567-braille</key>\n    <string>dots2567-braille.glif</string>\n    <key>dots25678-braille</key>\n    <string>dots25678-braille.glif</string>\n    <key>dots2568-braille</key>\n    <string>dots2568-braille.glif</string>\n    <key>dots257-braille</key>\n    <string>dots257-braille.glif</string>\n    <key>dots2578-braille</key>\n    <string>dots2578-braille.glif</string>\n    <key>dots258-braille</key>\n    <string>dots258-braille.glif</string>\n    <key>dots26-braille</key>\n    <string>dots26-braille.glif</string>\n    <key>dots267-braille</key>\n    <string>dots267-braille.glif</string>\n    <key>dots2678-braille</key>\n    <string>dots2678-braille.glif</string>\n    <key>dots268-braille</key>\n    <string>dots268-braille.glif</string>\n    <key>dots27-braille</key>\n    <string>dots27-braille.glif</string>\n    <key>dots278-braille</key>\n    <string>dots278-braille.glif</string>\n    <key>dots28-braille</key>\n    <string>dots28-braille.glif</string>\n    <key>dots3-braille</key>\n    <string>dots3-braille.glif</string>\n    <key>dots34-braille</key>\n    <string>dots34-braille.glif</string>\n    <key>dots345-braille</key>\n    <string>dots345-braille.glif</string>\n    <key>dots3456-braille</key>\n    <string>dots3456-braille.glif</string>\n    <key>dots34567-braille</key>\n    <string>dots34567-braille.glif</string>\n    <key>dots345678-braille</key>\n    <string>dots345678-braille.glif</string>\n    <key>dots34568-braille</key>\n    <string>dots34568-braille.glif</string>\n    <key>dots3457-braille</key>\n    <string>dots3457-braille.glif</string>\n    <key>dots34578-braille</key>\n    <string>dots34578-braille.glif</string>\n    <key>dots3458-braille</key>\n    <string>dots3458-braille.glif</string>\n    <key>dots346-braille</key>\n    <string>dots346-braille.glif</string>\n    <key>dots3467-braille</key>\n    <string>dots3467-braille.glif</string>\n    <key>dots34678-braille</key>\n    <string>dots34678-braille.glif</string>\n    <key>dots3468-braille</key>\n    <string>dots3468-braille.glif</string>\n    <key>dots347-braille</key>\n    <string>dots347-braille.glif</string>\n    <key>dots3478-braille</key>\n    <string>dots3478-braille.glif</string>\n    <key>dots348-braille</key>\n    <string>dots348-braille.glif</string>\n    <key>dots35-braille</key>\n    <string>dots35-braille.glif</string>\n    <key>dots356-braille</key>\n    <string>dots356-braille.glif</string>\n    <key>dots3567-braille</key>\n    <string>dots3567-braille.glif</string>\n    <key>dots35678-braille</key>\n    <string>dots35678-braille.glif</string>\n    <key>dots3568-braille</key>\n    <string>dots3568-braille.glif</string>\n    <key>dots357-braille</key>\n    <string>dots357-braille.glif</string>\n    <key>dots3578-braille</key>\n    <string>dots3578-braille.glif</string>\n    <key>dots358-braille</key>\n    <string>dots358-braille.glif</string>\n    <key>dots36-braille</key>\n    <string>dots36-braille.glif</string>\n    <key>dots367-braille</key>\n    <string>dots367-braille.glif</string>\n    <key>dots3678-braille</key>\n    <string>dots3678-braille.glif</string>\n    <key>dots368-braille</key>\n    <string>dots368-braille.glif</string>\n    <key>dots37-braille</key>\n    <string>dots37-braille.glif</string>\n    <key>dots378-braille</key>\n    <string>dots378-braille.glif</string>\n    <key>dots38-braille</key>\n    <string>dots38-braille.glif</string>\n    <key>dots4-braille</key>\n    <string>dots4-braille.glif</string>\n    <key>dots45-braille</key>\n    <string>dots45-braille.glif</string>\n    <key>dots456-braille</key>\n    <string>dots456-braille.glif</string>\n    <key>dots4567-braille</key>\n    <string>dots4567-braille.glif</string>\n    <key>dots45678-braille</key>\n    <string>dots45678-braille.glif</string>\n    <key>dots4568-braille</key>\n    <string>dots4568-braille.glif</string>\n    <key>dots457-braille</key>\n    <string>dots457-braille.glif</string>\n    <key>dots4578-braille</key>\n    <string>dots4578-braille.glif</string>\n    <key>dots458-braille</key>\n    <string>dots458-braille.glif</string>\n    <key>dots46-braille</key>\n    <string>dots46-braille.glif</string>\n    <key>dots467-braille</key>\n    <string>dots467-braille.glif</string>\n    <key>dots4678-braille</key>\n    <string>dots4678-braille.glif</string>\n    <key>dots468-braille</key>\n    <string>dots468-braille.glif</string>\n    <key>dots47-braille</key>\n    <string>dots47-braille.glif</string>\n    <key>dots478-braille</key>\n    <string>dots478-braille.glif</string>\n    <key>dots48-braille</key>\n    <string>dots48-braille.glif</string>\n    <key>dots5-braille</key>\n    <string>dots5-braille.glif</string>\n    <key>dots56-braille</key>\n    <string>dots56-braille.glif</string>\n    <key>dots567-braille</key>\n    <string>dots567-braille.glif</string>\n    <key>dots5678-braille</key>\n    <string>dots5678-braille.glif</string>\n    <key>dots568-braille</key>\n    <string>dots568-braille.glif</string>\n    <key>dots57-braille</key>\n    <string>dots57-braille.glif</string>\n    <key>dots578-braille</key>\n    <string>dots578-braille.glif</string>\n    <key>dots58-braille</key>\n    <string>dots58-braille.glif</string>\n    <key>dots6-braille</key>\n    <string>dots6-braille.glif</string>\n    <key>dots67-braille</key>\n    <string>dots67-braille.glif</string>\n    <key>dots678-braille</key>\n    <string>dots678-braille.glif</string>\n    <key>dots68-braille</key>\n    <string>dots68-braille.glif</string>\n    <key>dots7-braille</key>\n    <string>dots7-braille.glif</string>\n    <key>dots78-braille</key>\n    <string>dots78-braille.glif</string>\n    <key>dots8-braille</key>\n    <string>dots8-braille.glif</string>\n    <key>dottedCircle</key>\n    <string>dottedC_ircle.glif</string>\n    <key>dottedSquare</key>\n    <string>dottedS_quare.glif</string>\n    <key>downArrow</key>\n    <string>downA_rrow.glif</string>\n    <key>downBlackSmallTriangle</key>\n    <string>downB_lackS_mallT_riangle.glif</string>\n    <key>downBlackTriangle</key>\n    <string>downB_lackT_riangle.glif</string>\n    <key>downTipLeftArrow</key>\n    <string>downT_ipL_eftA_rrow.glif</string>\n    <key>downWhiteSmallTriangle</key>\n    <string>downW_hiteS_mallT_riangle.glif</string>\n    <key>downWhiteTriangle</key>\n    <string>downW_hiteT_riangle.glif</string>\n    <key>dtail</key>\n    <string>dtail.glif</string>\n    <key>dze-cy</key>\n    <string>dze-cy.glif</string>\n    <key>dzhe-cy</key>\n    <string>dzhe-cy.glif</string>\n    <key>e</key>\n    <string>e.glif</string>\n    <key>e-cy</key>\n    <string>e-cy.glif</string>\n    <key>eacute</key>\n    <string>eacute.glif</string>\n    <key>ebreve</key>\n    <string>ebreve.glif</string>\n    <key>ecaron</key>\n    <string>ecaron.glif</string>\n    <key>ecircumflex</key>\n    <string>ecircumflex.glif</string>\n    <key>ecircumflexacute</key>\n    <string>ecircumflexacute.glif</string>\n    <key>ecircumflexdotbelow</key>\n    <string>ecircumflexdotbelow.glif</string>\n    <key>ecircumflexgrave</key>\n    <string>ecircumflexgrave.glif</string>\n    <key>ecircumflexhookabove</key>\n    <string>ecircumflexhookabove.glif</string>\n    <key>ecircumflextilde</key>\n    <string>ecircumflextilde.glif</string>\n    <key>edieresis</key>\n    <string>edieresis.glif</string>\n    <key>edotaccent</key>\n    <string>edotaccent.glif</string>\n    <key>edotbelow</key>\n    <string>edotbelow.glif</string>\n    <key>ef-cy</key>\n    <string>ef-cy.glif</string>\n    <key>egrave</key>\n    <string>egrave.glif</string>\n    <key>ehookabove</key>\n    <string>ehookabove.glif</string>\n    <key>eight</key>\n    <string>eight.glif</string>\n    <key>eight.dnom</key>\n    <string>eight.dnom.glif</string>\n    <key>eight.numr</key>\n    <string>eight.numr.glif</string>\n    <key>eightinferior</key>\n    <string>eightinferior.glif</string>\n    <key>eightsuperior</key>\n    <string>eightsuperior.glif</string>\n    <key>el-cy</key>\n    <string>el-cy.glif</string>\n    <key>ellipsis</key>\n    <string>ellipsis.glif</string>\n    <key>em-cy</key>\n    <string>em-cy.glif</string>\n    <key>emacron</key>\n    <string>emacron.glif</string>\n    <key>emdash</key>\n    <string>emdash.glif</string>\n    <key>en-cy</key>\n    <string>en-cy.glif</string>\n    <key>endOfMediumControl</key>\n    <string>endO_fM_ediumC_ontrol.glif</string>\n    <key>endOfMediumControl.ss20</key>\n    <string>endO_fM_ediumC_ontrol.ss20.glif</string>\n    <key>endOfTextControl</key>\n    <string>endO_fT_extC_ontrol.glif</string>\n    <key>endOfTextControl.ss20</key>\n    <string>endO_fT_extC_ontrol.ss20.glif</string>\n    <key>endOfTransmissionBlockControl</key>\n    <string>endO_fT_ransmissionB_lockC_ontrol.glif</string>\n    <key>endOfTransmissionBlockControl.ss20</key>\n    <string>endO_fT_ransmissionB_lockC_ontrol.ss20.glif</string>\n    <key>endOfTransmissionControl</key>\n    <string>endO_fT_ransmissionC_ontrol.glif</string>\n    <key>endOfTransmissionControl.ss20</key>\n    <string>endO_fT_ransmissionC_ontrol.ss20.glif</string>\n    <key>endash</key>\n    <string>endash.glif</string>\n    <key>endescender-cy</key>\n    <string>endescender-cy.glif</string>\n    <key>eng</key>\n    <string>eng.glif</string>\n    <key>enquiryControl</key>\n    <string>enquiryC_ontrol.glif</string>\n    <key>enquiryControl.ss20</key>\n    <string>enquiryC_ontrol.ss20.glif</string>\n    <key>eogonek</key>\n    <string>eogonek.glif</string>\n    <key>eopen</key>\n    <string>eopen.glif</string>\n    <key>epsilon</key>\n    <string>epsilon.glif</string>\n    <key>epsilontonos</key>\n    <string>epsilontonos.glif</string>\n    <key>equal</key>\n    <string>equal.glif</string>\n    <key>equal_end.seq</key>\n    <string>equal_end.seq.glif</string>\n    <key>equal_equal.liga</key>\n    <string>equal_equal.liga.glif</string>\n    <key>equal_equal_equal.liga</key>\n    <string>equal_equal_equal.liga.glif</string>\n    <key>equal_greater_greater.liga</key>\n    <string>equal_greater_greater.liga.glif</string>\n    <key>equal_less_less.liga</key>\n    <string>equal_less_less.liga.glif</string>\n    <key>equal_middle.seq</key>\n    <string>equal_middle.seq.glif</string>\n    <key>equal_start.seq</key>\n    <string>equal_start.seq.glif</string>\n    <key>equivalence</key>\n    <string>equivalence.glif</string>\n    <key>er-cy</key>\n    <string>er-cy.glif</string>\n    <key>ereversed-cy</key>\n    <string>ereversed-cy.glif</string>\n    <key>es-cy</key>\n    <string>es-cy.glif</string>\n    <key>escapeControl</key>\n    <string>escapeC_ontrol.glif</string>\n    <key>escapeControl.ss20</key>\n    <string>escapeC_ontrol.ss20.glif</string>\n    <key>esh</key>\n    <string>esh.glif</string>\n    <key>estimated</key>\n    <string>estimated.glif</string>\n    <key>eta</key>\n    <string>eta.glif</string>\n    <key>etatonos</key>\n    <string>etatonos.glif</string>\n    <key>eth</key>\n    <string>eth.glif</string>\n    <key>etilde</key>\n    <string>etilde.glif</string>\n    <key>eturned</key>\n    <string>eturned.glif</string>\n    <key>euro</key>\n    <string>euro.glif</string>\n    <key>eurocurrency</key>\n    <string>eurocurrency.glif</string>\n    <key>exclam</key>\n    <string>exclam.glif</string>\n    <key>exclam_colon.liga</key>\n    <string>exclam_colon.liga.glif</string>\n    <key>exclam_equal.liga</key>\n    <string>exclam_equal.liga.glif</string>\n    <key>exclam_equal_equal.liga</key>\n    <string>exclam_equal_equal.liga.glif</string>\n    <key>exclam_equal_middle.seq</key>\n    <string>exclam_equal_middle.seq.glif</string>\n    <key>exclam_exclam.liga</key>\n    <string>exclam_exclam.liga.glif</string>\n    <key>exclam_exclam_period.liga</key>\n    <string>exclam_exclam_period.liga.glif</string>\n    <key>exclam_period.liga</key>\n    <string>exclam_period.liga.glif</string>\n    <key>exclamdouble</key>\n    <string>exclamdouble.glif</string>\n    <key>exclamdown</key>\n    <string>exclamdown.glif</string>\n    <key>ezh</key>\n    <string>ezh.glif</string>\n    <key>f</key>\n    <string>f.glif</string>\n    <key>f.locl</key>\n    <string>f.locl.glif</string>\n    <key>f.salt</key>\n    <string>f.salt.glif</string>\n    <key>fi</key>\n    <string>fi.glif</string>\n    <key>fileSeparatorControl</key>\n    <string>fileS_eparatorC_ontrol.glif</string>\n    <key>filledRect</key>\n    <string>filledR_ect.glif</string>\n    <key>firsttonechinese</key>\n    <string>firsttonechinese.glif</string>\n    <key>fisheye</key>\n    <string>fisheye.glif</string>\n    <key>five</key>\n    <string>five.glif</string>\n    <key>five.dnom</key>\n    <string>five.dnom.glif</string>\n    <key>five.numr</key>\n    <string>five.numr.glif</string>\n    <key>fiveeighths</key>\n    <string>fiveeighths.glif</string>\n    <key>fiveeighths.BRACKET.500</key>\n    <string>fiveeighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>fiveinferior</key>\n    <string>fiveinferior.glif</string>\n    <key>fivesuperior</key>\n    <string>fivesuperior.glif</string>\n    <key>fl</key>\n    <string>fl.glif</string>\n    <key>florin</key>\n    <string>florin.glif</string>\n    <key>formFeedControl</key>\n    <string>formF_eedC_ontrol.glif</string>\n    <key>formFeedControl.ss20</key>\n    <string>formF_eedC_ontrol.ss20.glif</string>\n    <key>four</key>\n    <string>four.glif</string>\n    <key>four.dnom</key>\n    <string>four.dnom.glif</string>\n    <key>four.half</key>\n    <string>four.half.glif</string>\n    <key>four.numr</key>\n    <string>four.numr.glif</string>\n    <key>fourinferior</key>\n    <string>fourinferior.glif</string>\n    <key>foursuperior</key>\n    <string>foursuperior.glif</string>\n    <key>fraction</key>\n    <string>fraction.glif</string>\n    <key>franc</key>\n    <string>franc.glif</string>\n    <key>fullBlock</key>\n    <string>fullB_lock.glif</string>\n    <key>fullBlock.stypo</key>\n    <string>fullB_lock.stypo.glif</string>\n    <key>g</key>\n    <string>g.glif</string>\n    <key>gamma</key>\n    <string>gamma.glif</string>\n    <key>gamma-latin</key>\n    <string>gamma-latin.glif</string>\n    <key>gbreve</key>\n    <string>gbreve.glif</string>\n    <key>gcaron</key>\n    <string>gcaron.glif</string>\n    <key>gcircumflex</key>\n    <string>gcircumflex.glif</string>\n    <key>gcommaaccent</key>\n    <string>gcommaaccent.glif</string>\n    <key>gdotaccent</key>\n    <string>gdotaccent.glif</string>\n    <key>ge-cy</key>\n    <string>ge-cy.glif</string>\n    <key>ge-cy.loclSRB</key>\n    <string>ge-cy.loclS_R_B_.glif</string>\n    <key>germandbls</key>\n    <string>germandbls.glif</string>\n    <key>ghestroke-cy</key>\n    <string>ghestroke-cy.glif</string>\n    <key>gheupturn-cy</key>\n    <string>gheupturn-cy.glif</string>\n    <key>gje-cy</key>\n    <string>gje-cy.glif</string>\n    <key>glottalstop</key>\n    <string>glottalstop.glif</string>\n    <key>glottalstopmod</key>\n    <string>glottalstopmod.glif</string>\n    <key>glottalstopreversed</key>\n    <string>glottalstopreversed.glif</string>\n    <key>grave</key>\n    <string>grave.glif</string>\n    <key>gravecomb</key>\n    <string>gravecomb.glif</string>\n    <key>gravecomb.case</key>\n    <string>gravecomb.case.glif</string>\n    <key>gravetonecomb</key>\n    <string>gravetonecomb.glif</string>\n    <key>greater</key>\n    <string>greater.glif</string>\n    <key>greater.alt</key>\n    <string>greater.alt.glif</string>\n    <key>greater.center</key>\n    <string>greater.center.glif</string>\n    <key>greater_equal.liga</key>\n    <string>greater_equal.liga.glif</string>\n    <key>greater_equal_end.seq</key>\n    <string>greater_equal_end.seq.glif</string>\n    <key>greater_equal_middle.seq</key>\n    <string>greater_equal_middle.seq.glif</string>\n    <key>greater_equal_start.seq</key>\n    <string>greater_equal_start.seq.glif</string>\n    <key>greater_greater.liga</key>\n    <string>greater_greater.liga.glif</string>\n    <key>greater_greater_equal.liga</key>\n    <string>greater_greater_equal.liga.glif</string>\n    <key>greater_greater_equal_end.seq</key>\n    <string>greater_greater_equal_end.seq.glif</string>\n    <key>greater_greater_equal_middle.seq</key>\n    <string>greater_greater_equal_middle.seq.glif</string>\n    <key>greater_greater_equal_start.seq</key>\n    <string>greater_greater_equal_start.seq.glif</string>\n    <key>greater_greater_greater.liga</key>\n    <string>greater_greater_greater.liga.glif</string>\n    <key>greater_greater_hyphen_end.seq</key>\n    <string>greater_greater_hyphen_end.seq.glif</string>\n    <key>greater_greater_hyphen_middle.seq</key>\n    <string>greater_greater_hyphen_middle.seq.glif</string>\n    <key>greater_greater_hyphen_start.seq</key>\n    <string>greater_greater_hyphen_start.seq.glif</string>\n    <key>greater_hyphen_end.seq</key>\n    <string>greater_hyphen_end.seq.glif</string>\n    <key>greater_hyphen_middle.seq</key>\n    <string>greater_hyphen_middle.seq.glif</string>\n    <key>greater_hyphen_start.seq</key>\n    <string>greater_hyphen_start.seq.glif</string>\n    <key>greaterequal</key>\n    <string>greaterequal.glif</string>\n    <key>groupSeparatorControl</key>\n    <string>groupS_eparatorC_ontrol.glif</string>\n    <key>gstroke</key>\n    <string>gstroke.glif</string>\n    <key>guarani</key>\n    <string>guarani.glif</string>\n    <key>guillemetleft</key>\n    <string>guillemetleft.glif</string>\n    <key>guillemetright</key>\n    <string>guillemetright.glif</string>\n    <key>guilsinglleft</key>\n    <string>guilsinglleft.glif</string>\n    <key>guilsinglright</key>\n    <string>guilsinglright.glif</string>\n    <key>h</key>\n    <string>h.glif</string>\n    <key>h.alt</key>\n    <string>h.alt.glif</string>\n    <key>ha-cy</key>\n    <string>ha-cy.glif</string>\n    <key>hadescender-cy</key>\n    <string>hadescender-cy.glif</string>\n    <key>hardsign-cy</key>\n    <string>hardsign-cy.glif</string>\n    <key>hbar</key>\n    <string>hbar.glif</string>\n    <key>hcaron</key>\n    <string>hcaron.glif</string>\n    <key>hcircumflex</key>\n    <string>hcircumflex.glif</string>\n    <key>hdotbelow</key>\n    <string>hdotbelow.glif</string>\n    <key>heartBlackSuit</key>\n    <string>heartB_lackS_uit.glif</string>\n    <key>heavyleftpointinganglebracketornament</key>\n    <string>heavyleftpointinganglebracketornament.glif</string>\n    <key>heavyleftpointinganglequotationmarkornament</key>\n    <string>heavyleftpointinganglequotationmarkornament.glif</string>\n    <key>heavyrightpointinganglebracketornament</key>\n    <string>heavyrightpointinganglebracketornament.glif</string>\n    <key>heavyrightpointinganglequotationmarkornament</key>\n    <string>heavyrightpointinganglequotationmarkornament.glif</string>\n    <key>hookabovecomb</key>\n    <string>hookabovecomb.glif</string>\n    <key>hookabovecomb.case</key>\n    <string>hookabovecomb.case.glif</string>\n    <key>horizontalBlackHexagon</key>\n    <string>horizontalB_lackH_exagon.glif</string>\n    <key>horizontalFillSquare</key>\n    <string>horizontalF_illS_quare.glif</string>\n    <key>horizontalTabulationControl</key>\n    <string>horizontalT_abulationC_ontrol.glif</string>\n    <key>horizontalTabulationControl.ss20</key>\n    <string>horizontalT_abulationC_ontrol.ss20.glif</string>\n    <key>horizontalbar</key>\n    <string>horizontalbar.glif</string>\n    <key>horizontallineextension</key>\n    <string>horizontallineextension.glif</string>\n    <key>horncomb</key>\n    <string>horncomb.glif</string>\n    <key>horncomb.case</key>\n    <string>horncomb.case.glif</string>\n    <key>house</key>\n    <string>house.glif</string>\n    <key>hryvnia</key>\n    <string>hryvnia.glif</string>\n    <key>hungarumlaut</key>\n    <string>hungarumlaut.glif</string>\n    <key>hungarumlautcomb</key>\n    <string>hungarumlautcomb.glif</string>\n    <key>hungarumlautcomb.case</key>\n    <string>hungarumlautcomb.case.glif</string>\n    <key>hyphen</key>\n    <string>hyphen.glif</string>\n    <key>hyphen_asciitilde.liga</key>\n    <string>hyphen_asciitilde.liga.glif</string>\n    <key>hyphen_end.seq</key>\n    <string>hyphen_end.seq.glif</string>\n    <key>hyphen_hyphen.liga</key>\n    <string>hyphen_hyphen.liga.glif</string>\n    <key>hyphen_hyphen_hyphen.liga</key>\n    <string>hyphen_hyphen_hyphen.liga.glif</string>\n    <key>hyphen_middle.seq</key>\n    <string>hyphen_middle.seq.glif</string>\n    <key>hyphen_start.seq</key>\n    <string>hyphen_start.seq.glif</string>\n    <key>hyphentwo</key>\n    <string>hyphentwo.glif</string>\n    <key>i</key>\n    <string>i.glif</string>\n    <key>i-cy</key>\n    <string>i-cy.glif</string>\n    <key>ia-cy</key>\n    <string>ia-cy.glif</string>\n    <key>iacute</key>\n    <string>iacute.glif</string>\n    <key>ibreve</key>\n    <string>ibreve.glif</string>\n    <key>icircumflex</key>\n    <string>icircumflex.glif</string>\n    <key>idieresis</key>\n    <string>idieresis.glif</string>\n    <key>idotbelow</key>\n    <string>idotbelow.glif</string>\n    <key>idotless</key>\n    <string>idotless.glif</string>\n    <key>ie-cy</key>\n    <string>ie-cy.glif</string>\n    <key>iegrave-cy</key>\n    <string>iegrave-cy.glif</string>\n    <key>igrave</key>\n    <string>igrave.glif</string>\n    <key>ihookabove</key>\n    <string>ihookabove.glif</string>\n    <key>ii-cy</key>\n    <string>ii-cy.glif</string>\n    <key>iigrave-cy</key>\n    <string>iigrave-cy.glif</string>\n    <key>iishort-cy</key>\n    <string>iishort-cy.glif</string>\n    <key>ij</key>\n    <string>ij.glif</string>\n    <key>ij_acute</key>\n    <string>ij_acute.glif</string>\n    <key>imacron</key>\n    <string>imacron.glif</string>\n    <key>imacron-cy</key>\n    <string>imacron-cy.glif</string>\n    <key>increment</key>\n    <string>increment.glif</string>\n    <key>infinity</key>\n    <string>infinity.glif</string>\n    <key>integral</key>\n    <string>integral.glif</string>\n    <key>integralbt</key>\n    <string>integralbt.glif</string>\n    <key>integraltp</key>\n    <string>integraltp.glif</string>\n    <key>intersection</key>\n    <string>intersection.glif</string>\n    <key>inverseBullet</key>\n    <string>inverseB_ullet.glif</string>\n    <key>inverseWhiteCircle</key>\n    <string>inverseW_hiteC_ircle.glif</string>\n    <key>io-cy</key>\n    <string>io-cy.glif</string>\n    <key>iogonek</key>\n    <string>iogonek.glif</string>\n    <key>iota</key>\n    <string>iota.glif</string>\n    <key>iota-latin</key>\n    <string>iota-latin.glif</string>\n    <key>iotadieresis</key>\n    <string>iotadieresis.glif</string>\n    <key>iotadieresistonos</key>\n    <string>iotadieresistonos.glif</string>\n    <key>iotatonos</key>\n    <string>iotatonos.glif</string>\n    <key>itilde</key>\n    <string>itilde.glif</string>\n    <key>iu-cy</key>\n    <string>iu-cy.glif</string>\n    <key>iu-cy.loclBGR</key>\n    <string>iu-cy.loclB_G_R_.glif</string>\n    <key>iu-cy.loclBGR.alt</key>\n    <string>iu-cy.loclB_G_R_.alt.glif</string>\n    <key>j</key>\n    <string>j.glif</string>\n    <key>jacute</key>\n    <string>jacute.glif</string>\n    <key>jcaron</key>\n    <string>jcaron.glif</string>\n    <key>jcircumflex</key>\n    <string>jcircumflex.glif</string>\n    <key>jdotless</key>\n    <string>jdotless.glif</string>\n    <key>je-cy</key>\n    <string>je-cy.glif</string>\n    <key>k</key>\n    <string>k.glif</string>\n    <key>k.alt</key>\n    <string>k.alt.glif</string>\n    <key>ka-cy</key>\n    <string>ka-cy.glif</string>\n    <key>ka-cy.loclBGR</key>\n    <string>ka-cy.loclB_G_R_.glif</string>\n    <key>ka-cy.loclBGR.alt</key>\n    <string>ka-cy.loclB_G_R_.alt.glif</string>\n    <key>kadescender-cy</key>\n    <string>kadescender-cy.glif</string>\n    <key>kaiSymbol</key>\n    <string>kaiS_ymbol.glif</string>\n    <key>kappa</key>\n    <string>kappa.glif</string>\n    <key>kcommaaccent</key>\n    <string>kcommaaccent.glif</string>\n    <key>kdotbelow</key>\n    <string>kdotbelow.glif</string>\n    <key>kgreenlandic</key>\n    <string>kgreenlandic.glif</string>\n    <key>kip</key>\n    <string>kip.glif</string>\n    <key>kje-cy</key>\n    <string>kje-cy.glif</string>\n    <key>klinebelow</key>\n    <string>klinebelow.glif</string>\n    <key>l</key>\n    <string>l.glif</string>\n    <key>l.salt</key>\n    <string>l.salt.glif</string>\n    <key>lacute</key>\n    <string>lacute.glif</string>\n    <key>lacute.salt</key>\n    <string>lacute.salt.glif</string>\n    <key>lambda</key>\n    <string>lambda.glif</string>\n    <key>lambdastroke</key>\n    <string>lambdastroke.glif</string>\n    <key>largeCircle</key>\n    <string>largeC_ircle.glif</string>\n    <key>lari</key>\n    <string>lari.glif</string>\n    <key>lbar</key>\n    <string>lbar.glif</string>\n    <key>lbar.salt</key>\n    <string>lbar.salt.glif</string>\n    <key>lbelt</key>\n    <string>lbelt.glif</string>\n    <key>lbelt.salt</key>\n    <string>lbelt.salt.glif</string>\n    <key>lcaron</key>\n    <string>lcaron.glif</string>\n    <key>lcaron.salt</key>\n    <string>lcaron.salt.glif</string>\n    <key>lcommaaccent</key>\n    <string>lcommaaccent.glif</string>\n    <key>lcommaaccent.salt</key>\n    <string>lcommaaccent.salt.glif</string>\n    <key>ldot</key>\n    <string>ldot.glif</string>\n    <key>ldot.salt</key>\n    <string>ldot.salt.glif</string>\n    <key>ldotbelow</key>\n    <string>ldotbelow.glif</string>\n    <key>ldotbelow.salt</key>\n    <string>ldotbelow.salt.glif</string>\n    <key>leftArrow</key>\n    <string>leftA_rrow.glif</string>\n    <key>leftBlackPointer</key>\n    <string>leftB_lackP_ointer.glif</string>\n    <key>leftBlackSmallTriangle</key>\n    <string>leftB_lackS_mallT_riangle.glif</string>\n    <key>leftBlackTriangle</key>\n    <string>leftB_lackT_riangle.glif</string>\n    <key>leftBlock</key>\n    <string>leftB_lock.glif</string>\n    <key>leftBlock.stypo</key>\n    <string>leftB_lock.stypo.glif</string>\n    <key>leftFiveEighthsBlock</key>\n    <string>leftF_iveE_ighthsB_lock.glif</string>\n    <key>leftFiveEighthsBlock.stypo</key>\n    <string>leftF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>leftHalfBlackCircle</key>\n    <string>leftH_alfB_lackC_ircle.glif</string>\n    <key>leftHalfBlackDiamond</key>\n    <string>leftH_alfB_lackD_iamond.glif</string>\n    <key>leftHalfBlackSquare</key>\n    <string>leftH_alfB_lackS_quare.glif</string>\n    <key>leftHalfBlackWhiteCircle</key>\n    <string>leftH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>leftOneEighthBlock</key>\n    <string>leftO_neE_ighthB_lock.glif</string>\n    <key>leftOneEighthBlock.stypo</key>\n    <string>leftO_neE_ighthB_lock.stypo.glif</string>\n    <key>leftOneQuarterBlock</key>\n    <string>leftO_neQ_uarterB_lock.glif</string>\n    <key>leftOneQuarterBlock.stypo</key>\n    <string>leftO_neQ_uarterB_lock.stypo.glif</string>\n    <key>leftRightArrow</key>\n    <string>leftR_ightA_rrow.glif</string>\n    <key>leftSevenEighthsBlock</key>\n    <string>leftS_evenE_ighthsB_lock.glif</string>\n    <key>leftSevenEighthsBlock.stypo</key>\n    <string>leftS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>leftThreeEighthsBlock</key>\n    <string>leftT_hreeE_ighthsB_lock.glif</string>\n    <key>leftThreeEighthsBlock.stypo</key>\n    <string>leftT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>leftThreeQuartersBlock</key>\n    <string>leftT_hreeQ_uartersB_lock.glif</string>\n    <key>leftThreeQuartersBlock.stypo</key>\n    <string>leftT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>leftWhitePointer</key>\n    <string>leftW_hiteP_ointer.glif</string>\n    <key>leftWhiteSmallTriangle</key>\n    <string>leftW_hiteS_mallT_riangle.glif</string>\n    <key>leftWhiteTriangle</key>\n    <string>leftW_hiteT_riangle.glif</string>\n    <key>less</key>\n    <string>less.glif</string>\n    <key>less.alt</key>\n    <string>less.alt.glif</string>\n    <key>less.center</key>\n    <string>less.center.glif</string>\n    <key>less_asciitilde.liga</key>\n    <string>less_asciitilde.liga.glif</string>\n    <key>less_asciitilde_asciitilde.liga</key>\n    <string>less_asciitilde_asciitilde.liga.glif</string>\n    <key>less_asciitilde_greater.liga</key>\n    <string>less_asciitilde_greater.liga.glif</string>\n    <key>less_asterisk.liga</key>\n    <string>less_asterisk.liga.glif</string>\n    <key>less_asterisk_greater.liga</key>\n    <string>less_asterisk_greater.liga.glif</string>\n    <key>less_bar.liga</key>\n    <string>less_bar.liga.glif</string>\n    <key>less_bar_bar.liga</key>\n    <string>less_bar_bar.liga.glif</string>\n    <key>less_bar_bar_bar.liga</key>\n    <string>less_bar_bar_bar.liga.glif</string>\n    <key>less_bar_greater.liga</key>\n    <string>less_bar_greater.liga.glif</string>\n    <key>less_dollar.liga</key>\n    <string>less_dollar.liga.glif</string>\n    <key>less_dollar.liga.BRACKET.600</key>\n    <string>less_dollar.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>less_dollar_greater.liga</key>\n    <string>less_dollar_greater.liga.glif</string>\n    <key>less_dollar_greater.liga.BRACKET.600</key>\n    <string>less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif</string>\n    <key>less_equal.liga</key>\n    <string>less_equal.liga.glif</string>\n    <key>less_equal_end.seq</key>\n    <string>less_equal_end.seq.glif</string>\n    <key>less_equal_middle.seq</key>\n    <string>less_equal_middle.seq.glif</string>\n    <key>less_equal_start.seq</key>\n    <string>less_equal_start.seq.glif</string>\n    <key>less_exclam_hyphen_hyphen.liga</key>\n    <string>less_exclam_hyphen_hyphen.liga.glif</string>\n    <key>less_greater.liga</key>\n    <string>less_greater.liga.glif</string>\n    <key>less_hyphen_end.seq</key>\n    <string>less_hyphen_end.seq.glif</string>\n    <key>less_hyphen_middle.seq</key>\n    <string>less_hyphen_middle.seq.glif</string>\n    <key>less_hyphen_start.seq</key>\n    <string>less_hyphen_start.seq.glif</string>\n    <key>less_less.liga</key>\n    <string>less_less.liga.glif</string>\n    <key>less_less_equal.liga</key>\n    <string>less_less_equal.liga.glif</string>\n    <key>less_less_equal_end.seq</key>\n    <string>less_less_equal_end.seq.glif</string>\n    <key>less_less_equal_middle.seq</key>\n    <string>less_less_equal_middle.seq.glif</string>\n    <key>less_less_equal_start.seq</key>\n    <string>less_less_equal_start.seq.glif</string>\n    <key>less_less_hyphen_end.seq</key>\n    <string>less_less_hyphen_end.seq.glif</string>\n    <key>less_less_hyphen_middle.seq</key>\n    <string>less_less_hyphen_middle.seq.glif</string>\n    <key>less_less_hyphen_start.seq</key>\n    <string>less_less_hyphen_start.seq.glif</string>\n    <key>less_less_less.liga</key>\n    <string>less_less_less.liga.glif</string>\n    <key>less_plus.liga</key>\n    <string>less_plus.liga.glif</string>\n    <key>less_plus_greater.liga</key>\n    <string>less_plus_greater.liga.glif</string>\n    <key>less_slash.liga</key>\n    <string>less_slash.liga.glif</string>\n    <key>less_slash_greater.liga</key>\n    <string>less_slash_greater.liga.glif</string>\n    <key>lessequal</key>\n    <string>lessequal.glif</string>\n    <key>lineFeedControl</key>\n    <string>lineF_eedC_ontrol.glif</string>\n    <key>lineFeedControl.ss20</key>\n    <string>lineF_eedC_ontrol.ss20.glif</string>\n    <key>lineseparator</key>\n    <string>lineseparator.glif</string>\n    <key>lira</key>\n    <string>lira.glif</string>\n    <key>liraTurkish</key>\n    <string>liraT_urkish.glif</string>\n    <key>literSign</key>\n    <string>literS_ign.glif</string>\n    <key>lje-cy</key>\n    <string>lje-cy.glif</string>\n    <key>llinebelow</key>\n    <string>llinebelow.glif</string>\n    <key>llinebelow.salt</key>\n    <string>llinebelow.salt.glif</string>\n    <key>lmiddletilde</key>\n    <string>lmiddletilde.glif</string>\n    <key>lmiddletilde.salt</key>\n    <string>lmiddletilde.salt.glif</string>\n    <key>logicalnot</key>\n    <string>logicalnot.glif</string>\n    <key>logicalnotReversed</key>\n    <string>logicalnotR_eversed.glif</string>\n    <key>longs</key>\n    <string>longs.glif</string>\n    <key>lowerFiveEighthsBlock</key>\n    <string>lowerF_iveE_ighthsB_lock.glif</string>\n    <key>lowerFiveEighthsBlock.stypo</key>\n    <string>lowerF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>lowerHalfArc</key>\n    <string>lowerH_alfA_rc.glif</string>\n    <key>lowerHalfBlackWhiteCircle</key>\n    <string>lowerH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>lowerHalfBlock</key>\n    <string>lowerH_alfB_lock.glif</string>\n    <key>lowerHalfBlock.stypo</key>\n    <string>lowerH_alfB_lock.stypo.glif</string>\n    <key>lowerHalfInverseWhiteCircle</key>\n    <string>lowerH_alfI_nverseW_hiteC_ircle.glif</string>\n    <key>lowerHalfWhiteSquare</key>\n    <string>lowerH_alfW_hiteS_quare.glif</string>\n    <key>lowerLeftArc</key>\n    <string>lowerL_eftA_rc.glif</string>\n    <key>lowerLeftBlackTriangle</key>\n    <string>lowerL_eftB_lackT_riangle.glif</string>\n    <key>lowerLeftBlock</key>\n    <string>lowerL_eftB_lock.glif</string>\n    <key>lowerLeftBlock.stypo</key>\n    <string>lowerL_eftB_lock.stypo.glif</string>\n    <key>lowerLeftHalfWhiteSquare</key>\n    <string>lowerL_eftH_alfW_hiteS_quare.glif</string>\n    <key>lowerLeftQuadrantWhiteCircle</key>\n    <string>lowerL_eftQ_uadrantW_hiteC_ircle.glif</string>\n    <key>lowerLeftTriangle</key>\n    <string>lowerL_eftT_riangle.glif</string>\n    <key>lowerOneEighthBlock</key>\n    <string>lowerO_neE_ighthB_lock.glif</string>\n    <key>lowerOneEighthBlock.stypo</key>\n    <string>lowerO_neE_ighthB_lock.stypo.glif</string>\n    <key>lowerOneQuarterBlock</key>\n    <string>lowerO_neQ_uarterB_lock.glif</string>\n    <key>lowerOneQuarterBlock.stypo</key>\n    <string>lowerO_neQ_uarterB_lock.stypo.glif</string>\n    <key>lowerRightArc</key>\n    <string>lowerR_ightA_rc.glif</string>\n    <key>lowerRightBlackTriangle</key>\n    <string>lowerR_ightB_lackT_riangle.glif</string>\n    <key>lowerRightBlock</key>\n    <string>lowerR_ightB_lock.glif</string>\n    <key>lowerRightBlock.stypo</key>\n    <string>lowerR_ightB_lock.stypo.glif</string>\n    <key>lowerRightDiagonalHalfBlackSquare</key>\n    <string>lowerR_ightD_iagonalH_alfB_lackS_quare.glif</string>\n    <key>lowerRightQuadrantWhiteCircle</key>\n    <string>lowerR_ightQ_uadrantW_hiteC_ircle.glif</string>\n    <key>lowerRightTriangle</key>\n    <string>lowerR_ightT_riangle.glif</string>\n    <key>lowerSevenEighthsBlock</key>\n    <string>lowerS_evenE_ighthsB_lock.glif</string>\n    <key>lowerSevenEighthsBlock.stypo</key>\n    <string>lowerS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>lowerThreeEighthsBlock</key>\n    <string>lowerT_hreeE_ighthsB_lock.glif</string>\n    <key>lowerThreeEighthsBlock.stypo</key>\n    <string>lowerT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>lowerThreeQuartersBlock</key>\n    <string>lowerT_hreeQ_uartersB_lock.glif</string>\n    <key>lowerThreeQuartersBlock.stypo</key>\n    <string>lowerT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>lowernumeral-greek</key>\n    <string>lowernumeral-greek.glif</string>\n    <key>lowlinecomb</key>\n    <string>lowlinecomb.glif</string>\n    <key>lozenge</key>\n    <string>lozenge.glif</string>\n    <key>lslash</key>\n    <string>lslash.glif</string>\n    <key>lslash.salt</key>\n    <string>lslash.salt.glif</string>\n    <key>m</key>\n    <string>m.glif</string>\n    <key>macron</key>\n    <string>macron.glif</string>\n    <key>macronbelowcomb</key>\n    <string>macronbelowcomb.glif</string>\n    <key>macroncomb</key>\n    <string>macroncomb.glif</string>\n    <key>macroncomb.case</key>\n    <string>macroncomb.case.glif</string>\n    <key>manat</key>\n    <string>manat.glif</string>\n    <key>mars</key>\n    <string>mars.glif</string>\n    <key>mediumBlackSmallSquare</key>\n    <string>mediumB_lackS_mallS_quare.glif</string>\n    <key>mediumBlackSquare</key>\n    <string>mediumB_lackS_quare.glif</string>\n    <key>mediumWhiteSmallSquare</key>\n    <string>mediumW_hiteS_mallS_quare.glif</string>\n    <key>mediumWhiteSquare</key>\n    <string>mediumW_hiteS_quare.glif</string>\n    <key>mediumleftpointinganglebracketornament</key>\n    <string>mediumleftpointinganglebracketornament.glif</string>\n    <key>mediumrightpointinganglebracketornament</key>\n    <string>mediumrightpointinganglebracketornament.glif</string>\n    <key>micro</key>\n    <string>micro.glif</string>\n    <key>minus</key>\n    <string>minus.glif</string>\n    <key>minute</key>\n    <string>minute.glif</string>\n    <key>mu</key>\n    <string>mu.glif</string>\n    <key>multiply</key>\n    <string>multiply.glif</string>\n    <key>n</key>\n    <string>n.glif</string>\n    <key>nacute</key>\n    <string>nacute.glif</string>\n    <key>nacute.loclPLK</key>\n    <string>nacute.loclP_L_K_.glif</string>\n    <key>naira</key>\n    <string>naira.glif</string>\n    <key>napostrophe</key>\n    <string>napostrophe.glif</string>\n    <key>nbspace</key>\n    <string>nbspace.glif</string>\n    <key>ncaron</key>\n    <string>ncaron.glif</string>\n    <key>ncommaaccent</key>\n    <string>ncommaaccent.glif</string>\n    <key>negativeAcknowledgeControl</key>\n    <string>negativeA_cknowledgeC_ontrol.glif</string>\n    <key>negativeAcknowledgeControl.ss20</key>\n    <string>negativeA_cknowledgeC_ontrol.ss20.glif</string>\n    <key>newlineControl</key>\n    <string>newlineC_ontrol.glif</string>\n    <key>nhookleft</key>\n    <string>nhookleft.glif</string>\n    <key>nine</key>\n    <string>nine.glif</string>\n    <key>nine.dnom</key>\n    <string>nine.dnom.glif</string>\n    <key>nine.numr</key>\n    <string>nine.numr.glif</string>\n    <key>nineinferior</key>\n    <string>nineinferior.glif</string>\n    <key>ninesuperior</key>\n    <string>ninesuperior.glif</string>\n    <key>nje-cy</key>\n    <string>nje-cy.glif</string>\n    <key>nlinebelow</key>\n    <string>nlinebelow.glif</string>\n    <key>nmod</key>\n    <string>nmod.glif</string>\n    <key>nonbreakinghyphen</key>\n    <string>nonbreakinghyphen.glif</string>\n    <key>note-musical</key>\n    <string>note-musical.glif</string>\n    <key>notedbl-musical</key>\n    <string>notedbl-musical.glif</string>\n    <key>notequal</key>\n    <string>notequal.glif</string>\n    <key>notidentical</key>\n    <string>notidentical.glif</string>\n    <key>ntilde</key>\n    <string>ntilde.glif</string>\n    <key>nu</key>\n    <string>nu.glif</string>\n    <key>nullControl</key>\n    <string>nullC_ontrol.glif</string>\n    <key>numbersign</key>\n    <string>numbersign.glif</string>\n    <key>numbersign_braceleft.liga</key>\n    <string>numbersign_braceleft.liga.glif</string>\n    <key>numbersign_bracketleft.liga</key>\n    <string>numbersign_bracketleft.liga.glif</string>\n    <key>numbersign_colon.liga</key>\n    <string>numbersign_colon.liga.glif</string>\n    <key>numbersign_end.seq</key>\n    <string>numbersign_end.seq.glif</string>\n    <key>numbersign_equal.liga</key>\n    <string>numbersign_equal.liga.glif</string>\n    <key>numbersign_exclam.liga</key>\n    <string>numbersign_exclam.liga.glif</string>\n    <key>numbersign_middle.seq</key>\n    <string>numbersign_middle.seq.glif</string>\n    <key>numbersign_parenleft.liga</key>\n    <string>numbersign_parenleft.liga.glif</string>\n    <key>numbersign_question.liga</key>\n    <string>numbersign_question.liga.glif</string>\n    <key>numbersign_start.seq</key>\n    <string>numbersign_start.seq.glif</string>\n    <key>numbersign_underscore.liga</key>\n    <string>numbersign_underscore.liga.glif</string>\n    <key>numbersign_underscore_parenleft.liga</key>\n    <string>numbersign_underscore_parenleft.liga.glif</string>\n    <key>numeral-greek</key>\n    <string>numeral-greek.glif</string>\n    <key>numero</key>\n    <string>numero.glif</string>\n    <key>o</key>\n    <string>o.glif</string>\n    <key>o-cy</key>\n    <string>o-cy.glif</string>\n    <key>oacute</key>\n    <string>oacute.glif</string>\n    <key>oacute.loclPLK</key>\n    <string>oacute.loclP_L_K_.glif</string>\n    <key>obarred-cy</key>\n    <string>obarred-cy.glif</string>\n    <key>obreve</key>\n    <string>obreve.glif</string>\n    <key>ocircumflex</key>\n    <string>ocircumflex.glif</string>\n    <key>ocircumflexacute</key>\n    <string>ocircumflexacute.glif</string>\n    <key>ocircumflexdotbelow</key>\n    <string>ocircumflexdotbelow.glif</string>\n    <key>ocircumflexgrave</key>\n    <string>ocircumflexgrave.glif</string>\n    <key>ocircumflexhookabove</key>\n    <string>ocircumflexhookabove.glif</string>\n    <key>ocircumflextilde</key>\n    <string>ocircumflextilde.glif</string>\n    <key>odieresis</key>\n    <string>odieresis.glif</string>\n    <key>odotbelow</key>\n    <string>odotbelow.glif</string>\n    <key>oe</key>\n    <string>oe.glif</string>\n    <key>ogonek</key>\n    <string>ogonek.glif</string>\n    <key>ogonekcomb</key>\n    <string>ogonekcomb.glif</string>\n    <key>ograve</key>\n    <string>ograve.glif</string>\n    <key>ohookabove</key>\n    <string>ohookabove.glif</string>\n    <key>ohorn</key>\n    <string>ohorn.glif</string>\n    <key>ohornacute</key>\n    <string>ohornacute.glif</string>\n    <key>ohorndotbelow</key>\n    <string>ohorndotbelow.glif</string>\n    <key>ohorngrave</key>\n    <string>ohorngrave.glif</string>\n    <key>ohornhookabove</key>\n    <string>ohornhookabove.glif</string>\n    <key>ohorntilde</key>\n    <string>ohorntilde.glif</string>\n    <key>ohungarumlaut</key>\n    <string>ohungarumlaut.glif</string>\n    <key>omacron</key>\n    <string>omacron.glif</string>\n    <key>omacronacute</key>\n    <string>omacronacute.glif</string>\n    <key>omacrongrave</key>\n    <string>omacrongrave.glif</string>\n    <key>omega</key>\n    <string>omega.glif</string>\n    <key>omegatonos</key>\n    <string>omegatonos.glif</string>\n    <key>omicron</key>\n    <string>omicron.glif</string>\n    <key>omicrontonos</key>\n    <string>omicrontonos.glif</string>\n    <key>one</key>\n    <string>one.glif</string>\n    <key>one.dnom</key>\n    <string>one.dnom.glif</string>\n    <key>one.half</key>\n    <string>one.half.glif</string>\n    <key>one.numr</key>\n    <string>one.numr.glif</string>\n    <key>onedotenleader</key>\n    <string>onedotenleader.glif</string>\n    <key>oneeighth</key>\n    <string>oneeighth.glif</string>\n    <key>oneeighth.BRACKET.500</key>\n    <string>oneeighth.B_R_A_C_K_E_T_.500.glif</string>\n    <key>onehalf</key>\n    <string>onehalf.glif</string>\n    <key>onehalf.BRACKET.500</key>\n    <string>onehalf.B_R_A_C_K_E_T_.500.glif</string>\n    <key>oneinferior</key>\n    <string>oneinferior.glif</string>\n    <key>onequarter</key>\n    <string>onequarter.glif</string>\n    <key>onequarter.BRACKET.500</key>\n    <string>onequarter.B_R_A_C_K_E_T_.500.glif</string>\n    <key>onesuperior</key>\n    <string>onesuperior.glif</string>\n    <key>oogonek</key>\n    <string>oogonek.glif</string>\n    <key>oopen</key>\n    <string>oopen.glif</string>\n    <key>ordfeminine</key>\n    <string>ordfeminine.glif</string>\n    <key>ordmasculine</key>\n    <string>ordmasculine.glif</string>\n    <key>orthogonal</key>\n    <string>orthogonal.glif</string>\n    <key>oslash</key>\n    <string>oslash.glif</string>\n    <key>oslashacute</key>\n    <string>oslashacute.glif</string>\n    <key>otilde</key>\n    <string>otilde.glif</string>\n    <key>overline</key>\n    <string>overline.glif</string>\n    <key>p</key>\n    <string>p.glif</string>\n    <key>palochka-cy</key>\n    <string>palochka-cy.glif</string>\n    <key>paragraph</key>\n    <string>paragraph.glif</string>\n    <key>parenleft</key>\n    <string>parenleft.glif</string>\n    <key>parenleft_asterisk.liga</key>\n    <string>parenleft_asterisk.liga.glif</string>\n    <key>parenright</key>\n    <string>parenright.glif</string>\n    <key>partialdiff</key>\n    <string>partialdiff.glif</string>\n    <key>pe-cy</key>\n    <string>pe-cy.glif</string>\n    <key>pe-cy.loclSRB</key>\n    <string>pe-cy.loclS_R_B_.glif</string>\n    <key>percent</key>\n    <string>percent.glif</string>\n    <key>percent_percent.liga</key>\n    <string>percent_percent.liga.glif</string>\n    <key>period</key>\n    <string>period.glif</string>\n    <key>period_equal.liga</key>\n    <string>period_equal.liga.glif</string>\n    <key>period_hyphen.liga</key>\n    <string>period_hyphen.liga.glif</string>\n    <key>period_period.liga</key>\n    <string>period_period.liga.glif</string>\n    <key>period_period_equal.liga</key>\n    <string>period_period_equal.liga.glif</string>\n    <key>period_period_less.liga</key>\n    <string>period_period_less.liga.glif</string>\n    <key>period_period_period.liga</key>\n    <string>period_period_period.liga.glif</string>\n    <key>period_question.liga</key>\n    <string>period_question.liga.glif</string>\n    <key>periodcentered</key>\n    <string>periodcentered.glif</string>\n    <key>perispomenicomb</key>\n    <string>perispomenicomb.glif</string>\n    <key>perthousand</key>\n    <string>perthousand.glif</string>\n    <key>peseta</key>\n    <string>peseta.glif</string>\n    <key>peso</key>\n    <string>peso.glif</string>\n    <key>phi</key>\n    <string>phi.glif</string>\n    <key>pi</key>\n    <string>pi.glif</string>\n    <key>plus</key>\n    <string>plus.glif</string>\n    <key>plus_greater.liga</key>\n    <string>plus_greater.liga.glif</string>\n    <key>plus_plus.liga</key>\n    <string>plus_plus.liga.glif</string>\n    <key>plus_plus_plus.liga</key>\n    <string>plus_plus_plus.liga.glif</string>\n    <key>plusminus</key>\n    <string>plusminus.glif</string>\n    <key>prescription</key>\n    <string>prescription.glif</string>\n    <key>product</key>\n    <string>product.glif</string>\n    <key>psi</key>\n    <string>psi.glif</string>\n    <key>published</key>\n    <string>published.glif</string>\n    <key>punctuationspace</key>\n    <string>punctuationspace.glif</string>\n    <key>q</key>\n    <string>q.glif</string>\n    <key>question</key>\n    <string>question.glif</string>\n    <key>question_colon.liga</key>\n    <string>question_colon.liga.glif</string>\n    <key>question_equal.liga</key>\n    <string>question_equal.liga.glif</string>\n    <key>question_period.liga</key>\n    <string>question_period.liga.glif</string>\n    <key>question_question.liga</key>\n    <string>question_question.liga.glif</string>\n    <key>question_question_equal.liga</key>\n    <string>question_question_equal.liga.glif</string>\n    <key>questiondown</key>\n    <string>questiondown.glif</string>\n    <key>questiongreek</key>\n    <string>questiongreek.glif</string>\n    <key>quotedbl</key>\n    <string>quotedbl.glif</string>\n    <key>quotedblbase</key>\n    <string>quotedblbase.glif</string>\n    <key>quotedblleft</key>\n    <string>quotedblleft.glif</string>\n    <key>quotedblright</key>\n    <string>quotedblright.glif</string>\n    <key>quoteleft</key>\n    <string>quoteleft.glif</string>\n    <key>quotereversed</key>\n    <string>quotereversed.glif</string>\n    <key>quoteright</key>\n    <string>quoteright.glif</string>\n    <key>quotesinglbase</key>\n    <string>quotesinglbase.glif</string>\n    <key>quotesingle</key>\n    <string>quotesingle.glif</string>\n    <key>r</key>\n    <string>r.glif</string>\n    <key>r.salt</key>\n    <string>r.salt.glif</string>\n    <key>racute</key>\n    <string>racute.glif</string>\n    <key>racute.salt</key>\n    <string>racute.salt.glif</string>\n    <key>radical</key>\n    <string>radical.glif</string>\n    <key>ratio</key>\n    <string>ratio.glif</string>\n    <key>rcaron</key>\n    <string>rcaron.glif</string>\n    <key>rcaron.salt</key>\n    <string>rcaron.salt.glif</string>\n    <key>rcommaaccent</key>\n    <string>rcommaaccent.glif</string>\n    <key>rcommaaccent.salt</key>\n    <string>rcommaaccent.salt.glif</string>\n    <key>rdotbelow</key>\n    <string>rdotbelow.glif</string>\n    <key>rdotbelow.salt</key>\n    <string>rdotbelow.salt.glif</string>\n    <key>recordSeparatorControl</key>\n    <string>recordS_eparatorC_ontrol.glif</string>\n    <key>registered</key>\n    <string>registered.glif</string>\n    <key>replacementCharacter</key>\n    <string>replacementC_haracter.glif</string>\n    <key>returnsymbol</key>\n    <string>returnsymbol.glif</string>\n    <key>reversedRotatedFloralHeartBullet</key>\n    <string>reversedR_otatedF_loralH_eartB_ullet.glif</string>\n    <key>rho</key>\n    <string>rho.glif</string>\n    <key>rightArrow</key>\n    <string>rightA_rrow.glif</string>\n    <key>rightBlackPointer</key>\n    <string>rightB_lackP_ointer.glif</string>\n    <key>rightBlackSmallTriangle</key>\n    <string>rightB_lackS_mallT_riangle.glif</string>\n    <key>rightBlackTriangle</key>\n    <string>rightB_lackT_riangle.glif</string>\n    <key>rightBlock</key>\n    <string>rightB_lock.glif</string>\n    <key>rightBlock.stypo</key>\n    <string>rightB_lock.stypo.glif</string>\n    <key>rightHalfBlackCircle</key>\n    <string>rightH_alfB_lackC_ircle.glif</string>\n    <key>rightHalfBlackDiamond</key>\n    <string>rightH_alfB_lackD_iamond.glif</string>\n    <key>rightHalfBlackSquare</key>\n    <string>rightH_alfB_lackS_quare.glif</string>\n    <key>rightHalfBlackWhiteCircle</key>\n    <string>rightH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>rightOneEighthBlock</key>\n    <string>rightO_neE_ighthB_lock.glif</string>\n    <key>rightOneEighthBlock.stypo</key>\n    <string>rightO_neE_ighthB_lock.stypo.glif</string>\n    <key>rightWhitePointer</key>\n    <string>rightW_hiteP_ointer.glif</string>\n    <key>rightWhiteSmallTriangle</key>\n    <string>rightW_hiteS_mallT_riangle.glif</string>\n    <key>rightWhiteTriangle</key>\n    <string>rightW_hiteT_riangle.glif</string>\n    <key>ring</key>\n    <string>ring.glif</string>\n    <key>ringbelowcomb</key>\n    <string>ringbelowcomb.glif</string>\n    <key>ringcomb</key>\n    <string>ringcomb.glif</string>\n    <key>ringcomb.case</key>\n    <string>ringcomb.case.glif</string>\n    <key>rotatedFloralHeartBullet</key>\n    <string>rotatedF_loralH_eartB_ullet.glif</string>\n    <key>ruble</key>\n    <string>ruble.glif</string>\n    <key>rupee</key>\n    <string>rupee.glif</string>\n    <key>rupeeIndian</key>\n    <string>rupeeI_ndian.glif</string>\n    <key>s</key>\n    <string>s.glif</string>\n    <key>s.salt</key>\n    <string>s.salt.glif</string>\n    <key>sacute</key>\n    <string>sacute.glif</string>\n    <key>sacute.loclPLK</key>\n    <string>sacute.loclP_L_K_.glif</string>\n    <key>sacute.salt</key>\n    <string>sacute.salt.glif</string>\n    <key>scaron</key>\n    <string>scaron.glif</string>\n    <key>scaron.salt</key>\n    <string>scaron.salt.glif</string>\n    <key>scedilla</key>\n    <string>scedilla.glif</string>\n    <key>scedilla.salt</key>\n    <string>scedilla.salt.glif</string>\n    <key>schwa</key>\n    <string>schwa.glif</string>\n    <key>schwa-cy</key>\n    <string>schwa-cy.glif</string>\n    <key>scircumflex</key>\n    <string>scircumflex.glif</string>\n    <key>scircumflex.salt</key>\n    <string>scircumflex.salt.glif</string>\n    <key>scommaaccent</key>\n    <string>scommaaccent.glif</string>\n    <key>scommaaccent.salt</key>\n    <string>scommaaccent.salt.glif</string>\n    <key>sdotbelow</key>\n    <string>sdotbelow.glif</string>\n    <key>sdotbelow.salt</key>\n    <string>sdotbelow.salt.glif</string>\n    <key>second</key>\n    <string>second.glif</string>\n    <key>section</key>\n    <string>section.glif</string>\n    <key>semicolon</key>\n    <string>semicolon.glif</string>\n    <key>semicolon_semicolon.liga</key>\n    <string>semicolon_semicolon.liga.glif</string>\n    <key>seven</key>\n    <string>seven.glif</string>\n    <key>seven.dnom</key>\n    <string>seven.dnom.glif</string>\n    <key>seven.numr</key>\n    <string>seven.numr.glif</string>\n    <key>seveneighths</key>\n    <string>seveneighths.glif</string>\n    <key>seveneighths.BRACKET.500</key>\n    <string>seveneighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>seveninferior</key>\n    <string>seveninferior.glif</string>\n    <key>sevensuperior</key>\n    <string>sevensuperior.glif</string>\n    <key>sha-cy</key>\n    <string>sha-cy.glif</string>\n    <key>shadedark</key>\n    <string>shadedark.glif</string>\n    <key>shadedark.stypo</key>\n    <string>shadedark.stypo.glif</string>\n    <key>shadelight</key>\n    <string>shadelight.glif</string>\n    <key>shadelight.stypo</key>\n    <string>shadelight.stypo.glif</string>\n    <key>shademedium</key>\n    <string>shademedium.glif</string>\n    <key>shademedium.stypo</key>\n    <string>shademedium.stypo.glif</string>\n    <key>shcha-cy</key>\n    <string>shcha-cy.glif</string>\n    <key>sheqel</key>\n    <string>sheqel.glif</string>\n    <key>shha-cy</key>\n    <string>shha-cy.glif</string>\n    <key>shha-cy.alt</key>\n    <string>shha-cy.alt.glif</string>\n    <key>shiftInControl</key>\n    <string>shiftI_nC_ontrol.glif</string>\n    <key>shiftInControl.ss20</key>\n    <string>shiftI_nC_ontrol.ss20.glif</string>\n    <key>shiftOutControl</key>\n    <string>shiftO_utC_ontrol.glif</string>\n    <key>shiftOutControl.ss20</key>\n    <string>shiftO_utC_ontrol.ss20.glif</string>\n    <key>sigma</key>\n    <string>sigma.glif</string>\n    <key>sigmafinal</key>\n    <string>sigmafinal.glif</string>\n    <key>six</key>\n    <string>six.glif</string>\n    <key>six.dnom</key>\n    <string>six.dnom.glif</string>\n    <key>six.numr</key>\n    <string>six.numr.glif</string>\n    <key>sixinferior</key>\n    <string>sixinferior.glif</string>\n    <key>sixsuperior</key>\n    <string>sixsuperior.glif</string>\n    <key>slash</key>\n    <string>slash.glif</string>\n    <key>slash_asterisk.liga</key>\n    <string>slash_asterisk.liga.glif</string>\n    <key>slash_backslash.liga</key>\n    <string>slash_backslash.liga.glif</string>\n    <key>slash_equal_end.seq</key>\n    <string>slash_equal_end.seq.glif</string>\n    <key>slash_equal_middle.seq</key>\n    <string>slash_equal_middle.seq.glif</string>\n    <key>slash_equal_start.seq</key>\n    <string>slash_equal_start.seq.glif</string>\n    <key>slash_greater.liga</key>\n    <string>slash_greater.liga.glif</string>\n    <key>slash_slash.liga</key>\n    <string>slash_slash.liga.glif</string>\n    <key>slash_slash_equal_end.seq</key>\n    <string>slash_slash_equal_end.seq.glif</string>\n    <key>slash_slash_equal_middle.seq</key>\n    <string>slash_slash_equal_middle.seq.glif</string>\n    <key>slash_slash_equal_start.seq</key>\n    <string>slash_slash_equal_start.seq.glif</string>\n    <key>slash_slash_slash.liga</key>\n    <string>slash_slash_slash.liga.glif</string>\n    <key>softhyphen</key>\n    <string>softhyphen.glif</string>\n    <key>softsign-cy</key>\n    <string>softsign-cy.glif</string>\n    <key>space</key>\n    <string>space.glif</string>\n    <key>spaceControl</key>\n    <string>spaceC_ontrol.glif</string>\n    <key>spadeBlackSuit</key>\n    <string>spadeB_lackS_uit.glif</string>\n    <key>startOfHeadingControl</key>\n    <string>startO_fH_eadingC_ontrol.glif</string>\n    <key>startOfHeadingControl.ss20</key>\n    <string>startO_fH_eadingC_ontrol.ss20.glif</string>\n    <key>startOfTextControl</key>\n    <string>startO_fT_extC_ontrol.glif</string>\n    <key>startOfTextControl.ss20</key>\n    <string>startO_fT_extC_ontrol.ss20.glif</string>\n    <key>sterling</key>\n    <string>sterling.glif</string>\n    <key>strictlyequivalentto</key>\n    <string>strictlyequivalentto.glif</string>\n    <key>substituteControl</key>\n    <string>substituteC_ontrol.glif</string>\n    <key>substituteControl.ss20</key>\n    <string>substituteC_ontrol.ss20.glif</string>\n    <key>substituteFormTwoControl</key>\n    <string>substituteF_ormT_woC_ontrol.glif</string>\n    <key>summation</key>\n    <string>summation.glif</string>\n    <key>sunWithRays</key>\n    <string>sunW_ithR_ays.glif</string>\n    <key>synchronousIdleControl</key>\n    <string>synchronousI_dleC_ontrol.glif</string>\n    <key>synchronousIdleControl.ss20</key>\n    <string>synchronousI_dleC_ontrol.ss20.glif</string>\n    <key>t</key>\n    <string>t.glif</string>\n    <key>tau</key>\n    <string>tau.glif</string>\n    <key>tbar</key>\n    <string>tbar.glif</string>\n    <key>tcaron</key>\n    <string>tcaron.glif</string>\n    <key>tcedilla</key>\n    <string>tcedilla.glif</string>\n    <key>tcommaaccent</key>\n    <string>tcommaaccent.glif</string>\n    <key>te-cy</key>\n    <string>te-cy.glif</string>\n    <key>te-cy.loclSRB</key>\n    <string>te-cy.loclS_R_B_.glif</string>\n    <key>tenge</key>\n    <string>tenge.glif</string>\n    <key>tesh</key>\n    <string>tesh.glif</string>\n    <key>theta</key>\n    <string>theta.glif</string>\n    <key>thetamod</key>\n    <string>thetamod.glif</string>\n    <key>thorn</key>\n    <string>thorn.glif</string>\n    <key>three</key>\n    <string>three.glif</string>\n    <key>three.dnom</key>\n    <string>three.dnom.glif</string>\n    <key>three.half</key>\n    <string>three.half.glif</string>\n    <key>three.numr</key>\n    <string>three.numr.glif</string>\n    <key>threeeighths</key>\n    <string>threeeighths.glif</string>\n    <key>threeeighths.BRACKET.500</key>\n    <string>threeeighths.B_R_A_C_K_E_T_.500.glif</string>\n    <key>threeinferior</key>\n    <string>threeinferior.glif</string>\n    <key>threequarters</key>\n    <string>threequarters.glif</string>\n    <key>threequarters.BRACKET.500</key>\n    <string>threequarters.B_R_A_C_K_E_T_.500.glif</string>\n    <key>threesuperior</key>\n    <string>threesuperior.glif</string>\n    <key>tilde</key>\n    <string>tilde.glif</string>\n    <key>tildecomb</key>\n    <string>tildecomb.glif</string>\n    <key>tildecomb.case</key>\n    <string>tildecomb.case.glif</string>\n    <key>tonos</key>\n    <string>tonos.glif</string>\n    <key>tonos.case</key>\n    <string>tonos.case.glif</string>\n    <key>topHalfBlackCircle</key>\n    <string>topH_alfB_lackC_ircle.glif</string>\n    <key>topHalfBlackDiamond</key>\n    <string>topH_alfB_lackD_iamond.glif</string>\n    <key>topHalfWhiteSquare</key>\n    <string>topH_alfW_hiteS_quare.glif</string>\n    <key>topRightHalfWhiteSquare</key>\n    <string>topR_ightH_alfW_hiteS_quare.glif</string>\n    <key>trademark</key>\n    <string>trademark.glif</string>\n    <key>tse-cy</key>\n    <string>tse-cy.glif</string>\n    <key>tshe-cy</key>\n    <string>tshe-cy.glif</string>\n    <key>tugrik</key>\n    <string>tugrik.glif</string>\n    <key>two</key>\n    <string>two.glif</string>\n    <key>two.dnom</key>\n    <string>two.dnom.glif</string>\n    <key>two.half</key>\n    <string>two.half.glif</string>\n    <key>two.numr</key>\n    <string>two.numr.glif</string>\n    <key>twoinferior</key>\n    <string>twoinferior.glif</string>\n    <key>twosuperior</key>\n    <string>twosuperior.glif</string>\n    <key>u</key>\n    <string>u.glif</string>\n    <key>u-cy</key>\n    <string>u-cy.glif</string>\n    <key>uacute</key>\n    <string>uacute.glif</string>\n    <key>ubreve</key>\n    <string>ubreve.glif</string>\n    <key>ucircumflex</key>\n    <string>ucircumflex.glif</string>\n    <key>udieresis</key>\n    <string>udieresis.glif</string>\n    <key>udotbelow</key>\n    <string>udotbelow.glif</string>\n    <key>ugrave</key>\n    <string>ugrave.glif</string>\n    <key>uhookabove</key>\n    <string>uhookabove.glif</string>\n    <key>uhorn</key>\n    <string>uhorn.glif</string>\n    <key>uhornacute</key>\n    <string>uhornacute.glif</string>\n    <key>uhorndotbelow</key>\n    <string>uhorndotbelow.glif</string>\n    <key>uhorngrave</key>\n    <string>uhorngrave.glif</string>\n    <key>uhornhookabove</key>\n    <string>uhornhookabove.glif</string>\n    <key>uhorntilde</key>\n    <string>uhorntilde.glif</string>\n    <key>uhungarumlaut</key>\n    <string>uhungarumlaut.glif</string>\n    <key>umacron</key>\n    <string>umacron.glif</string>\n    <key>umacron-cy</key>\n    <string>umacron-cy.glif</string>\n    <key>underscore</key>\n    <string>underscore.glif</string>\n    <key>underscore_end.seq</key>\n    <string>underscore_end.seq.glif</string>\n    <key>underscore_middle.seq</key>\n    <string>underscore_middle.seq.glif</string>\n    <key>underscore_start.seq</key>\n    <string>underscore_start.seq.glif</string>\n    <key>underscore_underscore.liga</key>\n    <string>underscore_underscore.liga.glif</string>\n    <key>underscoredbl</key>\n    <string>underscoredbl.glif</string>\n    <key>unitSeparatorControl</key>\n    <string>unitS_eparatorC_ontrol.glif</string>\n    <key>uogonek</key>\n    <string>uogonek.glif</string>\n    <key>upArrow</key>\n    <string>upA_rrow.glif</string>\n    <key>upBlackSmallTriangle</key>\n    <string>upB_lackS_mallT_riangle.glif</string>\n    <key>upBlackTriangle</key>\n    <string>upB_lackT_riangle.glif</string>\n    <key>upDashArrow</key>\n    <string>upD_ashA_rrow.glif</string>\n    <key>upDownArrow</key>\n    <string>upD_ownA_rrow.glif</string>\n    <key>upDownbaseArrow</key>\n    <string>upD_ownbaseA_rrow.glif</string>\n    <key>upLeftHalfBlackTriangle</key>\n    <string>upL_eftH_alfB_lackT_riangle.glif</string>\n    <key>upRightHalfBlackTriangle</key>\n    <string>upR_ightH_alfB_lackT_riangle.glif</string>\n    <key>upWhiteSmallTriangle</key>\n    <string>upW_hiteS_mallT_riangle.glif</string>\n    <key>upWhiteTriangle</key>\n    <string>upW_hiteT_riangle.glif</string>\n    <key>upWhiteTriangleWithDot</key>\n    <string>upW_hiteT_riangleW_ithD_ot.glif</string>\n    <key>upperHalfArc</key>\n    <string>upperH_alfA_rc.glif</string>\n    <key>upperHalfBlackWhiteCircle</key>\n    <string>upperH_alfB_lackW_hiteC_ircle.glif</string>\n    <key>upperHalfBlock</key>\n    <string>upperH_alfB_lock.glif</string>\n    <key>upperHalfBlock.stypo</key>\n    <string>upperH_alfB_lock.stypo.glif</string>\n    <key>upperHalfInverseWhiteCircle</key>\n    <string>upperH_alfI_nverseW_hiteC_ircle.glif</string>\n    <key>upperLeftAndLowerLeftAndLowerRightBlock</key>\n    <string>upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftAndLowerRightBlock</key>\n    <string>upperL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftAndUpperRightAndLowerLeftBlock</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif</string>\n    <key>upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif</string>\n    <key>upperLeftAndUpperRightAndLowerRightBlock</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n    <string>upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperLeftArc</key>\n    <string>upperL_eftA_rc.glif</string>\n    <key>upperLeftBlackTriangle</key>\n    <string>upperL_eftB_lackT_riangle.glif</string>\n    <key>upperLeftBlock</key>\n    <string>upperL_eftB_lock.glif</string>\n    <key>upperLeftBlock.stypo</key>\n    <string>upperL_eftB_lock.stypo.glif</string>\n    <key>upperLeftDiagonalHalfBlackSquare</key>\n    <string>upperL_eftD_iagonalH_alfB_lackS_quare.glif</string>\n    <key>upperLeftQuadrantWhiteCircle</key>\n    <string>upperL_eftQ_uadrantW_hiteC_ircle.glif</string>\n    <key>upperLeftTriangle</key>\n    <string>upperL_eftT_riangle.glif</string>\n    <key>upperLeftWhiteCircle</key>\n    <string>upperL_eftW_hiteC_ircle.glif</string>\n    <key>upperOneEighthBlock</key>\n    <string>upperO_neE_ighthB_lock.glif</string>\n    <key>upperOneEighthBlock.stypo</key>\n    <string>upperO_neE_ighthB_lock.stypo.glif</string>\n    <key>upperRightAndLowerLeftAndLowerRightBlock</key>\n    <string>upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif</string>\n    <key>upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n    <string>upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif</string>\n    <key>upperRightAndLowerLeftBlock</key>\n    <string>upperR_ightA_ndL_owerL_eftB_lock.glif</string>\n    <key>upperRightAndLowerLeftBlock.stypo</key>\n    <string>upperR_ightA_ndL_owerL_eftB_lock.stypo.glif</string>\n    <key>upperRightArc</key>\n    <string>upperR_ightA_rc.glif</string>\n    <key>upperRightBlackCircle</key>\n    <string>upperR_ightB_lackC_ircle.glif</string>\n    <key>upperRightBlackTriangle</key>\n    <string>upperR_ightB_lackT_riangle.glif</string>\n    <key>upperRightBlock</key>\n    <string>upperR_ightB_lock.glif</string>\n    <key>upperRightBlock.stypo</key>\n    <string>upperR_ightB_lock.stypo.glif</string>\n    <key>upperRightQuadrantWhiteCircle</key>\n    <string>upperR_ightQ_uadrantW_hiteC_ircle.glif</string>\n    <key>upperRightTriangle</key>\n    <string>upperR_ightT_riangle.glif</string>\n    <key>upperlefttolowerrightFillSquare</key>\n    <string>upperlefttolowerrightF_illS_quare.glif</string>\n    <key>upperrighttolowerleftFillSquare</key>\n    <string>upperrighttolowerleftF_illS_quare.glif</string>\n    <key>upsilon</key>\n    <string>upsilon.glif</string>\n    <key>upsilon-latin</key>\n    <string>upsilon-latin.glif</string>\n    <key>upsilondieresis</key>\n    <string>upsilondieresis.glif</string>\n    <key>upsilondieresistonos</key>\n    <string>upsilondieresistonos.glif</string>\n    <key>upsilontonos</key>\n    <string>upsilontonos.glif</string>\n    <key>uring</key>\n    <string>uring.glif</string>\n    <key>ushort-cy</key>\n    <string>ushort-cy.glif</string>\n    <key>ustraight-cy</key>\n    <string>ustraight-cy.glif</string>\n    <key>ustraightstroke-cy</key>\n    <string>ustraightstroke-cy.glif</string>\n    <key>utilde</key>\n    <string>utilde.glif</string>\n    <key>v</key>\n    <string>v.glif</string>\n    <key>ve-cy</key>\n    <string>ve-cy.glif</string>\n    <key>ve-cy.salt</key>\n    <string>ve-cy.salt.glif</string>\n    <key>vectorOrCrossProduct</key>\n    <string>vectorO_rC_rossP_roduct.glif</string>\n    <key>venus</key>\n    <string>venus.glif</string>\n    <key>verticalBisectingLineWhiteSquare</key>\n    <string>verticalB_isectingL_ineW_hiteS_quare.glif</string>\n    <key>verticalFillCircle</key>\n    <string>verticalF_illC_ircle.glif</string>\n    <key>verticalFillSquare</key>\n    <string>verticalF_illS_quare.glif</string>\n    <key>verticalTabulationControl</key>\n    <string>verticalT_abulationC_ontrol.glif</string>\n    <key>verticalTabulationControl.ss20</key>\n    <string>verticalT_abulationC_ontrol.ss20.glif</string>\n    <key>vhook</key>\n    <string>vhook.glif</string>\n    <key>vturned</key>\n    <string>vturned.glif</string>\n    <key>w</key>\n    <string>w.glif</string>\n    <key>w_w_w.liga</key>\n    <string>w_w_w.liga.glif</string>\n    <key>wacute</key>\n    <string>wacute.glif</string>\n    <key>wcircumflex</key>\n    <string>wcircumflex.glif</string>\n    <key>wdieresis</key>\n    <string>wdieresis.glif</string>\n    <key>wgrave</key>\n    <string>wgrave.glif</string>\n    <key>whiteBullet</key>\n    <string>whiteB_ullet.glif</string>\n    <key>whiteCircle</key>\n    <string>whiteC_ircle.glif</string>\n    <key>whiteDiamond</key>\n    <string>whiteD_iamond.glif</string>\n    <key>whiteHexagon</key>\n    <string>whiteH_exagon.glif</string>\n    <key>whiteHorizontalEllipse</key>\n    <string>whiteH_orizontalE_llipse.glif</string>\n    <key>whiteInBlackSquare</key>\n    <string>whiteI_nB_lackS_quare.glif</string>\n    <key>whiteLargeSquare</key>\n    <string>whiteL_argeS_quare.glif</string>\n    <key>whiteLowerLeftQuadrantSquare</key>\n    <string>whiteL_owerL_eftQ_uadrantS_quare.glif</string>\n    <key>whiteLowerRightQuadrantSquare</key>\n    <string>whiteL_owerR_ightQ_uadrantS_quare.glif</string>\n    <key>whiteMediumDiamond</key>\n    <string>whiteM_ediumD_iamond.glif</string>\n    <key>whiteMediumLozenge</key>\n    <string>whiteM_ediumL_ozenge.glif</string>\n    <key>whiteParallelogram</key>\n    <string>whiteP_arallelogram.glif</string>\n    <key>whitePentagon</key>\n    <string>whiteP_entagon.glif</string>\n    <key>whiteRect</key>\n    <string>whiteR_ect.glif</string>\n    <key>whiteRoundedCornersSquare</key>\n    <string>whiteR_oundedC_ornersS_quare.glif</string>\n    <key>whiteSmallLozenge</key>\n    <string>whiteS_mallL_ozenge.glif</string>\n    <key>whiteSmallSquare</key>\n    <string>whiteS_mallS_quare.glif</string>\n    <key>whiteSmilingFace</key>\n    <string>whiteS_milingF_ace.glif</string>\n    <key>whiteSquare</key>\n    <string>whiteS_quare.glif</string>\n    <key>whiteUpperLeftQuadrantSquare</key>\n    <string>whiteU_pperL_eftQ_uadrantS_quare.glif</string>\n    <key>whiteUpperRightQuadrantSquare</key>\n    <string>whiteU_pperR_ightQ_uadrantS_quare.glif</string>\n    <key>whiteVerticalEllipse</key>\n    <string>whiteV_erticalE_llipse.glif</string>\n    <key>whiteVerticalRect</key>\n    <string>whiteV_erticalR_ect.glif</string>\n    <key>whiteVerysmallSquare</key>\n    <string>whiteV_erysmallS_quare.glif</string>\n    <key>wmod</key>\n    <string>wmod.glif</string>\n    <key>won</key>\n    <string>won.glif</string>\n    <key>x</key>\n    <string>x.glif</string>\n    <key>x.multiply</key>\n    <string>x.multiply.glif</string>\n    <key>xi</key>\n    <string>xi.glif</string>\n    <key>y</key>\n    <string>y.glif</string>\n    <key>yacute</key>\n    <string>yacute.glif</string>\n    <key>ycircumflex</key>\n    <string>ycircumflex.glif</string>\n    <key>ydieresis</key>\n    <string>ydieresis.glif</string>\n    <key>ydotbelow</key>\n    <string>ydotbelow.glif</string>\n    <key>yen</key>\n    <string>yen.glif</string>\n    <key>yeru-cy</key>\n    <string>yeru-cy.glif</string>\n    <key>ygrave</key>\n    <string>ygrave.glif</string>\n    <key>yhookabove</key>\n    <string>yhookabove.glif</string>\n    <key>yi-cy</key>\n    <string>yi-cy.glif</string>\n    <key>ymacron</key>\n    <string>ymacron.glif</string>\n    <key>ymod</key>\n    <string>ymod.glif</string>\n    <key>ytilde</key>\n    <string>ytilde.glif</string>\n    <key>z</key>\n    <string>z.glif</string>\n    <key>zacute</key>\n    <string>zacute.glif</string>\n    <key>zacute.loclPLK</key>\n    <string>zacute.loclP_L_K_.glif</string>\n    <key>zcaron</key>\n    <string>zcaron.glif</string>\n    <key>zdotaccent</key>\n    <string>zdotaccent.glif</string>\n    <key>ze-cy</key>\n    <string>ze-cy.glif</string>\n    <key>ze-cy.loclBGR</key>\n    <string>ze-cy.loclB_G_R_.glif</string>\n    <key>ze-cy.salt</key>\n    <string>ze-cy.salt.glif</string>\n    <key>zero</key>\n    <string>zero.glif</string>\n    <key>zero.dnom</key>\n    <string>zero.dnom.glif</string>\n    <key>zero.numr</key>\n    <string>zero.numr.glif</string>\n    <key>zero.zero</key>\n    <string>zero.zero.glif</string>\n    <key>zeroinferior</key>\n    <string>zeroinferior.glif</string>\n    <key>zerosuperior</key>\n    <string>zerosuperior.glif</string>\n    <key>zeta</key>\n    <string>zeta.glif</string>\n    <key>zhe-cy</key>\n    <string>zhe-cy.glif</string>\n    <key>zhe-cy.loclBGR</key>\n    <string>zhe-cy.loclB_G_R_.glif</string>\n    <key>zhedescender-cy</key>\n    <string>zhedescender-cy.glif</string>\n    <key>zmod</key>\n    <string>zmod.glif</string>\n    <key>checkerBoardDeleteApple2</key>\n    <string>checkerB_oardD_eleteA_pple2.glif</string>\n    <key>checkerBoardDeleteTrs80</key>\n    <string>checkerB_oardD_eleteT_rs80.glif</string>\n    <key>checkerBoardDeleteAmstradCpc</key>\n    <string>checkerB_oardD_eleteA_mstradC_pc.glif</string>\n    <key>checkerBoardDeleteAmstradCpc.stypo</key>\n    <string>checkerB_oardD_eleteA_mstradC_pc.stypo.glif</string>\n    <key>checkerBoardFill</key>\n    <string>checkerB_oardF_ill.glif</string>\n    <key>checkerBoardFill.stypo</key>\n    <string>checkerB_oardF_ill.stypo.glif</string>\n    <key>checkerBoardFillInverse</key>\n    <string>checkerB_oardF_illI_nverse.glif</string>\n    <key>checkerBoardFillInverse.stypo</key>\n    <string>checkerB_oardF_illI_nverse.stypo.glif</string>\n    <key>blockQuadrant-UC</key>\n    <string>blockQ_uadrant-UC.glif</string>\n    <key>blockQuadrant-UC.stypo</key>\n    <string>blockQ_uadrant-UC.stypo.glif</string>\n    <key>blockQuadrant-LC</key>\n    <string>blockQ_uadrant-LC.glif</string>\n    <key>blockQuadrant-LC.stypo</key>\n    <string>blockQ_uadrant-LC.stypo.glif</string>\n    <key>blockQuadrant-ML</key>\n    <string>blockQ_uadrant-ML.glif</string>\n    <key>blockQuadrant-ML.stypo</key>\n    <string>blockQ_uadrant-ML.stypo.glif</string>\n    <key>blockQuadrant-MR</key>\n    <string>blockQ_uadrant-MR.glif</string>\n    <key>blockQuadrant-MR.stypo</key>\n    <string>blockQ_uadrant-MR.stypo.glif</string>\n    <key>blockTriangle-1</key>\n    <string>blockT_riangle-1.glif</string>\n    <key>blockTriangle-1.stypo</key>\n    <string>blockT_riangle-1.stypo.glif</string>\n    <key>blockTriangle-2</key>\n    <string>blockT_riangle-2.glif</string>\n    <key>blockTriangle-2.stypo</key>\n    <string>blockT_riangle-2.stypo.glif</string>\n    <key>blockTriangle-3</key>\n    <string>blockT_riangle-3.glif</string>\n    <key>blockTriangle-3.stypo</key>\n    <string>blockT_riangle-3.stypo.glif</string>\n    <key>blockTriangle-4</key>\n    <string>blockT_riangle-4.glif</string>\n    <key>blockTriangle-4.stypo</key>\n    <string>blockT_riangle-4.stypo.glif</string>\n    <key>blockTriangle-14</key>\n    <string>blockT_riangle-14.glif</string>\n    <key>blockTriangle-14.stypo</key>\n    <string>blockT_riangle-14.stypo.glif</string>\n    <key>blockTriangle-23</key>\n    <string>blockT_riangle-23.glif</string>\n    <key>blockTriangle-23.stypo</key>\n    <string>blockT_riangle-23.stypo.glif</string>\n    <key>blockTriangle-123</key>\n    <string>blockT_riangle-123.glif</string>\n    <key>blockTriangle-123.stypo</key>\n    <string>blockT_riangle-123.stypo.glif</string>\n    <key>blockTriangle-124</key>\n    <string>blockT_riangle-124.glif</string>\n    <key>blockTriangle-124.stypo</key>\n    <string>blockT_riangle-124.stypo.glif</string>\n    <key>blockTriangle-134</key>\n    <string>blockT_riangle-134.glif</string>\n    <key>blockTriangle-134.stypo</key>\n    <string>blockT_riangle-134.stypo.glif</string>\n    <key>blockTriangle-234</key>\n    <string>blockT_riangle-234.glif</string>\n    <key>blockTriangle-234.stypo</key>\n    <string>blockT_riangle-234.stypo.glif</string>\n    <key>blockCircle-UC</key>\n    <string>blockC_ircle-UC.glif</string>\n    <key>blockCircle-UC.stypo</key>\n    <string>blockC_ircle-UC.stypo.glif</string>\n    <key>blockCircle-LC</key>\n    <string>blockC_ircle-LC.glif</string>\n    <key>blockCircle-LC.stypo</key>\n    <string>blockC_ircle-LC.stypo.glif</string>\n    <key>blockCircle-ML</key>\n    <string>blockC_ircle-ML.glif</string>\n    <key>blockCircle-ML.stypo</key>\n    <string>blockC_ircle-ML.stypo.glif</string>\n    <key>blockCircle-MR</key>\n    <string>blockC_ircle-MR.glif</string>\n    <key>blockCircle-MR.stypo</key>\n    <string>blockC_ircle-MR.stypo.glif</string>\n    <key>blockCircle-1</key>\n    <string>blockC_ircle-1.glif</string>\n    <key>blockCircle-1.stypo</key>\n    <string>blockC_ircle-1.stypo.glif</string>\n    <key>blockCircle-2</key>\n    <string>blockC_ircle-2.glif</string>\n    <key>blockCircle-2.stypo</key>\n    <string>blockC_ircle-2.stypo.glif</string>\n    <key>blockCircle-3</key>\n    <string>blockC_ircle-3.glif</string>\n    <key>blockCircle-3.stypo</key>\n    <string>blockC_ircle-3.stypo.glif</string>\n    <key>blockCircle-4</key>\n    <string>blockC_ircle-4.glif</string>\n    <key>blockCircle-4.stypo</key>\n    <string>blockC_ircle-4.stypo.glif</string>\n    <key>blockSextant-1</key>\n    <string>blockS_extant-1.glif</string>\n    <key>blockSextant-1.stypo</key>\n    <string>blockS_extant-1.stypo.glif</string>\n    <key>blockSextant-2</key>\n    <string>blockS_extant-2.glif</string>\n    <key>blockSextant-2.stypo</key>\n    <string>blockS_extant-2.stypo.glif</string>\n    <key>blockSextant-12</key>\n    <string>blockS_extant-12.glif</string>\n    <key>blockSextant-12.stypo</key>\n    <string>blockS_extant-12.stypo.glif</string>\n    <key>blockSextant-3</key>\n    <string>blockS_extant-3.glif</string>\n    <key>blockSextant-3.stypo</key>\n    <string>blockS_extant-3.stypo.glif</string>\n    <key>blockSextant-13</key>\n    <string>blockS_extant-13.glif</string>\n    <key>blockSextant-13.stypo</key>\n    <string>blockS_extant-13.stypo.glif</string>\n    <key>blockSextant-23</key>\n    <string>blockS_extant-23.glif</string>\n    <key>blockSextant-23.stypo</key>\n    <string>blockS_extant-23.stypo.glif</string>\n    <key>blockSextant-123</key>\n    <string>blockS_extant-123.glif</string>\n    <key>blockSextant-123.stypo</key>\n    <string>blockS_extant-123.stypo.glif</string>\n    <key>blockSextant-4</key>\n    <string>blockS_extant-4.glif</string>\n    <key>blockSextant-4.stypo</key>\n    <string>blockS_extant-4.stypo.glif</string>\n    <key>blockSextant-14</key>\n    <string>blockS_extant-14.glif</string>\n    <key>blockSextant-14.stypo</key>\n    <string>blockS_extant-14.stypo.glif</string>\n    <key>blockSextant-24</key>\n    <string>blockS_extant-24.glif</string>\n    <key>blockSextant-24.stypo</key>\n    <string>blockS_extant-24.stypo.glif</string>\n    <key>blockSextant-124</key>\n    <string>blockS_extant-124.glif</string>\n    <key>blockSextant-124.stypo</key>\n    <string>blockS_extant-124.stypo.glif</string>\n    <key>blockSextant-34</key>\n    <string>blockS_extant-34.glif</string>\n    <key>blockSextant-34.stypo</key>\n    <string>blockS_extant-34.stypo.glif</string>\n    <key>blockSextant-134</key>\n    <string>blockS_extant-134.glif</string>\n    <key>blockSextant-134.stypo</key>\n    <string>blockS_extant-134.stypo.glif</string>\n    <key>blockSextant-234</key>\n    <string>blockS_extant-234.glif</string>\n    <key>blockSextant-234.stypo</key>\n    <string>blockS_extant-234.stypo.glif</string>\n    <key>blockSextant-1234</key>\n    <string>blockS_extant-1234.glif</string>\n    <key>blockSextant-1234.stypo</key>\n    <string>blockS_extant-1234.stypo.glif</string>\n    <key>blockSextant-5</key>\n    <string>blockS_extant-5.glif</string>\n    <key>blockSextant-5.stypo</key>\n    <string>blockS_extant-5.stypo.glif</string>\n    <key>blockSextant-15</key>\n    <string>blockS_extant-15.glif</string>\n    <key>blockSextant-15.stypo</key>\n    <string>blockS_extant-15.stypo.glif</string>\n    <key>blockSextant-25</key>\n    <string>blockS_extant-25.glif</string>\n    <key>blockSextant-25.stypo</key>\n    <string>blockS_extant-25.stypo.glif</string>\n    <key>blockSextant-125</key>\n    <string>blockS_extant-125.glif</string>\n    <key>blockSextant-125.stypo</key>\n    <string>blockS_extant-125.stypo.glif</string>\n    <key>blockSextant-35</key>\n    <string>blockS_extant-35.glif</string>\n    <key>blockSextant-35.stypo</key>\n    <string>blockS_extant-35.stypo.glif</string>\n    <key>blockSextant-235</key>\n    <string>blockS_extant-235.glif</string>\n    <key>blockSextant-235.stypo</key>\n    <string>blockS_extant-235.stypo.glif</string>\n    <key>blockSextant-1235</key>\n    <string>blockS_extant-1235.glif</string>\n    <key>blockSextant-1235.stypo</key>\n    <string>blockS_extant-1235.stypo.glif</string>\n    <key>blockSextant-45</key>\n    <string>blockS_extant-45.glif</string>\n    <key>blockSextant-45.stypo</key>\n    <string>blockS_extant-45.stypo.glif</string>\n    <key>blockSextant-145</key>\n    <string>blockS_extant-145.glif</string>\n    <key>blockSextant-145.stypo</key>\n    <string>blockS_extant-145.stypo.glif</string>\n    <key>blockSextant-245</key>\n    <string>blockS_extant-245.glif</string>\n    <key>blockSextant-245.stypo</key>\n    <string>blockS_extant-245.stypo.glif</string>\n    <key>blockSextant-1245</key>\n    <string>blockS_extant-1245.glif</string>\n    <key>blockSextant-1245.stypo</key>\n    <string>blockS_extant-1245.stypo.glif</string>\n    <key>blockSextant-345</key>\n    <string>blockS_extant-345.glif</string>\n    <key>blockSextant-345.stypo</key>\n    <string>blockS_extant-345.stypo.glif</string>\n    <key>blockSextant-1345</key>\n    <string>blockS_extant-1345.glif</string>\n    <key>blockSextant-1345.stypo</key>\n    <string>blockS_extant-1345.stypo.glif</string>\n    <key>blockSextant-2345</key>\n    <string>blockS_extant-2345.glif</string>\n    <key>blockSextant-2345.stypo</key>\n    <string>blockS_extant-2345.stypo.glif</string>\n    <key>blockSextant-12345</key>\n    <string>blockS_extant-12345.glif</string>\n    <key>blockSextant-12345.stypo</key>\n    <string>blockS_extant-12345.stypo.glif</string>\n    <key>blockSextant-6</key>\n    <string>blockS_extant-6.glif</string>\n    <key>blockSextant-6.stypo</key>\n    <string>blockS_extant-6.stypo.glif</string>\n    <key>blockSextant-16</key>\n    <string>blockS_extant-16.glif</string>\n    <key>blockSextant-16.stypo</key>\n    <string>blockS_extant-16.stypo.glif</string>\n    <key>blockSextant-26</key>\n    <string>blockS_extant-26.glif</string>\n    <key>blockSextant-26.stypo</key>\n    <string>blockS_extant-26.stypo.glif</string>\n    <key>blockSextant-126</key>\n    <string>blockS_extant-126.glif</string>\n    <key>blockSextant-126.stypo</key>\n    <string>blockS_extant-126.stypo.glif</string>\n    <key>blockSextant-36</key>\n    <string>blockS_extant-36.glif</string>\n    <key>blockSextant-36.stypo</key>\n    <string>blockS_extant-36.stypo.glif</string>\n    <key>blockSextant-136</key>\n    <string>blockS_extant-136.glif</string>\n    <key>blockSextant-136.stypo</key>\n    <string>blockS_extant-136.stypo.glif</string>\n    <key>blockSextant-236</key>\n    <string>blockS_extant-236.glif</string>\n    <key>blockSextant-236.stypo</key>\n    <string>blockS_extant-236.stypo.glif</string>\n    <key>blockSextant-1236</key>\n    <string>blockS_extant-1236.glif</string>\n    <key>blockSextant-1236.stypo</key>\n    <string>blockS_extant-1236.stypo.glif</string>\n    <key>blockSextant-46</key>\n    <string>blockS_extant-46.glif</string>\n    <key>blockSextant-46.stypo</key>\n    <string>blockS_extant-46.stypo.glif</string>\n    <key>blockSextant-146</key>\n    <string>blockS_extant-146.glif</string>\n    <key>blockSextant-146.stypo</key>\n    <string>blockS_extant-146.stypo.glif</string>\n    <key>blockSextant-1246</key>\n    <string>blockS_extant-1246.glif</string>\n    <key>blockSextant-1246.stypo</key>\n    <string>blockS_extant-1246.stypo.glif</string>\n    <key>blockSextant-346</key>\n    <string>blockS_extant-346.glif</string>\n    <key>blockSextant-346.stypo</key>\n    <string>blockS_extant-346.stypo.glif</string>\n    <key>blockSextant-1346</key>\n    <string>blockS_extant-1346.glif</string>\n    <key>blockSextant-1346.stypo</key>\n    <string>blockS_extant-1346.stypo.glif</string>\n    <key>blockSextant-2346</key>\n    <string>blockS_extant-2346.glif</string>\n    <key>blockSextant-2346.stypo</key>\n    <string>blockS_extant-2346.stypo.glif</string>\n    <key>blockSextant-12346</key>\n    <string>blockS_extant-12346.glif</string>\n    <key>blockSextant-12346.stypo</key>\n    <string>blockS_extant-12346.stypo.glif</string>\n    <key>blockSextant-56</key>\n    <string>blockS_extant-56.glif</string>\n    <key>blockSextant-56.stypo</key>\n    <string>blockS_extant-56.stypo.glif</string>\n    <key>blockSextant-156</key>\n    <string>blockS_extant-156.glif</string>\n    <key>blockSextant-156.stypo</key>\n    <string>blockS_extant-156.stypo.glif</string>\n    <key>blockSextant-256</key>\n    <string>blockS_extant-256.glif</string>\n    <key>blockSextant-256.stypo</key>\n    <string>blockS_extant-256.stypo.glif</string>\n    <key>blockSextant-1256</key>\n    <string>blockS_extant-1256.glif</string>\n    <key>blockSextant-1256.stypo</key>\n    <string>blockS_extant-1256.stypo.glif</string>\n    <key>blockSextant-356</key>\n    <string>blockS_extant-356.glif</string>\n    <key>blockSextant-356.stypo</key>\n    <string>blockS_extant-356.stypo.glif</string>\n    <key>blockSextant-1356</key>\n    <string>blockS_extant-1356.glif</string>\n    <key>blockSextant-1356.stypo</key>\n    <string>blockS_extant-1356.stypo.glif</string>\n    <key>blockSextant-2356</key>\n    <string>blockS_extant-2356.glif</string>\n    <key>blockSextant-2356.stypo</key>\n    <string>blockS_extant-2356.stypo.glif</string>\n    <key>blockSextant-12356</key>\n    <string>blockS_extant-12356.glif</string>\n    <key>blockSextant-12356.stypo</key>\n    <string>blockS_extant-12356.stypo.glif</string>\n    <key>blockSextant-456</key>\n    <string>blockS_extant-456.glif</string>\n    <key>blockSextant-456.stypo</key>\n    <string>blockS_extant-456.stypo.glif</string>\n    <key>blockSextant-1456</key>\n    <string>blockS_extant-1456.glif</string>\n    <key>blockSextant-1456.stypo</key>\n    <string>blockS_extant-1456.stypo.glif</string>\n    <key>blockSextant-2456</key>\n    <string>blockS_extant-2456.glif</string>\n    <key>blockSextant-2456.stypo</key>\n    <string>blockS_extant-2456.stypo.glif</string>\n    <key>blockSextant-12456</key>\n    <string>blockS_extant-12456.glif</string>\n    <key>blockSextant-12456.stypo</key>\n    <string>blockS_extant-12456.stypo.glif</string>\n    <key>blockSextant-3456</key>\n    <string>blockS_extant-3456.glif</string>\n    <key>blockSextant-3456.stypo</key>\n    <string>blockS_extant-3456.stypo.glif</string>\n    <key>blockSextant-13456</key>\n    <string>blockS_extant-13456.glif</string>\n    <key>blockSextant-13456.stypo</key>\n    <string>blockS_extant-13456.stypo.glif</string>\n    <key>blockSextant-23456</key>\n    <string>blockS_extant-23456.glif</string>\n    <key>blockSextant-23456.stypo</key>\n    <string>blockS_extant-23456.stypo.glif</string>\n    <key>blockDiagonal-1FB3C</key>\n    <string>blockD_iagonal-1FB3C.glif</string>\n    <key>blockDiagonal-1FB3C.stypo</key>\n    <string>blockD_iagonal-1FB3C.stypo.glif</string>\n    <key>blockDiagonal-1FB3D</key>\n    <string>blockD_iagonal-1FB3D.glif</string>\n    <key>blockDiagonal-1FB3D.stypo</key>\n    <string>blockD_iagonal-1FB3D.stypo.glif</string>\n    <key>blockDiagonal-1FB3E</key>\n    <string>blockD_iagonal-1FB3E.glif</string>\n    <key>blockDiagonal-1FB3E.stypo</key>\n    <string>blockD_iagonal-1FB3E.stypo.glif</string>\n    <key>blockDiagonal-1FB3F</key>\n    <string>blockD_iagonal-1FB3F.glif</string>\n    <key>blockDiagonal-1FB3F.stypo</key>\n    <string>blockD_iagonal-1FB3F.stypo.glif</string>\n    <key>blockDiagonal-1FB40</key>\n    <string>blockD_iagonal-1FB40.glif</string>\n    <key>blockDiagonal-1FB40.stypo</key>\n    <string>blockD_iagonal-1FB40.stypo.glif</string>\n    <key>blockDiagonal-1FB41</key>\n    <string>blockD_iagonal-1FB41.glif</string>\n    <key>blockDiagonal-1FB41.stypo</key>\n    <string>blockD_iagonal-1FB41.stypo.glif</string>\n    <key>blockDiagonal-1FB42</key>\n    <string>blockD_iagonal-1FB42.glif</string>\n    <key>blockDiagonal-1FB42.stypo</key>\n    <string>blockD_iagonal-1FB42.stypo.glif</string>\n    <key>blockDiagonal-1FB43</key>\n    <string>blockD_iagonal-1FB43.glif</string>\n    <key>blockDiagonal-1FB43.stypo</key>\n    <string>blockD_iagonal-1FB43.stypo.glif</string>\n    <key>blockDiagonal-1FB44</key>\n    <string>blockD_iagonal-1FB44.glif</string>\n    <key>blockDiagonal-1FB44.stypo</key>\n    <string>blockD_iagonal-1FB44.stypo.glif</string>\n    <key>blockDiagonal-1FB45</key>\n    <string>blockD_iagonal-1FB45.glif</string>\n    <key>blockDiagonal-1FB45.stypo</key>\n    <string>blockD_iagonal-1FB45.stypo.glif</string>\n    <key>blockDiagonal-1FB46</key>\n    <string>blockD_iagonal-1FB46.glif</string>\n    <key>blockDiagonal-1FB46.stypo</key>\n    <string>blockD_iagonal-1FB46.stypo.glif</string>\n    <key>blockDiagonal-1FB47</key>\n    <string>blockD_iagonal-1FB47.glif</string>\n    <key>blockDiagonal-1FB47.stypo</key>\n    <string>blockD_iagonal-1FB47.stypo.glif</string>\n    <key>blockDiagonal-1FB48</key>\n    <string>blockD_iagonal-1FB48.glif</string>\n    <key>blockDiagonal-1FB48.stypo</key>\n    <string>blockD_iagonal-1FB48.stypo.glif</string>\n    <key>blockDiagonal-1FB49</key>\n    <string>blockD_iagonal-1FB49.glif</string>\n    <key>blockDiagonal-1FB49.stypo</key>\n    <string>blockD_iagonal-1FB49.stypo.glif</string>\n    <key>blockDiagonal-1FB4A</key>\n    <string>blockD_iagonal-1FB4A.glif</string>\n    <key>blockDiagonal-1FB4A.stypo</key>\n    <string>blockD_iagonal-1FB4A.stypo.glif</string>\n    <key>blockDiagonal-1FB4B</key>\n    <string>blockD_iagonal-1FB4B.glif</string>\n    <key>blockDiagonal-1FB4B.stypo</key>\n    <string>blockD_iagonal-1FB4B.stypo.glif</string>\n    <key>blockDiagonal-1FB4C</key>\n    <string>blockD_iagonal-1FB4C.glif</string>\n    <key>blockDiagonal-1FB4C.stypo</key>\n    <string>blockD_iagonal-1FB4C.stypo.glif</string>\n    <key>blockDiagonal-1FB4D</key>\n    <string>blockD_iagonal-1FB4D.glif</string>\n    <key>blockDiagonal-1FB4D.stypo</key>\n    <string>blockD_iagonal-1FB4D.stypo.glif</string>\n    <key>blockDiagonal-1FB4E</key>\n    <string>blockD_iagonal-1FB4E.glif</string>\n    <key>blockDiagonal-1FB4E.stypo</key>\n    <string>blockD_iagonal-1FB4E.stypo.glif</string>\n    <key>blockDiagonal-1FB4F</key>\n    <string>blockD_iagonal-1FB4F.glif</string>\n    <key>blockDiagonal-1FB4F.stypo</key>\n    <string>blockD_iagonal-1FB4F.stypo.glif</string>\n    <key>blockDiagonal-1FB50</key>\n    <string>blockD_iagonal-1FB50.glif</string>\n    <key>blockDiagonal-1FB50.stypo</key>\n    <string>blockD_iagonal-1FB50.stypo.glif</string>\n    <key>blockDiagonal-1FB51</key>\n    <string>blockD_iagonal-1FB51.glif</string>\n    <key>blockDiagonal-1FB51.stypo</key>\n    <string>blockD_iagonal-1FB51.stypo.glif</string>\n    <key>blockDiagonal-1FB52</key>\n    <string>blockD_iagonal-1FB52.glif</string>\n    <key>blockDiagonal-1FB52.stypo</key>\n    <string>blockD_iagonal-1FB52.stypo.glif</string>\n    <key>blockDiagonal-1FB53</key>\n    <string>blockD_iagonal-1FB53.glif</string>\n    <key>blockDiagonal-1FB53.stypo</key>\n    <string>blockD_iagonal-1FB53.stypo.glif</string>\n    <key>blockDiagonal-1FB54</key>\n    <string>blockD_iagonal-1FB54.glif</string>\n    <key>blockDiagonal-1FB54.stypo</key>\n    <string>blockD_iagonal-1FB54.stypo.glif</string>\n    <key>blockDiagonal-1FB55</key>\n    <string>blockD_iagonal-1FB55.glif</string>\n    <key>blockDiagonal-1FB55.stypo</key>\n    <string>blockD_iagonal-1FB55.stypo.glif</string>\n    <key>blockDiagonal-1FB56</key>\n    <string>blockD_iagonal-1FB56.glif</string>\n    <key>blockDiagonal-1FB56.stypo</key>\n    <string>blockD_iagonal-1FB56.stypo.glif</string>\n    <key>blockDiagonal-1FB57</key>\n    <string>blockD_iagonal-1FB57.glif</string>\n    <key>blockDiagonal-1FB57.stypo</key>\n    <string>blockD_iagonal-1FB57.stypo.glif</string>\n    <key>blockDiagonal-1FB58</key>\n    <string>blockD_iagonal-1FB58.glif</string>\n    <key>blockDiagonal-1FB58.stypo</key>\n    <string>blockD_iagonal-1FB58.stypo.glif</string>\n    <key>blockDiagonal-1FB59</key>\n    <string>blockD_iagonal-1FB59.glif</string>\n    <key>blockDiagonal-1FB59.stypo</key>\n    <string>blockD_iagonal-1FB59.stypo.glif</string>\n    <key>blockDiagonal-1FB5A</key>\n    <string>blockD_iagonal-1FB5A.glif</string>\n    <key>blockDiagonal-1FB5A.stypo</key>\n    <string>blockD_iagonal-1FB5A.stypo.glif</string>\n    <key>blockDiagonal-1FB5B</key>\n    <string>blockD_iagonal-1FB5B.glif</string>\n    <key>blockDiagonal-1FB5B.stypo</key>\n    <string>blockD_iagonal-1FB5B.stypo.glif</string>\n    <key>blockDiagonal-1FB5C</key>\n    <string>blockD_iagonal-1FB5C.glif</string>\n    <key>blockDiagonal-1FB5C.stypo</key>\n    <string>blockD_iagonal-1FB5C.stypo.glif</string>\n    <key>blockDiagonal-1FB5D</key>\n    <string>blockD_iagonal-1FB5D.glif</string>\n    <key>blockDiagonal-1FB5D.stypo</key>\n    <string>blockD_iagonal-1FB5D.stypo.glif</string>\n    <key>blockDiagonal-1FB5E</key>\n    <string>blockD_iagonal-1FB5E.glif</string>\n    <key>blockDiagonal-1FB5E.stypo</key>\n    <string>blockD_iagonal-1FB5E.stypo.glif</string>\n    <key>blockDiagonal-1FB5F</key>\n    <string>blockD_iagonal-1FB5F.glif</string>\n    <key>blockDiagonal-1FB5F.stypo</key>\n    <string>blockD_iagonal-1FB5F.stypo.glif</string>\n    <key>blockDiagonal-1FB60</key>\n    <string>blockD_iagonal-1FB60.glif</string>\n    <key>blockDiagonal-1FB60.stypo</key>\n    <string>blockD_iagonal-1FB60.stypo.glif</string>\n    <key>blockDiagonal-1FB61</key>\n    <string>blockD_iagonal-1FB61.glif</string>\n    <key>blockDiagonal-1FB61.stypo</key>\n    <string>blockD_iagonal-1FB61.stypo.glif</string>\n    <key>blockDiagonal-1FB62</key>\n    <string>blockD_iagonal-1FB62.glif</string>\n    <key>blockDiagonal-1FB62.stypo</key>\n    <string>blockD_iagonal-1FB62.stypo.glif</string>\n    <key>blockDiagonal-1FB63</key>\n    <string>blockD_iagonal-1FB63.glif</string>\n    <key>blockDiagonal-1FB63.stypo</key>\n    <string>blockD_iagonal-1FB63.stypo.glif</string>\n    <key>blockDiagonal-1FB64</key>\n    <string>blockD_iagonal-1FB64.glif</string>\n    <key>blockDiagonal-1FB64.stypo</key>\n    <string>blockD_iagonal-1FB64.stypo.glif</string>\n    <key>blockDiagonal-1FB65</key>\n    <string>blockD_iagonal-1FB65.glif</string>\n    <key>blockDiagonal-1FB65.stypo</key>\n    <string>blockD_iagonal-1FB65.stypo.glif</string>\n    <key>blockDiagonal-1FB66</key>\n    <string>blockD_iagonal-1FB66.glif</string>\n    <key>blockDiagonal-1FB66.stypo</key>\n    <string>blockD_iagonal-1FB66.stypo.glif</string>\n    <key>blockDiagonal-1FB67</key>\n    <string>blockD_iagonal-1FB67.glif</string>\n    <key>blockDiagonal-1FB67.stypo</key>\n    <string>blockD_iagonal-1FB67.stypo.glif</string>\n    <key>blockOctant-1</key>\n    <string>blockO_ctant-1.glif</string>\n    <key>blockOctant-1.stypo</key>\n    <string>blockO_ctant-1.stypo.glif</string>\n    <key>blockOctant-2</key>\n    <string>blockO_ctant-2.glif</string>\n    <key>blockOctant-2.stypo</key>\n    <string>blockO_ctant-2.stypo.glif</string>\n    <key>blockOctant-12</key>\n    <string>blockO_ctant-12.glif</string>\n    <key>blockOctant-12.stypo</key>\n    <string>blockO_ctant-12.stypo.glif</string>\n    <key>blockOctant-3</key>\n    <string>blockO_ctant-3.glif</string>\n    <key>blockOctant-3.stypo</key>\n    <string>blockO_ctant-3.stypo.glif</string>\n    <key>blockOctant-23</key>\n    <string>blockO_ctant-23.glif</string>\n    <key>blockOctant-23.stypo</key>\n    <string>blockO_ctant-23.stypo.glif</string>\n    <key>blockOctant-123</key>\n    <string>blockO_ctant-123.glif</string>\n    <key>blockOctant-123.stypo</key>\n    <string>blockO_ctant-123.stypo.glif</string>\n    <key>blockOctant-4</key>\n    <string>blockO_ctant-4.glif</string>\n    <key>blockOctant-4.stypo</key>\n    <string>blockO_ctant-4.stypo.glif</string>\n    <key>blockOctant-14</key>\n    <string>blockO_ctant-14.glif</string>\n    <key>blockOctant-14.stypo</key>\n    <string>blockO_ctant-14.stypo.glif</string>\n    <key>blockOctant-124</key>\n    <string>blockO_ctant-124.glif</string>\n    <key>blockOctant-124.stypo</key>\n    <string>blockO_ctant-124.stypo.glif</string>\n    <key>blockOctant-34</key>\n    <string>blockO_ctant-34.glif</string>\n    <key>blockOctant-34.stypo</key>\n    <string>blockO_ctant-34.stypo.glif</string>\n    <key>blockOctant-134</key>\n    <string>blockO_ctant-134.glif</string>\n    <key>blockOctant-134.stypo</key>\n    <string>blockO_ctant-134.stypo.glif</string>\n    <key>blockOctant-234</key>\n    <string>blockO_ctant-234.glif</string>\n    <key>blockOctant-234.stypo</key>\n    <string>blockO_ctant-234.stypo.glif</string>\n    <key>blockOctant-5</key>\n    <string>blockO_ctant-5.glif</string>\n    <key>blockOctant-5.stypo</key>\n    <string>blockO_ctant-5.stypo.glif</string>\n    <key>blockOctant-15</key>\n    <string>blockO_ctant-15.glif</string>\n    <key>blockOctant-15.stypo</key>\n    <string>blockO_ctant-15.stypo.glif</string>\n    <key>blockOctant-25</key>\n    <string>blockO_ctant-25.glif</string>\n    <key>blockOctant-25.stypo</key>\n    <string>blockO_ctant-25.stypo.glif</string>\n    <key>blockOctant-125</key>\n    <string>blockO_ctant-125.glif</string>\n    <key>blockOctant-125.stypo</key>\n    <string>blockO_ctant-125.stypo.glif</string>\n    <key>blockOctant-135</key>\n    <string>blockO_ctant-135.glif</string>\n    <key>blockOctant-135.stypo</key>\n    <string>blockO_ctant-135.stypo.glif</string>\n    <key>blockOctant-235</key>\n    <string>blockO_ctant-235.glif</string>\n    <key>blockOctant-235.stypo</key>\n    <string>blockO_ctant-235.stypo.glif</string>\n    <key>blockOctant-1235</key>\n    <string>blockO_ctant-1235.glif</string>\n    <key>blockOctant-1235.stypo</key>\n    <string>blockO_ctant-1235.stypo.glif</string>\n    <key>blockOctant-45</key>\n    <string>blockO_ctant-45.glif</string>\n    <key>blockOctant-45.stypo</key>\n    <string>blockO_ctant-45.stypo.glif</string>\n    <key>blockOctant-145</key>\n    <string>blockO_ctant-145.glif</string>\n    <key>blockOctant-145.stypo</key>\n    <string>blockO_ctant-145.stypo.glif</string>\n    <key>blockOctant-245</key>\n    <string>blockO_ctant-245.glif</string>\n    <key>blockOctant-245.stypo</key>\n    <string>blockO_ctant-245.stypo.glif</string>\n    <key>blockOctant-1245</key>\n    <string>blockO_ctant-1245.glif</string>\n    <key>blockOctant-1245.stypo</key>\n    <string>blockO_ctant-1245.stypo.glif</string>\n    <key>blockOctant-345</key>\n    <string>blockO_ctant-345.glif</string>\n    <key>blockOctant-345.stypo</key>\n    <string>blockO_ctant-345.stypo.glif</string>\n    <key>blockOctant-1345</key>\n    <string>blockO_ctant-1345.glif</string>\n    <key>blockOctant-1345.stypo</key>\n    <string>blockO_ctant-1345.stypo.glif</string>\n    <key>blockOctant-2345</key>\n    <string>blockO_ctant-2345.glif</string>\n    <key>blockOctant-2345.stypo</key>\n    <string>blockO_ctant-2345.stypo.glif</string>\n    <key>blockOctant-12345</key>\n    <string>blockO_ctant-12345.glif</string>\n    <key>blockOctant-12345.stypo</key>\n    <string>blockO_ctant-12345.stypo.glif</string>\n    <key>blockOctant-6</key>\n    <string>blockO_ctant-6.glif</string>\n    <key>blockOctant-6.stypo</key>\n    <string>blockO_ctant-6.stypo.glif</string>\n    <key>blockOctant-16</key>\n    <string>blockO_ctant-16.glif</string>\n    <key>blockOctant-16.stypo</key>\n    <string>blockO_ctant-16.stypo.glif</string>\n    <key>blockOctant-26</key>\n    <string>blockO_ctant-26.glif</string>\n    <key>blockOctant-26.stypo</key>\n    <string>blockO_ctant-26.stypo.glif</string>\n    <key>blockOctant-126</key>\n    <string>blockO_ctant-126.glif</string>\n    <key>blockOctant-126.stypo</key>\n    <string>blockO_ctant-126.stypo.glif</string>\n    <key>blockOctant-36</key>\n    <string>blockO_ctant-36.glif</string>\n    <key>blockOctant-36.stypo</key>\n    <string>blockO_ctant-36.stypo.glif</string>\n    <key>blockOctant-136</key>\n    <string>blockO_ctant-136.glif</string>\n    <key>blockOctant-136.stypo</key>\n    <string>blockO_ctant-136.stypo.glif</string>\n    <key>blockOctant-236</key>\n    <string>blockO_ctant-236.glif</string>\n    <key>blockOctant-236.stypo</key>\n    <string>blockO_ctant-236.stypo.glif</string>\n    <key>blockOctant-1236</key>\n    <string>blockO_ctant-1236.glif</string>\n    <key>blockOctant-1236.stypo</key>\n    <string>blockO_ctant-1236.stypo.glif</string>\n    <key>blockOctant-146</key>\n    <string>blockO_ctant-146.glif</string>\n    <key>blockOctant-146.stypo</key>\n    <string>blockO_ctant-146.stypo.glif</string>\n    <key>blockOctant-246</key>\n    <string>blockO_ctant-246.glif</string>\n    <key>blockOctant-246.stypo</key>\n    <string>blockO_ctant-246.stypo.glif</string>\n    <key>blockOctant-1246</key>\n    <string>blockO_ctant-1246.glif</string>\n    <key>blockOctant-1246.stypo</key>\n    <string>blockO_ctant-1246.stypo.glif</string>\n    <key>blockOctant-346</key>\n    <string>blockO_ctant-346.glif</string>\n    <key>blockOctant-346.stypo</key>\n    <string>blockO_ctant-346.stypo.glif</string>\n    <key>blockOctant-1346</key>\n    <string>blockO_ctant-1346.glif</string>\n    <key>blockOctant-1346.stypo</key>\n    <string>blockO_ctant-1346.stypo.glif</string>\n    <key>blockOctant-2346</key>\n    <string>blockO_ctant-2346.glif</string>\n    <key>blockOctant-2346.stypo</key>\n    <string>blockO_ctant-2346.stypo.glif</string>\n    <key>blockOctant-12346</key>\n    <string>blockO_ctant-12346.glif</string>\n    <key>blockOctant-12346.stypo</key>\n    <string>blockO_ctant-12346.stypo.glif</string>\n    <key>blockOctant-56</key>\n    <string>blockO_ctant-56.glif</string>\n    <key>blockOctant-56.stypo</key>\n    <string>blockO_ctant-56.stypo.glif</string>\n    <key>blockOctant-156</key>\n    <string>blockO_ctant-156.glif</string>\n    <key>blockOctant-156.stypo</key>\n    <string>blockO_ctant-156.stypo.glif</string>\n    <key>blockOctant-256</key>\n    <string>blockO_ctant-256.glif</string>\n    <key>blockOctant-256.stypo</key>\n    <string>blockO_ctant-256.stypo.glif</string>\n    <key>blockOctant-1256</key>\n    <string>blockO_ctant-1256.glif</string>\n    <key>blockOctant-1256.stypo</key>\n    <string>blockO_ctant-1256.stypo.glif</string>\n    <key>blockOctant-356</key>\n    <string>blockO_ctant-356.glif</string>\n    <key>blockOctant-356.stypo</key>\n    <string>blockO_ctant-356.stypo.glif</string>\n    <key>blockOctant-1356</key>\n    <string>blockO_ctant-1356.glif</string>\n    <key>blockOctant-1356.stypo</key>\n    <string>blockO_ctant-1356.stypo.glif</string>\n    <key>blockOctant-2356</key>\n    <string>blockO_ctant-2356.glif</string>\n    <key>blockOctant-2356.stypo</key>\n    <string>blockO_ctant-2356.stypo.glif</string>\n    <key>blockOctant-12356</key>\n    <string>blockO_ctant-12356.glif</string>\n    <key>blockOctant-12356.stypo</key>\n    <string>blockO_ctant-12356.stypo.glif</string>\n    <key>blockOctant-456</key>\n    <string>blockO_ctant-456.glif</string>\n    <key>blockOctant-456.stypo</key>\n    <string>blockO_ctant-456.stypo.glif</string>\n    <key>blockOctant-1456</key>\n    <string>blockO_ctant-1456.glif</string>\n    <key>blockOctant-1456.stypo</key>\n    <string>blockO_ctant-1456.stypo.glif</string>\n    <key>blockOctant-2456</key>\n    <string>blockO_ctant-2456.glif</string>\n    <key>blockOctant-2456.stypo</key>\n    <string>blockO_ctant-2456.stypo.glif</string>\n    <key>blockOctant-12456</key>\n    <string>blockO_ctant-12456.glif</string>\n    <key>blockOctant-12456.stypo</key>\n    <string>blockO_ctant-12456.stypo.glif</string>\n    <key>blockOctant-3456</key>\n    <string>blockO_ctant-3456.glif</string>\n    <key>blockOctant-3456.stypo</key>\n    <string>blockO_ctant-3456.stypo.glif</string>\n    <key>blockOctant-13456</key>\n    <string>blockO_ctant-13456.glif</string>\n    <key>blockOctant-13456.stypo</key>\n    <string>blockO_ctant-13456.stypo.glif</string>\n    <key>blockOctant-23456</key>\n    <string>blockO_ctant-23456.glif</string>\n    <key>blockOctant-23456.stypo</key>\n    <string>blockO_ctant-23456.stypo.glif</string>\n    <key>blockOctant-123456</key>\n    <string>blockO_ctant-123456.glif</string>\n    <key>blockOctant-123456.stypo</key>\n    <string>blockO_ctant-123456.stypo.glif</string>\n    <key>blockOctant-7</key>\n    <string>blockO_ctant-7.glif</string>\n    <key>blockOctant-7.stypo</key>\n    <string>blockO_ctant-7.stypo.glif</string>\n    <key>blockOctant-17</key>\n    <string>blockO_ctant-17.glif</string>\n    <key>blockOctant-17.stypo</key>\n    <string>blockO_ctant-17.stypo.glif</string>\n    <key>blockOctant-27</key>\n    <string>blockO_ctant-27.glif</string>\n    <key>blockOctant-27.stypo</key>\n    <string>blockO_ctant-27.stypo.glif</string>\n    <key>blockOctant-127</key>\n    <string>blockO_ctant-127.glif</string>\n    <key>blockOctant-127.stypo</key>\n    <string>blockO_ctant-127.stypo.glif</string>\n    <key>blockOctant-37</key>\n    <string>blockO_ctant-37.glif</string>\n    <key>blockOctant-37.stypo</key>\n    <string>blockO_ctant-37.stypo.glif</string>\n    <key>blockOctant-137</key>\n    <string>blockO_ctant-137.glif</string>\n    <key>blockOctant-137.stypo</key>\n    <string>blockO_ctant-137.stypo.glif</string>\n    <key>blockOctant-237</key>\n    <string>blockO_ctant-237.glif</string>\n    <key>blockOctant-237.stypo</key>\n    <string>blockO_ctant-237.stypo.glif</string>\n    <key>blockOctant-1237</key>\n    <string>blockO_ctant-1237.glif</string>\n    <key>blockOctant-1237.stypo</key>\n    <string>blockO_ctant-1237.stypo.glif</string>\n    <key>blockOctant-47</key>\n    <string>blockO_ctant-47.glif</string>\n    <key>blockOctant-47.stypo</key>\n    <string>blockO_ctant-47.stypo.glif</string>\n    <key>blockOctant-147</key>\n    <string>blockO_ctant-147.glif</string>\n    <key>blockOctant-147.stypo</key>\n    <string>blockO_ctant-147.stypo.glif</string>\n    <key>blockOctant-247</key>\n    <string>blockO_ctant-247.glif</string>\n    <key>blockOctant-247.stypo</key>\n    <string>blockO_ctant-247.stypo.glif</string>\n    <key>blockOctant-1247</key>\n    <string>blockO_ctant-1247.glif</string>\n    <key>blockOctant-1247.stypo</key>\n    <string>blockO_ctant-1247.stypo.glif</string>\n    <key>blockOctant-347</key>\n    <string>blockO_ctant-347.glif</string>\n    <key>blockOctant-347.stypo</key>\n    <string>blockO_ctant-347.stypo.glif</string>\n    <key>blockOctant-1347</key>\n    <string>blockO_ctant-1347.glif</string>\n    <key>blockOctant-1347.stypo</key>\n    <string>blockO_ctant-1347.stypo.glif</string>\n    <key>blockOctant-2347</key>\n    <string>blockO_ctant-2347.glif</string>\n    <key>blockOctant-2347.stypo</key>\n    <string>blockO_ctant-2347.stypo.glif</string>\n    <key>blockOctant-12347</key>\n    <string>blockO_ctant-12347.glif</string>\n    <key>blockOctant-12347.stypo</key>\n    <string>blockO_ctant-12347.stypo.glif</string>\n    <key>blockOctant-157</key>\n    <string>blockO_ctant-157.glif</string>\n    <key>blockOctant-157.stypo</key>\n    <string>blockO_ctant-157.stypo.glif</string>\n    <key>blockOctant-257</key>\n    <string>blockO_ctant-257.glif</string>\n    <key>blockOctant-257.stypo</key>\n    <string>blockO_ctant-257.stypo.glif</string>\n    <key>blockOctant-1257</key>\n    <string>blockO_ctant-1257.glif</string>\n    <key>blockOctant-1257.stypo</key>\n    <string>blockO_ctant-1257.stypo.glif</string>\n    <key>blockOctant-357</key>\n    <string>blockO_ctant-357.glif</string>\n    <key>blockOctant-357.stypo</key>\n    <string>blockO_ctant-357.stypo.glif</string>\n    <key>blockOctant-2357</key>\n    <string>blockO_ctant-2357.glif</string>\n    <key>blockOctant-2357.stypo</key>\n    <string>blockO_ctant-2357.stypo.glif</string>\n    <key>blockOctant-12357</key>\n    <string>blockO_ctant-12357.glif</string>\n    <key>blockOctant-12357.stypo</key>\n    <string>blockO_ctant-12357.stypo.glif</string>\n    <key>blockOctant-457</key>\n    <string>blockO_ctant-457.glif</string>\n    <key>blockOctant-457.stypo</key>\n    <string>blockO_ctant-457.stypo.glif</string>\n    <key>blockOctant-1457</key>\n    <string>blockO_ctant-1457.glif</string>\n    <key>blockOctant-1457.stypo</key>\n    <string>blockO_ctant-1457.stypo.glif</string>\n    <key>blockOctant-12457</key>\n    <string>blockO_ctant-12457.glif</string>\n    <key>blockOctant-12457.stypo</key>\n    <string>blockO_ctant-12457.stypo.glif</string>\n    <key>blockOctant-3457</key>\n    <string>blockO_ctant-3457.glif</string>\n    <key>blockOctant-3457.stypo</key>\n    <string>blockO_ctant-3457.stypo.glif</string>\n    <key>blockOctant-13457</key>\n    <string>blockO_ctant-13457.glif</string>\n    <key>blockOctant-13457.stypo</key>\n    <string>blockO_ctant-13457.stypo.glif</string>\n    <key>blockOctant-23457</key>\n    <string>blockO_ctant-23457.glif</string>\n    <key>blockOctant-23457.stypo</key>\n    <string>blockO_ctant-23457.stypo.glif</string>\n    <key>blockOctant-67</key>\n    <string>blockO_ctant-67.glif</string>\n    <key>blockOctant-67.stypo</key>\n    <string>blockO_ctant-67.stypo.glif</string>\n    <key>blockOctant-167</key>\n    <string>blockO_ctant-167.glif</string>\n    <key>blockOctant-167.stypo</key>\n    <string>blockO_ctant-167.stypo.glif</string>\n    <key>blockOctant-267</key>\n    <string>blockO_ctant-267.glif</string>\n    <key>blockOctant-267.stypo</key>\n    <string>blockO_ctant-267.stypo.glif</string>\n    <key>blockOctant-1267</key>\n    <string>blockO_ctant-1267.glif</string>\n    <key>blockOctant-1267.stypo</key>\n    <string>blockO_ctant-1267.stypo.glif</string>\n    <key>blockOctant-367</key>\n    <string>blockO_ctant-367.glif</string>\n    <key>blockOctant-367.stypo</key>\n    <string>blockO_ctant-367.stypo.glif</string>\n    <key>blockOctant-1367</key>\n    <string>blockO_ctant-1367.glif</string>\n    <key>blockOctant-1367.stypo</key>\n    <string>blockO_ctant-1367.stypo.glif</string>\n    <key>blockOctant-2367</key>\n    <string>blockO_ctant-2367.glif</string>\n    <key>blockOctant-2367.stypo</key>\n    <string>blockO_ctant-2367.stypo.glif</string>\n    <key>blockOctant-12367</key>\n    <string>blockO_ctant-12367.glif</string>\n    <key>blockOctant-12367.stypo</key>\n    <string>blockO_ctant-12367.stypo.glif</string>\n    <key>blockOctant-467</key>\n    <string>blockO_ctant-467.glif</string>\n    <key>blockOctant-467.stypo</key>\n    <string>blockO_ctant-467.stypo.glif</string>\n    <key>blockOctant-1467</key>\n    <string>blockO_ctant-1467.glif</string>\n    <key>blockOctant-1467.stypo</key>\n    <string>blockO_ctant-1467.stypo.glif</string>\n    <key>blockOctant-2467</key>\n    <string>blockO_ctant-2467.glif</string>\n    <key>blockOctant-2467.stypo</key>\n    <string>blockO_ctant-2467.stypo.glif</string>\n    <key>blockOctant-12467</key>\n    <string>blockO_ctant-12467.glif</string>\n    <key>blockOctant-12467.stypo</key>\n    <string>blockO_ctant-12467.stypo.glif</string>\n    <key>blockOctant-3467</key>\n    <string>blockO_ctant-3467.glif</string>\n    <key>blockOctant-3467.stypo</key>\n    <string>blockO_ctant-3467.stypo.glif</string>\n    <key>blockOctant-13467</key>\n    <string>blockO_ctant-13467.glif</string>\n    <key>blockOctant-13467.stypo</key>\n    <string>blockO_ctant-13467.stypo.glif</string>\n    <key>blockOctant-23467</key>\n    <string>blockO_ctant-23467.glif</string>\n    <key>blockOctant-23467.stypo</key>\n    <string>blockO_ctant-23467.stypo.glif</string>\n    <key>blockOctant-123467</key>\n    <string>blockO_ctant-123467.glif</string>\n    <key>blockOctant-123467.stypo</key>\n    <string>blockO_ctant-123467.stypo.glif</string>\n    <key>blockOctant-567</key>\n    <string>blockO_ctant-567.glif</string>\n    <key>blockOctant-567.stypo</key>\n    <string>blockO_ctant-567.stypo.glif</string>\n    <key>blockOctant-1567</key>\n    <string>blockO_ctant-1567.glif</string>\n    <key>blockOctant-1567.stypo</key>\n    <string>blockO_ctant-1567.stypo.glif</string>\n    <key>blockOctant-2567</key>\n    <string>blockO_ctant-2567.glif</string>\n    <key>blockOctant-2567.stypo</key>\n    <string>blockO_ctant-2567.stypo.glif</string>\n    <key>blockOctant-12567</key>\n    <string>blockO_ctant-12567.glif</string>\n    <key>blockOctant-12567.stypo</key>\n    <string>blockO_ctant-12567.stypo.glif</string>\n    <key>blockOctant-3567</key>\n    <string>blockO_ctant-3567.glif</string>\n    <key>blockOctant-3567.stypo</key>\n    <string>blockO_ctant-3567.stypo.glif</string>\n    <key>blockOctant-13567</key>\n    <string>blockO_ctant-13567.glif</string>\n    <key>blockOctant-13567.stypo</key>\n    <string>blockO_ctant-13567.stypo.glif</string>\n    <key>blockOctant-23567</key>\n    <string>blockO_ctant-23567.glif</string>\n    <key>blockOctant-23567.stypo</key>\n    <string>blockO_ctant-23567.stypo.glif</string>\n    <key>blockOctant-123567</key>\n    <string>blockO_ctant-123567.glif</string>\n    <key>blockOctant-123567.stypo</key>\n    <string>blockO_ctant-123567.stypo.glif</string>\n    <key>blockOctant-4567</key>\n    <string>blockO_ctant-4567.glif</string>\n    <key>blockOctant-4567.stypo</key>\n    <string>blockO_ctant-4567.stypo.glif</string>\n    <key>blockOctant-14567</key>\n    <string>blockO_ctant-14567.glif</string>\n    <key>blockOctant-14567.stypo</key>\n    <string>blockO_ctant-14567.stypo.glif</string>\n    <key>blockOctant-24567</key>\n    <string>blockO_ctant-24567.glif</string>\n    <key>blockOctant-24567.stypo</key>\n    <string>blockO_ctant-24567.stypo.glif</string>\n    <key>blockOctant-124567</key>\n    <string>blockO_ctant-124567.glif</string>\n    <key>blockOctant-124567.stypo</key>\n    <string>blockO_ctant-124567.stypo.glif</string>\n    <key>blockOctant-34567</key>\n    <string>blockO_ctant-34567.glif</string>\n    <key>blockOctant-34567.stypo</key>\n    <string>blockO_ctant-34567.stypo.glif</string>\n    <key>blockOctant-134567</key>\n    <string>blockO_ctant-134567.glif</string>\n    <key>blockOctant-134567.stypo</key>\n    <string>blockO_ctant-134567.stypo.glif</string>\n    <key>blockOctant-234567</key>\n    <string>blockO_ctant-234567.glif</string>\n    <key>blockOctant-234567.stypo</key>\n    <string>blockO_ctant-234567.stypo.glif</string>\n    <key>blockOctant-1234567</key>\n    <string>blockO_ctant-1234567.glif</string>\n    <key>blockOctant-1234567.stypo</key>\n    <string>blockO_ctant-1234567.stypo.glif</string>\n    <key>blockOctant-8</key>\n    <string>blockO_ctant-8.glif</string>\n    <key>blockOctant-8.stypo</key>\n    <string>blockO_ctant-8.stypo.glif</string>\n    <key>blockOctant-18</key>\n    <string>blockO_ctant-18.glif</string>\n    <key>blockOctant-18.stypo</key>\n    <string>blockO_ctant-18.stypo.glif</string>\n    <key>blockOctant-28</key>\n    <string>blockO_ctant-28.glif</string>\n    <key>blockOctant-28.stypo</key>\n    <string>blockO_ctant-28.stypo.glif</string>\n    <key>blockOctant-128</key>\n    <string>blockO_ctant-128.glif</string>\n    <key>blockOctant-128.stypo</key>\n    <string>blockO_ctant-128.stypo.glif</string>\n    <key>blockOctant-38</key>\n    <string>blockO_ctant-38.glif</string>\n    <key>blockOctant-38.stypo</key>\n    <string>blockO_ctant-38.stypo.glif</string>\n    <key>blockOctant-138</key>\n    <string>blockO_ctant-138.glif</string>\n    <key>blockOctant-138.stypo</key>\n    <string>blockO_ctant-138.stypo.glif</string>\n    <key>blockOctant-238</key>\n    <string>blockO_ctant-238.glif</string>\n    <key>blockOctant-238.stypo</key>\n    <string>blockO_ctant-238.stypo.glif</string>\n    <key>blockOctant-1238</key>\n    <string>blockO_ctant-1238.glif</string>\n    <key>blockOctant-1238.stypo</key>\n    <string>blockO_ctant-1238.stypo.glif</string>\n    <key>blockOctant-48</key>\n    <string>blockO_ctant-48.glif</string>\n    <key>blockOctant-48.stypo</key>\n    <string>blockO_ctant-48.stypo.glif</string>\n    <key>blockOctant-148</key>\n    <string>blockO_ctant-148.glif</string>\n    <key>blockOctant-148.stypo</key>\n    <string>blockO_ctant-148.stypo.glif</string>\n    <key>blockOctant-248</key>\n    <string>blockO_ctant-248.glif</string>\n    <key>blockOctant-248.stypo</key>\n    <string>blockO_ctant-248.stypo.glif</string>\n    <key>blockOctant-1248</key>\n    <string>blockO_ctant-1248.glif</string>\n    <key>blockOctant-1248.stypo</key>\n    <string>blockO_ctant-1248.stypo.glif</string>\n    <key>blockOctant-348</key>\n    <string>blockO_ctant-348.glif</string>\n    <key>blockOctant-348.stypo</key>\n    <string>blockO_ctant-348.stypo.glif</string>\n    <key>blockOctant-1348</key>\n    <string>blockO_ctant-1348.glif</string>\n    <key>blockOctant-1348.stypo</key>\n    <string>blockO_ctant-1348.stypo.glif</string>\n    <key>blockOctant-2348</key>\n    <string>blockO_ctant-2348.glif</string>\n    <key>blockOctant-2348.stypo</key>\n    <string>blockO_ctant-2348.stypo.glif</string>\n    <key>blockOctant-12348</key>\n    <string>blockO_ctant-12348.glif</string>\n    <key>blockOctant-12348.stypo</key>\n    <string>blockO_ctant-12348.stypo.glif</string>\n    <key>blockOctant-58</key>\n    <string>blockO_ctant-58.glif</string>\n    <key>blockOctant-58.stypo</key>\n    <string>blockO_ctant-58.stypo.glif</string>\n    <key>blockOctant-158</key>\n    <string>blockO_ctant-158.glif</string>\n    <key>blockOctant-158.stypo</key>\n    <string>blockO_ctant-158.stypo.glif</string>\n    <key>blockOctant-258</key>\n    <string>blockO_ctant-258.glif</string>\n    <key>blockOctant-258.stypo</key>\n    <string>blockO_ctant-258.stypo.glif</string>\n    <key>blockOctant-1258</key>\n    <string>blockO_ctant-1258.glif</string>\n    <key>blockOctant-1258.stypo</key>\n    <string>blockO_ctant-1258.stypo.glif</string>\n    <key>blockOctant-358</key>\n    <string>blockO_ctant-358.glif</string>\n    <key>blockOctant-358.stypo</key>\n    <string>blockO_ctant-358.stypo.glif</string>\n    <key>blockOctant-1358</key>\n    <string>blockO_ctant-1358.glif</string>\n    <key>blockOctant-1358.stypo</key>\n    <string>blockO_ctant-1358.stypo.glif</string>\n    <key>blockOctant-2358</key>\n    <string>blockO_ctant-2358.glif</string>\n    <key>blockOctant-2358.stypo</key>\n    <string>blockO_ctant-2358.stypo.glif</string>\n    <key>blockOctant-12358</key>\n    <string>blockO_ctant-12358.glif</string>\n    <key>blockOctant-12358.stypo</key>\n    <string>blockO_ctant-12358.stypo.glif</string>\n    <key>blockOctant-458</key>\n    <string>blockO_ctant-458.glif</string>\n    <key>blockOctant-458.stypo</key>\n    <string>blockO_ctant-458.stypo.glif</string>\n    <key>blockOctant-1458</key>\n    <string>blockO_ctant-1458.glif</string>\n    <key>blockOctant-1458.stypo</key>\n    <string>blockO_ctant-1458.stypo.glif</string>\n    <key>blockOctant-2458</key>\n    <string>blockO_ctant-2458.glif</string>\n    <key>blockOctant-2458.stypo</key>\n    <string>blockO_ctant-2458.stypo.glif</string>\n    <key>blockOctant-12458</key>\n    <string>blockO_ctant-12458.glif</string>\n    <key>blockOctant-12458.stypo</key>\n    <string>blockO_ctant-12458.stypo.glif</string>\n    <key>blockOctant-3458</key>\n    <string>blockO_ctant-3458.glif</string>\n    <key>blockOctant-3458.stypo</key>\n    <string>blockO_ctant-3458.stypo.glif</string>\n    <key>blockOctant-13458</key>\n    <string>blockO_ctant-13458.glif</string>\n    <key>blockOctant-13458.stypo</key>\n    <string>blockO_ctant-13458.stypo.glif</string>\n    <key>blockOctant-23458</key>\n    <string>blockO_ctant-23458.glif</string>\n    <key>blockOctant-23458.stypo</key>\n    <string>blockO_ctant-23458.stypo.glif</string>\n    <key>blockOctant-123458</key>\n    <string>blockO_ctant-123458.glif</string>\n    <key>blockOctant-123458.stypo</key>\n    <string>blockO_ctant-123458.stypo.glif</string>\n    <key>blockOctant-168</key>\n    <string>blockO_ctant-168.glif</string>\n    <key>blockOctant-168.stypo</key>\n    <string>blockO_ctant-168.stypo.glif</string>\n    <key>blockOctant-268</key>\n    <string>blockO_ctant-268.glif</string>\n    <key>blockOctant-268.stypo</key>\n    <string>blockO_ctant-268.stypo.glif</string>\n    <key>blockOctant-1268</key>\n    <string>blockO_ctant-1268.glif</string>\n    <key>blockOctant-1268.stypo</key>\n    <string>blockO_ctant-1268.stypo.glif</string>\n    <key>blockOctant-368</key>\n    <string>blockO_ctant-368.glif</string>\n    <key>blockOctant-368.stypo</key>\n    <string>blockO_ctant-368.stypo.glif</string>\n    <key>blockOctant-2368</key>\n    <string>blockO_ctant-2368.glif</string>\n    <key>blockOctant-2368.stypo</key>\n    <string>blockO_ctant-2368.stypo.glif</string>\n    <key>blockOctant-12368</key>\n    <string>blockO_ctant-12368.glif</string>\n    <key>blockOctant-12368.stypo</key>\n    <string>blockO_ctant-12368.stypo.glif</string>\n    <key>blockOctant-468</key>\n    <string>blockO_ctant-468.glif</string>\n    <key>blockOctant-468.stypo</key>\n    <string>blockO_ctant-468.stypo.glif</string>\n    <key>blockOctant-1468</key>\n    <string>blockO_ctant-1468.glif</string>\n    <key>blockOctant-1468.stypo</key>\n    <string>blockO_ctant-1468.stypo.glif</string>\n    <key>blockOctant-12468</key>\n    <string>blockO_ctant-12468.glif</string>\n    <key>blockOctant-12468.stypo</key>\n    <string>blockO_ctant-12468.stypo.glif</string>\n    <key>blockOctant-3468</key>\n    <string>blockO_ctant-3468.glif</string>\n    <key>blockOctant-3468.stypo</key>\n    <string>blockO_ctant-3468.stypo.glif</string>\n    <key>blockOctant-13468</key>\n    <string>blockO_ctant-13468.glif</string>\n    <key>blockOctant-13468.stypo</key>\n    <string>blockO_ctant-13468.stypo.glif</string>\n    <key>blockOctant-23468</key>\n    <string>blockO_ctant-23468.glif</string>\n    <key>blockOctant-23468.stypo</key>\n    <string>blockO_ctant-23468.stypo.glif</string>\n    <key>blockOctant-568</key>\n    <string>blockO_ctant-568.glif</string>\n    <key>blockOctant-568.stypo</key>\n    <string>blockO_ctant-568.stypo.glif</string>\n    <key>blockOctant-1568</key>\n    <string>blockO_ctant-1568.glif</string>\n    <key>blockOctant-1568.stypo</key>\n    <string>blockO_ctant-1568.stypo.glif</string>\n    <key>blockOctant-2568</key>\n    <string>blockO_ctant-2568.glif</string>\n    <key>blockOctant-2568.stypo</key>\n    <string>blockO_ctant-2568.stypo.glif</string>\n    <key>blockOctant-12568</key>\n    <string>blockO_ctant-12568.glif</string>\n    <key>blockOctant-12568.stypo</key>\n    <string>blockO_ctant-12568.stypo.glif</string>\n    <key>blockOctant-3568</key>\n    <string>blockO_ctant-3568.glif</string>\n    <key>blockOctant-3568.stypo</key>\n    <string>blockO_ctant-3568.stypo.glif</string>\n    <key>blockOctant-13568</key>\n    <string>blockO_ctant-13568.glif</string>\n    <key>blockOctant-13568.stypo</key>\n    <string>blockO_ctant-13568.stypo.glif</string>\n    <key>blockOctant-23568</key>\n    <string>blockO_ctant-23568.glif</string>\n    <key>blockOctant-23568.stypo</key>\n    <string>blockO_ctant-23568.stypo.glif</string>\n    <key>blockOctant-123568</key>\n    <string>blockO_ctant-123568.glif</string>\n    <key>blockOctant-123568.stypo</key>\n    <string>blockO_ctant-123568.stypo.glif</string>\n    <key>blockOctant-4568</key>\n    <string>blockO_ctant-4568.glif</string>\n    <key>blockOctant-4568.stypo</key>\n    <string>blockO_ctant-4568.stypo.glif</string>\n    <key>blockOctant-14568</key>\n    <string>blockO_ctant-14568.glif</string>\n    <key>blockOctant-14568.stypo</key>\n    <string>blockO_ctant-14568.stypo.glif</string>\n    <key>blockOctant-24568</key>\n    <string>blockO_ctant-24568.glif</string>\n    <key>blockOctant-24568.stypo</key>\n    <string>blockO_ctant-24568.stypo.glif</string>\n    <key>blockOctant-124568</key>\n    <string>blockO_ctant-124568.glif</string>\n    <key>blockOctant-124568.stypo</key>\n    <string>blockO_ctant-124568.stypo.glif</string>\n    <key>blockOctant-34568</key>\n    <string>blockO_ctant-34568.glif</string>\n    <key>blockOctant-34568.stypo</key>\n    <string>blockO_ctant-34568.stypo.glif</string>\n    <key>blockOctant-134568</key>\n    <string>blockO_ctant-134568.glif</string>\n    <key>blockOctant-134568.stypo</key>\n    <string>blockO_ctant-134568.stypo.glif</string>\n    <key>blockOctant-234568</key>\n    <string>blockO_ctant-234568.glif</string>\n    <key>blockOctant-234568.stypo</key>\n    <string>blockO_ctant-234568.stypo.glif</string>\n    <key>blockOctant-1234568</key>\n    <string>blockO_ctant-1234568.glif</string>\n    <key>blockOctant-1234568.stypo</key>\n    <string>blockO_ctant-1234568.stypo.glif</string>\n    <key>blockOctant-178</key>\n    <string>blockO_ctant-178.glif</string>\n    <key>blockOctant-178.stypo</key>\n    <string>blockO_ctant-178.stypo.glif</string>\n    <key>blockOctant-278</key>\n    <string>blockO_ctant-278.glif</string>\n    <key>blockOctant-278.stypo</key>\n    <string>blockO_ctant-278.stypo.glif</string>\n    <key>blockOctant-1278</key>\n    <string>blockO_ctant-1278.glif</string>\n    <key>blockOctant-1278.stypo</key>\n    <string>blockO_ctant-1278.stypo.glif</string>\n    <key>blockOctant-378</key>\n    <string>blockO_ctant-378.glif</string>\n    <key>blockOctant-378.stypo</key>\n    <string>blockO_ctant-378.stypo.glif</string>\n    <key>blockOctant-1378</key>\n    <string>blockO_ctant-1378.glif</string>\n    <key>blockOctant-1378.stypo</key>\n    <string>blockO_ctant-1378.stypo.glif</string>\n    <key>blockOctant-2378</key>\n    <string>blockO_ctant-2378.glif</string>\n    <key>blockOctant-2378.stypo</key>\n    <string>blockO_ctant-2378.stypo.glif</string>\n    <key>blockOctant-12378</key>\n    <string>blockO_ctant-12378.glif</string>\n    <key>blockOctant-12378.stypo</key>\n    <string>blockO_ctant-12378.stypo.glif</string>\n    <key>blockOctant-478</key>\n    <string>blockO_ctant-478.glif</string>\n    <key>blockOctant-478.stypo</key>\n    <string>blockO_ctant-478.stypo.glif</string>\n    <key>blockOctant-1478</key>\n    <string>blockO_ctant-1478.glif</string>\n    <key>blockOctant-1478.stypo</key>\n    <string>blockO_ctant-1478.stypo.glif</string>\n    <key>blockOctant-2478</key>\n    <string>blockO_ctant-2478.glif</string>\n    <key>blockOctant-2478.stypo</key>\n    <string>blockO_ctant-2478.stypo.glif</string>\n    <key>blockOctant-12478</key>\n    <string>blockO_ctant-12478.glif</string>\n    <key>blockOctant-12478.stypo</key>\n    <string>blockO_ctant-12478.stypo.glif</string>\n    <key>blockOctant-3478</key>\n    <string>blockO_ctant-3478.glif</string>\n    <key>blockOctant-3478.stypo</key>\n    <string>blockO_ctant-3478.stypo.glif</string>\n    <key>blockOctant-13478</key>\n    <string>blockO_ctant-13478.glif</string>\n    <key>blockOctant-13478.stypo</key>\n    <string>blockO_ctant-13478.stypo.glif</string>\n    <key>blockOctant-23478</key>\n    <string>blockO_ctant-23478.glif</string>\n    <key>blockOctant-23478.stypo</key>\n    <string>blockO_ctant-23478.stypo.glif</string>\n    <key>blockOctant-123478</key>\n    <string>blockO_ctant-123478.glif</string>\n    <key>blockOctant-123478.stypo</key>\n    <string>blockO_ctant-123478.stypo.glif</string>\n    <key>blockOctant-578</key>\n    <string>blockO_ctant-578.glif</string>\n    <key>blockOctant-578.stypo</key>\n    <string>blockO_ctant-578.stypo.glif</string>\n    <key>blockOctant-1578</key>\n    <string>blockO_ctant-1578.glif</string>\n    <key>blockOctant-1578.stypo</key>\n    <string>blockO_ctant-1578.stypo.glif</string>\n    <key>blockOctant-2578</key>\n    <string>blockO_ctant-2578.glif</string>\n    <key>blockOctant-2578.stypo</key>\n    <string>blockO_ctant-2578.stypo.glif</string>\n    <key>blockOctant-12578</key>\n    <string>blockO_ctant-12578.glif</string>\n    <key>blockOctant-12578.stypo</key>\n    <string>blockO_ctant-12578.stypo.glif</string>\n    <key>blockOctant-3578</key>\n    <string>blockO_ctant-3578.glif</string>\n    <key>blockOctant-3578.stypo</key>\n    <string>blockO_ctant-3578.stypo.glif</string>\n    <key>blockOctant-13578</key>\n    <string>blockO_ctant-13578.glif</string>\n    <key>blockOctant-13578.stypo</key>\n    <string>blockO_ctant-13578.stypo.glif</string>\n    <key>blockOctant-23578</key>\n    <string>blockO_ctant-23578.glif</string>\n    <key>blockOctant-23578.stypo</key>\n    <string>blockO_ctant-23578.stypo.glif</string>\n    <key>blockOctant-123578</key>\n    <string>blockO_ctant-123578.glif</string>\n    <key>blockOctant-123578.stypo</key>\n    <string>blockO_ctant-123578.stypo.glif</string>\n    <key>blockOctant-4578</key>\n    <string>blockO_ctant-4578.glif</string>\n    <key>blockOctant-4578.stypo</key>\n    <string>blockO_ctant-4578.stypo.glif</string>\n    <key>blockOctant-14578</key>\n    <string>blockO_ctant-14578.glif</string>\n    <key>blockOctant-14578.stypo</key>\n    <string>blockO_ctant-14578.stypo.glif</string>\n    <key>blockOctant-24578</key>\n    <string>blockO_ctant-24578.glif</string>\n    <key>blockOctant-24578.stypo</key>\n    <string>blockO_ctant-24578.stypo.glif</string>\n    <key>blockOctant-124578</key>\n    <string>blockO_ctant-124578.glif</string>\n    <key>blockOctant-124578.stypo</key>\n    <string>blockO_ctant-124578.stypo.glif</string>\n    <key>blockOctant-34578</key>\n    <string>blockO_ctant-34578.glif</string>\n    <key>blockOctant-34578.stypo</key>\n    <string>blockO_ctant-34578.stypo.glif</string>\n    <key>blockOctant-134578</key>\n    <string>blockO_ctant-134578.glif</string>\n    <key>blockOctant-134578.stypo</key>\n    <string>blockO_ctant-134578.stypo.glif</string>\n    <key>blockOctant-234578</key>\n    <string>blockO_ctant-234578.glif</string>\n    <key>blockOctant-234578.stypo</key>\n    <string>blockO_ctant-234578.stypo.glif</string>\n    <key>blockOctant-1234578</key>\n    <string>blockO_ctant-1234578.glif</string>\n    <key>blockOctant-1234578.stypo</key>\n    <string>blockO_ctant-1234578.stypo.glif</string>\n    <key>blockOctant-678</key>\n    <string>blockO_ctant-678.glif</string>\n    <key>blockOctant-678.stypo</key>\n    <string>blockO_ctant-678.stypo.glif</string>\n    <key>blockOctant-1678</key>\n    <string>blockO_ctant-1678.glif</string>\n    <key>blockOctant-1678.stypo</key>\n    <string>blockO_ctant-1678.stypo.glif</string>\n    <key>blockOctant-2678</key>\n    <string>blockO_ctant-2678.glif</string>\n    <key>blockOctant-2678.stypo</key>\n    <string>blockO_ctant-2678.stypo.glif</string>\n    <key>blockOctant-12678</key>\n    <string>blockO_ctant-12678.glif</string>\n    <key>blockOctant-12678.stypo</key>\n    <string>blockO_ctant-12678.stypo.glif</string>\n    <key>blockOctant-3678</key>\n    <string>blockO_ctant-3678.glif</string>\n    <key>blockOctant-3678.stypo</key>\n    <string>blockO_ctant-3678.stypo.glif</string>\n    <key>blockOctant-13678</key>\n    <string>blockO_ctant-13678.glif</string>\n    <key>blockOctant-13678.stypo</key>\n    <string>blockO_ctant-13678.stypo.glif</string>\n    <key>blockOctant-23678</key>\n    <string>blockO_ctant-23678.glif</string>\n    <key>blockOctant-23678.stypo</key>\n    <string>blockO_ctant-23678.stypo.glif</string>\n    <key>blockOctant-123678</key>\n    <string>blockO_ctant-123678.glif</string>\n    <key>blockOctant-123678.stypo</key>\n    <string>blockO_ctant-123678.stypo.glif</string>\n    <key>blockOctant-4678</key>\n    <string>blockO_ctant-4678.glif</string>\n    <key>blockOctant-4678.stypo</key>\n    <string>blockO_ctant-4678.stypo.glif</string>\n    <key>blockOctant-14678</key>\n    <string>blockO_ctant-14678.glif</string>\n    <key>blockOctant-14678.stypo</key>\n    <string>blockO_ctant-14678.stypo.glif</string>\n    <key>blockOctant-24678</key>\n    <string>blockO_ctant-24678.glif</string>\n    <key>blockOctant-24678.stypo</key>\n    <string>blockO_ctant-24678.stypo.glif</string>\n    <key>blockOctant-124678</key>\n    <string>blockO_ctant-124678.glif</string>\n    <key>blockOctant-124678.stypo</key>\n    <string>blockO_ctant-124678.stypo.glif</string>\n    <key>blockOctant-34678</key>\n    <string>blockO_ctant-34678.glif</string>\n    <key>blockOctant-34678.stypo</key>\n    <string>blockO_ctant-34678.stypo.glif</string>\n    <key>blockOctant-134678</key>\n    <string>blockO_ctant-134678.glif</string>\n    <key>blockOctant-134678.stypo</key>\n    <string>blockO_ctant-134678.stypo.glif</string>\n    <key>blockOctant-234678</key>\n    <string>blockO_ctant-234678.glif</string>\n    <key>blockOctant-234678.stypo</key>\n    <string>blockO_ctant-234678.stypo.glif</string>\n    <key>blockOctant-1234678</key>\n    <string>blockO_ctant-1234678.glif</string>\n    <key>blockOctant-1234678.stypo</key>\n    <string>blockO_ctant-1234678.stypo.glif</string>\n    <key>blockOctant-15678</key>\n    <string>blockO_ctant-15678.glif</string>\n    <key>blockOctant-15678.stypo</key>\n    <string>blockO_ctant-15678.stypo.glif</string>\n    <key>blockOctant-25678</key>\n    <string>blockO_ctant-25678.glif</string>\n    <key>blockOctant-25678.stypo</key>\n    <string>blockO_ctant-25678.stypo.glif</string>\n    <key>blockOctant-125678</key>\n    <string>blockO_ctant-125678.glif</string>\n    <key>blockOctant-125678.stypo</key>\n    <string>blockO_ctant-125678.stypo.glif</string>\n    <key>blockOctant-35678</key>\n    <string>blockO_ctant-35678.glif</string>\n    <key>blockOctant-35678.stypo</key>\n    <string>blockO_ctant-35678.stypo.glif</string>\n    <key>blockOctant-235678</key>\n    <string>blockO_ctant-235678.glif</string>\n    <key>blockOctant-235678.stypo</key>\n    <string>blockO_ctant-235678.stypo.glif</string>\n    <key>blockOctant-1235678</key>\n    <string>blockO_ctant-1235678.glif</string>\n    <key>blockOctant-1235678.stypo</key>\n    <string>blockO_ctant-1235678.stypo.glif</string>\n    <key>blockOctant-45678</key>\n    <string>blockO_ctant-45678.glif</string>\n    <key>blockOctant-45678.stypo</key>\n    <string>blockO_ctant-45678.stypo.glif</string>\n    <key>blockOctant-145678</key>\n    <string>blockO_ctant-145678.glif</string>\n    <key>blockOctant-145678.stypo</key>\n    <string>blockO_ctant-145678.stypo.glif</string>\n    <key>blockOctant-1245678</key>\n    <string>blockO_ctant-1245678.glif</string>\n    <key>blockOctant-1245678.stypo</key>\n    <string>blockO_ctant-1245678.stypo.glif</string>\n    <key>blockOctant-1345678</key>\n    <string>blockO_ctant-1345678.glif</string>\n    <key>blockOctant-1345678.stypo</key>\n    <string>blockO_ctant-1345678.stypo.glif</string>\n    <key>blockOctant-2345678</key>\n    <string>blockO_ctant-2345678.glif</string>\n    <key>blockOctant-2345678.stypo</key>\n    <string>blockO_ctant-2345678.stypo.glif</string>\n    <key>blockSedecimant-1</key>\n    <string>blockS_edecimant-1.glif</string>\n    <key>blockSedecimant-1.stypo</key>\n    <string>blockS_edecimant-1.stypo.glif</string>\n    <key>blockSedecimant-2</key>\n    <string>blockS_edecimant-2.glif</string>\n    <key>blockSedecimant-2.stypo</key>\n    <string>blockS_edecimant-2.stypo.glif</string>\n    <key>blockSedecimant-3</key>\n    <string>blockS_edecimant-3.glif</string>\n    <key>blockSedecimant-3.stypo</key>\n    <string>blockS_edecimant-3.stypo.glif</string>\n    <key>blockSedecimant-4</key>\n    <string>blockS_edecimant-4.glif</string>\n    <key>blockSedecimant-4.stypo</key>\n    <string>blockS_edecimant-4.stypo.glif</string>\n    <key>blockSedecimant-5</key>\n    <string>blockS_edecimant-5.glif</string>\n    <key>blockSedecimant-5.stypo</key>\n    <string>blockS_edecimant-5.stypo.glif</string>\n    <key>blockSedecimant-6</key>\n    <string>blockS_edecimant-6.glif</string>\n    <key>blockSedecimant-6.stypo</key>\n    <string>blockS_edecimant-6.stypo.glif</string>\n    <key>blockSedecimant-7</key>\n    <string>blockS_edecimant-7.glif</string>\n    <key>blockSedecimant-7.stypo</key>\n    <string>blockS_edecimant-7.stypo.glif</string>\n    <key>blockSedecimant-8</key>\n    <string>blockS_edecimant-8.glif</string>\n    <key>blockSedecimant-8.stypo</key>\n    <string>blockS_edecimant-8.stypo.glif</string>\n    <key>blockSedecimant-9</key>\n    <string>blockS_edecimant-9.glif</string>\n    <key>blockSedecimant-9.stypo</key>\n    <string>blockS_edecimant-9.stypo.glif</string>\n    <key>blockSedecimant-A</key>\n    <string>blockS_edecimant-A.glif</string>\n    <key>blockSedecimant-A.stypo</key>\n    <string>blockS_edecimant-A.stypo.glif</string>\n    <key>blockSedecimant-B</key>\n    <string>blockS_edecimant-B.glif</string>\n    <key>blockSedecimant-B.stypo</key>\n    <string>blockS_edecimant-B.stypo.glif</string>\n    <key>blockSedecimant-C</key>\n    <string>blockS_edecimant-C.glif</string>\n    <key>blockSedecimant-C.stypo</key>\n    <string>blockS_edecimant-C.stypo.glif</string>\n    <key>blockSedecimant-D</key>\n    <string>blockS_edecimant-D.glif</string>\n    <key>blockSedecimant-D.stypo</key>\n    <string>blockS_edecimant-D.stypo.glif</string>\n    <key>blockSedecimant-E</key>\n    <string>blockS_edecimant-E.glif</string>\n    <key>blockSedecimant-E.stypo</key>\n    <string>blockS_edecimant-E.stypo.glif</string>\n    <key>blockSedecimant-F</key>\n    <string>blockS_edecimant-F.glif</string>\n    <key>blockSedecimant-F.stypo</key>\n    <string>blockS_edecimant-F.stypo.glif</string>\n    <key>blockSedecimant-G</key>\n    <string>blockS_edecimant-G.glif</string>\n    <key>blockSedecimant-G.stypo</key>\n    <string>blockS_edecimant-G.stypo.glif</string>\n    <key>blockSedecimant-EFG</key>\n    <string>blockS_edecimant-EFG.glif</string>\n    <key>blockSedecimant-EFG.stypo</key>\n    <string>blockS_edecimant-EFG.stypo.glif</string>\n    <key>blockSedecimant-DEF</key>\n    <string>blockS_edecimant-DEF.glif</string>\n    <key>blockSedecimant-DEF.stypo</key>\n    <string>blockS_edecimant-DEF.stypo.glif</string>\n    <key>blockSedecimant-9D</key>\n    <string>blockS_edecimant-9D.glif</string>\n    <key>blockSedecimant-9D.stypo</key>\n    <string>blockS_edecimant-9D.stypo.glif</string>\n    <key>blockSedecimant-59D</key>\n    <string>blockS_edecimant-59D.glif</string>\n    <key>blockSedecimant-59D.stypo</key>\n    <string>blockS_edecimant-59D.stypo.glif</string>\n    <key>blockSedecimant-159</key>\n    <string>blockS_edecimant-159.glif</string>\n    <key>blockSedecimant-159.stypo</key>\n    <string>blockS_edecimant-159.stypo.glif</string>\n    <key>blockSedecimant-15</key>\n    <string>blockS_edecimant-15.glif</string>\n    <key>blockSedecimant-15.stypo</key>\n    <string>blockS_edecimant-15.stypo.glif</string>\n    <key>blockSedecimant-123</key>\n    <string>blockS_edecimant-123.glif</string>\n    <key>blockSedecimant-123.stypo</key>\n    <string>blockS_edecimant-123.stypo.glif</string>\n    <key>blockSedecimant-234</key>\n    <string>blockS_edecimant-234.glif</string>\n    <key>blockSedecimant-234.stypo</key>\n    <string>blockS_edecimant-234.stypo.glif</string>\n    <key>blockSedecimant-48</key>\n    <string>blockS_edecimant-48.glif</string>\n    <key>blockSedecimant-48.stypo</key>\n    <string>blockS_edecimant-48.stypo.glif</string>\n    <key>blockSedecimant-48C</key>\n    <string>blockS_edecimant-48C.glif</string>\n    <key>blockSedecimant-48C.stypo</key>\n    <string>blockS_edecimant-48C.stypo.glif</string>\n    <key>blockSedecimant-8CG</key>\n    <string>blockS_edecimant-8CG.glif</string>\n    <key>blockSedecimant-8CG.stypo</key>\n    <string>blockS_edecimant-8CG.stypo.glif</string>\n    <key>blockSedecimant-CG</key>\n    <string>blockS_edecimant-CG.glif</string>\n    <key>blockSedecimant-CG.stypo</key>\n    <string>blockS_edecimant-CG.stypo.glif</string>\n    <key>verticalOneEighthBlock-2</key>\n    <string>verticalO_neE_ighthB_lock-2.glif</string>\n    <key>verticalOneEighthBlock-2.stypo</key>\n    <string>verticalO_neE_ighthB_lock-2.stypo.glif</string>\n    <key>verticalOneEighthBlock-3</key>\n    <string>verticalO_neE_ighthB_lock-3.glif</string>\n    <key>verticalOneEighthBlock-3.stypo</key>\n    <string>verticalO_neE_ighthB_lock-3.stypo.glif</string>\n    <key>verticalOneEighthBlock-4</key>\n    <string>verticalO_neE_ighthB_lock-4.glif</string>\n    <key>verticalOneEighthBlock-4.stypo</key>\n    <string>verticalO_neE_ighthB_lock-4.stypo.glif</string>\n    <key>verticalOneEighthBlock-5</key>\n    <string>verticalO_neE_ighthB_lock-5.glif</string>\n    <key>verticalOneEighthBlock-5.stypo</key>\n    <string>verticalO_neE_ighthB_lock-5.stypo.glif</string>\n    <key>verticalOneEighthBlock-6</key>\n    <string>verticalO_neE_ighthB_lock-6.glif</string>\n    <key>verticalOneEighthBlock-6.stypo</key>\n    <string>verticalO_neE_ighthB_lock-6.stypo.glif</string>\n    <key>verticalOneEighthBlock-7</key>\n    <string>verticalO_neE_ighthB_lock-7.glif</string>\n    <key>verticalOneEighthBlock-7.stypo</key>\n    <string>verticalO_neE_ighthB_lock-7.stypo.glif</string>\n    <key>horizontalOneEightBlock-2</key>\n    <string>horizontalO_neE_ightB_lock-2.glif</string>\n    <key>horizontalOneEightBlock-2.stypo</key>\n    <string>horizontalO_neE_ightB_lock-2.stypo.glif</string>\n    <key>horizontalOneEightBlock-3</key>\n    <string>horizontalO_neE_ightB_lock-3.glif</string>\n    <key>horizontalOneEightBlock-3.stypo</key>\n    <string>horizontalO_neE_ightB_lock-3.stypo.glif</string>\n    <key>horizontalOneEightBlock-4</key>\n    <string>horizontalO_neE_ightB_lock-4.glif</string>\n    <key>horizontalOneEightBlock-4.stypo</key>\n    <string>horizontalO_neE_ightB_lock-4.stypo.glif</string>\n    <key>horizontalOneEightBlock-5</key>\n    <string>horizontalO_neE_ightB_lock-5.glif</string>\n    <key>horizontalOneEightBlock-5.stypo</key>\n    <string>horizontalO_neE_ightB_lock-5.stypo.glif</string>\n    <key>horizontalOneEightBlock-6</key>\n    <string>horizontalO_neE_ightB_lock-6.glif</string>\n    <key>horizontalOneEightBlock-6.stypo</key>\n    <string>horizontalO_neE_ightB_lock-6.stypo.glif</string>\n    <key>horizontalOneEightBlock-7</key>\n    <string>horizontalO_neE_ightB_lock-7.glif</string>\n    <key>horizontalOneEightBlock-7.stypo</key>\n    <string>horizontalO_neE_ightB_lock-7.stypo.glif</string>\n    <key>leftAndLowerOneEightBlock</key>\n    <string>leftA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>leftAndLowerOneEightBlock.stypo</key>\n    <string>leftA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>leftAndUpperOneEightBlock</key>\n    <string>leftA_ndU_pperO_neE_ightB_lock.glif</string>\n    <key>leftAndUpperOneEightBlock.stypo</key>\n    <string>leftA_ndU_pperO_neE_ightB_lock.stypo.glif</string>\n    <key>rightAndUpperOneEightBlock</key>\n    <string>rightA_ndU_pperO_neE_ightB_lock.glif</string>\n    <key>rightAndUpperOneEightBlock.stypo</key>\n    <string>rightA_ndU_pperO_neE_ightB_lock.stypo.glif</string>\n    <key>rightAndLowerOneEightBlock</key>\n    <string>rightA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>rightAndLowerOneEightBlock.stypo</key>\n    <string>rightA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>upperAndLowerOneEightBlock</key>\n    <string>upperA_ndL_owerO_neE_ightB_lock.glif</string>\n    <key>upperAndLowerOneEightBlock.stypo</key>\n    <string>upperA_ndL_owerO_neE_ightB_lock.stypo.glif</string>\n    <key>upperThreeEighthsBlock</key>\n    <string>upperT_hreeE_ighthsB_lock.glif</string>\n    <key>upperThreeEighthsBlock.stypo</key>\n    <string>upperT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>upperFiveEighthsBlock</key>\n    <string>upperF_iveE_ighthsB_lock.glif</string>\n    <key>upperFiveEighthsBlock.stypo</key>\n    <string>upperF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>upperSevenEighthsBlock</key>\n    <string>upperS_evenE_ighthsB_lock.glif</string>\n    <key>upperSevenEighthsBlock.stypo</key>\n    <string>upperS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>rightOneQuarterBlock</key>\n    <string>rightO_neQ_uarterB_lock.glif</string>\n    <key>rightOneQuarterBlock.stypo</key>\n    <string>rightO_neQ_uarterB_lock.stypo.glif</string>\n    <key>rightThreeEighthsBlock</key>\n    <string>rightT_hreeE_ighthsB_lock.glif</string>\n    <key>rightThreeEighthsBlock.stypo</key>\n    <string>rightT_hreeE_ighthsB_lock.stypo.glif</string>\n    <key>rightFiveEighthsBlock</key>\n    <string>rightF_iveE_ighthsB_lock.glif</string>\n    <key>rightFiveEighthsBlock.stypo</key>\n    <string>rightF_iveE_ighthsB_lock.stypo.glif</string>\n    <key>rightThreeQuartersBlock</key>\n    <string>rightT_hreeQ_uartersB_lock.glif</string>\n    <key>rightThreeQuartersBlock.stypo</key>\n    <string>rightT_hreeQ_uartersB_lock.stypo.glif</string>\n    <key>rightSevenEighthsBlock</key>\n    <string>rightS_evenE_ighthsB_lock.glif</string>\n    <key>rightSevenEighthsBlock.stypo</key>\n    <string>rightS_evenE_ighthsB_lock.stypo.glif</string>\n    <key>leftTwoThirdsBlock</key>\n    <string>leftT_woT_hirdsB_lock.glif</string>\n    <key>leftTwoThirdsBlock.stypo</key>\n    <string>leftT_woT_hirdsB_lock.stypo.glif</string>\n    <key>leftOneThirdBlock</key>\n    <string>leftO_neT_hirdB_lock.glif</string>\n    <key>leftOneThirdBlock.stypo</key>\n    <string>leftO_neT_hirdB_lock.stypo.glif</string>\n    <key>heavyHorizontalFill</key>\n    <string>heavyH_orizontalF_ill.glif</string>\n    <key>heavyHorizontalFill.stypo</key>\n    <string>heavyH_orizontalF_ill.stypo.glif</string>\n    <key>blockSeparatedQuadrant-1</key>\n    <string>blockS_eparatedQ_uadrant-1.glif</string>\n    <key>blockSeparatedQuadrant-1.stypo</key>\n    <string>blockS_eparatedQ_uadrant-1.stypo.glif</string>\n    <key>blockSeparatedQuadrant-2</key>\n    <string>blockS_eparatedQ_uadrant-2.glif</string>\n    <key>blockSeparatedQuadrant-2.stypo</key>\n    <string>blockS_eparatedQ_uadrant-2.stypo.glif</string>\n    <key>blockSeparatedQuadrant-12</key>\n    <string>blockS_eparatedQ_uadrant-12.glif</string>\n    <key>blockSeparatedQuadrant-12.stypo</key>\n    <string>blockS_eparatedQ_uadrant-12.stypo.glif</string>\n    <key>blockSeparatedQuadrant-3</key>\n    <string>blockS_eparatedQ_uadrant-3.glif</string>\n    <key>blockSeparatedQuadrant-3.stypo</key>\n    <string>blockS_eparatedQ_uadrant-3.stypo.glif</string>\n    <key>blockSeparatedQuadrant-13</key>\n    <string>blockS_eparatedQ_uadrant-13.glif</string>\n    <key>blockSeparatedQuadrant-13.stypo</key>\n    <string>blockS_eparatedQ_uadrant-13.stypo.glif</string>\n    <key>blockSeparatedQuadrant-23</key>\n    <string>blockS_eparatedQ_uadrant-23.glif</string>\n    <key>blockSeparatedQuadrant-23.stypo</key>\n    <string>blockS_eparatedQ_uadrant-23.stypo.glif</string>\n    <key>blockSeparatedQuadrant-123</key>\n    <string>blockS_eparatedQ_uadrant-123.glif</string>\n    <key>blockSeparatedQuadrant-123.stypo</key>\n    <string>blockS_eparatedQ_uadrant-123.stypo.glif</string>\n    <key>blockSeparatedQuadrant-4</key>\n    <string>blockS_eparatedQ_uadrant-4.glif</string>\n    <key>blockSeparatedQuadrant-4.stypo</key>\n    <string>blockS_eparatedQ_uadrant-4.stypo.glif</string>\n    <key>blockSeparatedQuadrant-14</key>\n    <string>blockS_eparatedQ_uadrant-14.glif</string>\n    <key>blockSeparatedQuadrant-14.stypo</key>\n    <string>blockS_eparatedQ_uadrant-14.stypo.glif</string>\n    <key>blockSeparatedQuadrant-24</key>\n    <string>blockS_eparatedQ_uadrant-24.glif</string>\n    <key>blockSeparatedQuadrant-24.stypo</key>\n    <string>blockS_eparatedQ_uadrant-24.stypo.glif</string>\n    <key>blockSeparatedQuadrant-124</key>\n    <string>blockS_eparatedQ_uadrant-124.glif</string>\n    <key>blockSeparatedQuadrant-124.stypo</key>\n    <string>blockS_eparatedQ_uadrant-124.stypo.glif</string>\n    <key>blockSeparatedQuadrant-34</key>\n    <string>blockS_eparatedQ_uadrant-34.glif</string>\n    <key>blockSeparatedQuadrant-34.stypo</key>\n    <string>blockS_eparatedQ_uadrant-34.stypo.glif</string>\n    <key>blockSeparatedQuadrant-134</key>\n    <string>blockS_eparatedQ_uadrant-134.glif</string>\n    <key>blockSeparatedQuadrant-134.stypo</key>\n    <string>blockS_eparatedQ_uadrant-134.stypo.glif</string>\n    <key>blockSeparatedQuadrant-234</key>\n    <string>blockS_eparatedQ_uadrant-234.glif</string>\n    <key>blockSeparatedQuadrant-234.stypo</key>\n    <string>blockS_eparatedQ_uadrant-234.stypo.glif</string>\n    <key>blockSeparatedQuadrant-1234</key>\n    <string>blockS_eparatedQ_uadrant-1234.glif</string>\n    <key>blockSeparatedQuadrant-1234.stypo</key>\n    <string>blockS_eparatedQ_uadrant-1234.stypo.glif</string>\n    <key>blockSeparatedSextant-1</key>\n    <string>blockS_eparatedS_extant-1.glif</string>\n    <key>blockSeparatedSextant-1.stypo</key>\n    <string>blockS_eparatedS_extant-1.stypo.glif</string>\n    <key>blockSeparatedSextant-2</key>\n    <string>blockS_eparatedS_extant-2.glif</string>\n    <key>blockSeparatedSextant-2.stypo</key>\n    <string>blockS_eparatedS_extant-2.stypo.glif</string>\n    <key>blockSeparatedSextant-12</key>\n    <string>blockS_eparatedS_extant-12.glif</string>\n    <key>blockSeparatedSextant-12.stypo</key>\n    <string>blockS_eparatedS_extant-12.stypo.glif</string>\n    <key>blockSeparatedSextant-3</key>\n    <string>blockS_eparatedS_extant-3.glif</string>\n    <key>blockSeparatedSextant-3.stypo</key>\n    <string>blockS_eparatedS_extant-3.stypo.glif</string>\n    <key>blockSeparatedSextant-13</key>\n    <string>blockS_eparatedS_extant-13.glif</string>\n    <key>blockSeparatedSextant-13.stypo</key>\n    <string>blockS_eparatedS_extant-13.stypo.glif</string>\n    <key>blockSeparatedSextant-23</key>\n    <string>blockS_eparatedS_extant-23.glif</string>\n    <key>blockSeparatedSextant-23.stypo</key>\n    <string>blockS_eparatedS_extant-23.stypo.glif</string>\n    <key>blockSeparatedSextant-123</key>\n    <string>blockS_eparatedS_extant-123.glif</string>\n    <key>blockSeparatedSextant-123.stypo</key>\n    <string>blockS_eparatedS_extant-123.stypo.glif</string>\n    <key>blockSeparatedSextant-4</key>\n    <string>blockS_eparatedS_extant-4.glif</string>\n    <key>blockSeparatedSextant-4.stypo</key>\n    <string>blockS_eparatedS_extant-4.stypo.glif</string>\n    <key>blockSeparatedSextant-14</key>\n    <string>blockS_eparatedS_extant-14.glif</string>\n    <key>blockSeparatedSextant-14.stypo</key>\n    <string>blockS_eparatedS_extant-14.stypo.glif</string>\n    <key>blockSeparatedSextant-24</key>\n    <string>blockS_eparatedS_extant-24.glif</string>\n    <key>blockSeparatedSextant-24.stypo</key>\n    <string>blockS_eparatedS_extant-24.stypo.glif</string>\n    <key>blockSeparatedSextant-124</key>\n    <string>blockS_eparatedS_extant-124.glif</string>\n    <key>blockSeparatedSextant-124.stypo</key>\n    <string>blockS_eparatedS_extant-124.stypo.glif</string>\n    <key>blockSeparatedSextant-34</key>\n    <string>blockS_eparatedS_extant-34.glif</string>\n    <key>blockSeparatedSextant-34.stypo</key>\n    <string>blockS_eparatedS_extant-34.stypo.glif</string>\n    <key>blockSeparatedSextant-134</key>\n    <string>blockS_eparatedS_extant-134.glif</string>\n    <key>blockSeparatedSextant-134.stypo</key>\n    <string>blockS_eparatedS_extant-134.stypo.glif</string>\n    <key>blockSeparatedSextant-234</key>\n    <string>blockS_eparatedS_extant-234.glif</string>\n    <key>blockSeparatedSextant-234.stypo</key>\n    <string>blockS_eparatedS_extant-234.stypo.glif</string>\n    <key>blockSeparatedSextant-1234</key>\n    <string>blockS_eparatedS_extant-1234.glif</string>\n    <key>blockSeparatedSextant-1234.stypo</key>\n    <string>blockS_eparatedS_extant-1234.stypo.glif</string>\n    <key>blockSeparatedSextant-5</key>\n    <string>blockS_eparatedS_extant-5.glif</string>\n    <key>blockSeparatedSextant-5.stypo</key>\n    <string>blockS_eparatedS_extant-5.stypo.glif</string>\n    <key>blockSeparatedSextant-15</key>\n    <string>blockS_eparatedS_extant-15.glif</string>\n    <key>blockSeparatedSextant-15.stypo</key>\n    <string>blockS_eparatedS_extant-15.stypo.glif</string>\n    <key>blockSeparatedSextant-25</key>\n    <string>blockS_eparatedS_extant-25.glif</string>\n    <key>blockSeparatedSextant-25.stypo</key>\n    <string>blockS_eparatedS_extant-25.stypo.glif</string>\n    <key>blockSeparatedSextant-125</key>\n    <string>blockS_eparatedS_extant-125.glif</string>\n    <key>blockSeparatedSextant-125.stypo</key>\n    <string>blockS_eparatedS_extant-125.stypo.glif</string>\n    <key>blockSeparatedSextant-35</key>\n    <string>blockS_eparatedS_extant-35.glif</string>\n    <key>blockSeparatedSextant-35.stypo</key>\n    <string>blockS_eparatedS_extant-35.stypo.glif</string>\n    <key>blockSeparatedSextant-135</key>\n    <string>blockS_eparatedS_extant-135.glif</string>\n    <key>blockSeparatedSextant-135.stypo</key>\n    <string>blockS_eparatedS_extant-135.stypo.glif</string>\n    <key>blockSeparatedSextant-235</key>\n    <string>blockS_eparatedS_extant-235.glif</string>\n    <key>blockSeparatedSextant-235.stypo</key>\n    <string>blockS_eparatedS_extant-235.stypo.glif</string>\n    <key>blockSeparatedSextant-1235</key>\n    <string>blockS_eparatedS_extant-1235.glif</string>\n    <key>blockSeparatedSextant-1235.stypo</key>\n    <string>blockS_eparatedS_extant-1235.stypo.glif</string>\n    <key>blockSeparatedSextant-45</key>\n    <string>blockS_eparatedS_extant-45.glif</string>\n    <key>blockSeparatedSextant-45.stypo</key>\n    <string>blockS_eparatedS_extant-45.stypo.glif</string>\n    <key>blockSeparatedSextant-145</key>\n    <string>blockS_eparatedS_extant-145.glif</string>\n    <key>blockSeparatedSextant-145.stypo</key>\n    <string>blockS_eparatedS_extant-145.stypo.glif</string>\n    <key>blockSeparatedSextant-245</key>\n    <string>blockS_eparatedS_extant-245.glif</string>\n    <key>blockSeparatedSextant-245.stypo</key>\n    <string>blockS_eparatedS_extant-245.stypo.glif</string>\n    <key>blockSeparatedSextant-1245</key>\n    <string>blockS_eparatedS_extant-1245.glif</string>\n    <key>blockSeparatedSextant-1245.stypo</key>\n    <string>blockS_eparatedS_extant-1245.stypo.glif</string>\n    <key>blockSeparatedSextant-345</key>\n    <string>blockS_eparatedS_extant-345.glif</string>\n    <key>blockSeparatedSextant-345.stypo</key>\n    <string>blockS_eparatedS_extant-345.stypo.glif</string>\n    <key>blockSeparatedSextant-1345</key>\n    <string>blockS_eparatedS_extant-1345.glif</string>\n    <key>blockSeparatedSextant-1345.stypo</key>\n    <string>blockS_eparatedS_extant-1345.stypo.glif</string>\n    <key>blockSeparatedSextant-2345</key>\n    <string>blockS_eparatedS_extant-2345.glif</string>\n    <key>blockSeparatedSextant-2345.stypo</key>\n    <string>blockS_eparatedS_extant-2345.stypo.glif</string>\n    <key>blockSeparatedSextant-12345</key>\n    <string>blockS_eparatedS_extant-12345.glif</string>\n    <key>blockSeparatedSextant-12345.stypo</key>\n    <string>blockS_eparatedS_extant-12345.stypo.glif</string>\n    <key>blockSeparatedSextant-6</key>\n    <string>blockS_eparatedS_extant-6.glif</string>\n    <key>blockSeparatedSextant-6.stypo</key>\n    <string>blockS_eparatedS_extant-6.stypo.glif</string>\n    <key>blockSeparatedSextant-16</key>\n    <string>blockS_eparatedS_extant-16.glif</string>\n    <key>blockSeparatedSextant-16.stypo</key>\n    <string>blockS_eparatedS_extant-16.stypo.glif</string>\n    <key>blockSeparatedSextant-26</key>\n    <string>blockS_eparatedS_extant-26.glif</string>\n    <key>blockSeparatedSextant-26.stypo</key>\n    <string>blockS_eparatedS_extant-26.stypo.glif</string>\n    <key>blockSeparatedSextant-126</key>\n    <string>blockS_eparatedS_extant-126.glif</string>\n    <key>blockSeparatedSextant-126.stypo</key>\n    <string>blockS_eparatedS_extant-126.stypo.glif</string>\n    <key>blockSeparatedSextant-36</key>\n    <string>blockS_eparatedS_extant-36.glif</string>\n    <key>blockSeparatedSextant-36.stypo</key>\n    <string>blockS_eparatedS_extant-36.stypo.glif</string>\n    <key>blockSeparatedSextant-136</key>\n    <string>blockS_eparatedS_extant-136.glif</string>\n    <key>blockSeparatedSextant-136.stypo</key>\n    <string>blockS_eparatedS_extant-136.stypo.glif</string>\n    <key>blockSeparatedSextant-236</key>\n    <string>blockS_eparatedS_extant-236.glif</string>\n    <key>blockSeparatedSextant-236.stypo</key>\n    <string>blockS_eparatedS_extant-236.stypo.glif</string>\n    <key>blockSeparatedSextant-1236</key>\n    <string>blockS_eparatedS_extant-1236.glif</string>\n    <key>blockSeparatedSextant-1236.stypo</key>\n    <string>blockS_eparatedS_extant-1236.stypo.glif</string>\n    <key>blockSeparatedSextant-46</key>\n    <string>blockS_eparatedS_extant-46.glif</string>\n    <key>blockSeparatedSextant-46.stypo</key>\n    <string>blockS_eparatedS_extant-46.stypo.glif</string>\n    <key>blockSeparatedSextant-146</key>\n    <string>blockS_eparatedS_extant-146.glif</string>\n    <key>blockSeparatedSextant-146.stypo</key>\n    <string>blockS_eparatedS_extant-146.stypo.glif</string>\n    <key>blockSeparatedSextant-246</key>\n    <string>blockS_eparatedS_extant-246.glif</string>\n    <key>blockSeparatedSextant-246.stypo</key>\n    <string>blockS_eparatedS_extant-246.stypo.glif</string>\n    <key>blockSeparatedSextant-1246</key>\n    <string>blockS_eparatedS_extant-1246.glif</string>\n    <key>blockSeparatedSextant-1246.stypo</key>\n    <string>blockS_eparatedS_extant-1246.stypo.glif</string>\n    <key>blockSeparatedSextant-346</key>\n    <string>blockS_eparatedS_extant-346.glif</string>\n    <key>blockSeparatedSextant-346.stypo</key>\n    <string>blockS_eparatedS_extant-346.stypo.glif</string>\n    <key>blockSeparatedSextant-1346</key>\n    <string>blockS_eparatedS_extant-1346.glif</string>\n    <key>blockSeparatedSextant-1346.stypo</key>\n    <string>blockS_eparatedS_extant-1346.stypo.glif</string>\n    <key>blockSeparatedSextant-2346</key>\n    <string>blockS_eparatedS_extant-2346.glif</string>\n    <key>blockSeparatedSextant-2346.stypo</key>\n    <string>blockS_eparatedS_extant-2346.stypo.glif</string>\n    <key>blockSeparatedSextant-12346</key>\n    <string>blockS_eparatedS_extant-12346.glif</string>\n    <key>blockSeparatedSextant-12346.stypo</key>\n    <string>blockS_eparatedS_extant-12346.stypo.glif</string>\n    <key>blockSeparatedSextant-56</key>\n    <string>blockS_eparatedS_extant-56.glif</string>\n    <key>blockSeparatedSextant-56.stypo</key>\n    <string>blockS_eparatedS_extant-56.stypo.glif</string>\n    <key>blockSeparatedSextant-156</key>\n    <string>blockS_eparatedS_extant-156.glif</string>\n    <key>blockSeparatedSextant-156.stypo</key>\n    <string>blockS_eparatedS_extant-156.stypo.glif</string>\n    <key>blockSeparatedSextant-256</key>\n    <string>blockS_eparatedS_extant-256.glif</string>\n    <key>blockSeparatedSextant-256.stypo</key>\n    <string>blockS_eparatedS_extant-256.stypo.glif</string>\n    <key>blockSeparatedSextant-1256</key>\n    <string>blockS_eparatedS_extant-1256.glif</string>\n    <key>blockSeparatedSextant-1256.stypo</key>\n    <string>blockS_eparatedS_extant-1256.stypo.glif</string>\n    <key>blockSeparatedSextant-356</key>\n    <string>blockS_eparatedS_extant-356.glif</string>\n    <key>blockSeparatedSextant-356.stypo</key>\n    <string>blockS_eparatedS_extant-356.stypo.glif</string>\n    <key>blockSeparatedSextant-1356</key>\n    <string>blockS_eparatedS_extant-1356.glif</string>\n    <key>blockSeparatedSextant-1356.stypo</key>\n    <string>blockS_eparatedS_extant-1356.stypo.glif</string>\n    <key>blockSeparatedSextant-2356</key>\n    <string>blockS_eparatedS_extant-2356.glif</string>\n    <key>blockSeparatedSextant-2356.stypo</key>\n    <string>blockS_eparatedS_extant-2356.stypo.glif</string>\n    <key>blockSeparatedSextant-12356</key>\n    <string>blockS_eparatedS_extant-12356.glif</string>\n    <key>blockSeparatedSextant-12356.stypo</key>\n    <string>blockS_eparatedS_extant-12356.stypo.glif</string>\n    <key>blockSeparatedSextant-456</key>\n    <string>blockS_eparatedS_extant-456.glif</string>\n    <key>blockSeparatedSextant-456.stypo</key>\n    <string>blockS_eparatedS_extant-456.stypo.glif</string>\n    <key>blockSeparatedSextant-1456</key>\n    <string>blockS_eparatedS_extant-1456.glif</string>\n    <key>blockSeparatedSextant-1456.stypo</key>\n    <string>blockS_eparatedS_extant-1456.stypo.glif</string>\n    <key>blockSeparatedSextant-2456</key>\n    <string>blockS_eparatedS_extant-2456.glif</string>\n    <key>blockSeparatedSextant-2456.stypo</key>\n    <string>blockS_eparatedS_extant-2456.stypo.glif</string>\n    <key>blockSeparatedSextant-12456</key>\n    <string>blockS_eparatedS_extant-12456.glif</string>\n    <key>blockSeparatedSextant-12456.stypo</key>\n    <string>blockS_eparatedS_extant-12456.stypo.glif</string>\n    <key>blockSeparatedSextant-3456</key>\n    <string>blockS_eparatedS_extant-3456.glif</string>\n    <key>blockSeparatedSextant-3456.stypo</key>\n    <string>blockS_eparatedS_extant-3456.stypo.glif</string>\n    <key>blockSeparatedSextant-13456</key>\n    <string>blockS_eparatedS_extant-13456.glif</string>\n    <key>blockSeparatedSextant-13456.stypo</key>\n    <string>blockS_eparatedS_extant-13456.stypo.glif</string>\n    <key>blockSeparatedSextant-23456</key>\n    <string>blockS_eparatedS_extant-23456.glif</string>\n    <key>blockSeparatedSextant-23456.stypo</key>\n    <string>blockS_eparatedS_extant-23456.stypo.glif</string>\n    <key>blockSeparatedSextant-123456</key>\n    <string>blockS_eparatedS_extant-123456.glif</string>\n    <key>blockSeparatedSextant-123456.stypo</key>\n    <string>blockS_eparatedS_extant-123456.stypo.glif</string>\n    <key>segmentedDigit0</key>\n    <string>segmentedD_igit0.glif</string>\n    <key>segmentedDigit1</key>\n    <string>segmentedD_igit1.glif</string>\n    <key>segmentedDigit2</key>\n    <string>segmentedD_igit2.glif</string>\n    <key>segmentedDigit3</key>\n    <string>segmentedD_igit3.glif</string>\n    <key>segmentedDigit4</key>\n    <string>segmentedD_igit4.glif</string>\n    <key>segmentedDigit5</key>\n    <string>segmentedD_igit5.glif</string>\n    <key>segmentedDigit6</key>\n    <string>segmentedD_igit6.glif</string>\n    <key>segmentedDigit7</key>\n    <string>segmentedD_igit7.glif</string>\n    <key>segmentedDigit8</key>\n    <string>segmentedD_igit8.glif</string>\n    <key>segmentedDigit9</key>\n    <string>segmentedD_igit9.glif</string>\n    <key>largeType-1CE1A</key>\n    <string>largeT_ype-1CE1A.glif</string>\n    <key>largeType-1CE1A.stypo</key>\n    <string>largeT_ype-1CE1A.stypo.glif</string>\n    <key>largeType-1CE1B</key>\n    <string>largeT_ype-1CE1B.glif</string>\n    <key>largeType-1CE1B.stypo</key>\n    <string>largeT_ype-1CE1B.stypo.glif</string>\n    <key>largeType-1CE1C</key>\n    <string>largeT_ype-1CE1C.glif</string>\n    <key>largeType-1CE1C.stypo</key>\n    <string>largeT_ype-1CE1C.stypo.glif</string>\n    <key>largeType-1CE1D</key>\n    <string>largeT_ype-1CE1D.glif</string>\n    <key>largeType-1CE1D.stypo</key>\n    <string>largeT_ype-1CE1D.stypo.glif</string>\n    <key>largeType-1CE1E</key>\n    <string>largeT_ype-1CE1E.glif</string>\n    <key>largeType-1CE1E.stypo</key>\n    <string>largeT_ype-1CE1E.stypo.glif</string>\n    <key>largeType-1CE1F</key>\n    <string>largeT_ype-1CE1F.glif</string>\n    <key>largeType-1CE1F.stypo</key>\n    <string>largeT_ype-1CE1F.stypo.glif</string>\n    <key>largeType-1CE20</key>\n    <string>largeT_ype-1CE20.glif</string>\n    <key>largeType-1CE20.stypo</key>\n    <string>largeT_ype-1CE20.stypo.glif</string>\n    <key>largeType-1CE21</key>\n    <string>largeT_ype-1CE21.glif</string>\n    <key>largeType-1CE21.stypo</key>\n    <string>largeT_ype-1CE21.stypo.glif</string>\n    <key>largeType-1CE22</key>\n    <string>largeT_ype-1CE22.glif</string>\n    <key>largeType-1CE22.stypo</key>\n    <string>largeT_ype-1CE22.stypo.glif</string>\n    <key>largeType-1CE23</key>\n    <string>largeT_ype-1CE23.glif</string>\n    <key>largeType-1CE23.stypo</key>\n    <string>largeT_ype-1CE23.stypo.glif</string>\n    <key>largeType-1CE24</key>\n    <string>largeT_ype-1CE24.glif</string>\n    <key>largeType-1CE24.stypo</key>\n    <string>largeT_ype-1CE24.stypo.glif</string>\n    <key>largeType-1CE25</key>\n    <string>largeT_ype-1CE25.glif</string>\n    <key>largeType-1CE25.stypo</key>\n    <string>largeT_ype-1CE25.stypo.glif</string>\n    <key>largeType-1CE26</key>\n    <string>largeT_ype-1CE26.glif</string>\n    <key>largeType-1CE26.stypo</key>\n    <string>largeT_ype-1CE26.stypo.glif</string>\n    <key>largeType-1CE27</key>\n    <string>largeT_ype-1CE27.glif</string>\n    <key>largeType-1CE27.stypo</key>\n    <string>largeT_ype-1CE27.stypo.glif</string>\n    <key>largeType-1CE28</key>\n    <string>largeT_ype-1CE28.glif</string>\n    <key>largeType-1CE28.stypo</key>\n    <string>largeT_ype-1CE28.stypo.glif</string>\n    <key>largeType-1CE29</key>\n    <string>largeT_ype-1CE29.glif</string>\n    <key>largeType-1CE29.stypo</key>\n    <string>largeT_ype-1CE29.stypo.glif</string>\n    <key>largeType-1CE2A</key>\n    <string>largeT_ype-1CE2A.glif</string>\n    <key>largeType-1CE2A.stypo</key>\n    <string>largeT_ype-1CE2A.stypo.glif</string>\n    <key>largeType-1CE2B</key>\n    <string>largeT_ype-1CE2B.glif</string>\n    <key>largeType-1CE2B.stypo</key>\n    <string>largeT_ype-1CE2B.stypo.glif</string>\n    <key>largeType-1CE2C</key>\n    <string>largeT_ype-1CE2C.glif</string>\n    <key>largeType-1CE2C.stypo</key>\n    <string>largeT_ype-1CE2C.stypo.glif</string>\n    <key>largeType-1CE2D</key>\n    <string>largeT_ype-1CE2D.glif</string>\n    <key>largeType-1CE2D.stypo</key>\n    <string>largeT_ype-1CE2D.stypo.glif</string>\n    <key>largeType-1CE2E</key>\n    <string>largeT_ype-1CE2E.glif</string>\n    <key>largeType-1CE2E.stypo</key>\n    <string>largeT_ype-1CE2E.stypo.glif</string>\n    <key>largeType-1CE2F</key>\n    <string>largeT_ype-1CE2F.glif</string>\n    <key>largeType-1CE2F.stypo</key>\n    <string>largeT_ype-1CE2F.stypo.glif</string>\n    <key>largeType-1CE30</key>\n    <string>largeT_ype-1CE30.glif</string>\n    <key>largeType-1CE30.stypo</key>\n    <string>largeT_ype-1CE30.stypo.glif</string>\n    <key>largeType-1CE31</key>\n    <string>largeT_ype-1CE31.glif</string>\n    <key>largeType-1CE31.stypo</key>\n    <string>largeT_ype-1CE31.stypo.glif</string>\n    <key>largeType-1CE32</key>\n    <string>largeT_ype-1CE32.glif</string>\n    <key>largeType-1CE32.stypo</key>\n    <string>largeT_ype-1CE32.stypo.glif</string>\n    <key>largeType-1CE33</key>\n    <string>largeT_ype-1CE33.glif</string>\n    <key>largeType-1CE33.stypo</key>\n    <string>largeT_ype-1CE33.stypo.glif</string>\n    <key>largeType-1CE34</key>\n    <string>largeT_ype-1CE34.glif</string>\n    <key>largeType-1CE34.stypo</key>\n    <string>largeT_ype-1CE34.stypo.glif</string>\n    <key>largeType-1CE35</key>\n    <string>largeT_ype-1CE35.glif</string>\n    <key>largeType-1CE35.stypo</key>\n    <string>largeT_ype-1CE35.stypo.glif</string>\n    <key>largeType-1CE36</key>\n    <string>largeT_ype-1CE36.glif</string>\n    <key>largeType-1CE36.stypo</key>\n    <string>largeT_ype-1CE36.stypo.glif</string>\n    <key>largeType-1CE37</key>\n    <string>largeT_ype-1CE37.glif</string>\n    <key>largeType-1CE37.stypo</key>\n    <string>largeT_ype-1CE37.stypo.glif</string>\n    <key>largeType-1CE38</key>\n    <string>largeT_ype-1CE38.glif</string>\n    <key>largeType-1CE38.stypo</key>\n    <string>largeT_ype-1CE38.stypo.glif</string>\n    <key>largeType-1CE39</key>\n    <string>largeT_ype-1CE39.glif</string>\n    <key>largeType-1CE39.stypo</key>\n    <string>largeT_ype-1CE39.stypo.glif</string>\n    <key>largeType-1CE3A</key>\n    <string>largeT_ype-1CE3A.glif</string>\n    <key>largeType-1CE3A.stypo</key>\n    <string>largeT_ype-1CE3A.stypo.glif</string>\n    <key>largeType-1CE3B</key>\n    <string>largeT_ype-1CE3B.glif</string>\n    <key>largeType-1CE3B.stypo</key>\n    <string>largeT_ype-1CE3B.stypo.glif</string>\n    <key>largeType-1CE3C</key>\n    <string>largeT_ype-1CE3C.glif</string>\n    <key>largeType-1CE3C.stypo</key>\n    <string>largeT_ype-1CE3C.stypo.glif</string>\n    <key>largeType-1CE3D</key>\n    <string>largeT_ype-1CE3D.glif</string>\n    <key>largeType-1CE3D.stypo</key>\n    <string>largeT_ype-1CE3D.stypo.glif</string>\n    <key>largeType-1CE3E</key>\n    <string>largeT_ype-1CE3E.glif</string>\n    <key>largeType-1CE3E.stypo</key>\n    <string>largeT_ype-1CE3E.stypo.glif</string>\n    <key>largeType-1CE3F</key>\n    <string>largeT_ype-1CE3F.glif</string>\n    <key>largeType-1CE3F.stypo</key>\n    <string>largeT_ype-1CE3F.stypo.glif</string>\n    <key>largeType-1CE40</key>\n    <string>largeT_ype-1CE40.glif</string>\n    <key>largeType-1CE40.stypo</key>\n    <string>largeT_ype-1CE40.stypo.glif</string>\n    <key>largeType-1CE41</key>\n    <string>largeT_ype-1CE41.glif</string>\n    <key>largeType-1CE41.stypo</key>\n    <string>largeT_ype-1CE41.stypo.glif</string>\n    <key>largeType-1CE42</key>\n    <string>largeT_ype-1CE42.glif</string>\n    <key>largeType-1CE42.stypo</key>\n    <string>largeT_ype-1CE42.stypo.glif</string>\n    <key>largeType-1CE43</key>\n    <string>largeT_ype-1CE43.glif</string>\n    <key>largeType-1CE43.stypo</key>\n    <string>largeT_ype-1CE43.stypo.glif</string>\n    <key>largeType-1CE44</key>\n    <string>largeT_ype-1CE44.glif</string>\n    <key>largeType-1CE44.stypo</key>\n    <string>largeT_ype-1CE44.stypo.glif</string>\n    <key>largeType-1CE45</key>\n    <string>largeT_ype-1CE45.glif</string>\n    <key>largeType-1CE45.stypo</key>\n    <string>largeT_ype-1CE45.stypo.glif</string>\n    <key>largeType-1CE46</key>\n    <string>largeT_ype-1CE46.glif</string>\n    <key>largeType-1CE46.stypo</key>\n    <string>largeT_ype-1CE46.stypo.glif</string>\n    <key>largeType-1CE47</key>\n    <string>largeT_ype-1CE47.glif</string>\n    <key>largeType-1CE47.stypo</key>\n    <string>largeT_ype-1CE47.stypo.glif</string>\n    <key>largeType-1CE48</key>\n    <string>largeT_ype-1CE48.glif</string>\n    <key>largeType-1CE48.stypo</key>\n    <string>largeT_ype-1CE48.stypo.glif</string>\n    <key>largeType-1CE49</key>\n    <string>largeT_ype-1CE49.glif</string>\n    <key>largeType-1CE49.stypo</key>\n    <string>largeT_ype-1CE49.stypo.glif</string>\n    <key>largeType-1CE4A</key>\n    <string>largeT_ype-1CE4A.glif</string>\n    <key>largeType-1CE4A.stypo</key>\n    <string>largeT_ype-1CE4A.stypo.glif</string>\n    <key>largeType-1CE4B</key>\n    <string>largeT_ype-1CE4B.glif</string>\n    <key>largeType-1CE4B.stypo</key>\n    <string>largeT_ype-1CE4B.stypo.glif</string>\n    <key>largeType-1CE4C</key>\n    <string>largeT_ype-1CE4C.glif</string>\n    <key>largeType-1CE4C.stypo</key>\n    <string>largeT_ype-1CE4C.stypo.glif</string>\n    <key>largeType-1CE4D</key>\n    <string>largeT_ype-1CE4D.glif</string>\n    <key>largeType-1CE4D.stypo</key>\n    <string>largeT_ype-1CE4D.stypo.glif</string>\n    <key>largeType-1CE4E</key>\n    <string>largeT_ype-1CE4E.glif</string>\n    <key>largeType-1CE4E.stypo</key>\n    <string>largeT_ype-1CE4E.stypo.glif</string>\n    <key>largeType-1CE4F</key>\n    <string>largeT_ype-1CE4F.glif</string>\n    <key>largeType-1CE4F.stypo</key>\n    <string>largeT_ype-1CE4F.stypo.glif</string>\n    <key>largeType-1CE50</key>\n    <string>largeT_ype-1CE50.glif</string>\n    <key>largeType-1CE50.stypo</key>\n    <string>largeT_ype-1CE50.stypo.glif</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/copyright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"copyright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A9\"/>\n  <outline>\n    <contour>\n      <point x=\"509\" y=\"15\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"15\"/>\n      <point x=\"1195\" y=\"345\"/>\n      <point x=\"1195\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1195\" y=\"1219\"/>\n      <point x=\"1031\" y=\"1405\"/>\n      <point x=\"754\" y=\"1405\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"321\" y=\"1405\"/>\n      <point x=\"65\" y=\"1070\"/>\n      <point x=\"65\" y=\"502\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"65\" y=\"196\"/>\n      <point x=\"230\" y=\"15\"/>\n    </contour>\n    <contour>\n      <point x=\"647\" y=\"415\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"728\" y=\"415\"/>\n      <point x=\"808\" y=\"426\"/>\n      <point x=\"862\" y=\"445\" type=\"curve\"/>\n      <point x=\"855\" y=\"531\" type=\"line\"/>\n      <point x=\"792\" y=\"515\"/>\n      <point x=\"719\" y=\"505\"/>\n      <point x=\"659\" y=\"505\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"505\"/>\n      <point x=\"457\" y=\"566\"/>\n      <point x=\"457\" y=\"669\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"457\" y=\"823\"/>\n      <point x=\"547\" y=\"914\"/>\n      <point x=\"699\" y=\"914\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"767\" y=\"914\"/>\n      <point x=\"827\" y=\"881\"/>\n      <point x=\"859\" y=\"826\" type=\"curve\"/>\n      <point x=\"944\" y=\"894\" type=\"line\"/>\n      <point x=\"901\" y=\"964\"/>\n      <point x=\"816\" y=\"1006\"/>\n      <point x=\"715\" y=\"1006\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"490\" y=\"1006\"/>\n      <point x=\"357\" y=\"876\"/>\n      <point x=\"357\" y=\"655\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"357\" y=\"504\"/>\n      <point x=\"465\" y=\"415\"/>\n    </contour>\n    <contour>\n      <point x=\"524\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"105\"/>\n      <point x=\"161\" y=\"264\"/>\n      <point x=\"161\" y=\"534\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"161\" y=\"1025\"/>\n      <point x=\"375\" y=\"1315\"/>\n      <point x=\"738\" y=\"1315\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"965\" y=\"1315\"/>\n      <point x=\"1099\" y=\"1151\"/>\n      <point x=\"1099\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1099\" y=\"390\"/>\n      <point x=\"885\" y=\"105\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/crosshatchF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"crosshatchFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A6\"/>\n  <note>\nuni25A6\n</note>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"815\" type=\"line\"/>\n      <point x=\"1051\" y=\"815\" type=\"line\"/>\n      <point x=\"1051\" y=\"905\" type=\"line\"/>\n      <point x=\"149\" y=\"905\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"405\" y=\"259\" type=\"line\"/>\n      <point x=\"495\" y=\"259\" type=\"line\"/>\n      <point x=\"495\" y=\"1161\" type=\"line\"/>\n      <point x=\"405\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"515\" type=\"line\"/>\n      <point x=\"1051\" y=\"515\" type=\"line\"/>\n      <point x=\"1051\" y=\"605\" type=\"line\"/>\n      <point x=\"149\" y=\"605\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"705\" y=\"259\" type=\"line\"/>\n      <point x=\"795\" y=\"259\" type=\"line\"/>\n      <point x=\"795\" y=\"1161\" type=\"line\"/>\n      <point x=\"705\" y=\"1161\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/currency.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"currency\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A4\"/>\n  <outline>\n    <contour>\n      <point x=\"562\" y=\"300\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"804\" y=\"300\"/>\n      <point x=\"990\" y=\"459\"/>\n      <point x=\"1033\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1075\" y=\"941\"/>\n      <point x=\"945\" y=\"1100\"/>\n      <point x=\"703\" y=\"1100\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"1100\"/>\n      <point x=\"275\" y=\"941\"/>\n      <point x=\"233\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"190\" y=\"459\"/>\n      <point x=\"320\" y=\"300\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"186\" type=\"line\"/>\n      <point x=\"353\" y=\"401\" type=\"line\"/>\n      <point x=\"265\" y=\"450\" type=\"line\"/>\n      <point x=\"49\" y=\"263\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"974\" y=\"195\" type=\"line\"/>\n      <point x=\"1057\" y=\"263\" type=\"line\"/>\n      <point x=\"892\" y=\"471\" type=\"line\"/>\n      <point x=\"809\" y=\"416\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"578\" y=\"390\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"395\" y=\"390\"/>\n      <point x=\"296\" y=\"513\"/>\n      <point x=\"329\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"362\" y=\"887\"/>\n      <point x=\"504\" y=\"1010\"/>\n      <point x=\"688\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"871\" y=\"1010\"/>\n      <point x=\"970\" y=\"887\"/>\n      <point x=\"937\" y=\"700\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"513\"/>\n      <point x=\"762\" y=\"390\"/>\n    </contour>\n    <contour>\n      <point x=\"355\" y=\"946\" type=\"line\"/>\n      <point x=\"453\" y=\"983\" type=\"line\"/>\n      <point x=\"283\" y=\"1196\" type=\"line\"/>\n      <point x=\"203\" y=\"1135\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"992\" y=\"946\" type=\"line\"/>\n      <point x=\"1211\" y=\"1135\" type=\"line\"/>\n      <point x=\"1148\" y=\"1207\" type=\"line\"/>\n      <point x=\"904\" y=\"996\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/d.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"d\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0064\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"568\" y=\"532\" name=\"center\"/>\n  <anchor x=\"1045\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1219\" y=\"1062\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"384\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"608\" y=\"-21\"/>\n      <point x=\"783\" y=\"114\"/>\n      <point x=\"864\" y=\"352\" type=\"curve\"/>\n      <point x=\"803\" y=\"284\" type=\"line\"/>\n      <point x=\"897\" y=\"284\" type=\"line\"/>\n      <point x=\"916\" y=\"709\" type=\"line\"/>\n      <point x=\"835\" y=\"287\"/>\n      <point x=\"674\" y=\"71\"/>\n      <point x=\"399\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"252\" y=\"71\"/>\n      <point x=\"166\" y=\"148\"/>\n      <point x=\"166\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"677\"/>\n      <point x=\"519\" y=\"958\"/>\n      <point x=\"1051\" y=\"978\" type=\"curve\"/>\n      <point x=\"1067\" y=\"1070\" type=\"line\"/>\n      <point x=\"1059\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"1070\"/>\n      <point x=\"70\" y=\"758\"/>\n      <point x=\"70\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"70\" y=\"88\"/>\n      <point x=\"184\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"1054\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1105\" y=\"-10\" type=\"line\"/>\n      <point x=\"1121\" y=\"82\" type=\"line\"/>\n      <point x=\"1059\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"949\" y=\"82\"/>\n      <point x=\"912\" y=\"145\"/>\n      <point x=\"934\" y=\"269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"1247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"1431\"/>\n      <point x=\"1082\" y=\"1521\"/>\n      <point x=\"909\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"1521\"/>\n      <point x=\"827\" y=\"1517\"/>\n      <point x=\"787\" y=\"1505\" type=\"curve\"/>\n      <point x=\"798\" y=\"1418\" type=\"line\"/>\n      <point x=\"834\" y=\"1426\"/>\n      <point x=\"871\" y=\"1429\"/>\n      <point x=\"907\" y=\"1429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"1429\"/>\n      <point x=\"1030\" y=\"1367\"/>\n      <point x=\"1007\" y=\"1237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"689\" type=\"line\"/>\n      <point x=\"853\" y=\"290\" type=\"line\"/>\n      <point x=\"819\" y=\"111\"/>\n      <point x=\"849\" y=\"-10\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dagger.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dagger\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2020\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"272\" type=\"line\"/>\n      <point x=\"600\" y=\"272\" type=\"line\"/>\n      <point x=\"806\" y=\"1440\" type=\"line\"/>\n      <point x=\"714\" y=\"1440\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"329\" y=\"1004\" type=\"line\"/>\n      <point x=\"685\" y=\"1004\" type=\"line\"/>\n      <point x=\"1037\" y=\"1004\" type=\"line\"/>\n      <point x=\"1053\" y=\"1092\" type=\"line\"/>\n      <point x=\"701\" y=\"1092\" type=\"line\"/>\n      <point x=\"345\" y=\"1092\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/daggerdbl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"daggerdbl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2021\"/>\n  <outline>\n    <contour>\n      <point x=\"339\" y=\"1059\" type=\"line\"/>\n      <point x=\"695\" y=\"1059\" type=\"line\"/>\n      <point x=\"1047\" y=\"1059\" type=\"line\"/>\n      <point x=\"1062\" y=\"1147\" type=\"line\"/>\n      <point x=\"710\" y=\"1147\" type=\"line\"/>\n      <point x=\"354\" y=\"1147\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"507\" y=\"272\" type=\"line\"/>\n      <point x=\"599\" y=\"272\" type=\"line\"/>\n      <point x=\"660\" y=\"620\" type=\"line\"/>\n      <point x=\"568\" y=\"620\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"255\" y=\"585\" type=\"line\"/>\n      <point x=\"611\" y=\"585\" type=\"line\"/>\n      <point x=\"963\" y=\"585\" type=\"line\"/>\n      <point x=\"979\" y=\"673\" type=\"line\"/>\n      <point x=\"627\" y=\"673\" type=\"line\"/>\n      <point x=\"271\" y=\"673\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"575\" y=\"660\" type=\"line\"/>\n      <point x=\"667\" y=\"660\" type=\"line\"/>\n      <point x=\"746\" y=\"1104\" type=\"line\"/>\n      <point x=\"654\" y=\"1104\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"650\" y=\"1082\" type=\"line\"/>\n      <point x=\"742\" y=\"1082\" type=\"line\"/>\n      <point x=\"805\" y=\"1440\" type=\"line\"/>\n      <point x=\"713\" y=\"1440\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dashdownA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dashdownArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21E3\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"58\" type=\"line\"/>\n      <point x=\"564\" y=\"58\" type=\"line\"/>\n      <point x=\"642\" y=\"502\" type=\"line\"/>\n      <point x=\"548\" y=\"502\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"575\" y=\"652\" type=\"line\"/>\n      <point x=\"669\" y=\"652\" type=\"line\"/>\n      <point x=\"694\" y=\"794\" type=\"line\"/>\n      <point x=\"600\" y=\"794\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"624\" y=\"934\" type=\"line\"/>\n      <point x=\"718\" y=\"934\" type=\"line\"/>\n      <point x=\"743\" y=\"1076\" type=\"line\"/>\n      <point x=\"649\" y=\"1076\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"678\" y=\"1236\" type=\"line\"/>\n      <point x=\"772\" y=\"1236\" type=\"line\"/>\n      <point x=\"804\" y=\"1420\" type=\"line\"/>\n      <point x=\"710\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"378\" type=\"line\"/>\n      <point x=\"492\" y=\"-20\" type=\"line\"/>\n      <point x=\"514\" y=\"-20\" type=\"line\"/>\n      <point x=\"977\" y=\"338\" type=\"line\"/>\n      <point x=\"921\" y=\"407\" type=\"line\"/>\n      <point x=\"532\" y=\"93\" type=\"line\"/>\n      <point x=\"514\" y=\"93\" type=\"line\"/>\n      <point x=\"230\" y=\"435\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dataLinkEscapeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2410\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dataLinkEscapeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"755\" type=\"line\"/>\n      <point x=\"109\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dcaron.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcaron.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"568\" y=\"532\" name=\"center\"/>\n  <anchor x=\"994\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1168\" y=\"1062\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"1221\" y=\"1188\" type=\"line\"/>\n      <point x=\"1298\" y=\"1188\" type=\"line\"/>\n      <point x=\"1445\" y=\"1568\" type=\"line\"/>\n      <point x=\"1350\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"846\" y=\"284\" type=\"line\"/>\n      <point x=\"865\" y=\"709\" type=\"line\"/>\n      <point x=\"792\" y=\"287\"/>\n      <point x=\"647\" y=\"71\"/>\n      <point x=\"399\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"252\" y=\"71\"/>\n      <point x=\"166\" y=\"148\"/>\n      <point x=\"166\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"677\"/>\n      <point x=\"499\" y=\"958\"/>\n      <point x=\"1000\" y=\"978\" type=\"curve\"/>\n      <point x=\"1016\" y=\"1070\" type=\"line\"/>\n      <point x=\"1008\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"1070\"/>\n      <point x=\"70\" y=\"758\"/>\n      <point x=\"70\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"70\" y=\"88\"/>\n      <point x=\"184\" y=\"-21\"/>\n      <point x=\"384\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"584\" y=\"-21\"/>\n      <point x=\"741\" y=\"114\"/>\n      <point x=\"813\" y=\"352\" type=\"curve\"/>\n      <point x=\"752\" y=\"284\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1003\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1054\" y=\"-10\" type=\"line\"/>\n      <point x=\"1070\" y=\"82\" type=\"line\"/>\n      <point x=\"1008\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"898\" y=\"82\"/>\n      <point x=\"861\" y=\"145\"/>\n      <point x=\"883\" y=\"269\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1055\" y=\"1247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"1431\"/>\n      <point x=\"1031\" y=\"1521\"/>\n      <point x=\"858\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"817\" y=\"1521\"/>\n      <point x=\"776\" y=\"1517\"/>\n      <point x=\"736\" y=\"1505\" type=\"curve\"/>\n      <point x=\"747\" y=\"1418\" type=\"line\"/>\n      <point x=\"783\" y=\"1426\"/>\n      <point x=\"820\" y=\"1429\"/>\n      <point x=\"856\" y=\"1429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"955\" y=\"1429\"/>\n      <point x=\"979\" y=\"1367\"/>\n      <point x=\"956\" y=\"1237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"861\" y=\"689\" type=\"line\"/>\n      <point x=\"802\" y=\"290\" type=\"line\"/>\n      <point x=\"768\" y=\"111\"/>\n      <point x=\"798\" y=\"-10\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"010F\"/>\n  <outline>\n    <contour>\n      <point x=\"1285\" y=\"1188\" type=\"line\"/>\n      <point x=\"1362\" y=\"1188\" type=\"line\"/>\n      <point x=\"1509\" y=\"1568\" type=\"line\"/>\n      <point x=\"1414\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"d\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dcroat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dcroat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0111\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"568\" y=\"532\" name=\"center\"/>\n  <anchor x=\"1103\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1219\" y=\"1062\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"1055\" y=\"1500\" type=\"line\"/>\n      <point x=\"911\" y=\"689\" type=\"line\"/>\n      <point x=\"860\" y=\"339\" type=\"line\"/>\n      <point x=\"808\" y=\"-10\" type=\"line\"/>\n      <point x=\"1068\" y=\"0\" type=\"line\"/>\n      <point x=\"1082\" y=\"82\" type=\"line\"/>\n      <point x=\"857\" y=\"82\" type=\"line\"/>\n      <point x=\"890\" y=\"23\" type=\"line\"/>\n      <point x=\"1150\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"897\" y=\"284\" type=\"line\"/>\n      <point x=\"916\" y=\"709\" type=\"line\"/>\n      <point x=\"835\" y=\"287\"/>\n      <point x=\"674\" y=\"71\"/>\n      <point x=\"399\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"252\" y=\"71\"/>\n      <point x=\"166\" y=\"148\"/>\n      <point x=\"166\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"677\"/>\n      <point x=\"519\" y=\"958\"/>\n      <point x=\"1051\" y=\"978\" type=\"curve\"/>\n      <point x=\"1067\" y=\"1070\" type=\"line\"/>\n      <point x=\"1059\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"1070\"/>\n      <point x=\"70\" y=\"758\"/>\n      <point x=\"70\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"70\" y=\"88\"/>\n      <point x=\"184\" y=\"-21\"/>\n      <point x=\"384\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"608\" y=\"-21\"/>\n      <point x=\"783\" y=\"114\"/>\n      <point x=\"864\" y=\"352\" type=\"curve\"/>\n      <point x=\"803\" y=\"284\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"562\" y=\"1260\" type=\"line\"/>\n      <point x=\"1238\" y=\"1260\" type=\"line\"/>\n      <point x=\"1254\" y=\"1350\" type=\"line\"/>\n      <point x=\"578\" y=\"1350\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/de-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"de-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0434\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"774\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"466\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"-20\"/>\n      <point x=\"1091\" y=\"518\"/>\n      <point x=\"1091\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1091\" y=\"1370\"/>\n      <point x=\"970\" y=\"1520\"/>\n      <point x=\"685\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"1520\"/>\n      <point x=\"404\" y=\"1478\"/>\n      <point x=\"301\" y=\"1425\" type=\"curve\"/>\n      <point x=\"331\" y=\"1341\" type=\"line\"/>\n      <point x=\"424\" y=\"1391\"/>\n      <point x=\"538\" y=\"1428\"/>\n      <point x=\"670\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"936\" y=\"1428\"/>\n      <point x=\"995\" y=\"1277\"/>\n      <point x=\"995\" y=\"979\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"995\" y=\"484\"/>\n      <point x=\"814\" y=\"72\"/>\n      <point x=\"471\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"295\" y=\"72\"/>\n      <point x=\"223\" y=\"181\"/>\n      <point x=\"223\" y=\"352\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"223\" y=\"680\"/>\n      <point x=\"438\" y=\"917\"/>\n      <point x=\"761\" y=\"917\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"917\"/>\n      <point x=\"928\" y=\"902\"/>\n      <point x=\"1015\" y=\"870\" type=\"curve\"/>\n      <point x=\"1010\" y=\"962\" type=\"line\"/>\n      <point x=\"923\" y=\"993\"/>\n      <point x=\"836\" y=\"1008\"/>\n      <point x=\"754\" y=\"1008\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"1008\"/>\n      <point x=\"127\" y=\"725\"/>\n      <point x=\"127\" y=\"346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"127\" y=\"111\"/>\n      <point x=\"242\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/de-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"de-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"g\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/degree.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"degree\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B0\"/>\n  <outline>\n    <contour>\n      <point x=\"628\" y=\"690\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"690\"/>\n      <point x=\"1034\" y=\"829\"/>\n      <point x=\"1076\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1118\" y=\"1301\"/>\n      <point x=\"1000\" y=\"1440\"/>\n      <point x=\"760\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"520\" y=\"1440\"/>\n      <point x=\"354\" y=\"1301\"/>\n      <point x=\"312\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"270\" y=\"829\"/>\n      <point x=\"388\" y=\"690\"/>\n    </contour>\n    <contour>\n      <point x=\"644\" y=\"782\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"782\"/>\n      <point x=\"377\" y=\"887\"/>\n      <point x=\"408\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"439\" y=\"1243\"/>\n      <point x=\"564\" y=\"1348\"/>\n      <point x=\"744\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"1348\"/>\n      <point x=\"1011\" y=\"1243\"/>\n      <point x=\"980\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"949\" y=\"887\"/>\n      <point x=\"824\" y=\"782\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deleteC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deleteControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2421\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deleteF_ormT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deleteFormTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2425\"/>\n  <outline>\n    <contour>\n      <point x=\"178\" y=\"341\" type=\"line\"/>\n      <point x=\"1090\" y=\"1098\" type=\"line\"/>\n      <point x=\"1030\" y=\"1182\" type=\"line\"/>\n      <point x=\"118\" y=\"425\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"485\" y=\"158\" type=\"line\"/>\n      <point x=\"1083\" y=\"651\" type=\"line\"/>\n      <point x=\"1024\" y=\"734\" type=\"line\"/>\n      <point x=\"425\" y=\"242\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"170\" y=\"773\" type=\"line\"/>\n      <point x=\"664\" y=\"1176\" type=\"line\"/>\n      <point x=\"605\" y=\"1260\" type=\"line\"/>\n      <point x=\"110\" y=\"855\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/delta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"delta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B4\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"558\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"-20\"/>\n      <point x=\"1069\" y=\"131\"/>\n      <point x=\"1069\" y=\"387\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1069\" y=\"771\"/>\n      <point x=\"572\" y=\"898\"/>\n      <point x=\"572\" y=\"1197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"572\" y=\"1343\"/>\n      <point x=\"667\" y=\"1430\"/>\n      <point x=\"828\" y=\"1430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"1430\"/>\n      <point x=\"1063\" y=\"1358\"/>\n      <point x=\"1185\" y=\"1201\" type=\"curve\"/>\n      <point x=\"1253\" y=\"1263\" type=\"line\"/>\n      <point x=\"1129\" y=\"1439\"/>\n      <point x=\"996\" y=\"1520\"/>\n      <point x=\"831\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"608\" y=\"1520\"/>\n      <point x=\"476\" y=\"1397\"/>\n      <point x=\"476\" y=\"1189\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"831\"/>\n      <point x=\"975\" y=\"726\"/>\n      <point x=\"975\" y=\"385\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"975\" y=\"188\"/>\n      <point x=\"826\" y=\"72\"/>\n      <point x=\"574\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"350\" y=\"72\"/>\n      <point x=\"218\" y=\"171\"/>\n      <point x=\"218\" y=\"339\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"218\" y=\"532\"/>\n      <point x=\"370\" y=\"686\"/>\n      <point x=\"702\" y=\"830\" type=\"curve\"/>\n      <point x=\"663\" y=\"910\" type=\"line\"/>\n      <point x=\"294\" y=\"756\"/>\n      <point x=\"124\" y=\"574\"/>\n      <point x=\"124\" y=\"332\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"111\"/>\n      <point x=\"285\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlFourControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2414\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"four.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>four.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlOneControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2411\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"one.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>one.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlThreeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2413\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"three.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>three.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"deviceControlTwoControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2412\"/>\n  <outline>\n    <component base=\"D.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"two.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>D.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>two.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"diagonalcrosshatchFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A9\"/>\n  <note>\nuni25A9\n</note>\n  <outline>\n    <contour>\n      <point x=\"1031\" y=\"218\" type=\"line\"/>\n      <point x=\"1092\" y=\"289\" type=\"line\"/>\n      <point x=\"187\" y=\"1194\" type=\"line\"/>\n      <point x=\"116\" y=\"1133\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"593\" y=\"246\" type=\"line\"/>\n      <point x=\"725\" y=\"246\" type=\"line\"/>\n      <point x=\"150\" y=\"821\" type=\"line\"/>\n      <point x=\"150\" y=\"689\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"169\" y=\"218\" type=\"line\"/>\n      <point x=\"1084\" y=\"1133\" type=\"line\"/>\n      <point x=\"1013\" y=\"1194\" type=\"line\"/>\n      <point x=\"108\" y=\"289\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"475\" y=\"246\" type=\"line\"/>\n      <point x=\"607\" y=\"246\" type=\"line\"/>\n      <point x=\"1050\" y=\"689\" type=\"line\"/>\n      <point x=\"1050\" y=\"821\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"120\" y=\"579\" type=\"line\"/>\n      <point x=\"718\" y=\"1177\" type=\"line\"/>\n      <point x=\"586\" y=\"1177\" type=\"line\"/>\n      <point x=\"120\" y=\"711\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1080\" y=\"579\" type=\"line\"/>\n      <point x=\"1080\" y=\"711\" type=\"line\"/>\n      <point x=\"614\" y=\"1177\" type=\"line\"/>\n      <point x=\"482\" y=\"1177\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/diamondB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"diamondBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2666\"/>\n  <outline>\n    <contour>\n      <point x=\"513\" y=\"40\" type=\"line\"/>\n      <point x=\"1076\" y=\"670\" type=\"line\"/>\n      <point x=\"735\" y=\"1300\" type=\"line\"/>\n      <point x=\"174\" y=\"670\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A8\"/>\n  <outline>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dieresiscomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresiscomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"832\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1017\" y=\"1614\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1072\" y=\"1614\"/>\n      <point x=\"1117\" y=\"1658\"/>\n      <point x=\"1117\" y=\"1713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1117\" y=\"1768\"/>\n      <point x=\"1072\" y=\"1813\"/>\n      <point x=\"1017\" y=\"1813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"1813\"/>\n      <point x=\"917\" y=\"1768\"/>\n      <point x=\"917\" y=\"1713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"1658\"/>\n      <point x=\"962\" y=\"1614\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1614\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"655\" y=\"1614\"/>\n      <point x=\"700\" y=\"1658\"/>\n      <point x=\"700\" y=\"1713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"700\" y=\"1768\"/>\n      <point x=\"655\" y=\"1813\"/>\n      <point x=\"600\" y=\"1813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"545\" y=\"1813\"/>\n      <point x=\"500\" y=\"1768\"/>\n      <point x=\"500\" y=\"1713\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"500\" y=\"1658\"/>\n      <point x=\"545\" y=\"1614\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dieresiscomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresiscomb\" format=\"2\">\n  <unicode hex=\"0308\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"958\" y=\"1273\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1013\" y=\"1273\"/>\n      <point x=\"1058\" y=\"1317\"/>\n      <point x=\"1058\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"1427\"/>\n      <point x=\"1013\" y=\"1472\"/>\n      <point x=\"958\" y=\"1472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"1472\"/>\n      <point x=\"858\" y=\"1427\"/>\n      <point x=\"858\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"858\" y=\"1317\"/>\n      <point x=\"903\" y=\"1273\"/>\n    </contour>\n    <contour>\n      <point x=\"538\" y=\"1273\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"1273\"/>\n      <point x=\"638\" y=\"1317\"/>\n      <point x=\"638\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"1427\"/>\n      <point x=\"593\" y=\"1472\"/>\n      <point x=\"538\" y=\"1472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"1472\"/>\n      <point x=\"438\" y=\"1427\"/>\n      <point x=\"438\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"438\" y=\"1317\"/>\n      <point x=\"483\" y=\"1273\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0385\"/>\n  <anchor x=\"691\" y=\"1060\" name=\"_top\"/>\n  <outline>\n    <contour>\n      <point x=\"630\" y=\"1248\" type=\"line\"/>\n      <point x=\"744\" y=\"1248\" type=\"line\"/>\n      <point x=\"987\" y=\"1628\" type=\"line\"/>\n      <point x=\"858\" y=\"1628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"481\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"1238\"/>\n      <point x=\"581\" y=\"1282\"/>\n      <point x=\"581\" y=\"1337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"581\" y=\"1392\"/>\n      <point x=\"536\" y=\"1437\"/>\n      <point x=\"481\" y=\"1437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"426\" y=\"1437\"/>\n      <point x=\"381\" y=\"1392\"/>\n      <point x=\"381\" y=\"1337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"1282\"/>\n      <point x=\"426\" y=\"1238\"/>\n    </contour>\n    <contour>\n      <point x=\"1021\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1076\" y=\"1238\"/>\n      <point x=\"1121\" y=\"1282\"/>\n      <point x=\"1121\" y=\"1337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1121\" y=\"1392\"/>\n      <point x=\"1076\" y=\"1437\"/>\n      <point x=\"1021\" y=\"1437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"966\" y=\"1437\"/>\n      <point x=\"921\" y=\"1392\"/>\n      <point x=\"921\" y=\"1337\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"1282\"/>\n      <point x=\"966\" y=\"1238\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/divide.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"divide\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F7\"/>\n  <outline>\n    <contour>\n      <point x=\"147\" y=\"664\" type=\"line\"/>\n      <point x=\"1099\" y=\"664\" type=\"line\"/>\n      <point x=\"1115\" y=\"754\" type=\"line\"/>\n      <point x=\"163\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"613\" y=\"187\"/>\n      <point x=\"660\" y=\"234\"/>\n      <point x=\"660\" y=\"291\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"349\"/>\n      <point x=\"613\" y=\"396\"/>\n      <point x=\"555\" y=\"396\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"396\"/>\n      <point x=\"450\" y=\"349\"/>\n      <point x=\"450\" y=\"291\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"234\"/>\n      <point x=\"497\" y=\"187\"/>\n    </contour>\n    <contour>\n      <point x=\"705\" y=\"1020\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"1020\"/>\n      <point x=\"810\" y=\"1067\"/>\n      <point x=\"810\" y=\"1125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"1182\"/>\n      <point x=\"763\" y=\"1229\"/>\n      <point x=\"705\" y=\"1229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1229\"/>\n      <point x=\"600\" y=\"1182\"/>\n      <point x=\"600\" y=\"1125\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"600\" y=\"1067\"/>\n      <point x=\"647\" y=\"1020\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/divisionslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"divisionslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2215\"/>\n  <outline>\n    <component base=\"slash\" xOffset=\"-18\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0452\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"689\" y=\"784\" name=\"center\"/>\n  <anchor x=\"450\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"473\" y=\"-469\" type=\"line\"/>\n      <point x=\"783\" y=\"-298\"/>\n      <point x=\"903\" y=\"-84\"/>\n      <point x=\"996\" y=\"467\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"557\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1054\" y=\"810\"/>\n      <point x=\"967\" y=\"940\"/>\n      <point x=\"750\" y=\"940\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"559\" y=\"940\"/>\n      <point x=\"414\" y=\"820\"/>\n      <point x=\"355\" y=\"609\" type=\"curve\"/>\n      <point x=\"316\" y=\"609\" type=\"line\"/>\n      <point x=\"264\" y=\"180\" type=\"line\"/>\n      <point x=\"353\" y=\"679\"/>\n      <point x=\"534\" y=\"848\"/>\n      <point x=\"730\" y=\"848\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"848\"/>\n      <point x=\"949\" y=\"755\"/>\n      <point x=\"916\" y=\"565\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"899\" y=\"465\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"-41\"/>\n      <point x=\"704\" y=\"-238\"/>\n      <point x=\"422\" y=\"-394\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"137\" y=\"0\" type=\"line\"/>\n      <point x=\"233\" y=\"0\" type=\"line\"/>\n      <point x=\"498\" y=\"1500\" type=\"line\"/>\n      <point x=\"402\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"140\" y=\"1190\" type=\"line\"/>\n      <point x=\"856\" y=\"1190\" type=\"line\"/>\n      <point x=\"872\" y=\"1280\" type=\"line\"/>\n      <point x=\"156\" y=\"1280\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"725\" y=\"1387\" type=\"line\"/>\n      <point x=\"821\" y=\"1387\" type=\"line\"/>\n      <point x=\"883\" y=\"1740\" type=\"line\"/>\n      <point x=\"787\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"424\" y=\"-320\" type=\"line\"/>\n      <point x=\"520\" y=\"-320\" type=\"line\"/>\n      <point x=\"584\" y=\"41\" type=\"line\"/>\n      <point x=\"488\" y=\"41\" type=\"line\"/>\n    </contour>\n    <component base=\"S\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=S</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=S</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dollar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0024\"/>\n  <outline>\n    <contour>\n      <point x=\"424\" y=\"-320\" type=\"line\"/>\n      <point x=\"520\" y=\"-320\" type=\"line\"/>\n      <point x=\"883\" y=\"1740\" type=\"line\"/>\n      <point x=\"787\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"S\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</key>\n      <string>=S</string>\n      <key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>\n      <string>=S</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar_greater.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1221\" y=\"214\" type=\"line\"/>\n      <point x=\"2254\" y=\"653\" type=\"line\"/>\n      <point x=\"2274\" y=\"765\" type=\"line\"/>\n      <point x=\"844\" y=\"1449\" type=\"line\"/>\n      <point x=\"826\" y=\"1350\" type=\"line\"/>\n      <point x=\"2178\" y=\"718\" type=\"line\"/>\n      <point x=\"2176\" y=\"710\" type=\"line\"/>\n      <point x=\"1241\" y=\"325\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"474\" y=\"-320\" type=\"line\"/>\n      <point x=\"570\" y=\"-320\" type=\"line\"/>\n      <point x=\"631\" y=\"28\" type=\"line\"/>\n      <point x=\"535\" y=\"28\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"536\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"-20\"/>\n      <point x=\"1057\" y=\"114\"/>\n      <point x=\"1057\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1057\" y=\"459\"/>\n      <point x=\"974\" y=\"544\"/>\n      <point x=\"873\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"864\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"935\"/>\n      <point x=\"450\" y=\"1013\"/>\n      <point x=\"450\" y=\"1114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"1262\"/>\n      <point x=\"571\" y=\"1350\"/>\n      <point x=\"777\" y=\"1350\" type=\"curve\"/>\n      <point x=\"789\" y=\"1440\" type=\"line\"/>\n      <point x=\"516\" y=\"1440\"/>\n      <point x=\"354\" y=\"1313\"/>\n      <point x=\"354\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"981\"/>\n      <point x=\"422\" y=\"890\"/>\n      <point x=\"512\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"482\"/>\n      <point x=\"961\" y=\"412\"/>\n      <point x=\"961\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"162\"/>\n      <point x=\"810\" y=\"70\"/>\n      <point x=\"555\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"427\" y=\"70\"/>\n      <point x=\"292\" y=\"101\"/>\n      <point x=\"158\" y=\"160\" type=\"curve\"/>\n      <point x=\"121\" y=\"64\" type=\"line\"/>\n      <point x=\"233\" y=\"9\"/>\n      <point x=\"375\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"768\" y=\"1350\" type=\"line\"/>\n      <point x=\"864\" y=\"1350\" type=\"line\"/>\n      <point x=\"933\" y=\"1740\" type=\"line\"/>\n      <point x=\"837\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dollar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dollar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1221\" y=\"214\" type=\"line\"/>\n      <point x=\"2254\" y=\"653\" type=\"line\"/>\n      <point x=\"2274\" y=\"765\" type=\"line\"/>\n      <point x=\"844\" y=\"1449\" type=\"line\"/>\n      <point x=\"826\" y=\"1350\" type=\"line\"/>\n      <point x=\"2178\" y=\"718\" type=\"line\"/>\n      <point x=\"2176\" y=\"710\" type=\"line\"/>\n      <point x=\"1241\" y=\"325\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"536\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"-20\"/>\n      <point x=\"1057\" y=\"114\"/>\n      <point x=\"1057\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1057\" y=\"459\"/>\n      <point x=\"974\" y=\"544\"/>\n      <point x=\"873\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"864\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"515\" y=\"935\"/>\n      <point x=\"450\" y=\"1013\"/>\n      <point x=\"450\" y=\"1114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"450\" y=\"1262\"/>\n      <point x=\"571\" y=\"1350\"/>\n      <point x=\"777\" y=\"1350\" type=\"curve\"/>\n      <point x=\"789\" y=\"1440\" type=\"line\"/>\n      <point x=\"516\" y=\"1440\"/>\n      <point x=\"354\" y=\"1313\"/>\n      <point x=\"354\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"354\" y=\"981\"/>\n      <point x=\"422\" y=\"890\"/>\n      <point x=\"512\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"482\"/>\n      <point x=\"961\" y=\"412\"/>\n      <point x=\"961\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"162\"/>\n      <point x=\"810\" y=\"70\"/>\n      <point x=\"555\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"427\" y=\"70\"/>\n      <point x=\"292\" y=\"101\"/>\n      <point x=\"158\" y=\"160\" type=\"curve\"/>\n      <point x=\"121\" y=\"64\" type=\"line\"/>\n      <point x=\"233\" y=\"9\"/>\n      <point x=\"375\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"474\" y=\"-320\" type=\"line\"/>\n      <point x=\"570\" y=\"-320\" type=\"line\"/>\n      <point x=\"933\" y=\"1740\" type=\"line\"/>\n      <point x=\"837\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dong.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dong\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AB\"/>\n  <outline>\n    <contour>\n      <point x=\"23\" y=\"-282\" type=\"line\"/>\n      <point x=\"889\" y=\"-282\" type=\"line\"/>\n      <point x=\"905\" y=\"-192\" type=\"line\"/>\n      <point x=\"39\" y=\"-192\" type=\"line\"/>\n    </contour>\n    <component base=\"dcroat\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02D9\"/>\n  <outline>\n    <component base=\"dotaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dotaccentcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccentcomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"832\" y=\"1850\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"808\" y=\"1615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"1615\"/>\n      <point x=\"908\" y=\"1659\"/>\n      <point x=\"908\" y=\"1714\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"908\" y=\"1769\"/>\n      <point x=\"863\" y=\"1814\"/>\n      <point x=\"808\" y=\"1814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"1814\"/>\n      <point x=\"708\" y=\"1769\"/>\n      <point x=\"708\" y=\"1714\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"708\" y=\"1659\"/>\n      <point x=\"753\" y=\"1615\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dotaccentcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotaccentcomb\" format=\"2\">\n  <unicode hex=\"0307\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"773\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"748\" y=\"1273\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"803\" y=\"1273\"/>\n      <point x=\"848\" y=\"1317\"/>\n      <point x=\"848\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"1427\"/>\n      <point x=\"803\" y=\"1472\"/>\n      <point x=\"748\" y=\"1472\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"1472\"/>\n      <point x=\"648\" y=\"1427\"/>\n      <point x=\"648\" y=\"1372\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"648\" y=\"1317\"/>\n      <point x=\"693\" y=\"1273\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dotbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dotbelowcomb\" format=\"2\">\n  <unicode hex=\"0323\"/>\n  <anchor x=\"507\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"437\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"456\" y=\"-386\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"511\" y=\"-386\"/>\n      <point x=\"556\" y=\"-342\"/>\n      <point x=\"556\" y=\"-287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"-232\"/>\n      <point x=\"511\" y=\"-187\"/>\n      <point x=\"456\" y=\"-187\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"401\" y=\"-187\"/>\n      <point x=\"356\" y=\"-232\"/>\n      <point x=\"356\" y=\"-287\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"356\" y=\"-342\"/>\n      <point x=\"401\" y=\"-386\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2801\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2803\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2807\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1234678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CF\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288F\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1235-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1235-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2817\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2837\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2877\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1235678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1235678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2857\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D7\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2897\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1236-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1236-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2827\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2867\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots123678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1237-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1237-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2847\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C7\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1238-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1238-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2887\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1245-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1245-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1245678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1245678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1246-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1246-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots124678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1247-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1247-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CB\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1248-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1248-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288B\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots125-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots125-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2813\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1256-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1256-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2833\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2873\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots125678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots125678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1257-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1257-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2853\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D3\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1258-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1258-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2893\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots126-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots126-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2823\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1267-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1267-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2863\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots12678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1268-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1268-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots127-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots127-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2843\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1278-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1278-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C3\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots128-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots128-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2883\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2805\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots134678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28ED\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CD\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288D\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots135-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots135-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2815\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2835\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2875\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots135678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots135678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2855\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D5\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2895\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots136-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots136-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2825\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2865\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots13678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots137-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots137-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2845\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C5\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots138-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots138-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2885\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2809\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots145-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots145-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2819\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2839\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2879\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots145678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots145678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2859\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2899\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots146-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots146-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2829\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2869\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots14678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots147-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots147-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2849\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C9\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots148-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots148-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2889\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots15-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots15-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2811\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots156-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots156-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2831\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2871\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots15678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots15678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots157-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots157-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2851\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D1\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots158-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots158-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2891\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots16-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots16-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2821\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots167-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots167-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2861\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots1678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots168-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots168-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots17-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots17-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2841\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots178-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots178-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C1\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots18-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots18-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2881\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"1200\"/>\n      <point x=\"440\" y=\"1240\"/>\n      <point x=\"440\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"1340\"/>\n      <point x=\"400\" y=\"1380\"/>\n      <point x=\"350\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"1380\"/>\n      <point x=\"260\" y=\"1340\"/>\n      <point x=\"260\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"1240\"/>\n      <point x=\"300\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2802\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2806\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots234678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CE\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288E\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots235-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots235-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2816\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2836\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2876\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots235678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots235678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2856\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2896\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots236-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots236-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2826\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2866\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots23678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A6\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots237-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots237-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2846\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C6\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots238-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots238-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2886\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots245-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots245-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots245678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots245678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots246-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots246-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots24678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots247-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots247-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CA\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots248-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots248-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288A\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots25-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots25-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2812\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots256-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots256-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2832\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2872\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots25678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots25678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots257-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots257-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2852\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots258-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots258-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2892\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots26-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots26-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2822\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots267-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots267-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2862\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots2678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots268-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots268-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A2\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots27-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots27-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2842\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots278-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots278-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C2\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots28-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots28-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2882\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"763\"/>\n      <point x=\"440\" y=\"803\"/>\n      <point x=\"440\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"903\"/>\n      <point x=\"400\" y=\"943\"/>\n      <point x=\"350\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"943\"/>\n      <point x=\"260\" y=\"903\"/>\n      <point x=\"260\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"803\"/>\n      <point x=\"300\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2804\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"280C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots345-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots345-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"281C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"283C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"287C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots345678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots345678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28FC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28BC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"285C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28DC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"289C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots346-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots346-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"282C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"286C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots34678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28EC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28AC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots347-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots347-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"284C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28CC\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots348-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots348-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"288C\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots35-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots35-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2814\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots356-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots356-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2834\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2874\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots35678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots35678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots357-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots357-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2854\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots358-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots358-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2894\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots36-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots36-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2824\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots367-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots367-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2864\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots3678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots368-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots368-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots37-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots37-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2844\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots378-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots378-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C4\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots38-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots38-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2884\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"327\"/>\n      <point x=\"440\" y=\"367\"/>\n      <point x=\"440\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"467\"/>\n      <point x=\"400\" y=\"507\"/>\n      <point x=\"350\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"507\"/>\n      <point x=\"260\" y=\"467\"/>\n      <point x=\"260\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"367\"/>\n      <point x=\"300\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2808\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots45-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots45-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2818\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots456-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots456-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2838\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2878\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots45678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots45678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots457-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots457-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2858\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots458-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots458-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2898\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots46-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots46-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2828\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots467-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots467-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2868\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots4678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots468-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots468-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots47-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots47-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2848\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots478-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots478-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C8\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots48-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots48-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2888\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"1200\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"1200\"/>\n      <point x=\"940\" y=\"1240\"/>\n      <point x=\"940\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1340\"/>\n      <point x=\"900\" y=\"1380\"/>\n      <point x=\"850\" y=\"1380\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"1380\"/>\n      <point x=\"760\" y=\"1340\"/>\n      <point x=\"760\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"1240\"/>\n      <point x=\"800\" y=\"1200\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots5-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots5-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2810\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots56-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots56-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2830\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots567-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots567-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2870\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots5678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots5678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28F0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots568-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots568-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28B0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots57-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots57-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2850\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots578-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots578-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28D0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots58-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots58-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2890\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"763\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"763\"/>\n      <point x=\"940\" y=\"803\"/>\n      <point x=\"940\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"903\"/>\n      <point x=\"900\" y=\"943\"/>\n      <point x=\"850\" y=\"943\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"943\"/>\n      <point x=\"760\" y=\"903\"/>\n      <point x=\"760\" y=\"853\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"803\"/>\n      <point x=\"800\" y=\"763\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots6-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots6-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2820\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots67-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots67-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2860\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots678-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots678-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28E0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots68-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots68-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28A0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"327\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"327\"/>\n      <point x=\"940\" y=\"367\"/>\n      <point x=\"940\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"467\"/>\n      <point x=\"900\" y=\"507\"/>\n      <point x=\"850\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"507\"/>\n      <point x=\"760\" y=\"467\"/>\n      <point x=\"760\" y=\"417\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"367\"/>\n      <point x=\"800\" y=\"327\"/>\n    </contour>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots7-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots7-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2840\"/>\n  <outline>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots78-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots78-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"28C0\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n    <contour>\n      <point x=\"350\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"400\" y=\"-110\"/>\n      <point x=\"440\" y=\"-70\"/>\n      <point x=\"440\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"440\" y=\"30\"/>\n      <point x=\"400\" y=\"70\"/>\n      <point x=\"350\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"70\"/>\n      <point x=\"260\" y=\"30\"/>\n      <point x=\"260\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"-70\"/>\n      <point x=\"300\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots8-braille.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dots8-braille\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2880\"/>\n  <outline>\n    <contour>\n      <point x=\"850\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"900\" y=\"-110\"/>\n      <point x=\"940\" y=\"-70\"/>\n      <point x=\"940\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"30\"/>\n      <point x=\"900\" y=\"70\"/>\n      <point x=\"850\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"70\"/>\n      <point x=\"760\" y=\"30\"/>\n      <point x=\"760\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"-70\"/>\n      <point x=\"800\" y=\"-110\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dottedC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dottedCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CC\"/>\n  <note>\nuni25CC\n</note>\n  <outline>\n    <contour>\n      <point x=\"826\" y=\"1037\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"1037\"/>\n      <point x=\"888\" y=\"1062\"/>\n      <point x=\"888\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"1136\"/>\n      <point x=\"863\" y=\"1161\"/>\n      <point x=\"826\" y=\"1161\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"1161\"/>\n      <point x=\"764\" y=\"1136\"/>\n      <point x=\"764\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"1062\"/>\n      <point x=\"789\" y=\"1037\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"412\" y=\"259\"/>\n      <point x=\"437\" y=\"284\"/>\n      <point x=\"437\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"358\"/>\n      <point x=\"412\" y=\"383\"/>\n      <point x=\"375\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"383\"/>\n      <point x=\"313\" y=\"358\"/>\n      <point x=\"313\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"284\"/>\n      <point x=\"338\" y=\"259\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"249\" y=\"424\"/>\n      <point x=\"274\" y=\"449\"/>\n      <point x=\"274\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"523\"/>\n      <point x=\"249\" y=\"548\"/>\n      <point x=\"212\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"548\"/>\n      <point x=\"150\" y=\"523\"/>\n      <point x=\"150\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"449\"/>\n      <point x=\"175\" y=\"424\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"198\"/>\n      <point x=\"662\" y=\"223\"/>\n      <point x=\"662\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"297\"/>\n      <point x=\"637\" y=\"322\"/>\n      <point x=\"600\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"322\"/>\n      <point x=\"538\" y=\"297\"/>\n      <point x=\"538\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"223\"/>\n      <point x=\"563\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"187\" y=\"648\"/>\n      <point x=\"212\" y=\"673\"/>\n      <point x=\"212\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"747\"/>\n      <point x=\"187\" y=\"772\"/>\n      <point x=\"150\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"113\" y=\"772\"/>\n      <point x=\"88\" y=\"747\"/>\n      <point x=\"88\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"673\"/>\n      <point x=\"113\" y=\"648\"/>\n    </contour>\n    <contour>\n      <point x=\"212\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"249\" y=\"873\"/>\n      <point x=\"274\" y=\"898\"/>\n      <point x=\"274\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"972\"/>\n      <point x=\"249\" y=\"997\"/>\n      <point x=\"212\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"997\"/>\n      <point x=\"150\" y=\"972\"/>\n      <point x=\"150\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"150\" y=\"898\"/>\n      <point x=\"175\" y=\"873\"/>\n    </contour>\n    <contour>\n      <point x=\"826\" y=\"259\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"863\" y=\"259\"/>\n      <point x=\"888\" y=\"284\"/>\n      <point x=\"888\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"888\" y=\"358\"/>\n      <point x=\"863\" y=\"383\"/>\n      <point x=\"826\" y=\"383\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"789\" y=\"383\"/>\n      <point x=\"764\" y=\"358\"/>\n      <point x=\"764\" y=\"321\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"764\" y=\"284\"/>\n      <point x=\"789\" y=\"259\"/>\n    </contour>\n    <contour>\n      <point x=\"375\" y=\"1037\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"412\" y=\"1037\"/>\n      <point x=\"437\" y=\"1062\"/>\n      <point x=\"437\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"437\" y=\"1136\"/>\n      <point x=\"412\" y=\"1161\"/>\n      <point x=\"375\" y=\"1161\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"1161\"/>\n      <point x=\"313\" y=\"1136\"/>\n      <point x=\"313\" y=\"1099\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"1062\"/>\n      <point x=\"338\" y=\"1037\"/>\n    </contour>\n    <contour>\n      <point x=\"989\" y=\"424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"424\"/>\n      <point x=\"1051\" y=\"449\"/>\n      <point x=\"1051\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"523\"/>\n      <point x=\"1026\" y=\"548\"/>\n      <point x=\"989\" y=\"548\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"548\"/>\n      <point x=\"927\" y=\"523\"/>\n      <point x=\"927\" y=\"486\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"449\"/>\n      <point x=\"952\" y=\"424\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"648\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1087\" y=\"648\"/>\n      <point x=\"1112\" y=\"673\"/>\n      <point x=\"1112\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"747\"/>\n      <point x=\"1087\" y=\"772\"/>\n      <point x=\"1050\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1013\" y=\"772\"/>\n      <point x=\"988\" y=\"747\"/>\n      <point x=\"988\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"673\"/>\n      <point x=\"1013\" y=\"648\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"1098\"/>\n      <point x=\"662\" y=\"1123\"/>\n      <point x=\"662\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"662\" y=\"1197\"/>\n      <point x=\"637\" y=\"1222\"/>\n      <point x=\"600\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"1222\"/>\n      <point x=\"538\" y=\"1197\"/>\n      <point x=\"538\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1123\"/>\n      <point x=\"563\" y=\"1098\"/>\n    </contour>\n    <contour>\n      <point x=\"989\" y=\"873\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"873\"/>\n      <point x=\"1051\" y=\"898\"/>\n      <point x=\"1051\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1051\" y=\"972\"/>\n      <point x=\"1026\" y=\"997\"/>\n      <point x=\"989\" y=\"997\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"997\"/>\n      <point x=\"927\" y=\"972\"/>\n      <point x=\"927\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"927\" y=\"898\"/>\n      <point x=\"952\" y=\"873\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dottedS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dottedSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B1A\"/>\n  <note>\nuni2B1A\n</note>\n  <outline>\n    <contour>\n      <point x=\"1050\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"1098\"/>\n      <point x=\"1112\" y=\"1126\"/>\n      <point x=\"1112\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"1194\"/>\n      <point x=\"1084\" y=\"1222\"/>\n      <point x=\"1050\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"1222\"/>\n      <point x=\"988\" y=\"1194\"/>\n      <point x=\"988\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"1126\"/>\n      <point x=\"1016\" y=\"1098\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"198\"/>\n      <point x=\"212\" y=\"226\"/>\n      <point x=\"212\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"294\"/>\n      <point x=\"184\" y=\"322\"/>\n      <point x=\"150\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"116\" y=\"322\"/>\n      <point x=\"88\" y=\"294\"/>\n      <point x=\"88\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"226\"/>\n      <point x=\"116\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"498\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"498\"/>\n      <point x=\"212\" y=\"526\"/>\n      <point x=\"212\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"594\"/>\n      <point x=\"184\" y=\"622\"/>\n      <point x=\"150\" y=\"622\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"116\" y=\"622\"/>\n      <point x=\"88\" y=\"594\"/>\n      <point x=\"88\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"526\"/>\n      <point x=\"116\" y=\"498\"/>\n    </contour>\n    <contour>\n      <point x=\"450\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"198\"/>\n      <point x=\"512\" y=\"226\"/>\n      <point x=\"512\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"294\"/>\n      <point x=\"484\" y=\"322\"/>\n      <point x=\"450\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"322\"/>\n      <point x=\"388\" y=\"294\"/>\n      <point x=\"388\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"226\"/>\n      <point x=\"416\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"798\"/>\n      <point x=\"212\" y=\"826\"/>\n      <point x=\"212\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"894\"/>\n      <point x=\"184\" y=\"922\"/>\n      <point x=\"150\" y=\"922\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"116\" y=\"922\"/>\n      <point x=\"88\" y=\"894\"/>\n      <point x=\"88\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"826\"/>\n      <point x=\"116\" y=\"798\"/>\n    </contour>\n    <contour>\n      <point x=\"750\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"198\"/>\n      <point x=\"812\" y=\"226\"/>\n      <point x=\"812\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"294\"/>\n      <point x=\"784\" y=\"322\"/>\n      <point x=\"750\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"322\"/>\n      <point x=\"688\" y=\"294\"/>\n      <point x=\"688\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"226\"/>\n      <point x=\"716\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"150\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"184\" y=\"1098\"/>\n      <point x=\"212\" y=\"1126\"/>\n      <point x=\"212\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"212\" y=\"1194\"/>\n      <point x=\"184\" y=\"1222\"/>\n      <point x=\"150\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"116\" y=\"1222\"/>\n      <point x=\"88\" y=\"1194\"/>\n      <point x=\"88\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"88\" y=\"1126\"/>\n      <point x=\"116\" y=\"1098\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"198\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"198\"/>\n      <point x=\"1112\" y=\"226\"/>\n      <point x=\"1112\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"294\"/>\n      <point x=\"1084\" y=\"322\"/>\n      <point x=\"1050\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"322\"/>\n      <point x=\"988\" y=\"294\"/>\n      <point x=\"988\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"226\"/>\n      <point x=\"1016\" y=\"198\"/>\n    </contour>\n    <contour>\n      <point x=\"450\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"1098\"/>\n      <point x=\"512\" y=\"1126\"/>\n      <point x=\"512\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"1194\"/>\n      <point x=\"484\" y=\"1222\"/>\n      <point x=\"450\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"416\" y=\"1222\"/>\n      <point x=\"388\" y=\"1194\"/>\n      <point x=\"388\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"1126\"/>\n      <point x=\"416\" y=\"1098\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"498\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"498\"/>\n      <point x=\"1112\" y=\"526\"/>\n      <point x=\"1112\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"594\"/>\n      <point x=\"1084\" y=\"622\"/>\n      <point x=\"1050\" y=\"622\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"622\"/>\n      <point x=\"988\" y=\"594\"/>\n      <point x=\"988\" y=\"560\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"526\"/>\n      <point x=\"1016\" y=\"498\"/>\n    </contour>\n    <contour>\n      <point x=\"1050\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1084\" y=\"798\"/>\n      <point x=\"1112\" y=\"826\"/>\n      <point x=\"1112\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1112\" y=\"894\"/>\n      <point x=\"1084\" y=\"922\"/>\n      <point x=\"1050\" y=\"922\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1016\" y=\"922\"/>\n      <point x=\"988\" y=\"894\"/>\n      <point x=\"988\" y=\"860\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"988\" y=\"826\"/>\n      <point x=\"1016\" y=\"798\"/>\n    </contour>\n    <contour>\n      <point x=\"750\" y=\"1098\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"1098\"/>\n      <point x=\"812\" y=\"1126\"/>\n      <point x=\"812\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"1194\"/>\n      <point x=\"784\" y=\"1222\"/>\n      <point x=\"750\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"1222\"/>\n      <point x=\"688\" y=\"1194\"/>\n      <point x=\"688\" y=\"1160\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"1126\"/>\n      <point x=\"716\" y=\"1098\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2193\"/>\n  <outline>\n    <contour>\n      <point x=\"710\" y=\"1420\" type=\"line\"/>\n      <point x=\"467\" y=\"40\" type=\"line\"/>\n      <point x=\"561\" y=\"40\" type=\"line\"/>\n      <point x=\"804\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"165\" y=\"378\" type=\"line\"/>\n      <point x=\"492\" y=\"-20\" type=\"line\"/>\n      <point x=\"514\" y=\"-20\" type=\"line\"/>\n      <point x=\"977\" y=\"338\" type=\"line\"/>\n      <point x=\"921\" y=\"407\" type=\"line\"/>\n      <point x=\"532\" y=\"93\" type=\"line\"/>\n      <point x=\"514\" y=\"93\" type=\"line\"/>\n      <point x=\"230\" y=\"435\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BE\"/>\n  <note>\nuni25BE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"318\" type=\"line\"/>\n      <point x=\"1069\" y=\"1115\" type=\"line\"/>\n      <point x=\"131\" y=\"1115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BC\"/>\n  <note>\ntriagdn\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"170\" type=\"line\"/>\n      <point x=\"1200\" y=\"1190\" type=\"line\"/>\n      <point x=\"0\" y=\"1190\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downT_ipL_eftA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downTipLeftArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"21B2\"/>\n  <outline>\n    <contour>\n      <point x=\"1022\" y=\"466\" type=\"line\"/>\n      <point x=\"1116\" y=\"466\" type=\"line\"/>\n      <point x=\"1232\" y=\"1128\" type=\"line\"/>\n      <point x=\"1138\" y=\"1128\" type=\"line\"/>\n    </contour>\n    <component base=\"leftArrow\" xOffset=\"-35\" yOffset=\"-198\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BF\"/>\n  <note>\nuni25BF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"318\" type=\"line\"/>\n      <point x=\"1069\" y=\"1115\" type=\"line\"/>\n      <point x=\"131\" y=\"1115\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"566\" y=\"434\" type=\"line\"/>\n      <point x=\"637\" y=\"434\" type=\"line\"/>\n      <point x=\"266\" y=\"1062\" type=\"line\"/>\n      <point x=\"262\" y=\"1025\" type=\"line\"/>\n      <point x=\"945\" y=\"1025\" type=\"line\"/>\n      <point x=\"939\" y=\"1071\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"downWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25BD\"/>\n  <note>\nuni25BD\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"170\" type=\"line\"/>\n      <point x=\"1200\" y=\"1190\" type=\"line\"/>\n      <point x=\"0\" y=\"1190\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"596\" y=\"340\" type=\"line\"/>\n      <point x=\"604\" y=\"340\" type=\"line\"/>\n      <point x=\"116\" y=\"1170\" type=\"line\"/>\n      <point x=\"119\" y=\"1110\" type=\"line\"/>\n      <point x=\"1089\" y=\"1110\" type=\"line\"/>\n      <point x=\"1081\" y=\"1164\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dtail.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dtail\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0256\"/>\n  <anchor x=\"462\" y=\"-251\" name=\"bottom\"/>\n  <anchor x=\"568\" y=\"532\" name=\"center\"/>\n  <anchor x=\"1045\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1219\" y=\"1062\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"384\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"603\" y=\"-21\"/>\n      <point x=\"774\" y=\"114\"/>\n      <point x=\"853\" y=\"352\" type=\"curve\"/>\n      <point x=\"803\" y=\"284\" type=\"line\"/>\n      <point x=\"897\" y=\"284\" type=\"line\"/>\n      <point x=\"916\" y=\"709\" type=\"line\"/>\n      <point x=\"835\" y=\"287\"/>\n      <point x=\"674\" y=\"71\"/>\n      <point x=\"399\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"252\" y=\"71\"/>\n      <point x=\"166\" y=\"148\"/>\n      <point x=\"166\" y=\"282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"166\" y=\"677\"/>\n      <point x=\"519\" y=\"958\"/>\n      <point x=\"1051\" y=\"978\" type=\"curve\"/>\n      <point x=\"1067\" y=\"1070\" type=\"line\"/>\n      <point x=\"1059\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"1070\"/>\n      <point x=\"70\" y=\"758\"/>\n      <point x=\"70\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"70\" y=\"88\"/>\n      <point x=\"184\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"1081\" y=\"-469\" type=\"line\"/>\n      <point x=\"1103\" y=\"-381\" type=\"line\"/>\n      <point x=\"1071\" y=\"-376\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"923\" y=\"-353\"/>\n      <point x=\"854\" y=\"-219\"/>\n      <point x=\"902\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1021\" y=\"764\" type=\"line\"/>\n      <point x=\"925\" y=\"764\" type=\"line\"/>\n      <point x=\"807\" y=\"94\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"743\" y=\"-268\"/>\n      <point x=\"828\" y=\"-453\"/>\n      <point x=\"1065\" y=\"-468\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"925\" y=\"764\" type=\"line\"/>\n      <point x=\"1021\" y=\"764\" type=\"line\"/>\n      <point x=\"1106\" y=\"1247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1138\" y=\"1431\"/>\n      <point x=\"1082\" y=\"1521\"/>\n      <point x=\"909\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"1521\"/>\n      <point x=\"827\" y=\"1517\"/>\n      <point x=\"787\" y=\"1505\" type=\"curve\"/>\n      <point x=\"798\" y=\"1418\" type=\"line\"/>\n      <point x=\"834\" y=\"1426\"/>\n      <point x=\"871\" y=\"1429\"/>\n      <point x=\"907\" y=\"1429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"1429\"/>\n      <point x=\"1030\" y=\"1367\"/>\n      <point x=\"1007\" y=\"1237\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dze-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dze-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0455\"/>\n  <outline>\n    <component base=\"s\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dzhe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"dzhe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"395\" y=\"-474\" type=\"line\"/>\n      <point x=\"425\" y=\"-410\"/>\n      <point x=\"493\" y=\"-217\"/>\n      <point x=\"520\" y=\"-106\" type=\"curve\"/>\n      <point x=\"428\" y=\"-94\" type=\"line\"/>\n      <point x=\"403\" y=\"-189\"/>\n      <point x=\"334\" y=\"-378\"/>\n      <point x=\"302\" y=\"-452\" type=\"curve\"/>\n    </contour>\n    <component base=\"u\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/e-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0454\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"530\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"702\" y=\"-20\"/>\n      <point x=\"872\" y=\"39\"/>\n      <point x=\"1001\" y=\"129\" type=\"curve\"/>\n      <point x=\"963\" y=\"209\" type=\"line\"/>\n      <point x=\"840\" y=\"126\"/>\n      <point x=\"689\" y=\"72\"/>\n      <point x=\"549\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"352\" y=\"72\"/>\n      <point x=\"235\" y=\"194\"/>\n      <point x=\"233\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"234\" y=\"755\"/>\n      <point x=\"428\" y=\"988\"/>\n      <point x=\"722\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"988\"/>\n      <point x=\"984\" y=\"935\"/>\n      <point x=\"1037\" y=\"802\" type=\"curve\"/>\n      <point x=\"1114\" y=\"860\" type=\"line\"/>\n      <point x=\"1054\" y=\"1005\"/>\n      <point x=\"923\" y=\"1080\"/>\n      <point x=\"730\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"372\" y=\"1080\"/>\n      <point x=\"137\" y=\"806\"/>\n      <point x=\"137\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"132\"/>\n      <point x=\"283\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"208\" y=\"488\" type=\"line\"/>\n      <point x=\"765\" y=\"488\" type=\"line\"/>\n      <point x=\"780\" y=\"578\" type=\"line\"/>\n      <point x=\"223\" y=\"578\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/e.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"e\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0065\"/>\n  <anchor x=\"511\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"980\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"698\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"604\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"394\" y=\"72\"/>\n      <point x=\"269\" y=\"202\"/>\n      <point x=\"268\" y=\"421\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"269\" y=\"777\"/>\n      <point x=\"444\" y=\"988\"/>\n      <point x=\"737\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"988\"/>\n      <point x=\"982\" y=\"916\"/>\n      <point x=\"982\" y=\"797\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"596\"/>\n      <point x=\"719\" y=\"498\"/>\n      <point x=\"240\" y=\"491\" type=\"curve\"/>\n      <point x=\"261\" y=\"401\" type=\"line\"/>\n      <point x=\"775\" y=\"410\"/>\n      <point x=\"1078\" y=\"538\"/>\n      <point x=\"1078\" y=\"800\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1078\" y=\"976\"/>\n      <point x=\"954\" y=\"1080\"/>\n      <point x=\"745\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"385\" y=\"1080\"/>\n      <point x=\"172\" y=\"834\"/>\n      <point x=\"172\" y=\"419\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"143\"/>\n      <point x=\"329\" y=\"-20\"/>\n      <point x=\"595\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"-20\"/>\n      <point x=\"874\" y=\"24\"/>\n      <point x=\"999\" y=\"98\" type=\"curve\"/>\n      <point x=\"964\" y=\"175\" type=\"line\"/>\n      <point x=\"846\" y=\"110\"/>\n      <point x=\"714\" y=\"72\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E9\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"acutecomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ebreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ebreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0115\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"brevecomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011B\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"caroncomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EA\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBF\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"5\"/>\n    <component base=\"acutecomb\" xOffset=\"310\" yOffset=\"340\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC7\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"4\"/>\n    <component base=\"circumflexcomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC1\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"5\"/>\n    <component base=\"gravecomb\" xOffset=\"311\" yOffset=\"340\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC3\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"5\"/>\n    <component base=\"hookabovecomb\" xOffset=\"270\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ecircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC5\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"circumflexcomb\" xOffset=\"5\"/>\n    <component base=\"tildecomb\" xOffset=\"93\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/edieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EB\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dieresiscomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/edotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0117\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotaccentcomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/edotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"edotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EB9\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"4\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ef-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ef-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0444\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"667\" y=\"-476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"-476\"/>\n      <point x=\"761\" y=\"-466\"/>\n      <point x=\"799\" y=\"-452\" type=\"curve\"/>\n      <point x=\"779\" y=\"-368\" type=\"line\"/>\n      <point x=\"753\" y=\"-379\"/>\n      <point x=\"710\" y=\"-384\"/>\n      <point x=\"676\" y=\"-384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"532\" y=\"-384\"/>\n      <point x=\"462\" y=\"-295\"/>\n      <point x=\"503\" y=\"-122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"51\" type=\"line\"/>\n      <point x=\"552\" y=\"81\" type=\"line\"/>\n      <point x=\"701\" y=\"855\" type=\"line\"/>\n      <point x=\"703\" y=\"867\" type=\"line\"/>\n      <point x=\"717\" y=\"916\"/>\n      <point x=\"766\" y=\"1090\"/>\n      <point x=\"780\" y=\"1146\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"841\" y=\"1389\"/>\n      <point x=\"751\" y=\"1520\"/>\n      <point x=\"504\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"461\" y=\"1520\"/>\n      <point x=\"401\" y=\"1516\"/>\n      <point x=\"345\" y=\"1502\" type=\"curve\"/>\n      <point x=\"366\" y=\"1414\" type=\"line\"/>\n      <point x=\"399\" y=\"1423\"/>\n      <point x=\"445\" y=\"1428\"/>\n      <point x=\"490\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"669\" y=\"1428\"/>\n      <point x=\"735\" y=\"1349\"/>\n      <point x=\"694\" y=\"1166\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"1045\" type=\"line\"/>\n      <point x=\"657\" y=\"1004\" type=\"line\"/>\n      <point x=\"494\" y=\"189\" type=\"line\"/>\n      <point x=\"492\" y=\"177\" type=\"line\"/>\n      <point x=\"467\" y=\"84\"/>\n      <point x=\"442\" y=\"-9\"/>\n      <point x=\"417\" y=\"-102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"353\" y=\"-339\"/>\n      <point x=\"454\" y=\"-476\"/>\n    </contour>\n    <contour>\n      <point x=\"231\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"335\" y=\"-20\"/>\n      <point x=\"441\" y=\"50\"/>\n      <point x=\"481\" y=\"198\" type=\"curve\"/>\n      <point x=\"522\" y=\"198\" type=\"line\"/>\n      <point x=\"534\" y=\"390\" type=\"line\"/>\n      <point x=\"483\" y=\"178\"/>\n      <point x=\"376\" y=\"72\"/>\n      <point x=\"265\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"173\" y=\"72\"/>\n      <point x=\"135\" y=\"144\"/>\n      <point x=\"135\" y=\"283\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"135\" y=\"561\"/>\n      <point x=\"287\" y=\"988\"/>\n      <point x=\"573\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"607\" y=\"988\"/>\n      <point x=\"651\" y=\"982\"/>\n      <point x=\"691\" y=\"966\" type=\"curve\"/>\n      <point x=\"704\" y=\"1062\" type=\"line\"/>\n      <point x=\"681\" y=\"1069\"/>\n      <point x=\"629\" y=\"1080\"/>\n      <point x=\"577\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"236\" y=\"1080\"/>\n      <point x=\"39\" y=\"610\"/>\n      <point x=\"39\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"39\" y=\"90\"/>\n      <point x=\"101\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"623\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"964\" y=\"-20\"/>\n      <point x=\"1161\" y=\"452\"/>\n      <point x=\"1161\" y=\"784\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1161\" y=\"970\"/>\n      <point x=\"1099\" y=\"1080\"/>\n      <point x=\"968\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"865\" y=\"1080\"/>\n      <point x=\"759\" y=\"1012\"/>\n      <point x=\"719\" y=\"864\" type=\"curve\"/>\n      <point x=\"678\" y=\"864\" type=\"line\"/>\n      <point x=\"667\" y=\"672\" type=\"line\"/>\n      <point x=\"717\" y=\"884\"/>\n      <point x=\"824\" y=\"988\"/>\n      <point x=\"935\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"988\"/>\n      <point x=\"1065\" y=\"916\"/>\n      <point x=\"1065\" y=\"778\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1065\" y=\"501\"/>\n      <point x=\"913\" y=\"72\"/>\n      <point x=\"627\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"72\"/>\n      <point x=\"549\" y=\"78\"/>\n      <point x=\"529\" y=\"94\" type=\"curve\"/>\n      <point x=\"516\" y=\"-2\" type=\"line\"/>\n      <point x=\"519\" y=\"-9\"/>\n      <point x=\"571\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/egrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"egrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00E8\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"gravecomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ehookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ehookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBB\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"hookabovecomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eight.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eightsuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eight.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0038\"/>\n  <outline>\n    <contour>\n      <point x=\"500\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"-20\"/>\n      <point x=\"1046\" y=\"162\"/>\n      <point x=\"1046\" y=\"434\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1046\" y=\"658\"/>\n      <point x=\"883\" y=\"774\"/>\n      <point x=\"639\" y=\"774\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"318\" y=\"774\"/>\n      <point x=\"105\" y=\"613\"/>\n      <point x=\"105\" y=\"322\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"105\" y=\"117\"/>\n      <point x=\"263\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"515\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"326\" y=\"70\"/>\n      <point x=\"201\" y=\"186\"/>\n      <point x=\"201\" y=\"358\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"201\" y=\"570\"/>\n      <point x=\"372\" y=\"711\"/>\n      <point x=\"628\" y=\"711\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"821\" y=\"711\"/>\n      <point x=\"950\" y=\"606\"/>\n      <point x=\"950\" y=\"449\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"950\" y=\"222\"/>\n      <point x=\"776\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"464\" y=\"716\" type=\"line\"/>\n      <point x=\"798\" y=\"716\" type=\"line\"/>\n      <point x=\"812\" y=\"798\" type=\"line\"/>\n      <point x=\"478\" y=\"798\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"645\" y=\"807\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"807\"/>\n      <point x=\"363\" y=\"892\"/>\n      <point x=\"363\" y=\"1019\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"363\" y=\"1217\"/>\n      <point x=\"515\" y=\"1350\"/>\n      <point x=\"741\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"915\" y=\"1350\"/>\n      <point x=\"1032\" y=\"1246\"/>\n      <point x=\"1032\" y=\"1091\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1032\" y=\"921\"/>\n      <point x=\"878\" y=\"807\"/>\n    </contour>\n    <contour>\n      <point x=\"632\" y=\"736\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"736\"/>\n      <point x=\"1128\" y=\"875\"/>\n      <point x=\"1128\" y=\"1134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1128\" y=\"1318\"/>\n      <point x=\"980\" y=\"1440\"/>\n      <point x=\"757\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"1440\"/>\n      <point x=\"267\" y=\"1274\"/>\n      <point x=\"267\" y=\"1026\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"832\"/>\n      <point x=\"413\" y=\"736\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eight.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eight.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"eightsuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eightinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eightinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2088\"/>\n  <outline>\n    <component base=\"eightsuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eightsuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eightsuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2078\"/>\n  <outline>\n    <contour>\n      <point x=\"645\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"799\" y=\"793\"/>\n      <point x=\"930\" y=\"858\"/>\n      <point x=\"930\" y=\"985\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"1076\"/>\n      <point x=\"849\" y=\"1127\"/>\n      <point x=\"704\" y=\"1127\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"1127\"/>\n      <point x=\"422\" y=\"1073\"/>\n      <point x=\"422\" y=\"946\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"848\"/>\n      <point x=\"502\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"660\" y=\"875\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"571\" y=\"875\"/>\n      <point x=\"521\" y=\"906\"/>\n      <point x=\"521\" y=\"963\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"521\" y=\"1035\"/>\n      <point x=\"586\" y=\"1079\"/>\n      <point x=\"695\" y=\"1079\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"786\" y=\"1079\"/>\n      <point x=\"835\" y=\"1046\"/>\n      <point x=\"835\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"835\" y=\"914\"/>\n      <point x=\"760\" y=\"875\"/>\n    </contour>\n    <contour>\n      <point x=\"660\" y=\"1107\" type=\"line\"/>\n      <point x=\"740\" y=\"1107\" type=\"line\"/>\n      <point x=\"748\" y=\"1151\" type=\"line\"/>\n      <point x=\"668\" y=\"1151\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"712\" y=\"1171\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"632\" y=\"1171\"/>\n      <point x=\"588\" y=\"1202\"/>\n      <point x=\"588\" y=\"1255\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"588\" y=\"1320\"/>\n      <point x=\"656\" y=\"1357\"/>\n      <point x=\"744\" y=\"1357\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"1357\"/>\n      <point x=\"868\" y=\"1328\"/>\n      <point x=\"868\" y=\"1277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"1211\"/>\n      <point x=\"810\" y=\"1171\"/>\n    </contour>\n    <contour>\n      <point x=\"704\" y=\"1129\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"1129\"/>\n      <point x=\"969\" y=\"1182\"/>\n      <point x=\"969\" y=\"1299\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"1388\"/>\n      <point x=\"894\" y=\"1439\"/>\n      <point x=\"759\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"617\" y=\"1439\"/>\n      <point x=\"495\" y=\"1382\"/>\n      <point x=\"495\" y=\"1265\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"495\" y=\"1179\"/>\n      <point x=\"570\" y=\"1129\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/el-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"el-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043B\"/>\n  <note>\nuni043B\n</note>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"831\" y=\"0\" type=\"curve\"/>\n      <point x=\"930\" y=\"0\" type=\"line\"/>\n      <point x=\"982\" y=\"176\"/>\n      <point x=\"1033\" y=\"417\"/>\n      <point x=\"1033\" y=\"612\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"1043\"/>\n      <point x=\"791\" y=\"1083\"/>\n      <point x=\"328\" y=\"1080\" type=\"curve\"/>\n      <point x=\"312\" y=\"988\" type=\"line\"/>\n      <point x=\"829\" y=\"992\"/>\n      <point x=\"938\" y=\"932\"/>\n      <point x=\"938\" y=\"612\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"938\" y=\"449\"/>\n      <point x=\"898\" y=\"218\"/>\n    </contour>\n    <contour>\n      <point x=\"72\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"390\" y=\"-20\"/>\n      <point x=\"559\" y=\"546\"/>\n      <point x=\"634\" y=\"995\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"1019\" type=\"line\"/>\n      <point x=\"548\" y=\"1031\" type=\"line\"/>\n      <point x=\"544\" y=\"1007\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"639\"/>\n      <point x=\"330\" y=\"72\"/>\n      <point x=\"74\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"61\" y=\"72\"/>\n      <point x=\"43\" y=\"74\"/>\n      <point x=\"8\" y=\"87\" type=\"curve\"/>\n      <point x=\"-8\" y=\"-1\" type=\"line\"/>\n      <point x=\"15\" y=\"-15\"/>\n      <point x=\"51\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ellipsis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ellipsis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2026\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"-398\"/>\n    <component base=\"period\" xOffset=\"398\"/>\n    <component base=\"period\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/em-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"em-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043C\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"550\" y=\"220\" type=\"line\"/>\n      <point x=\"614\" y=\"220\" type=\"line\"/>\n      <point x=\"1022\" y=\"970\" type=\"line\"/>\n      <point x=\"1060\" y=\"970\" type=\"line\"/>\n      <point x=\"1076\" y=\"1060\" type=\"line\"/>\n      <point x=\"969\" y=\"1060\" type=\"line\"/>\n      <point x=\"570\" y=\"310\" type=\"line\"/>\n      <point x=\"562\" y=\"310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"60\" y=\"0\" type=\"line\"/>\n      <point x=\"156\" y=\"0\" type=\"line\"/>\n      <point x=\"343\" y=\"1060\" type=\"line\"/>\n      <point x=\"247\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"488\" y=\"220\" type=\"line\"/>\n      <point x=\"551\" y=\"220\" type=\"line\"/>\n      <point x=\"567\" y=\"310\" type=\"line\"/>\n      <point x=\"563\" y=\"310\" type=\"line\"/>\n      <point x=\"413\" y=\"1060\" type=\"line\"/>\n      <point x=\"311\" y=\"1060\" type=\"line\"/>\n      <point x=\"295\" y=\"970\" type=\"line\"/>\n      <point x=\"338\" y=\"970\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"857\" y=\"0\" type=\"line\"/>\n      <point x=\"953\" y=\"0\" type=\"line\"/>\n      <point x=\"1140\" y=\"1060\" type=\"line\"/>\n      <point x=\"1044\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/emacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"emacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0113\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"macroncomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/emdash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"emdash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2014\"/>\n  <outline>\n    <contour>\n      <point x=\"64\" y=\"664\" type=\"line\"/>\n      <point x=\"1183\" y=\"664\" type=\"line\"/>\n      <point x=\"1199\" y=\"754\" type=\"line\"/>\n      <point x=\"80\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/en-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"en-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"382\" y=\"1060\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"221\" y=\"485\" type=\"line\"/>\n      <point x=\"965\" y=\"485\" type=\"line\"/>\n      <point x=\"980\" y=\"575\" type=\"line\"/>\n      <point x=\"236\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1017\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"-20\"/>\n      <point x=\"1058\" y=\"-19\"/>\n      <point x=\"1077\" y=\"-17\" type=\"curve\"/>\n      <point x=\"1094\" y=\"77\" type=\"line\"/>\n      <point x=\"1073\" y=\"74\"/>\n      <point x=\"1052\" y=\"72\"/>\n      <point x=\"1030\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"937\" y=\"72\"/>\n      <point x=\"918\" y=\"138\"/>\n      <point x=\"945\" y=\"290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"1060\" type=\"line\"/>\n      <point x=\"987\" y=\"1060\" type=\"line\"/>\n      <point x=\"849\" y=\"280\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"812\" y=\"73\"/>\n      <point x=\"874\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fM_ediumC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfMediumControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2419\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"M.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>M.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfMediumControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"1234\" type=\"line\"/>\n      <point x=\"553\" y=\"185\" type=\"line\"/>\n      <point x=\"647\" y=\"185\" type=\"line\"/>\n      <point x=\"647\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"509\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"509\"/>\n      <point x=\"801\" y=\"597\"/>\n      <point x=\"801\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"801\" y=\"818\"/>\n      <point x=\"709\" y=\"909\"/>\n      <point x=\"599\" y=\"909\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"909\"/>\n      <point x=\"397\" y=\"818\"/>\n      <point x=\"397\" y=\"708\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"397\" y=\"597\"/>\n      <point x=\"489\" y=\"509\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_extC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTextControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2403\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"X.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>X.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTextControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1032\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"1032\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"186\" type=\"line\"/>\n      <point x=\"1059\" y=\"186\" type=\"line\"/>\n      <point x=\"1059\" y=\"276\" type=\"line\"/>\n      <point x=\"75\" y=\"276\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionBlockControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2417\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"B.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>B.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionBlockControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1031\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"186\" type=\"line\"/>\n      <point x=\"1125\" y=\"1236\" type=\"line\"/>\n      <point x=\"1031\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"664\" type=\"line\"/>\n      <point x=\"1056\" y=\"664\" type=\"line\"/>\n      <point x=\"1056\" y=\"758\" type=\"line\"/>\n      <point x=\"75\" y=\"758\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2404\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endOfTransmissionControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"500\" y=\"680\" type=\"line\"/>\n      <point x=\"135\" y=\"1140\" type=\"line\"/>\n      <point x=\"65\" y=\"1081\" type=\"line\"/>\n      <point x=\"495\" y=\"536\" type=\"line\"/>\n      <point x=\"703\" y=\"752\" type=\"line\"/>\n      <point x=\"1068\" y=\"296\" type=\"line\"/>\n      <point x=\"1135\" y=\"362\" type=\"line\"/>\n      <point x=\"701\" y=\"896\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2013\"/>\n  <outline>\n    <contour>\n      <point x=\"94\" y=\"664\" type=\"line\"/>\n      <point x=\"1153\" y=\"664\" type=\"line\"/>\n      <point x=\"1169\" y=\"754\" type=\"line\"/>\n      <point x=\"110\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"endescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04A3\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"993\" y=\"-324\" type=\"line\"/>\n      <point x=\"1033\" y=\"-219\"/>\n      <point x=\"1080\" y=\"-37\"/>\n      <point x=\"1094\" y=\"77\" type=\"curve\"/>\n      <point x=\"996\" y=\"52\" type=\"line\"/>\n      <point x=\"993\" y=\"37\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"978\" y=\"-44\"/>\n      <point x=\"941\" y=\"-191\"/>\n      <point x=\"899\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <component base=\"en-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eng.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eng\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014B\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"359\" y=\"-470\" type=\"line\"/>\n      <point x=\"384\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"709\" y=\"-442\"/>\n      <point x=\"859\" y=\"-316\"/>\n      <point x=\"910\" y=\"-26\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"697\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"948\"/>\n      <point x=\"984\" y=\"1080\"/>\n      <point x=\"747\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1080\"/>\n      <point x=\"400\" y=\"960\"/>\n      <point x=\"341\" y=\"749\" type=\"curve\"/>\n      <point x=\"302\" y=\"749\" type=\"line\"/>\n      <point x=\"251\" y=\"320\" type=\"line\"/>\n      <point x=\"332\" y=\"819\"/>\n      <point x=\"513\" y=\"988\"/>\n      <point x=\"727\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"988\"/>\n      <point x=\"975\" y=\"893\"/>\n      <point x=\"942\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"-38\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"773\" y=\"-257\"/>\n      <point x=\"652\" y=\"-353\"/>\n      <point x=\"390\" y=\"-375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"355\" y=\"-378\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"325\" y=\"737\" type=\"line\"/>\n      <point x=\"364\" y=\"1060\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/enquiryC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"enquiryControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2405\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"Q.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>Q.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/enquiryC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"enquiryControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1028\" y=\"219\" type=\"line\"/>\n      <point x=\"1091\" y=\"275\" type=\"line\"/>\n      <point x=\"158\" y=\"1210\" type=\"line\"/>\n      <point x=\"95\" y=\"1152\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"174\" y=\"221\" type=\"line\"/>\n      <point x=\"1097\" y=\"1145\" type=\"line\"/>\n      <point x=\"1034\" y=\"1203\" type=\"line\"/>\n      <point x=\"111\" y=\"277\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0119\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"667\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"710\" y=\"-423\"/>\n      <point x=\"751\" y=\"-417\"/>\n      <point x=\"780\" y=\"-405\" type=\"curve\"/>\n      <point x=\"767\" y=\"-322\" type=\"line\"/>\n      <point x=\"747\" y=\"-329\"/>\n      <point x=\"717\" y=\"-336\"/>\n      <point x=\"683\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"606\" y=\"-336\"/>\n      <point x=\"564\" y=\"-301\"/>\n      <point x=\"564\" y=\"-234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"564\" y=\"-83\"/>\n      <point x=\"692\" y=\"-21\"/>\n      <point x=\"824\" y=\"19\" type=\"curve\"/>\n      <point x=\"767\" y=\"34\" type=\"line\"/>\n      <point x=\"627\" y=\"52\" type=\"line\"/>\n      <point x=\"627\" y=\"-24\" type=\"line\"/>\n      <point x=\"524\" y=\"-79\"/>\n      <point x=\"470\" y=\"-158\"/>\n      <point x=\"470\" y=\"-254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"470\" y=\"-364\"/>\n      <point x=\"538\" y=\"-423\"/>\n    </contour>\n    <component base=\"e\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eopen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"025B\"/>\n  <outline>\n    <component base=\"epsilon\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/epsilon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"epsilon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B5\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"529\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"686\" y=\"-20\"/>\n      <point x=\"821\" y=\"-3\"/>\n      <point x=\"927\" y=\"28\" type=\"curve\"/>\n      <point x=\"914\" y=\"122\" type=\"line\"/>\n      <point x=\"824\" y=\"98\"/>\n      <point x=\"718\" y=\"72\"/>\n      <point x=\"553\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"72\"/>\n      <point x=\"237\" y=\"127\"/>\n      <point x=\"237\" y=\"236\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"237\" y=\"434\"/>\n      <point x=\"504\" y=\"480\"/>\n      <point x=\"769\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"480\" type=\"line\"/>\n      <point x=\"840\" y=\"570\" type=\"line\"/>\n      <point x=\"528\" y=\"531\" type=\"line\"/>\n      <point x=\"299\" y=\"511\"/>\n      <point x=\"137\" y=\"414\"/>\n      <point x=\"137\" y=\"215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"137\" y=\"57\"/>\n      <point x=\"267\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"463\" y=\"480\" type=\"line\"/>\n      <point x=\"826\" y=\"480\" type=\"line\"/>\n      <point x=\"840\" y=\"570\" type=\"line\"/>\n      <point x=\"520\" y=\"585\"/>\n      <point x=\"360\" y=\"651\"/>\n      <point x=\"360\" y=\"767\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"930\"/>\n      <point x=\"540\" y=\"988\"/>\n      <point x=\"745\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"870\" y=\"988\"/>\n      <point x=\"976\" y=\"971\"/>\n      <point x=\"1065\" y=\"935\" type=\"curve\"/>\n      <point x=\"1113\" y=\"1022\" type=\"line\"/>\n      <point x=\"1001\" y=\"1061\"/>\n      <point x=\"877\" y=\"1080\"/>\n      <point x=\"739\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"473\" y=\"1080\"/>\n      <point x=\"265\" y=\"995\"/>\n      <point x=\"265\" y=\"772\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"265\" y=\"662\"/>\n      <point x=\"335\" y=\"587\"/>\n      <point x=\"475\" y=\"545\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/epsilontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"epsilontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AD\"/>\n  <outline>\n    <component base=\"epsilon\"/>\n    <component base=\"tonos\" xOffset=\"68\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003D\"/>\n  <outline>\n    <contour>\n      <point x=\"192\" y=\"914\" type=\"line\"/>\n      <point x=\"1144\" y=\"914\" type=\"line\"/>\n      <point x=\"1160\" y=\"1004\" type=\"line\"/>\n      <point x=\"208\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"414\" type=\"line\"/>\n      <point x=\"1056\" y=\"414\" type=\"line\"/>\n      <point x=\"1071\" y=\"504\" type=\"line\"/>\n      <point x=\"120\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"48\" y=\"914\" type=\"line\"/>\n      <point x=\"1143\" y=\"914\" type=\"line\"/>\n      <point x=\"1159\" y=\"1004\" type=\"line\"/>\n      <point x=\"64\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-40\" y=\"414\" type=\"line\"/>\n      <point x=\"1055\" y=\"414\" type=\"line\"/>\n      <point x=\"1071\" y=\"504\" type=\"line\"/>\n      <point x=\"-24\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1358\" y=\"914\" type=\"line\"/>\n      <point x=\"2288\" y=\"914\" type=\"line\"/>\n      <point x=\"2304\" y=\"1004\" type=\"line\"/>\n      <point x=\"1374\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"160\" y=\"414\" type=\"line\"/>\n      <point x=\"1090\" y=\"414\" type=\"line\"/>\n      <point x=\"1106\" y=\"504\" type=\"line\"/>\n      <point x=\"176\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"248\" y=\"914\" type=\"line\"/>\n      <point x=\"1178\" y=\"914\" type=\"line\"/>\n      <point x=\"1194\" y=\"1004\" type=\"line\"/>\n      <point x=\"264\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1270\" y=\"414\" type=\"line\"/>\n      <point x=\"2200\" y=\"414\" type=\"line\"/>\n      <point x=\"2216\" y=\"504\" type=\"line\"/>\n      <point x=\"1286\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"276\" y=\"1074\" type=\"line\"/>\n      <point x=\"3515\" y=\"1074\" type=\"line\"/>\n      <point x=\"3531\" y=\"1164\" type=\"line\"/>\n      <point x=\"292\" y=\"1164\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"132\" y=\"254\" type=\"line\"/>\n      <point x=\"3371\" y=\"254\" type=\"line\"/>\n      <point x=\"3387\" y=\"344\" type=\"line\"/>\n      <point x=\"148\" y=\"344\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"664\" type=\"line\"/>\n      <point x=\"3443\" y=\"664\" type=\"line\"/>\n      <point x=\"3459\" y=\"754\" type=\"line\"/>\n      <point x=\"220\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2370\" yOffset=\"-3\"/>\n    <component base=\"greater\" xOffset=\"1240\"/>\n    <component base=\"equal\" xOffset=\"56\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"2374\"/>\n    <component base=\"less\" xOffset=\"1254\"/>\n    <component base=\"equal\" xOffset=\"56\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"18\" y=\"914\" type=\"line\"/>\n      <point x=\"1317\" y=\"914\" type=\"line\"/>\n      <point x=\"1333\" y=\"1004\" type=\"line\"/>\n      <point x=\"34\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-70\" y=\"414\" type=\"line\"/>\n      <point x=\"1229\" y=\"414\" type=\"line\"/>\n      <point x=\"1245\" y=\"504\" type=\"line\"/>\n      <point x=\"-54\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"192\" y=\"914\" type=\"line\"/>\n      <point x=\"1287\" y=\"914\" type=\"line\"/>\n      <point x=\"1303\" y=\"1004\" type=\"line\"/>\n      <point x=\"208\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"414\" type=\"line\"/>\n      <point x=\"1199\" y=\"414\" type=\"line\"/>\n      <point x=\"1215\" y=\"504\" type=\"line\"/>\n      <point x=\"120\" y=\"504\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equivalence.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"equivalence\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2261\"/>\n  <outline>\n    <contour>\n      <point x=\"217\" y=\"1054\" type=\"line\"/>\n      <point x=\"1168\" y=\"1054\" type=\"line\"/>\n      <point x=\"1184\" y=\"1144\" type=\"line\"/>\n      <point x=\"233\" y=\"1144\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"79\" y=\"274\" type=\"line\"/>\n      <point x=\"1030\" y=\"274\" type=\"line\"/>\n      <point x=\"1046\" y=\"364\" type=\"line\"/>\n      <point x=\"95\" y=\"364\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"148\" y=\"664\" type=\"line\"/>\n      <point x=\"1099\" y=\"664\" type=\"line\"/>\n      <point x=\"1115\" y=\"754\" type=\"line\"/>\n      <point x=\"164\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/er-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"er-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0440\"/>\n  <outline>\n    <component base=\"p\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ereversed-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ereversed-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"470\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"-20\"/>\n      <point x=\"1063\" y=\"254\"/>\n      <point x=\"1063\" y=\"671\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1063\" y=\"928\"/>\n      <point x=\"917\" y=\"1080\"/>\n      <point x=\"670\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"1080\"/>\n      <point x=\"328\" y=\"1021\"/>\n      <point x=\"199\" y=\"931\" type=\"curve\"/>\n      <point x=\"237\" y=\"851\" type=\"line\"/>\n      <point x=\"360\" y=\"934\"/>\n      <point x=\"511\" y=\"988\"/>\n      <point x=\"651\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"848\" y=\"988\"/>\n      <point x=\"965\" y=\"866\"/>\n      <point x=\"967\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"966\" y=\"305\"/>\n      <point x=\"772\" y=\"72\"/>\n      <point x=\"478\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"323\" y=\"72\"/>\n      <point x=\"216\" y=\"125\"/>\n      <point x=\"163\" y=\"258\" type=\"curve\"/>\n      <point x=\"86\" y=\"200\" type=\"line\"/>\n      <point x=\"146\" y=\"55\"/>\n      <point x=\"277\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"401\" y=\"486\" type=\"line\"/>\n      <point x=\"990\" y=\"486\" type=\"line\"/>\n      <point x=\"990\" y=\"576\" type=\"line\"/>\n      <point x=\"401\" y=\"576\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/es-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"es-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0441\"/>\n  <outline>\n    <component base=\"c\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/escapeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"escapeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241B\"/>\n  <outline>\n    <component base=\"E.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"C.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>E.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>C.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/escapeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"escapeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"109\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"665\" type=\"line\"/>\n      <point x=\"1091\" y=\"755\" type=\"line\"/>\n      <point x=\"109\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/esh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"esh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0283\"/>\n  <anchor x=\"358\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-52\" y=\"-476\" type=\"line\"/>\n      <point x=\"32\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"-440\"/>\n      <point x=\"495\" y=\"-307\"/>\n      <point x=\"533\" y=\"64\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"990\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"1285\"/>\n      <point x=\"828\" y=\"1428\"/>\n      <point x=\"1087\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"1428\"/>\n      <point x=\"1174\" y=\"1424\"/>\n      <point x=\"1234\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1271\" y=\"1500\" type=\"line\"/>\n      <point x=\"1218\" y=\"1514\"/>\n      <point x=\"1169\" y=\"1520\"/>\n      <point x=\"1109\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"1520\"/>\n      <point x=\"566\" y=\"1344\"/>\n      <point x=\"531\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"-240\"/>\n      <point x=\"271\" y=\"-353\"/>\n      <point x=\"28\" y=\"-376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-56\" y=\"-384\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/estimated.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"estimated\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"212E\"/>\n  <outline>\n    <contour>\n      <point x=\"596\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"-20\"/>\n      <point x=\"924\" y=\"59\"/>\n      <point x=\"1049\" y=\"248\" type=\"curve\"/>\n      <point x=\"984\" y=\"289\" type=\"line\"/>\n      <point x=\"888\" y=\"132\"/>\n      <point x=\"768\" y=\"50\"/>\n      <point x=\"596\" y=\"50\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"50\"/>\n      <point x=\"386\" y=\"89\"/>\n      <point x=\"305\" y=\"167\" type=\"curve\"/>\n      <point x=\"305\" y=\"529\" type=\"line\"/>\n      <point x=\"1120\" y=\"529\" type=\"line\"/>\n      <point x=\"1105\" y=\"855\"/>\n      <point x=\"910\" y=\"1080\"/>\n      <point x=\"596\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"292\" y=\"1080\"/>\n      <point x=\"80\" y=\"851\"/>\n      <point x=\"80\" y=\"531\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"80\" y=\"222\"/>\n      <point x=\"280\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"305\" y=\"598\" type=\"line\"/>\n      <point x=\"305\" y=\"893\" type=\"line\"/>\n      <point x=\"383\" y=\"972\"/>\n      <point x=\"479\" y=\"1013\"/>\n      <point x=\"592\" y=\"1013\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"704\" y=\"1013\"/>\n      <point x=\"808\" y=\"968\"/>\n      <point x=\"886\" y=\"891\" type=\"curve\"/>\n      <point x=\"886\" y=\"598\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eta.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eta\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B7\"/>\n  <anchor x=\"425\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"691\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"325\" y=\"737\" type=\"line\"/>\n      <point x=\"364\" y=\"1060\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"747\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1080\"/>\n      <point x=\"400\" y=\"960\"/>\n      <point x=\"341\" y=\"749\" type=\"curve\"/>\n      <point x=\"302\" y=\"749\" type=\"line\"/>\n      <point x=\"251\" y=\"320\" type=\"line\"/>\n      <point x=\"332\" y=\"819\"/>\n      <point x=\"513\" y=\"988\"/>\n      <point x=\"727\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"988\"/>\n      <point x=\"974\" y=\"893\"/>\n      <point x=\"942\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"901\" y=\"465\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"-41\"/>\n      <point x=\"706\" y=\"-238\"/>\n      <point x=\"424\" y=\"-394\" type=\"curve\"/>\n      <point x=\"475\" y=\"-469\" type=\"line\"/>\n      <point x=\"785\" y=\"-298\"/>\n      <point x=\"905\" y=\"-84\"/>\n      <point x=\"998\" y=\"467\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"697\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"948\"/>\n      <point x=\"984\" y=\"1080\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/etatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"etatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AE\"/>\n  <outline>\n    <component base=\"eta\"/>\n    <component base=\"tonos\" xOffset=\"18\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eth.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F0\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"771\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"516\" y=\"1435\" type=\"line\"/>\n      <point x=\"954\" y=\"1284\"/>\n      <point x=\"1022\" y=\"1043\"/>\n      <point x=\"988\" y=\"656\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"953\" y=\"265\"/>\n      <point x=\"785\" y=\"72\"/>\n      <point x=\"491\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"315\" y=\"72\"/>\n      <point x=\"210\" y=\"168\"/>\n      <point x=\"210\" y=\"329\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"210\" y=\"651\"/>\n      <point x=\"522\" y=\"840\"/>\n      <point x=\"1039\" y=\"840\" type=\"curve\"/>\n      <point x=\"1000\" y=\"932\" type=\"line\"/>\n      <point x=\"472\" y=\"932\"/>\n      <point x=\"111\" y=\"686\"/>\n      <point x=\"111\" y=\"329\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"111\" y=\"110\"/>\n      <point x=\"247\" y=\"-20\"/>\n      <point x=\"475\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"823\" y=\"-20\"/>\n      <point x=\"1018\" y=\"177\"/>\n      <point x=\"1068\" y=\"574\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1133\" y=\"1087\"/>\n      <point x=\"993\" y=\"1366\"/>\n      <point x=\"550\" y=\"1516\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"335\" y=\"1027\" type=\"line\"/>\n      <point x=\"1230\" y=\"1327\" type=\"line\"/>\n      <point x=\"1208\" y=\"1409\" type=\"line\"/>\n      <point x=\"311\" y=\"1109\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/etilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"etilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EBD\"/>\n  <outline>\n    <component base=\"e\"/>\n    <component base=\"tildecomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eturned.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eturned\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01DD\"/>\n  <outline>\n    <component base=\"schwa\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/euro.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"euro\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AC\"/>\n  <outline>\n    <contour>\n      <point x=\"690\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"811\" y=\"-20\"/>\n      <point x=\"934\" y=\"0\"/>\n      <point x=\"1056\" y=\"42\" type=\"curve\"/>\n      <point x=\"1044\" y=\"130\" type=\"line\"/>\n      <point x=\"933\" y=\"90\"/>\n      <point x=\"824\" y=\"70\"/>\n      <point x=\"717\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"489\" y=\"70\"/>\n      <point x=\"337\" y=\"254\"/>\n      <point x=\"337\" y=\"530\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"337\" y=\"1022\"/>\n      <point x=\"563\" y=\"1350\"/>\n      <point x=\"904\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1015\" y=\"1350\"/>\n      <point x=\"1103\" y=\"1306\"/>\n      <point x=\"1184\" y=\"1210\" type=\"curve\"/>\n      <point x=\"1257\" y=\"1281\" type=\"line\"/>\n      <point x=\"1162\" y=\"1391\"/>\n      <point x=\"1056\" y=\"1440\"/>\n      <point x=\"913\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"511\" y=\"1440\"/>\n      <point x=\"243\" y=\"1073\"/>\n      <point x=\"243\" y=\"523\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"243\" y=\"197\"/>\n      <point x=\"421\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"77\" y=\"515\" type=\"line\"/>\n      <point x=\"895\" y=\"515\" type=\"line\"/>\n      <point x=\"910\" y=\"605\" type=\"line\"/>\n      <point x=\"92\" y=\"605\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"128\" y=\"805\" type=\"line\"/>\n      <point x=\"946\" y=\"805\" type=\"line\"/>\n      <point x=\"962\" y=\"895\" type=\"line\"/>\n      <point x=\"144\" y=\"895\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eurocurrency.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"eurocurrency\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A0\"/>\n  <outline>\n    <contour>\n      <point x=\"548\" y=\"584\" type=\"curve\"/>\n      <point x=\"562\" y=\"674\" type=\"line\"/>\n      <point x=\"369\" y=\"674\"/>\n      <point x=\"254\" y=\"780\"/>\n      <point x=\"253\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"254\" y=\"1193\"/>\n      <point x=\"395\" y=\"1349\"/>\n      <point x=\"605\" y=\"1349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"716\" y=\"1349\"/>\n      <point x=\"799\" y=\"1314\"/>\n      <point x=\"868\" y=\"1239\" type=\"curve\"/>\n      <point x=\"942\" y=\"1304\" type=\"line\"/>\n      <point x=\"862\" y=\"1397\"/>\n      <point x=\"760\" y=\"1439\"/>\n      <point x=\"618\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"1439\"/>\n      <point x=\"157\" y=\"1247\"/>\n      <point x=\"157\" y=\"958\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"157\" y=\"723\"/>\n      <point x=\"302\" y=\"584\"/>\n    </contour>\n    <contour>\n      <point x=\"435\" y=\"0\" type=\"line\"/>\n      <point x=\"961\" y=\"0\" type=\"line\"/>\n      <point x=\"977\" y=\"90\" type=\"line\"/>\n      <point x=\"452\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"425\" y=\"0\" type=\"line\"/>\n      <point x=\"519\" y=\"0\" type=\"line\"/>\n      <point x=\"674\" y=\"880\" type=\"line\"/>\n      <point x=\"580\" y=\"880\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"523\" y=\"397\" type=\"line\"/>\n      <point x=\"952\" y=\"397\" type=\"line\"/>\n      <point x=\"968\" y=\"486\" type=\"line\"/>\n      <point x=\"540\" y=\"486\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"574\" y=\"790\" type=\"line\"/>\n      <point x=\"1100\" y=\"790\" type=\"line\"/>\n      <point x=\"1116\" y=\"880\" type=\"line\"/>\n      <point x=\"593\" y=\"880\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0021\"/>\n  <outline>\n    <contour>\n      <point x=\"517\" y=\"356\" type=\"line\"/>\n      <point x=\"613\" y=\"356\" type=\"line\"/>\n      <point x=\"802\" y=\"1430\" type=\"line\"/>\n      <point x=\"706\" y=\"1430\" type=\"line\"/>\n    </contour>\n    <component base=\"period\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"242\"/>\n    <component base=\"colon\" xOffset=\"1097\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"573\" y=\"-100\" type=\"line\"/>\n      <point x=\"685\" y=\"-100\" type=\"line\"/>\n      <point x=\"1875\" y=\"1520\" type=\"line\"/>\n      <point x=\"1763\" y=\"1520\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"160\" y=\"414\" type=\"line\"/>\n      <point x=\"2199\" y=\"414\" type=\"line\"/>\n      <point x=\"2215\" y=\"504\" type=\"line\"/>\n      <point x=\"176\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"248\" y=\"914\" type=\"line\"/>\n      <point x=\"2287\" y=\"914\" type=\"line\"/>\n      <point x=\"2303\" y=\"1004\" type=\"line\"/>\n      <point x=\"264\" y=\"1004\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_equal_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1213\" y=\"-100\" type=\"line\"/>\n      <point x=\"1325\" y=\"-100\" type=\"line\"/>\n      <point x=\"2515\" y=\"1520\" type=\"line\"/>\n      <point x=\"2403\" y=\"1520\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"132\" y=\"254\" type=\"line\"/>\n      <point x=\"3371\" y=\"254\" type=\"line\"/>\n      <point x=\"3386\" y=\"344\" type=\"line\"/>\n      <point x=\"147\" y=\"344\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"204\" y=\"664\" type=\"line\"/>\n      <point x=\"3443\" y=\"664\" type=\"line\"/>\n      <point x=\"3459\" y=\"754\" type=\"line\"/>\n      <point x=\"220\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"276\" y=\"1074\" type=\"line\"/>\n      <point x=\"3515\" y=\"1074\" type=\"line\"/>\n      <point x=\"3531\" y=\"1164\" type=\"line\"/>\n      <point x=\"292\" y=\"1164\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"967\" y=\"914\" type=\"line\"/>\n      <point x=\"1317\" y=\"914\" type=\"line\"/>\n      <point x=\"1333\" y=\"1004\" type=\"line\"/>\n      <point x=\"983\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"879\" y=\"414\" type=\"line\"/>\n      <point x=\"1229\" y=\"414\" type=\"line\"/>\n      <point x=\"1245\" y=\"504\" type=\"line\"/>\n      <point x=\"895\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"914\" type=\"line\"/>\n      <point x=\"368\" y=\"914\" type=\"line\"/>\n      <point x=\"384\" y=\"1004\" type=\"line\"/>\n      <point x=\"34\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-70\" y=\"414\" type=\"line\"/>\n      <point x=\"280\" y=\"414\" type=\"line\"/>\n      <point x=\"296\" y=\"504\" type=\"line\"/>\n      <point x=\"-54\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"exclam\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_exclam.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_exclam.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"142\"/>\n    <component base=\"exclam\" xOffset=\"1058\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_exclam_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_exclam_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"102\"/>\n    <component base=\"exclam\" xOffset=\"1200\"/>\n    <component base=\"period\" xOffset=\"2298\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclam_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"242\"/>\n    <component base=\"period\" xOffset=\"1098\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclamdouble.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclamdouble\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203C\"/>\n  <outline>\n    <component base=\"exclam\" xOffset=\"-268\"/>\n    <component base=\"exclam\" xOffset=\"269\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclamdown.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"exclamdown\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A1\"/>\n  <outline>\n    <contour>\n      <point x=\"398\" y=\"-368\" type=\"line\"/>\n      <point x=\"494\" y=\"-368\" type=\"line\"/>\n      <point x=\"683\" y=\"706\" type=\"line\"/>\n      <point x=\"587\" y=\"706\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"160\" yOffset=\"904\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ezh.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ezh\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0292\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"694\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"-479\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"707\" y=\"-479\"/>\n      <point x=\"947\" y=\"-284\"/>\n      <point x=\"947\" y=\"5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"255\"/>\n      <point x=\"785\" y=\"403\"/>\n      <point x=\"488\" y=\"403\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"381\" y=\"403\" type=\"line\"/>\n      <point x=\"361\" y=\"313\" type=\"line\"/>\n      <point x=\"472\" y=\"313\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"715\" y=\"313\"/>\n      <point x=\"849\" y=\"202\"/>\n      <point x=\"849\" y=\"5\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"849\" y=\"-229\"/>\n      <point x=\"655\" y=\"-387\"/>\n      <point x=\"390\" y=\"-387\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"226\" y=\"-387\"/>\n      <point x=\"134\" y=\"-342\"/>\n      <point x=\"28\" y=\"-236\" type=\"curve\"/>\n      <point x=\"-44\" y=\"-300\" type=\"line\"/>\n      <point x=\"46\" y=\"-419\"/>\n      <point x=\"188\" y=\"-479\"/>\n    </contour>\n    <contour>\n      <point x=\"367\" y=\"313\" type=\"line\"/>\n      <point x=\"400\" y=\"344\" type=\"line\"/>\n      <point x=\"1048\" y=\"973\" type=\"line\"/>\n      <point x=\"1040\" y=\"1060\" type=\"line\"/>\n      <point x=\"288\" y=\"1060\" type=\"line\"/>\n      <point x=\"272\" y=\"970\" type=\"line\"/>\n      <point x=\"1025\" y=\"970\" type=\"line\"/>\n      <point x=\"975\" y=\"1019\" type=\"line\"/>\n      <point x=\"291\" y=\"360\" type=\"line\"/>\n      <point x=\"300\" y=\"313\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/f.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"f\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0066\"/>\n  <anchor x=\"358\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-52\" y=\"-476\" type=\"line\"/>\n      <point x=\"32\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"-440\"/>\n      <point x=\"495\" y=\"-307\"/>\n      <point x=\"533\" y=\"64\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"990\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"1285\"/>\n      <point x=\"828\" y=\"1428\"/>\n      <point x=\"1087\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"1428\"/>\n      <point x=\"1174\" y=\"1424\"/>\n      <point x=\"1234\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1271\" y=\"1500\" type=\"line\"/>\n      <point x=\"1218\" y=\"1514\"/>\n      <point x=\"1169\" y=\"1520\"/>\n      <point x=\"1109\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"1520\"/>\n      <point x=\"566\" y=\"1344\"/>\n      <point x=\"531\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"-240\"/>\n      <point x=\"271\" y=\"-353\"/>\n      <point x=\"28\" y=\"-376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-56\" y=\"-384\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"120\" y=\"688\" type=\"line\"/>\n      <point x=\"1052\" y=\"688\" type=\"line\"/>\n      <point x=\"1068\" y=\"778\" type=\"line\"/>\n      <point x=\"136\" y=\"778\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/f.locl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"f.locl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"358\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"286\" y=\"-460\" type=\"line\"/>\n      <point x=\"380\" y=\"-460\" type=\"line\"/>\n      <point x=\"647\" y=\"1050\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"692\" y=\"1304\"/>\n      <point x=\"839\" y=\"1428\"/>\n      <point x=\"1087\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"1428\"/>\n      <point x=\"1174\" y=\"1424\"/>\n      <point x=\"1234\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1271\" y=\"1500\" type=\"line\"/>\n      <point x=\"1218\" y=\"1514\"/>\n      <point x=\"1169\" y=\"1520\"/>\n      <point x=\"1109\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"795\" y=\"1520\"/>\n      <point x=\"608\" y=\"1362\"/>\n      <point x=\"551\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"120\" y=\"688\" type=\"line\"/>\n      <point x=\"1052\" y=\"688\" type=\"line\"/>\n      <point x=\"1068\" y=\"778\" type=\"line\"/>\n      <point x=\"136\" y=\"778\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/f.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"f.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"488\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"623\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"-480\"/>\n      <point x=\"945\" y=\"-361\"/>\n      <point x=\"945\" y=\"-122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"945\" y=\"101\"/>\n      <point x=\"863\" y=\"318\"/>\n      <point x=\"723\" y=\"473\" type=\"curve\"/>\n      <point x=\"645\" y=\"411\" type=\"line\"/>\n      <point x=\"794\" y=\"247\"/>\n      <point x=\"849\" y=\"53\"/>\n      <point x=\"849\" y=\"-122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"849\" y=\"-299\"/>\n      <point x=\"778\" y=\"-388\"/>\n      <point x=\"636\" y=\"-388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"-388\"/>\n      <point x=\"347\" y=\"-202\"/>\n      <point x=\"347\" y=\"123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"347\" y=\"952\"/>\n      <point x=\"565\" y=\"1428\"/>\n      <point x=\"946\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1052\" y=\"1428\"/>\n      <point x=\"1148\" y=\"1373\"/>\n      <point x=\"1209\" y=\"1277\" type=\"curve\"/>\n      <point x=\"1284\" y=\"1346\" type=\"line\"/>\n      <point x=\"1215\" y=\"1456\"/>\n      <point x=\"1099\" y=\"1520\"/>\n      <point x=\"967\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"501\" y=\"1520\"/>\n      <point x=\"251\" y=\"1011\"/>\n      <point x=\"251\" y=\"123\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"251\" y=\"-260\"/>\n      <point x=\"386\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"120\" y=\"688\" type=\"line\"/>\n      <point x=\"1011\" y=\"688\" type=\"line\"/>\n      <point x=\"1027\" y=\"778\" type=\"line\"/>\n      <point x=\"136\" y=\"778\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB01\"/>\n  <outline>\n    <contour>\n      <point x=\"-166\" y=\"-476\" type=\"line\"/>\n      <point x=\"-82\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"211\" y=\"-440\"/>\n      <point x=\"381\" y=\"-307\"/>\n      <point x=\"419\" y=\"64\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"990\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"1285\"/>\n      <point x=\"714\" y=\"1428\"/>\n      <point x=\"973\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1017\" y=\"1428\"/>\n      <point x=\"1060\" y=\"1424\"/>\n      <point x=\"1120\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1157\" y=\"1500\" type=\"line\"/>\n      <point x=\"1104\" y=\"1514\"/>\n      <point x=\"1055\" y=\"1520\"/>\n      <point x=\"995\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"1520\"/>\n      <point x=\"452\" y=\"1344\"/>\n      <point x=\"417\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"-240\"/>\n      <point x=\"157\" y=\"-353\"/>\n      <point x=\"-86\" y=\"-376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-170\" y=\"-384\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"120\" y=\"688\" type=\"line\"/>\n      <point x=\"992\" y=\"688\" type=\"line\"/>\n      <point x=\"1008\" y=\"778\" type=\"line\"/>\n      <point x=\"136\" y=\"778\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"821\" y=\"0\" type=\"line\"/>\n      <point x=\"915\" y=\"0\" type=\"line\"/>\n      <point x=\"1052\" y=\"778\" type=\"line\"/>\n      <point x=\"958\" y=\"778\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fileS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fileSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241C\"/>\n  <outline>\n    <component base=\"F.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/filledR_ect.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"filledRect\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25AC\"/>\n  <note>\nfilledrect\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"410\" type=\"line\"/>\n      <point x=\"1200\" y=\"1010\" type=\"line\"/>\n      <point x=\"0\" y=\"1010\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/firsttonechinese.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"firsttonechinese\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C9\"/>\n  <outline>\n    <component base=\"macron\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fisheye.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fisheye\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C9\"/>\n  <note>\nuni25C9\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"485\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"736\" y=\"485\"/>\n      <point x=\"825\" y=\"574\"/>\n      <point x=\"825\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"825\" y=\"846\"/>\n      <point x=\"736\" y=\"935\"/>\n      <point x=\"600\" y=\"935\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"935\"/>\n      <point x=\"375\" y=\"846\"/>\n      <point x=\"375\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"574\"/>\n      <point x=\"464\" y=\"485\"/>\n    </contour>\n    <component base=\"whiteCircle\" yScale=\"-1\" yOffset=\"1420\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/five.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fivesuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/five.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0035\"/>\n  <outline>\n    <contour>\n      <point x=\"526\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"-20\"/>\n      <point x=\"1070\" y=\"185\"/>\n      <point x=\"1070\" y=\"532\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1070\" y=\"761\"/>\n      <point x=\"940\" y=\"896\"/>\n      <point x=\"721\" y=\"896\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"896\"/>\n      <point x=\"483\" y=\"871\"/>\n      <point x=\"354\" y=\"776\" type=\"curve\"/>\n      <point x=\"356\" y=\"680\" type=\"line\"/>\n      <point x=\"464\" y=\"762\"/>\n      <point x=\"580\" y=\"806\"/>\n      <point x=\"699\" y=\"806\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"806\"/>\n      <point x=\"969\" y=\"699\"/>\n      <point x=\"969\" y=\"519\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"969\" y=\"237\"/>\n      <point x=\"810\" y=\"70\"/>\n      <point x=\"541\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"311\" y=\"70\"/>\n      <point x=\"195\" y=\"192\"/>\n      <point x=\"232\" y=\"398\" type=\"curve\"/>\n      <point x=\"134\" y=\"398\" type=\"line\"/>\n      <point x=\"90\" y=\"135\"/>\n      <point x=\"234\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"270\" y=\"680\" type=\"line\"/>\n      <point x=\"356\" y=\"680\" type=\"line\"/>\n      <point x=\"389\" y=\"804\" type=\"line\"/>\n      <point x=\"496\" y=\"1420\" type=\"line\"/>\n      <point x=\"400\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"454\" y=\"1330\" type=\"line\"/>\n      <point x=\"1121\" y=\"1330\" type=\"line\"/>\n      <point x=\"1137\" y=\"1420\" type=\"line\"/>\n      <point x=\"452\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/five.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"five.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"fivesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveeighths.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"676\" y=\"687\" type=\"line\"/>\n      <point x=\"1157\" y=\"1030\" type=\"line\"/>\n      <point x=\"1113\" y=\"1106\" type=\"line\"/>\n      <point x=\"632\" y=\"763\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"137\" y=\"306\" type=\"line\"/>\n      <point x=\"614\" y=\"643\" type=\"line\"/>\n      <point x=\"570\" y=\"719\" type=\"line\"/>\n      <point x=\"93\" y=\"382\" type=\"line\"/>\n    </contour>\n    <component base=\"fivesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fiveeighths.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveeighths\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215D\"/>\n  <outline>\n    <contour>\n      <point x=\"137\" y=\"306\" type=\"line\"/>\n      <point x=\"1157\" y=\"1030\" type=\"line\"/>\n      <point x=\"1113\" y=\"1106\" type=\"line\"/>\n      <point x=\"93\" y=\"382\" type=\"line\"/>\n    </contour>\n    <component base=\"fivesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fiveinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fiveinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2085\"/>\n  <outline>\n    <component base=\"fivesuperior\" xOffset=\"-143\" yOffset=\"-813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fivesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fivesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2075\"/>\n  <outline>\n    <contour>\n      <point x=\"643\" y=\"793\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"810\" y=\"793\"/>\n      <point x=\"931\" y=\"878\"/>\n      <point x=\"931\" y=\"1024\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"931\" y=\"1130\"/>\n      <point x=\"863\" y=\"1190\"/>\n      <point x=\"738\" y=\"1190\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"666\" y=\"1190\"/>\n      <point x=\"592\" y=\"1175\"/>\n      <point x=\"526\" y=\"1118\" type=\"curve\"/>\n      <point x=\"505\" y=\"1046\" type=\"line\"/>\n      <point x=\"570\" y=\"1085\"/>\n      <point x=\"640\" y=\"1104\"/>\n      <point x=\"708\" y=\"1104\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"788\" y=\"1104\"/>\n      <point x=\"832\" y=\"1073\"/>\n      <point x=\"832\" y=\"1015\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"935\"/>\n      <point x=\"767\" y=\"885\"/>\n      <point x=\"660\" y=\"885\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"885\"/>\n      <point x=\"518\" y=\"914\"/>\n      <point x=\"531\" y=\"987\" type=\"curve\"/>\n      <point x=\"435\" y=\"987\" type=\"line\"/>\n      <point x=\"411\" y=\"855\"/>\n      <point x=\"500\" y=\"793\"/>\n    </contour>\n    <contour>\n      <point x=\"471\" y=\"1046\" type=\"line\"/>\n      <point x=\"505\" y=\"1046\" type=\"line\"/>\n      <point x=\"586\" y=\"1139\" type=\"line\"/>\n      <point x=\"644\" y=\"1420\" type=\"line\"/>\n      <point x=\"546\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"577\" y=\"1330\" type=\"line\"/>\n      <point x=\"947\" y=\"1330\" type=\"line\"/>\n      <point x=\"963\" y=\"1420\" type=\"line\"/>\n      <point x=\"595\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fl.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"FB02\"/>\n  <outline>\n    <contour>\n      <point x=\"-166\" y=\"-476\" type=\"line\"/>\n      <point x=\"-82\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"211\" y=\"-440\"/>\n      <point x=\"381\" y=\"-307\"/>\n      <point x=\"419\" y=\"64\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"513\" y=\"990\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"543\" y=\"1285\"/>\n      <point x=\"714\" y=\"1428\"/>\n      <point x=\"973\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"1428\"/>\n      <point x=\"1093\" y=\"1424\"/>\n      <point x=\"1175\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1212\" y=\"1500\" type=\"line\"/>\n      <point x=\"1141\" y=\"1514\"/>\n      <point x=\"1075\" y=\"1520\"/>\n      <point x=\"995\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"670\" y=\"1520\"/>\n      <point x=\"452\" y=\"1344\"/>\n      <point x=\"417\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"300\" y=\"-240\"/>\n      <point x=\"157\" y=\"-353\"/>\n      <point x=\"-86\" y=\"-376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-170\" y=\"-384\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"120\" y=\"688\" type=\"line\"/>\n      <point x=\"786\" y=\"688\" type=\"line\"/>\n      <point x=\"802\" y=\"778\" type=\"line\"/>\n      <point x=\"136\" y=\"778\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"852\" y=\"0\" type=\"line\"/>\n      <point x=\"948\" y=\"0\" type=\"line\"/>\n      <point x=\"1212\" y=\"1500\" type=\"line\"/>\n      <point x=\"1116\" y=\"1500\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/florin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"florin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0192\"/>\n  <outline>\n    <component base=\"f.salt\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/formF_eedC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"formFeedControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240C\"/>\n  <outline>\n    <component base=\"F.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"F.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/formF_eedC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"formFeedControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"579\" y=\"601\" type=\"line\"/>\n      <point x=\"621\" y=\"601\" type=\"line\"/>\n      <point x=\"1126\" y=\"1236\" type=\"line\"/>\n      <point x=\"1014\" y=\"1236\" type=\"line\"/>\n      <point x=\"659\" y=\"784\" type=\"line\"/>\n      <point x=\"541\" y=\"784\" type=\"line\"/>\n      <point x=\"186\" y=\"1236\" type=\"line\"/>\n      <point x=\"74\" y=\"1236\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"589\" y=\"180\" type=\"line\"/>\n      <point x=\"611\" y=\"180\" type=\"line\"/>\n      <point x=\"1126\" y=\"815\" type=\"line\"/>\n      <point x=\"1014\" y=\"815\" type=\"line\"/>\n      <point x=\"659\" y=\"363\" type=\"line\"/>\n      <point x=\"541\" y=\"363\" type=\"line\"/>\n      <point x=\"186\" y=\"815\" type=\"line\"/>\n      <point x=\"74\" y=\"815\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"555\" y=\"308\" type=\"line\"/>\n      <point x=\"645\" y=\"308\" type=\"line\"/>\n      <point x=\"645\" y=\"1235\" type=\"line\"/>\n      <point x=\"555\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/four.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"foursuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/four.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0034\"/>\n  <outline>\n    <contour>\n      <point x=\"62\" y=\"326\" type=\"line\"/>\n      <point x=\"159\" y=\"326\" type=\"line\"/>\n      <point x=\"516\" y=\"1340\" type=\"line\"/>\n      <point x=\"417\" y=\"1340\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"60\" y=\"326\" type=\"line\"/>\n      <point x=\"798\" y=\"326\" type=\"line\"/>\n      <point x=\"814\" y=\"416\" type=\"line\"/>\n      <point x=\"156\" y=\"416\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"852\" y=\"326\" type=\"line\"/>\n      <point x=\"1060\" y=\"326\" type=\"line\"/>\n      <point x=\"1076\" y=\"416\" type=\"line\"/>\n      <point x=\"868\" y=\"416\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"719\" y=\"0\" type=\"line\"/>\n      <point x=\"815\" y=\"0\" type=\"line\"/>\n      <point x=\"1065\" y=\"1420\" type=\"line\"/>\n      <point x=\"969\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/four.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"102\" y=\"159\" type=\"line\"/>\n      <point x=\"222\" y=\"159\" type=\"line\"/>\n      <point x=\"394\" y=\"603\" type=\"line\"/>\n      <point x=\"277\" y=\"603\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"159\" type=\"line\"/>\n      <point x=\"566\" y=\"159\" type=\"line\"/>\n      <point x=\"566\" y=\"257\" type=\"line\"/>\n      <point x=\"175\" y=\"257\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"643\" y=\"159\" type=\"line\"/>\n      <point x=\"774\" y=\"159\" type=\"line\"/>\n      <point x=\"774\" y=\"257\" type=\"line\"/>\n      <point x=\"643\" y=\"257\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"552\" y=\"0\" type=\"line\"/>\n      <point x=\"657\" y=\"0\" type=\"line\"/>\n      <point x=\"657\" y=\"639\" type=\"line\"/>\n      <point x=\"552\" y=\"639\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/four.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"four.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"foursuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fourinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fourinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2084\"/>\n  <outline>\n    <component base=\"foursuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/foursuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"foursuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2074\"/>\n  <outline>\n    <contour>\n      <point x=\"727\" y=\"802\" type=\"line\"/>\n      <point x=\"823\" y=\"802\" type=\"line\"/>\n      <point x=\"931\" y=\"1420\" type=\"line\"/>\n      <point x=\"835\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"417\" y=\"908\" type=\"line\"/>\n      <point x=\"755\" y=\"908\" type=\"line\"/>\n      <point x=\"771\" y=\"998\" type=\"line\"/>\n      <point x=\"496\" y=\"998\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"418\" y=\"908\" type=\"line\"/>\n      <point x=\"515\" y=\"908\" type=\"line\"/>\n      <point x=\"678\" y=\"1387\" type=\"line\"/>\n      <point x=\"581\" y=\"1387\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"831\" y=\"908\" type=\"line\"/>\n      <point x=\"916\" y=\"908\" type=\"line\"/>\n      <point x=\"932\" y=\"998\" type=\"line\"/>\n      <point x=\"847\" y=\"998\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fraction.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fraction\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2044\"/>\n  <outline>\n    <contour>\n      <point x=\"141\" y=\"306\" type=\"line\"/>\n      <point x=\"1161\" y=\"1030\" type=\"line\"/>\n      <point x=\"1117\" y=\"1106\" type=\"line\"/>\n      <point x=\"97\" y=\"382\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/franc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"franc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A3\"/>\n  <outline>\n    <contour>\n      <point x=\"6\" y=\"255\" type=\"line\"/>\n      <point x=\"630\" y=\"255\" type=\"line\"/>\n      <point x=\"646\" y=\"345\" type=\"line\"/>\n      <point x=\"22\" y=\"345\" type=\"line\"/>\n    </contour>\n    <component base=\"F\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fullB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2588\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fullB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"fullBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/g.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"g\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0067\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"41\" y=\"-480\" type=\"line\"/>\n      <point x=\"221\" y=\"-472\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"712\" y=\"-450\"/>\n      <point x=\"873\" y=\"-174\"/>\n      <point x=\"939\" y=\"201\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1093\" y=\"1070\" type=\"line\"/>\n      <point x=\"1085\" y=\"1070\" type=\"line\"/>\n      <point x=\"988\" y=\"1021\" type=\"line\"/>\n      <point x=\"838\" y=\"169\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"-96\"/>\n      <point x=\"646\" y=\"-361\"/>\n      <point x=\"241\" y=\"-379\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"-388\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1061\" y=\"978\" type=\"curve\"/>\n      <point x=\"1093\" y=\"1070\" type=\"line\"/>\n      <point x=\"1074\" y=\"1070\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"514\" y=\"1070\"/>\n      <point x=\"91\" y=\"758\"/>\n      <point x=\"91\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"91\" y=\"81\"/>\n      <point x=\"190\" y=\"-21\"/>\n      <point x=\"380\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"623\" y=\"-21\"/>\n      <point x=\"786\" y=\"113\"/>\n      <point x=\"861\" y=\"349\" type=\"curve\"/>\n      <point x=\"813\" y=\"301\" type=\"line\"/>\n      <point x=\"899\" y=\"301\" type=\"line\"/>\n      <point x=\"956\" y=\"693\" type=\"line\"/>\n      <point x=\"945\" y=\"777\" type=\"line\"/>\n      <point x=\"937\" y=\"737\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"350\"/>\n      <point x=\"667\" y=\"71\"/>\n      <point x=\"395\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"71\"/>\n      <point x=\"187\" y=\"147\"/>\n      <point x=\"187\" y=\"292\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"187\" y=\"670\"/>\n      <point x=\"570\" y=\"959\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gamma-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gamma-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0263\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"370\" y=\"0\" type=\"line\"/>\n      <point x=\"443\" y=\"26\" type=\"line\"/>\n      <point x=\"504\" y=\"0\" type=\"line\"/>\n      <point x=\"923\" y=\"242\"/>\n      <point x=\"1152\" y=\"604\"/>\n      <point x=\"1173\" y=\"1060\" type=\"curve\"/>\n      <point x=\"1077\" y=\"1060\" type=\"line\"/>\n      <point x=\"1059\" y=\"652\"/>\n      <point x=\"857\" y=\"332\"/>\n      <point x=\"477\" y=\"90\" type=\"curve\"/>\n      <point x=\"459\" y=\"90\" type=\"line\"/>\n      <point x=\"279\" y=\"1070\" type=\"line\"/>\n      <point x=\"182\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"352\" y=\"-482\" type=\"curve\"/>\n      <point x=\"364\" y=\"-392\" type=\"line\"/>\n      <point x=\"286\" y=\"-392\"/>\n      <point x=\"234\" y=\"-343\"/>\n      <point x=\"234\" y=\"-270\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"234\" y=\"-197\"/>\n      <point x=\"280\" y=\"-137\"/>\n      <point x=\"460\" y=\"16\" type=\"curve\"/>\n      <point x=\"369\" y=\"31\" type=\"line\"/>\n      <point x=\"233\" y=\"-54\"/>\n      <point x=\"136\" y=\"-151\"/>\n      <point x=\"136\" y=\"-282\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"136\" y=\"-402\"/>\n      <point x=\"222\" y=\"-482\"/>\n    </contour>\n    <contour>\n      <point x=\"352\" y=\"-482\" type=\"line\"/>\n      <point x=\"533\" y=\"-482\"/>\n      <point x=\"654\" y=\"-384\"/>\n      <point x=\"654\" y=\"-237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"-154\"/>\n      <point x=\"611\" y=\"-69\"/>\n      <point x=\"516\" y=\"31\" type=\"curve\"/>\n      <point x=\"422\" y=\"26\" type=\"line\"/>\n      <point x=\"521\" y=\"-107\"/>\n      <point x=\"556\" y=\"-175\"/>\n      <point x=\"556\" y=\"-232\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"-328\"/>\n      <point x=\"479\" y=\"-392\"/>\n      <point x=\"364\" y=\"-392\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gamma.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gamma\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B3\"/>\n  <anchor x=\"425\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"308\" y=\"-460\" type=\"curve\"/>\n      <point x=\"404\" y=\"-460\" type=\"line\"/>\n      <point x=\"514\" y=\"146\"/>\n      <point x=\"438\" y=\"718\"/>\n      <point x=\"189\" y=\"1080\" type=\"curve\"/>\n      <point x=\"101\" y=\"1025\" type=\"line\"/>\n      <point x=\"352\" y=\"652\"/>\n      <point x=\"412\" y=\"129\"/>\n    </contour>\n    <contour>\n      <point x=\"415\" y=\"1\" type=\"line\"/>\n      <point x=\"830\" y=\"139\"/>\n      <point x=\"1046\" y=\"459\"/>\n      <point x=\"1133\" y=\"1060\" type=\"curve\"/>\n      <point x=\"1037\" y=\"1060\" type=\"line\"/>\n      <point x=\"958\" y=\"518\"/>\n      <point x=\"762\" y=\"219\"/>\n      <point x=\"386\" y=\"95\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.67,0.95,0.38,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gbreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gbreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011F\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E7\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"011D\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0123\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"commaturnedabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gdotaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gdotaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0121\"/>\n  <outline>\n    <component base=\"g\"/>\n    <component base=\"dotaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ge-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ge-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0433\"/>\n  <anchor x=\"502\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"689\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"510\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"678\" y=\"-20\"/>\n      <point x=\"868\" y=\"33\"/>\n      <point x=\"991\" y=\"121\" type=\"curve\"/>\n      <point x=\"956\" y=\"199\" type=\"line\"/>\n      <point x=\"838\" y=\"127\"/>\n      <point x=\"690\" y=\"72\"/>\n      <point x=\"518\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"339\" y=\"72\"/>\n      <point x=\"246\" y=\"149\"/>\n      <point x=\"246\" y=\"248\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"528\"/>\n      <point x=\"1046\" y=\"433\"/>\n      <point x=\"1046\" y=\"819\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1046\" y=\"973\"/>\n      <point x=\"916\" y=\"1080\"/>\n      <point x=\"682\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"506\" y=\"1080\"/>\n      <point x=\"344\" y=\"1015\"/>\n      <point x=\"209\" y=\"929\" type=\"curve\"/>\n      <point x=\"252\" y=\"851\" type=\"line\"/>\n      <point x=\"376\" y=\"923\"/>\n      <point x=\"510\" y=\"988\"/>\n      <point x=\"675\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"988\"/>\n      <point x=\"948\" y=\"922\"/>\n      <point x=\"948\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"519\"/>\n      <point x=\"148\" y=\"612\"/>\n      <point x=\"148\" y=\"240\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"83\"/>\n      <point x=\"284\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ge-cy.loclS_R_B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ge-cy.loclSRB\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"323\" y=\"1248\" type=\"line\"/>\n      <point x=\"940\" y=\"1248\" type=\"line\"/>\n      <point x=\"956\" y=\"1338\" type=\"line\"/>\n      <point x=\"339\" y=\"1338\" type=\"line\"/>\n    </contour>\n    <component base=\"idotless\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/germandbls.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"germandbls\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00DF\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"805\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"720\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"945\" y=\"-20\"/>\n      <point x=\"1102\" y=\"115\"/>\n      <point x=\"1102\" y=\"307\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1102\" y=\"387\"/>\n      <point x=\"1087\" y=\"451\"/>\n      <point x=\"974\" y=\"584\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"906\" y=\"668\"/>\n      <point x=\"887\" y=\"712\"/>\n      <point x=\"887\" y=\"748\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"887\" y=\"810\"/>\n      <point x=\"908\" y=\"863\"/>\n      <point x=\"979\" y=\"946\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1095\" y=\"1082\"/>\n      <point x=\"1124\" y=\"1140\"/>\n      <point x=\"1124\" y=\"1238\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1124\" y=\"1419\"/>\n      <point x=\"1019\" y=\"1520\"/>\n      <point x=\"827\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"551\" y=\"1520\"/>\n      <point x=\"397\" y=\"1374\"/>\n      <point x=\"339\" y=\"1054\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"72\" y=\"-460\" type=\"line\"/>\n      <point x=\"166\" y=\"-460\" type=\"line\"/>\n      <point x=\"435\" y=\"1064\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"479\" y=\"1315\"/>\n      <point x=\"597\" y=\"1429\"/>\n      <point x=\"811\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"953\" y=\"1426\"/>\n      <point x=\"1028\" y=\"1355\"/>\n      <point x=\"1028\" y=\"1245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"1172\"/>\n      <point x=\"1009\" y=\"1120\"/>\n      <point x=\"905\" y=\"1005\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"818\" y=\"909\"/>\n      <point x=\"791\" y=\"837\"/>\n      <point x=\"791\" y=\"736\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"791\" y=\"678\"/>\n      <point x=\"819\" y=\"616\"/>\n      <point x=\"913\" y=\"504\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"997\" y=\"406\"/>\n      <point x=\"1006\" y=\"354\"/>\n      <point x=\"1006\" y=\"291\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1006\" y=\"155\"/>\n      <point x=\"903\" y=\"72\"/>\n      <point x=\"733\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"667\" y=\"72\"/>\n      <point x=\"586\" y=\"82\"/>\n      <point x=\"480\" y=\"115\" type=\"curve\"/>\n      <point x=\"453\" y=\"27\" type=\"line\"/>\n      <point x=\"530\" y=\"-3\"/>\n      <point x=\"614\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ghestroke-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ghestroke-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0493\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"515\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"-20\"/>\n      <point x=\"859\" y=\"33\"/>\n      <point x=\"991\" y=\"121\" type=\"curve\"/>\n      <point x=\"956\" y=\"199\" type=\"line\"/>\n      <point x=\"831\" y=\"127\"/>\n      <point x=\"680\" y=\"72\"/>\n      <point x=\"527\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"346\" y=\"72\"/>\n      <point x=\"268\" y=\"149\"/>\n      <point x=\"268\" y=\"229\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"268\" y=\"381\"/>\n      <point x=\"555\" y=\"467\"/>\n      <point x=\"730\" y=\"534\" type=\"curve\"/>\n      <point x=\"738\" y=\"553\" type=\"line\"/>\n      <point x=\"905\" y=\"618\"/>\n      <point x=\"1031\" y=\"701\"/>\n      <point x=\"1031\" y=\"839\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1031\" y=\"974\"/>\n      <point x=\"911\" y=\"1080\"/>\n      <point x=\"686\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"516\" y=\"1080\"/>\n      <point x=\"356\" y=\"1020\"/>\n      <point x=\"209\" y=\"929\" type=\"curve\"/>\n      <point x=\"252\" y=\"851\" type=\"line\"/>\n      <point x=\"392\" y=\"930\"/>\n      <point x=\"526\" y=\"988\"/>\n      <point x=\"679\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"838\" y=\"988\"/>\n      <point x=\"935\" y=\"925\"/>\n      <point x=\"935\" y=\"834\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"665\"/>\n      <point x=\"600\" y=\"585\"/>\n      <point x=\"406\" y=\"496\" type=\"curve\"/>\n      <point x=\"400\" y=\"475\" type=\"line\"/>\n      <point x=\"267\" y=\"412\"/>\n      <point x=\"172\" y=\"336\"/>\n      <point x=\"172\" y=\"218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"83\"/>\n      <point x=\"297\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"146\" y=\"470\" type=\"line\"/>\n      <point x=\"459\" y=\"489\" type=\"line\"/>\n      <point x=\"481\" y=\"473\" type=\"line\"/>\n      <point x=\"726\" y=\"558\" type=\"line\"/>\n      <point x=\"162\" y=\"558\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"471\" y=\"473\" type=\"line\"/>\n      <point x=\"1033\" y=\"473\" type=\"line\"/>\n      <point x=\"1049\" y=\"561\" type=\"line\"/>\n      <point x=\"728\" y=\"542\" type=\"line\"/>\n      <point x=\"716\" y=\"558\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gheupturn-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gheupturn-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0491\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"519\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"-20\"/>\n      <point x=\"871\" y=\"24\"/>\n      <point x=\"991\" y=\"111\" type=\"curve\"/>\n      <point x=\"956\" y=\"189\" type=\"line\"/>\n      <point x=\"842\" y=\"118\"/>\n      <point x=\"682\" y=\"72\"/>\n      <point x=\"531\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"335\" y=\"72\"/>\n      <point x=\"246\" y=\"149\"/>\n      <point x=\"246\" y=\"245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"246\" y=\"531\"/>\n      <point x=\"1046\" y=\"434\"/>\n      <point x=\"1046\" y=\"817\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1046\" y=\"973\"/>\n      <point x=\"913\" y=\"1080\"/>\n      <point x=\"690\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"533\" y=\"1080\"/>\n      <point x=\"405\" y=\"1027\"/>\n      <point x=\"311\" y=\"931\" type=\"curve\"/>\n      <point x=\"268\" y=\"952\" type=\"line\"/>\n      <point x=\"262\" y=\"813\" type=\"line\"/>\n      <point x=\"386\" y=\"923\"/>\n      <point x=\"510\" y=\"988\"/>\n      <point x=\"675\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"842\" y=\"988\"/>\n      <point x=\"948\" y=\"922\"/>\n      <point x=\"948\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"948\" y=\"518\"/>\n      <point x=\"148\" y=\"615\"/>\n      <point x=\"148\" y=\"237\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"148\" y=\"83\"/>\n      <point x=\"282\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"262\" y=\"813\" type=\"line\"/>\n      <point x=\"292\" y=\"920\" type=\"line\"/>\n      <point x=\"377\" y=\"1320\" type=\"line\"/>\n      <point x=\"279\" y=\"1320\" type=\"line\"/>\n      <point x=\"196\" y=\"853\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0453\"/>\n  <outline>\n    <component base=\"iacute\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/glottalstop.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstop\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0294\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"426\" y=\"0\" type=\"line\"/>\n      <point x=\"522\" y=\"0\" type=\"line\"/>\n      <point x=\"582\" y=\"338\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"608\" y=\"487\"/>\n      <point x=\"672\" y=\"590\"/>\n      <point x=\"795\" y=\"683\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"825\"/>\n      <point x=\"1106\" y=\"984\"/>\n      <point x=\"1106\" y=\"1199\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"1404\"/>\n      <point x=\"976\" y=\"1520\"/>\n      <point x=\"740\" y=\"1520\" type=\"curve\"/>\n      <point x=\"722\" y=\"1430\" type=\"line\"/>\n      <point x=\"908\" y=\"1430\"/>\n      <point x=\"1010\" y=\"1344\"/>\n      <point x=\"1010\" y=\"1192\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1010\" y=\"1021\"/>\n      <point x=\"910\" y=\"882\"/>\n      <point x=\"751\" y=\"764\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"648\"/>\n      <point x=\"518\" y=\"523\"/>\n      <point x=\"488\" y=\"352\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"340\" y=\"1278\" type=\"line\"/>\n      <point x=\"482\" y=\"1385\"/>\n      <point x=\"596\" y=\"1430\"/>\n      <point x=\"722\" y=\"1430\" type=\"curve\"/>\n      <point x=\"740\" y=\"1520\" type=\"line\"/>\n      <point x=\"583\" y=\"1520\"/>\n      <point x=\"450\" y=\"1467\"/>\n      <point x=\"292\" y=\"1341\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/glottalstopmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstopmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02C0\"/>\n  <outline>\n    <contour>\n      <point x=\"577\" y=\"790\" type=\"line\"/>\n      <point x=\"673\" y=\"790\" type=\"line\"/>\n      <point x=\"695\" y=\"915\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"960\"/>\n      <point x=\"733\" y=\"1000\"/>\n      <point x=\"815\" y=\"1051\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"953\" y=\"1138\"/>\n      <point x=\"1025\" y=\"1239\"/>\n      <point x=\"1025\" y=\"1346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1025\" y=\"1492\"/>\n      <point x=\"938\" y=\"1568\"/>\n      <point x=\"772\" y=\"1568\" type=\"curve\"/>\n      <point x=\"759\" y=\"1484\" type=\"line\"/>\n      <point x=\"871\" y=\"1484\"/>\n      <point x=\"929\" y=\"1437\"/>\n      <point x=\"929\" y=\"1346\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"929\" y=\"1265\"/>\n      <point x=\"873\" y=\"1188\"/>\n      <point x=\"765\" y=\"1121\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"652\" y=\"1050\"/>\n      <point x=\"611\" y=\"986\"/>\n      <point x=\"599\" y=\"915\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"478\" y=\"1398\" type=\"line\"/>\n      <point x=\"572\" y=\"1455\"/>\n      <point x=\"668\" y=\"1484\"/>\n      <point x=\"759\" y=\"1484\" type=\"curve\"/>\n      <point x=\"772\" y=\"1568\" type=\"line\"/>\n      <point x=\"653\" y=\"1568\"/>\n      <point x=\"541\" y=\"1536\"/>\n      <point x=\"445\" y=\"1476\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/glottalstopreversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"glottalstopreversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0295\"/>\n  <anchor x=\"770\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"493\" y=\"0\" type=\"line\"/>\n      <point x=\"587\" y=\"0\" type=\"line\"/>\n      <point x=\"649\" y=\"352\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"674\" y=\"493\"/>\n      <point x=\"652\" y=\"611\"/>\n      <point x=\"528\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"849\"/>\n      <point x=\"398\" y=\"929\"/>\n      <point x=\"398\" y=\"1033\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"398\" y=\"1273\"/>\n      <point x=\"547\" y=\"1430\"/>\n      <point x=\"796\" y=\"1430\" type=\"curve\"/>\n      <point x=\"810\" y=\"1520\" type=\"line\"/>\n      <point x=\"503\" y=\"1520\"/>\n      <point x=\"306\" y=\"1330\"/>\n      <point x=\"306\" y=\"1029\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"898\"/>\n      <point x=\"362\" y=\"795\"/>\n      <point x=\"467\" y=\"678\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"571\"/>\n      <point x=\"576\" y=\"466\"/>\n      <point x=\"553\" y=\"338\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1121\" y=\"1277\" type=\"curve\"/>\n      <point x=\"1193\" y=\"1342\" type=\"line\"/>\n      <point x=\"1081\" y=\"1467\"/>\n      <point x=\"967\" y=\"1520\"/>\n      <point x=\"810\" y=\"1520\" type=\"curve\"/>\n      <point x=\"796\" y=\"1430\" type=\"line\"/>\n      <point x=\"921\" y=\"1430\"/>\n      <point x=\"1018\" y=\"1385\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/grave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"grave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0060\"/>\n  <outline>\n    <contour>\n      <point x=\"770\" y=\"1068\" type=\"line\"/>\n      <point x=\"876\" y=\"1068\" type=\"line\"/>\n      <point x=\"609\" y=\"1628\" type=\"line\"/>\n      <point x=\"505\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gravecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravecomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"_viet_top\"/>\n  <anchor x=\"818\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"731\" y=\"1580\" type=\"line\"/>\n      <point x=\"837\" y=\"1580\" type=\"line\"/>\n      <point x=\"710\" y=\"1830\" type=\"line\"/>\n      <point x=\"594\" y=\"1830\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gravecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravecomb\" format=\"2\">\n  <unicode hex=\"0300\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"692\" y=\"1060\" name=\"_viet_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"671\" y=\"1248\" type=\"line\"/>\n      <point x=\"777\" y=\"1248\" type=\"line\"/>\n      <point x=\"635\" y=\"1628\" type=\"line\"/>\n      <point x=\"514\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gravetonecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gravetonecomb\" format=\"2\">\n  <unicode hex=\"0340\"/>\n  <outline>\n    <component base=\"gravecomb\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"213\" y=\"25\" type=\"line\"/>\n      <point x=\"987\" y=\"698\" type=\"line\"/>\n      <point x=\"991\" y=\"720\" type=\"line\"/>\n      <point x=\"453\" y=\"1403\" type=\"line\"/>\n      <point x=\"377\" y=\"1341\" type=\"line\"/>\n      <point x=\"867\" y=\"725\" type=\"line\"/>\n      <point x=\"863\" y=\"707\" type=\"line\"/>\n      <point x=\"150\" y=\"96\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"34\" y=\"214\" type=\"line\"/>\n      <point x=\"1195\" y=\"673\" type=\"line\"/>\n      <point x=\"1207\" y=\"745\" type=\"line\"/>\n      <point x=\"209\" y=\"1204\" type=\"line\"/>\n      <point x=\"190\" y=\"1100\" type=\"line\"/>\n      <point x=\"1045\" y=\"718\" type=\"line\"/>\n      <point x=\"1043\" y=\"710\" type=\"line\"/>\n      <point x=\"54\" y=\"330\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003E\"/>\n  <outline>\n    <contour>\n      <point x=\"114\" y=\"214\" type=\"line\"/>\n      <point x=\"1101\" y=\"653\" type=\"line\"/>\n      <point x=\"1121\" y=\"765\" type=\"line\"/>\n      <point x=\"289\" y=\"1204\" type=\"line\"/>\n      <point x=\"271\" y=\"1105\" type=\"line\"/>\n      <point x=\"1025\" y=\"718\" type=\"line\"/>\n      <point x=\"1023\" y=\"710\" type=\"line\"/>\n      <point x=\"134\" y=\"325\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"499\" y=\"490\" type=\"line\"/>\n      <point x=\"2015\" y=\"902\" type=\"line\"/>\n      <point x=\"2035\" y=\"1016\" type=\"line\"/>\n      <point x=\"666\" y=\"1435\" type=\"line\"/>\n      <point x=\"648\" y=\"1336\" type=\"line\"/>\n      <point x=\"1900\" y=\"968\" type=\"line\"/>\n      <point x=\"1898\" y=\"950\" type=\"line\"/>\n      <point x=\"516\" y=\"589\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"448\" y=\"194\" type=\"line\"/>\n      <point x=\"1890\" y=\"194\" type=\"line\"/>\n      <point x=\"1906\" y=\"284\" type=\"line\"/>\n      <point x=\"464\" y=\"284\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-40\" y=\"414\" type=\"line\"/>\n      <point x=\"774\" y=\"414\" type=\"line\"/>\n      <point x=\"890\" y=\"504\" type=\"line\"/>\n      <point x=\"-24\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"48\" y=\"914\" type=\"line\"/>\n      <point x=\"962\" y=\"914\" type=\"line\"/>\n      <point x=\"878\" y=\"1004\" type=\"line\"/>\n      <point x=\"64\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater.alt\"/>\n    <component base=\"equal_middle.seq\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"153\" y=\"16\" type=\"line\"/>\n      <point x=\"705\" y=\"505\" type=\"line\"/>\n      <point x=\"568\" y=\"505\" type=\"line\"/>\n      <point x=\"90\" y=\"87\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"571\" y=\"415\" type=\"line\"/>\n      <point x=\"1200\" y=\"415\" type=\"line\"/>\n      <point x=\"1216\" y=\"505\" type=\"line\"/>\n      <point x=\"587\" y=\"505\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"655\" y=\"913\" type=\"line\"/>\n      <point x=\"777\" y=\"913\" type=\"line\"/>\n      <point x=\"393\" y=\"1394\" type=\"line\"/>\n      <point x=\"317\" y=\"1332\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"659\" y=\"913\" type=\"line\"/>\n      <point x=\"1288\" y=\"915\" type=\"line\"/>\n      <point x=\"1304\" y=\"1005\" type=\"line\"/>\n      <point x=\"675\" y=\"1005\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"224\" y=\"214\" type=\"line\"/>\n      <point x=\"1261\" y=\"653\" type=\"line\"/>\n      <point x=\"1281\" y=\"765\" type=\"line\"/>\n      <point x=\"399\" y=\"1204\" type=\"line\"/>\n      <point x=\"381\" y=\"1105\" type=\"line\"/>\n      <point x=\"1185\" y=\"718\" type=\"line\"/>\n      <point x=\"1183\" y=\"710\" type=\"line\"/>\n      <point x=\"244\" y=\"325\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1144\" y=\"214\" type=\"line\"/>\n      <point x=\"2181\" y=\"653\" type=\"line\"/>\n      <point x=\"2201\" y=\"765\" type=\"line\"/>\n      <point x=\"1319\" y=\"1204\" type=\"line\"/>\n      <point x=\"1301\" y=\"1105\" type=\"line\"/>\n      <point x=\"2105\" y=\"718\" type=\"line\"/>\n      <point x=\"2103\" y=\"710\" type=\"line\"/>\n      <point x=\"1164\" y=\"325\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"1140\" yOffset=\"-3\"/>\n    <component base=\"greater\" xOffset=\"26\"/>\n    <component base=\"equal\" xOffset=\"2344\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-40\" y=\"414\" type=\"line\"/>\n      <point x=\"1161\" y=\"414\" type=\"line\"/>\n      <point x=\"1277\" y=\"504\" type=\"line\"/>\n      <point x=\"-24\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"48\" y=\"914\" type=\"line\"/>\n      <point x=\"1349\" y=\"914\" type=\"line\"/>\n      <point x=\"1265\" y=\"1004\" type=\"line\"/>\n      <point x=\"64\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"576\"/>\n    <component base=\"greater.alt\" xOffset=\"1216\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1134\" y=\"15\" type=\"line\"/>\n      <point x=\"1688\" y=\"504\" type=\"line\"/>\n      <point x=\"1551\" y=\"504\" type=\"line\"/>\n      <point x=\"1071\" y=\"86\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-70\" y=\"414\" type=\"line\"/>\n      <point x=\"945\" y=\"414\" type=\"line\"/>\n      <point x=\"1011\" y=\"504\" type=\"line\"/>\n      <point x=\"-54\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"912\" type=\"line\"/>\n      <point x=\"1083\" y=\"914\" type=\"line\"/>\n      <point x=\"1049\" y=\"1004\" type=\"line\"/>\n      <point x=\"34\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1552\" y=\"414\" type=\"line\"/>\n      <point x=\"2429\" y=\"414\" type=\"line\"/>\n      <point x=\"2445\" y=\"504\" type=\"line\"/>\n      <point x=\"1570\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1636\" y=\"912\" type=\"line\"/>\n      <point x=\"1758\" y=\"912\" type=\"line\"/>\n      <point x=\"1374\" y=\"1393\" type=\"line\"/>\n      <point x=\"1298\" y=\"1331\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1640\" y=\"912\" type=\"line\"/>\n      <point x=\"2517\" y=\"914\" type=\"line\"/>\n      <point x=\"2533\" y=\"1004\" type=\"line\"/>\n      <point x=\"1656\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"331\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"951\" y=\"15\" type=\"line\"/>\n      <point x=\"1505\" y=\"504\" type=\"line\"/>\n      <point x=\"1368\" y=\"504\" type=\"line\"/>\n      <point x=\"888\" y=\"86\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1369\" y=\"414\" type=\"line\"/>\n      <point x=\"2399\" y=\"414\" type=\"line\"/>\n      <point x=\"2415\" y=\"504\" type=\"line\"/>\n      <point x=\"1387\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1453\" y=\"912\" type=\"line\"/>\n      <point x=\"1575\" y=\"912\" type=\"line\"/>\n      <point x=\"1191\" y=\"1393\" type=\"line\"/>\n      <point x=\"1115\" y=\"1331\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1457\" y=\"912\" type=\"line\"/>\n      <point x=\"2487\" y=\"914\" type=\"line\"/>\n      <point x=\"2503\" y=\"1004\" type=\"line\"/>\n      <point x=\"1473\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"147\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2262\"/>\n    <component base=\"greater\" xOffset=\"126\"/>\n    <component base=\"greater\" xOffset=\"1194\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"4\" y=\"664\" type=\"line\"/>\n      <point x=\"1481\" y=\"664\" type=\"line\"/>\n      <point x=\"1497\" y=\"754\" type=\"line\"/>\n      <point x=\"20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"580\"/>\n    <component base=\"greater.alt\" xOffset=\"1220\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-26\" y=\"664\" type=\"line\"/>\n      <point x=\"1127\" y=\"664\" type=\"line\"/>\n      <point x=\"1143\" y=\"754\" type=\"line\"/>\n      <point x=\"-10\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1734\" y=\"664\" type=\"line\"/>\n      <point x=\"2473\" y=\"664\" type=\"line\"/>\n      <point x=\"2489\" y=\"754\" type=\"line\"/>\n      <point x=\"1750\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"231\"/>\n    <component base=\"greater.alt\" xOffset=\"822\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_greater_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1687\" y=\"664\" type=\"line\"/>\n      <point x=\"2443\" y=\"664\" type=\"line\"/>\n      <point x=\"2459\" y=\"754\" type=\"line\"/>\n      <point x=\"1703\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"145\" yOffset=\"-10\"/>\n    <component base=\"greater.alt\" xOffset=\"785\" yOffset=\"-10\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"4\" y=\"664\" type=\"line\"/>\n      <point x=\"1100\" y=\"664\" type=\"line\"/>\n      <point x=\"1116\" y=\"754\" type=\"line\"/>\n      <point x=\"20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"176\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hyphen_middle.seq\"/>\n    <component base=\"greater.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greater_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"823\" y=\"664\" type=\"line\"/>\n      <point x=\"1243\" y=\"664\" type=\"line\"/>\n      <point x=\"1259\" y=\"754\" type=\"line\"/>\n      <point x=\"839\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"greater.alt\" xOffset=\"-60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greaterequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"greaterequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2265\"/>\n  <outline>\n    <contour>\n      <point x=\"118\" y=\"364\" type=\"line\"/>\n      <point x=\"1087\" y=\"703\" type=\"line\"/>\n      <point x=\"1107\" y=\"815\" type=\"line\"/>\n      <point x=\"257\" y=\"1154\" type=\"line\"/>\n      <point x=\"241\" y=\"1059\" type=\"line\"/>\n      <point x=\"1011\" y=\"770\" type=\"line\"/>\n      <point x=\"1010\" y=\"762\" type=\"line\"/>\n      <point x=\"135\" y=\"459\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"81\" y=\"151\" type=\"line\"/>\n      <point x=\"990\" y=\"151\" type=\"line\"/>\n      <point x=\"1005\" y=\"241\" type=\"line\"/>\n      <point x=\"96\" y=\"241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/groupS_eparatorC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"groupSeparatorControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"241D\"/>\n  <outline>\n    <component base=\"G.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"S.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>G.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>S.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gstroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"gstroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01E5\"/>\n  <outline>\n    <contour>\n      <point x=\"-89\" y=\"-223\" type=\"line\"/>\n      <point x=\"1023\" y=\"-223\" type=\"line\"/>\n      <point x=\"1039\" y=\"-135\" type=\"line\"/>\n      <point x=\"-73\" y=\"-135\" type=\"line\"/>\n    </contour>\n    <component base=\"g\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guarani.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guarani\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B2\"/>\n  <outline>\n    <contour>\n      <point x=\"443\" y=\"-320\" type=\"line\"/>\n      <point x=\"539\" y=\"-320\" type=\"line\"/>\n      <point x=\"599\" y=\"19\" type=\"line\"/>\n      <point x=\"605\" y=\"54\" type=\"line\"/>\n      <point x=\"701\" y=\"603\" type=\"line\"/>\n      <point x=\"706\" y=\"629\" type=\"line\"/>\n      <point x=\"902\" y=\"1740\" type=\"line\"/>\n      <point x=\"806\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <component base=\"G\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guillemetleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guillemetleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AB\"/>\n  <outline>\n    <component base=\"guilsinglleft\" xOffset=\"-230\"/>\n    <component base=\"guilsinglleft\" xOffset=\"265\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guillemetright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guillemetright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BB\"/>\n  <guideline x=\"500\" y=\"519\" angle=\"0\"/>\n  <outline>\n    <component base=\"guilsinglright\" xOffset=\"-265\"/>\n    <component base=\"guilsinglright\" xOffset=\"230\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guilsinglleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guilsinglleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2039\"/>\n  <outline>\n    <contour>\n      <point x=\"691\" y=\"28\" type=\"line\"/>\n      <point x=\"762\" y=\"90\" type=\"line\"/>\n      <point x=\"421\" y=\"515\" type=\"line\"/>\n      <point x=\"424\" y=\"533\" type=\"line\"/>\n      <point x=\"862\" y=\"939\" type=\"line\"/>\n      <point x=\"802\" y=\"1013\" type=\"line\"/>\n      <point x=\"302\" y=\"540\" type=\"line\"/>\n      <point x=\"298\" y=\"518\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guilsinglright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"guilsinglright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203A\"/>\n  <outline>\n    <contour>\n      <point x=\"395\" y=\"28\" type=\"line\"/>\n      <point x=\"895\" y=\"501\" type=\"line\"/>\n      <point x=\"899\" y=\"523\" type=\"line\"/>\n      <point x=\"506\" y=\"1013\" type=\"line\"/>\n      <point x=\"435\" y=\"951\" type=\"line\"/>\n      <point x=\"776\" y=\"526\" type=\"line\"/>\n      <point x=\"773\" y=\"508\" type=\"line\"/>\n      <point x=\"335\" y=\"102\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/h.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"h.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"689\" y=\"784\" name=\"center\"/>\n  <anchor x=\"398\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"446\" y=\"1420\" type=\"line\"/>\n      <point x=\"350\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"818\" y=\"0\" type=\"line\"/>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1037\" y=\"697\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"948\"/>\n      <point x=\"984\" y=\"1080\"/>\n      <point x=\"747\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1080\"/>\n      <point x=\"400\" y=\"960\"/>\n      <point x=\"341\" y=\"749\" type=\"curve\"/>\n      <point x=\"302\" y=\"749\" type=\"line\"/>\n      <point x=\"251\" y=\"320\" type=\"line\"/>\n      <point x=\"332\" y=\"819\"/>\n      <point x=\"513\" y=\"988\"/>\n      <point x=\"727\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"988\"/>\n      <point x=\"975\" y=\"893\"/>\n      <point x=\"942\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/h.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"h\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0068\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"689\" y=\"784\" name=\"center\"/>\n  <anchor x=\"385\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"818\" y=\"0\" type=\"line\"/>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1037\" y=\"697\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"948\"/>\n      <point x=\"984\" y=\"1080\"/>\n      <point x=\"747\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1080\"/>\n      <point x=\"400\" y=\"960\"/>\n      <point x=\"341\" y=\"749\" type=\"curve\"/>\n      <point x=\"302\" y=\"749\" type=\"line\"/>\n      <point x=\"251\" y=\"320\" type=\"line\"/>\n      <point x=\"332\" y=\"819\"/>\n      <point x=\"513\" y=\"988\"/>\n      <point x=\"727\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"988\"/>\n      <point x=\"975\" y=\"893\"/>\n      <point x=\"942\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"96\" y=\"0\" type=\"line\"/>\n      <point x=\"192\" y=\"0\" type=\"line\"/>\n      <point x=\"413\" y=\"1247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"1431\"/>\n      <point x=\"389\" y=\"1521\"/>\n      <point x=\"216\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"175\" y=\"1521\"/>\n      <point x=\"134\" y=\"1517\"/>\n      <point x=\"94\" y=\"1505\" type=\"curve\"/>\n      <point x=\"105\" y=\"1418\" type=\"line\"/>\n      <point x=\"141\" y=\"1426\"/>\n      <point x=\"178\" y=\"1429\"/>\n      <point x=\"214\" y=\"1429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"1429\"/>\n      <point x=\"337\" y=\"1367\"/>\n      <point x=\"314\" y=\"1237\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ha-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ha-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0445\"/>\n  <outline>\n    <component base=\"x\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hadescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04B3\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"158\" y=\"-18\" type=\"line\"/>\n      <point x=\"621\" y=\"483\" type=\"line\"/>\n      <point x=\"1101\" y=\"987\" type=\"line\"/>\n      <point x=\"1028\" y=\"1062\" type=\"line\"/>\n      <point x=\"586\" y=\"565\" type=\"line\"/>\n      <point x=\"88\" y=\"59\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"932\" y=\"-324\" type=\"line\"/>\n      <point x=\"979\" y=\"-192\"/>\n      <point x=\"1027\" y=\"-11\"/>\n      <point x=\"1034\" y=\"90\" type=\"curve\"/>\n      <point x=\"996\" y=\"116\" type=\"line\"/>\n      <point x=\"936\" y=\"83\" type=\"line\"/>\n      <point x=\"934\" y=\"68\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"921\" y=\"-29\"/>\n      <point x=\"890\" y=\"-160\"/>\n      <point x=\"837\" y=\"-303\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"819\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"877\" y=\"-20\"/>\n      <point x=\"928\" y=\"-11\"/>\n      <point x=\"982\" y=\"10\" type=\"curve\"/>\n      <point x=\"1011\" y=\"73\" type=\"line\"/>\n      <point x=\"996\" y=\"116\" type=\"line\"/>\n      <point x=\"936\" y=\"87\"/>\n      <point x=\"885\" y=\"72\"/>\n      <point x=\"828\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"725\" y=\"72\"/>\n      <point x=\"652\" y=\"123\"/>\n      <point x=\"648\" y=\"250\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"628\" y=\"831\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"622\" y=\"1009\"/>\n      <point x=\"515\" y=\"1080\"/>\n      <point x=\"370\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"312\" y=\"1080\"/>\n      <point x=\"254\" y=\"1068\"/>\n      <point x=\"173\" y=\"1039\" type=\"curve\"/>\n      <point x=\"200\" y=\"952\" type=\"line\"/>\n      <point x=\"257\" y=\"975\"/>\n      <point x=\"304\" y=\"988\"/>\n      <point x=\"361\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"988\"/>\n      <point x=\"531\" y=\"937\"/>\n      <point x=\"535\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"229\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"51\"/>\n      <point x=\"665\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hardsign-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hardsign-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"590\" y=\"-20\" type=\"curve\"/>\n      <point x=\"888\" y=\"-20\"/>\n      <point x=\"1075\" y=\"213\"/>\n      <point x=\"1075\" y=\"435\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1075\" y=\"594\"/>\n      <point x=\"989\" y=\"753\"/>\n      <point x=\"736\" y=\"753\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"753\"/>\n      <point x=\"497\" y=\"710\"/>\n      <point x=\"399\" y=\"653\" type=\"curve\"/>\n      <point x=\"373\" y=\"672\" type=\"line\"/>\n      <point x=\"323\" y=\"536\" type=\"line\"/>\n      <point x=\"412\" y=\"603\"/>\n      <point x=\"565\" y=\"662\"/>\n      <point x=\"713\" y=\"662\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"662\"/>\n      <point x=\"979\" y=\"603\"/>\n      <point x=\"979\" y=\"432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"264\"/>\n      <point x=\"844\" y=\"72\"/>\n      <point x=\"590\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"72\"/>\n      <point x=\"314\" y=\"177\"/>\n      <point x=\"314\" y=\"317\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"385\"/>\n      <point x=\"331\" y=\"493\"/>\n      <point x=\"383\" y=\"596\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"453\" y=\"734\"/>\n      <point x=\"595\" y=\"882\"/>\n      <point x=\"688\" y=\"998\" type=\"curve\"/>\n      <point x=\"655\" y=\"1060\" type=\"line\"/>\n      <point x=\"95\" y=\"1060\" type=\"line\"/>\n      <point x=\"79\" y=\"976\" type=\"line\"/>\n      <point x=\"630\" y=\"973\" type=\"line\"/>\n      <point x=\"575\" y=\"988\" type=\"line\"/>\n      <point x=\"318\" y=\"723\"/>\n      <point x=\"218\" y=\"486\"/>\n      <point x=\"218\" y=\"306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"218\" y=\"110\"/>\n      <point x=\"337\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0127\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"689\" y=\"784\" name=\"center\"/>\n  <anchor x=\"412\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"818\" y=\"0\" type=\"line\"/>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1037\" y=\"697\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"948\"/>\n      <point x=\"984\" y=\"1080\"/>\n      <point x=\"747\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1080\"/>\n      <point x=\"400\" y=\"960\"/>\n      <point x=\"341\" y=\"749\" type=\"curve\"/>\n      <point x=\"302\" y=\"749\" type=\"line\"/>\n      <point x=\"251\" y=\"320\" type=\"line\"/>\n      <point x=\"332\" y=\"819\"/>\n      <point x=\"513\" y=\"988\"/>\n      <point x=\"727\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"988\"/>\n      <point x=\"975\" y=\"893\"/>\n      <point x=\"942\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"460\" y=\"1500\" type=\"line\"/>\n      <point x=\"364\" y=\"1500\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"151\" y=\"1260\" type=\"line\"/>\n      <point x=\"867\" y=\"1260\" type=\"line\"/>\n      <point x=\"883\" y=\"1350\" type=\"line\"/>\n      <point x=\"167\" y=\"1350\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"021F\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"caroncomb.case\" xOffset=\"-372\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0125\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"circumflexcomb.case\" xOffset=\"-372\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E25\"/>\n  <outline>\n    <component base=\"h\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heartB_lackS_uit.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heartBlackSuit\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2665\"/>\n  <guideline x=\"637\" y=\"60\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1280\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"1260\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"80\" angle=\"0\"/>\n  <guideline x=\"637\" y=\"40\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"510\" y=\"60\" type=\"curve\"/>\n      <point x=\"901\" y=\"266\"/>\n      <point x=\"1192\" y=\"677\"/>\n      <point x=\"1192\" y=\"1025\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1192\" y=\"1173\"/>\n      <point x=\"1119\" y=\"1260\"/>\n      <point x=\"996\" y=\"1260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"1260\"/>\n      <point x=\"735\" y=\"1152\"/>\n      <point x=\"680\" y=\"969\" type=\"curve\"/>\n      <point x=\"674\" y=\"969\" type=\"line\"/>\n      <point x=\"684\" y=\"1152\"/>\n      <point x=\"604\" y=\"1260\"/>\n      <point x=\"456\" y=\"1260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"262\" y=\"1260\"/>\n      <point x=\"147\" y=\"1072\"/>\n      <point x=\"147\" y=\"755\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"147\" y=\"481\"/>\n      <point x=\"282\" y=\"214\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyH_orizontalF_ill.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"heavyHorizontalFill\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1FB97\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"873\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"heavyHorizontalFill.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"710\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyleftpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyleftpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2770\"/>\n  <outline>\n    <contour>\n      <point x=\"557\" y=\"0\" type=\"line\"/>\n      <point x=\"773\" y=\"0\" type=\"line\"/>\n      <point x=\"602\" y=\"701\" type=\"line\"/>\n      <point x=\"606\" y=\"719\" type=\"line\"/>\n      <point x=\"1023\" y=\"1420\" type=\"line\"/>\n      <point x=\"792\" y=\"1420\" type=\"line\"/>\n      <point x=\"380\" y=\"719\" type=\"line\"/>\n      <point x=\"376\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyleftpointinganglequotationmarkornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276E\"/>\n  <outline>\n    <contour>\n      <point x=\"677\" y=\"0\" type=\"line\"/>\n      <point x=\"923\" y=\"0\" type=\"line\"/>\n      <point x=\"482\" y=\"701\" type=\"line\"/>\n      <point x=\"486\" y=\"719\" type=\"line\"/>\n      <point x=\"1173\" y=\"1420\" type=\"line\"/>\n      <point x=\"897\" y=\"1420\" type=\"line\"/>\n      <point x=\"230\" y=\"719\" type=\"line\"/>\n      <point x=\"226\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyrightpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyrightpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2771\"/>\n  <outline>\n    <contour>\n      <point x=\"252\" y=\"0\" type=\"line\"/>\n      <point x=\"483\" y=\"0\" type=\"line\"/>\n      <point x=\"895\" y=\"701\" type=\"line\"/>\n      <point x=\"899\" y=\"719\" type=\"line\"/>\n      <point x=\"718\" y=\"1420\" type=\"line\"/>\n      <point x=\"502\" y=\"1420\" type=\"line\"/>\n      <point x=\"673\" y=\"719\" type=\"line\"/>\n      <point x=\"669\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"heavyrightpointinganglequotationmarkornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276F\"/>\n  <outline>\n    <contour>\n      <point x=\"102\" y=\"0\" type=\"line\"/>\n      <point x=\"378\" y=\"0\" type=\"line\"/>\n      <point x=\"1045\" y=\"701\" type=\"line\"/>\n      <point x=\"1049\" y=\"719\" type=\"line\"/>\n      <point x=\"598\" y=\"1420\" type=\"line\"/>\n      <point x=\"352\" y=\"1420\" type=\"line\"/>\n      <point x=\"793\" y=\"719\" type=\"line\"/>\n      <point x=\"789\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hookabovecomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hookabovecomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"757\" y=\"1420\" name=\"_viet_top\"/>\n  <anchor x=\"831\" y=\"1840\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"727\" y=\"1571\" type=\"curve\"/>\n      <point x=\"763\" y=\"1487\" type=\"line\"/>\n      <point x=\"957\" y=\"1564\"/>\n      <point x=\"998\" y=\"1653\"/>\n      <point x=\"998\" y=\"1741\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"998\" y=\"1848\"/>\n      <point x=\"921\" y=\"1912\"/>\n      <point x=\"790\" y=\"1912\" type=\"curve\"/>\n      <point x=\"782\" y=\"1823\" type=\"line\"/>\n      <point x=\"855\" y=\"1823\"/>\n      <point x=\"897\" y=\"1791\"/>\n      <point x=\"897\" y=\"1736\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"897\" y=\"1684\"/>\n      <point x=\"862\" y=\"1628\"/>\n    </contour>\n    <contour>\n      <point x=\"635\" y=\"1778\" type=\"line\"/>\n      <point x=\"677\" y=\"1805\"/>\n      <point x=\"728\" y=\"1823\"/>\n      <point x=\"782\" y=\"1823\" type=\"curve\"/>\n      <point x=\"790\" y=\"1912\" type=\"line\"/>\n      <point x=\"708\" y=\"1912\"/>\n      <point x=\"647\" y=\"1892\"/>\n      <point x=\"597\" y=\"1857\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hookabovecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hookabovecomb\" format=\"2\">\n  <unicode hex=\"0309\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"733\" y=\"1100\" name=\"_viet_top\"/>\n  <anchor x=\"791\" y=\"1618\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"682\" y=\"1303\" type=\"curve\"/>\n      <point x=\"744\" y=\"1235\" type=\"line\"/>\n      <point x=\"877\" y=\"1325\"/>\n      <point x=\"947\" y=\"1422\"/>\n      <point x=\"947\" y=\"1518\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"947\" y=\"1627\"/>\n      <point x=\"884\" y=\"1692\"/>\n      <point x=\"780\" y=\"1692\" type=\"curve\"/>\n      <point x=\"755\" y=\"1602\" type=\"line\"/>\n      <point x=\"811\" y=\"1602\"/>\n      <point x=\"846\" y=\"1571\"/>\n      <point x=\"846\" y=\"1516\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"846\" y=\"1447\"/>\n      <point x=\"790\" y=\"1374\"/>\n    </contour>\n    <contour>\n      <point x=\"599\" y=\"1551\" type=\"line\"/>\n      <point x=\"646\" y=\"1582\"/>\n      <point x=\"705\" y=\"1602\"/>\n      <point x=\"755\" y=\"1602\" type=\"curve\"/>\n      <point x=\"780\" y=\"1692\" type=\"line\"/>\n      <point x=\"695\" y=\"1692\"/>\n      <point x=\"614\" y=\"1668\"/>\n      <point x=\"564\" y=\"1629\" type=\"curve\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalB_lackH_exagon.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalBlackHexagon\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B23\"/>\n  <note>\nuni2B23\n</note>\n  <outline>\n    <contour>\n      <point x=\"300\" y=\"190\" type=\"line\"/>\n      <point x=\"900\" y=\"190\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"900\" y=\"1230\" type=\"line\"/>\n      <point x=\"300\" y=\"1230\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalF_illS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalFillSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25A4\"/>\n  <note>\nuni25A4\n</note>\n  <outline>\n    <contour>\n      <point x=\"149\" y=\"815\" type=\"line\"/>\n      <point x=\"1051\" y=\"815\" type=\"line\"/>\n      <point x=\"1051\" y=\"905\" type=\"line\"/>\n      <point x=\"149\" y=\"905\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"149\" y=\"515\" type=\"line\"/>\n      <point x=\"1051\" y=\"515\" type=\"line\"/>\n      <point x=\"1051\" y=\"605\" type=\"line\"/>\n      <point x=\"149\" y=\"605\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-2\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB76\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-2.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-3\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB77\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-3.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-4\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB78\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-4.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-5\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB79\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-5.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-6\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-6.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-7\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalOneEightBlock-7.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalT_abulationC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalTabulationControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2409\"/>\n  <outline>\n    <component base=\"H.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"T.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>H.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>T.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalTabulationControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"73\" y=\"183\" type=\"line\"/>\n      <point x=\"1128\" y=\"698\" type=\"line\"/>\n      <point x=\"1128\" y=\"720\" type=\"line\"/>\n      <point x=\"73\" y=\"1235\" type=\"line\"/>\n      <point x=\"73\" y=\"1123\" type=\"line\"/>\n      <point x=\"850\" y=\"773\" type=\"line\"/>\n      <point x=\"850\" y=\"645\" type=\"line\"/>\n      <point x=\"73\" y=\"295\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"900\" y=\"664\" type=\"line\"/>\n      <point x=\"900\" y=\"754\" type=\"line\"/>\n      <point x=\"73\" y=\"754\" type=\"line\"/>\n      <point x=\"73\" y=\"664\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontalbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2015\"/>\n  <outline>\n    <component base=\"emdash\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontallineextension.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horizontallineextension\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"23AF\"/>\n  <outline>\n    <component base=\"boxLightHorizontal\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horncomb.case\" format=\"2\">\n  <anchor x=\"925\" y=\"1420\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"602\" y=\"1255\" type=\"line\"/>\n      <point x=\"664\" y=\"1265\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"875\" y=\"1299\"/>\n      <point x=\"983\" y=\"1410\"/>\n      <point x=\"1026\" y=\"1653\" type=\"curve\"/>\n      <point x=\"929\" y=\"1653\" type=\"line\"/>\n      <point x=\"896\" y=\"1462\"/>\n      <point x=\"815\" y=\"1375\"/>\n      <point x=\"659\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"597\" y=\"1340\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"horncomb\" format=\"2\">\n  <unicode hex=\"031B\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_topright\"/>\n  <outline>\n    <contour>\n      <point x=\"508\" y=\"970\" type=\"line\"/>\n      <point x=\"570\" y=\"980\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"1017\"/>\n      <point x=\"930\" y=\"1132\"/>\n      <point x=\"967\" y=\"1343\" type=\"curve\"/>\n      <point x=\"861\" y=\"1343\" type=\"line\"/>\n      <point x=\"834\" y=\"1184\"/>\n      <point x=\"728\" y=\"1100\"/>\n      <point x=\"546\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"484\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/house.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"house\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2302\"/>\n  <outline>\n    <contour>\n      <point x=\"100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"0\" type=\"line\"/>\n      <point x=\"1100\" y=\"706\" type=\"line\"/>\n      <point x=\"600\" y=\"1142\" type=\"line\"/>\n      <point x=\"100\" y=\"706\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"190\" y=\"90\" type=\"line\"/>\n      <point x=\"190\" y=\"665.068\" type=\"line\"/>\n      <point x=\"599.399\" y=\"1022.064\" type=\"line\"/>\n      <point x=\"1010\" y=\"666\" type=\"line\"/>\n      <point x=\"1010\" y=\"90\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hryvnia.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hryvnia\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B4\"/>\n  <outline>\n    <contour>\n      <point x=\"743\" y=\"820\" type=\"curve\"/>\n      <point x=\"943\" y=\"871\" type=\"line\"/>\n      <point x=\"950\" y=\"909\" type=\"line\"/>\n      <point x=\"1043\" y=\"977\"/>\n      <point x=\"1102\" y=\"1059\"/>\n      <point x=\"1118\" y=\"1150\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1150\" y=\"1334\"/>\n      <point x=\"1033\" y=\"1440\"/>\n      <point x=\"794\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"639\" y=\"1440\"/>\n      <point x=\"457\" y=\"1378\"/>\n      <point x=\"295\" y=\"1268\" type=\"curve\"/>\n      <point x=\"339\" y=\"1200\" type=\"line\"/>\n      <point x=\"488\" y=\"1295\"/>\n      <point x=\"648\" y=\"1350\"/>\n      <point x=\"777\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"954\" y=\"1350\"/>\n      <point x=\"1044\" y=\"1277\"/>\n      <point x=\"1022\" y=\"1150\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"999\" y=\"1024\"/>\n      <point x=\"904\" y=\"905\"/>\n    </contour>\n    <contour>\n      <point x=\"511\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"688\" y=\"-20\"/>\n      <point x=\"823\" y=\"3\"/>\n      <point x=\"963\" y=\"58\" type=\"curve\"/>\n      <point x=\"965\" y=\"142\" type=\"line\"/>\n      <point x=\"795\" y=\"91\"/>\n      <point x=\"666\" y=\"70\"/>\n      <point x=\"531\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"309\" y=\"70\"/>\n      <point x=\"194\" y=\"142\"/>\n      <point x=\"216\" y=\"267\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"232\" y=\"361\"/>\n      <point x=\"317\" y=\"449\"/>\n      <point x=\"448\" y=\"510\" type=\"curve\"/>\n      <point x=\"325\" y=\"555\" type=\"line\"/>\n      <point x=\"312\" y=\"482\" type=\"line\"/>\n      <point x=\"204\" y=\"434\"/>\n      <point x=\"134\" y=\"348\"/>\n      <point x=\"116\" y=\"247\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"86\" y=\"77\"/>\n      <point x=\"230\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"86\" y=\"490\" type=\"line\"/>\n      <point x=\"1098\" y=\"490\" type=\"line\"/>\n      <point x=\"1114\" y=\"580\" type=\"line\"/>\n      <point x=\"102\" y=\"580\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"369\" y=\"515\" type=\"line\"/>\n      <point x=\"460\" y=\"515\" type=\"line\"/>\n      <point x=\"853\" y=\"821\" type=\"line\"/>\n      <point x=\"762\" y=\"821\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"810\" type=\"line\"/>\n      <point x=\"1155\" y=\"810\" type=\"line\"/>\n      <point x=\"1171\" y=\"900\" type=\"line\"/>\n      <point x=\"159\" y=\"900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DD\"/>\n  <outline>\n    <component base=\"hungarumlautcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hungarumlautcomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlautcomb.case\" format=\"2\">\n  <anchor x=\"757\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"818\" y=\"1770\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"540\" y=\"1580\" type=\"line\"/>\n      <point x=\"652\" y=\"1580\" type=\"line\"/>\n      <point x=\"850\" y=\"1831\" type=\"line\"/>\n      <point x=\"728\" y=\"1831\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"910\" y=\"1580\" type=\"line\"/>\n      <point x=\"1022\" y=\"1580\" type=\"line\"/>\n      <point x=\"1220\" y=\"1831\" type=\"line\"/>\n      <point x=\"1098\" y=\"1831\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hungarumlautcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hungarumlautcomb\" format=\"2\">\n  <unicode hex=\"030B\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"778\" y=\"1540\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"812\" y=\"1248\" type=\"line\"/>\n      <point x=\"923\" y=\"1248\" type=\"line\"/>\n      <point x=\"1151\" y=\"1628\" type=\"line\"/>\n      <point x=\"1030\" y=\"1628\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"426\" y=\"1248\" type=\"line\"/>\n      <point x=\"537\" y=\"1248\" type=\"line\"/>\n      <point x=\"765\" y=\"1628\" type=\"line\"/>\n      <point x=\"644\" y=\"1628\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002D\"/>\n  <outline>\n    <component base=\"minus\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1962\" y=\"517\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2112\" y=\"517\"/>\n      <point x=\"2194\" y=\"622\"/>\n      <point x=\"2237\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2248\" y=\"930\" type=\"line\"/>\n      <point x=\"2152\" y=\"930\" type=\"line\"/>\n      <point x=\"2139\" y=\"857\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2108\" y=\"682\"/>\n      <point x=\"2060\" y=\"607\"/>\n      <point x=\"1976\" y=\"607\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1918\" y=\"607\"/>\n      <point x=\"1871\" y=\"638\"/>\n      <point x=\"1777\" y=\"744\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1667\" y=\"866\"/>\n      <point x=\"1609\" y=\"903\"/>\n      <point x=\"1520\" y=\"903\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1392\" y=\"903\"/>\n      <point x=\"1302\" y=\"825\"/>\n      <point x=\"1279\" y=\"693\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1277\" y=\"683\" type=\"line\"/>\n      <point x=\"1367\" y=\"683\" type=\"line\"/>\n      <point x=\"1370\" y=\"703\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1383\" y=\"772\"/>\n      <point x=\"1432\" y=\"813\"/>\n      <point x=\"1503\" y=\"813\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1571\" y=\"813\"/>\n      <point x=\"1623\" y=\"781\"/>\n      <point x=\"1721\" y=\"661\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1811\" y=\"551\"/>\n      <point x=\"1865\" y=\"517\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"664\" type=\"line\"/>\n      <point x=\"1364\" y=\"664\" type=\"line\"/>\n      <point x=\"1379\" y=\"754\" type=\"line\"/>\n      <point x=\"319\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"4\" y=\"664\" type=\"line\"/>\n      <point x=\"1099\" y=\"664\" type=\"line\"/>\n      <point x=\"1115\" y=\"754\" type=\"line\"/>\n      <point x=\"20\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1354\" y=\"664\" type=\"line\"/>\n      <point x=\"2144\" y=\"664\" type=\"line\"/>\n      <point x=\"2160\" y=\"754\" type=\"line\"/>\n      <point x=\"1370\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"664\" type=\"line\"/>\n      <point x=\"1094\" y=\"664\" type=\"line\"/>\n      <point x=\"1110\" y=\"754\" type=\"line\"/>\n      <point x=\"320\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2551\" y=\"664\" type=\"line\"/>\n      <point x=\"3344\" y=\"664\" type=\"line\"/>\n      <point x=\"3360\" y=\"754\" type=\"line\"/>\n      <point x=\"2567\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"664\" type=\"line\"/>\n      <point x=\"1091\" y=\"664\" type=\"line\"/>\n      <point x=\"1107\" y=\"754\" type=\"line\"/>\n      <point x=\"320\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1421\" y=\"664\" type=\"line\"/>\n      <point x=\"2221\" y=\"664\" type=\"line\"/>\n      <point x=\"2237\" y=\"754\" type=\"line\"/>\n      <point x=\"1437\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"-26\" y=\"664\" type=\"line\"/>\n      <point x=\"1273\" y=\"664\" type=\"line\"/>\n      <point x=\"1289\" y=\"754\" type=\"line\"/>\n      <point x=\"-10\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"148\" y=\"664\" type=\"line\"/>\n      <point x=\"1243\" y=\"664\" type=\"line\"/>\n      <point x=\"1259\" y=\"754\" type=\"line\"/>\n      <point x=\"164\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphentwo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"hyphentwo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2010\"/>\n  <outline>\n    <component base=\"hyphen\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/i-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"i-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0456\"/>\n  <outline>\n    <component base=\"i\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/i.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"i\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0069\"/>\n  <anchor x=\"488\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"773\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"1323\"/>\n      <point x=\"873\" y=\"1367\"/>\n      <point x=\"873\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"873\" y=\"1477\"/>\n      <point x=\"828\" y=\"1522\"/>\n      <point x=\"773\" y=\"1522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"1522\"/>\n      <point x=\"673\" y=\"1477\"/>\n      <point x=\"673\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"673\" y=\"1367\"/>\n      <point x=\"718\" y=\"1323\"/>\n    </contour>\n    <contour>\n      <point x=\"1014\" y=\"137\" type=\"line\"/>\n      <point x=\"926\" y=\"90\"/>\n      <point x=\"873\" y=\"72\"/>\n      <point x=\"789\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"72\"/>\n      <point x=\"550\" y=\"158\"/>\n      <point x=\"561\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"462\"/>\n      <point x=\"646\" y=\"564\"/>\n      <point x=\"680\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"949\"/>\n      <point x=\"636\" y=\"1080\"/>\n      <point x=\"410\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"1080\"/>\n      <point x=\"252\" y=\"1074\"/>\n      <point x=\"174\" y=\"1052\" type=\"curve\"/>\n      <point x=\"195\" y=\"965\" type=\"line\"/>\n      <point x=\"256\" y=\"981\"/>\n      <point x=\"317\" y=\"988\"/>\n      <point x=\"378\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"988\"/>\n      <point x=\"633\" y=\"898\"/>\n      <point x=\"589\" y=\"727\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"601\"/>\n      <point x=\"474\" y=\"463\"/>\n      <point x=\"465\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"95\"/>\n      <point x=\"565\" y=\"-20\"/>\n      <point x=\"790\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"-20\"/>\n      <point x=\"972\" y=\"17\"/>\n      <point x=\"1045\" y=\"64\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ia-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ia-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"645\" y=\"352\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"732\" y=\"352\"/>\n      <point x=\"825\" y=\"360\"/>\n      <point x=\"918\" y=\"384\" type=\"curve\"/>\n      <point x=\"932\" y=\"480\" type=\"line\"/>\n      <point x=\"839\" y=\"457\"/>\n      <point x=\"743\" y=\"444\"/>\n      <point x=\"656\" y=\"444\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"463\" y=\"444\"/>\n      <point x=\"313\" y=\"505\"/>\n      <point x=\"313\" y=\"663\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"313\" y=\"848\"/>\n      <point x=\"497\" y=\"968\"/>\n      <point x=\"895\" y=\"968\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1053\" y=\"968\" type=\"line\"/>\n      <point x=\"1085\" y=\"1060\" type=\"line\"/>\n      <point x=\"921\" y=\"1060\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"1060\"/>\n      <point x=\"217\" y=\"898\"/>\n      <point x=\"217\" y=\"657\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"217\" y=\"444\"/>\n      <point x=\"406\" y=\"352\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"-20\"/>\n      <point x=\"429\" y=\"129\"/>\n      <point x=\"557\" y=\"367\" type=\"curve\"/>\n      <point x=\"469\" y=\"399\" type=\"line\"/>\n      <point x=\"377\" y=\"220\"/>\n      <point x=\"234\" y=\"72\"/>\n      <point x=\"119\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"76\" y=\"72\"/>\n      <point x=\"46\" y=\"86\"/>\n      <point x=\"44\" y=\"87\" type=\"curve\"/>\n      <point x=\"26\" y=\"-4\" type=\"line\"/>\n      <point x=\"43\" y=\"-13\"/>\n      <point x=\"73\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"813\" y=\"0\" type=\"line\"/>\n      <point x=\"909\" y=\"0\" type=\"line\"/>\n      <point x=\"1096\" y=\"1060\" type=\"line\"/>\n      <point x=\"1000\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00ED\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ibreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ibreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012D\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/icircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"icircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EE\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/idieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EF\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/idotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECB\"/>\n  <outline>\n    <component base=\"i\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-19\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/idotless.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"idotless\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0131\"/>\n  <anchor x=\"488\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"1014\" y=\"137\" type=\"line\"/>\n      <point x=\"926\" y=\"90\"/>\n      <point x=\"873\" y=\"72\"/>\n      <point x=\"789\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"630\" y=\"72\"/>\n      <point x=\"550\" y=\"158\"/>\n      <point x=\"561\" y=\"323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"570\" y=\"462\"/>\n      <point x=\"646\" y=\"564\"/>\n      <point x=\"680\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"740\" y=\"949\"/>\n      <point x=\"636\" y=\"1080\"/>\n      <point x=\"410\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"331\" y=\"1080\"/>\n      <point x=\"252\" y=\"1074\"/>\n      <point x=\"174\" y=\"1052\" type=\"curve\"/>\n      <point x=\"195\" y=\"965\" type=\"line\"/>\n      <point x=\"256\" y=\"981\"/>\n      <point x=\"317\" y=\"988\"/>\n      <point x=\"378\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"555\" y=\"988\"/>\n      <point x=\"633\" y=\"898\"/>\n      <point x=\"589\" y=\"727\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"601\"/>\n      <point x=\"474\" y=\"463\"/>\n      <point x=\"465\" y=\"314\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"451\" y=\"95\"/>\n      <point x=\"565\" y=\"-20\"/>\n      <point x=\"790\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"895\" y=\"-20\"/>\n      <point x=\"972\" y=\"17\"/>\n      <point x=\"1045\" y=\"64\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ie-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ie-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0435\"/>\n  <outline>\n    <component base=\"e\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iegrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iegrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0450\"/>\n  <outline>\n    <component base=\"ie-cy\"/>\n    <component base=\"gravecomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/igrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"igrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00EC\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"gravecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ihookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ihookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EC9\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ii-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ii-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0438\"/>\n  <outline>\n    <component base=\"u\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iigrave-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iigrave-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045D\"/>\n  <outline>\n    <component base=\"gravecomb\"/>\n    <component base=\"ii-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iishort-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iishort-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0439\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"brevecomb-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ij.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ij\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0133\"/>\n  <anchor x=\"448\" y=\"-329\" name=\"bottom\"/>\n  <anchor x=\"795\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"155\" y=\"-480\" type=\"line\"/>\n      <point x=\"365\" y=\"-469\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"-453\"/>\n      <point x=\"849\" y=\"-256\"/>\n      <point x=\"918\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"1060\" type=\"line\"/>\n      <point x=\"986\" y=\"1060\" type=\"line\"/>\n      <point x=\"816\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"-202\"/>\n      <point x=\"623\" y=\"-356\"/>\n      <point x=\"371\" y=\"-373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"-388\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"157\" y=\"0\" type=\"line\"/>\n      <point x=\"253\" y=\"0\" type=\"line\"/>\n      <point x=\"441\" y=\"1060\" type=\"line\"/>\n      <point x=\"345\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"438\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"493\" y=\"1323\"/>\n      <point x=\"538\" y=\"1367\"/>\n      <point x=\"538\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1477\"/>\n      <point x=\"493\" y=\"1522\"/>\n      <point x=\"438\" y=\"1522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"1522\"/>\n      <point x=\"338\" y=\"1477\"/>\n      <point x=\"338\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"338\" y=\"1367\"/>\n      <point x=\"383\" y=\"1323\"/>\n    </contour>\n    <contour>\n      <point x=\"1082\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1137\" y=\"1323\"/>\n      <point x=\"1182\" y=\"1367\"/>\n      <point x=\"1182\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1182\" y=\"1477\"/>\n      <point x=\"1137\" y=\"1522\"/>\n      <point x=\"1082\" y=\"1522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"1522\"/>\n      <point x=\"982\" y=\"1477\"/>\n      <point x=\"982\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"982\" y=\"1367\"/>\n      <point x=\"1027\" y=\"1323\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ij_acute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ij_acute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"155\" y=\"-480\" type=\"line\"/>\n      <point x=\"365\" y=\"-469\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"677\" y=\"-453\"/>\n      <point x=\"849\" y=\"-256\"/>\n      <point x=\"918\" y=\"134\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"1060\" type=\"line\"/>\n      <point x=\"986\" y=\"1060\" type=\"line\"/>\n      <point x=\"816\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"762\" y=\"-202\"/>\n      <point x=\"623\" y=\"-356\"/>\n      <point x=\"371\" y=\"-373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"151\" y=\"-388\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"157\" y=\"0\" type=\"line\"/>\n      <point x=\"253\" y=\"0\" type=\"line\"/>\n      <point x=\"441\" y=\"1060\" type=\"line\"/>\n      <point x=\"345\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <component base=\"acutecomb\" xOffset=\"341\"/>\n    <component base=\"acutecomb\" xOffset=\"-292\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>acutecomb</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/imacron-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"imacron-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E3\"/>\n  <outline>\n    <component base=\"ii-cy\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/imacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"imacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012B\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/increment.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"increment\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2206\"/>\n  <outline>\n    <component base=\"Delta\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/infinity.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"infinity\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221E\"/>\n  <outline>\n    <contour>\n      <point x=\"316\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"444\" y=\"344\"/>\n      <point x=\"534\" y=\"402\"/>\n      <point x=\"623\" y=\"600\" type=\"curve\"/>\n      <point x=\"608\" y=\"600\" type=\"line\"/>\n      <point x=\"626\" y=\"422\"/>\n      <point x=\"697\" y=\"344\"/>\n      <point x=\"818\" y=\"344\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"995\" y=\"344\"/>\n      <point x=\"1139\" y=\"553\"/>\n      <point x=\"1139\" y=\"811\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1139\" y=\"973\"/>\n      <point x=\"1067\" y=\"1070\"/>\n      <point x=\"947\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"819\" y=\"1070\"/>\n      <point x=\"729\" y=\"1012\"/>\n      <point x=\"640\" y=\"813\" type=\"curve\"/>\n      <point x=\"655\" y=\"813\" type=\"line\"/>\n      <point x=\"647\" y=\"992\"/>\n      <point x=\"566\" y=\"1070\"/>\n      <point x=\"445\" y=\"1070\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"267\" y=\"1070\"/>\n      <point x=\"124\" y=\"862\"/>\n      <point x=\"124\" y=\"606\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"124\" y=\"446\"/>\n      <point x=\"195\" y=\"344\"/>\n    </contour>\n    <contour>\n      <point x=\"345\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"266\" y=\"436\"/>\n      <point x=\"220\" y=\"508\"/>\n      <point x=\"220\" y=\"619\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"220\" y=\"815\"/>\n      <point x=\"328\" y=\"978\"/>\n      <point x=\"454\" y=\"978\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"563\" y=\"978\"/>\n      <point x=\"599\" y=\"854\"/>\n      <point x=\"593\" y=\"670\" type=\"curve\"/>\n      <point x=\"605\" y=\"741\" type=\"line\"/>\n      <point x=\"545\" y=\"549\"/>\n      <point x=\"461\" y=\"436\"/>\n    </contour>\n    <contour>\n      <point x=\"820\" y=\"436\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"699\" y=\"436\"/>\n      <point x=\"664\" y=\"563\"/>\n      <point x=\"668\" y=\"741\" type=\"curve\"/>\n      <point x=\"666\" y=\"700\" type=\"line\"/>\n      <point x=\"740\" y=\"866\"/>\n      <point x=\"804\" y=\"978\"/>\n      <point x=\"917\" y=\"978\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"996\" y=\"978\"/>\n      <point x=\"1043\" y=\"909\"/>\n      <point x=\"1043\" y=\"796\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1043\" y=\"599\"/>\n      <point x=\"942\" y=\"436\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/integral.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integral\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"222B\"/>\n  <outline>\n    <contour>\n      <point x=\"-1\" y=\"-476\" type=\"line\"/>\n      <point x=\"83\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"364\" y=\"-441\"/>\n      <point x=\"515\" y=\"-265\"/>\n      <point x=\"564\" y=\"14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"742\" y=\"1020\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"782\" y=\"1245\"/>\n      <point x=\"877\" y=\"1348\"/>\n      <point x=\"1045\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1107\" y=\"1348\"/>\n      <point x=\"1166\" y=\"1343\"/>\n      <point x=\"1231\" y=\"1331\" type=\"curve\"/>\n      <point x=\"1259\" y=\"1420\" type=\"line\"/>\n      <point x=\"1200\" y=\"1434\"/>\n      <point x=\"1140\" y=\"1440\"/>\n      <point x=\"1067\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"830\" y=\"1440\"/>\n      <point x=\"698\" y=\"1305\"/>\n      <point x=\"646\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"-18\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"428\" y=\"-227\"/>\n      <point x=\"303\" y=\"-359\"/>\n      <point x=\"79\" y=\"-384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-5\" y=\"-392\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/integralbt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integralbt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2321\"/>\n  <outline>\n    <contour>\n      <point x=\"168\" y=\"-476\" type=\"line\"/>\n      <point x=\"251\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"527\" y=\"-441\"/>\n      <point x=\"647\" y=\"-265\"/>\n      <point x=\"647\" y=\"14\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"2226\" type=\"line\"/>\n      <point x=\"553\" y=\"-18\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"553\" y=\"-223\"/>\n      <point x=\"468\" y=\"-356\"/>\n      <point x=\"271\" y=\"-378\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"164\" y=\"-390\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/integraltp.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"integraltp\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2320\"/>\n  <outline>\n    <contour>\n      <point x=\"553\" y=\"-750\" type=\"line\"/>\n      <point x=\"647\" y=\"-750\" type=\"line\"/>\n      <point x=\"647\" y=\"1020\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"647\" y=\"1245\"/>\n      <point x=\"733\" y=\"1348\"/>\n      <point x=\"922\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"1348\"/>\n      <point x=\"1038\" y=\"1344\"/>\n      <point x=\"1102\" y=\"1334\" type=\"curve\"/>\n      <point x=\"1124\" y=\"1420\" type=\"line\"/>\n      <point x=\"1062\" y=\"1434\"/>\n      <point x=\"1001\" y=\"1440\"/>\n      <point x=\"928\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"1440\"/>\n      <point x=\"553\" y=\"1305\"/>\n      <point x=\"553\" y=\"1010\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/intersection.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"intersection\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2229\"/>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"0\" type=\"line\"/>\n      <point x=\"161\" y=\"0\" type=\"line\"/>\n      <point x=\"274\" y=\"640\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"314\" y=\"869\"/>\n      <point x=\"453\" y=\"988\"/>\n      <point x=\"680\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"907\" y=\"988\"/>\n      <point x=\"1005\" y=\"869\"/>\n      <point x=\"965\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"852\" y=\"0\" type=\"line\"/>\n      <point x=\"946\" y=\"0\" type=\"line\"/>\n      <point x=\"1059\" y=\"640\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1107\" y=\"909\"/>\n      <point x=\"976\" y=\"1080\"/>\n      <point x=\"696\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"408\" y=\"1080\"/>\n      <point x=\"231\" y=\"929\"/>\n      <point x=\"180\" y=\"640\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/inverseB_ullet.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"inverseBullet\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D8\"/>\n  <note>\ninvbullet\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"400\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"400\"/>\n      <point x=\"304\" y=\"518\"/>\n      <point x=\"304\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"304\" y=\"874\"/>\n      <point x=\"422\" y=\"992\"/>\n      <point x=\"600\" y=\"992\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"992\"/>\n      <point x=\"896\" y=\"874\"/>\n      <point x=\"896\" y=\"696\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"518\"/>\n      <point x=\"778\" y=\"400\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/inverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"inverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D9\"/>\n  <note>\ninvcircle\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"1310\" type=\"line\"/>\n      <point x=\"0\" y=\"1310\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"185\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"600\" y=\"1235\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"1235\"/>\n      <point x=\"1125\" y=\"1026\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"916\" y=\"185\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"277\"/>\n      <point x=\"1029\" y=\"449\"/>\n      <point x=\"1029\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1029\" y=\"971\"/>\n      <point x=\"859\" y=\"1143\"/>\n      <point x=\"600\" y=\"1143\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"1143\"/>\n      <point x=\"171\" y=\"971\"/>\n      <point x=\"171\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"171\" y=\"449\"/>\n      <point x=\"341\" y=\"277\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/io-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"io-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0451\"/>\n  <outline>\n    <component base=\"ie-cy\"/>\n    <component base=\"dieresiscomb\" xOffset=\"5\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"012F\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"617\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"660\" y=\"-423\"/>\n      <point x=\"701\" y=\"-417\"/>\n      <point x=\"730\" y=\"-405\" type=\"curve\"/>\n      <point x=\"717\" y=\"-322\" type=\"line\"/>\n      <point x=\"697\" y=\"-329\"/>\n      <point x=\"667\" y=\"-336\"/>\n      <point x=\"633\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"556\" y=\"-336\"/>\n      <point x=\"514\" y=\"-301\"/>\n      <point x=\"514\" y=\"-234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"514\" y=\"-103\"/>\n      <point x=\"682\" y=\"-40\"/>\n      <point x=\"855\" y=\"-15\" type=\"curve\"/>\n      <point x=\"810\" y=\"3\" type=\"line\"/>\n      <point x=\"657\" y=\"72\" type=\"line\"/>\n      <point x=\"657\" y=\"-8\" type=\"line\"/>\n      <point x=\"502\" y=\"-67\"/>\n      <point x=\"420\" y=\"-152\"/>\n      <point x=\"420\" y=\"-254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"-364\"/>\n      <point x=\"488\" y=\"-423\"/>\n    </contour>\n    <component base=\"i\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iota-latin.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iota-latin\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0269\"/>\n  <outline>\n    <component base=\"iota\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iota.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iota\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03B9\"/>\n  <outline>\n    <component base=\"idotless\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iotadieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotadieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CA\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iotadieresistonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotadieresistonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0390\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"dieresistonos\" xOffset=\"2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iotatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iotatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03AF\"/>\n  <outline>\n    <component base=\"iota\"/>\n    <component base=\"tonos\" xOffset=\"-36\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/itilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"itilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0129\"/>\n  <outline>\n    <component base=\"idotless\"/>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iu-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"044E\"/>\n  <anchor x=\"505\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"692\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"691\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"918\" y=\"-20\"/>\n      <point x=\"1046\" y=\"223\"/>\n      <point x=\"1094\" y=\"496\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1109\" y=\"581\"/>\n      <point x=\"1116\" y=\"669\"/>\n      <point x=\"1116\" y=\"753\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1116\" y=\"972\"/>\n      <point x=\"1036\" y=\"1080\"/>\n      <point x=\"864\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"638\" y=\"1080\"/>\n      <point x=\"510\" y=\"842\"/>\n      <point x=\"461\" y=\"568\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"482\"/>\n      <point x=\"439\" y=\"393\"/>\n      <point x=\"439\" y=\"306\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"439\" y=\"86\"/>\n      <point x=\"520\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"41\" y=\"0\" type=\"line\"/>\n      <point x=\"137\" y=\"0\" type=\"line\"/>\n      <point x=\"324\" y=\"1060\" type=\"line\"/>\n      <point x=\"228\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"163\" y=\"485\" type=\"line\"/>\n      <point x=\"510\" y=\"485\" type=\"line\"/>\n      <point x=\"524\" y=\"575\" type=\"line\"/>\n      <point x=\"178\" y=\"575\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"692\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"576\" y=\"72\"/>\n      <point x=\"535\" y=\"143\"/>\n      <point x=\"535\" y=\"345\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"535\" y=\"409\"/>\n      <point x=\"541\" y=\"483\"/>\n      <point x=\"554\" y=\"557\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"592\" y=\"771\"/>\n      <point x=\"688\" y=\"988\"/>\n      <point x=\"863\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"979\" y=\"988\"/>\n      <point x=\"1020\" y=\"917\"/>\n      <point x=\"1020\" y=\"715\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1020\" y=\"653\"/>\n      <point x=\"1014\" y=\"581\"/>\n      <point x=\"1001\" y=\"507\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"294\"/>\n      <point x=\"867\" y=\"72\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iu-cy.loclB_G_R_.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy.loclBGR.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"339\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"40\" y=\"0\" type=\"line\"/>\n      <point x=\"136\" y=\"0\" type=\"line\"/>\n      <point x=\"387\" y=\"1420\" type=\"line\"/>\n      <point x=\"291\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"iu-cy\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iu-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"iu-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"353\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"41\" y=\"0\" type=\"line\"/>\n      <point x=\"137\" y=\"0\" type=\"line\"/>\n      <point x=\"362\" y=\"1271\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"391\" y=\"1435\"/>\n      <point x=\"335\" y=\"1521\"/>\n      <point x=\"202\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"167\" y=\"1521\"/>\n      <point x=\"121\" y=\"1515\"/>\n      <point x=\"89\" y=\"1505\" type=\"curve\"/>\n      <point x=\"100\" y=\"1418\" type=\"line\"/>\n      <point x=\"116\" y=\"1422\"/>\n      <point x=\"164\" y=\"1429\"/>\n      <point x=\"195\" y=\"1429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"258\" y=\"1429\"/>\n      <point x=\"284\" y=\"1379\"/>\n      <point x=\"266\" y=\"1279\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"iu-cy\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/j.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"j\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006A\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"984\" y=\"1480\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"30\" y=\"-480\" type=\"line\"/>\n      <point x=\"240\" y=\"-469\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"-453\"/>\n      <point x=\"723\" y=\"-267\"/>\n      <point x=\"788\" y=\"104\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"725\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"950\"/>\n      <point x=\"841\" y=\"1080\"/>\n      <point x=\"638\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"1080\"/>\n      <point x=\"333\" y=\"1059\"/>\n      <point x=\"222\" y=\"1022\" type=\"curve\"/>\n      <point x=\"243\" y=\"935\" type=\"line\"/>\n      <point x=\"358\" y=\"969\"/>\n      <point x=\"498\" y=\"988\"/>\n      <point x=\"626\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"769\" y=\"988\"/>\n      <point x=\"833\" y=\"893\"/>\n      <point x=\"803\" y=\"727\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"-202\"/>\n      <point x=\"498\" y=\"-356\"/>\n      <point x=\"246\" y=\"-373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"26\" y=\"-388\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"958\" y=\"1323\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1013\" y=\"1323\"/>\n      <point x=\"1058\" y=\"1367\"/>\n      <point x=\"1058\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1058\" y=\"1477\"/>\n      <point x=\"1013\" y=\"1522\"/>\n      <point x=\"958\" y=\"1522\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"903\" y=\"1522\"/>\n      <point x=\"858\" y=\"1477\"/>\n      <point x=\"858\" y=\"1422\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"858\" y=\"1367\"/>\n      <point x=\"903\" y=\"1323\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/jacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"acutecomb\" xOffset=\"171\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/jcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01F0\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"caroncomb\" xOffset=\"171\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/jcircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jcircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0135\"/>\n  <outline>\n    <component base=\"jdotless\"/>\n    <component base=\"circumflexcomb\" xOffset=\"171\" yOffset=\"1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/jdotless.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"jdotless\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0237\"/>\n  <anchor x=\"411\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"864\" y=\"1061\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"30\" y=\"-480\" type=\"line\"/>\n      <point x=\"240\" y=\"-469\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"549\" y=\"-453\"/>\n      <point x=\"723\" y=\"-267\"/>\n      <point x=\"788\" y=\"104\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"896\" y=\"725\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"935\" y=\"951\"/>\n      <point x=\"841\" y=\"1081\"/>\n      <point x=\"638\" y=\"1081\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"485\" y=\"1081\"/>\n      <point x=\"333\" y=\"1060\"/>\n      <point x=\"222\" y=\"1023\" type=\"curve\"/>\n      <point x=\"243\" y=\"936\" type=\"line\"/>\n      <point x=\"358\" y=\"970\"/>\n      <point x=\"498\" y=\"989\"/>\n      <point x=\"626\" y=\"989\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"769\" y=\"989\"/>\n      <point x=\"833\" y=\"894\"/>\n      <point x=\"803\" y=\"727\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"691\" y=\"102\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"637\" y=\"-202\"/>\n      <point x=\"498\" y=\"-356\"/>\n      <point x=\"246\" y=\"-373\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"26\" y=\"-388\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/je-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"je-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0458\"/>\n  <outline>\n    <component base=\"j\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/k.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"k.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"398\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"976\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1019\" y=\"-20\"/>\n      <point x=\"1049\" y=\"-17\"/>\n      <point x=\"1080\" y=\"-12\" type=\"curve\"/>\n      <point x=\"1072\" y=\"75\" type=\"line\"/>\n      <point x=\"1050\" y=\"73\"/>\n      <point x=\"1034\" y=\"72\"/>\n      <point x=\"1000\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"72\"/>\n      <point x=\"680\" y=\"160\"/>\n      <point x=\"621\" y=\"409\" type=\"curve\"/>\n      <point x=\"596\" y=\"366\" type=\"line\"/>\n      <point x=\"891\" y=\"493\"/>\n      <point x=\"1077\" y=\"665\"/>\n      <point x=\"1077\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"1007\"/>\n      <point x=\"997\" y=\"1080\"/>\n      <point x=\"844\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"1080\"/>\n      <point x=\"423\" y=\"924\"/>\n      <point x=\"332\" y=\"739\" type=\"curve\"/>\n      <point x=\"303\" y=\"739\" type=\"line\"/>\n      <point x=\"260\" y=\"420\" type=\"line\"/>\n      <point x=\"330\" y=\"740\"/>\n      <point x=\"589\" y=\"988\"/>\n      <point x=\"834\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"988\"/>\n      <point x=\"981\" y=\"943\"/>\n      <point x=\"981\" y=\"855\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"701\"/>\n      <point x=\"823\" y=\"554\"/>\n      <point x=\"522\" y=\"425\" type=\"curve\"/>\n      <point x=\"564\" y=\"138\"/>\n      <point x=\"720\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"446\" y=\"1420\" type=\"line\"/>\n      <point x=\"350\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/k.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"k\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006B\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"455\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"976\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1019\" y=\"-20\"/>\n      <point x=\"1049\" y=\"-17\"/>\n      <point x=\"1080\" y=\"-12\" type=\"curve\"/>\n      <point x=\"1072\" y=\"75\" type=\"line\"/>\n      <point x=\"1050\" y=\"73\"/>\n      <point x=\"1034\" y=\"72\"/>\n      <point x=\"1000\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"72\"/>\n      <point x=\"680\" y=\"160\"/>\n      <point x=\"621\" y=\"409\" type=\"curve\"/>\n      <point x=\"596\" y=\"366\" type=\"line\"/>\n      <point x=\"891\" y=\"493\"/>\n      <point x=\"1077\" y=\"665\"/>\n      <point x=\"1077\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"1007\"/>\n      <point x=\"997\" y=\"1080\"/>\n      <point x=\"844\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"1080\"/>\n      <point x=\"423\" y=\"924\"/>\n      <point x=\"332\" y=\"739\" type=\"curve\"/>\n      <point x=\"303\" y=\"739\" type=\"line\"/>\n      <point x=\"260\" y=\"420\" type=\"line\"/>\n      <point x=\"330\" y=\"740\"/>\n      <point x=\"589\" y=\"988\"/>\n      <point x=\"834\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"988\"/>\n      <point x=\"981\" y=\"943\"/>\n      <point x=\"981\" y=\"855\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"701\"/>\n      <point x=\"823\" y=\"554\"/>\n      <point x=\"522\" y=\"425\" type=\"curve\"/>\n      <point x=\"564\" y=\"138\"/>\n      <point x=\"720\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"408\" y=\"1247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1431\"/>\n      <point x=\"384\" y=\"1521\"/>\n      <point x=\"211\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"170\" y=\"1521\"/>\n      <point x=\"129\" y=\"1517\"/>\n      <point x=\"89\" y=\"1505\" type=\"curve\"/>\n      <point x=\"100\" y=\"1418\" type=\"line\"/>\n      <point x=\"136\" y=\"1426\"/>\n      <point x=\"173\" y=\"1429\"/>\n      <point x=\"209\" y=\"1429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"1429\"/>\n      <point x=\"332\" y=\"1367\"/>\n      <point x=\"309\" y=\"1237\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043A\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"691\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"948\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"998\" y=\"-20\"/>\n      <point x=\"1045\" y=\"-17\"/>\n      <point x=\"1081\" y=\"-5\" type=\"curve\"/>\n      <point x=\"1071\" y=\"83\" type=\"line\"/>\n      <point x=\"1041\" y=\"74\"/>\n      <point x=\"1004\" y=\"72\"/>\n      <point x=\"956\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"800\" y=\"72\"/>\n      <point x=\"619\" y=\"202\"/>\n      <point x=\"551\" y=\"503\" type=\"curve\"/>\n      <point x=\"531\" y=\"453\" type=\"line\"/>\n      <point x=\"753\" y=\"554\"/>\n      <point x=\"1033\" y=\"757\"/>\n      <point x=\"1097\" y=\"1069\" type=\"curve\"/>\n      <point x=\"998\" y=\"1059\" type=\"line\"/>\n      <point x=\"940\" y=\"800\"/>\n      <point x=\"696\" y=\"615\"/>\n      <point x=\"449\" y=\"504\" type=\"curve\"/>\n      <point x=\"525\" y=\"160\"/>\n      <point x=\"736\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"89\" y=\"0\" type=\"line\"/>\n      <point x=\"185\" y=\"0\" type=\"line\"/>\n      <point x=\"372\" y=\"1060\" type=\"line\"/>\n      <point x=\"276\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ka-cy.loclB_G_R_.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy.loclBGR.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"398\" y=\"1420\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"951\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1001\" y=\"-20\"/>\n      <point x=\"1046\" y=\"-17\"/>\n      <point x=\"1081\" y=\"-5\" type=\"curve\"/>\n      <point x=\"1072\" y=\"83\" type=\"line\"/>\n      <point x=\"1042\" y=\"74\"/>\n      <point x=\"1007\" y=\"72\"/>\n      <point x=\"959\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"72\"/>\n      <point x=\"629\" y=\"204\"/>\n      <point x=\"564\" y=\"508\" type=\"curve\"/>\n      <point x=\"545\" y=\"455\" type=\"line\"/>\n      <point x=\"822\" y=\"547\"/>\n      <point x=\"1047\" y=\"757\"/>\n      <point x=\"1111\" y=\"1069\" type=\"curve\"/>\n      <point x=\"1013\" y=\"1059\" type=\"line\"/>\n      <point x=\"955\" y=\"800\"/>\n      <point x=\"765\" y=\"607\"/>\n      <point x=\"463\" y=\"506\" type=\"curve\"/>\n      <point x=\"537\" y=\"162\"/>\n      <point x=\"742\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"446\" y=\"1420\" type=\"line\"/>\n      <point x=\"350\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.97,1,0,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ka-cy.loclB_G_R_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ka-cy.loclBGR\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"504\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"402\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"951\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1001\" y=\"-20\"/>\n      <point x=\"1046\" y=\"-17\"/>\n      <point x=\"1081\" y=\"-5\" type=\"curve\"/>\n      <point x=\"1072\" y=\"83\" type=\"line\"/>\n      <point x=\"1042\" y=\"74\"/>\n      <point x=\"1007\" y=\"72\"/>\n      <point x=\"959\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"806\" y=\"72\"/>\n      <point x=\"629\" y=\"204\"/>\n      <point x=\"564\" y=\"508\" type=\"curve\"/>\n      <point x=\"545\" y=\"455\" type=\"line\"/>\n      <point x=\"822\" y=\"547\"/>\n      <point x=\"1047\" y=\"757\"/>\n      <point x=\"1111\" y=\"1069\" type=\"curve\"/>\n      <point x=\"1013\" y=\"1059\" type=\"line\"/>\n      <point x=\"955\" y=\"800\"/>\n      <point x=\"765\" y=\"607\"/>\n      <point x=\"463\" y=\"506\" type=\"curve\"/>\n      <point x=\"537\" y=\"162\"/>\n      <point x=\"742\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"408\" y=\"1247\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1431\"/>\n      <point x=\"384\" y=\"1521\"/>\n      <point x=\"211\" y=\"1521\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"170\" y=\"1521\"/>\n      <point x=\"129\" y=\"1517\"/>\n      <point x=\"89\" y=\"1505\" type=\"curve\"/>\n      <point x=\"100\" y=\"1418\" type=\"line\"/>\n      <point x=\"136\" y=\"1426\"/>\n      <point x=\"173\" y=\"1429\"/>\n      <point x=\"209\" y=\"1429\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"1429\"/>\n      <point x=\"332\" y=\"1367\"/>\n      <point x=\"309\" y=\"1237\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kadescender-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kadescender-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"049B\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"951\" y=\"-21\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"976\" y=\"-21\"/>\n      <point x=\"999\" y=\"-20\"/>\n      <point x=\"1021\" y=\"-18\" type=\"curve\"/>\n      <point x=\"1046\" y=\"76\" type=\"line\"/>\n      <point x=\"1022\" y=\"72\"/>\n      <point x=\"994\" y=\"71\"/>\n      <point x=\"959\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"805\" y=\"71\"/>\n      <point x=\"627\" y=\"206\"/>\n      <point x=\"563\" y=\"512\" type=\"curve\"/>\n      <point x=\"543\" y=\"454\" type=\"line\"/>\n      <point x=\"821\" y=\"546\"/>\n      <point x=\"1047\" y=\"757\"/>\n      <point x=\"1111\" y=\"1069\" type=\"curve\"/>\n      <point x=\"1013\" y=\"1059\" type=\"line\"/>\n      <point x=\"955\" y=\"800\"/>\n      <point x=\"765\" y=\"607\"/>\n      <point x=\"463\" y=\"506\" type=\"curve\"/>\n      <point x=\"537\" y=\"162\"/>\n      <point x=\"742\" y=\"-21\"/>\n    </contour>\n    <contour>\n      <point x=\"89\" y=\"0\" type=\"line\"/>\n      <point x=\"185\" y=\"0\" type=\"line\"/>\n      <point x=\"372\" y=\"1060\" type=\"line\"/>\n      <point x=\"276\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"942\" y=\"-324\" type=\"line\"/>\n      <point x=\"987\" y=\"-192\"/>\n      <point x=\"1039\" y=\"-3\"/>\n      <point x=\"1046\" y=\"76\" type=\"curve\"/>\n      <point x=\"939\" y=\"0\" type=\"line\"/>\n      <point x=\"921\" y=\"-90\"/>\n      <point x=\"883\" y=\"-209\"/>\n      <point x=\"850\" y=\"-303\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kaiS_ymbol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kaiSymbol\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03D7\"/>\n  <anchor x=\"421\" y=\"-480\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"249\" y=\"422\" type=\"line\"/>\n      <point x=\"1116\" y=\"1007\" type=\"line\"/>\n      <point x=\"1062\" y=\"1084\" type=\"line\"/>\n      <point x=\"271\" y=\"536\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"847\" y=\"-480\"/>\n      <point x=\"963\" y=\"-396\"/>\n      <point x=\"963\" y=\"-213\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"963\" y=\"-120\"/>\n      <point x=\"919\" y=\"-21\"/>\n      <point x=\"820\" y=\"99\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"563\" type=\"line\"/>\n      <point x=\"361\" y=\"516\" type=\"line\"/>\n      <point x=\"732\" y=\"60\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"824\" y=\"-54\"/>\n      <point x=\"867\" y=\"-139\"/>\n      <point x=\"867\" y=\"-215\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"867\" y=\"-334\"/>\n      <point x=\"780\" y=\"-388\"/>\n      <point x=\"591\" y=\"-388\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"544\" y=\"-388\"/>\n      <point x=\"497\" y=\"-382\"/>\n      <point x=\"424\" y=\"-368\" type=\"curve\"/>\n      <point x=\"399\" y=\"-460\" type=\"line\"/>\n      <point x=\"487\" y=\"-474\"/>\n      <point x=\"543\" y=\"-480\"/>\n    </contour>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"382\" y=\"1060\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kappa.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kappa\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BA\"/>\n  <guideline x=\"485\" y=\"714\" angle=\"231.3928\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"249\" y=\"422\" type=\"line\"/>\n      <point x=\"1116\" y=\"1007\" type=\"line\"/>\n      <point x=\"1062\" y=\"1084\" type=\"line\"/>\n      <point x=\"271\" y=\"536\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"382\" y=\"1060\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"789\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"893\" y=\"-20\"/>\n      <point x=\"971\" y=\"10\"/>\n      <point x=\"1071\" y=\"84\" type=\"curve\"/>\n      <point x=\"1022\" y=\"159\" type=\"line\"/>\n      <point x=\"936\" y=\"97\"/>\n      <point x=\"874\" y=\"72\"/>\n      <point x=\"798\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"72\"/>\n      <point x=\"664\" y=\"107\"/>\n      <point x=\"610\" y=\"218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"563\" type=\"line\"/>\n      <point x=\"361\" y=\"516\" type=\"line\"/>\n      <point x=\"522\" y=\"179\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"27\"/>\n      <point x=\"673\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0137\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"94\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E33\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"93\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kgreenlandic.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kgreenlandic\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0138\"/>\n  <anchor x=\"534\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"721\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"976\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1019\" y=\"-20\"/>\n      <point x=\"1049\" y=\"-17\"/>\n      <point x=\"1080\" y=\"-12\" type=\"curve\"/>\n      <point x=\"1072\" y=\"75\" type=\"line\"/>\n      <point x=\"1050\" y=\"73\"/>\n      <point x=\"1034\" y=\"72\"/>\n      <point x=\"1000\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"72\"/>\n      <point x=\"680\" y=\"160\"/>\n      <point x=\"621\" y=\"409\" type=\"curve\"/>\n      <point x=\"596\" y=\"366\" type=\"line\"/>\n      <point x=\"891\" y=\"493\"/>\n      <point x=\"1077\" y=\"665\"/>\n      <point x=\"1077\" y=\"867\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1077\" y=\"1007\"/>\n      <point x=\"997\" y=\"1080\"/>\n      <point x=\"844\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"593\" y=\"1080\"/>\n      <point x=\"423\" y=\"924\"/>\n      <point x=\"332\" y=\"739\" type=\"curve\"/>\n      <point x=\"303\" y=\"739\" type=\"line\"/>\n      <point x=\"260\" y=\"420\" type=\"line\"/>\n      <point x=\"330\" y=\"740\"/>\n      <point x=\"589\" y=\"988\"/>\n      <point x=\"834\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"930\" y=\"988\"/>\n      <point x=\"981\" y=\"943\"/>\n      <point x=\"981\" y=\"855\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"701\"/>\n      <point x=\"823\" y=\"554\"/>\n      <point x=\"522\" y=\"425\" type=\"curve\"/>\n      <point x=\"564\" y=\"138\"/>\n      <point x=\"720\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"278\" y=\"1060\" type=\"line\"/>\n      <point x=\"91\" y=\"0\" type=\"line\"/>\n      <point x=\"187\" y=\"0\" type=\"line\"/>\n      <point x=\"374\" y=\"1060\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kip.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kip\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20AD\"/>\n  <outline>\n    <contour>\n      <point x=\"777\" y=\"625\" type=\"line\"/>\n      <point x=\"1217\" y=\"625\" type=\"line\"/>\n      <point x=\"1233\" y=\"715\" type=\"line\"/>\n      <point x=\"793\" y=\"715\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"17\" y=\"625\" type=\"line\"/>\n      <point x=\"264\" y=\"625\" type=\"line\"/>\n      <point x=\"280\" y=\"715\" type=\"line\"/>\n      <point x=\"33\" y=\"715\" type=\"line\"/>\n    </contour>\n    <component base=\"K\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"kje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045C\"/>\n  <outline>\n    <component base=\"ka-cy\"/>\n    <component base=\"acutecomb\" xOffset=\"-2\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/klinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"klinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E35\"/>\n  <outline>\n    <component base=\"k\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"94\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/l.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"l\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006C\"/>\n  <anchor x=\"600\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"559\" y=\"784\" name=\"center\"/>\n  <anchor x=\"557\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"991\" y=\"1500\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"742\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"833\" y=\"-20\"/>\n      <point x=\"921\" y=\"8\"/>\n      <point x=\"1007\" y=\"64\" type=\"curve\"/>\n      <point x=\"971\" y=\"148\" type=\"line\"/>\n      <point x=\"891\" y=\"97\"/>\n      <point x=\"819\" y=\"72\"/>\n      <point x=\"751\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"599\" y=\"72\"/>\n      <point x=\"525\" y=\"142\"/>\n      <point x=\"527\" y=\"283\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"527\" y=\"327\"/>\n      <point x=\"528\" y=\"423\"/>\n      <point x=\"579\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"1146\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"1388\"/>\n      <point x=\"676\" y=\"1520\"/>\n      <point x=\"450\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"382\" y=\"1520\"/>\n      <point x=\"314\" y=\"1515\"/>\n      <point x=\"247\" y=\"1497\" type=\"curve\"/>\n      <point x=\"268\" y=\"1410\" type=\"line\"/>\n      <point x=\"318\" y=\"1422\"/>\n      <point x=\"368\" y=\"1428\"/>\n      <point x=\"418\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"1428\"/>\n      <point x=\"675\" y=\"1341\"/>\n      <point x=\"629\" y=\"1166\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"483\" y=\"615\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"435\" y=\"433\"/>\n      <point x=\"431\" y=\"336\"/>\n      <point x=\"431\" y=\"278\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"79\"/>\n      <point x=\"534\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/l.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"l.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"679\" y=\"784\" name=\"center\"/>\n  <anchor x=\"807\" y=\"1500\" name=\"top\"/>\n  <anchor x=\"1191\" y=\"1500\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"1016\" y=\"110\" type=\"line\"/>\n      <point x=\"947\" y=\"84\"/>\n      <point x=\"886\" y=\"72\"/>\n      <point x=\"810\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"529\" y=\"72\"/>\n      <point x=\"383\" y=\"278\"/>\n      <point x=\"383\" y=\"673\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"383\" y=\"1128\"/>\n      <point x=\"540\" y=\"1428\"/>\n      <point x=\"780\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"891\" y=\"1428\"/>\n      <point x=\"952\" y=\"1344\"/>\n      <point x=\"958\" y=\"1184\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"957\" y=\"755\"/>\n      <point x=\"614\" y=\"425\"/>\n      <point x=\"52\" y=\"296\" type=\"curve\"/>\n      <point x=\"72\" y=\"206\" type=\"line\"/>\n      <point x=\"683\" y=\"353\"/>\n      <point x=\"1054\" y=\"716\"/>\n      <point x=\"1054\" y=\"1184\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1054\" y=\"1405\"/>\n      <point x=\"964\" y=\"1520\"/>\n      <point x=\"791\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"487\" y=\"1520\"/>\n      <point x=\"287\" y=\"1184\"/>\n      <point x=\"287\" y=\"673\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"287\" y=\"218\"/>\n      <point x=\"460\" y=\"-20\"/>\n      <point x=\"791\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"866\" y=\"-20\"/>\n      <point x=\"940\" y=\"-8\"/>\n      <point x=\"1035\" y=\"22\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013A\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"acutecomb.case\" xOffset=\"-200\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lacute.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lacute.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"acutecomb.case\" xOffset=\"50\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lambda.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lambda\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BB\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"763\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"970\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1005\" y=\"-20\"/>\n      <point x=\"1032\" y=\"-17\"/>\n      <point x=\"1064\" y=\"-8\" type=\"curve\"/>\n      <point x=\"1067\" y=\"77\" type=\"line\"/>\n      <point x=\"1027\" y=\"72\"/>\n      <point x=\"1007\" y=\"70\"/>\n      <point x=\"996\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"914\" y=\"70\"/>\n      <point x=\"866\" y=\"109\"/>\n      <point x=\"843\" y=\"210\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"595\" y=\"1310\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"1462\"/>\n      <point x=\"487\" y=\"1520\"/>\n      <point x=\"362\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"303\" y=\"1520\"/>\n      <point x=\"257\" y=\"1514\"/>\n      <point x=\"198\" y=\"1494\" type=\"curve\"/>\n      <point x=\"213\" y=\"1405\" type=\"line\"/>\n      <point x=\"261\" y=\"1425\"/>\n      <point x=\"286\" y=\"1430\"/>\n      <point x=\"346\" y=\"1430\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"429\" y=\"1430\"/>\n      <point x=\"483\" y=\"1392\"/>\n      <point x=\"506\" y=\"1290\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"760\" y=\"181\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"793\" y=\"36\"/>\n      <point x=\"858\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"-2\" y=\"0\" type=\"line\"/>\n      <point x=\"107\" y=\"0\" type=\"line\"/>\n      <point x=\"515\" y=\"657\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"561\" y=\"731\"/>\n      <point x=\"583\" y=\"780\"/>\n      <point x=\"588\" y=\"865\" type=\"curve\"/>\n      <point x=\"649\" y=\"886\" type=\"line\"/>\n      <point x=\"601\" y=\"969\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lambdastroke.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lambdastroke\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019B\"/>\n  <outline>\n    <contour>\n      <point x=\"134\" y=\"958\" type=\"line\"/>\n      <point x=\"992\" y=\"1208\" type=\"line\"/>\n      <point x=\"972\" y=\"1289\" type=\"line\"/>\n      <point x=\"112\" y=\"1039\" type=\"line\"/>\n    </contour>\n    <component base=\"lambda\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"largeCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EF\"/>\n  <note>\nuni25EF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"962\" y=\"110\"/>\n      <point x=\"1200\" y=\"348\"/>\n      <point x=\"1200\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1200\" y=\"1072\"/>\n      <point x=\"962\" y=\"1310\"/>\n      <point x=\"600\" y=\"1310\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"1310\"/>\n      <point x=\"0\" y=\"1072\"/>\n      <point x=\"0\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"0\" y=\"348\"/>\n      <point x=\"238\" y=\"110\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"202\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"202\"/>\n      <point x=\"96\" y=\"404\"/>\n      <point x=\"96\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"96\" y=\"1016\"/>\n      <point x=\"296\" y=\"1218\"/>\n      <point x=\"600\" y=\"1218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"904\" y=\"1218\"/>\n      <point x=\"1104\" y=\"1016\"/>\n      <point x=\"1104\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1104\" y=\"404\"/>\n      <point x=\"904\" y=\"202\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"332\"/>\r\n      <point x=\"800\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"602\"/>\r\n      <point x=\"800\" y=\"61\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"234\"/>\r\n      <point x=\"800\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"472\"/>\r\n      <point x=\"800\" y=\"-4\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"560\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"560\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE1F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE1F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE20\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE20\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE20.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE20.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE21.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE21\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE21\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE21.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE21.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE22.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE22\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE22\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE22.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE22.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE23.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE23\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE23\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE23.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE23.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE24.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE24\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE24\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"1144\"/>\r\n      <point x=\"800\" y=\"332\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE24.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE24.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"948\"/>\r\n      <point x=\"800\" y=\"234\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE25.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE25\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE25\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE25.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE25.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE26.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE26\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE26\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"640\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"422\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE26.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE26.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"640\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"313\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE27.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE27\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE27\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE27.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE27.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE28.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE28\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE28\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE28.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE28.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE29.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE29\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE29\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE29.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE29.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1685\"/>\r\n      <point x=\"1000\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"602\"/>\r\n      <point x=\"800\" y=\"61\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"332\"/>\r\n      <point x=\"800\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"602\"/>\r\n      <point x=\"400\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1424\"/>\r\n      <point x=\"1000\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"472\"/>\r\n      <point x=\"800\" y=\"-4\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"234\"/>\r\n      <point x=\"800\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"472\"/>\r\n      <point x=\"400\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE2F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1144\"/>\r\n      <point x=\"900\" y=\"1437\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"986\"/>\r\n      <point x=\"600\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"1144\"/>\r\n      <point x=\"900\" y=\"760\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"309\"/>\r\n      <point x=\"600\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE2F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"948\"/>\r\n      <point x=\"900\" y=\"1206\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"810\"/>\r\n      <point x=\"600\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"600\" y=\"948\"/>\r\n      <point x=\"900\" y=\"610\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"214\"/>\r\n      <point x=\"600\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE30.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE30\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE30\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"600\" y=\"2000\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE30.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE30.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1702\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE31.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE31\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE31\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-255\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE31.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE31.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-282\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE32.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE32\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE32\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-29\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE32.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE32.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"-83\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE33.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE33\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE33\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"800\" y=\"873\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"800\" y=\"873\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE33.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE33.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"800\" y=\"710\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"800\" y=\"710\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE34.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE34\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE34\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE34.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE34.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE35.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE35\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE35\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"648\"/>\r\n      <point x=\"800\" y=\"1324\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"1098\"/>\r\n      <point x=\"800\" y=\"422\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE35.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE35.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"511\"/>\r\n      <point x=\"800\" y=\"1107\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"1000\" y=\"908\"/>\r\n      <point x=\"800\" y=\"313\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE36.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE36\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE36\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE36.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE36.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE37.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE37\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE37\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"1144\"/>\r\n      <point x=\"400\" y=\"1685\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"1144\"/>\r\n      <point x=\"800\" y=\"332\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE37.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE37.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"948\"/>\r\n      <point x=\"400\" y=\"1424\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"948\"/>\r\n      <point x=\"800\" y=\"234\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE38.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE38\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE38\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"422\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-29\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE38.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE38.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n    <contour>\r\n      <point x=\"0\" y=\"313\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"0\" y=\"-83\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE39.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE39\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE39\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"873\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE39.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE39.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"710\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1685\"/>\r\n      <point x=\"1000\" y=\"1144\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"602\"/>\r\n      <point x=\"400\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1424\"/>\r\n      <point x=\"1000\" y=\"948\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"472\"/>\r\n      <point x=\"400\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE3F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"560\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE3F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"560\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE40.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE40\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE40\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE40.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE40.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"948\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE41.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE41\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE41\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"600\" y=\"1098\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"600\" y=\"647\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE41.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE41.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"600\" y=\"908\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"600\" y=\"512\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE42.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE42\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE42\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE42.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE42.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"1200\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE43.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE43\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE43\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"2226\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1414\"/>\r\n      <point x=\"400\" y=\"602\"/>\r\n      <point x=\"0\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"1144\"/>\r\n      <point x=\"400\" y=\"1685\"/>\r\n      <point x=\"400\" y=\"2226\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE43.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE43.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"800\" y=\"1900\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"800\" y=\"1186\"/>\r\n      <point x=\"400\" y=\"472\"/>\r\n      <point x=\"0\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"200\" y=\"948\"/>\r\n      <point x=\"400\" y=\"1424\"/>\r\n      <point x=\"400\" y=\"1900\" type=\"curve\" smooth=\"yes\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE44.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE44\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE44\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE44.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE44.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE45.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE45\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE45\"/>\r\n  <outline>\r\n    <component base=\"largeType-1CE43\"/>\r\n    <contour>\r\n      <point x=\"200\" y=\"1009\" type=\"line\"/>\r\n      <point x=\"300\" y=\"873\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"500\" y=\"602\"/>\r\n      <point x=\"500\" y=\"602\"/>\r\n      <point x=\"700\" y=\"602\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"600\" y=\"61\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"400\" y=\"61\"/>\r\n      <point x=\"200\" y=\"331\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE45.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE45.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <component base=\"largeType-1CE43.stypo\"/>\r\n    <contour>\r\n      <point x=\"200\" y=\"829\" type=\"line\"/>\r\n      <point x=\"300\" y=\"710\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"500\" y=\"472\"/>\r\n      <point x=\"500\" y=\"472\"/>\r\n      <point x=\"700\" y=\"472\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"900\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"600\" y=\"-4\" type=\"line\" smooth=\"yes\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"400\" y=\"-4\"/>\r\n      <point x=\"200\" y=\"234\" type=\"curve\" smooth=\"yes\"/>\r\n      <point x=\"0\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE46.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE46\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE46\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"640\" y=\"602\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1324\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1775\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1324\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE46.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE46.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"640\" y=\"472\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1107\" type=\"line\"/>\r\n      <point x=\"0\" y=\"1503\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1107\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE47.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE47\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE47\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE47.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE47.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE48.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE48\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE48\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE48.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE48.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE49.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE49\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE49\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE49.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE49.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4A.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4A\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4A\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4A.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4A.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4B.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4B\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4B\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4B.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4B.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4C.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4C\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4C\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"61\" type=\"line\"/>\r\n      <point x=\"400\" y=\"61\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4C.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4C.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"-4\" type=\"line\"/>\r\n      <point x=\"400\" y=\"-4\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4D.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4D\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4D\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4D.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4D.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4E.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4E\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4E\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"602\" type=\"line\"/>\r\n      <point x=\"400\" y=\"602\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4E.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4E.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"472\" type=\"line\"/>\r\n      <point x=\"400\" y=\"472\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4F.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4F\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE4F\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1685\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4F.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE4F.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1424\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE50.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE50\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <unicode hex=\"1CE50\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1144\" type=\"line\"/>\r\n      <point x=\"400\" y=\"1144\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE50.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\r\n<glyph name=\"largeType-1CE50.stypo\" format=\"2\">\r\n  <advance width=\"1200\"/>\r\n  <outline>\r\n    <contour>\r\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\r\n      <point x=\"800\" y=\"948\" type=\"line\"/>\r\n      <point x=\"400\" y=\"948\" type=\"line\"/>\r\n    </contour>\r\n  </outline>\r\n</glyph>\r\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lari.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lari\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BE\"/>\n  <outline>\n    <contour>\n      <point x=\"295\" y=\"47\" type=\"line\"/>\n      <point x=\"683\" y=\"90\" type=\"line\"/>\n      <point x=\"306\" y=\"90\"/>\n      <point x=\"156\" y=\"302\"/>\n      <point x=\"231\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"306\" y=\"1155\"/>\n      <point x=\"472\" y=\"1350\"/>\n      <point x=\"760\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"1350\"/>\n      <point x=\"1124\" y=\"1202\"/>\n      <point x=\"1066\" y=\"880\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1046\" y=\"768\" type=\"line\"/>\n      <point x=\"1142\" y=\"768\" type=\"line\"/>\n      <point x=\"1162\" y=\"880\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1231\" y=\"1264\"/>\n      <point x=\"1110\" y=\"1440\"/>\n      <point x=\"776\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"422\" y=\"1440\"/>\n      <point x=\"220\" y=\"1217\"/>\n      <point x=\"135\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"71\" y=\"366\"/>\n      <point x=\"143\" y=\"189\"/>\n      <point x=\"305\" y=\"101\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"17\" y=\"0\" type=\"line\"/>\n      <point x=\"989\" y=\"0\" type=\"line\"/>\n      <point x=\"1005\" y=\"90\" type=\"line\"/>\n      <point x=\"33\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"479\" y=\"768\" type=\"line\"/>\n      <point x=\"575\" y=\"768\" type=\"line\"/>\n      <point x=\"716\" y=\"1568\" type=\"line\"/>\n      <point x=\"620\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"713\" y=\"768\" type=\"line\"/>\n      <point x=\"809\" y=\"768\" type=\"line\"/>\n      <point x=\"950\" y=\"1568\" type=\"line\"/>\n      <point x=\"854\" y=\"1568\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/layerinfo.plist",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n  <dict>\n    <key>lib</key>\n    <dict>\n      <key>com.schriftgestaltung.layerId</key>\n      <string>A4690C19-62E3-4552-AAB4-AF5F97C4421F</string>\n      <key>com.schriftgestaltung.layerOrderInGlyph..notdef</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.A.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.AE</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.AEacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abreveacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevedotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevegrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevehookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Abrevetilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Acircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Adieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Adotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Agrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ahookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alpha</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alpha-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Alphatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Amacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Aringacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Asmall</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Astroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Atilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.B</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.B.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Be-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Beta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.C</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.C.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.CR</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ccircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Che-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Chedescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Chi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Cstroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.D</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.D.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dafrican</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dcroat</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.De-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.De-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Delta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dze-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Dzhe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.E.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ebreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ecircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Edotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ef-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ef-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Egrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ehookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.El-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.El-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Em-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Emacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.En-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Endescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eng</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eopen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Epsilon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Epsilontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Er-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ereversed</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ereversed-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Es-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Esh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Etatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Eth</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Etilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ezh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.F</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.F.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Fhook</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.G</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.G.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gamma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gammaafrican</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gbreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ge-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Germandbls</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ghestroke-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gheupturn-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gsmall</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Gstroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.H</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.H.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hadescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hardsign-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Hdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.I.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.IJ</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.IJ_acute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ia-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ibreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Icircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Idotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ie-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iegrave-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Igrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ihookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ii-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iigrave-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iishort-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Imacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Imacron-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Io-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iota</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotaafrican</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotadieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iotatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ismall</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Itilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Iu-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.J</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Jacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Jcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Je-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.K</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.K.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ka-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kadescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.KaiSymbol</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kappa</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Kje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Klinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.L</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.L.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.LIG</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lambda</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ldot</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ldotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Llinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lmiddletilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Lsmall</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.M</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.M.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Mu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.N</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.N.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ncaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ncommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nhookleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nlinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Nu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.O.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.OE</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Obarred-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Obreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ocircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Odieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Odotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ograve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohm</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohornacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorndotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorngrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohornhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohorntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ohungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacronacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omacrongrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omega</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omegatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omicron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Omicrontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oopen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Oslashacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Otilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.P</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.P.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Palochka-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Pe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Phi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Pi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Psi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Q</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Q.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.R</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.R.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Racute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Rho</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.S</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.S.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Schwa</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Schwa-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Scommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Shcha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Shha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Sigma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Softsign-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.T</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.T.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tau</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tdiagonalstroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Te-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Theta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Thorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tlinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tse-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Tshe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.U.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ubreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ucircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Udieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Udotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ugrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhornacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorndotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorngrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhornhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhorntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uhungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Umacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Umacron-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilonafrican</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilondieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Upsilontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Uring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ushort-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ustraight-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ustraightstroke-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Utilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.V</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.V.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ve-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Vhook</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Vturned</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.W</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wdieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Wgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.X</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.X.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Xi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Y</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Y.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ycircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ydieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ydotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yeru-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ygrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Yi-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ymacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ytilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Z</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Ze-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zeta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zhe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.Zhedescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.a</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.a-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abreveacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevedotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevegrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevehookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.abrevetilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.case.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutecomb.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.acutetonecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.adieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.adotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ae</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aeacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.agrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ahookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alpha</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alpha-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.alphatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.amacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ampersand</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ampersand_ampersand.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.anoteleia</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.apostrophemod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.approxequal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.aringacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciicircum</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciicircum_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_at.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asciitilde_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_parenright.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.asterisk_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.at</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.atilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.b</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.b.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash_backslash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backslash_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backspaceControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.backspaceControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.baht</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_braceright.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_bracketright.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bar_underscore_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.be-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.be-cy.loclSRB</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bellControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bellControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.beta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bitcoin</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackHexagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackHorizontalEllipse</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackInWhiteDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackLargeCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackLargeSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumDownTriangleCentred</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumLeftTriangleCentred</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumLozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumRightTriangleCentred</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackMediumUpTriangleCentred</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackParallelogram</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackPentagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallLozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSmilingFace</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerticalEllipse</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerticalRect</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blackVerysmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blank</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blank-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.blankSymbol</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDown.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUp</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUp.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVertical</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVertical.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceleft_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.braceright_numbersign.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketleft_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bracketright_numbersign.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.breve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brevecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.brokenbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bulletoperator</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.bullseye</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.c</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cancelControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cancelControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.careof</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caroncomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.caroncomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ccircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cedillacomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.cent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.che-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.che-cy.salt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.checkmark</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chedescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chedescender-cy.salt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.chi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflexcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.circumflexcomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.clubBlackSuit</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon.center</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_colon_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colon_slash_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colonsign</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.colontriangularmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.comma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaabovecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaaboverightcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaaccentcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaturnedabovecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.commaturnedmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.copyright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.crosshatchFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.currency</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.d</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dagger</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.daggerdbl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dashdownArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcaron.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dcroat</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.de-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.de-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.degree</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deleteControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deleteFormTwoControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.delta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlFourControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlOneControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlThreeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.deviceControlTwoControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.diagonalcrosshatchFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.diamondBlackSuit</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresiscomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresiscomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dieresistonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.divide</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.divisionslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dollar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dollar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dong</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dotbelowcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12345-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12345678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12346-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1234678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12347-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12348-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1235-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12356-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1235678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12357-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12358-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1236-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12367-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots123678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12368-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1237-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12378-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1238-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1245-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1245678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1246-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots124678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1247-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1248-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots125-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1256-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots125678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1257-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1258-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots126-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1267-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots12678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1268-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots127-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1278-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots128-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1345-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1345678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1346-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots134678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1347-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1348-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots135-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1356-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots135678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1357-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1358-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots136-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1367-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots13678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1368-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots137-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1378-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots138-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots145-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots145678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots146-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots14678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots147-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots148-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots15-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots156-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots15678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots157-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots158-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots16-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots167-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots1678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots168-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots17-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots178-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots18-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2345-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2345678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2346-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots234678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2347-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2348-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots235-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2356-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots235678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2357-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2358-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots236-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2367-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots23678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2368-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots237-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2378-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots238-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots245-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots245678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots246-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots24678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots247-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots248-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots25-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots256-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots25678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots257-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots258-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots26-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots267-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots2678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots268-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots27-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots278-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots28-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots345-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots345678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots346-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots34678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots347-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots348-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots35-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots356-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots35678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots357-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots358-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots36-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots367-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots3678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots368-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots37-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots378-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots38-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots45-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots456-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots45678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots457-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots458-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots46-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots467-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots4678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots468-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots47-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots478-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots48-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots5-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots56-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots567-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots5678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots568-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots57-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots578-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots58-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots6-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots67-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots678-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots68-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots7-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots78-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dots8-braille</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dottedCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dottedSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downBlackSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downTipLeftArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downWhiteSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.downWhiteTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dtail</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dze-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.dzhe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.e-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ebreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ecircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.edotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ef-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.egrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ehookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eight.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eightinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eightsuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.el-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ellipsis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.em-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.emacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.emdash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.en-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTextControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTextControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.endescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eng</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.enquiryControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.enquiryControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eopen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.epsilon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.epsilontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_equal_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_greater_greater.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_less_less.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.equivalence</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.er-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ereversed-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.es-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.escapeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.escapeControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.esh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.estimated</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.etatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eth</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.etilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eturned</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.euro</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.eurocurrency</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_exclam.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_exclam_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclam_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclamdouble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.exclamdown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ezh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.f</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.f.locl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.f.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fileSeparatorControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.filledRect</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.firsttonechinese</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fisheye</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.five.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fiveeighths</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fiveinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fivesuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.florin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.formFeedControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.formFeedControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.four.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fourinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.foursuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fraction</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.franc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.fullBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.g</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gamma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gamma-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gbreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ge-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ge-cy.loclSRB</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.germandbls</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ghestroke-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gheupturn-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstop</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstopmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.glottalstopreversed</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.grave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gravetonecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater.center</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.greaterequal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.groupSeparatorControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.gstroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guarani</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guillemetleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guillemetright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guilsinglleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.guilsinglright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.h</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.h.alt</key>\n      <integer>1</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hadescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hardsign-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heartBlackSuit</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglebracketornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglequotationmarkornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglebracketornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglequotationmarkornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hookabovecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hookabovecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalBlackHexagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontalbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horizontallineextension</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horncomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.horncomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.house</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hryvnia</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_asciitilde.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.hyphentwo</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.i</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.i-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ia-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ibreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.icircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.idotless</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ie-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iegrave-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.igrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ihookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ii-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iigrave-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iishort-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ij</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ij_acute</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.imacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.imacron-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.increment</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.infinity</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integral</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integralbt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.integraltp</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.intersection</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.inverseBullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.inverseWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.io-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iota</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iota-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotadieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotadieresistonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iotatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.itilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.j</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.jdotless</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.je-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.k</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.k.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kadescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kaiSymbol</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kappa</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kgreenlandic</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kip</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.kje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.klinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.l</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.l.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lacute.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lambda</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lambdastroke</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.largeCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lari</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbar.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbelt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lbelt.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcaron.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lcommaaccent.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldot</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldot.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ldotbelow.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackPointer</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftRightArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhitePointer</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhiteSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.leftWhiteTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less.alt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less.center</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_asciitilde.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_asterisk_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_bar_bar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_bar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_dollar.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_dollar_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_exclam_hyphen_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal.liga</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_less_less.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_plus.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_plus_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.less_slash_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lessequal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineFeedControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineFeedControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lineseparator</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lira</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.liraTurkish</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.literSign</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.llinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.llinebelow.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lmiddletilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lmiddletilde.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.logicalnot</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.logicalnotReversed</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.longs</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlackWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfInverseWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerHalfWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftHalfWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftQuadrantWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerLeftTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightDiagonalHalfBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightQuadrantWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerRightTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowernumeral-greek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lowlinecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.lslash.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.m</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macronbelowcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macroncomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.macroncomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.manat</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mars</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumBlackSmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumleftpointinganglebracketornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mediumrightpointinganglebracketornament</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.micro</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.minus</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.minute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.mu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.multiply</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.n</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.naira</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.napostrophe</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nbspace</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ncaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ncommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.newlineControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nhookleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nine.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nineinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ninesuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nje-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nlinebelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nonbreakinghyphen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.note-musical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notedbl-musical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notequal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.notidentical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nu</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.nullControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_braceleft.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_bracketleft.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_exclam.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_parenleft.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_question.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore_parenleft.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numeral-greek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.numero</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.o</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.o-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.obarred-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.obreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflexhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ocircumflextilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.odieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.odotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oe</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ogonekcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ograve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohornacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorndotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorngrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohornhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohorntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ohungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacronacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omacrongrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omega</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omegatonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omicron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.omicrontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.one.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onedotenleader</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oneeighth</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onehalf</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oneinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onequarter</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.onesuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oopen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ordfeminine</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ordmasculine</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.orthogonal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oslash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.oslashacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.otilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.overline</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.p</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.palochka-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.paragraph</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenleft_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.parenright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.partialdiff</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pe-cy.loclSRB</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.percent_percent.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_hyphen.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_less.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_period_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.period_question.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.periodcentered</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perispomenicomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.perthousand</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peseta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.peso</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.phi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.pi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_plus.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plus_plus_plus.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.plusminus</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.prescription</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.product</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.psi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.published</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.punctuationspace</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.q</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_colon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_period.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_question.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.question_question_equal.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.questiondown</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.questiongreek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedbl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblbase</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotedblright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quoteleft</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotereversed</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quoteright</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotesinglbase</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.quotesingle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.r</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.r.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.racute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.racute.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.radical</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ratio</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcaron.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rcommaaccent.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rdotbelow.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.recordSeparatorControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.registered</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.replacementCharacter</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.returnsymbol</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.reversedRotatedFloralHeartBullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rho</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackPointer</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhitePointer</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhiteSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rightWhiteTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringbelowcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringcomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ringcomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rotatedFloralHeartBullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ruble</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rupee</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.rupeeIndian</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.s</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.s.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sacute.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scaron.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scedilla.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.schwa</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.schwa-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scircumflex.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.scommaaccent.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sdotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sdotbelow.salt</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.second</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.section</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.semicolon_semicolon.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seven.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seveneighths</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.seveninferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sevensuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadedark</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadedark.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadelight</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shadelight.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shademedium</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shademedium.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shcha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sheqel</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shha-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shha-cy.alt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftInControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftInControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftOutControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.shiftOutControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sigma</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sigmafinal</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.six.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sixinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sixsuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_asterisk.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_backslash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_greater.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.slash_slash_slash.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softhyphen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.softsign-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.space</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.spaceControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.spadeBlackSuit</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfTextControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.startOfTextControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sterling</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.strictlyequivalentto</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.substituteFormTwoControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.summation</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.sunWithRays</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.t</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tau</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tbar</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcedilla</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tcommaaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.te-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.te-cy.loclSRB</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tesh</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.theta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thetamod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.thorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.three.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threeeighths</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threeinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threequarters</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.threesuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tildecomb</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tildecomb.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tonos.case</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfBlackDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topHalfWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.topRightHalfWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.trademark</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tse-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tshe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.tugrik</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.half</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.two.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twoinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.twosuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.u-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ubreve</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ucircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.udieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.udotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ugrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorn</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhornacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorndotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorngrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhornhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhorntilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uhungarumlaut</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.umacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.umacron-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_end.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_middle.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_start.seq</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscore_underscore.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.underscoredbl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.unitSeparatorControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uogonek</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upBlackSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDashArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDownArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upDownbaseArrow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upLeftHalfBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upRightHalfBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteSmallTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangleWithDot</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlackWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperHalfInverseWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftDiagonalHalfBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftQuadrantWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperLeftWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightArc</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlackCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlackTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlock</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightBlock.stypo</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightQuadrantWhiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperRightTriangle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperlefttolowerrightFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upperrighttolowerleftFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilon-latin</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilondieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilondieresistonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.upsilontonos</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.uring</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ushort-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ustraight-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ustraightstroke-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.utilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.v</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ve-cy.salt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vectorOrCrossProduct</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.venus</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalBisectingLineWhiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalFillCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalFillSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl.ss20</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vhook</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.vturned</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.w</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.w_w_w.liga</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wcircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wdieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wgrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteBullet</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteCircle</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteHexagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteHorizontalEllipse</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteInBlackSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLargeSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLowerLeftQuadrantSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteLowerRightQuadrantSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteMediumDiamond</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteMediumLozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteParallelogram</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whitePentagon</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteRect</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteRoundedCornersSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmallLozenge</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSmilingFace</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteUpperLeftQuadrantSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteUpperRightQuadrantSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerticalEllipse</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerticalRect</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.whiteVerysmallSquare</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.wmod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.won</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.x</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.x.multiply</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.xi</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.y</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ycircumflex</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ydieresis</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ydotbelow</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yen</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yeru-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ygrave</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yhookabove</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.yi-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ymacron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ymod</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ytilde</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.z</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zacute</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zacute.loclPLK</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zcaron</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zdotaccent</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.ze-cy.salt</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.dnom</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.numr</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zero.zero</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zeroinferior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zerosuperior</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zeta</key>\n      <integer>2</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhe-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhe-cy.loclBGR</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zhedescender-cy</key>\n      <integer>0</integer>\n      <key>com.schriftgestaltung.layerOrderInGlyph.zmod</key>\n      <integer>2</integer>\n    </dict>\n  </dict>\n</plist>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lbar.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbar\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"019A\"/>\n  <outline>\n    <contour>\n      <point x=\"134\" y=\"677\" type=\"line\"/>\n      <point x=\"951\" y=\"677\" type=\"line\"/>\n      <point x=\"967\" y=\"765\" type=\"line\"/>\n      <point x=\"150\" y=\"765\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lbar.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbar.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"119\" y=\"863\" type=\"line\"/>\n      <point x=\"1167\" y=\"863\" type=\"line\"/>\n      <point x=\"1183\" y=\"951\" type=\"line\"/>\n      <point x=\"135\" y=\"951\" type=\"line\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lbelt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbelt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026C\"/>\n  <outline>\n    <contour>\n      <point x=\"363\" y=\"970\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"412\" y=\"970\"/>\n      <point x=\"480\" y=\"952\"/>\n      <point x=\"545\" y=\"890\" type=\"curve\"/>\n      <point x=\"603\" y=\"962\" type=\"line\"/>\n      <point x=\"540\" y=\"1025\"/>\n      <point x=\"455\" y=\"1062\"/>\n      <point x=\"376\" y=\"1062\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"198\" y=\"1062\"/>\n      <point x=\"92\" y=\"971\"/>\n      <point x=\"92\" y=\"816\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"92\" y=\"617\"/>\n      <point x=\"311\" y=\"512\"/>\n      <point x=\"508\" y=\"512\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"718\" y=\"512\"/>\n      <point x=\"905\" y=\"555\"/>\n      <point x=\"1053\" y=\"637\" type=\"curve\"/>\n      <point x=\"1016\" y=\"723\" type=\"line\"/>\n      <point x=\"861\" y=\"645\"/>\n      <point x=\"691\" y=\"604\"/>\n      <point x=\"521\" y=\"604\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"374\" y=\"604\"/>\n      <point x=\"188\" y=\"679\"/>\n      <point x=\"188\" y=\"822\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"188\" y=\"915\"/>\n      <point x=\"253\" y=\"970\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lbelt.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lbelt.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"293\" y=\"1340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"1340\"/>\n      <point x=\"410\" y=\"1322\"/>\n      <point x=\"475\" y=\"1260\" type=\"curve\"/>\n      <point x=\"533\" y=\"1332\" type=\"line\"/>\n      <point x=\"470\" y=\"1395\"/>\n      <point x=\"385\" y=\"1432\"/>\n      <point x=\"306\" y=\"1432\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"134\" y=\"1432\"/>\n      <point x=\"32\" y=\"1337\"/>\n      <point x=\"32\" y=\"1176\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"32\" y=\"957\"/>\n      <point x=\"320\" y=\"842\"/>\n      <point x=\"578\" y=\"842\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"842\"/>\n      <point x=\"1091\" y=\"906\"/>\n      <point x=\"1283\" y=\"1027\" type=\"curve\"/>\n      <point x=\"1246\" y=\"1113\" type=\"line\"/>\n      <point x=\"1041\" y=\"996\"/>\n      <point x=\"816\" y=\"934\"/>\n      <point x=\"591\" y=\"934\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"387\" y=\"934\"/>\n      <point x=\"128\" y=\"1019\"/>\n      <point x=\"128\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"128\" y=\"1281\"/>\n      <point x=\"189\" y=\"1340\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lcaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013E\"/>\n  <outline>\n    <contour>\n      <point x=\"930\" y=\"1188\" type=\"line\"/>\n      <point x=\"1012\" y=\"1188\" type=\"line\"/>\n      <point x=\"1164\" y=\"1568\" type=\"line\"/>\n      <point x=\"1059\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lcaron.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcaron.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1220\" y=\"1188\" type=\"line\"/>\n      <point x=\"1302\" y=\"1188\" type=\"line\"/>\n      <point x=\"1454\" y=\"1568\" type=\"line\"/>\n      <point x=\"1349\" y=\"1568\" type=\"line\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lcommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"013C\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"commaaccentcomb\" xOffset=\"94\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lcommaaccent.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lcommaaccent.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ldot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0140\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"periodcentered\" xOffset=\"546\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ldot.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldot.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"periodcentered\" xOffset=\"586\" yOffset=\"80\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ldotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E37\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"93\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ldotbelow.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ldotbelow.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndLowerOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7C\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n      <point x=\"150\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndLowerOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n      <point x=\"150\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndUpperOneEightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FB7D\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"2226\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"150\" y=\"1888\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftAndUpperOneEightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1900\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"150\" y=\"1602\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2190\"/>\n  <outline>\n    <contour>\n      <point x=\"410\" y=\"300\" type=\"line\"/>\n      <point x=\"486\" y=\"362\" type=\"line\"/>\n      <point x=\"218\" y=\"695\" type=\"line\"/>\n      <point x=\"222\" y=\"713\" type=\"line\"/>\n      <point x=\"619\" y=\"1049\" type=\"line\"/>\n      <point x=\"556\" y=\"1120\" type=\"line\"/>\n      <point x=\"98\" y=\"722\" type=\"line\"/>\n      <point x=\"94\" y=\"700\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"172\" y=\"664\" type=\"line\"/>\n      <point x=\"1124\" y=\"664\" type=\"line\"/>\n      <point x=\"1139\" y=\"754\" type=\"line\"/>\n      <point x=\"188\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lackP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackPointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C4\"/>\n  <note>\ntriaglf\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"350\" type=\"line\"/>\n      <point x=\"1080\" y=\"1070\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lackS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C2\"/>\n  <note>\nuni25C2\n</note>\n  <outline>\n    <contour>\n      <point x=\"1005\" y=\"241\" type=\"line\"/>\n      <point x=\"1005\" y=\"1179\" type=\"line\"/>\n      <point x=\"208\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C0\"/>\n  <note>\nuni25C0\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"110\" type=\"line\"/>\n      <point x=\"1080\" y=\"1310\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258C\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258B\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"-480\" type=\"line\"/>\n      <point x=\"750\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftH_alfB_lackC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D6\"/>\n  <note>\nuni25D6\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\"/>\n      <point x=\"600\" y=\"1235\" type=\"line\"/>\n      <point x=\"284\" y=\"1235\"/>\n      <point x=\"75\" y=\"1026\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftH_alfB_lackD_iamond.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackDiamond\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B16\"/>\n  <note>\nuni2B16\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"192\" type=\"line\"/>\n      <point x=\"600\" y=\"1228\" type=\"line\"/>\n      <point x=\"67\" y=\"710\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteDiamond\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E7\"/>\n  <note>\nuni25E7\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"235\" type=\"line\"/>\n      <point x=\"600\" y=\"1185\" type=\"line\"/>\n      <point x=\"115\" y=\"1185\" type=\"line\"/>\n      <point x=\"115\" y=\"235\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D0\"/>\n  <note>\nuni25D0\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"245\" type=\"line\"/>\n      <point x=\"600\" y=\"1175\" type=\"line\"/>\n      <point x=\"259\" y=\"1094\" type=\"line\"/>\n      <point x=\"112\" y=\"704\" type=\"line\"/>\n      <point x=\"259\" y=\"351\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258F\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"-480\" type=\"line\"/>\n      <point x=\"150\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258E\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"-480\" type=\"line\"/>\n      <point x=\"300\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neT_hirdB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneThirdBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBCF\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftOneThirdBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"-480\" type=\"line\"/>\n      <point x=\"400\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftR_ightA_rrow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftRightArrow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2194\"/>\n  <outline>\n    <contour>\n      <point x=\"708\" y=\"300\" type=\"line\"/>\n      <point x=\"1166\" y=\"698\" type=\"line\"/>\n      <point x=\"1170\" y=\"720\" type=\"line\"/>\n      <point x=\"854\" y=\"1120\" type=\"line\"/>\n      <point x=\"778\" y=\"1058\" type=\"line\"/>\n      <point x=\"1046\" y=\"725\" type=\"line\"/>\n      <point x=\"1042\" y=\"707\" type=\"line\"/>\n      <point x=\"645\" y=\"371\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"410\" y=\"300\" type=\"line\"/>\n      <point x=\"486\" y=\"362\" type=\"line\"/>\n      <point x=\"218\" y=\"695\" type=\"line\"/>\n      <point x=\"222\" y=\"713\" type=\"line\"/>\n      <point x=\"619\" y=\"1049\" type=\"line\"/>\n      <point x=\"556\" y=\"1120\" type=\"line\"/>\n      <point x=\"98\" y=\"722\" type=\"line\"/>\n      <point x=\"94\" y=\"700\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"184\" y=\"664\" type=\"line\"/>\n      <point x=\"1076\" y=\"664\" type=\"line\"/>\n      <point x=\"1091\" y=\"754\" type=\"line\"/>\n      <point x=\"200\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2589\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"-480\" type=\"line\"/>\n      <point x=\"1050\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258D\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"-480\" type=\"line\"/>\n      <point x=\"450\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"258A\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"-480\" type=\"line\"/>\n      <point x=\"900\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_woT_hirdsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftTwoThirdsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1FBCE\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"2226\" type=\"line\"/>\n      <point x=\"0\" y=\"2226\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftTwoThirdsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"-480\" type=\"line\"/>\n      <point x=\"800\" y=\"1900\" type=\"line\"/>\n      <point x=\"0\" y=\"1900\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftW_hiteP_ointer.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhitePointer\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C5\"/>\n  <note>\nuni25C5\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"350\" type=\"line\"/>\n      <point x=\"1080\" y=\"1070\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"990\" y=\"461\" type=\"line\"/>\n      <point x=\"1008\" y=\"484\" type=\"line\"/>\n      <point x=\"296\" y=\"719\" type=\"line\"/>\n      <point x=\"296\" y=\"701\" type=\"line\"/>\n      <point x=\"1008\" y=\"936\" type=\"line\"/>\n      <point x=\"990\" y=\"959\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftW_hiteS_mallT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhiteSmallTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C3\"/>\n  <note>\nuni25C3\n</note>\n  <outline>\n    <contour>\n      <point x=\"1005\" y=\"241\" type=\"line\"/>\n      <point x=\"1005\" y=\"1179\" type=\"line\"/>\n      <point x=\"208\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"915\" y=\"365\" type=\"line\"/>\n      <point x=\"961\" y=\"371\" type=\"line\"/>\n      <point x=\"324\" y=\"744\" type=\"line\"/>\n      <point x=\"324\" y=\"673\" type=\"line\"/>\n      <point x=\"952\" y=\"1044\" type=\"line\"/>\n      <point x=\"915\" y=\"1048\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftW_hiteT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"leftWhiteTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25C1\"/>\n  <note>\nuni25C1\n</note>\n  <outline>\n    <contour>\n      <point x=\"1080\" y=\"110\" type=\"line\"/>\n      <point x=\"1080\" y=\"1310\" type=\"line\"/>\n      <point x=\"60\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1000\" y=\"220\" type=\"line\"/>\n      <point x=\"1054\" y=\"228\" type=\"line\"/>\n      <point x=\"230\" y=\"713\" type=\"line\"/>\n      <point x=\"230\" y=\"705\" type=\"line\"/>\n      <point x=\"1060\" y=\"1193\" type=\"line\"/>\n      <point x=\"1000\" y=\"1190\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less.alt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less.alt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"808\" y=\"25\" type=\"line\"/>\n      <point x=\"884\" y=\"87\" type=\"line\"/>\n      <point x=\"394\" y=\"693\" type=\"line\"/>\n      <point x=\"398\" y=\"711\" type=\"line\"/>\n      <point x=\"1111\" y=\"1332\" type=\"line\"/>\n      <point x=\"1048\" y=\"1403\" type=\"line\"/>\n      <point x=\"274\" y=\"720\" type=\"line\"/>\n      <point x=\"270\" y=\"698\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less.center.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less.center\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1054\" y=\"214\" type=\"line\"/>\n      <point x=\"1072\" y=\"318\" type=\"line\"/>\n      <point x=\"218\" y=\"700\" type=\"line\"/>\n      <point x=\"220\" y=\"708\" type=\"line\"/>\n      <point x=\"1208\" y=\"1088\" type=\"line\"/>\n      <point x=\"1229\" y=\"1204\" type=\"line\"/>\n      <point x=\"68\" y=\"745\" type=\"line\"/>\n      <point x=\"56\" y=\"673\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"003C\"/>\n  <outline>\n    <contour>\n      <point x=\"974\" y=\"214\" type=\"line\"/>\n      <point x=\"992\" y=\"313\" type=\"line\"/>\n      <point x=\"238\" y=\"700\" type=\"line\"/>\n      <point x=\"240\" y=\"708\" type=\"line\"/>\n      <point x=\"1129\" y=\"1093\" type=\"line\"/>\n      <point x=\"1149\" y=\"1204\" type=\"line\"/>\n      <point x=\"162\" y=\"765\" type=\"line\"/>\n      <point x=\"142\" y=\"653\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1898\" y=\"517\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2085\" y=\"517\"/>\n      <point x=\"2193\" y=\"619\"/>\n      <point x=\"2227\" y=\"815\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2247\" y=\"930\" type=\"line\"/>\n      <point x=\"2151\" y=\"930\" type=\"line\"/>\n      <point x=\"2133\" y=\"826\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2108\" y=\"679\"/>\n      <point x=\"2032\" y=\"607\"/>\n      <point x=\"1912\" y=\"607\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1804\" y=\"607\"/>\n      <point x=\"1729\" y=\"672\"/>\n      <point x=\"1647\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1558\" y=\"777\"/>\n      <point x=\"1471\" y=\"842\"/>\n      <point x=\"1355\" y=\"842\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1175\" y=\"842\"/>\n      <point x=\"1043\" y=\"705\"/>\n      <point x=\"833\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"671\" y=\"705\"/>\n      <point x=\"549\" y=\"753\"/>\n      <point x=\"375\" y=\"753\" type=\"curve\"/>\n      <point x=\"360\" y=\"671\" type=\"line\"/>\n      <point x=\"526\" y=\"671\"/>\n      <point x=\"661\" y=\"615\"/>\n      <point x=\"827\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1038\" y=\"615\"/>\n      <point x=\"1174\" y=\"752\"/>\n      <point x=\"1349\" y=\"752\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1444\" y=\"752\"/>\n      <point x=\"1512\" y=\"689\"/>\n      <point x=\"1590\" y=\"643\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1685\" y=\"587\"/>\n      <point x=\"1773\" y=\"517\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde_asciitilde.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1938\" y=\"547\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2044\" y=\"547\"/>\n      <point x=\"2180\" y=\"599\"/>\n      <point x=\"2306\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2392\" y=\"700\"/>\n      <point x=\"2478\" y=\"734\"/>\n      <point x=\"2550\" y=\"734\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2635\" y=\"734\"/>\n      <point x=\"2706\" y=\"694\"/>\n      <point x=\"2780\" y=\"654\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2872\" y=\"605\"/>\n      <point x=\"2965\" y=\"547\"/>\n      <point x=\"3083\" y=\"547\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3284\" y=\"547\"/>\n      <point x=\"3396\" y=\"646\"/>\n      <point x=\"3432\" y=\"848\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3448\" y=\"938\" type=\"line\"/>\n      <point x=\"3352\" y=\"938\" type=\"line\"/>\n      <point x=\"3340\" y=\"868\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"3313\" y=\"709\"/>\n      <point x=\"3229\" y=\"632\"/>\n      <point x=\"3096\" y=\"632\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3008\" y=\"632\"/>\n      <point x=\"2938\" y=\"679\"/>\n      <point x=\"2863\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2779\" y=\"768\"/>\n      <point x=\"2686\" y=\"824\"/>\n      <point x=\"2572\" y=\"824\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2473\" y=\"824\"/>\n      <point x=\"2350\" y=\"778\"/>\n      <point x=\"2234\" y=\"722\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2134\" y=\"675\"/>\n      <point x=\"2031\" y=\"638\"/>\n      <point x=\"1947\" y=\"638\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1873\" y=\"638\"/>\n      <point x=\"1821\" y=\"663\"/>\n      <point x=\"1758\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1678\" y=\"759\"/>\n      <point x=\"1588\" y=\"804\"/>\n      <point x=\"1451\" y=\"804\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1205\" y=\"804\"/>\n      <point x=\"1093\" y=\"707\"/>\n      <point x=\"841\" y=\"707\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"621\" y=\"707\"/>\n      <point x=\"564\" y=\"756\"/>\n      <point x=\"375\" y=\"756\" type=\"curve\"/>\n      <point x=\"360\" y=\"670\" type=\"line\"/>\n      <point x=\"549\" y=\"670\"/>\n      <point x=\"606\" y=\"617\"/>\n      <point x=\"828\" y=\"617\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"617\"/>\n      <point x=\"1196\" y=\"714\"/>\n      <point x=\"1439\" y=\"714\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1541\" y=\"714\"/>\n      <point x=\"1612\" y=\"678\"/>\n      <point x=\"1682\" y=\"632\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1767\" y=\"577\"/>\n      <point x=\"1840\" y=\"547\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"15\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asciitilde_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asciitilde_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2262\"/>\n    <component base=\"less\" xOffset=\"158\"/>\n    <component base=\"asciitilde\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"158\"/>\n    <component base=\"asterisk\" xOffset=\"1105\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asterisk_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_asterisk_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2262\"/>\n    <component base=\"less\" xOffset=\"158\"/>\n    <component base=\"asterisk\" xOffset=\"1217\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1910\" y=\"1387\" type=\"line\"/>\n      <point x=\"398\" y=\"772\" type=\"line\"/>\n      <point x=\"376\" y=\"650\" type=\"line\"/>\n      <point x=\"1910\" y=\"-77\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1816\" y=\"1250\" type=\"line\"/>\n      <point x=\"1816\" y=\"75\" type=\"line\"/>\n      <point x=\"484\" y=\"694\" type=\"line\"/>\n      <point x=\"487\" y=\"712\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"2238\"/>\n    <component base=\"less_bar.liga\" xOffset=\"141\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_bar_bar_bar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_bar_bar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"bar\" xOffset=\"2271\"/>\n    <component base=\"bar\" xOffset=\"3241\"/>\n    <component base=\"less_bar.liga\" xOffset=\"141\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_bar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_bar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2262\"/>\n    <component base=\"less\" xOffset=\"158\"/>\n    <component base=\"bar\" xOffset=\"1209\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1649\" y=\"-44\" type=\"line\"/>\n      <point x=\"1667\" y=\"55\" type=\"line\"/>\n      <point x=\"295\" y=\"700\" type=\"line\"/>\n      <point x=\"297\" y=\"708\" type=\"line\"/>\n      <point x=\"1186\" y=\"1093\" type=\"line\"/>\n      <point x=\"1206\" y=\"1204\" type=\"line\"/>\n      <point x=\"219\" y=\"765\" type=\"line\"/>\n      <point x=\"199\" y=\"653\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1537\" y=\"-320\" type=\"line\"/>\n      <point x=\"1633\" y=\"-320\" type=\"line\"/>\n      <point x=\"1701\" y=\"66\" type=\"line\"/>\n      <point x=\"1605\" y=\"66\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1599\" y=\"-20\" type=\"line\"/>\n      <point x=\"1926\" y=\"-20\"/>\n      <point x=\"2120\" y=\"114\"/>\n      <point x=\"2120\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2120\" y=\"459\"/>\n      <point x=\"2037\" y=\"544\"/>\n      <point x=\"1936\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1662\" y=\"864\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1578\" y=\"935\"/>\n      <point x=\"1513\" y=\"1013\"/>\n      <point x=\"1513\" y=\"1114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1513\" y=\"1262\"/>\n      <point x=\"1634\" y=\"1350\"/>\n      <point x=\"1840\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1972\" y=\"1350\"/>\n      <point x=\"2095\" y=\"1309\"/>\n      <point x=\"2199\" y=\"1201\" type=\"curve\"/>\n      <point x=\"2270\" y=\"1271\" type=\"line\"/>\n      <point x=\"2169\" y=\"1382\"/>\n      <point x=\"2026\" y=\"1440\"/>\n      <point x=\"1852\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1579\" y=\"1440\"/>\n      <point x=\"1417\" y=\"1313\"/>\n      <point x=\"1417\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1417\" y=\"981\"/>\n      <point x=\"1485\" y=\"890\"/>\n      <point x=\"1575\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1889\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1963\" y=\"482\"/>\n      <point x=\"2024\" y=\"412\"/>\n      <point x=\"2024\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2024\" y=\"162\"/>\n      <point x=\"1873\" y=\"70\"/>\n      <point x=\"1618\" y=\"70\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1839\" y=\"1393\" type=\"line\"/>\n      <point x=\"1935\" y=\"1393\" type=\"line\"/>\n      <point x=\"1996\" y=\"1740\" type=\"line\"/>\n      <point x=\"1900\" y=\"1740\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_dollar.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1537\" y=\"-320\" type=\"line\"/>\n      <point x=\"1633\" y=\"-320\" type=\"line\"/>\n      <point x=\"1996\" y=\"1740\" type=\"line\"/>\n      <point x=\"1900\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1599\" y=\"-20\" type=\"line\"/>\n      <point x=\"1926\" y=\"-20\"/>\n      <point x=\"2120\" y=\"114\"/>\n      <point x=\"2120\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2120\" y=\"459\"/>\n      <point x=\"2037\" y=\"544\"/>\n      <point x=\"1936\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1662\" y=\"864\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1578\" y=\"935\"/>\n      <point x=\"1513\" y=\"1013\"/>\n      <point x=\"1513\" y=\"1114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1513\" y=\"1262\"/>\n      <point x=\"1634\" y=\"1350\"/>\n      <point x=\"1840\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1972\" y=\"1350\"/>\n      <point x=\"2095\" y=\"1309\"/>\n      <point x=\"2199\" y=\"1201\" type=\"curve\"/>\n      <point x=\"2270\" y=\"1271\" type=\"line\"/>\n      <point x=\"2169\" y=\"1382\"/>\n      <point x=\"2026\" y=\"1440\"/>\n      <point x=\"1852\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1579\" y=\"1440\"/>\n      <point x=\"1417\" y=\"1313\"/>\n      <point x=\"1417\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1417\" y=\"981\"/>\n      <point x=\"1485\" y=\"890\"/>\n      <point x=\"1575\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1889\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1963\" y=\"482\"/>\n      <point x=\"2024\" y=\"412\"/>\n      <point x=\"2024\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2024\" y=\"162\"/>\n      <point x=\"1873\" y=\"70\"/>\n      <point x=\"1618\" y=\"70\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1649\" y=\"-44\" type=\"line\"/>\n      <point x=\"1667\" y=\"55\" type=\"line\"/>\n      <point x=\"295\" y=\"700\" type=\"line\"/>\n      <point x=\"297\" y=\"708\" type=\"line\"/>\n      <point x=\"1186\" y=\"1093\" type=\"line\"/>\n      <point x=\"1206\" y=\"1204\" type=\"line\"/>\n      <point x=\"219\" y=\"765\" type=\"line\"/>\n      <point x=\"199\" y=\"653\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar_greater.liga.BRACKET.600\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1712\" y=\"-44\" type=\"line\"/>\n      <point x=\"1730\" y=\"55\" type=\"line\"/>\n      <point x=\"358\" y=\"700\" type=\"line\"/>\n      <point x=\"360\" y=\"708\" type=\"line\"/>\n      <point x=\"1249\" y=\"1093\" type=\"line\"/>\n      <point x=\"1269\" y=\"1204\" type=\"line\"/>\n      <point x=\"282\" y=\"765\" type=\"line\"/>\n      <point x=\"262\" y=\"653\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1600\" y=\"-320\" type=\"line\"/>\n      <point x=\"1696\" y=\"-320\" type=\"line\"/>\n      <point x=\"1765\" y=\"70\" type=\"line\"/>\n      <point x=\"1669\" y=\"70\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1662\" y=\"-20\" type=\"line\"/>\n      <point x=\"1989\" y=\"-20\"/>\n      <point x=\"2183\" y=\"114\"/>\n      <point x=\"2183\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2183\" y=\"459\"/>\n      <point x=\"2100\" y=\"544\"/>\n      <point x=\"1999\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1725\" y=\"864\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1641\" y=\"935\"/>\n      <point x=\"1576\" y=\"1013\"/>\n      <point x=\"1576\" y=\"1114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1576\" y=\"1262\"/>\n      <point x=\"1697\" y=\"1350\"/>\n      <point x=\"1903\" y=\"1350\" type=\"curve\"/>\n      <point x=\"1915\" y=\"1440\" type=\"line\"/>\n      <point x=\"1642\" y=\"1440\"/>\n      <point x=\"1480\" y=\"1313\"/>\n      <point x=\"1480\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1480\" y=\"981\"/>\n      <point x=\"1548\" y=\"890\"/>\n      <point x=\"1638\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1952\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2026\" y=\"482\"/>\n      <point x=\"2087\" y=\"412\"/>\n      <point x=\"2087\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2087\" y=\"162\"/>\n      <point x=\"1936\" y=\"70\"/>\n      <point x=\"1681\" y=\"70\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"1894\" y=\"1350\" type=\"line\"/>\n      <point x=\"1990\" y=\"1350\" type=\"line\"/>\n      <point x=\"2059\" y=\"1740\" type=\"line\"/>\n      <point x=\"1963\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2349\" y=\"214\" type=\"line\"/>\n      <point x=\"3382\" y=\"653\" type=\"line\"/>\n      <point x=\"3402\" y=\"765\" type=\"line\"/>\n      <point x=\"1972\" y=\"1449\" type=\"line\"/>\n      <point x=\"1954\" y=\"1350\" type=\"line\"/>\n      <point x=\"3306\" y=\"718\" type=\"line\"/>\n      <point x=\"3304\" y=\"710\" type=\"line\"/>\n      <point x=\"2369\" y=\"325\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[600]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_dollar_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_dollar_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1712\" y=\"-44\" type=\"line\"/>\n      <point x=\"1730\" y=\"55\" type=\"line\"/>\n      <point x=\"358\" y=\"700\" type=\"line\"/>\n      <point x=\"360\" y=\"708\" type=\"line\"/>\n      <point x=\"1249\" y=\"1093\" type=\"line\"/>\n      <point x=\"1269\" y=\"1204\" type=\"line\"/>\n      <point x=\"282\" y=\"765\" type=\"line\"/>\n      <point x=\"262\" y=\"653\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1600\" y=\"-320\" type=\"line\"/>\n      <point x=\"1696\" y=\"-320\" type=\"line\"/>\n      <point x=\"2059\" y=\"1740\" type=\"line\"/>\n      <point x=\"1963\" y=\"1740\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1662\" y=\"-20\" type=\"line\"/>\n      <point x=\"1989\" y=\"-20\"/>\n      <point x=\"2183\" y=\"114\"/>\n      <point x=\"2183\" y=\"342\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2183\" y=\"459\"/>\n      <point x=\"2100\" y=\"544\"/>\n      <point x=\"1999\" y=\"630\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1725\" y=\"864\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1641\" y=\"935\"/>\n      <point x=\"1576\" y=\"1013\"/>\n      <point x=\"1576\" y=\"1114\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1576\" y=\"1262\"/>\n      <point x=\"1697\" y=\"1350\"/>\n      <point x=\"1903\" y=\"1350\" type=\"curve\"/>\n      <point x=\"1915\" y=\"1440\" type=\"line\"/>\n      <point x=\"1642\" y=\"1440\"/>\n      <point x=\"1480\" y=\"1313\"/>\n      <point x=\"1480\" y=\"1097\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1480\" y=\"981\"/>\n      <point x=\"1548\" y=\"890\"/>\n      <point x=\"1638\" y=\"814\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1952\" y=\"546\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2026\" y=\"482\"/>\n      <point x=\"2087\" y=\"412\"/>\n      <point x=\"2087\" y=\"319\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2087\" y=\"162\"/>\n      <point x=\"1936\" y=\"70\"/>\n      <point x=\"1681\" y=\"70\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"2349\" y=\"214\" type=\"line\"/>\n      <point x=\"3382\" y=\"653\" type=\"line\"/>\n      <point x=\"3402\" y=\"765\" type=\"line\"/>\n      <point x=\"1972\" y=\"1449\" type=\"line\"/>\n      <point x=\"1954\" y=\"1350\" type=\"line\"/>\n      <point x=\"3306\" y=\"718\" type=\"line\"/>\n      <point x=\"3304\" y=\"710\" type=\"line\"/>\n      <point x=\"2369\" y=\"325\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1942\" y=\"490\" type=\"line\"/>\n      <point x=\"1959\" y=\"589\" type=\"line\"/>\n      <point x=\"708\" y=\"957\" type=\"line\"/>\n      <point x=\"710\" y=\"975\" type=\"line\"/>\n      <point x=\"2091\" y=\"1336\" type=\"line\"/>\n      <point x=\"2109\" y=\"1435\" type=\"line\"/>\n      <point x=\"593\" y=\"1023\" type=\"line\"/>\n      <point x=\"573\" y=\"909\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"448\" y=\"194\" type=\"line\"/>\n      <point x=\"1890\" y=\"194\" type=\"line\"/>\n      <point x=\"1906\" y=\"284\" type=\"line\"/>\n      <point x=\"464\" y=\"284\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"558\" y=\"914\" type=\"line\"/>\n      <point x=\"695\" y=\"914\" type=\"line\"/>\n      <point x=\"1173\" y=\"1332\" type=\"line\"/>\n      <point x=\"1110\" y=\"1403\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-40\" y=\"414\" type=\"line\"/>\n      <point x=\"588\" y=\"414\" type=\"line\"/>\n      <point x=\"604\" y=\"506\" type=\"line\"/>\n      <point x=\"-24\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"870\" y=\"25\" type=\"line\"/>\n      <point x=\"946\" y=\"87\" type=\"line\"/>\n      <point x=\"608\" y=\"506\" type=\"line\"/>\n      <point x=\"486\" y=\"506\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"48\" y=\"914\" type=\"line\"/>\n      <point x=\"676\" y=\"914\" type=\"line\"/>\n      <point x=\"692\" y=\"1004\" type=\"line\"/>\n      <point x=\"64\" y=\"1004\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"equal_middle.seq\"/>\n    <component base=\"less.alt\" xOffset=\"28\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"914\" type=\"line\"/>\n      <point x=\"1287\" y=\"914\" type=\"line\"/>\n      <point x=\"1303\" y=\"1004\" type=\"line\"/>\n      <point x=\"489\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"385\" y=\"414\" type=\"line\"/>\n      <point x=\"1199\" y=\"414\" type=\"line\"/>\n      <point x=\"1215\" y=\"504\" type=\"line\"/>\n      <point x=\"301\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-176\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_exclam_hyphen_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2342\" y=\"663\" type=\"line\"/>\n      <point x=\"4544\" y=\"663\" type=\"line\"/>\n      <point x=\"4560\" y=\"753\" type=\"line\"/>\n      <point x=\"2358\" y=\"753\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"336\" y=\"664\" type=\"line\"/>\n      <point x=\"1622\" y=\"664\" type=\"line\"/>\n      <point x=\"1638\" y=\"754\" type=\"line\"/>\n      <point x=\"352\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"15\"/>\n    <component base=\"exclam\" xOffset=\"1360\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1154\" y=\"214\" type=\"line\"/>\n      <point x=\"2141\" y=\"653\" type=\"line\"/>\n      <point x=\"2161\" y=\"765\" type=\"line\"/>\n      <point x=\"1329\" y=\"1204\" type=\"line\"/>\n      <point x=\"342\" y=\"765\" type=\"line\"/>\n      <point x=\"322\" y=\"653\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1170\" y=\"319\" type=\"line\"/>\n      <point x=\"418\" y=\"700\" type=\"line\"/>\n      <point x=\"420\" y=\"708\" type=\"line\"/>\n      <point x=\"1324\" y=\"1098\" type=\"line\"/>\n      <point x=\"2065\" y=\"718\" type=\"line\"/>\n      <point x=\"2063\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"424\" y=\"664\" type=\"line\"/>\n      <point x=\"440\" y=\"754\" type=\"line\"/>\n      <point x=\"20\" y=\"754\" type=\"line\"/>\n      <point x=\"4\" y=\"664\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"60\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"hyphen_middle.seq\"/>\n    <component base=\"less.alt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1243\" y=\"664\" type=\"line\"/>\n      <point x=\"1259\" y=\"754\" type=\"line\"/>\n      <point x=\"213\" y=\"754\" type=\"line\"/>\n      <point x=\"197\" y=\"664\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-176\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2064\" y=\"214\" type=\"line\"/>\n      <point x=\"2082\" y=\"313\" type=\"line\"/>\n      <point x=\"1278\" y=\"700\" type=\"line\"/>\n      <point x=\"1280\" y=\"708\" type=\"line\"/>\n      <point x=\"2219\" y=\"1093\" type=\"line\"/>\n      <point x=\"2239\" y=\"1204\" type=\"line\"/>\n      <point x=\"1202\" y=\"765\" type=\"line\"/>\n      <point x=\"1182\" y=\"653\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1144\" y=\"214\" type=\"line\"/>\n      <point x=\"1162\" y=\"313\" type=\"line\"/>\n      <point x=\"358\" y=\"700\" type=\"line\"/>\n      <point x=\"360\" y=\"708\" type=\"line\"/>\n      <point x=\"1299\" y=\"1093\" type=\"line\"/>\n      <point x=\"1319\" y=\"1204\" type=\"line\"/>\n      <point x=\"282\" y=\"765\" type=\"line\"/>\n      <point x=\"262\" y=\"653\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"equal\" xOffset=\"2344\"/>\n    <component base=\"less\" xOffset=\"1159\"/>\n    <component base=\"less\" xOffset=\"31\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_equal_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"955\" y=\"914\" type=\"line\"/>\n      <point x=\"1092\" y=\"914\" type=\"line\"/>\n      <point x=\"1572\" y=\"1332\" type=\"line\"/>\n      <point x=\"1509\" y=\"1403\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-40\" y=\"414\" type=\"line\"/>\n      <point x=\"987\" y=\"414\" type=\"line\"/>\n      <point x=\"1003\" y=\"506\" type=\"line\"/>\n      <point x=\"-24\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1269\" y=\"25\" type=\"line\"/>\n      <point x=\"1345\" y=\"87\" type=\"line\"/>\n      <point x=\"1007\" y=\"506\" type=\"line\"/>\n      <point x=\"885\" y=\"506\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"48\" y=\"914\" type=\"line\"/>\n      <point x=\"1073\" y=\"914\" type=\"line\"/>\n      <point x=\"1091\" y=\"1004\" type=\"line\"/>\n      <point x=\"64\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"1053\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_equal_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"715\" y=\"914\" type=\"line\"/>\n      <point x=\"852\" y=\"914\" type=\"line\"/>\n      <point x=\"1332\" y=\"1332\" type=\"line\"/>\n      <point x=\"1269\" y=\"1403\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-70\" y=\"414\" type=\"line\"/>\n      <point x=\"747\" y=\"414\" type=\"line\"/>\n      <point x=\"763\" y=\"506\" type=\"line\"/>\n      <point x=\"-54\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1029\" y=\"25\" type=\"line\"/>\n      <point x=\"1105\" y=\"87\" type=\"line\"/>\n      <point x=\"767\" y=\"506\" type=\"line\"/>\n      <point x=\"645\" y=\"506\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"18\" y=\"914\" type=\"line\"/>\n      <point x=\"833\" y=\"914\" type=\"line\"/>\n      <point x=\"851\" y=\"1004\" type=\"line\"/>\n      <point x=\"34\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1385\" y=\"414\" type=\"line\"/>\n      <point x=\"2429\" y=\"414\" type=\"line\"/>\n      <point x=\"2445\" y=\"504\" type=\"line\"/>\n      <point x=\"1301\" y=\"504\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1373\" y=\"914\" type=\"line\"/>\n      <point x=\"2517\" y=\"914\" type=\"line\"/>\n      <point x=\"2533\" y=\"1004\" type=\"line\"/>\n      <point x=\"1489\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"813\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_equal_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_equal_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"2399\" y=\"414\" type=\"line\"/>\n      <point x=\"2415\" y=\"504\" type=\"line\"/>\n      <point x=\"1104\" y=\"504\" type=\"line\"/>\n      <point x=\"1188\" y=\"414\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2487\" y=\"914\" type=\"line\"/>\n      <point x=\"2503\" y=\"1004\" type=\"line\"/>\n      <point x=\"1292\" y=\"1004\" type=\"line\"/>\n      <point x=\"1176\" y=\"914\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-16\"/>\n    <component base=\"less.alt\" xOffset=\"624\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_hyphen_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"4\" y=\"664\" type=\"line\"/>\n      <point x=\"773\" y=\"664\" type=\"line\"/>\n      <point x=\"789\" y=\"754\" type=\"line\"/>\n      <point x=\"20\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"423\"/>\n    <component base=\"less.alt\" xOffset=\"1053\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_hyphen_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1281\" y=\"664\" type=\"line\"/>\n      <point x=\"2473\" y=\"664\" type=\"line\"/>\n      <point x=\"2489\" y=\"754\" type=\"line\"/>\n      <point x=\"1297\" y=\"754\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-26\" y=\"664\" type=\"line\"/>\n      <point x=\"674\" y=\"664\" type=\"line\"/>\n      <point x=\"690\" y=\"754\" type=\"line\"/>\n      <point x=\"-10\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"321\"/>\n    <component base=\"less.alt\" xOffset=\"913\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_hyphen_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_hyphen_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"966\" y=\"664\" type=\"line\"/>\n      <point x=\"2443\" y=\"664\" type=\"line\"/>\n      <point x=\"2459\" y=\"754\" type=\"line\"/>\n      <point x=\"982\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"less.alt\" xOffset=\"-16\"/>\n    <component base=\"less.alt\" xOffset=\"624\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_less.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_less_less.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"2266\"/>\n    <component base=\"less\" xOffset=\"164\"/>\n    <component base=\"less\" xOffset=\"1220\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_plus.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_plus.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"less\" xOffset=\"158\"/>\n    <component base=\"plus\" xOffset=\"1152\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>less</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>plus</string>\n        </dict>\n      </array>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_plus_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_plus_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"greater\" xOffset=\"2262\"/>\n    <component base=\"less\" xOffset=\"158\"/>\n    <component base=\"plus\" xOffset=\"1211\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_slash.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_slash.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1405\" y=\"51\" type=\"line\"/>\n      <point x=\"1423\" y=\"150\" type=\"line\"/>\n      <point x=\"357\" y=\"698\" type=\"line\"/>\n      <point x=\"359\" y=\"706\" type=\"line\"/>\n      <point x=\"1248\" y=\"1091\" type=\"line\"/>\n      <point x=\"1268\" y=\"1202\" type=\"line\"/>\n      <point x=\"281\" y=\"763\" type=\"line\"/>\n      <point x=\"261\" y=\"651\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"1117\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_slash_greater.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"less_slash_greater.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1460\" y=\"22\" type=\"line\"/>\n      <point x=\"1478\" y=\"121\" type=\"line\"/>\n      <point x=\"357\" y=\"698\" type=\"line\"/>\n      <point x=\"359\" y=\"706\" type=\"line\"/>\n      <point x=\"1248\" y=\"1091\" type=\"line\"/>\n      <point x=\"1268\" y=\"1202\" type=\"line\"/>\n      <point x=\"281\" y=\"763\" type=\"line\"/>\n      <point x=\"261\" y=\"651\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"2394\" y=\"214\" type=\"line\"/>\n      <point x=\"3381\" y=\"653\" type=\"line\"/>\n      <point x=\"3401\" y=\"765\" type=\"line\"/>\n      <point x=\"2309\" y=\"1338\" type=\"line\"/>\n      <point x=\"2291\" y=\"1239\" type=\"line\"/>\n      <point x=\"3305\" y=\"718\" type=\"line\"/>\n      <point x=\"3303\" y=\"710\" type=\"line\"/>\n      <point x=\"2414\" y=\"325\" type=\"line\"/>\n    </contour>\n    <component base=\"slash\" xOffset=\"1210\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lessequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lessequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2264\"/>\n  <outline>\n    <contour>\n      <point x=\"1024\" y=\"364\" type=\"line\"/>\n      <point x=\"1040\" y=\"459\" type=\"line\"/>\n      <point x=\"270\" y=\"748\" type=\"line\"/>\n      <point x=\"271\" y=\"756\" type=\"line\"/>\n      <point x=\"1146\" y=\"1059\" type=\"line\"/>\n      <point x=\"1163\" y=\"1154\" type=\"line\"/>\n      <point x=\"194\" y=\"815\" type=\"line\"/>\n      <point x=\"174\" y=\"703\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"77\" y=\"151\" type=\"line\"/>\n      <point x=\"986\" y=\"151\" type=\"line\"/>\n      <point x=\"1001\" y=\"241\" type=\"line\"/>\n      <point x=\"92\" y=\"241\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lineF_eedC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineFeedControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"240A\"/>\n  <outline>\n    <component base=\"L.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"F.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>F.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lineF_eedC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineFeedControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"1144\" type=\"line\"/>\n      <point x=\"1125\" y=\"1144\" type=\"line\"/>\n      <point x=\"1125\" y=\"1234\" type=\"line\"/>\n      <point x=\"75\" y=\"1234\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"184\" type=\"line\"/>\n      <point x=\"1125\" y=\"184\" type=\"line\"/>\n      <point x=\"1125\" y=\"274\" type=\"line\"/>\n      <point x=\"75\" y=\"274\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"75\" y=\"664\" type=\"line\"/>\n      <point x=\"1125\" y=\"664\" type=\"line\"/>\n      <point x=\"1125\" y=\"754\" type=\"line\"/>\n      <point x=\"75\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lineseparator.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lineseparator\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2028\"/>\n  <outline>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lira.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lira\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A4\"/>\n  <outline>\n    <contour>\n      <point x=\"76\" y=\"0\" type=\"line\"/>\n      <point x=\"146\" y=\"0\" type=\"line\"/>\n      <point x=\"162\" y=\"90\" type=\"line\"/>\n      <point x=\"294\" y=\"275\"/>\n      <point x=\"371\" y=\"441\"/>\n      <point x=\"404\" y=\"627\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"476\" y=\"1035\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"512\" y=\"1239\"/>\n      <point x=\"668\" y=\"1350\"/>\n      <point x=\"867\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"989\" y=\"1350\"/>\n      <point x=\"1087\" y=\"1291\"/>\n      <point x=\"1151\" y=\"1179\" type=\"curve\"/>\n      <point x=\"1230\" y=\"1237\" type=\"line\"/>\n      <point x=\"1156\" y=\"1370\"/>\n      <point x=\"1036\" y=\"1440\"/>\n      <point x=\"881\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"611\" y=\"1440\"/>\n      <point x=\"427\" y=\"1294\"/>\n      <point x=\"382\" y=\"1036\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"627\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"277\" y=\"438\"/>\n      <point x=\"200\" y=\"272\"/>\n      <point x=\"67\" y=\"80\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"111\" y=\"0\" type=\"line\"/>\n      <point x=\"991\" y=\"0\" type=\"line\"/>\n      <point x=\"1007\" y=\"90\" type=\"line\"/>\n      <point x=\"127\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"115\" y=\"495\" type=\"line\"/>\n      <point x=\"879\" y=\"495\" type=\"line\"/>\n      <point x=\"895\" y=\"585\" type=\"line\"/>\n      <point x=\"131\" y=\"585\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"161\" y=\"755\" type=\"line\"/>\n      <point x=\"925\" y=\"755\" type=\"line\"/>\n      <point x=\"941\" y=\"845\" type=\"line\"/>\n      <point x=\"177\" y=\"845\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/liraT_urkish.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"liraTurkish\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BA\"/>\n  <outline>\n    <contour>\n      <point x=\"601\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"738\" y=\"-20\"/>\n      <point x=\"867\" y=\"17\"/>\n      <point x=\"1029\" y=\"103\" type=\"curve\"/>\n      <point x=\"1001\" y=\"184\" type=\"line\"/>\n      <point x=\"855\" y=\"104\"/>\n      <point x=\"741\" y=\"70\"/>\n      <point x=\"617\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"70\"/>\n      <point x=\"403\" y=\"163\"/>\n      <point x=\"434\" y=\"340\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"624\" y=\"1420\" type=\"line\"/>\n      <point x=\"530\" y=\"1420\" type=\"line\"/>\n      <point x=\"338\" y=\"330\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"298\" y=\"100\"/>\n      <point x=\"388\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"138\" y=\"493\" type=\"line\"/>\n      <point x=\"1017\" y=\"639\" type=\"line\"/>\n      <point x=\"1034\" y=\"733\" type=\"line\"/>\n      <point x=\"154\" y=\"587\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"196\" y=\"823\" type=\"line\"/>\n      <point x=\"1075\" y=\"969\" type=\"line\"/>\n      <point x=\"1092\" y=\"1063\" type=\"line\"/>\n      <point x=\"212\" y=\"917\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/literS_ign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"literSign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2113\"/>\n  <outline>\n    <contour>\n      <point x=\"956\" y=\"0\" type=\"curve\"/>\n      <point x=\"970\" y=\"90\" type=\"line\"/>\n      <point x=\"607\" y=\"90\"/>\n      <point x=\"368\" y=\"352\"/>\n      <point x=\"368\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"368\" y=\"1132\"/>\n      <point x=\"500\" y=\"1350\"/>\n      <point x=\"730\" y=\"1350\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"1350\"/>\n      <point x=\"970\" y=\"1237\"/>\n      <point x=\"970\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"970\" y=\"663\"/>\n      <point x=\"633\" y=\"447\"/>\n      <point x=\"44\" y=\"447\" type=\"curve\"/>\n      <point x=\"44\" y=\"357\" type=\"line\"/>\n      <point x=\"690\" y=\"357\"/>\n      <point x=\"1060\" y=\"606\"/>\n      <point x=\"1060\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1060\" y=\"1294\"/>\n      <point x=\"940\" y=\"1440\"/>\n      <point x=\"730\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"441\" y=\"1440\"/>\n      <point x=\"276\" y=\"1189\"/>\n      <point x=\"276\" y=\"750\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"276\" y=\"298\"/>\n      <point x=\"546\" y=\"0\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0459\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"732\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"958\" y=\"-20\"/>\n      <point x=\"1129\" y=\"220\"/>\n      <point x=\"1129\" y=\"484\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1129\" y=\"704\"/>\n      <point x=\"1011\" y=\"753\"/>\n      <point x=\"919\" y=\"753\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"753\"/>\n      <point x=\"777\" y=\"732\"/>\n      <point x=\"698\" y=\"644\" type=\"curve\"/>\n      <point x=\"680\" y=\"552\" type=\"line\"/>\n      <point x=\"729\" y=\"602\"/>\n      <point x=\"792\" y=\"661\"/>\n      <point x=\"892\" y=\"661\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"661\"/>\n      <point x=\"1033\" y=\"615\"/>\n      <point x=\"1033\" y=\"481\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"272\"/>\n      <point x=\"905\" y=\"72\"/>\n      <point x=\"752\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"683\" y=\"72\"/>\n      <point x=\"654\" y=\"104\"/>\n      <point x=\"654\" y=\"183\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"654\" y=\"284\"/>\n      <point x=\"702\" y=\"468\"/>\n      <point x=\"728\" y=\"605\" type=\"curve\"/>\n      <point x=\"733\" y=\"652\" type=\"line\"/>\n      <point x=\"738\" y=\"686\" type=\"line\"/>\n      <point x=\"783\" y=\"957\"/>\n      <point x=\"658\" y=\"1041\"/>\n      <point x=\"499\" y=\"1065\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"403\" y=\"1080\"/>\n      <point x=\"243\" y=\"1080\"/>\n      <point x=\"238\" y=\"1080\" type=\"curve\"/>\n      <point x=\"224\" y=\"990\" type=\"line\"/>\n      <point x=\"229\" y=\"990\"/>\n      <point x=\"304\" y=\"990\"/>\n      <point x=\"383\" y=\"986\" type=\"curve\"/>\n      <point x=\"398\" y=\"985\" type=\"line\"/>\n      <point x=\"662\" y=\"968\"/>\n      <point x=\"685\" y=\"895\"/>\n      <point x=\"630\" y=\"606\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"473\"/>\n      <point x=\"557\" y=\"277\"/>\n      <point x=\"557\" y=\"173\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"42\"/>\n      <point x=\"610\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"36\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"121\" y=\"-20\"/>\n      <point x=\"193\" y=\"45\"/>\n      <point x=\"250\" y=\"161\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"342\" y=\"349\"/>\n      <point x=\"411\" y=\"686\"/>\n      <point x=\"455\" y=\"1044\" type=\"curve\"/>\n      <point x=\"366\" y=\"1059\" type=\"line\"/>\n      <point x=\"320\" y=\"689\"/>\n      <point x=\"255\" y=\"373\"/>\n      <point x=\"169\" y=\"197\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"128\" y=\"115\"/>\n      <point x=\"80\" y=\"71\"/>\n      <point x=\"33\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"23\" y=\"71\"/>\n      <point x=\"15\" y=\"73\"/>\n      <point x=\"8\" y=\"76\" type=\"curve\"/>\n      <point x=\"-9\" y=\"-14\" type=\"line\"/>\n      <point x=\"7\" y=\"-18\"/>\n      <point x=\"22\" y=\"-20\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/llinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"llinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E3B\"/>\n  <outline>\n    <component base=\"l\"/>\n    <component base=\"macronbelowcomb\" xOffset=\"94\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/llinebelow.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"llinebelow.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"l.salt\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lmiddletilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lmiddletilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"026B\"/>\n  <outline>\n    <contour>\n      <point x=\"114\" y=\"588\" type=\"line\"/>\n      <point x=\"210\" y=\"588\" type=\"line\"/>\n      <point x=\"216\" y=\"622\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"242\" y=\"768\"/>\n      <point x=\"279\" y=\"826\"/>\n      <point x=\"359\" y=\"826\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"402\" y=\"826\"/>\n      <point x=\"459\" y=\"805\"/>\n      <point x=\"529\" y=\"723\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"634\"/>\n      <point x=\"675\" y=\"615\"/>\n      <point x=\"746\" y=\"615\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"881\" y=\"615\"/>\n      <point x=\"953\" y=\"684\"/>\n      <point x=\"984\" y=\"859\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"999\" y=\"943\" type=\"line\"/>\n      <point x=\"903\" y=\"943\" type=\"line\"/>\n      <point x=\"888\" y=\"859\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"868\" y=\"748\"/>\n      <point x=\"821\" y=\"705\"/>\n      <point x=\"754\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"703\" y=\"705\"/>\n      <point x=\"639\" y=\"719\"/>\n      <point x=\"571\" y=\"800\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"888\"/>\n      <point x=\"435\" y=\"916\"/>\n      <point x=\"365\" y=\"916\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"230\" y=\"916\"/>\n      <point x=\"161\" y=\"849\"/>\n      <point x=\"131\" y=\"682\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lmiddletilde.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lmiddletilde.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"80\" y=\"555\" type=\"curve\"/>\n      <point x=\"158\" y=\"606\" type=\"line\"/>\n      <point x=\"122\" y=\"651\"/>\n      <point x=\"101\" y=\"706\"/>\n      <point x=\"101\" y=\"756\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"101\" y=\"836\"/>\n      <point x=\"154\" y=\"888\"/>\n      <point x=\"243\" y=\"898\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1106\" y=\"991\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1252\" y=\"1006\"/>\n      <point x=\"1339\" y=\"1092\"/>\n      <point x=\"1339\" y=\"1221\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1339\" y=\"1286\"/>\n      <point x=\"1311\" y=\"1360\"/>\n      <point x=\"1264\" y=\"1420\" type=\"curve\"/>\n      <point x=\"1186\" y=\"1369\" type=\"line\"/>\n      <point x=\"1222\" y=\"1324\"/>\n      <point x=\"1243\" y=\"1269\"/>\n      <point x=\"1243\" y=\"1219\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1243\" y=\"1139\"/>\n      <point x=\"1190\" y=\"1087\"/>\n      <point x=\"1101\" y=\"1077\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"238\" y=\"984\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"92\" y=\"969\"/>\n      <point x=\"5\" y=\"883\"/>\n      <point x=\"5\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"5\" y=\"686\"/>\n      <point x=\"33\" y=\"612\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/logicalnot.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"logicalnot\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AC\"/>\n  <outline>\n    <contour>\n      <point x=\"173\" y=\"813\" type=\"line\"/>\n      <point x=\"1125\" y=\"813\" type=\"line\"/>\n      <point x=\"1142\" y=\"903\" type=\"line\"/>\n      <point x=\"190\" y=\"903\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"944\" y=\"350\" type=\"line\"/>\n      <point x=\"1044\" y=\"350\" type=\"line\"/>\n      <point x=\"1131\" y=\"847\" type=\"line\"/>\n      <point x=\"1031\" y=\"847\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/logicalnotR_eversed.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"logicalnotReversed\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2310\"/>\n  <outline>\n    <contour>\n      <point x=\"173\" y=\"814\" type=\"line\"/>\n      <point x=\"1125\" y=\"814\" type=\"line\"/>\n      <point x=\"1141\" y=\"903\" type=\"line\"/>\n      <point x=\"189\" y=\"903\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"91\" y=\"350\" type=\"line\"/>\n      <point x=\"187\" y=\"350\" type=\"line\"/>\n      <point x=\"280\" y=\"874\" type=\"line\"/>\n      <point x=\"184\" y=\"874\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/longs.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"longs\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"017F\"/>\n  <anchor x=\"358\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"885\" y=\"1500\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-52\" y=\"-476\" type=\"line\"/>\n      <point x=\"32\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"-440\"/>\n      <point x=\"495\" y=\"-307\"/>\n      <point x=\"533\" y=\"64\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"627\" y=\"990\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"1285\"/>\n      <point x=\"828\" y=\"1428\"/>\n      <point x=\"1087\" y=\"1428\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1131\" y=\"1428\"/>\n      <point x=\"1174\" y=\"1424\"/>\n      <point x=\"1234\" y=\"1414\" type=\"curve\"/>\n      <point x=\"1271\" y=\"1500\" type=\"line\"/>\n      <point x=\"1218\" y=\"1514\"/>\n      <point x=\"1169\" y=\"1520\"/>\n      <point x=\"1109\" y=\"1520\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"784\" y=\"1520\"/>\n      <point x=\"566\" y=\"1344\"/>\n      <point x=\"531\" y=\"980\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"445\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"-240\"/>\n      <point x=\"271\" y=\"-353\"/>\n      <point x=\"28\" y=\"-376\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-56\" y=\"-384\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"120\" y=\"688\" type=\"line\"/>\n      <point x=\"552\" y=\"688\" type=\"line\"/>\n      <point x=\"568\" y=\"778\" type=\"line\"/>\n      <point x=\"136\" y=\"778\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerFiveEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2585\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1211\" type=\"line\"/>\n      <point x=\"0\" y=\"1211\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerFiveEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1007\" type=\"line\"/>\n      <point x=\"0\" y=\"1007\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E1\"/>\n  <note>\nuni25E1\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"1029\" y=\"710\" type=\"line\"/>\n      <point x=\"1029\" y=\"449\"/>\n      <point x=\"859\" y=\"277\"/>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"341\" y=\"277\"/>\n      <point x=\"171\" y=\"449\"/>\n      <point x=\"171\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlackWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25D2\"/>\n  <note>\nuni25D2\n</note>\n  <outline>\n    <contour>\n      <point x=\"594\" y=\"222\" type=\"line\"/>\n      <point x=\"984\" y=\"369\" type=\"line\"/>\n      <point x=\"1065\" y=\"710\" type=\"line\"/>\n      <point x=\"135\" y=\"710\" type=\"line\"/>\n      <point x=\"241\" y=\"369\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2584\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfInverseWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DB\"/>\n  <note>\nuni25DB\n</note>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"110\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"710\" type=\"line\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"600\" y=\"185\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"284\" y=\"185\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"75\" y=\"710\" type=\"curve\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"600\" y=\"277\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"277\"/>\n      <point x=\"1029\" y=\"449\"/>\n      <point x=\"1029\" y=\"710\" type=\"curve\"/>\n      <point x=\"171\" y=\"710\" type=\"line\"/>\n      <point x=\"171\" y=\"449\"/>\n      <point x=\"341\" y=\"277\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B12\"/>\n  <note>\nuni2B12\n</note>\n  <outline>\n    <contour>\n      <point x=\"125\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"710\" type=\"line\"/>\n      <point x=\"1075\" y=\"1195\" type=\"line\"/>\n      <point x=\"125\" y=\"1195\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.5,0.09,0.79,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DF\"/>\n  <note>\nuni25DF\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"curve\"/>\n      <point x=\"600\" y=\"277\" type=\"line\"/>\n      <point x=\"341\" y=\"277\"/>\n      <point x=\"171\" y=\"449\"/>\n      <point x=\"171\" y=\"710\" type=\"curve\"/>\n      <point x=\"75\" y=\"710\" type=\"line\"/>\n      <point x=\"75\" y=\"394\"/>\n      <point x=\"284\" y=\"185\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E3\"/>\n  <note>\nuni25E3\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2596\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n      <point x=\"0\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n      <point x=\"0\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftHalfWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2B14\"/>\n  <note>\nuni2B14\n</note>\n  <outline>\n    <contour>\n      <point x=\"111\" y=\"1209\" type=\"line\"/>\n      <point x=\"1090\" y=\"221\" type=\"line\"/>\n      <point x=\"1090\" y=\"1209\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F5\"/>\n  <note>\nuni25F5\n</note>\n  <outline>\n    <contour>\n      <point x=\"555\" y=\"263\" type=\"line\"/>\n      <point x=\"645\" y=\"263\" type=\"line\"/>\n      <point x=\"645\" y=\"757\" type=\"line\"/>\n      <point x=\"142\" y=\"757\" type=\"line\"/>\n      <point x=\"142\" y=\"663\" type=\"line\"/>\n      <point x=\"555\" y=\"663\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerLeftTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FA\"/>\n  <note>\nuni25FA\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"86\" y=\"1092\" type=\"line\"/>\n      <point x=\"974\" y=\"204\" type=\"line\"/>\n      <point x=\"974\" y=\"275\" type=\"line\"/>\n      <point x=\"94\" y=\"275\" type=\"line\"/>\n      <point x=\"169\" y=\"204\" type=\"line\"/>\n      <point x=\"169\" y=\"1094\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerO_neE_ighthB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneEighthBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2581\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-142\" type=\"line\"/>\n      <point x=\"0\" y=\"-142\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneEighthBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-182\" type=\"line\"/>\n      <point x=\"0\" y=\"-182\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerO_neQ_uarterB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneQuarterBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2582\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"196\" type=\"line\"/>\n      <point x=\"0\" y=\"196\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerOneQuarterBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"115\" type=\"line\"/>\n      <point x=\"0\" y=\"115\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightA_rc.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightArc\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25DE\"/>\n  <note>\nuni25DE\n</note>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"185\" type=\"line\"/>\n      <point x=\"916\" y=\"185\"/>\n      <point x=\"1125\" y=\"394\"/>\n      <point x=\"1125\" y=\"710\" type=\"curve\"/>\n      <point x=\"1029\" y=\"710\" type=\"line\"/>\n      <point x=\"1029\" y=\"449\"/>\n      <point x=\"859\" y=\"277\"/>\n      <point x=\"600\" y=\"277\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightB_lackT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlackTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25E2\"/>\n  <note>\nuni25E2\n</note>\n  <outline>\n    <contour>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2597\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"873\" type=\"line\"/>\n      <point x=\"600\" y=\"873\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"600\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"710\" type=\"line\"/>\n      <point x=\"600\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightDiagonalHalfBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25EA\"/>\n  <note>\nuni25EA\n</note>\n  <outline>\n    <contour>\n      <point x=\"1099\" y=\"1199\" type=\"line\"/>\n      <point x=\"111\" y=\"220\" type=\"line\"/>\n      <point x=\"1099\" y=\"220\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteSquare\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightQuadrantWhiteCircle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25F6\"/>\n  <note>\nuni25F6\n</note>\n  <outline>\n    <contour>\n      <point x=\"555\" y=\"263\" type=\"line\"/>\n      <point x=\"645\" y=\"263\" type=\"line\"/>\n      <point x=\"645\" y=\"663\" type=\"line\"/>\n      <point x=\"1058\" y=\"663\" type=\"line\"/>\n      <point x=\"1058\" y=\"757\" type=\"line\"/>\n      <point x=\"555\" y=\"757\" type=\"line\"/>\n    </contour>\n    <component base=\"whiteCircle\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightT_riangle.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerRightTriangle\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FF\"/>\n  <note>\nuni25FF\n</note>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"1235\" type=\"line\"/>\n      <point x=\"75\" y=\"185\" type=\"line\"/>\n      <point x=\"1125\" y=\"185\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1114\" y=\"1092\" type=\"line\"/>\n      <point x=\"1031\" y=\"1094\" type=\"line\"/>\n      <point x=\"1031\" y=\"204\" type=\"line\"/>\n      <point x=\"1106\" y=\"275\" type=\"line\"/>\n      <point x=\"226\" y=\"275\" type=\"line\"/>\n      <point x=\"226\" y=\"204\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerSevenEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2587\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1888\" type=\"line\"/>\n      <point x=\"0\" y=\"1888\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerSevenEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1602\" type=\"line\"/>\n      <point x=\"0\" y=\"1602\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeEighthsBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2583\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"535\" type=\"line\"/>\n      <point x=\"0\" y=\"535\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeEighthsBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"412\" type=\"line\"/>\n      <point x=\"0\" y=\"412\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeQuartersBlock\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2586\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1549\" type=\"line\"/>\n      <point x=\"0\" y=\"1549\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowerThreeQuartersBlock.stypo\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"0\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"-480\" type=\"line\"/>\n      <point x=\"1200\" y=\"1305\" type=\"line\"/>\n      <point x=\"0\" y=\"1305\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowernumeral-greek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowernumeral-greek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0375\"/>\n  <outline>\n    <component base=\"comma\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowlinecomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lowlinecomb\" format=\"2\">\n  <unicode hex=\"0332\"/>\n  <anchor x=\"506\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"446\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"-196\" y=\"-298\" type=\"line\"/>\n      <point x=\"1104\" y=\"-298\" type=\"line\"/>\n      <point x=\"1120\" y=\"-208\" type=\"line\"/>\n      <point x=\"-180\" y=\"-208\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lozenge.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lozenge\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25CA\"/>\n  <outline>\n    <contour>\n      <point x=\"529\" y=\"0\" type=\"line\"/>\n      <point x=\"661\" y=\"0\" type=\"line\"/>\n      <point x=\"1120\" y=\"710\" type=\"line\"/>\n      <point x=\"661\" y=\"1420\" type=\"line\"/>\n      <point x=\"529\" y=\"1420\" type=\"line\"/>\n      <point x=\"80\" y=\"710\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"595\" y=\"52\" type=\"line\"/>\n      <point x=\"192\" y=\"710\" type=\"line\"/>\n      <point x=\"595\" y=\"1368\" type=\"line\"/>\n      <point x=\"1008\" y=\"710\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0142\"/>\n  <outline>\n    <contour>\n      <point x=\"129\" y=\"500\" type=\"line\"/>\n      <point x=\"1046\" y=\"931\" type=\"line\"/>\n      <point x=\"1019\" y=\"1010\" type=\"line\"/>\n      <point x=\"103\" y=\"579\" type=\"line\"/>\n    </contour>\n    <component base=\"l\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lslash.salt.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"lslash.salt\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"9\" y=\"600\" type=\"line\"/>\n      <point x=\"1326\" y=\"1219\" type=\"line\"/>\n      <point x=\"1299\" y=\"1298\" type=\"line\"/>\n      <point x=\"-17\" y=\"679\" type=\"line\"/>\n    </contour>\n    <component base=\"l.salt\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/m.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"m\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006D\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"309\" y=\"1060\" type=\"line\"/>\n      <point x=\"230\" y=\"1060\" type=\"line\"/>\n      <point x=\"43\" y=\"0\" type=\"line\"/>\n      <point x=\"139\" y=\"0\" type=\"line\"/>\n      <point x=\"278\" y=\"787\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"696\" y=\"800\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"729\" y=\"984\"/>\n      <point x=\"674\" y=\"1080\"/>\n      <point x=\"533\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"413\" y=\"1080\"/>\n      <point x=\"342\" y=\"1001\"/>\n      <point x=\"298\" y=\"849\" type=\"curve\"/>\n      <point x=\"268\" y=\"849\" type=\"line\"/>\n      <point x=\"227\" y=\"497\" type=\"line\"/>\n      <point x=\"289\" y=\"820\"/>\n      <point x=\"385\" y=\"988\"/>\n      <point x=\"511\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"590\" y=\"988\"/>\n      <point x=\"623\" y=\"923\"/>\n      <point x=\"600\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"1112\" y=\"800\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1144\" y=\"984\"/>\n      <point x=\"1088\" y=\"1080\"/>\n      <point x=\"952\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"832\" y=\"1080\"/>\n      <point x=\"764\" y=\"1011\"/>\n      <point x=\"718\" y=\"879\" type=\"curve\"/>\n      <point x=\"698\" y=\"879\" type=\"line\"/>\n      <point x=\"649\" y=\"537\" type=\"line\"/>\n      <point x=\"707\" y=\"834\"/>\n      <point x=\"802\" y=\"988\"/>\n      <point x=\"927\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1004\" y=\"988\"/>\n      <point x=\"1038\" y=\"923\"/>\n      <point x=\"1016\" y=\"798\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"0\" type=\"line\"/>\n      <point x=\"971\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/macron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AF\"/>\n  <outline>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/macronbelowcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macronbelowcomb\" format=\"2\">\n  <unicode hex=\"0331\"/>\n  <anchor x=\"506\" y=\"0\" name=\"_bottom\"/>\n  <anchor x=\"446\" y=\"-338\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"50\" y=\"-298\" type=\"line\"/>\n      <point x=\"858\" y=\"-298\" type=\"line\"/>\n      <point x=\"874\" y=\"-208\" type=\"line\"/>\n      <point x=\"66\" y=\"-208\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/macroncomb.case.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macroncomb.case\" format=\"2\">\n  <anchor x=\"755\" y=\"1420\" name=\"_top\"/>\n  <anchor x=\"802\" y=\"1678\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"406\" y=\"1630\" type=\"line\"/>\n      <point x=\"1180\" y=\"1630\" type=\"line\"/>\n      <point x=\"1196\" y=\"1718\" type=\"line\"/>\n      <point x=\"422\" y=\"1718\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/macroncomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"macroncomb\" format=\"2\">\n  <unicode hex=\"0304\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"_top\"/>\n  <anchor x=\"735\" y=\"1298\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"323\" y=\"1248\" type=\"line\"/>\n      <point x=\"1130\" y=\"1248\" type=\"line\"/>\n      <point x=\"1146\" y=\"1338\" type=\"line\"/>\n      <point x=\"339\" y=\"1338\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/manat.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"manat\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20BC\"/>\n  <outline>\n    <contour>\n      <point x=\"7\" y=\"0\" type=\"line\"/>\n      <point x=\"103\" y=\"0\" type=\"line\"/>\n      <point x=\"198\" y=\"540\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"253\" y=\"853\"/>\n      <point x=\"423\" y=\"1006\"/>\n      <point x=\"686\" y=\"1006\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"965\" y=\"1006\"/>\n      <point x=\"1061\" y=\"853\"/>\n      <point x=\"1006\" y=\"540\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"911\" y=\"0\" type=\"line\"/>\n      <point x=\"1007\" y=\"0\" type=\"line\"/>\n      <point x=\"1102\" y=\"540\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1167\" y=\"911\"/>\n      <point x=\"1032\" y=\"1094\"/>\n      <point x=\"698\" y=\"1094\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"369\" y=\"1094\"/>\n      <point x=\"167\" y=\"911\"/>\n      <point x=\"102\" y=\"540\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"459\" y=\"0\" type=\"line\"/>\n      <point x=\"555\" y=\"0\" type=\"line\"/>\n      <point x=\"805\" y=\"1420\" type=\"line\"/>\n      <point x=\"709\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mars.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mars\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2642\"/>\n  <outline>\n    <contour>\n      <point x=\"385\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"652\" y=\"-20\"/>\n      <point x=\"839\" y=\"162\"/>\n      <point x=\"895\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"949\" y=\"785\"/>\n      <point x=\"825\" y=\"960\"/>\n      <point x=\"558\" y=\"960\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"291\" y=\"960\"/>\n      <point x=\"105\" y=\"785\"/>\n      <point x=\"51\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-5\" y=\"162\"/>\n      <point x=\"118\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"401\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"72\"/>\n      <point x=\"101\" y=\"219\"/>\n      <point x=\"147\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"191\" y=\"728\"/>\n      <point x=\"333\" y=\"868\"/>\n      <point x=\"542\" y=\"868\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"751\" y=\"868\"/>\n      <point x=\"843\" y=\"728\"/>\n      <point x=\"799\" y=\"480\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"753\" y=\"219\"/>\n      <point x=\"610\" y=\"72\"/>\n    </contour>\n    <contour>\n      <point x=\"753\" y=\"843\" type=\"line\"/>\n      <point x=\"1249\" y=\"1323\" type=\"line\"/>\n      <point x=\"1200\" y=\"1383\" type=\"line\"/>\n      <point x=\"678\" y=\"899\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1149\" y=\"830\" type=\"line\"/>\n      <point x=\"1243\" y=\"830\" type=\"line\"/>\n      <point x=\"1295\" y=\"1410\" type=\"line\"/>\n      <point x=\"1145\" y=\"1410\" type=\"line\"/>\n      <point x=\"1219\" y=\"1303\" type=\"line\"/>\n      <point x=\"1219\" y=\"1302\" type=\"line\"/>\n      <point x=\"1191\" y=\"1218\"/>\n      <point x=\"1185\" y=\"1163\"/>\n      <point x=\"1180\" y=\"1117\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"703\" y=\"1316\" type=\"line\"/>\n      <point x=\"969\" y=\"1316\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1027\" y=\"1316\"/>\n      <point x=\"1086\" y=\"1326\"/>\n      <point x=\"1167\" y=\"1348\" type=\"curve\"/>\n      <point x=\"1172\" y=\"1345\" type=\"line\"/>\n      <point x=\"1263\" y=\"1316\" type=\"line\"/>\n      <point x=\"1295\" y=\"1410\" type=\"line\"/>\n      <point x=\"705\" y=\"1410\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumB_lackS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumBlackSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FE\"/>\n  <note>\nuni25FE\n</note>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumB_lackS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumBlackSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FC\"/>\n  <note>\nuni25FC\n</note>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"1160\" type=\"line\"/>\n      <point x=\"150\" y=\"1160\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumW_hiteS_mallS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumWhiteSmallSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FD\"/>\n  <note>\nuni25FD\n</note>\n  <outline>\n    <contour>\n      <point x=\"225\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"335\" type=\"line\"/>\n      <point x=\"975\" y=\"1085\" type=\"line\"/>\n      <point x=\"225\" y=\"1085\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"319\" y=\"425\" type=\"line\"/>\n      <point x=\"319\" y=\"995\" type=\"line\"/>\n      <point x=\"881\" y=\"995\" type=\"line\"/>\n      <point x=\"881\" y=\"425\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumW_hiteS_quare.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumWhiteSquare\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"25FB\"/>\n  <note>\nuni25FB\n</note>\n  <outline>\n    <contour>\n      <point x=\"150\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"260\" type=\"line\"/>\n      <point x=\"1050\" y=\"1160\" type=\"line\"/>\n      <point x=\"150\" y=\"1160\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"244\" y=\"350\" type=\"line\"/>\n      <point x=\"244\" y=\"1070\" type=\"line\"/>\n      <point x=\"956\" y=\"1070\" type=\"line\"/>\n      <point x=\"956\" y=\"350\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumleftpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumleftpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276C\"/>\n  <outline>\n    <contour>\n      <point x=\"756\" y=\"0\" type=\"line\"/>\n      <point x=\"872\" y=\"0\" type=\"line\"/>\n      <point x=\"396\" y=\"701\" type=\"line\"/>\n      <point x=\"400\" y=\"719\" type=\"line\"/>\n      <point x=\"1122\" y=\"1420\" type=\"line\"/>\n      <point x=\"991\" y=\"1420\" type=\"line\"/>\n      <point x=\"279\" y=\"719\" type=\"line\"/>\n      <point x=\"275\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumrightpointinganglebracketornament.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mediumrightpointinganglebracketornament\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"276D\"/>\n  <outline>\n    <contour>\n      <point x=\"141\" y=\"0\" type=\"line\"/>\n      <point x=\"272\" y=\"0\" type=\"line\"/>\n      <point x=\"984\" y=\"701\" type=\"line\"/>\n      <point x=\"988\" y=\"719\" type=\"line\"/>\n      <point x=\"507\" y=\"1420\" type=\"line\"/>\n      <point x=\"391\" y=\"1420\" type=\"line\"/>\n      <point x=\"867\" y=\"719\" type=\"line\"/>\n      <point x=\"863\" y=\"701\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/micro.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"micro\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B5\"/>\n  <outline>\n    <component base=\"mu\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/minus.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"minus\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2212\"/>\n  <outline>\n    <contour>\n      <point x=\"148\" y=\"664\" type=\"line\"/>\n      <point x=\"1100\" y=\"664\" type=\"line\"/>\n      <point x=\"1115\" y=\"754\" type=\"line\"/>\n      <point x=\"164\" y=\"754\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/minute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"minute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2032\"/>\n  <outline>\n    <contour>\n      <point x=\"512\" y=\"780\" type=\"line\"/>\n      <point x=\"624\" y=\"780\" type=\"line\"/>\n      <point x=\"961\" y=\"1420\" type=\"line\"/>\n      <point x=\"849\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"mu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BC\"/>\n  <anchor x=\"425\" y=\"-460\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"408\" y=\"-469\" type=\"line\"/>\n      <point x=\"430\" y=\"-381\" type=\"line\"/>\n      <point x=\"398\" y=\"-376\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"209\" y=\"-346\"/>\n      <point x=\"202\" y=\"-166\"/>\n      <point x=\"208\" y=\"86\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"213\" y=\"315\"/>\n      <point x=\"261\" y=\"621\"/>\n      <point x=\"361\" y=\"1061\" type=\"curve\"/>\n      <point x=\"273\" y=\"1080\" type=\"line\"/>\n      <point x=\"173\" y=\"621\"/>\n      <point x=\"124\" y=\"309\"/>\n      <point x=\"117\" y=\"87\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"106\" y=\"-235\"/>\n      <point x=\"140\" y=\"-452\"/>\n      <point x=\"392\" y=\"-468\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"213\" y=\"-21\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"605\" y=\"-28\"/>\n      <point x=\"789\" y=\"147\"/>\n      <point x=\"869\" y=\"399\" type=\"curve\"/>\n      <point x=\"792\" y=\"284\" type=\"line\"/>\n      <point x=\"878\" y=\"284\" type=\"line\"/>\n      <point x=\"909\" y=\"737\" type=\"line\"/>\n      <point x=\"825\" y=\"227\"/>\n      <point x=\"566\" y=\"66\"/>\n      <point x=\"223\" y=\"71\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"149\" y=\"72\" type=\"line\"/>\n      <point x=\"149\" y=\"-20\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1044\" y=\"-10\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1093\" y=\"-10\" type=\"line\"/>\n      <point x=\"1110\" y=\"82\" type=\"line\"/>\n      <point x=\"1060\" y=\"82\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"934\" y=\"82\"/>\n      <point x=\"900\" y=\"137\"/>\n      <point x=\"927\" y=\"293\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1062\" y=\"1059\" type=\"line\"/>\n      <point x=\"967\" y=\"1059\" type=\"line\"/>\n      <point x=\"863\" y=\"481\" type=\"line\"/>\n      <point x=\"853\" y=\"376\" type=\"line\"/>\n      <point x=\"841\" y=\"295\" type=\"line\"/>\n      <point x=\"798\" y=\"71\"/>\n      <point x=\"871\" y=\"-10\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/multiply.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"multiply\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00D7\"/>\n  <guideline x=\"314\" y=\"114\" angle=\"0\"/>\n  <guideline x=\"314\" y=\"574\" angle=\"0\"/>\n  <outline>\n    <contour>\n      <point x=\"159\" y=\"243\" type=\"line\"/>\n      <point x=\"106\" y=\"309\" type=\"line\"/>\n      <point x=\"1097\" y=\"1133\" type=\"line\"/>\n      <point x=\"1149\" y=\"1065\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"937\" y=\"243\" type=\"line\"/>\n      <point x=\"244\" y=\"1074\" type=\"line\"/>\n      <point x=\"318\" y=\"1131\" type=\"line\"/>\n      <point x=\"1011\" y=\"300\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/n.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"n\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006E\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"99\" y=\"0\" type=\"line\"/>\n      <point x=\"195\" y=\"0\" type=\"line\"/>\n      <point x=\"325\" y=\"737\" type=\"line\"/>\n      <point x=\"364\" y=\"1060\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"818\" y=\"0\" type=\"line\"/>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1037\" y=\"697\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"948\"/>\n      <point x=\"984\" y=\"1080\"/>\n      <point x=\"747\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1080\"/>\n      <point x=\"400\" y=\"960\"/>\n      <point x=\"341\" y=\"749\" type=\"curve\"/>\n      <point x=\"302\" y=\"749\" type=\"line\"/>\n      <point x=\"251\" y=\"320\" type=\"line\"/>\n      <point x=\"332\" y=\"819\"/>\n      <point x=\"513\" y=\"988\"/>\n      <point x=\"727\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"988\"/>\n      <point x=\"975\" y=\"893\"/>\n      <point x=\"942\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0144\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"acutecomb.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/naira.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"naira\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20A6\"/>\n  <outline>\n    <contour>\n      <point x=\"48\" y=\"665\" type=\"line\"/>\n      <point x=\"1200\" y=\"665\" type=\"line\"/>\n      <point x=\"1216\" y=\"755\" type=\"line\"/>\n      <point x=\"64\" y=\"755\" type=\"line\"/>\n    </contour>\n    <component base=\"N\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/napostrophe.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"napostrophe\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0149\"/>\n  <outline>\n    <contour>\n      <point x=\"251\" y=\"1168\" type=\"line\"/>\n      <point x=\"323\" y=\"1231\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"415\" y=\"1312\"/>\n      <point x=\"474\" y=\"1404\"/>\n      <point x=\"474\" y=\"1509\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"1609\"/>\n      <point x=\"405\" y=\"1660\"/>\n      <point x=\"270\" y=\"1660\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"215\" y=\"1660\" type=\"line\"/>\n      <point x=\"200\" y=\"1570\" type=\"line\"/>\n      <point x=\"225\" y=\"1570\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"324\" y=\"1570\"/>\n      <point x=\"375\" y=\"1540\"/>\n      <point x=\"375\" y=\"1482\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"375\" y=\"1417\"/>\n      <point x=\"321\" y=\"1353\"/>\n      <point x=\"256\" y=\"1297\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"191\" y=\"1241\" type=\"line\"/>\n    </contour>\n    <component base=\"n\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nbspace.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nbspace\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00A0\"/>\n  <outline>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ncaron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ncaron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0148\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"caroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ncommaaccent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ncommaaccent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0146\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"commaaccentcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"negativeAcknowledgeControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2415\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"K.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>K.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"negativeAcknowledgeControl.ss20\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1125\" y=\"555\" type=\"line\"/>\n      <point x=\"1125\" y=\"655\" type=\"line\"/>\n      <point x=\"419\" y=\"960\" type=\"line\"/>\n      <point x=\"419\" y=\"860\" type=\"line\"/>\n    </contour>\n    <component base=\"acknowledgeControl.ss20\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/newlineC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"newlineControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2424\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"L.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>L.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nhookleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nhookleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0272\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"-249\" y=\"-470\" type=\"line\"/>\n      <point x=\"-224\" y=\"-468\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"25\" y=\"-449\"/>\n      <point x=\"133\" y=\"-345\"/>\n      <point x=\"184\" y=\"-56\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"325\" y=\"737\" type=\"line\"/>\n      <point x=\"364\" y=\"1060\" type=\"line\"/>\n      <point x=\"286\" y=\"1060\" type=\"line\"/>\n      <point x=\"92\" y=\"-38\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"54\" y=\"-255\"/>\n      <point x=\"-25\" y=\"-358\"/>\n      <point x=\"-218\" y=\"-375\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-253\" y=\"-378\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"818\" y=\"0\" type=\"line\"/>\n      <point x=\"914\" y=\"0\" type=\"line\"/>\n      <point x=\"1037\" y=\"697\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1081\" y=\"948\"/>\n      <point x=\"984\" y=\"1080\"/>\n      <point x=\"747\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"538\" y=\"1080\"/>\n      <point x=\"400\" y=\"960\"/>\n      <point x=\"341\" y=\"749\" type=\"curve\"/>\n      <point x=\"302\" y=\"749\" type=\"line\"/>\n      <point x=\"251\" y=\"320\" type=\"line\"/>\n      <point x=\"332\" y=\"819\"/>\n      <point x=\"513\" y=\"988\"/>\n      <point x=\"727\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"910\" y=\"988\"/>\n      <point x=\"975\" y=\"893\"/>\n      <point x=\"942\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nine.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ninesuperior\" xOffset=\"-144\" yOffset=\"-814\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0039\"/>\n  <outline>\n    <contour>\n      <point x=\"163\" y=\"-7\" type=\"line\"/>\n      <point x=\"802\" y=\"18\"/>\n      <point x=\"1143\" y=\"384\"/>\n      <point x=\"1143\" y=\"1043\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1143\" y=\"1304\"/>\n      <point x=\"1002\" y=\"1439\"/>\n      <point x=\"734\" y=\"1439\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"423\" y=\"1439\"/>\n      <point x=\"210\" y=\"1210\"/>\n      <point x=\"210\" y=\"878\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"210\" y=\"648\"/>\n      <point x=\"346\" y=\"519\"/>\n      <point x=\"604\" y=\"519\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"778\" y=\"519\"/>\n      <point x=\"923\" y=\"589\"/>\n      <point x=\"991\" y=\"711\" type=\"curve\"/>\n      <point x=\"1011\" y=\"711\" type=\"line\"/>\n      <point x=\"906\" y=\"323\"/>\n      <point x=\"650\" y=\"108\"/>\n      <point x=\"169\" y=\"82\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"596\" y=\"609\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"414\" y=\"609\"/>\n      <point x=\"307\" y=\"723\"/>\n      <point x=\"307\" y=\"916\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"307\" y=\"1162\"/>\n      <point x=\"488\" y=\"1349\"/>\n      <point x=\"725\" y=\"1349\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"940\" y=\"1349\"/>\n      <point x=\"1047\" y=\"1241\"/>\n      <point x=\"1047\" y=\"1024\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1047\" y=\"776\"/>\n      <point x=\"866\" y=\"609\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nine.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nine.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"ninesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nineinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nineinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2089\"/>\n  <outline>\n    <component base=\"ninesuperior\" xOffset=\"-144\" yOffset=\"-814\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ninesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ninesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2079\"/>\n  <outline>\n    <contour>\n      <point x=\"464\" y=\"793\" type=\"line\"/>\n      <point x=\"783\" y=\"804\"/>\n      <point x=\"972\" y=\"972\"/>\n      <point x=\"972\" y=\"1245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"972\" y=\"1368\"/>\n      <point x=\"891\" y=\"1440\"/>\n      <point x=\"754\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"569\" y=\"1440\"/>\n      <point x=\"459\" y=\"1358\"/>\n      <point x=\"459\" y=\"1218\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"459\" y=\"1106\"/>\n      <point x=\"531\" y=\"1040\"/>\n      <point x=\"654\" y=\"1040\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"750\" y=\"1040\"/>\n      <point x=\"826\" y=\"1073\"/>\n      <point x=\"857\" y=\"1128\" type=\"curve\"/>\n      <point x=\"861\" y=\"1128\" type=\"line\"/>\n      <point x=\"835\" y=\"982\"/>\n      <point x=\"692\" y=\"892\"/>\n      <point x=\"475\" y=\"885\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"696\" y=\"1122\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"609\" y=\"1122\"/>\n      <point x=\"557\" y=\"1159\"/>\n      <point x=\"557\" y=\"1222\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"557\" y=\"1301\"/>\n      <point x=\"623\" y=\"1348\"/>\n      <point x=\"736\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"828\" y=\"1348\"/>\n      <point x=\"883\" y=\"1311\"/>\n      <point x=\"883\" y=\"1247\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"883\" y=\"1168\"/>\n      <point x=\"814\" y=\"1122\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nje-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nje-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"045A\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"742\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"961\" y=\"-20\"/>\n      <point x=\"1129\" y=\"220\"/>\n      <point x=\"1129\" y=\"484\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1129\" y=\"704\"/>\n      <point x=\"1011\" y=\"753\"/>\n      <point x=\"929\" y=\"753\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"869\" y=\"753\"/>\n      <point x=\"787\" y=\"732\"/>\n      <point x=\"708\" y=\"644\" type=\"curve\"/>\n      <point x=\"690\" y=\"644\" type=\"line\"/>\n      <point x=\"690\" y=\"552\" type=\"line\"/>\n      <point x=\"739\" y=\"602\"/>\n      <point x=\"802\" y=\"661\"/>\n      <point x=\"902\" y=\"661\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"981\" y=\"661\"/>\n      <point x=\"1033\" y=\"615\"/>\n      <point x=\"1033\" y=\"481\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1033\" y=\"272\"/>\n      <point x=\"905\" y=\"72\"/>\n      <point x=\"762\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"693\" y=\"72\"/>\n      <point x=\"653\" y=\"104\"/>\n      <point x=\"653\" y=\"183\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"653\" y=\"271\"/>\n      <point x=\"692\" y=\"468\"/>\n      <point x=\"716\" y=\"605\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"623\" type=\"line\"/>\n      <point x=\"797\" y=\"1060\" type=\"line\"/>\n      <point x=\"700\" y=\"1060\" type=\"line\"/>\n      <point x=\"620\" y=\"606\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"597\" y=\"473\"/>\n      <point x=\"558\" y=\"277\"/>\n      <point x=\"558\" y=\"173\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"558\" y=\"42\"/>\n      <point x=\"620\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"19\" y=\"0\" type=\"line\"/>\n      <point x=\"115\" y=\"0\" type=\"line\"/>\n      <point x=\"302\" y=\"1060\" type=\"line\"/>\n      <point x=\"206\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"156\" y=\"515\" type=\"line\"/>\n      <point x=\"641\" y=\"515\" type=\"line\"/>\n      <point x=\"657\" y=\"605\" type=\"line\"/>\n      <point x=\"172\" y=\"605\" type=\"line\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>public.markColor</key>\n      <string>0.98,0.36,0.67,1</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nlinebelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nlinebelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E49\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"macronbelowcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nmod.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nmod\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"207F\"/>\n  <outline>\n    <contour>\n      <point x=\"834\" y=\"790\" type=\"line\"/>\n      <point x=\"928\" y=\"790\" type=\"line\"/>\n      <point x=\"999\" y=\"1186\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1028\" y=\"1345\"/>\n      <point x=\"956\" y=\"1440\"/>\n      <point x=\"815\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"679\" y=\"1440\"/>\n      <point x=\"585\" y=\"1380\"/>\n      <point x=\"555\" y=\"1273\" type=\"curve\"/>\n      <point x=\"507\" y=\"1273\" type=\"line\"/>\n      <point x=\"518\" y=\"1124\" type=\"line\"/>\n      <point x=\"542\" y=\"1252\"/>\n      <point x=\"634\" y=\"1355\"/>\n      <point x=\"780\" y=\"1355\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"876\" y=\"1355\"/>\n      <point x=\"922\" y=\"1290\"/>\n      <point x=\"903\" y=\"1181\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"365\" y=\"790\" type=\"line\"/>\n      <point x=\"459\" y=\"790\" type=\"line\"/>\n      <point x=\"540\" y=\"1253\" type=\"line\"/>\n      <point x=\"559\" y=\"1428\" type=\"line\"/>\n      <point x=\"477\" y=\"1428\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nonbreakinghyphen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nonbreakinghyphen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2011\"/>\n  <outline>\n    <component base=\"hyphentwo\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/note-musical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"note-musical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"266A\"/>\n  <outline>\n    <contour>\n      <point x=\"928\" y=\"624\" type=\"line\"/>\n      <point x=\"1114\" y=\"772\"/>\n      <point x=\"1199\" y=\"913\"/>\n      <point x=\"1199\" y=\"1071\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1199\" y=\"1310\"/>\n      <point x=\"1041\" y=\"1420\"/>\n      <point x=\"697\" y=\"1420\" type=\"curve\"/>\n      <point x=\"700\" y=\"1330\" type=\"line\"/>\n      <point x=\"976\" y=\"1330\"/>\n      <point x=\"1103\" y=\"1247\"/>\n      <point x=\"1103\" y=\"1067\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1103\" y=\"917\"/>\n      <point x=\"1029\" y=\"799\"/>\n      <point x=\"867\" y=\"689\" type=\"curve\"/>\n    </contour>\n    <contour>\n      <point x=\"310\" y=\"-17\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"464\" y=\"-17\"/>\n      <point x=\"546\" y=\"43\"/>\n      <point x=\"564\" y=\"135\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"202\"/>\n      <point x=\"481\" y=\"245\"/>\n      <point x=\"350\" y=\"245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"191\" y=\"245\"/>\n      <point x=\"112\" y=\"199\"/>\n      <point x=\"112\" y=\"105\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"112\" y=\"24\"/>\n      <point x=\"178\" y=\"-17\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"115\" type=\"line\"/>\n      <point x=\"564\" y=\"135\" type=\"line\"/>\n      <point x=\"783\" y=\"1370\" type=\"line\"/>\n      <point x=\"697\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/notedbl-musical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notedbl-musical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"266B\"/>\n  <outline>\n    <contour>\n      <point x=\"373\" y=\"118\" type=\"line\"/>\n      <point x=\"597\" y=\"1380\" type=\"line\"/>\n      <point x=\"507\" y=\"1380\" type=\"line\"/>\n      <point x=\"286\" y=\"132\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"118\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"278\" y=\"-20\"/>\n      <point x=\"356\" y=\"30\"/>\n      <point x=\"373\" y=\"118\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"388\" y=\"197\"/>\n      <point x=\"292\" y=\"245\"/>\n      <point x=\"158\" y=\"245\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"19\" y=\"245\"/>\n      <point x=\"-63\" y=\"191\"/>\n      <point x=\"-63\" y=\"102\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"-63\" y=\"25\"/>\n      <point x=\"4\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"810\" y=\"173\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"970\" y=\"173\"/>\n      <point x=\"1049\" y=\"223\"/>\n      <point x=\"1065\" y=\"311\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1080\" y=\"395\"/>\n      <point x=\"984\" y=\"438\"/>\n      <point x=\"850\" y=\"438\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"711\" y=\"438\"/>\n      <point x=\"629\" y=\"384\"/>\n      <point x=\"629\" y=\"295\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"629\" y=\"218\"/>\n      <point x=\"696\" y=\"173\"/>\n    </contour>\n    <contour>\n      <point x=\"1065\" y=\"311\" type=\"line\"/>\n      <point x=\"1267\" y=\"1460\" type=\"line\"/>\n      <point x=\"1169\" y=\"1420\" type=\"line\"/>\n      <point x=\"974\" y=\"325\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"466\" y=\"1084\" type=\"line\"/>\n      <point x=\"1215\" y=\"1164\" type=\"line\"/>\n      <point x=\"1267\" y=\"1460\" type=\"line\"/>\n      <point x=\"507\" y=\"1380\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/notequal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notequal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2260\"/>\n  <outline>\n    <contour>\n      <point x=\"67\" y=\"0\" type=\"line\"/>\n      <point x=\"176\" y=\"0\" type=\"line\"/>\n      <point x=\"1193\" y=\"1420\" type=\"line\"/>\n      <point x=\"1084\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"equal\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/notidentical.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"notidentical\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2262\"/>\n  <outline>\n    <contour>\n      <point x=\"17\" y=\"0\" type=\"line\"/>\n      <point x=\"128\" y=\"0\" type=\"line\"/>\n      <point x=\"1183\" y=\"1420\" type=\"line\"/>\n      <point x=\"1072\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <component base=\"equivalence\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F1\"/>\n  <outline>\n    <component base=\"n\"/>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nu.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nu\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BD\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"438\" y=\"0\" type=\"line\"/>\n      <point x=\"530\" y=\"0\" type=\"line\"/>\n      <point x=\"450\" y=\"567\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"409\" y=\"860\"/>\n      <point x=\"329\" y=\"1022\"/>\n      <point x=\"177\" y=\"1080\" type=\"curve\"/>\n      <point x=\"129\" y=\"999\" type=\"line\"/>\n      <point x=\"252\" y=\"946\"/>\n      <point x=\"323\" y=\"800\"/>\n      <point x=\"360\" y=\"537\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <contour>\n      <point x=\"530\" y=\"0\" type=\"line\"/>\n      <point x=\"908\" y=\"125\"/>\n      <point x=\"1056\" y=\"412\"/>\n      <point x=\"1143\" y=\"1060\" type=\"curve\"/>\n      <point x=\"1047\" y=\"1060\" type=\"line\"/>\n      <point x=\"976\" y=\"482\"/>\n      <point x=\"843\" y=\"205\"/>\n      <point x=\"506\" y=\"86\" type=\"curve\"/>\n      <point x=\"462\" y=\"0\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nullC_ontrol.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"nullControl\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2400\"/>\n  <outline>\n    <component base=\"N.half\" xOffset=\"-10\" yOffset=\"781\"/>\n    <component base=\"U.half\" xOffset=\"370\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.ComponentInfo</key>\n      <array>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>0</integer>\n          <key>name</key>\n          <string>N.half</string>\n        </dict>\n        <dict>\n          <key>alignment</key>\n          <integer>-1</integer>\n          <key>index</key>\n          <integer>1</integer>\n          <key>name</key>\n          <string>U.half</string>\n        </dict>\n      </array>\n      <key>com.schriftgestaltung.Glyphs.glyph.widthMetricsKey</key>\n      <string>space</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0023\"/>\n  <outline>\n    <contour>\n      <point x=\"624\" y=\"0\" type=\"line\"/>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"1420\" type=\"line\"/>\n      <point x=\"990\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"419\" type=\"line\"/>\n      <point x=\"1056\" y=\"419\" type=\"line\"/>\n      <point x=\"1072\" y=\"509\" type=\"line\"/>\n      <point x=\"120\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"178\" y=\"0\" type=\"line\"/>\n      <point x=\"272\" y=\"0\" type=\"line\"/>\n      <point x=\"638\" y=\"1420\" type=\"line\"/>\n      <point x=\"544\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"191\" y=\"911\" type=\"line\"/>\n      <point x=\"1143\" y=\"911\" type=\"line\"/>\n      <point x=\"1159\" y=\"1001\" type=\"line\"/>\n      <point x=\"207\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_braceleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_braceleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1916\" y=\"-214\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1988\" y=\"-214\"/>\n      <point x=\"2030\" y=\"-205\"/>\n      <point x=\"2068\" y=\"-194\" type=\"curve\"/>\n      <point x=\"2069\" y=\"-110\" type=\"line\"/>\n      <point x=\"2020\" y=\"-118\"/>\n      <point x=\"1972\" y=\"-124\"/>\n      <point x=\"1936\" y=\"-124\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1805\" y=\"-124\"/>\n      <point x=\"1715\" y=\"-49\"/>\n      <point x=\"1728\" y=\"68\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1744\" y=\"216\"/>\n      <point x=\"1883\" y=\"313\"/>\n      <point x=\"1883\" y=\"492\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1883\" y=\"619\"/>\n      <point x=\"1790\" y=\"696\"/>\n      <point x=\"1632\" y=\"700\" type=\"curve\"/>\n      <point x=\"1633\" y=\"708\" type=\"line\"/>\n      <point x=\"1857\" y=\"712\"/>\n      <point x=\"1965\" y=\"817\"/>\n      <point x=\"1965\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1965\" y=\"1082\"/>\n      <point x=\"1952\" y=\"1134\"/>\n      <point x=\"1942\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1897\" y=\"1403\"/>\n      <point x=\"2051\" y=\"1536\"/>\n      <point x=\"2227\" y=\"1536\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2263\" y=\"1536\"/>\n      <point x=\"2309\" y=\"1530\"/>\n      <point x=\"2356\" y=\"1521\" type=\"curve\"/>\n      <point x=\"2385\" y=\"1606\" type=\"line\"/>\n      <point x=\"2344\" y=\"1618\"/>\n      <point x=\"2297\" y=\"1626\"/>\n      <point x=\"2221\" y=\"1626\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1991\" y=\"1626\"/>\n      <point x=\"1800\" y=\"1454\"/>\n      <point x=\"1846\" y=\"1182\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1851\" y=\"1151\"/>\n      <point x=\"1869\" y=\"1076\"/>\n      <point x=\"1869\" y=\"1031\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1869\" y=\"834\"/>\n      <point x=\"1782\" y=\"763\"/>\n      <point x=\"1545\" y=\"763\" type=\"curve\"/>\n      <point x=\"1524\" y=\"645\" type=\"line\"/>\n      <point x=\"1690\" y=\"645\"/>\n      <point x=\"1787\" y=\"582\"/>\n      <point x=\"1787\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1787\" y=\"344\"/>\n      <point x=\"1660\" y=\"253\"/>\n      <point x=\"1632\" y=\"69\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1606\" y=\"-104\"/>\n      <point x=\"1737\" y=\"-214\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"0\" type=\"line\"/>\n      <point x=\"432\" y=\"0\" type=\"line\"/>\n      <point x=\"798\" y=\"1420\" type=\"line\"/>\n      <point x=\"704\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"264\" y=\"419\" type=\"line\"/>\n      <point x=\"1782\" y=\"419\" type=\"line\"/>\n      <point x=\"1798\" y=\"509\" type=\"line\"/>\n      <point x=\"280\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"784\" y=\"0\" type=\"line\"/>\n      <point x=\"878\" y=\"0\" type=\"line\"/>\n      <point x=\"1244\" y=\"1420\" type=\"line\"/>\n      <point x=\"1150\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"351\" y=\"911\" type=\"line\"/>\n      <point x=\"1869\" y=\"911\" type=\"line\"/>\n      <point x=\"1885\" y=\"1001\" type=\"line\"/>\n      <point x=\"367\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_bracketleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_bracketleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"784\" y=\"0\" type=\"line\"/>\n      <point x=\"878\" y=\"0\" type=\"line\"/>\n      <point x=\"1244\" y=\"1420\" type=\"line\"/>\n      <point x=\"1150\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"0\" type=\"line\"/>\n      <point x=\"432\" y=\"0\" type=\"line\"/>\n      <point x=\"798\" y=\"1420\" type=\"line\"/>\n      <point x=\"704\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"264\" y=\"419\" type=\"line\"/>\n      <point x=\"1602\" y=\"419\" type=\"line\"/>\n      <point x=\"1618\" y=\"509\" type=\"line\"/>\n      <point x=\"280\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"351\" y=\"911\" type=\"line\"/>\n      <point x=\"1689\" y=\"911\" type=\"line\"/>\n      <point x=\"1705\" y=\"1001\" type=\"line\"/>\n      <point x=\"367\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <component base=\"bracketleft\" xOffset=\"1176\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_colon.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_colon.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n    <component base=\"colon\" xOffset=\"1251\" yOffset=\"180\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_end.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_end.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"624\" y=\"0\" type=\"line\"/>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"1420\" type=\"line\"/>\n      <point x=\"990\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-40\" y=\"419\" type=\"line\"/>\n      <point x=\"1056\" y=\"419\" type=\"line\"/>\n      <point x=\"1072\" y=\"509\" type=\"line\"/>\n      <point x=\"-24\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"178\" y=\"0\" type=\"line\"/>\n      <point x=\"272\" y=\"0\" type=\"line\"/>\n      <point x=\"638\" y=\"1420\" type=\"line\"/>\n      <point x=\"544\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"47\" y=\"911\" type=\"line\"/>\n      <point x=\"1143\" y=\"911\" type=\"line\"/>\n      <point x=\"1159\" y=\"1001\" type=\"line\"/>\n      <point x=\"63\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1426\" y=\"911\" type=\"line\"/>\n      <point x=\"2186\" y=\"911\" type=\"line\"/>\n      <point x=\"2202\" y=\"1001\" type=\"line\"/>\n      <point x=\"1442\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1340\" y=\"419\" type=\"line\"/>\n      <point x=\"2100\" y=\"419\" type=\"line\"/>\n      <point x=\"2116\" y=\"509\" type=\"line\"/>\n      <point x=\"1356\" y=\"509\" type=\"line\"/>\n    </contour>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_exclam.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_exclam.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"numbersign\" xOffset=\"160\"/>\n    <component base=\"exclam\" xOffset=\"1220\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_middle.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_middle.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"624\" y=\"0\" type=\"line\"/>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"1420\" type=\"line\"/>\n      <point x=\"990\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"-70\" y=\"419\" type=\"line\"/>\n      <point x=\"1230\" y=\"419\" type=\"line\"/>\n      <point x=\"1246\" y=\"509\" type=\"line\"/>\n      <point x=\"-54\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"178\" y=\"0\" type=\"line\"/>\n      <point x=\"272\" y=\"0\" type=\"line\"/>\n      <point x=\"638\" y=\"1420\" type=\"line\"/>\n      <point x=\"544\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"17\" y=\"911\" type=\"line\"/>\n      <point x=\"1317\" y=\"911\" type=\"line\"/>\n      <point x=\"1333\" y=\"1001\" type=\"line\"/>\n      <point x=\"33\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_parenleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_parenleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"784\" y=\"0\" type=\"line\"/>\n      <point x=\"878\" y=\"0\" type=\"line\"/>\n      <point x=\"1244\" y=\"1420\" type=\"line\"/>\n      <point x=\"1150\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"264\" y=\"419\" type=\"line\"/>\n      <point x=\"1516\" y=\"419\" type=\"line\"/>\n      <point x=\"1532\" y=\"509\" type=\"line\"/>\n      <point x=\"280\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"338\" y=\"0\" type=\"line\"/>\n      <point x=\"432\" y=\"0\" type=\"line\"/>\n      <point x=\"798\" y=\"1420\" type=\"line\"/>\n      <point x=\"704\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"351\" y=\"911\" type=\"line\"/>\n      <point x=\"1603\" y=\"911\" type=\"line\"/>\n      <point x=\"1619\" y=\"1001\" type=\"line\"/>\n      <point x=\"367\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <component base=\"parenleft\" xOffset=\"1167\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"805\" y=\"0\" type=\"line\"/>\n      <point x=\"899\" y=\"0\" type=\"line\"/>\n      <point x=\"1265\" y=\"1420\" type=\"line\"/>\n      <point x=\"1171\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"285\" y=\"419\" type=\"line\"/>\n      <point x=\"1394\" y=\"419\" type=\"line\"/>\n      <point x=\"1410\" y=\"509\" type=\"line\"/>\n      <point x=\"301\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"359\" y=\"0\" type=\"line\"/>\n      <point x=\"453\" y=\"0\" type=\"line\"/>\n      <point x=\"819\" y=\"1420\" type=\"line\"/>\n      <point x=\"725\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"372\" y=\"911\" type=\"line\"/>\n      <point x=\"1481\" y=\"911\" type=\"line\"/>\n      <point x=\"1497\" y=\"1001\" type=\"line\"/>\n      <point x=\"388\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1396\" y=\"975\" type=\"curve\"/>\n      <point x=\"1492\" y=\"975\" type=\"line\"/>\n      <point x=\"1539\" y=\"1221\"/>\n      <point x=\"1658\" y=\"1350\"/>\n      <point x=\"1873\" y=\"1350\" type=\"curve\"/>\n      <point x=\"1886\" y=\"1440\" type=\"line\"/>\n      <point x=\"1599\" y=\"1440\"/>\n      <point x=\"1443\" y=\"1280\"/>\n    </contour>\n    <contour>\n      <point x=\"1627\" y=\"356\" type=\"line\"/>\n      <point x=\"1723\" y=\"356\" type=\"line\"/>\n      <point x=\"1749\" y=\"505\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1764\" y=\"592\"/>\n      <point x=\"1832\" y=\"673\"/>\n      <point x=\"1970\" y=\"778\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2144\" y=\"910\"/>\n      <point x=\"2243\" y=\"1000\"/>\n      <point x=\"2243\" y=\"1152\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2243\" y=\"1333\"/>\n      <point x=\"2110\" y=\"1440\"/>\n      <point x=\"1886\" y=\"1440\" type=\"curve\"/>\n      <point x=\"1873\" y=\"1350\" type=\"line\"/>\n      <point x=\"2046\" y=\"1350\"/>\n      <point x=\"2147\" y=\"1274\"/>\n      <point x=\"2147\" y=\"1145\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2147\" y=\"1025\"/>\n      <point x=\"2065\" y=\"962\"/>\n      <point x=\"1921\" y=\"846\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1768\" y=\"723\"/>\n      <point x=\"1679\" y=\"649\"/>\n      <point x=\"1654\" y=\"509\" type=\"curve\" smooth=\"yes\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"1117\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_start.seq.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_start.seq\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"624\" y=\"0\" type=\"line\"/>\n      <point x=\"718\" y=\"0\" type=\"line\"/>\n      <point x=\"1084\" y=\"1420\" type=\"line\"/>\n      <point x=\"990\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"104\" y=\"419\" type=\"line\"/>\n      <point x=\"1200\" y=\"419\" type=\"line\"/>\n      <point x=\"1216\" y=\"509\" type=\"line\"/>\n      <point x=\"120\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"178\" y=\"0\" type=\"line\"/>\n      <point x=\"272\" y=\"0\" type=\"line\"/>\n      <point x=\"638\" y=\"1420\" type=\"line\"/>\n      <point x=\"544\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"191\" y=\"911\" type=\"line\"/>\n      <point x=\"1287\" y=\"911\" type=\"line\"/>\n      <point x=\"1303\" y=\"1001\" type=\"line\"/>\n      <point x=\"207\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_underscore.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_underscore.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"781\" y=\"-90\" type=\"line\"/>\n      <point x=\"875\" y=\"-90\" type=\"line\"/>\n      <point x=\"1264\" y=\"1420\" type=\"line\"/>\n      <point x=\"1170\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"284\" y=\"419\" type=\"line\"/>\n      <point x=\"1236\" y=\"419\" type=\"line\"/>\n      <point x=\"1252\" y=\"509\" type=\"line\"/>\n      <point x=\"300\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"358\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"0\" type=\"line\"/>\n      <point x=\"818\" y=\"1420\" type=\"line\"/>\n      <point x=\"724\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"821\" y=\"-90\" type=\"line\"/>\n      <point x=\"2051\" y=\"-90\" type=\"line\"/>\n      <point x=\"2067\" y=\"0\" type=\"line\"/>\n      <point x=\"837\" y=\"0\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"371\" y=\"911\" type=\"line\"/>\n      <point x=\"1323\" y=\"911\" type=\"line\"/>\n      <point x=\"1339\" y=\"1001\" type=\"line\"/>\n      <point x=\"387\" y=\"1001\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_underscore_parenleft.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numbersign_underscore_parenleft.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"3202\" y=\"-90\" type=\"line\"/>\n      <point x=\"3228\" y=\"-90\" type=\"line\"/>\n      <point x=\"3244\" y=\"0\" type=\"line\"/>\n      <point x=\"3216\" y=\"0\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"2875\" y=\"0\"/>\n      <point x=\"2730\" y=\"260\"/>\n      <point x=\"2800\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2881\" y=\"1224\"/>\n      <point x=\"3144\" y=\"1531\"/>\n      <point x=\"3506\" y=\"1531\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"3533\" y=\"1531\" type=\"line\"/>\n      <point x=\"3549\" y=\"1621\" type=\"line\"/>\n      <point x=\"3521\" y=\"1621\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"3100\" y=\"1621\"/>\n      <point x=\"2796\" y=\"1281\"/>\n      <point x=\"2704\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"2634\" y=\"269\"/>\n      <point x=\"2691\" y=\"103\"/>\n      <point x=\"2907\" y=\"15\" type=\"curve\"/>\n      <point x=\"2907\" y=\"-38\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"284\" y=\"419\" type=\"line\"/>\n      <point x=\"1236\" y=\"419\" type=\"line\"/>\n      <point x=\"1252\" y=\"509\" type=\"line\"/>\n      <point x=\"300\" y=\"509\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"358\" y=\"0\" type=\"line\"/>\n      <point x=\"452\" y=\"0\" type=\"line\"/>\n      <point x=\"818\" y=\"1420\" type=\"line\"/>\n      <point x=\"724\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"781\" y=\"-90\" type=\"line\"/>\n      <point x=\"875\" y=\"-90\" type=\"line\"/>\n      <point x=\"1264\" y=\"1420\" type=\"line\"/>\n      <point x=\"1170\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"371\" y=\"911\" type=\"line\"/>\n      <point x=\"1323\" y=\"911\" type=\"line\"/>\n      <point x=\"1339\" y=\"1001\" type=\"line\"/>\n      <point x=\"387\" y=\"1001\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"3216\" y=\"-90\" type=\"line\"/>\n      <point x=\"3177\" y=\"0\" type=\"line\"/>\n      <point x=\"837\" y=\"0\" type=\"line\"/>\n      <point x=\"821\" y=\"-90\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numeral-greek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numeral-greek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0374\"/>\n  <outline>\n    <component base=\"quoteright\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numero.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"numero\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2116\"/>\n  <outline>\n    <contour>\n      <point x=\"799\" y=\"220\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1001\" y=\"220\"/>\n      <point x=\"1139\" y=\"397\"/>\n      <point x=\"1139\" y=\"598\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1139\" y=\"750\"/>\n      <point x=\"1054\" y=\"846\"/>\n      <point x=\"909\" y=\"846\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"705\" y=\"846\"/>\n      <point x=\"567\" y=\"669\"/>\n      <point x=\"567\" y=\"467\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"567\" y=\"315\"/>\n      <point x=\"654\" y=\"220\"/>\n    </contour>\n    <contour>\n      <point x=\"480\" y=\"0\" type=\"line\"/>\n      <point x=\"1038\" y=\"0\" type=\"line\"/>\n      <point x=\"1054\" y=\"90\" type=\"line\"/>\n      <point x=\"496\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"136\" y=\"840\" type=\"line\"/>\n      <point x=\"232\" y=\"840\" type=\"line\"/>\n      <point x=\"334\" y=\"1420\" type=\"line\"/>\n      <point x=\"238\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"815\" y=\"312\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"720\" y=\"312\"/>\n      <point x=\"665\" y=\"376\"/>\n      <point x=\"665\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"665\" y=\"617\"/>\n      <point x=\"752\" y=\"754\"/>\n      <point x=\"893\" y=\"754\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"987\" y=\"754\"/>\n      <point x=\"1041\" y=\"690\"/>\n      <point x=\"1041\" y=\"589\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1041\" y=\"449\"/>\n      <point x=\"953\" y=\"312\"/>\n    </contour>\n    <contour>\n      <point x=\"506\" y=\"840\" type=\"line\"/>\n      <point x=\"586\" y=\"840\" type=\"line\"/>\n      <point x=\"604\" y=\"945\" type=\"line\"/>\n      <point x=\"564\" y=\"945\" type=\"line\"/>\n      <point x=\"384\" y=\"1420\" type=\"line\"/>\n      <point x=\"272\" y=\"1420\" type=\"line\"/>\n      <point x=\"254\" y=\"1315\" type=\"line\"/>\n      <point x=\"326\" y=\"1315\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"556\" y=\"840\" type=\"line\"/>\n      <point x=\"652\" y=\"840\" type=\"line\"/>\n      <point x=\"754\" y=\"1420\" type=\"line\"/>\n      <point x=\"658\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/o-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"o-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043E\"/>\n  <outline>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/o.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"o\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"006F\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"604\" y=\"530\" name=\"center\"/>\n  <anchor x=\"508\" y=\"10\" name=\"ogonek\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <anchor x=\"1029\" y=\"1060\" name=\"topright\"/>\n  <outline>\n    <contour>\n      <point x=\"502\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"850\" y=\"-20\"/>\n      <point x=\"1056\" y=\"235\"/>\n      <point x=\"1056\" y=\"666\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1056\" y=\"927\"/>\n      <point x=\"922\" y=\"1080\"/>\n      <point x=\"696\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"349\" y=\"1080\"/>\n      <point x=\"143\" y=\"821\"/>\n      <point x=\"143\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"143\" y=\"130\"/>\n      <point x=\"277\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"522\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"344\" y=\"72\"/>\n      <point x=\"239\" y=\"193\"/>\n      <point x=\"239\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"239\" y=\"768\"/>\n      <point x=\"405\" y=\"988\"/>\n      <point x=\"684\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"859\" y=\"988\"/>\n      <point x=\"960\" y=\"867\"/>\n      <point x=\"960\" y=\"663\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"960\" y=\"291\"/>\n      <point x=\"797\" y=\"72\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F3\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oacute.loclP_L_K_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oacute.loclPLK\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"acutecomb.loclPLK\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/obarred-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"obarred-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04E9\"/>\n  <outline>\n    <contour>\n      <point x=\"221\" y=\"485\" type=\"line\"/>\n      <point x=\"965\" y=\"485\" type=\"line\"/>\n      <point x=\"980\" y=\"575\" type=\"line\"/>\n      <point x=\"236\" y=\"575\" type=\"line\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/obreve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"obreve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014F\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"brevecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflex.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflex\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F4\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflexacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED1\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"acutecomb\" xOffset=\"305\" yOffset=\"340\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflexdotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexdotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED9\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n    <component base=\"circumflexcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflexgrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexgrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED3\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"gravecomb\" xOffset=\"306\" yOffset=\"340\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflexhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflexhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED5\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"hookabovecomb\" xOffset=\"265\" yOffset=\"300\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflextilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ocircumflextilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ED7\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"circumflexcomb\"/>\n    <component base=\"tildecomb\" xOffset=\"88\" yOffset=\"480\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/odieresis.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"odieresis\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F6\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dieresiscomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/odotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"odotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECD\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oe.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oe\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0153\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"878\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"733\" y=\"70\"/>\n      <point x=\"648\" y=\"193\"/>\n      <point x=\"647\" y=\"401\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"648\" y=\"754\"/>\n      <point x=\"765\" y=\"990\"/>\n      <point x=\"938\" y=\"990\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1030\" y=\"990\"/>\n      <point x=\"1082\" y=\"924\"/>\n      <point x=\"1082\" y=\"818\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1082\" y=\"620\"/>\n      <point x=\"917\" y=\"502\"/>\n      <point x=\"636\" y=\"496\" type=\"curve\"/>\n      <point x=\"637\" y=\"406\" type=\"line\"/>\n      <point x=\"977\" y=\"414\"/>\n      <point x=\"1178\" y=\"569\"/>\n      <point x=\"1178\" y=\"820\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1178\" y=\"983\"/>\n      <point x=\"1095\" y=\"1080\"/>\n      <point x=\"954\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"706\" y=\"1080\"/>\n      <point x=\"577\" y=\"843\"/>\n      <point x=\"577\" y=\"389\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"577\" y=\"132\"/>\n      <point x=\"686\" y=\"-20\"/>\n      <point x=\"870\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"924\" y=\"-20\"/>\n      <point x=\"987\" y=\"-7\"/>\n      <point x=\"1039\" y=\"14\" type=\"curve\"/>\n      <point x=\"1018\" y=\"100\" type=\"line\"/>\n      <point x=\"972\" y=\"81\"/>\n      <point x=\"921\" y=\"70\"/>\n    </contour>\n    <contour>\n      <point x=\"288\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"530\" y=\"-20\"/>\n      <point x=\"657\" y=\"246\"/>\n      <point x=\"657\" y=\"756\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"657\" y=\"969\"/>\n      <point x=\"580\" y=\"1080\"/>\n      <point x=\"432\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"172\" y=\"1080\"/>\n      <point x=\"37\" y=\"841\"/>\n      <point x=\"37\" y=\"384\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"37\" y=\"119\"/>\n      <point x=\"123\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"304\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"192\" y=\"72\"/>\n      <point x=\"133\" y=\"183\"/>\n      <point x=\"133\" y=\"397\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"133\" y=\"785\"/>\n      <point x=\"230\" y=\"988\"/>\n      <point x=\"415\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"522\" y=\"988\"/>\n      <point x=\"578\" y=\"907\"/>\n      <point x=\"578\" y=\"753\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"578\" y=\"305\"/>\n      <point x=\"484\" y=\"72\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"02DB\"/>\n  <outline>\n    <component base=\"ogonekcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ogonekcomb.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ogonekcomb\" format=\"2\">\n  <unicode hex=\"0328\"/>\n  <anchor x=\"650\" y=\"10\" name=\"_ogonek\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"507\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"550\" y=\"-423\"/>\n      <point x=\"591\" y=\"-417\"/>\n      <point x=\"620\" y=\"-405\" type=\"curve\"/>\n      <point x=\"607\" y=\"-322\" type=\"line\"/>\n      <point x=\"587\" y=\"-329\"/>\n      <point x=\"557\" y=\"-336\"/>\n      <point x=\"523\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"446\" y=\"-336\"/>\n      <point x=\"404\" y=\"-301\"/>\n      <point x=\"404\" y=\"-234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"404\" y=\"-94\"/>\n      <point x=\"557\" y=\"0\"/>\n      <point x=\"692\" y=\"0\" type=\"curve\"/>\n      <point x=\"692\" y=\"34\" type=\"line\"/>\n      <point x=\"487\" y=\"34\" type=\"line\"/>\n      <point x=\"487\" y=\"-17\" type=\"line\"/>\n      <point x=\"377\" y=\"-71\"/>\n      <point x=\"310\" y=\"-159\"/>\n      <point x=\"310\" y=\"-254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"310\" y=\"-364\"/>\n      <point x=\"378\" y=\"-423\"/>\n    </contour>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs.originalWidth</key>\n      <integer>1200</integer>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ograve.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ograve\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F2\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"gravecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1ECF\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohorn.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorn\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01A1\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"horncomb\" xOffset=\"336\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohornacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohornacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDB\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohorndotbelow.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorndotbelow\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE3\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"dotbelowcomb\" xOffset=\"-1\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohorngrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorngrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDD\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"gravecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohornhookabove.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohornhookabove\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EDF\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"hookabovecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohorntilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohorntilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1EE1\"/>\n  <outline>\n    <component base=\"ohorn\"/>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohungarumlaut.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ohungarumlaut\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0151\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"hungarumlautcomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omacron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"014D\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omacronacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacronacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E53\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n    <component base=\"acutecomb\" xOffset=\"42\" yOffset=\"238\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omacrongrave.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omacrongrave\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"1E51\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"macroncomb\"/>\n    <component base=\"gravecomb\" xOffset=\"42\" yOffset=\"238\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omega.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omega\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C9\"/>\n  <anchor x=\"506\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"720\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"879\" y=\"-20\"/>\n      <point x=\"978\" y=\"76\"/>\n      <point x=\"1010\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1151\" y=\"1060\" type=\"line\"/>\n      <point x=\"1055\" y=\"1060\" type=\"line\"/>\n      <point x=\"914\" y=\"260\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"892\" y=\"136\"/>\n      <point x=\"831\" y=\"72\"/>\n      <point x=\"736\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"622\" y=\"72\"/>\n      <point x=\"572\" y=\"133\"/>\n      <point x=\"592\" y=\"249\" type=\"curve\"/>\n      <point x=\"545\" y=\"234\" type=\"line\"/>\n      <point x=\"544\" y=\"234\" type=\"line\"/>\n      <point x=\"522\" y=\"67\"/>\n      <point x=\"582\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"274\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"411\" y=\"-20\"/>\n      <point x=\"502\" y=\"67\"/>\n      <point x=\"540\" y=\"234\" type=\"curve\"/>\n      <point x=\"539\" y=\"234\" type=\"line\"/>\n      <point x=\"497\" y=\"250\" type=\"line\"/>\n      <point x=\"477\" y=\"133\"/>\n      <point x=\"406\" y=\"72\"/>\n      <point x=\"290\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"194\" y=\"72\"/>\n      <point x=\"156\" y=\"136\"/>\n      <point x=\"178\" y=\"260\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"319\" y=\"1060\" type=\"line\"/>\n      <point x=\"223\" y=\"1060\" type=\"line\"/>\n      <point x=\"82\" y=\"260\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"50\" y=\"76\"/>\n      <point x=\"116\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"490\" y=\"214\" type=\"line\"/>\n      <point x=\"586\" y=\"214\" type=\"line\"/>\n      <point x=\"700\" y=\"860\" type=\"line\"/>\n      <point x=\"604\" y=\"860\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omegatonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omegatonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CE\"/>\n  <outline>\n    <component base=\"omega\"/>\n    <component base=\"tonos\" xOffset=\"27\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omicron.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omicron\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03BF\"/>\n  <outline>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omicrontonos.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"omicrontonos\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03CC\"/>\n  <outline>\n    <component base=\"omicron\"/>\n    <component base=\"tonos\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/one.dnom.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.dnom\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"onesuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/one.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0031\"/>\n  <outline>\n    <contour>\n      <point x=\"487\" y=\"0\" type=\"line\"/>\n      <point x=\"583\" y=\"0\" type=\"line\"/>\n      <point x=\"833\" y=\"1420\" type=\"line\"/>\n      <point x=\"737\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"101\" y=\"0\" type=\"line\"/>\n      <point x=\"507\" y=\"0\" type=\"line\"/>\n      <point x=\"523\" y=\"90\" type=\"line\"/>\n      <point x=\"116\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"561\" y=\"0\" type=\"line\"/>\n      <point x=\"935\" y=\"0\" type=\"line\"/>\n      <point x=\"950\" y=\"90\" type=\"line\"/>\n      <point x=\"577\" y=\"90\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"332\" y=\"1198\" type=\"line\"/>\n      <point x=\"727\" y=\"1320\" type=\"line\"/>\n      <point x=\"737\" y=\"1420\" type=\"line\"/>\n      <point x=\"350\" y=\"1300\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/one.half.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.half\" format=\"2\">\n  <advance width=\"840\"/>\n  <outline>\n    <contour>\n      <point x=\"392\" y=\"0\" type=\"line\"/>\n      <point x=\"490\" y=\"0\" type=\"line\"/>\n      <point x=\"490\" y=\"639\" type=\"line\"/>\n      <point x=\"392\" y=\"639\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"129\" y=\"0\" type=\"line\"/>\n      <point x=\"406\" y=\"0\" type=\"line\"/>\n      <point x=\"406\" y=\"88\" type=\"line\"/>\n      <point x=\"129\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"476\" y=\"0\" type=\"line\"/>\n      <point x=\"726\" y=\"0\" type=\"line\"/>\n      <point x=\"726\" y=\"88\" type=\"line\"/>\n      <point x=\"476\" y=\"88\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"143\" y=\"491\" type=\"line\"/>\n      <point x=\"392\" y=\"543\" type=\"line\"/>\n      <point x=\"392\" y=\"639\" type=\"line\"/>\n      <point x=\"143\" y=\"585\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/one.numr.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"one.numr\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"onesuperior\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onedotenleader.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onedotenleader\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2024\"/>\n  <outline>\n    <component base=\"period\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneeighth.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"726\" y=\"687\" type=\"line\"/>\n      <point x=\"1207\" y=\"1030\" type=\"line\"/>\n      <point x=\"1163\" y=\"1106\" type=\"line\"/>\n      <point x=\"682\" y=\"763\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"187\" y=\"306\" type=\"line\"/>\n      <point x=\"664\" y=\"643\" type=\"line\"/>\n      <point x=\"620\" y=\"719\" type=\"line\"/>\n      <point x=\"143\" y=\"382\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oneeighth.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneeighth\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"215B\"/>\n  <outline>\n    <contour>\n      <point x=\"187\" y=\"306\" type=\"line\"/>\n      <point x=\"1207\" y=\"1030\" type=\"line\"/>\n      <point x=\"1163\" y=\"1106\" type=\"line\"/>\n      <point x=\"143\" y=\"382\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"eightinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onehalf.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"696\" y=\"687\" type=\"line\"/>\n      <point x=\"1177\" y=\"1030\" type=\"line\"/>\n      <point x=\"1133\" y=\"1106\" type=\"line\"/>\n      <point x=\"652\" y=\"763\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"157\" y=\"306\" type=\"line\"/>\n      <point x=\"634\" y=\"643\" type=\"line\"/>\n      <point x=\"590\" y=\"719\" type=\"line\"/>\n      <point x=\"113\" y=\"382\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"twoinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onehalf.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onehalf\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BD\"/>\n  <outline>\n    <contour>\n      <point x=\"157\" y=\"306\" type=\"line\"/>\n      <point x=\"1177\" y=\"1030\" type=\"line\"/>\n      <point x=\"1133\" y=\"1106\" type=\"line\"/>\n      <point x=\"113\" y=\"382\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"twoinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oneinferior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oneinferior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2081\"/>\n  <outline>\n    <component base=\"onesuperior\" xOffset=\"-141\" yOffset=\"-802\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onequarter.BRACKET.500\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"726\" y=\"687\" type=\"line\"/>\n      <point x=\"1207\" y=\"1030\" type=\"line\"/>\n      <point x=\"1163\" y=\"1106\" type=\"line\"/>\n      <point x=\"682\" y=\"763\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"187\" y=\"306\" type=\"line\"/>\n      <point x=\"664\" y=\"643\" type=\"line\"/>\n      <point x=\"620\" y=\"719\" type=\"line\"/>\n      <point x=\"143\" y=\"382\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"fourinferior\" xOffset=\"270\"/>\n  </outline>\n  <lib>\n    <dict>\n      <key>com.schriftgestaltung.Glyphs._originalLayerName</key>\n      <string>[500]</string>\n    </dict>\n  </lib>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onequarter.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onequarter\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BC\"/>\n  <outline>\n    <contour>\n      <point x=\"187\" y=\"306\" type=\"line\"/>\n      <point x=\"1207\" y=\"1030\" type=\"line\"/>\n      <point x=\"1163\" y=\"1106\" type=\"line\"/>\n      <point x=\"143\" y=\"382\" type=\"line\"/>\n    </contour>\n    <component base=\"onesuperior\" xOffset=\"-260\"/>\n    <component base=\"fourinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onesuperior.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"onesuperior\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B9\"/>\n  <outline>\n    <contour>\n      <point x=\"618\" y=\"802\" type=\"line\"/>\n      <point x=\"714\" y=\"802\" type=\"line\"/>\n      <point x=\"822\" y=\"1420\" type=\"line\"/>\n      <point x=\"726\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"413\" y=\"802\" type=\"line\"/>\n      <point x=\"627\" y=\"802\" type=\"line\"/>\n      <point x=\"642\" y=\"892\" type=\"line\"/>\n      <point x=\"428\" y=\"892\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"704\" y=\"802\" type=\"line\"/>\n      <point x=\"883\" y=\"802\" type=\"line\"/>\n      <point x=\"898\" y=\"892\" type=\"line\"/>\n      <point x=\"719\" y=\"892\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"505\" y=\"1274\" type=\"line\"/>\n      <point x=\"710\" y=\"1325\" type=\"line\"/>\n      <point x=\"726\" y=\"1420\" type=\"line\"/>\n      <point x=\"521\" y=\"1367\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oogonek.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oogonek\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01EB\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <outline>\n    <contour>\n      <point x=\"557\" y=\"-423\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"600\" y=\"-423\"/>\n      <point x=\"641\" y=\"-417\"/>\n      <point x=\"670\" y=\"-405\" type=\"curve\"/>\n      <point x=\"657\" y=\"-322\" type=\"line\"/>\n      <point x=\"637\" y=\"-329\"/>\n      <point x=\"607\" y=\"-336\"/>\n      <point x=\"573\" y=\"-336\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"496\" y=\"-336\"/>\n      <point x=\"454\" y=\"-301\"/>\n      <point x=\"454\" y=\"-234\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"454\" y=\"-83\"/>\n      <point x=\"582\" y=\"-33\"/>\n      <point x=\"714\" y=\"18\" type=\"curve\"/>\n      <point x=\"647\" y=\"34\" type=\"line\"/>\n      <point x=\"517\" y=\"52\" type=\"line\"/>\n      <point x=\"517\" y=\"-28\" type=\"line\"/>\n      <point x=\"414\" y=\"-82\"/>\n      <point x=\"360\" y=\"-160\"/>\n      <point x=\"360\" y=\"-254\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"360\" y=\"-364\"/>\n      <point x=\"428\" y=\"-423\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oopen.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oopen\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0254\"/>\n  <anchor x=\"500\" y=\"0\" name=\"bottom\"/>\n  <anchor x=\"727\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"617\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"826\" y=\"988\"/>\n      <point x=\"951\" y=\"866\"/>\n      <point x=\"953\" y=\"659\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"952\" y=\"305\"/>\n      <point x=\"758\" y=\"72\"/>\n      <point x=\"464\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"72\"/>\n      <point x=\"239\" y=\"100\"/>\n      <point x=\"135\" y=\"171\" type=\"curve\"/>\n      <point x=\"83\" y=\"100\" type=\"line\"/>\n      <point x=\"191\" y=\"14\"/>\n      <point x=\"297\" y=\"-20\"/>\n      <point x=\"456\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"814\" y=\"-20\"/>\n      <point x=\"1049\" y=\"254\"/>\n      <point x=\"1049\" y=\"671\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1049\" y=\"928\"/>\n      <point x=\"896\" y=\"1080\"/>\n      <point x=\"636\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"497\" y=\"1080\"/>\n      <point x=\"394\" y=\"1061\"/>\n      <point x=\"285\" y=\"1019\" type=\"curve\"/>\n      <point x=\"303\" y=\"931\" type=\"line\"/>\n      <point x=\"407\" y=\"970\"/>\n      <point x=\"499\" y=\"988\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ordfeminine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ordfeminine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00AA\"/>\n  <outline>\n    <contour>\n      <point x=\"963\" y=\"1441\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"601\" y=\"1441\"/>\n      <point x=\"333\" y=\"1250\"/>\n      <point x=\"333\" y=\"956\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"333\" y=\"841\"/>\n      <point x=\"405\" y=\"773\"/>\n      <point x=\"528\" y=\"773\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"661\" y=\"773\"/>\n      <point x=\"766\" y=\"852\"/>\n      <point x=\"814\" y=\"990\" type=\"curve\"/>\n      <point x=\"781\" y=\"930\" type=\"line\"/>\n      <point x=\"840\" y=\"930\" type=\"line\"/>\n      <point x=\"812\" y=\"1035\" type=\"line\"/>\n      <point x=\"789\" y=\"779\" type=\"line\"/>\n      <point x=\"966\" y=\"786\" type=\"line\"/>\n      <point x=\"979\" y=\"860\" type=\"line\"/>\n      <point x=\"850\" y=\"860\" type=\"line\"/>\n      <point x=\"862\" y=\"806\" type=\"line\"/>\n      <point x=\"974\" y=\"1441\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"539\" y=\"865\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"471\" y=\"865\"/>\n      <point x=\"431\" y=\"904\"/>\n      <point x=\"431\" y=\"969\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"431\" y=\"1189\"/>\n      <point x=\"631\" y=\"1346\"/>\n      <point x=\"940\" y=\"1357\" type=\"curve\"/>\n      <point x=\"871\" y=\"1396\" type=\"line\"/>\n      <point x=\"832\" y=\"1170\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"798\" y=\"975\"/>\n      <point x=\"680\" y=\"865\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ordmasculine.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"ordmasculine\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00BA\"/>\n  <outline>\n    <contour>\n      <point x=\"642\" y=\"770\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"866\" y=\"770\"/>\n      <point x=\"1026\" y=\"951\"/>\n      <point x=\"1026\" y=\"1172\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1026\" y=\"1336\"/>\n      <point x=\"927\" y=\"1440\"/>\n      <point x=\"760\" y=\"1440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"536\" y=\"1440\"/>\n      <point x=\"376\" y=\"1259\"/>\n      <point x=\"376\" y=\"1038\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"376\" y=\"874\"/>\n      <point x=\"475\" y=\"770\"/>\n    </contour>\n    <contour>\n      <point x=\"658\" y=\"862\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"542\" y=\"862\"/>\n      <point x=\"474\" y=\"934\"/>\n      <point x=\"474\" y=\"1048\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"474\" y=\"1207\"/>\n      <point x=\"582\" y=\"1348\"/>\n      <point x=\"744\" y=\"1348\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"860\" y=\"1348\"/>\n      <point x=\"928\" y=\"1277\"/>\n      <point x=\"928\" y=\"1163\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"928\" y=\"1004\"/>\n      <point x=\"820\" y=\"862\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/orthogonal.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"orthogonal\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"221F\"/>\n  <outline>\n    <contour>\n      <point x=\"31\" y=\"0\" type=\"line\"/>\n      <point x=\"127\" y=\"0\" type=\"line\"/>\n      <point x=\"313\" y=\"1060\" type=\"line\"/>\n      <point x=\"217\" y=\"1060\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"31\" y=\"0\" type=\"line\"/>\n      <point x=\"983\" y=\"0\" type=\"line\"/>\n      <point x=\"998\" y=\"88\" type=\"line\"/>\n      <point x=\"46\" y=\"88\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oslash.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oslash\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F8\"/>\n  <outline>\n    <contour>\n      <point x=\"137\" y=\"-123\" type=\"line\"/>\n      <point x=\"1100\" y=\"1137\" type=\"line\"/>\n      <point x=\"1023\" y=\"1194\" type=\"line\"/>\n      <point x=\"60\" y=\"-66\" type=\"line\"/>\n    </contour>\n    <component base=\"o\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oslashacute.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"oslashacute\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"01FF\"/>\n  <outline>\n    <component base=\"oslash\"/>\n    <component base=\"acutecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/otilde.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"otilde\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00F5\"/>\n  <outline>\n    <component base=\"o\"/>\n    <component base=\"tildecomb\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/overline.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"overline\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"203E\"/>\n  <outline>\n    <contour>\n      <point x=\"283\" y=\"1568\" type=\"line\"/>\n      <point x=\"1283\" y=\"1568\" type=\"line\"/>\n      <point x=\"1299\" y=\"1658\" type=\"line\"/>\n      <point x=\"299\" y=\"1658\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/p.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"p\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0070\"/>\n  <anchor x=\"438\" y=\"-388\" name=\"bottom\"/>\n  <anchor x=\"693\" y=\"1060\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"115\" y=\"-460\" type=\"line\"/>\n      <point x=\"332\" y=\"769\" type=\"line\"/>\n      <point x=\"370\" y=\"1060\" type=\"line\"/>\n      <point x=\"288\" y=\"1060\" type=\"line\"/>\n      <point x=\"19\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"368\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"783\" y=\"-20\"/>\n      <point x=\"1096\" y=\"307\"/>\n      <point x=\"1096\" y=\"740\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1096\" y=\"957\"/>\n      <point x=\"984\" y=\"1080\"/>\n      <point x=\"790\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"552\" y=\"1080\"/>\n      <point x=\"407\" y=\"937\"/>\n      <point x=\"337\" y=\"733\" type=\"curve\"/>\n      <point x=\"368\" y=\"749\" type=\"line\"/>\n      <point x=\"281\" y=\"749\" type=\"line\"/>\n      <point x=\"256\" y=\"348\" type=\"line\"/>\n      <point x=\"333\" y=\"797\"/>\n      <point x=\"559\" y=\"988\"/>\n      <point x=\"760\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"912\" y=\"988\"/>\n      <point x=\"1000\" y=\"894\"/>\n      <point x=\"1000\" y=\"730\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1000\" y=\"355\"/>\n      <point x=\"737\" y=\"72\"/>\n      <point x=\"390\" y=\"72\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"296\" y=\"72\"/>\n      <point x=\"217\" y=\"82\"/>\n      <point x=\"178\" y=\"97\" type=\"curve\"/>\n      <point x=\"99\" y=\"1\" type=\"line\"/>\n      <point x=\"189\" y=\"-12\"/>\n      <point x=\"278\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/palochka-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"palochka-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"04CF\"/>\n  <outline>\n    <component base=\"idotless\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/paragraph.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"paragraph\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"00B6\"/>\n  <outline>\n    <contour>\n      <point x=\"752\" y=\"0\" type=\"line\"/>\n      <point x=\"846\" y=\"0\" type=\"line\"/>\n      <point x=\"1096\" y=\"1420\" type=\"line\"/>\n      <point x=\"1002\" y=\"1420\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"384\" y=\"0\" type=\"line\"/>\n      <point x=\"478\" y=\"0\" type=\"line\"/>\n      <point x=\"722\" y=\"1386\" type=\"line\"/>\n      <point x=\"628\" y=\"1386\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"541\" y=\"700\" type=\"curve\"/>\n      <point x=\"711\" y=\"1420\" type=\"line\"/>\n      <point x=\"346\" y=\"1420\"/>\n      <point x=\"156\" y=\"1287\"/>\n      <point x=\"156\" y=\"1032\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"156\" y=\"865\"/>\n      <point x=\"288\" y=\"741\"/>\n    </contour>\n    <contour>\n      <point x=\"675\" y=\"1330\" type=\"line\"/>\n      <point x=\"1277\" y=\"1330\" type=\"line\"/>\n      <point x=\"1293\" y=\"1420\" type=\"line\"/>\n      <point x=\"711\" y=\"1420\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/parenleft.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0028\"/>\n  <outline>\n    <contour>\n      <point x=\"1166\" y=\"1621\" type=\"line\"/>\n      <point x=\"1138\" y=\"1621\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"717\" y=\"1621\"/>\n      <point x=\"413\" y=\"1281\"/>\n      <point x=\"321\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"230\" y=\"137\"/>\n      <point x=\"415\" y=\"-199\"/>\n      <point x=\"818\" y=\"-199\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"845\" y=\"-199\" type=\"line\"/>\n      <point x=\"861\" y=\"-109\" type=\"line\"/>\n      <point x=\"833\" y=\"-109\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"492\" y=\"-109\"/>\n      <point x=\"337\" y=\"193\"/>\n      <point x=\"417\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"498\" y=\"1224\"/>\n      <point x=\"761\" y=\"1531\"/>\n      <point x=\"1123\" y=\"1531\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1150\" y=\"1531\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/parenleft_asterisk.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenleft_asterisk.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1358\" y=\"1621\" type=\"line\"/>\n      <point x=\"1308\" y=\"1621\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"815\" y=\"1621\"/>\n      <point x=\"443\" y=\"1283\"/>\n      <point x=\"351\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"260\" y=\"137\"/>\n      <point x=\"489\" y=\"-199\"/>\n      <point x=\"988\" y=\"-199\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1037\" y=\"-199\" type=\"line\"/>\n      <point x=\"1053\" y=\"-109\" type=\"line\"/>\n      <point x=\"1003\" y=\"-109\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"566\" y=\"-109\"/>\n      <point x=\"367\" y=\"193\"/>\n      <point x=\"447\" y=\"705\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"528\" y=\"1226\"/>\n      <point x=\"859\" y=\"1531\"/>\n      <point x=\"1293\" y=\"1531\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1342\" y=\"1531\" type=\"line\"/>\n    </contour>\n    <component base=\"asterisk\" xOffset=\"1094\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/parenright.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"parenright\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0029\"/>\n  <outline>\n    <contour>\n      <point x=\"97\" y=\"-200\" type=\"line\"/>\n      <point x=\"125\" y=\"-200\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"547\" y=\"-200\"/>\n      <point x=\"851\" y=\"140\"/>\n      <point x=\"943\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1034\" y=\"1284\"/>\n      <point x=\"849\" y=\"1620\"/>\n      <point x=\"445\" y=\"1620\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"418\" y=\"1620\" type=\"line\"/>\n      <point x=\"402\" y=\"1530\" type=\"line\"/>\n      <point x=\"430\" y=\"1530\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"772\" y=\"1530\"/>\n      <point x=\"927\" y=\"1228\"/>\n      <point x=\"847\" y=\"716\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"766\" y=\"197\"/>\n      <point x=\"503\" y=\"-110\"/>\n      <point x=\"140\" y=\"-110\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"113\" y=\"-110\" type=\"line\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/partialdiff.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"partialdiff\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"2202\"/>\n  <outline>\n    <contour>\n      <point x=\"507\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"813\" y=\"-20\"/>\n      <point x=\"1002\" y=\"150\"/>\n      <point x=\"1060\" y=\"476\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1086\" y=\"624\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"1176\" y=\"1134\"/>\n      <point x=\"967\" y=\"1400\"/>\n      <point x=\"439\" y=\"1426\" type=\"curve\"/>\n      <point x=\"415\" y=\"1336\" type=\"line\"/>\n      <point x=\"882\" y=\"1315\"/>\n      <point x=\"1074\" y=\"1095\"/>\n      <point x=\"999\" y=\"668\" type=\"curve\"/>\n      <point x=\"992\" y=\"668\" type=\"line\"/>\n      <point x=\"974\" y=\"816\"/>\n      <point x=\"850\" y=\"900\"/>\n      <point x=\"661\" y=\"900\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"377\" y=\"900\"/>\n      <point x=\"188\" y=\"736\"/>\n      <point x=\"137\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"85\" y=\"155\"/>\n      <point x=\"223\" y=\"-20\"/>\n    </contour>\n    <contour>\n      <point x=\"520\" y=\"70\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"288\" y=\"70\"/>\n      <point x=\"189\" y=\"201\"/>\n      <point x=\"233\" y=\"450\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"274\" y=\"680\"/>\n      <point x=\"421\" y=\"810\"/>\n      <point x=\"645\" y=\"810\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"886\" y=\"810\"/>\n      <point x=\"999\" y=\"676\"/>\n      <point x=\"958\" y=\"440\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"917\" y=\"207\"/>\n      <point x=\"753\" y=\"70\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/pe-cy.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-cy\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"043F\"/>\n  <outline>\n    <component base=\"n\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/pe-cy.loclS_R_B_.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"pe-cy.loclSRB\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"394\" y=\"1248\" type=\"line\"/>\n      <point x=\"1060\" y=\"1248\" type=\"line\"/>\n      <point x=\"1076\" y=\"1338\" type=\"line\"/>\n      <point x=\"410\" y=\"1338\" type=\"line\"/>\n    </contour>\n    <component base=\"u\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/percent.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"0025\"/>\n  <outline>\n    <contour>\n      <point x=\"147\" y=\"306\" type=\"line\"/>\n      <point x=\"1167\" y=\"1030\" type=\"line\"/>\n      <point x=\"1123\" y=\"1106\" type=\"line\"/>\n      <point x=\"103\" y=\"382\" type=\"line\"/>\n    </contour>\n    <component base=\"zerosuperior\" xOffset=\"-260\"/>\n    <component base=\"zeroinferior\" xOffset=\"270\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/percent_percent.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"percent_percent.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"217\" y=\"306\" type=\"line\"/>\n      <point x=\"1360\" y=\"1121\" type=\"line\"/>\n      <point x=\"1316\" y=\"1197\" type=\"line\"/>\n      <point x=\"173\" y=\"382\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1157\" y=\"228\" type=\"line\"/>\n      <point x=\"2287\" y=\"1030\" type=\"line\"/>\n      <point x=\"2243\" y=\"1106\" type=\"line\"/>\n      <point x=\"1113\" y=\"304\" type=\"line\"/>\n    </contour>\n    <component base=\"zerosuperior\" xOffset=\"-190\"/>\n    <component base=\"zeroinferior\" xOffset=\"340\"/>\n    <component base=\"zerosuperior\" xOffset=\"860\"/>\n    <component base=\"zeroinferior\" xOffset=\"1390\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"002E\"/>\n  <outline>\n    <contour>\n      <point x=\"520\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"575\" y=\"-20\"/>\n      <point x=\"620\" y=\"24\"/>\n      <point x=\"620\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"620\" y=\"134\"/>\n      <point x=\"575\" y=\"179\"/>\n      <point x=\"520\" y=\"179\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"465\" y=\"179\"/>\n      <point x=\"420\" y=\"134\"/>\n      <point x=\"420\" y=\"79\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"420\" y=\"24\"/>\n      <point x=\"465\" y=\"-20\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1168\" y=\"914\" type=\"line\"/>\n      <point x=\"2188\" y=\"914\" type=\"line\"/>\n      <point x=\"2204\" y=\"1004\" type=\"line\"/>\n      <point x=\"1184\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1080\" y=\"416\" type=\"line\"/>\n      <point x=\"2100\" y=\"416\" type=\"line\"/>\n      <point x=\"2116\" y=\"506\" type=\"line\"/>\n      <point x=\"1096\" y=\"506\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"45\" yOffset=\"630\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_hyphen.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_hyphen.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1043\" y=\"664\" type=\"line\"/>\n      <point x=\"2143\" y=\"664\" type=\"line\"/>\n      <point x=\"2159\" y=\"754\" type=\"line\"/>\n      <point x=\"1059\" y=\"754\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"50\" yOffset=\"630\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_period_equal.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_equal.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <contour>\n      <point x=\"1967\" y=\"914\" type=\"line\"/>\n      <point x=\"3387\" y=\"914\" type=\"line\"/>\n      <point x=\"3403\" y=\"1004\" type=\"line\"/>\n      <point x=\"1983\" y=\"1004\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"1879\" y=\"414\" type=\"line\"/>\n      <point x=\"3299\" y=\"414\" type=\"line\"/>\n      <point x=\"3315\" y=\"504\" type=\"line\"/>\n      <point x=\"1895\" y=\"504\" type=\"line\"/>\n    </contour>\n    <component base=\"period\" xOffset=\"-118\"/>\n    <component base=\"period\" xOffset=\"652\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_period_period.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_period_period.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"402\"/>\n    <component base=\"period\" xOffset=\"1200\"/>\n    <component base=\"period\" xOffset=\"1998\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_question.liga.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"period_question.liga\" format=\"2\">\n  <advance width=\"1200\"/>\n  <outline>\n    <component base=\"period\" xOffset=\"102\"/>\n    <component base=\"question\" xOffset=\"937\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/peso.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"peso\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"20B1\"/>\n  <outline>\n    <contour>\n      <point x=\"108\" y=\"1006\" type=\"line\"/>\n      <point x=\"1260\" y=\"1006\" type=\"line\"/>\n      <point x=\"1276\" y=\"1096\" type=\"line\"/>\n      <point x=\"124\" y=\"1096\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"64\" y=\"759\" type=\"line\"/>\n      <point x=\"1216\" y=\"759\" type=\"line\"/>\n      <point x=\"1232\" y=\"849\" type=\"line\"/>\n      <point x=\"80\" y=\"849\" type=\"line\"/>\n    </contour>\n    <component base=\"P\"/>\n  </outline>\n</glyph>\n"
  },
  {
    "path": "sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/phi.glif",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<glyph name=\"phi\" format=\"2\">\n  <advance width=\"1200\"/>\n  <unicode hex=\"03C6\"/>\n  <anchor x=\"428\" y=\"-440\" name=\"bottom\"/>\n  <anchor x=\"763\" y=\"1460\" name=\"top\"/>\n  <outline>\n    <contour>\n      <point x=\"473\" y=\"-460\" type=\"line\"/>\n      <point x=\"560\" y=\"31\" type=\"line\"/>\n      <point x=\"464\" y=\"31\" type=\"line\"/>\n      <point x=\"377\" y=\"-460\" type=\"line\"/>\n    </contour>\n    <contour>\n      <point x=\"341\" y=\"1032\" type=\"line\"/>\n      <point x=\"170\" y=\"846\"/>\n      <point x=\"91\" y=\"654\"/>\n      <point x=\"91\" y=\"424\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"91\" y=\"145\"/>\n      <point x=\"238\" y=\"-20\"/>\n      <point x=\"502\" y=\"-20\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"882\" y=\"-20\"/>\n      <point x=\"1107\" y=\"227\"/>\n      <point x=\"1107\" y=\"646\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1107\" y=\"931\"/>\n      <point x=\"1018\" y=\"1080\"/>\n      <point x=\"846\" y=\"1080\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"719\" y=\"1080\"/>\n      <point x=\"637\" y=\"1012\"/>\n      <point x=\"614\" y=\"881\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"466\" y=\"43\" type=\"line\"/>\n      <point x=\"562\" y=\"43\" type=\"line\"/>\n      <point x=\"698\" y=\"851\" type=\"line\" smooth=\"yes\"/>\n      <point x=\"713\" y=\"941\"/>\n      <point x=\"763\" y=\"988\"/>\n      <point x=\"835\" y=\"988\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"951\" y=\"988\"/>\n      <point x=\"1011\" y=\"870\"/>\n      <point x=\"1011\" y=\"643\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"1011\" y=\"278\"/>\n      <point x=\"826\" y=\"62\"/>\n      <point x=\"517\" y=\"62\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"308\" y=\"62\"/>\n      <point x=\"187\" y=\"201\"/>\n      <point x=\"187\" y=\"437\" type=\"curve\" smooth=\"yes\"/>\n      <point x=\"187\" y=\"637\"/>\n      <point x=\"260\" y=\"807\"/>\n      <point x=\"418\" y=\"975\" type=\"curve\"/>\n    </contour>\n  </outline>\n</glyph>\n"
  }
]